@import url("reset.css");
@import url("font.css");

#wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* header */
header {
  width: 1400px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  animation: slideInFromTop 0.8s ease-in forwards;
}

@keyframes slideInFromTop {
  from {
    top: -100px;
  }
  to {
    top: 0;
  }
}

header .header_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  z-index: 100;
  padding: 20px 24px;
  background: #fff;
  border-radius: 0 0 16px 16px;
}

header .header_wrap .logo {
  background: url("/next/images/localSelf/img/img_logo.svg") no-repeat center center;
  background-size: 100% 100%;
  width: 216px;
  height: 31px;
}

header .header_wrap ul {
  display: flex;
  align-items: center;
  gap: 24px;
}

header .header_wrap ul li {
  border-radius: 32px;
  color: #3b464c;
  font-size: 20px;
}

header .header_wrap ul li a {
  padding: 8px 16px;
  border-radius: 32px;
  border: 1px solid transparent;
}

header .header_wrap ul li a:hover {
  border: 1px solid rgba(115, 199, 233, 0.3);
  background: rgba(115, 199, 233, 0.08);
  color: #73c7e9;
  font-weight: 600;
}

header .header_wrap .btn_wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

header .header_wrap .btn_wrap button {
  width: 36px;
  height: 36px;
  border: 1px solid #324c56;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .header_wrap .btn_wrap button.btn_search {
  background: url("/next/images/localSelf/ico/ico_search.svg") no-repeat center center;
  background-size: 20px 20px;
}

header .header_wrap .btn_wrap button.btn_more {
  background: url("/next/images/localSelf/ico/ico_more.svg") no-repeat center center;
  background-size: 20px 20px;
}

header .header_wrap .btn_wrap button.btn_more.active {
  background: url("/next/images/localSelf/ico/ico_menu_close.svg") no-repeat center center;
  background-size: 12px 12px;
}

/* gnb */
.gnb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  transform: translateY(-100%);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.gnb.active {
  opacity: 1;
  z-index: 0;
  visibility: visible;
  transform: translateY(0);
}

.gnb .inner {
  width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 104px;
  padding-bottom: 24px;
  padding-left: 440px;
  border-radius: 0 0 16px 16px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
}

.gnb .inner .list_wrap {
  display: flex;
  gap: 16px;
}

.gnb .inner ul {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}

.gnb .inner ul:nth-child(1) {
  width: 180px;
}

.gnb .inner ul:nth-child(2) {
  width: 174px;
}

.gnb .inner ul:nth-child(3) {
  width: 162px;
}

.gnb .inner ul:nth-child(4) {
  width: 120px;
}

.gnb .inner ul li {
  width: 100%;
  height: 42px;
  display: flex;
  align-items: center;
  text-align: center;
}

.gnb .inner ul li a {
  padding: 6px 12px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  border-radius: 100px;
  transition: all 0.3s ease;
  color: rgba(57, 75, 81, 0.8);
}

.gnb .inner ul li a:hover {
  background: rgba(255, 255, 255, 0.8);
  color: #394b51;
}

/* mobile gnb */
.mo_gnb {
  position: absolute;
  left: -100%;
}

/* main */
main {
  width: 100%;
  height: 100%;
}

main .main_container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* main page */
main .main_container .main_graphic {
  position: relative;
  width: 100%;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

main .main_container .main_bg_sky {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: linear-gradient(350deg, #d1f2eb 7.41%, #b7e3f5 85.92%);
}

main .main_container .main_bg_ground {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/next/images/localSelf/img/img_bg_yellow.png") no-repeat center center;
  background-position: top 600px center;
}

main .main_container .main_bg_fill {
  position: absolute;
  top: 630px;
  left: 0;
  width: 100%;
  height: 700px;
  background-color: #fff5dc;
}

main .main_container .title_wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

main .main_container .title_wrap .title {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  top: calc(50% + 24px);
  left: 50%;
  transform: translate(-50%, -50%);
}

main .main_container .title_wrap .title .word {
  transition: all 0.3s ease;
  transform: translateX(-40px);
  opacity: 0;
  animation: slideInFromLeft 0.8s ease-in forwards;
  animation-delay: 0.1s;
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(-40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

main .main_container .title_wrap .title .break {
  width: 16px;
  height: 100%;
}

main .main_container .title_wrap .circle {
  position: absolute;
  width: 780px;
  height: 780px;
  border-radius: 50%;
  overflow: hidden;
  margin: auto auto;
  top: 50%;
  left: 50%;
  margin-top: -358px;
  margin-left: -390px;
}

main .main_container .title_wrap .circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #000;
  mix-blend-mode: overlay;
  backdrop-filter: blur(6px);
  pointer-events: none;
}

main .main_container .title_wrap .title .title_line_left {
  width: 540px;
  height: 88px;
  position: absolute;
  top: -130px;
  left: 40px;
  background-size: 100% 100%;
  animation: changeToActiveLeft 0.8s ease-out forwards;
}

main .main_container .title_wrap .title .title_line_right {
  width: 540px;
  height: 88px;
  position: absolute;
  bottom: -130px;
  right: 40px;
  background-size: 100% 100%;
  animation: changeToActiveRight 0.8s ease-out forwards;
}

@keyframes changeToActiveLeft {
  from {
    background-image: url("/next/images/localSelf/img/img_title_line_left.png");
  }
  to {
    background-image: url("/next/images/localSelf/img/img_title_line_left_active.png");
  }
}

@keyframes changeToActiveRight {
  from {
    background-image: url("/next/images/localSelf/img/img_title_line_right.png");
  }
  to {
    background-image: url("/next/images/localSelf/img/img_title_line_right_active.png");
  }
}

main .main_container .main_bg_item_01 {
  position: absolute;
  bottom: 104px;
  left: -40px;
  background-color: #fff;
  background: url("/next/images/localSelf/img/img_bg_item_01.png") no-repeat center center;
  background-size: 100% 100%;
  width: 825px;
  height: 513.962px;
  animation: slideInFromBottom 0.8s ease-in forwards;
  animation-delay: 0.1s;
}
main .main_container .main_bg_item_02 {
  position: absolute;
  bottom: 62px;
  right: 0;
  background-color: #fff;
  background: url("/next/images/localSelf/img/img_bg_item_02.png") no-repeat center center;
  background-size: 100% 100%;
  width: 1030px;
  height: 353px;
  z-index: 100;
  animation: slideInFromBottom 0.8s ease-in forwards;
  animation-delay: 0.1s;
}
main .main_container .main_bg_item_03 {
  position: absolute;
  bottom: 280px;
  right: 0;
  background-color: #fff;
  background: url("/next/images/localSelf/img/img_bg_item_03.png") no-repeat center center;
  background-size: 100% 100%;
  width: 783px;
  height: 203px;
  animation: slideInFromBottom 0.8s ease-in forwards;
  animation-delay: 0.1s;
}

@keyframes slideInFromBottom {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

main .main_container .main_content {
  width: 100%;
  height: 100%;
  display: none;
  background-color: #fff5dc;
}

main .main_container .main_content.active {
  display: block;
}

main .main_container .main_content .inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 32px;
  background-color: #fff5dc;
}

main .main_container .main_content .inner .box_container {
  width: 1076px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

main .main_container .main_content .inner .box {
  flex: 1;
  height: 670px;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #fbf0d5;
}

main .main_container .main_content .inner .box .title {
  font-size: 17px;
  font-weight: 600;
  color: #a38e72;
  text-align: left;
}

main .main_container .main_content .inner .box p {
  color: #303030;
  font-size: 14px;
  text-align: left;
  text-indent: 8px;
}

main .main_container .main_content .inner .box .btn_box {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  background-color: #fff6dd;
  padding: 16px;
}

main .main_container .main_content .inner .box .btn_box .btn {
  min-width: fit-content;
  border-radius: 10px;
  border: 1px solid rgba(112, 115, 124, 0.16);
  background: #fff;
  padding: 9px 12px;
  font-size: 15px;
  color: #171719;
  line-height: 146%;
  letter-spacing: 0.144px;
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

main .main_container .main_content .inner .box .btn_box.eye .btn::before {
  content: "";
  background: url("/next/images/localSelf/ico/ico_eye_sky.svg") no-repeat center center;
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  position: relative;
  display: inline-block;
}

main .main_container .main_content .inner .box .btn_box.lock .btn::before {
  content: "";
  background: url("/next/images/localSelf/ico/ico_lock_brown.svg") no-repeat center center;
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  position: relative;
  display: inline-block;
}

main .main_container .main_content .inner .box .btn_box span {
  font-size: 14px;
  color: #303030;
  text-align: left;
}

main .main_container .main_content .inner .box .table_wrap {
  border-radius: 16px;
}

main .main_container .main_content .inner .box .table_wrap table {
  width: 100%;
  border-collapse: collapse;
}

main .main_container .main_content .inner .box .table_wrap table thead th {
  height: 41px;
  font-size: 14px;
  color: #303030;
  text-align: center;
  background-color: #f0e5ca;
}

main .main_container .main_content .inner .box .table_wrap table thead th:first-child {
  border-radius: 16px 0 0 0;
  border-right: 1px solid #fbfaf7;
}

main .main_container .main_content .inner .box .table_wrap table thead th:last-child {
  border-radius: 0 16px 0 0;
}

main .main_container .main_content .inner .box .table_wrap table tbody td {
  padding: 6px 8px;
  border-right: 1px solid #e4e3e0;
  border-bottom: 1px solid #e4e3e0;
  color: #303030;
}

main .main_container .main_content .inner .box .table_wrap table tbody tr td:last-child {
  border-right: none;
  text-align: left;
}

main .main_container .main_content .inner .box .table_wrap table tbody tr:last-child td {
  border-bottom: none;
}

main .main_container .main_content .inner .box .table_wrap table tbody tr td.line {
  border-right: 1px solid #e4e3e0;
  text-align: center;
}

main .main_container .scroll_down {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  color: #d1c1ab;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 100;
}

main .main_container .scroll_down::before {
  content: "";
  position: relative;
  width: 40px;
  height: 40px;
  background: url("/next/images/localSelf/ico/ico_scroll_down.svg") no-repeat center center;
  background-size: 40px 40px;
}

/* common page */
main .main_container .main_header {
  margin-top: 80px;
  width: 1400px;
}

main .main_container .main_header .title_wrap {
  width: calc(100% - 64px);
  height: 132px;
  position: relative;
  background-color: #ebf9ff;
  border-radius: 80px 0 40px 0;
  margin-left: 64px;
  padding-left: 260px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

main .main_container .main_header .title_wrap h1 {
  height: 34px;
  line-height: 34px;
  display: flex;
  align-items: center;
}

main .main_container .main_header .title_wrap .path_wrap {
  display: flex;
  align-items: center;
  gap: 4px;
}

main .main_container .main_header .title_wrap .path_wrap span {
  color: #3b464c;
}

main .main_container .main_header .title_wrap .path_wrap span.home {
  width: 16px;
  height: 16px;
  background: url("/next/images/localSelf/ico/ico_home.svg") no-repeat center center;
  background-size: 16px 16px;
}

main .main_container .main_header .title_wrap .path_wrap span.arrow_right {
  width: 16px;
  height: 16px;
  background: url("/next/images/localSelf/ico/ico_arrow_right.svg") no-repeat center center;
  background-size: 16px 16px;
}

main .main_container .main_body {
  width: 1400px;
  height: 100%;
  display: flex;
  gap: 64px;
  position: relative;
}

/* main .main_container .main_body.fit {
  height: calc(100dvh - 213px);
  max-height: calc(100dvh - 213px);
} */

main .main_container .main_body nav {
  width: 260px;
  height: fit-content;
  padding: 20px;
  border-radius: 24px;
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05), 0 0 8px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  left: 0;
  top: -82px;
}

main .main_container .main_body nav .parent_menu {
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #73c7e9;
  border-radius: 32px 12px 12px 12px;
}

main .main_container .main_body nav .children_menus {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 12px;
}

main .main_container .main_body nav .children_menus li {
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
}

main .main_container .main_body nav .children_menus li a {
  padding: 12px 8px;
  font-size: 20px;
  color: #3b464c;
}

main .main_container .main_body nav .children_menus li.active a {
  font-weight: 600;
  color: #5abbe2;
}

main .main_container .main_body .main_contents {
  width: 1076px;
  min-width: 1076px;
  margin-top: 40px;
  margin-bottom: 80px;
  min-height: calc(100dvh - 432px);
}

main .main_container .main_body .main_contents .tabs.pc {
  width: 100%;
  height: 74px;
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.05), 0 4px 8px 0 rgba(0, 0, 0, 0.08);
  margin-bottom: 48px;
}

main .main_container .main_body .main_contents .tabs.pc li {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

main .main_container .main_body .main_contents .tabs.pc li a {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 24px;
  color: #324c56;
  font-size: 17px;
  border-radius: 12px;
}

main .main_container .main_body .main_contents .tabs.pc li.active {
  height: 48px;
}

main .main_container .main_body .main_contents .tabs.pc li.active a {
  background-color: #497789;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

main .main_container .main_body .main_contents .img_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

main .main_container .main_body .main_contents .img_wrap .img_box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #e5e8eb;
}

main .main_container .main_body .main_contents .img_wrap .img_box img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

main .main_container .main_body .main_contents .img_wrap .btn_wrap {
  width: 136px;
  height: 126px;
  position: absolute;
  bottom: 0;
  right: 0;
}

main .main_container .main_body .main_contents .img_wrap .btn_wrap:hover .btn_more {
  background-color: #5abbe2;
}

main .main_container .main_body .main_contents .img_wrap .tooltip {
  display: none;
  width: fit-content;
  background-color: #fff;
  padding: 16px;
  color: #214f61;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.05), 0 4px 8px 0 rgba(0, 0, 0, 0.08);
  position: absolute;
  right: 16px;
  bottom: 78px;
  border-radius: 8px;
}

main .main_container .main_body .main_contents .img_wrap .tooltip.list {
  width: 120px;
  display: none;
  padding: 8px;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.05), 0 4px 8px 0 rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e8eb;
  flex-direction: column;
  justify-content: center;
  right: 16px;
  bottom: 68px;
}

main .main_container .main_body .main_contents .img_wrap .btn_wrap:hover .tooltip {
  display: flex;
}

main .main_container .main_body .main_contents .img_wrap .btn_wrap .btn_more {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background-color: #5abbe2bf;
  border-radius: 50%;
  cursor: default;
}

main .main_container .main_body .main_contents .img_wrap .btn_wrap .btn_more::before {
  content: "";
  background: url("/next/images/localSelf/ico/ico_more_white.svg") no-repeat center center;
  width: 24px;
  height: 24px;
  background-size: 24px 24px;
  position: absolute;
  top: 22px;
  left: 22px;
}

main .main_container .main_body .main_contents .img_wrap .img_title {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #0a242e;
}

main .main_container .main_body .main_contents .img_container.type_01 .img_wrap .img_title {
  width: 306px;
  text-align: center;
}

main .main_container .main_body .main_contents .img_wrap + .text_wrap {
  margin-top: 24px;
}

main .main_container .main_body .main_contents .text_wrap {
  color: #212121;
  font-size: 17px;
}

main .main_container .main_body .main_contents .text_wrap p {
  text-indent: 8px;
}

main .main_container .main_body .main_contents .text_wrap p ~ p {
  margin-top: 16px;
}

main .main_container .main_body .main_contents .text_wrap + .img_wrap {
  margin-top: 64px;
}

main .main_container .main_body .main_contents .img_wrap .btn_wrap .btn_move {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background-color: #49778999;
  border-radius: 50%;
  cursor: default;
}

main .main_container .main_body .main_contents .img_wrap .btn_wrap:hover .btn_move {
  background-color: #497789;
}

main .main_container .main_body .main_contents .img_wrap .btn_wrap .btn_move::before {
  content: "";
  background: url("/next/images/localSelf/ico/ico_new_window.svg") no-repeat center center;
  width: 24px;
  height: 24px;
  background-size: 24px 24px;
  position: absolute;
  top: 22px;
  left: 22px;
}

main .main_container .main_body .main_contents .img_wrap .btn_wrap .tooltip.list .btn_view {
  position: relative;
  border-radius: 8px;
  color: #214f61;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
}

main .main_container .main_body .main_contents .img_wrap .btn_wrap .tooltip.list .btn_view::before {
  content: "";
  background: url("/next/images/localSelf/ico/ico_view.svg") no-repeat center center;
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  position: relative;
}

main .main_container .main_body .main_contents .img_wrap .btn_wrap .tooltip.list .btn_desc {
  position: relative;
  border-radius: 8px;
  color: #214f61;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  min-height: 42px;
}

main .main_container .main_body .main_contents .img_wrap .btn_wrap .tooltip.list .btn_desc::before {
  content: "";
  background: url("/next/images/localSelf/ico/ico_desc.svg") no-repeat center center;
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  position: relative;
}

main .main_container .main_body .main_contents .img_wrap .btn_wrap .tooltip .btn_new_window {
  white-space: nowrap;
  border-radius: 8px;
  color: #214f61;
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  position: relative;
  height: 42px;
  min-height: 42px;
}

main .main_container .main_body .main_contents .img_wrap .btn_wrap .tooltip .btn_new_window::before {
  content: "";
  background: url("/next/images/localSelf/ico/ico_tooltip_before.svg") no-repeat center center;
  width: 34px;
  height: 20px;
  background-size: 34px 20px;
  position: absolute;
  bottom: -34px;
  right: 0;
}

main .main_container .main_body .main_contents .contents_wrap {
  display: flex;
}

main .main_container .main_body .main_contents .contents_wrap.fit {
  height: calc(100dvh - 454px);
}

main .main_container .main_body .main_contents .contents_wrap .text_box_blue {
  width: 100%;
  height: 100%;
  padding: 32px 32px 24px;
  background-color: #75c6e6;
  border-radius: 16px;
  transition: all 0.5s ease;
}

main .main_container .main_body .main_contents .contents_wrap .text_box_blue.active {
  width: 772px;
}

main .main_container .main_body .main_contents .contents_wrap .text_box_blue .inner {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 30px;
  /* 스크롤바 숨기기 */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

/* Webkit 브라우저 (Chrome, Safari) 스크롤바 숨기기 */
main .main_container .main_body .main_contents .contents_wrap .text_box_blue .inner::-webkit-scrollbar {
  display: none;
}

main .main_container .main_body .main_contents .contents_wrap .text_box_blue em {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

main .main_container .main_body .main_contents .contents_wrap .text_box_blue p + em {
  margin-top: 16px;
}

main .main_container .main_body .main_contents .contents_wrap .text_box_blue p {
  color: #fff;
  text-indent: 8px;
  font-size: 17px;
}

main .main_container .main_body .main_contents .contents_wrap .img_list {
  width: 304px;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 33px 33px 0;
  display: none;
  flex-direction: column;
  gap: 24px;
  /* 스크롤바 숨기기 */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

main .main_container .main_body .main_contents .contents_wrap .img_list.active {
  display: flex;
}

/* Webkit 브라우저 (Chrome, Safari) 스크롤바 숨기기 */
main .main_container .main_body .main_contents .contents_wrap .img_list::-webkit-scrollbar {
  display: none;
}

main .main_container .main_body .main_contents .contents_wrap .img_list .img_item {
  height: 164px;
  min-height: 164px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

main .main_container .main_body .main_contents .contents_wrap .img_list .img_item:nth-child(1) {
  animation-delay: 0.3s;
}

main .main_container .main_body .main_contents .contents_wrap .img_list .img_item:nth-child(2) {
  animation-delay: 0.6s;
}

main .main_container .main_body .main_contents .contents_wrap .img_list .img_item:nth-child(3) {
  animation-delay: 0.9s;
}

main .main_container .main_body .main_contents .contents_wrap .img_list .img_item:nth-child(4) {
  animation-delay: 1.2s;
}

main .main_container .main_body .main_contents .contents_wrap .img_list .img_item:nth-child(5) {
  animation-delay: 1.5s;
}

main .main_container .main_body .main_contents .contents_wrap .img_list .img_item:nth-child(6) {
  animation-delay: 1.8s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

main .main_container .main_body .main_contents .contents_wrap .img_list .img_item > .img_title {
  display: none;
}

main .main_container .main_body .main_contents .contents_wrap .img_list .img_item .img_box img {
  transition: all 0.3s ease;
}

main .main_container .main_body .main_contents .contents_wrap .img_list .img_item .img_box .img_info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px 24px 20px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.3s ease;
}

main .main_container .main_body .main_contents .contents_wrap .img_list .img_item:hover .img_box .img_info {
  opacity: 1;
}

main .main_container .main_body .main_contents .contents_wrap .img_list .img_item:hover .img_box img {
  filter: blur(2px);
  transform: scale(1.03);
}

main .main_container .main_body .main_contents .contents_wrap .img_list .img_item:hover .img_box .img_info {
  background-color: #0000004d;
}

main .main_container .main_body .main_contents .contents_wrap .img_list .img_item .img_box .img_info .img_title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

main .main_container .main_body .main_contents .contents_wrap .img_list .img_item:hover .img_box .btn_wrap {
  opacity: 1;
}

main .main_container .main_body .main_contents .contents_wrap .img_list .img_item .img_box .btn_wrap {
  width: 100%;
  display: flex;
  align-items: end;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 12px;
  padding: 4px;
  padding: 0 24px 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

main .main_container .main_body .main_contents .contents_wrap .img_list .img_item .img_box .btn_wrap .btn_more {
  display: none;
}

main .main_container .main_body .main_contents .contents_wrap .img_list .img_item .img_box .btn_wrap .tooltip {
  width: 100%;
  height: 36px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  box-shadow: none;
  border: none;
  right: unset;
  bottom: unset;
}

main .main_container .main_body .main_contents .contents_wrap .img_list .img_item .img_box .btn_wrap .tooltip .btn_view {
  height: 100%;
  border-radius: 50px;
  border: 1px solid #73c7e9;
  background-color: #fff;
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #33b2e5;
  font-weight: 600;
  font-size: 14px;
}

main .main_container .main_body .main_contents .contents_wrap .img_list .img_item .img_box .btn_wrap .tooltip .btn_view::after {
  content: "";
  display: inline-block;
  background: url("/next/images/localSelf/ico/ico_view_blue.svg") no-repeat center center;
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  position: relative;
}

main .main_container .main_body .main_contents .contents_wrap .img_list .img_item .img_box .btn_wrap .tooltip .btn_desc {
  height: 100%;
  border-radius: 50px;
  border: 1px solid #73c7e9;
  background-color: #73c7e9;
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

main .main_container .main_body .main_contents .contents_wrap .img_list .img_item .img_box .btn_wrap .tooltip .btn_desc::after {
  content: "";
  display: inline-block;
  background: url("/next/images/localSelf/ico/ico_desc_white.svg") no-repeat center center;
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  position: relative;
}

main .main_container .main_body .main_contents .contents_wrap .img_list .img_item .img_box .btn_wrap .tooltip {
  background: none;
}

/* footer */
footer {
  position: relative;
  width: 100%;
  height: 100px;
  background: #ede5da;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .inner {
  width: 1500px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .inner .info_wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

footer .inner .info_wrap .address {
  font-size: 12px;
  font-weight: 500;
  color: #6e6c6c;
  line-height: 180%;
}

footer .inner .info_wrap .copyright {
  font-size: 12px;
  font-weight: 500;
  color: #cabaa6;
  line-height: 180%;
}

.contents_wrap.program {
  display: flex;
  flex-direction: column;
}

.contents_wrap.program h2 {
  font-size: 22px;
  color: #0a242e;
  font-weight: 600;
  margin-bottom: 24px;
}

.contents_wrap.program .img_wrap_row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.contents_wrap.program .img_wrap_row img {
  border-radius: 16px;
  border: 1px solid #b1b8be;
}

.contents_wrap .img_box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #b1b8be;
}

.contents_wrap .img_box img {
  border: none !important;
}

.contents_wrap .img_box .btn_wrap {
  width: 136px;
  height: 126px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.contents_wrap .img_box .btn_wrap .tooltip {
  display: none;
  width: fit-content;
  background-color: #fff;
  padding: 16px;
  color: #214f61;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.05), 0 4px 8px 0 rgba(0, 0, 0, 0.08);
  position: absolute;
  right: 16px;
  bottom: 78px;
  border-radius: 8px;
}

.contents_wrap .img_box .btn_wrap .tooltip .btn_new_window {
  white-space: nowrap;
  color: #214f61;
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  position: relative;
  text-align: left;
}

.contents_wrap .img_box .btn_wrap .tooltip .btn_new_window::before {
  content: "";
  background: url("/next/images/localSelf/ico/ico_tooltip_before.svg") no-repeat center center;
  width: 34px;
  height: 20px;
  background-size: 34px 20px;
  position: absolute;
  bottom: -34px;
  right: 0;
}

.contents_wrap .img_box .btn_wrap .btn_move {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background-color: #49778999;
  border-radius: 50%;
  cursor: default;
}

.contents_wrap .img_box .btn_wrap .btn_move::before {
  content: "";
  background: url("/next/images/localSelf/ico/ico_new_window.svg") no-repeat center center;
  width: 24px;
  height: 24px;
  background-size: 24px 24px;
  position: absolute;
  top: 22px;
  left: 22px;
}

.contents_wrap .img_box .btn_wrap:hover .btn_move {
  background-color: #497789;
}

.contents_wrap .img_box .btn_wrap:hover .tooltip {
  display: flex;
}

.contents_wrap.program p {
  font-size: 17px;
  color: #212121;
  text-indent: 8px;
}

.contents_wrap.program p + h2 {
  margin-top: 64px;
}

.contents_wrap.program p + p {
  margin-top: 16px;
}

main .main_contents .img_container {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

main .main_contents .img_container.type_01 {
  align-items: start;
}

main .main_container .main_body .main_contents .contents_wrap .first_wrap.hide {
  display: none;
}

main .main_container .main_body .main_contents .contents_wrap .first_wrap {
  display: flex;
}

main .main_container .main_body .main_contents .contents_wrap .second_wrap.hide {
  display: none;
}

main .main_container .main_body .main_contents .contents_wrap .second_wrap {
  display: flex;
  opacity: 0;
  transform: translateY(20px);
}

main .main_container .main_body .main_contents .contents_wrap .second_wrap:not(.hide) {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contents_wrap.program .table_wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 64px;
}

.contents_wrap.program .table_wrap .table_title_wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contents_wrap.program .table_wrap .table_title_wrap .title {
  font-size: 14px;
  color: #0a242e;
  font-weight: 600;
}

.contents_wrap.program .table_wrap .table_title_wrap .year {
  font-size: 14px;
  color: #212121;
}

.contents_wrap.program .table_wrap .table_flex {
  display: flex;
  gap: 16px;
}

.contents_wrap.program .table_wrap .table_flex table {
  flex: 1;
  box-shadow: 0 4px 8px 0 rgba(211, 220, 223, 0.3);
  border-radius: 16px;
}

.contents_wrap.program .table_wrap .table_flex table thead tr:nth-child(1) th {
  background-color: rgba(115, 199, 233, 0.8);
  color: #fff;
  height: 56px;
  border-bottom: 1px solid #d6e0eb;
  font-size: 17px;
  font-weight: 700;
  border-radius: 16px 16px 0 0;
}

.contents_wrap.program .table_wrap .table_flex table thead tr:nth-child(2) th {
  height: 64px;
  background-color: #ebf9ff;
  color: #43b2df;
  font-size: 17px;
  font-weight: 600;
  line-height: 140%;
  border-right: 1px solid #d6e0eb;
  border-bottom: 1px solid #d6e0eb;
}

.contents_wrap.program .table_wrap .table_flex table thead tr:nth-child(2) th:last-child {
  border-right: none;
}

.contents_wrap.program .table_wrap .table_flex table tbody tr td {
  height: 56px;
  border-right: 1px solid #d6e0eb;
  font-size: 17px;
  color: #464c53;
  text-align: center;
}

.contents_wrap.program .table_wrap .table_flex table tbody tr td:last-child {
  border-right: none;
}

main .main_container.type_01 {
  background-color: #faf2e7;
}

main .main_container.type_01 .main_header .title_wrap {
  background-color: #f6ead8;
}

main .main_container.type_01 .main_body nav .parent_menu {
  background-color: #b98b45;
}

main .main_container.type_01 .main_body nav .children_menus li.active a {
  color: #b98b45;
}

main .main_container.type_02 {
  background-color: #fff;
}

main .main_container.type_02 .main_header .title_wrap {
  background-color: #e3faf7;
}

main .main_container.type_02 .main_body nav .parent_menu {
  background-color: #87cdc3;
}

main .main_container.type_02 .main_body nav .children_menus li.active a {
  color: #87cdc3;
}

main .main_container.type_02 .main_body .main_contents .img_wrap .btn_wrap .btn_more {
  background-color: #87cdc3bf;
}

main .main_container.type_03 {
  background-color: #fff;
}

main .main_container.type_03 .main_header .title_wrap {
  background-color: #e6eff3;
}

main .main_container.type_03 .main_body nav .parent_menu {
  background-color: #78929c;
}

main .main_container.type_03 .main_body nav .children_menus li.active a {
  color: #5a747e;
}

main .main_container .main_body .main_contents .btn_scroll {
  margin: 0 auto;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
  padding: 8px 16px;
}

main .main_container .main_body .main_contents .btn_scroll.next {
  cursor: default;
  pointer-events: none;
}

main .main_container .main_body .main_contents .btn_scroll.hide {
  display: none;
}

main .main_container .main_body .main_contents .btn_scroll.next::before {
  content: "";
  width: 32px;
  height: 32px;
  background: url("/next/images/localSelf/ico/ico_scroll_down_blue.svg") no-repeat center center;
  background-size: 32px 32px;
}

main .main_container .main_body .main_contents .btn_scroll.prev::before {
  content: "";
  width: 32px;
  height: 32px;
  background: url("/next/images/localSelf/ico/ico_left_click.svg") no-repeat center center;
  background-size: 32px 32px;
}

main .main_container .main_body .main_contents .btn_scroll .text {
  font-size: 17px;
  color: #92adb8;
  font-weight: 600;
}

main .main_container .main_body .main_contents .btn_scroll.prev .text.next {
  display: none;
}

main .main_container .main_body .main_contents .btn_scroll.prev .text.prev {
  display: inline-block;
}

main .main_container .main_body .main_contents .btn_scroll.next .text.next {
  display: inline-block;
}

main .main_container .main_body .main_contents .btn_scroll.next .text.prev {
  display: none;
}

main .main_container .main_body .main_contents .contents_header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 11px;
  border-bottom: 2px solid #e3bf8d;
}

main .main_container .main_body .main_contents .contents_header .select_wrap {
  width: 112px;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  border: 1px solid #e3bf8d;
  position: relative;
}

main .main_container .main_body .main_contents .contents_header .select_wrap .btn_option {
  width: 112px;
  height: 48px;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  color: #de9d42;
  padding: 8px 12px 8px 16px;
  position: relative;
  border-radius: 100px;
}

main .main_container .main_body .main_contents .contents_header .select_wrap .btn_option::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  width: 20px;
  height: 20px;
  background: url("/next/images/localSelf/ico/ico_circle_arrow_down_brown.svg") no-repeat center center;
  background-size: 20px 20px;
  transition: all 0.3s ease;
}

main .main_container .main_body .main_contents .contents_header .select_wrap.active .btn_option::after {
  transform: translateY(-50%) rotate(-180deg);
}

main .main_container .main_body .main_contents .contents_header .select_wrap .select_items {
  width: 100%;
  padding: 16px;
  margin-bottom: 0;
  position: absolute;
  z-index: 20;
  top: 58px;
  height: fit-content;
  gap: 8px;
  flex-direction: column;
  box-shadow: 0 2px 8px 0 rgba(57, 75, 81, 0.1);
  background-color: #fff;
  border-radius: 12px;
  display: none;
}

main .main_container .main_body .main_contents .contents_header .select_wrap.active .select_items {
  display: flex;
}

main .main_container .main_body .main_contents .contents_header .select_wrap .select_items li {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
}

main .main_container .main_body .main_contents .contents_header .select_wrap .select_items li button,
main .main_container .main_body .main_contents .contents_header .select_wrap .select_items li a {
  width: 100%;
  height: 100%;
  padding: 0;
  font-size: 14px;
  color: #324c56;
  text-align: left;
  display: flex;
  align-items: center;
}

main .main_container .main_body .main_contents .contents_header .arrow_wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-right: 16px;
}

main .main_container .main_body .main_contents .contents_header .arrow_wrap .btn_arrow.left {
  width: 40px;
  height: 40px;
  background: url("/next/images/localSelf/ico/ico_arrow_right_long_brown.svg") no-repeat center center;
  background-size: 40px 40px;
  transform: rotate(180deg);
}

main .main_container .main_body .main_contents .contents_header .arrow_wrap .btn_arrow.disabled {
  opacity: 0.4;
  cursor: default;
}

main .main_container .main_body .main_contents .contents_header .arrow_wrap .btn_arrow.right {
  width: 40px;
  height: 40px;
  background: url("/next/images/localSelf/ico/ico_arrow_right_long_brown.svg") no-repeat center center;
  background-size: 40px 40px;
}

main .main_container .main_body .main_contents .history_wrap {
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  display: grid;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(10px);
  position: absolute;
  top: -200%;
  z-index: -1;
}

main .main_container .main_body .main_contents .history_wrap.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  top: unset;
  z-index: 1;
}

main .main_container .main_body .main_contents .history_wrap .history_list {
  display: flex;
  flex-direction: column;
}

main .main_container .main_body .main_contents .history_wrap .history_list .history_year {
  font-size: 20px;
  color: #de9d42;
  font-weight: 600;
  height: 45px;
  display: flex;
  align-items: center;
  padding-left: 24px;
}

main .main_container .main_body .main_contents .history_wrap .history_list:first-child .history_year {
  padding: 0;
}

main .main_container .main_body .main_contents .history_wrap .history_list .history_item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 8px 0 16px;
  border-bottom: 1px dashed #dbcbb5;
}

main .main_container .main_body .main_contents .history_wrap .history_list .history_item.hide {
  display: none;
}

main .main_container .main_body .main_contents .history_wrap .history_list .history_item.custom_01 {
  padding-right: 20px;
}
main .main_container .main_body .main_contents .history_wrap .history_list .history_item.custom_02 {
  padding-right: 0;
}
main .main_container .main_body .main_contents .history_wrap .history_list .history_item.custom_03 {
  padding-right: 16px;
}

main .main_container .main_body .main_contents .history_wrap .history_list:not(:first-child) .history_item {
  padding-left: 24px;
}

main .main_container .main_body .main_contents .history_wrap .history_list .history_item ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

main .main_container .main_body .main_contents .history_wrap .history_list .history_item ul li {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

main .main_container .main_body .main_contents .history_wrap .history_list .history_item ul li .date {
  font-size: 14px;
  font-weight: 600;
  color: #212121;
}

main .main_container .main_body .main_contents .history_wrap .history_list .history_item ul li .content {
  font-size: 14px;
  color: #323232;
}

main .main_container .main_body .main_contents .history_wrap .history_list .history_item ul li .content strong {
  color: #b98b45;
  font-weight: 400;
}

main .main_container .main_body .main_contents .history_wrap .history_list .history_item ul li .content .space {
  position: relative;
  height: 8px;
  display: block;
}

main .main_container .main_body .main_contents .history_wrap .history_list .history_item .history_category {
  border-radius: 28px;
  width: fit-content;
  height: 24px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

main .main_container .main_body .main_contents .history_wrap .history_list .history_item .history_category.type_01 {
  border: 1px solid #dec742;
  color: #b4a131;
}

main .main_container .main_body .main_contents .history_wrap .history_list .history_item .history_category.type_02 {
  border: 1px solid #42a2de;
  color: #2484c0;
}

main .main_container .main_body .main_contents .history_wrap .history_list .history_item .history_category.type_03 {
  border: 1px solid #b75cce;
  color: #8c4c9c;
}

main .main_container .main_body .main_contents .history_wrap .history_list .history_item .history_category.type_04 {
  border: 1px solid #72df68;
  color: #31c024;
}

main .main_container .main_body .main_contents .history_wrap .history_list .history_item .history_category.type_05 {
  border: 1px solid #de9d42;
  color: #c07f24;
}

main .main_container .main_body .main_contents .history_wrap .history_list .history_item + .history_item {
  padding-top: 16px;
}

main .main_container .main_body .main_contents .bar_container {
  position: relative;
  height: 820px;
}

main .main_container .main_body .main_contents .bar_container .bar_item {
  position: absolute;
  top: 29px;
  left: 0;
}

main .main_container .main_body .main_contents .bar_container .bar_item .bar {
  transition: background-image 0.4s ease;
}

main .main_container .main_body .main_contents .bar_container .bar_item.active .content .year {
  box-shadow: 0 4px 28px 0 rgba(202, 202, 202, 0.25);
}

main .main_container .main_body .main_contents .bar_container .item_01 .bar {
  position: absolute;
  left: 0;
  width: 368px;
  height: 30px;
  background-image: url("/next/images/localSelf/img/img_bar_01.svg");
}

main .main_container .main_body .main_contents .bar_container .item_01.active .bar {
  position: absolute;
  left: 0;
  width: 368px;
  height: 30px;
  background-image: url("/next/images/localSelf/img/img_bar_01_active.svg");
}

main .main_container .main_body .main_contents .bar_container .bar_item .content {
  position: relative;
  top: -30px;
  left: 104px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

main .main_container .main_body .main_contents .bar_container .bar_item .content .year {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #fff;
  border-radius: 50%;
  color: #324c56;
  font-size: 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}

main .main_container .main_body .main_contents .bar_container .bar_item .content .title {
  font-size: 17px;
  color: #324c56;
}

main .main_container .main_body .main_contents .bar_container .bar_item .content .title span {
  height: 32px;
  display: flex;
  align-items: center;
}

main .main_container .main_body .main_contents .bar_container .bar_item .content .title a {
  height: 32px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #324c56;
  font-size: 17px;
}

main .main_container .main_body .main_contents .bar_container .bar_item .content .title a::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("/next/images/localSelf/ico/ico_finger.svg") no-repeat center center;
  background-size: 16px 16px;
  transition: all 0.3s ease;
}

main .main_container .main_body .main_contents .bar_container .item_01 .content {
  position: relative;
  transform: none;
  top: -30px;
  left: 135px;
}

main .main_container .main_body .main_contents .bar_container .item_01 .content .title {
  position: absolute;
  left: -20px;
  top: 96px;
  width: 200px;
}

main .main_container .main_body .main_contents .bar_container .item_01.active .content .year {
  color: #5abbe2;
}

main .main_container .main_body .main_contents .bar_container .item_01 .content .title a.active::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url("/next/images/localSelf/ico/ico_finger_blue.svg") no-repeat center center;
  background-size: 32px 32px;
}

main .main_container .main_body .main_contents .bar_container .item_02 {
  position: absolute;
  left: 368px;
}

main .main_container .main_body .main_contents .bar_container .item_02 .bar {
  width: 368px;
  height: 30px;
  background-image: url("/next/images/localSelf/img/img_bar_04.svg");
}

main .main_container .main_body .main_contents .bar_container .item_02.active .bar {
  width: 368px;
  height: 30px;
  background-image: url("/next/images/localSelf/img/img_bar_04_active.svg");
}

main .main_container .main_body .main_contents .bar_container .item_02 .content {
  position: relative;
  transform: none;
  top: -60px;
  left: 0;
  align-items: center;
}

main .main_container .main_body .main_contents .bar_container .item_02 .content .title {
  position: absolute;
  left: 130px;
  top: 96px;
  width: 200px;
}

main .main_container .main_body .main_contents .bar_container .item_02.active .content .year {
  color: #7cdfd1;
}

main .main_container .main_body .main_contents .bar_container .item_02 .content .title a.active::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url("/next/images/localSelf/ico/ico_finger_green.svg") no-repeat center center;
  background-size: 32px 32px;
}

main .main_container .main_body .main_contents .bar_container .item_03 {
  position: absolute;
  left: 736px;
  width: 300px;
}

main .main_container .main_body .main_contents .bar_container .item_03 .bar {
  width: 100px;
  height: 200px;
  background-image: url("/next/images/localSelf/img/img_bar_05.svg");
}

main .main_container .main_body .main_contents .bar_container .item_03.active .bar {
  width: 100px;
  height: 200px;
  background-image: url("/next/images/localSelf/img/img_bar_05_active.svg");
}

main .main_container .main_body .main_contents .bar_container .item_03 .content {
  position: absolute;
  top: 56px;
  left: 40px;
  transform: none;
  flex-direction: row;
}

main .main_container .main_body .main_contents .bar_container .item_03 .content .year {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}

main .main_container .main_body .main_contents .bar_container .item_03 .content .title {
  padding-left: 12px;
}

main .main_container .main_body .main_contents .bar_container .item_03.active .content .year {
  color: #5abbe2;
}

main .main_container .main_body .main_contents .bar_container .item_03 .content .title a.active::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url("/next/images/localSelf/ico/ico_finger_blue.svg") no-repeat center center;
  background-size: 32px 32px;
}

main .main_container .main_body .main_contents .bar_container .item_04 {
  top: 199px;
  left: 340px;
}

main .main_container .main_body .main_contents .bar_container .item_04 .bar {
  width: 396px;
  height: 30px;
  background-image: url("/next/images/localSelf/img/img_bar_04.svg");
}

main .main_container .main_body .main_contents .bar_container .item_04.active .bar {
  width: 396px;
  height: 30px;
  background-image: url("/next/images/localSelf/img/img_bar_04_active.svg");
}

main .main_container .main_body .main_contents .bar_container .item_04 .content {
  position: relative;
  transform: none;
  top: -60px;
  left: 0;
  align-items: center;
}

main .main_container .main_body .main_contents .bar_container .item_04 .content .title {
  position: absolute;
  left: 146px;
  top: 96px;
  width: 200px;
}

main .main_container .main_body .main_contents .bar_container .item_04.active .content .year {
  color: #7cdfd1;
}

main .main_container .main_body .main_contents .bar_container .item_04 .content .title a.active::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url("/next/images/localSelf/ico/ico_finger_green.svg") no-repeat center center;
  background-size: 32px 32px;
}

main .main_container .main_body .main_contents .bar_container .item_05 {
  width: 300px;
  top: 199px;
  left: 240px;
}

main .main_container .main_body .main_contents .bar_container .item_05 .bar {
  width: 100px;
  height: 200px;
  background-image: url("/next/images/localSelf/img/img_bar_03.svg");
}

main .main_container .main_body .main_contents .bar_container .item_05.active .bar {
  width: 100px;
  height: 200px;
  background-image: url("/next/images/localSelf/img/img_bar_03_active.svg");
}

main .main_container .main_body .main_contents .bar_container .item_05 .content {
  position: absolute;
  transform: none;
  top: 56px;
  left: -116px;
  flex-direction: row;
  align-items: center;
}

main .main_container .main_body .main_contents .bar_container .item_05 .content .title {
  padding-right: 8px;
  position: absolute;
  left: -20px;
  top: 30px;
  width: 200px;
}

main .main_container .main_body .main_contents .bar_container .item_05 .content .year {
  position: absolute;
  left: 90px;
  top: 0;
}

main .main_container .main_body .main_contents .bar_container .item_05.active .content .year {
  color: #5abbe2;
}

main .main_container .main_body .main_contents .bar_container .item_05 .content .title a.active::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url("/next/images/localSelf/ico/ico_finger_blue.svg") no-repeat center center;
  background-size: 32px 32px;
}

main .main_container .main_body .main_contents .bar_container .item_06 {
  top: 370px;
  left: 340px;
}

main .main_container .main_body .main_contents .bar_container .item_06 .bar {
  width: 396px;
  height: 30px;
  background-image: url("/next/images/localSelf/img/img_bar_04.svg");
}

main .main_container .main_body .main_contents .bar_container .item_06.active .bar {
  width: 396px;
  height: 30px;
  background-image: url("/next/images/localSelf/img/img_bar_04_active.svg");
}

main .main_container .main_body .main_contents .bar_container .item_06 .content {
  position: relative;
  transform: none;
  top: -60px;
  left: 0;
}

main .main_container .main_body .main_contents .bar_container .item_06 .content .title {
  position: absolute;
  left: 120px;
  top: 96px;
}

main .main_container .main_body .main_contents .bar_container .item_06 .content .year {
  position: absolute;
  left: 154px;
  top: 0;
}

main .main_container .main_body .main_contents .bar_container .item_06.active .content .year {
  color: #7cdfd1;
}

main .main_container .main_body .main_contents .bar_container .item_06 .content .title a.active::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url("/next/images/localSelf/ico/ico_finger_green.svg") no-repeat center center;
  background-size: 32px 32px;
}

main .main_container .main_body .main_contents .bar_container .item_07 {
  top: 370px;
  left: 736px;
  width: 330px;
}

main .main_container .main_body .main_contents .bar_container .item_07 .bar {
  width: 100px;
  height: 200px;
  background-image: url("/next/images/localSelf/img/img_bar_05.svg");
}

main .main_container .main_body .main_contents .bar_container .item_07.active .bar {
  width: 100px;
  height: 200px;
  background-image: url("/next/images/localSelf/img/img_bar_05_active.svg");
}

main .main_container .main_body .main_contents .bar_container .item_07 .content {
  position: absolute;
  transform: none;
  top: 56px;
  left: 40px;
  flex-direction: row-reverse;
  align-items: center;
}

main .main_container .main_body .main_contents .bar_container .item_07 .content .title {
  padding-left: 12px;
}

main .main_container .main_body .main_contents .bar_container .item_07.active .content .year {
  color: #5abbe2;
}

main .main_container .main_body .main_contents .bar_container .item_07 .content .title a.active::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url("/next/images/localSelf/ico/ico_finger_blue.svg") no-repeat center center;
  background-size: 32px 32px;
}

main .main_container .main_body .main_contents .bar_container .item_08 {
  top: 540px;
  left: 340px;
}

main .main_container .main_body .main_contents .bar_container .item_08 .bar {
  width: 396px;
  height: 30px;
  background-image: url("/next/images/localSelf/img/img_bar_04.svg");
}

main .main_container .main_body .main_contents .bar_container .item_08.active .bar {
  width: 396px;
  height: 30px;
  background-image: url("/next/images/localSelf/img/img_bar_04_active.svg");
}

main .main_container .main_body .main_contents .bar_container .item_08 .content {
  position: relative;
  transform: none;
  top: -60px;
  left: 0;
}

main .main_container .main_body .main_contents .bar_container .item_08 .content .title {
  position: absolute;
  left: 120px;
  top: 96px;
}

main .main_container .main_body .main_contents .bar_container .item_08 .content .year {
  position: absolute;
  left: 154px;
  top: 0;
}

main .main_container .main_body .main_contents .bar_container .item_08.active .content .year {
  color: #7cdfd1;
}

main .main_container .main_body .main_contents .bar_container .item_08 .content .title a.active::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url("/next/images/localSelf/ico/ico_finger_green.svg") no-repeat center center;
  background-size: 32px 32px;
}

main .main_container .main_body .main_contents .bar_container .item_09 {
  top: 540px;
  left: 240px;
  width: 320px;
}

main .main_container .main_body .main_contents .bar_container .item_09 .bar {
  width: 100px;
  height: 200px;
  background-image: url("/next/images/localSelf/img/img_bar_03.svg");
}

main .main_container .main_body .main_contents .bar_container .item_09.active .bar {
  width: 100px;
  height: 200px;
  background-image: url("/next/images/localSelf/img/img_bar_03_active.svg");
}

main .main_container .main_body .main_contents .bar_container .item_09 .content {
  position: absolute;
  transform: none;
  top: 56px;
  left: -194px;
  flex-direction: row-reverse;
}

main .main_container .main_body .main_contents .bar_container .item_09 .content .title {
  padding-right: 8px;
  position: absolute;
  left: -20px;
  top: 30px;
  width: 200px;
}

main .main_container .main_body .main_contents .bar_container .item_09 .content .year {
  position: absolute;
  left: 169px;
  top: 0;
}

main .main_container .main_body .main_contents .bar_container .item_09.active .content .year {
  color: #5abbe2;
}

main .main_container .main_body .main_contents .bar_container .item_09 .content .title a.active::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url("/next/images/localSelf/ico/ico_finger_blue.svg") no-repeat center center;
  background-size: 32px 32px;
}

main .main_container .main_body .main_contents .bar_container .item_10 {
  top: 710px;
  left: 340px;
}

main .main_container .main_body .main_contents .bar_container .item_10 .bar {
  width: 396px;
  height: 30px;
  background-image: url("/next/images/localSelf/img/img_bar_04.svg");
}

main .main_container .main_body .main_contents .bar_container .item_10.active .bar {
  width: 396px;
  height: 30px;
  background-image: url("/next/images/localSelf/img/img_bar_04_active.svg");
}

main .main_container .main_body .main_contents .bar_container .item_10 .content {
  position: relative;
  transform: none;
  top: -60px;
  left: -14px;
}

main .main_container .main_body .main_contents .bar_container .item_10 .content .title {
  position: absolute;
  left: 132px;
  top: 96px;
}

main .main_container .main_body .main_contents .bar_container .item_10 .content .year {
  position: absolute;
  left: 166px;
  top: 0;
}

main .main_container .main_body .main_contents .bar_container .item_10.active .content .year {
  color: #7cdfd1;
}

main .main_container .main_body .main_contents .bar_container .item_10 .content .title a.active::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url("/next/images/localSelf/ico/ico_finger_green.svg") no-repeat center center;
  background-size: 32px 32px;
}

main .main_container .main_body .main_contents .bar_container .item_11 {
  top: 710px;
  left: 708px;
}

main .main_container .main_body .main_contents .bar_container .item_11 .bar {
  width: 368px;
  height: 30px;
  background-image: url("/next/images/localSelf/img/img_bar_01.svg");
}

main .main_container .main_body .main_contents .bar_container .item_11.active .bar {
  width: 368px;
  height: 30px;
  background-image: url("/next/images/localSelf/img/img_bar_01_active.svg");
}

main .main_container .main_body .main_contents .bar_container .item_11 .content {
  position: relative;
  transform: none;
  top: -60px;
  left: 0;
}

main .main_container .main_body .main_contents .bar_container .item_11 .content .title {
  position: absolute;
  left: 120px;
  top: 96px;
}

main .main_container .main_body .main_contents .bar_container .item_11 .content .year {
  position: absolute;
  left: 142px;
  top: 0;
}

main .main_container .main_body .main_contents .bar_container .item_11.active .content .year {
  color: #5abbe2;
}

main .main_container .main_body .main_contents .bar_container .item_11 .content .title a.active::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url("/next/images/localSelf/ico/ico_finger_blue.svg") no-repeat center center;
  background-size: 32px 32px;
}

main .main_container .main_body .main_contents .our_wrap {
  display: flex;
  flex-direction: column;
  padding: 0 48px 134px;
  margin-top: 48px;
}

main .main_container .main_body .main_contents .our_wrap .intro {
  display: flex;
  gap: 64px;
}

main .main_container .main_body .main_contents .our_wrap .intro .text_box {
  display: flex;
  flex-direction: column;
}

main .main_container .main_body .main_contents .our_wrap .intro .text_box h2 {
  font-size: 22px;
  font-weight: 500;
  color: #212121;
  margin-bottom: 32px;
  line-height: 154%;
  letter-spacing: -0.22px;
}

main .main_container .main_body .main_contents .our_wrap .intro .text_box p {
  font-size: 14px;
  color: #212121;
  text-indent: 8px;
}

main .main_container .main_body .main_contents .our_wrap .intro .text_box p + p {
  margin-top: 16px;
}

main .main_container .main_body .main_contents .our_wrap .icon_wrap {
  height: 154px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}

main .main_container .main_body .main_contents .our_wrap .icon_wrap .icon_item {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 25px;
}

main .main_container .main_body .main_contents .our_wrap .icon_wrap .icon_item img {
  width: 32px;
  height: 32px;
}

main .main_container .main_body .main_contents .our_wrap .icon_wrap .icon_item .text_box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

main .main_container .main_body .main_contents .our_wrap .icon_wrap .icon_item .text_box .blue {
  height: 35px;
  color: #5fa59b;
  font-size: 20px;
  font-weight: 800;
}

main .main_container .main_body .main_contents .our_wrap .icon_wrap .icon_item .text_box span {
  font-size: 14px;
  color: #4a5565;
}

main .main_container .main_body .main_contents .area_wrap {
  display: flex;
  gap: 32px;
}

main .main_container .main_body .main_contents .area_wrap .map_box {
  display: flex;
  align-items: center;
  justify-content: end;
  padding-right: 8px;
  width: 500px;
  height: 758px;
  border-radius: 24px;
  background-color: #fff;
  box-shadow: 0 4px 28px 0 rgba(202, 202, 202, 0.25);
}
main .main_container .main_body .main_contents .area_wrap .map_box .group {
  transition: all 0.3s ease;
  cursor: pointer;
}
main .main_container .main_body .main_contents .area_wrap .map_box .group .area {
  transition: all 0.3s ease;
}
main .main_container .main_body .main_contents .area_wrap .map_box .group.active .area {
  fill: #87cdc3;
}
main .main_container .main_body .main_contents .area_wrap .map_box .group:not(.active):hover .area {
  fill: #87cdc370;
}

main .main_container .main_body .main_contents .area_wrap .content_box {
  width: 544px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main .main_container .main_body .main_contents .area_wrap .content_box .content_header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 24px 0 20px;
  padding: 0 16px 20px;
  border-bottom: 2px solid #a9d7d0;
}

main .main_container .main_body .main_contents .area_wrap .content_box.active .content_header {
  justify-content: space-between;
}

main .main_container .main_body .main_contents .area_wrap .content_box .content_header .area_title {
  display: none;
}

main .main_container .main_body .main_contents .area_wrap .content_box .content_header .area_title.active {
  display: flex;
}

main .main_container .main_body .main_contents .area_wrap .content_box .content_header a {
  height: 48px;
  padding: 8px 16px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 100px;
  border: 2px solid #497789;
  font-size: 17px;
  font-weight: 600;
  color: #214f61;
  position: relative;
}

main .main_container .main_body .main_contents .area_wrap .content_box .content_header a.active {
  display: flex;
}

main .main_container .main_body .main_contents .area_wrap .content_box .content_header a::after {
  content: "";
  position: relative;
  width: 12px;
  height: 24px;
  background: url("/next/images/localSelf/ico/ico_arrow_right_dark_green.svg") no-repeat center center;
  background-size: 12px 24px;
}

main .main_container .main_body .main_contents .area_wrap .content_box.active .content_header .click_area {
  display: none;
}

main .main_container .main_body .main_contents .area_wrap .content_box .content_body > div {
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 0;
  left: -10000px;
}

main .main_container .main_body .main_contents .area_wrap .content_box .content_body > div.active {
  opacity: 1;
  position: relative;
  top: unset;
  left: unset;
}

main .main_container .main_body .main_contents .area_wrap .content_box .content_body .area_09 img {
  margin-top: 95px;
}

main .main_container .main_body .main_contents .area_wrap .content_box .content_body > div span {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

main .main_container .main_body .main_contents .tabs_blue {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 12px 9px;
  border-radius: 16px;
  background-color: #f9fbfc;
  padding: 16px 52px;
  margin-bottom: 48px;
}

main .main_container .main_body .main_contents .tabs_blue.type_01 {
  grid-template-columns: repeat(6, 1fr);
  padding: 16px 59px;
}

main .main_container .main_body .main_contents .tabs_blue.type_01 a:nth-child(6)::after {
  content: none !important;
}

main .main_container .main_body .main_contents .tabs_blue.type_01 a:nth-child(9)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 16px;
  background-color: #e5e8eb;
  top: 50%;
  transform: translateY(-50%);
  right: -5px;
}

main .main_container .main_body .main_contents .tabs_blue .view_list {
  padding: 0 8px 0 12px;
}

main .main_container .main_body .main_contents .tabs_blue a {
  height: 40px;
  font-size: 17px;
  color: #324c56;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 4px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

main .main_container .main_body .main_contents .tabs_blue a:hover {
  color: #324c56;
  background: rgba(73, 119, 137, 0.3);
}

main .main_container .main_body .main_contents .tabs_blue a.active {
  background-color: #497789;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 4px 0 rgba(112, 112, 112, 0.15);
}

main .main_container .main_body .main_contents .tabs_blue a:not(:nth-child(9)):not(:last-child)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 16px;
  background-color: #e5e8eb;
  top: 50%;
  transform: translateY(-50%);
  right: -5px;
}

main .main_container .main_body .main_contents .tabs_blue a.view_list {
  color: #73b9af;
}

main .main_container .main_body .main_contents .tabs_blue a.view_list::after {
  content: "";
  background: url("/next/images/localSelf/ico/ico_arrow_right.svg") no-repeat center center;
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
}

main .main_container .main_body .main_contents .tabs_blue a.view_list:hover {
  border-radius: 4px;
  background: rgba(135, 205, 195, 0.2);
  box-shadow: 0 2px 4px 0 rgba(112, 112, 112, 0.15);
}

main .main_container .main_body .main_contents .tabs_blue a.view_list:hover::after {
  background: url("/next/images/localSelf/ico/ico_arrow_green.svg") no-repeat center center;
}

main .main_container .main_body .main_contents .tabs_blue.type_01 .view_list {
  width: fit-content;
  margin-left: auto;
}

main .main_container .main_body .main_contents .contents_detail {
  display: flex;
  flex-direction: column;
  padding: 0 52px;
}

main .main_container .main_body .main_contents .contents_detail h2 {
  font-size: 22px;
  font-weight: 600;
  color: #73b9af;
  letter-spacing: -0.22px;
  display: flex;
  align-items: center;
  gap: 8px;
}

main .main_container .main_body .main_contents .contents_detail h2 a {
  height: 24px;
}

main .main_container .main_body .main_contents h2 + .img_wrap {
  margin-top: 16px;
}

main .main_container .main_body .main_contents .contents_detail h3 {
  font-size: 20px;
  font-weight: 600;
  color: #3b464c;
  margin-bottom: 24px;
}

main .main_container .main_body .main_contents .contents_detail .img_wrap .img_box {
  border-radius: 16px;
  border: 1px solid #e5e8eb;
}

main .main_container .main_body .main_contents .text_wrap + .img_container {
  margin-top: 64px;
}

main .main_container .main_body .main_contents .img_wrap .btn_wrap .btn_more.type_01::before {
  content: "";
  background: url("/next/images/localSelf/ico/ico_eye_white.svg") no-repeat center center;
  width: 24px;
  height: 24px;
  background-size: 24px 24px;
  position: absolute;
  top: 22px;
  left: 22px;
}

main .main_container .main_body .main_contents .design_wrap {
  display: none;
}

main .main_container .main_body .main_contents .contents_detail h2 + .text_wrap {
  margin-top: 24px;
}

main .main_container .main_body .main_contents .contents_detail h2 + .img_container {
  margin-top: 24px;
}

main .main_container .main_body .main_contents .contents_detail .text_wrap .text_margin {
  margin-top: 64px;
}

main .main_container .main_body .main_contents .img_wrap .btn_view_report {
  height: 32px;
  padding: 0 8px 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #324c56;
  font-size: 17px;
  position: relative;
}

main .main_container .main_body .main_contents .img_wrap .btn_view_report::after {
  content: "";
  background: url("/next/images/localSelf/ico/ico_arrow_right.svg") no-repeat center center;
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  position: relative;
}

main .main_container .main_body .main_contents .img_wrap.type_01 {
  gap: 8px;
}

main .main_container .main_body .main_contents .board_search_wrap {
  width: 100%;
  padding: 16px;
  background-color: #f2f6f8;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

main .main_container .main_body .main_contents .board_search_wrap .search_wrap {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
  background-color: #fff;
  border: 1px solid #d7dee4;
  border-radius: 8px;
}

main .main_container .main_body .main_contents .board_search_wrap .search_wrap .select_wrap {
  width: 124px;
  height: 100% !important;
}

main .main_container .main_body .main_contents .board_search_wrap .search_wrap .select_wrap .select_selected {
  width: 136px;
  height: 48px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  color: #1e3842;
  position: relative;
}

main .main_container .main_body .main_contents .board_search_wrap .search_wrap .select_wrap.active .select_selected:after {
  content: "";
  width: 16px;
  height: 16px;
  background: url("/next/images/localSelf/ico/ico_carrot_03.svg") no-repeat center center;
  background-size: 16px 16px;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%) rotate(-180deg);
}
main .main_container .main_body .main_contents .board_search_wrap .search_wrap .select_wrap .select_selected:after {
  transform: translateY(-50%) rotate(0deg);
}

main .main_container .main_body .main_contents .board_search_wrap .search_wrap input {
  flex: 1;
  font-size: 16px;
  color: #1e2124;
}

main .main_container .main_body .main_contents .board_search_wrap .search_wrap .btn_search {
  width: 24px;
  height: 24px;
  background: url("/next/images/localSelf/ico/ico_search.svg") no-repeat center center;
  background-size: 24px 24px;
  margin-right: 12px;
}

main .main_container .main_body .main_contents .board_search_wrap > .select_wrap {
  width: 168px;
  min-width: 168px;
}

main .main_container .main_body .main_contents .board_search_wrap > .select_wrap .select_selected {
  padding: 10px 16px;
}

main .main_container .main_body .main_contents .board_search_wrap .btn_download {
  min-width: fit-content;
  height: 48px;
  border-radius: 8px;
  padding: 0 8px;
  color: #1e3842;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid #8ca6b0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

main .main_container .main_body .main_contents .board_search_wrap .btn_download::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("/next/images/localSelf/ico/ico_download.svg") no-repeat center center;
  background-size: 20px 20px;
}

main .main_container .main_body .main_contents .board_wrap {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  border: 1px solid #e1e2e4;
  margin-bottom: 80px;
}

main .main_container .main_body .main_contents .board_wrap table {
  width: 100%;
}

main .main_container .main_body .main_contents .board_wrap table thead th {
  height: 44px;
  font-size: 13px;
  color: rgba(33, 33, 33, 0.88);
  border-bottom: 1px solid rgba(140, 166, 176, 0.16);
  background: rgba(242, 246, 248, 0.5);
  padding: 6px 8px;
  text-align: center;
}

main .main_container .main_body .main_contents .board_wrap table thead th:first-child {
  border-radius: 12px 0 0 0;
}

main .main_container .main_body .main_contents .board_wrap table thead th:last-child {
  border-radius: 0 12px 0 0;
}

main .main_container .main_body .main_contents .board_wrap table tbody tr td {
  height: 56px;
  font-size: 16px;
  color: #212121;
  padding: 0 8px;
  border-bottom: 1px solid rgba(112, 115, 124, 0.16);
  text-align: center;
}

main .main_container .main_body .main_contents .board_wrap table tbody tr td.text_left,
main .main_container .main_body .main_contents .board_wrap table thead tr th.text_left {
  text-align: left;
}

main .main_container .main_body .main_contents .board_wrap table tbody tr td span {
  display: inline-block;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

main .main_container .main_body .main_contents .board_wrap table tbody tr td a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

main .main_container .main_body .main_contents .board_wrap table tbody tr:hover {
  background-color: #e6eff3;
}

main .main_container .main_body .main_contents .board_wrap .board_footer_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

main .main_container .main_body .main_contents .board_wrap .board_footer_wrap .view_count_wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

main .main_container .main_body .main_contents .board_wrap .board_footer_wrap .view_count_wrap span {
  font-size: 13px;
  color: rgba(55, 56, 60, 0.61);
}

main .main_container .main_body .main_contents .board_wrap .board_footer_wrap .view_count_wrap .select_wrap {
  width: 52px;
}

main .main_container .main_body .main_contents .board_wrap .board_footer_wrap .view_count_wrap .select_wrap .select_selected {
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(112, 115, 124, 0.16);
  padding: 6px 6px 6px 8px;
  color: #212121;
  justify-content: space-between;
}

main .main_container .main_body .main_contents .board_wrap .board_footer_wrap .view_count_wrap .select_wrap .select_selected::after {
  background: url("/next/images/localSelf/ico/ico_carrot_01.svg") no-repeat center center;
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  position: relative;
  right: unset;
  top: unset;
  transform: rotate(0);
}

main .main_container .main_body .main_contents .board_wrap .board_footer_wrap .view_count_wrap .select_wrap.active .select_selected::after {
  background: url("/next/images/localSelf/ico/ico_carrot_01.svg") no-repeat center center;
  width: 16px;
  height: 16px;
  background-size: 16px 16px;
  position: relative;
  right: unset;
  top: unset;
  transform: rotate(-180deg);
}

main .main_container .main_body .main_contents .board_wrap .board_footer_wrap .pagination_wrap {
  display: flex;
  align-items: center;
}

main .main_container .main_body .main_contents .board_wrap .board_footer_wrap .pagination_wrap a,
main .main_container .main_body .main_contents .board_wrap .board_footer_wrap .pagination_wrap strong {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #fff;
  color: rgba(46, 47, 51, 0.88);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

main .main_container .main_body .main_contents .board_wrap .board_footer_wrap .pagination_wrap a img {
  display: none;
}

main .main_container .main_body .main_contents .board_wrap .board_footer_wrap .pagination_wrap a:not(.prev):not(.next):hover {
  background-color: #d6dee1;
}

main .main_container .main_body .main_contents .board_wrap .board_footer_wrap .pagination_wrap .prev {
  width: 24px;
  height: 32px;
  background: url("/next/images/localSelf/ico/ico_board_arrow.svg") no-repeat center center;
  background-size: 8px 16px;
  transform: rotate(180deg);
  top: -1px;
  position: relative;
  margin-right: 4px;
}

main .main_container .main_body .main_contents .board_wrap .board_footer_wrap .pagination_wrap .next {
  width: 24px;
  height: 32px;
  background: url("/next/images/localSelf/ico/ico_board_arrow.svg") no-repeat center center;
  background-size: 8px 16px;
  top: -1px;
  position: relative;
  margin-left: 4px;
}

main .main_container .main_body .main_contents .board_wrap .board_footer_wrap .pagination_wrap .first {
  display: none;
}

main .main_container .main_body .main_contents .board_wrap .board_footer_wrap .pagination_wrap .last {
  display: none;
}

main .main_container .main_body .main_contents .board_wrap .board_footer_wrap .pagination_wrap .prev:disabled {
  cursor: default;
  background-image: url("/next/images/localSelf/ico/ico_board_arrow_disabled.svg");
  transform: rotate(0);
}

main .main_container .main_body .main_contents .board_wrap .board_footer_wrap .pagination_wrap .next:disabled {
  cursor: default;
  background-image: url("/next/images/localSelf/ico/ico_board_arrow_disabled.svg");
}

main .main_container .main_body .main_contents .board_wrap .board_footer_wrap .count_wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

main .main_container .main_body .main_contents .board_wrap .board_footer_wrap .count_wrap .count_text {
  font-size: 13px;
  color: rgba(55, 56, 60, 0.61);
}

main .main_container .main_body .main_contents .board_wrap .board_footer_wrap .count_wrap .count_number {
  font-size: 16px;
  color: #212121;
}

main .main_container .main_body .main_contents .board_wrap .btn_view {
  width: 98px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(112, 115, 124, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #171719;
  font-size: 15px;
  position: relative;
  background-color: #fff;
}

main .main_container .main_body .main_contents .board_wrap .btn_view::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("/next/images/localSelf/ico/ico_eye_sky.svg") no-repeat center center;
  background-size: 16px 16px;
}

main .main_container .main_body .main_contents .board_wrap .btn_view.private::before {
  background: url("/next/images/localSelf/ico/ico_lock_blue.svg") no-repeat center center;
  background-size: 16px 16px;
}

main .main_container .main_body .main_contents .law_box {
  display: flex;
  padding: 24px;
  border-radius: 8px;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(0deg, rgba(227, 191, 141, 0.3) 0%, rgba(227, 191, 141, 0.3) 100%), #fff;
  margin: 24px 0;
}

main .main_container .main_body .main_contents .law_box .law_box_header {
  display: flex;
  align-items: center;
}

main .main_container .main_body .main_contents .law_box .law_box_header span {
  font-weight: 600;
  color: #3a3939;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

main .main_container .main_body .main_contents .law_box .law_box_header span::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("/next/images/localSelf/ico/ico_law.svg") no-repeat center center;
  background-size: 24px 24px;
  position: relative;
  display: inline-block;
}

main .main_container .main_body .main_contents .law_box.type_01 {
  margin: 16px 0;
}

main .main_container .main_body .main_contents .law_box.type_01 p {
  text-indent: 8px;
  color: #0a242e;
}

main .main_container.type_01 .main_body .main_contents .text_wrap + .img_wrap {
  margin-top: 24px;
}

main .main_container.type_01 .main_body .main_contents .img_wrap .btn_wrap .btn_more {
  background-color: #b98b45bf;
}

main .main_container.type_01 .main_body .main_contents .img_wrap + .text_wrap {
  margin-top: 64px;
}

main .main_container.type_01 .main_body .main_contents .text_wrap + .img_container {
  margin-top: 24px;
}

main .main_container.type_01 .main_body .main_contents .img_container + .text_wrap {
  margin-top: 64px;
}

main .main_container.type_01 .main_body .main_contents .img_wrap .img_box {
  border-color: #e5e8eb;
}

main .main_container.type_01 .main_body .main_contents.type_01 {
  margin-top: 88px;
}

main .main_container.type_01 .main_body .main_contents .tab_depth_01 {
  display: flex;
  gap: 8px;
  height: 74px;
  padding: 8px 16px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.05), 0 4px 8px 0 rgba(0, 0, 0, 0.08);
}

main .main_container.type_01 .main_body .main_contents .tab_depth_01 a {
  height: 58px;
  padding: 9px 24px;
  font-size: 17px;
  color: #324c56;
  border-radius: 12px;
  display: flex;
  align-items: center;
}

main .main_container.type_01 .main_body .main_contents .tab_depth_01 a.active {
  height: 48px;
  background-color: #a68450;
  font-weight: 600;
  color: #fff;
}

main .main_container.type_01 .main_body .main_contents .tab_depth_02 {
  width: calc(100% - 16px);
  border-bottom: 1px solid #b98b45;
  padding: 8px 0 0;
  margin: 0 8px 64px 8px;
  height: 60px;
  display: flex;
  align-items: center;
}

main .main_container.type_01 .main_body .main_contents .tab_depth_02 button {
  padding: 9px 16px;
  font-size: 14px;
  color: #324c56;
  display: flex;
  align-items: center;
}

main .main_container.type_01 .main_body .main_contents .tab_depth_02 button.active {
  color: #7d5f30;
}

.img_swiper .swiper-wrapper {
  display: flex;
  margin-top: 64px;
  margin-bottom: 25px;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  display: none;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  display: none;
}

.swiper_container .swiper-button-prev {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #fff;
  backdrop-filter: blur(6px);
  background: url("/next/images/localSelf/ico/ico_arrow_brown.svg") rgba(255, 255, 255, 0.2) no-repeat center center;
  background-size: 28px 28px;
  z-index: 100;
  left: -24px;
  top: -180px;
}

.swiper_container .swiper-button-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #fff;
  backdrop-filter: blur(6px);
  background: url("/next/images/localSelf/ico/ico_arrow_brown.svg") rgba(255, 255, 255, 0.2) no-repeat center center;
  background-size: 28px 28px;
  transform: rotate(180deg);
  z-index: 100;
  right: -24px;
  top: -180px;
}

.img_swiper .img_wrap {
  width: 312px;
}

.img_swiper .img_wrap .img_box {
  width: 312px;
  height: 240px;
}

main .main_container.type_01 .main_body .main_contents .tab_content {
  display: none;
}

main .main_container.type_01 .main_body .main_contents .tab_content.active {
  display: initial;
}

.img_swiper.type_01 .swiper-wrapper {
  margin-top: 24px;
}

.img_swiper.type_01 + .text_wrap {
  margin-top: 64px;
}

.img_swiper.type_01 .swiper-button-next {
  margin-top: -36px;
}

.img_swiper.type_01 .swiper-button-prev {
  margin-top: -36px;
}

main .main_container.type_01 .main_body .main_contents .table_wrap {
  border-radius: 12px;
  border: 1px solid #e1e2e4;
  width: 800px;
  margin: 24px auto 24px;
}

main .main_container.type_01 .main_body .main_contents .tab_content table {
  width: 100%;
}

main .main_container.type_01 .main_body .main_contents .tab_content table th {
  height: 44px;
  border-bottom: 1px solid rgba(112, 115, 124, 0.16);
  text-align: center;
  color: rgba(33, 33, 33, 0.88);
  font-weight: 400;
  background-color: #21212108;
}

main .main_container.type_01 .main_body .main_contents .tab_content table thead th:last-child {
  border-radius: 0 12px 0 0;
}

main .main_container.type_01 .main_body .main_contents .tab_content table thead th:first-child {
  border-radius: 12px 0 0 0;
}

main .main_container.type_01 .main_body .main_contents .tab_content table td {
  height: 49px;
  font-size: 14px;
  color: #212121;
  border-bottom: 1px solid rgba(112, 115, 124, 0.16);
  padding-left: 20px;
}

main .main_container.type_01 .main_body .main_contents .tab_content table td.text_center {
  text-align: center;
}

main .main_container.type_01 .main_body .main_contents .tab_content table tr:last-child td {
  border-bottom: none;
}

main .main_container.type_01 .main_body .main_contents .tab_content table td span.brown {
  font-size: 14px;
  color: #b98b45;
  font-weight: 700;
}

main .main_container.type_01 .main_body .main_contents .tab_depth_02 .info {
  width: 56px;
  height: 42px;
  background: url("/next/images/localSelf/ico/ico_info_gray.svg") no-repeat center center;
  background-size: 24px 24px;
  display: inline-block;
  top: -1px;
  position: relative;
}

main .main_container.type_01 .main_body .main_contents .tab_depth_02 .info.active {
  background: url("/next/images/localSelf/ico/ico_info_brown.svg") no-repeat center center;
}

main .main_container.type_01 .main_body .main_contents .law_content_wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

main .main_container.type_01 .main_body .main_contents .law_content_wrap span {
  font-size: 17px;
  color: #212121;
}

main .main_container.type_01 .main_body .main_contents .law_content_wrap p {
  font-size: 17px;
  color: #212121;
}

main .main_container.type_01 .main_body .main_contents .law_content_wrap p strong {
  font-weight: 700;
}

main .main_container.type_01 .main_body .main_contents .tab_depth_01.type_01 {
  margin-bottom: 64px;
}

main .main_container.type_01 .main_body .main_contents .tab_content .text_wrap a {
  width: fit-content;
  background-color: #b98b45;
  color: #fff;
  font-weight: 600;
  height: 32px;
  padding: 0 8px 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
  border-radius: 36px;
  font-size: 14px;
  text-indent: 0;
  transition: all 0.3s ease;
}

main .main_container.type_01 .main_body .main_contents .tab_content .text_wrap a:hover {
  background-color: #cd9f59;
}

main .main_container.type_01 .main_body .main_contents .tab_content .text_wrap a::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url("/next/images/localSelf/ico/ico_finger_white.svg") no-repeat center center;
  background-size: 16px 16px;
  position: relative;
  display: inline-block;
}

main .main_container.type_01 .main_body .main_contents .tab_content .text_wrap + h2 {
  margin-top: 64px;
}

main .main_container.type_01 .main_body .main_contents .tab_content h2 {
  color: #7d5f30;
  font-size: 22px;
  font-weight: 600;
}

main .main_container.type_01 .main_body .main_contents .tab_content h2 + .text_wrap {
  margin-top: 16px;
}

main .main_container.type_01 .main_body .main_contents .tab_content .img_container + h2 {
  margin-top: 64px;
}

main .main_container.type_01 .main_body .main_contents .tabs_title {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

main .main_container.type_01 .main_body .main_contents .tabs_title .btn_wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-right: 16px;
}

main .main_container.type_01 .main_body .main_contents .tabs_title .btn_wrap .btn_prev {
  width: 32px;
  height: 32px;
  background: url("/next/images/localSelf/ico/ico_arrow_right_long_brown.svg") no-repeat center center;
  background-size: 32px 32px;
  transform: rotate(180deg);
}

main .main_container.type_01 .main_body .main_contents .tabs_title .btn_wrap .btn_next {
  width: 32px;
  height: 32px;
  background: url("/next/images/localSelf/ico/ico_arrow_right_long_brown.svg") no-repeat center center;
  background-size: 32px 32px;
}

main .main_container.type_01 .main_body .main_contents .tabs_title .btn_wrap .btn_prev.disabled,
main .main_container.type_01 .main_body .main_contents .tabs_title .btn_wrap .btn_next.disabled {
  opacity: 0.4;
  pointer-events: none;
}

main .main_container.type_01 .main_body .main_contents .tabs_title .tab_title {
  font-size: 22px;
  font-weight: 600;
  color: #7d5f30;
  display: none;
}

main .main_container.type_01 .main_body .main_contents .tabs_title .tab_title.active {
  display: block;
}

main .main_container.type_01 .main_body .main_contents .tab_content .title_box {
  padding: 24px;
  margin-bottom: 64px;
  border-radius: 8px;
  background: linear-gradient(0deg, rgba(227, 191, 141, 0.3) 0%, rgba(227, 191, 141, 0.3) 100%), #fff;
}

main .main_container.type_01 .main_body .main_contents .tab_content .title_box h3 {
  font-size: 22px;
  font-weight: 400;
  color: #0a242e;
  text-align: center;
}

main .main_container.type_01 .main_body .main_contents .tab_content .table_title {
  font-size: 17px;
  color: #212121;
  margin: 24px 0;
  display: inline-block;
}

main .main_container.type_01 .main_body .main_contents .table_wrap.type_01 {
  margin: 0 auto;
}

main .main_container.type_01 .main_body .main_contents .tab_content .text_wrap.type_01 {
  margin-bottom: 340px;
}

main .main_container.type_01 .main_body .main_contents .tab_content .text_wrap.type_02 {
  margin-top: 64px;
}

main .main_container.type_01 .main_body .main_contents .tab_content .table_title.type_01 {
  margin: 16px 0;
}

main .main_container.type_01 .main_body .main_contents .table_wrap.type_02 {
  margin: 0 auto 16px;
  max-height: 342px;
  overflow-y: auto;
}

main .main_container.type_01 .main_body .main_contents .tab_content .table_wrap.type_02 table thead th:last-child {
  border-radius: 0;
}

main .main_container.type_01 .main_body .main_contents .tab_content.tab_07 .img_container + .text_wrap {
  margin-top: 24px;
}

main .main_container.type_01 .main_body .main_contents .tab_content .from_text {
  margin-top: 64px;
  color: #0a242e;
  font-size: 14px;
  text-align: right;
  display: flex;
  justify-content: flex-end;
}

main .main_container .main_body .main_contents .law_box.type_03 {
  margin: 8px 0 0;
}

main .main_container .main_body .main_contents .law_box.type_03 .law_box_header span::before {
  background: url("/next/images/localSelf/ico/ico_book.svg") no-repeat center center;
}

main .main_container.type_01 .main_body .main_contents .table_wrap.header {
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 12px 12px 0 0;
  border-bottom: none;
}

main .main_container.type_01 .main_body .main_contents .table_wrap.header th {
  border-bottom: none;
}

main .main_container.type_01 .main_body .main_contents .table_wrap.body {
  border-radius: 0 0 12px 12px;
}

main .main_container.type_01 .main_body .main_contents .table_wrap.header table {
  width: 100%;
  min-width: 100%;
}

main .main_container.type_01 .main_body .main_contents .table_wrap.body table {
  width: 100%;
  min-width: 100%;
}

main .main_container.type_01 .main_body .main_contents .law_box.type_03 .one {
  font-family: "Times New Roman", Times, serif;
}

main .main_container .img_05 {
  width: 544px;
  height: 324px;
}

main .main_container .img_06 {
  width: 228px;
}

main .main_container .img_07 {
  width: 256px;
}

main .main_container .main_body .main_contents .board_detail_wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 11px;
}

main .main_container .main_body .main_contents .board_detail_wrap .right_wrap {
  display: flex;
  align-self: end;
}

main .main_container .main_body .main_contents .board_detail_wrap .select_wrap {
  width: 167px;
  height: 40px;
  border-radius: 4px;
  display: flex;
  align-self: end;
}

main .main_container .main_body .main_contents .board_detail_wrap .select_wrap .select_selected {
  width: 100%;
  height: 100%;
  font-size: 17px;
  position: relative;
  padding-left: 16px;
  border-radius: 4px;
}

main .main_container .main_body .main_contents .board_detail_wrap .select_wrap .select_items {
  top: 100%;
}

main .main_container .main_body .main_contents .board_detail_wrap .table_wrap {
  width: 100%;
  border: 1px solid #e4eaf0;
}

main .main_container .main_body .main_contents .board_detail_wrap .table_wrap table {
  width: 100%;
}

main .main_container .main_body .main_contents .board_detail_wrap .table_wrap table tbody th {
  height: 56px;
  min-height: 56px;
  padding: 4px 12px;
  font-size: 17px;
  font-weight: 400;
  color: #3a3939;
  text-align: left;
  background-color: #f5f7f8;
  border-bottom: 1px solid #e4eaf0;
  border-right: 1px solid #e4eaf0;
}

main .main_container .main_body .main_contents .board_detail_wrap .table_wrap table tbody td {
  padding: 4px 12px;
  border-bottom: 1px solid #e4eaf0;
  border-right: 1px solid #e4eaf0;
  font-size: 17px;
  color: #3a3939;
}

main .main_container .main_body .main_contents .board_detail_wrap .table_wrap table tbody td:last-child {
  border-right: none;
}

main .main_container .main_body .main_contents .board_detail_wrap .table_wrap table tbody tr:last-child td,
main .main_container .main_body .main_contents .board_detail_wrap .table_wrap table tbody tr:last-child th {
  border-bottom: none;
}

main .main_container .main_body .main_contents .board_detail_wrap .content_wrap {
  width: 100%;
  border: 1px solid #e4eaf0;
  padding: 16px 12px 4px 20px;
  height: 371px;
  overflow-y: auto;
  font-size: 17px;
}

main .main_container .main_body .main_contents .board_detail_wrap .content_wrap p {
  font-size: 17px;
  color: #3a3939;
}

main .main_container .main_body .main_contents .board_detail_wrap .btn_wrap {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-top: 11px;
  border-top: 1px solid #e4eaf0;
}

main .main_container .main_body .main_contents .board_detail_wrap .btn_wrap .btn_list {
  width: 68px;
  height: 40px;
  background: #324c56;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  background: #324c56;
  display: flex;
  align-items: center;
  justify-content: center;
}

main .main_container .main_body .main_contents .board_detail_wrap .table_wrap .btn_view {
  width: 98px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(112, 115, 124, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #171719;
  font-size: 15px;
  position: relative;
  background-color: #fff;
}

main .main_container .main_body .main_contents .board_detail_wrap .table_wrap .btn_view::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("/next/images/localSelf/ico/ico_eye_sky.svg") no-repeat center center;
  background-size: 16px 16px;
}

/* select */
.select_wrap {
  position: relative;
}

.select_selected {
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid #d7dee4;
  background: #fff;
  color: #000;
  font-size: 16px;
  display: flex;
  align-items: center;
  padding-left: 12px;
}

.select_items {
  position: absolute;
  background-color: #fff;
  width: 100%;
  z-index: 99;
  overflow-y: auto;
  margin: 8px 0;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px 0 rgba(57, 75, 81, 0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.select_items div {
  color: #000;
  font-size: 16px;
  cursor: pointer;
  height: 40px;
  display: flex;
  align-items: center;
}

.select_wrap.active .select_items {
  display: flex;
  flex-direction: column;
}

.select_wrap .select_items {
  display: none;
}

.select_wrap .select_selected:after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("/next/images/localSelf/ico/ico_carrot_02.svg") no-repeat center center;
  background-size: 24px 24px;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
}

.select_wrap.active .select_selected:after {
  transform: translateY(-50%) rotate(-180deg);
}

main .main_container .main_body .main_contents .board_detail_wrap .mobile_wrap {
  display: none;
}

main .main_container .main_body .main_contents .report_wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 48px;
}

main .main_container .main_body .main_contents .report_wrap .report_box {
  width: 100%;
  display: flex;
  gap: 24px;
}

main .main_container .main_body .main_contents .report_wrap .report_box img {
  margin-right: -24px;
}

main .main_container .main_body .main_contents .report_wrap .report_box .text_box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background: #f9fbfc;
  gap: 16px;
  padding: 32px 20px 86px;
}

main .main_container .main_body .main_contents .report_wrap .report_box .text_box p {
  font-size: 14px;
  color: #212121;
  text-indent: 8px;
}

main .main_container .main_body .main_contents .report_wrap .icon_box {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

main .main_container .main_body .main_contents .report_wrap .icon_box .icon_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 25px;
}

main .main_container .main_body .main_contents .report_wrap .icon_box .icon_item .title {
  font-size: 20px;
  font-weight: 800;
  color: #5abbe2;
  margin-top: 12px;
}

main .main_container .main_body .main_contents .report_wrap .icon_box .icon_item .content {
  font-size: 14px;
  color: #4a5565;
  text-align: center;
}

.img_swiper .arrow_bg_left {
  position: absolute;
  background: linear-gradient(90deg, #faf2e7 0%, rgba(250, 242, 231, 0) 100%);
  bottom: 0;
  left: 0;
  width: 76px;
  height: 302px;
  z-index: 10;
}

.img_swiper .arrow_bg_right {
  position: absolute;
  background: linear-gradient(270deg, #faf2e7 0%, rgba(250, 242, 231, 0) 100%);
  bottom: 0;
  right: 0;
  width: 76px;
  height: 302px;
  z-index: 10;
}

.img_swiper .arrow_bg_left.hide,
.img_swiper .arrow_bg_right.hide {
  display: none;
}

.swiper_container {
  position: relative;
}

.swiper_btn_wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}

/* layer popup */
.layer_container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.layer_container .dim {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
}

.layer_wrap {
  width: 768px;
  height: fit-content;
  position: relative;
  background-color: #fff;
  border-radius: 12px;
}

.layer_container .layer_wrap .layer_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 12px 24px;
  border-radius: 24px 24px 0 0;
  border-bottom: 1px solid #e4eaf0;
}

.layer_container .layer_wrap .layer_header .layer_title {
  font-size: 20px;
  font-weight: 600;
  color: #212121;
  position: relative;
  display: flex;
  align-items: center;
}

.layer_container .layer_wrap .layer_header .layer_title::before {
  content: "";
  position: relative;
  width: 20px;
  height: 20px;
  background: url("/next/images/localSelf/ico/ico_desc_black.svg") no-repeat center center;
  background-size: 20px 20px;
  margin-right: 8px;
  display: inline-block;
}

.layer_container .layer_wrap .layer_header .btn_close {
  width: 32px;
  height: 32px;
  background: url("/next/images/localSelf/ico/ico_close.svg") no-repeat center center;
  background-size: 12px 12px;
}

.layer_container .layer_wrap .layer_body {
  padding: 16px 24px 24px;
  border-radius: 0 0 24px 24px;
  background: #f4efe9;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.layer_container .layer_wrap .layer_body .item_box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px;
  gap: 12px;
  border-radius: 8px;
  background-color: #fff;
}

.layer_container .layer_wrap .layer_body .item_box .item_wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.layer_container .layer_wrap .layer_body .item_box .item {
  display: flex;
  align-items: start;
  gap: 8px;
}

.layer_container .layer_wrap .layer_body .item_box .item .label {
  width: 80px;
  min-width: 80px;
  font-size: 17px;
  color: #212121;
}

.layer_container .layer_wrap .layer_body .item_box .item .value {
  width: 230px;
  font-size: 17px;
  font-weight: 600;
  color: #212121;
}

.layer_container .layer_wrap .layer_body .item_box .item.title .value {
  width: 100%;
}

.layer_container .layer_wrap .layer_body .content_box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.layer_container .layer_wrap .layer_body .content_box h2 {
  font-size: 20px;
  font-weight: 600;
  color: #212121;
}

.layer_container .layer_wrap .layer_body .content_box p {
  height: 256px;
  font-size: 17px;
  color: #3a3939;
  text-indent: 8px;
}

/* loader */
.loader_wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 32px;
}

.loader {
  width: 16px;
  height: 16px;
  position: relative;
  left: -32px;
  border-radius: 50%;
  color: #fff;
  background: currentColor;
  box-shadow: 32px 0, -32px 0, 64px 0;
}

.loader::after {
  content: "";
  position: absolute;
  left: -32px;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 10px;
  background: #75c6e6;
  animation: move 3s linear infinite alternate;
}

@keyframes move {
  0%,
  5% {
    left: -32px;
    width: 16px;
  }
  15%,
  20% {
    left: -32px;
    width: 48px;
  }
  30%,
  35% {
    left: 0px;
    width: 16px;
  }
  45%,
  50% {
    left: 0px;
    width: 48px;
  }
  60%,
  65% {
    left: 32px;
    width: 16px;
  }

  75%,
  80% {
    left: 32px;
    width: 48px;
  }
  95%,
  100% {
    left: 64px;
    width: 16px;
  }
}

/* btn_top */
.btn_top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  border: 1px solid #cdd1d5;
  background-color: #fff;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 15px;
  color: #1e2124;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease, z-index 0.3s ease;
}

.btn_top::before {
  content: "";
  position: relative;
  width: 24px;
  height: 24px;
  background: url("/next/images/localSelf/ico/ico_scroll_top.svg") no-repeat center center;
  background-size: 24px 24px;
}

/* common */
.mo {
  display: none !important;
}

.pc {
  display: inline-block !important;
}
