/* 키프레임 */
@keyframes customZoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
@keyframes customFlipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
  to {
    transform: perspective(400px);
    opacity: 1;
  }
}

/* 서브 배너 영역 */
.sub_wrap {
  padding-top: 151px;
}
.sub_wrap .sub_tit {
  width: 100%;
  height: 190px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sub_wrap .sub_tit.type01 {
  background-image: url(../img/sub/img_subtype01.jpg);
}
.sub_wrap .sub_tit.type02 {
  background-image: url(../img/sub/img_subtype02.jpg);
}
.sub_wrap .sub_tit.type03 {
  background-image: url(../img/sub/img_subtype03.jpg);
}
.sub_wrap .sub_tit.type04 {
  background-image: url(../img/sub/img_subtype04.jpg);
}
.sub_wrap .sub_tit > h2 {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  animation: customZoomIn 0.8s ease-out both;
}

/* 서브 네비게이션 영역 */
.sub_wrap .sub_bottom {
  border-top: none;
}
.sub_wrap .sub_bottom .bottom_inner {
  max-width: 1400px;
}
.sub_bottom {
  border-bottom: 1px solid var(--border_color);
}
.sub_bottom .bottom_inner .route > ul {
  height: 60px;
}
.sub_bottom .bottom_inner .route > ul > li.house {
  width: 60px;
  height: 60px;
  flex-basis: 60px;
  background-color: var(--main_color);
  border: 1px solid var(--main_color);
  display: block;
}
.route > ul > li:not(:has(.p_down)) {
  display: none;
}
.route > ul > li:not(:has(.p_down)):not(.house) {
  display: none;
}
.sub_bottom .route > ul > li.house a {
  display: inline-block;
  width: 100%;
  height: 100%;
  background: url(../img/sub/ico_home.png)no-repeat center center;
}
.sub_bottom .bottom_inner .route > ul > li {
  border-right: 1px solid var(--border_color);
}
.sub_bottom .bottom_inner .route > ul > li > button {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: url(../img/sub/ico_pathdown.png)no-repeat center right 20px;
  background-size: 14px auto;
  font-size: 20px;
  font-weight: 500;
}
.sub_bottom .bottom_inner .route > ul > li > button > span {
  width: 100%;
  max-width: 140px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.sub_bottom .bottom_inner .route > ul > li > button.on {
  background: url(../img/sub/ico_pathup.png)no-repeat center right 20px;
  background-size: 14px auto;
}

@media screen and (max-width: 1024px) {
  .sub_bottom .bottom_inner .route > ul > li {
    min-width: 0;
  }
  .sub_bottom .bottom_inner .route > ul > li > button > span {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .sub_bottom .bottom_inner {
    width: calc(100% - 30px);
  }
  .sub_bottom .bottom_inner .route {
    width: 100%;
  }
  .sub_bottom .bottom_inner .route > ul {
    height: 40px;
  }
  .sub_bottom .bottom_inner .route > ul > li {
    border: 0;
  }
  .sub_bottom .bottom_inner .route > ul > li:not(:last-of-type) {
    background-position: center right;
    margin-right: 5px;
    padding-right: 10px;
  }
  .sub_bottom .bottom_inner .route > ul > li.house {
    width: auto;
    height: 12px;
    background-color: #fff;
    border: 0;
    flex-basis: auto;
  }
  .sub_bottom .bottom_inner .route > ul > li > button {
    padding: 0;
    background: none;
  }
  .sub_bottom .bottom_inner .route > ul > li > button.on {
    background: none;
  }
  .sub_bottom .bottom_inner .route > ul > li > button > span {
    font-size: 12px;
  }
  .sub_bottom .route > ul > li.house a {
    width: 20px;
    background: url(../img/sub/ico_home_m.png)no-repeat center center / contain;
  }
  .sub_wrap {
    padding-top: 125px;
  }
  .sub_wrap .sub_tit{
    height: 140px;
  }
  .sub_wrap .sub_tit > h2{
    font-size: 30px;
  }
  .sub_wrap .sub_tit.type03 {
    background-image: url(../img/sub/img_m_subtype03.jpg);
  }
}

/* 서브 컨텐츠 영역 */
.sub_content .sub_inner {
  width: calc(100% - 40px);
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 0 80px;  
}
.sub_content .subcon_tit.line {
  border-bottom: 2px solid var(--main_color);
}
.sub_content .subcon_tit {
  overflow: hidden;
}
.sub_content .subcon_tit > h3{
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
  animation: customFlipInX 0.6s ease-out both;
  animation-delay: 0.3s;
}
.board_srh_wrap {
  margin-bottom: 15px;
}
.board_box_area {
  padding: 30px 20px;
  background-color: var(--input_bg_color);
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.board_table_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.board_box_area .board_input {
  margin: 0 auto;
}
.board_box_area .board_input label{
	position: absolute;
}
.board_box_area .board_input > select {
  min-width: 120px;
  max-width: 200px;
  width: auto;
  background-image: url(../img/sub/ico_pathdown.png);
  background-position: center right 10px;
  background-repeat: no-repeat;
  background-size: 14px auto;
  background-color: #fff;
  padding: 0 35px 0 10px;
}
.board_box_area .board_input input[type="text"] {
  font-size: 16px;
  width: 260px;
  padding: 0 15px;
  background-color: #fff;
}
.board_box_area .search_btn {
  background-color: var(--main_color);
  border: 1px solid var(--main_color);
}
.board_box_area .search_btn:hover {
  color: var(--main_color);
}
.radiobox_wrap .order_btn{
    min-width: 84px;
    transition: 0.3s;
  	background-color: var(--main_color);
  	border: 1px solid var(--main_color);
    color: #fff;
    font-size: 18px;
    height: 40px;
}
	.radiobox_wrap .order_btn:hover{
  color: var(--main_color);
  background-color: #fff;
}
.board_box_area .btn_reset {
  width: 45px;
  height: 45px;
  background-color: var(--sub_color01);
  border: 1px solid var(--sub_color01);
  display: flex;
  align-items: center;
  justify-content: center;
  /* transition: all 0.3s ease-in-out; */
}
.board_box_area .btn_reset:hover {
  background-color: #fff;
  border: 1px solid var(--sub_color01);
}
.board_box_area .btn_reset::before {
  content: '';
  width: 26px;
  aspect-ratio: 26 / 23;
  background: url(../img/sub/ico_reset.png)no-repeat center / contain;
  display: inline-block;
}
.board_box_area .btn_reset:hover::before {
  background: url(../img/sub/ico_reset_on.png)no-repeat center / contain;
}
.board_input .board_input_item {
  border: 1px solid var(--input_border);
  font-size: 16px;
  padding: 0 15px;
}
.board_total_area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.board_total_area .board_total::before {
  display: none;
}
.board_total .total_wrap p {
  font-size: 20px;
  display: inline-block;
}
.board_total .total_wrap p:not(:last-of-type) {
  margin-right: 10px;
}
.board_total .total_wrap p:first-of-type span {
  margin-left: 5px;
}
.board_total .total_wrap span {
  color: var(--sub_color01);
}
.radiobox_wrap.type03 input[type="radio"] {
  background-image: url(../img/sub/ico_radio.png);
}
.radiobox_wrap .radio_box label {
  font-size: 18px;
}
.board_wrap .board_list.type03 {
  border-top: 2px solid var(--main_color);
  border-bottom: 1px solid var(--main_color);
}
.board_wrap .board_table_info + .board_list.type03 {
  margin-top: 15px;
}
.board_wrap .board_list .tr:last-child {
  border: 0;
}
.board_wrap .board_list.type03 tr.thead {
  background-color: #fff;
  border-bottom: 1px solid var(--border_color);
  text-align: center;
}
.board_wrap .board_list.type03 .tr td {
  font-size: 18px;
  text-align: center;
}
.board_wrap .board_list.type03 .tr td .pre{
  white-space: pre-line;
  text-align: left;
  line-height: 26px;
  padding: 10px 0;
}
.board_wrap .board_list.type03 .tr td > span{
  white-space: nowrap;
  overflow: hidden;
  display: block;
  max-width: 100%;
  text-overflow: ellipsis;
}
.board_wrap .board_list.type03 tr > td .mobile {
  display: none;
}
.board_wrap .board_list.type03 .tr .notice span {
  background-color: transparent;
  color: var(--sub_color01);
  width: auto;
  line-height: 1;
  font-size: 18px;
}
.board_wrap .board_list.type03 .tr .cell_s {
  width: 90px;
}
.board_wrap .board_list.type03 .tr .cell_s.med {
  width: 120px;
}
.board_wrap .board_list.type03 .tr .cell_m {
  width: 220px;
  padding: 0 5px;
}
.board_wrap .board_list.type03 span.name {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.board_wrap .board_list.type03 .tr:not(.thead) .cell_free {
  text-align: start;
  padding: 0 5px;
}
.board_wrap .board_list.type03 .tr .cell_free a{
  white-space: nowrap;
  max-width: 100%;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}
.board_wrap .board_list.type03 .tr .cell_free a.new::before {
  content: 'N';
  width: 25px;
  height: 25px;
  background-color: #ae0f0f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: #fff;
  margin-right: 5px;
}
.board_wrap .board_list.type03 .tr td.file:has(.ico_file)::after {
  content: '';
  width: 29px;
  aspect-ratio: 29 / 30;
  display: inline-block;
  background: url(../img/sub/ico_file.png)no-repeat;
  margin-bottom: -6px;
  margin-right: -10px;
}
.board_list.type03 .tag_box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tag_box .tag {
  --tag_color: #000;
  border: 2px solid var(--tag_color);
  color: var(--tag_color);
  min-width: 80px;
  padding: 0 5px;
  display: inline-block;
  line-height: 30px;
  font-size: 16px;
  max-width: 80px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.tag_box .tag.size {
  min-width: 105px;
  font-size: 15px;
}
.tag_box .tag.be {
  --tag_color: var(--sub_color01);
}
.tag_box .tag.ing {
  --tag_color: var(--sub_color02);
}
.tag_box .tag.end {
  --tag_color: var(--sub_color03);
}
.tag_box .tag.type01 {
  --tag_color : var(--sub_color06);
}
.tag_box .tag.type02 {
  --tag_color : var(--sub_color07);
}
.tag_box .tag.type03 {
  --tag_color : var(--sub_color08);
}
.btn_wrap .btn_file {
  width: 29px;
  aspect-ratio: 29 / 30;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/sub/ico_file.png);
  transition: all 0.1s ease-in-out;
}
.btn_wrap .btn_file:hover {
  background-image: url(../img/sub/ico_file_on.png);
}
.board_wrap .board_list.type03 tr:not(:last-of-type){
  border-bottom: 1px solid var(--border_color);
}
@media screen and (max-width: 1200px) {
  .board_wrap .board_list.type03 tr.thead {
    font-size: 16px;
  }
  .board_wrap .board_list.type03 .tr td {
    font-size: 16px;
  }
  .board_wrap .board_list.type03 .tr .cell_m {
    width: 200px;
  }
  .board_wrap .board_list.type03 .tr .notice span {
    font-size: 16px;
  }
}

@media screen and (max-width: 1024px) {
  .board_box_area .board_input {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }
  .board_box_area .board_input > select {
    flex: 1;
    min-width: 0;
    max-width: max-content;
  }
  .board_srh_wrap .board_srh_input {
    flex: 1;
    min-width: 0;
    max-width: 450px;
  }
  .board_box_area .board_input input[type="text"] {
    flex: 1;
    min-width: 0;
    width: 100%;
  }
  .board_box_area .btn_reset {
    width: 38px;
    height: 38px;
  }
  .board_wrap .board_list.type03 tr {
    height: auto;
    padding: 15px 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 6px;
    align-items: center;
  }
  .board_wrap .board_list.type03 tr.thead {
    display: none;
  }
  .board_wrap .board_list.type03 tbody {
    display: flex;
    flex-wrap: wrap;
  }
  .board_wrap .board_list.type03 tr > td {
    line-height: 1.2;
  }
  .board_wrap .board_list.type03 tr > td .mobile {
    font-size: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;  
  }
  .board_wrap .board_list.type03 .tr td:is(.notice) {
    display: block;
  }
  .board_wrap .board_list.type03 tr > td .mobile::before {
    content: '';
    width: 18px;
    aspect-ratio: 18 / 10;
    background: url(../img/sub/ico_view.png)no-repeat;
    margin-right: 5px;
  }
  .board_wrap .board_list.type03 .tr .cell_s {
    width: auto;
  }
  .board_wrap .board_list.type03 .tr .cell_s:has(.mobile) {
    display: inline-flex;
    align-items: center;
  }
  .board_wrap .board_list.type03 .tr .cell_s.med {
    width: auto;
  }
  .board_wrap .board_list.type03 .tr .cell_free {
    width: 100%;
    display: block;
  }
  .board_wrap .board_list.type03 .tr .cell_free a{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    white-space: normal;
  }
  .board_wrap .board_list.type03 .tr:not(.thead) .cell_free {
    padding: 0;
  }
  .board_wrap .board_list.type03 .tr .m_hide {
    display: none;
  }
  .board_wrap .board_list.type03 .tr .cell_m {
    width: auto;
    padding: 0;
  }
  .board_wrap .board_list.type03 .tr .cell_m.m_over {
    flex: 1;
    min-width: 0;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .board_wrap .board_list.type03 .tr td.line {
    position: relative;
    padding-right: 10px;
  }
  .board_wrap .board_list.type03 .tr td.line::before {
    content: '';
    width: 1px;
    height: 16px;
    background-color: var(--border_color);
    position: absolute;
    right: 0;
    top: 2px;
  }
  .tag_box .tag {
    line-height: 26px;
  }
  .tag_box .tag.size {
    min-width: 95px;
    font-size: 14px;
  }
  .btn_wrap .btn_file {
    width: 20px;
  }
  .board_wrap .board_list.type03 .tr td.file:not(:has(.ico_file)){
    display: none;
  }
  .board_wrap .board_list.type03 .tr td.file:has(.ico_file)::after {
    content: '';
    width: 16px;
    aspect-ratio: 16 / 17;
    margin-bottom: -4px;
    margin-right: 0px;
    position: static;
    background-size: cover;
  }
}
@media screen and (max-width: 768px) {
  .board_box_area {
    padding: 18px 15px;
  }
  .board_box_area .board_input > select {
    width: 100%;
    flex: none;
    max-width: 100%;
  }
  .board_srh_wrap .board_srh_input{
    max-width: 100%;
  }
  .board_srh_wrap .search_btn {
    min-width: 60px;
  }
  .board_box_area .btn_reset::before {
    width: 19px;
  }
  .board_total .total_wrap p {
    font-size: var(--text_s);
  }
  .board_total .total_wrap p:not(:last-of-type) {
    margin-right: 5px;
  }
  .radiobox_wrap {
    gap: 10px;
  }
  .radiobox_wrap .radio_box label {
    font-size: var(--text_s);
  }
  .radiobox_wrap.type03 input[type="radio"] {
    width: 15px;
    height: 15px;
  }
  .board_wrap .board_list.type03 tr > td {
    display: inline-block;
  }
  .board_wrap .board_list.type03 .tr td {
    font-size: var(--text_s);
  }
  .board_wrap .board_list.type03 tr > td .mobile::before {
    display: inline-block;
    margin-right: 0;
  }
  .board_wrap .board_list.type03 .tr:not(.thead) .cell_free {
    font-size: 16px;
    font-weight: 600;
  }
  .board_wrap .board_list.type03 .tr .notice span {
    font-size: var(--text_s);
  }
  .tag_box .tag {
    min-width: 60px;
    font-size: var(--text_s);
  }
  .sub_content .subcon_tit > h3{
    font-size: 26px;
    margin-bottom: 25px;
  }
  .sub_content .sub_inner{
    width: calc(100% - 30px);
    padding-top: 25px;
    padding-bottom: 55px;
  }
  .board_wrap .board_list.type03 .tr .cell_free a.new::before{
    width: 18px;
    height: 18px;
    font-size: 13px;
    font-weight: 300;
    margin-right: 0;
  }
  .radiobox_wrap .order_btn{
  	min-width:60px;
  	font-size: 14px;
  	height: 32px;
  }
}

/* 페이지네이션 */
.paginate.type02 {
  margin-top: 45px;
}
.paginate.type02 > ul {
  gap: 5px;
}
.paginate.type02 > ul > li {
  width: 39px;
  height: 39px;
  font-size: 18px;
  font-weight: 400;
}
.paginate.type02 > ul > li > a {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.paginate.type02 > ul > li.first > a,
.paginate.type02 > ul > li.prev > a,
.paginate.type02 > ul > li.next > a,
.paginate.type02 > ul > li.last > a {
  width: 100%;
  height: 100%;
  background-position: center center;
  margin-top: 0;
}
.paginate.type02 > ul > li.current {
  background: var(--main_color);
  color: #fff;
  border-radius: 6px;
}
.paginate.type01.mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .paginate.type02.pc {
    display: none;
  }
  .paginate.type01.mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
  .paginate.type01 > a {
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .paginate.type01 > a.first {
    background: url(../../src/img/sub/ico_first.png)no-repeat center;
  }
  .paginate.type01 > a.last {
    background: url(../../src/img/sub/ico_last.png)no-repeat center;
  }
  .paginate.type01 > a.prev {
    background: url(../../src/img/sub/ico_pagiprev.png)no-repeat center;
  }
  .paginate.type01 > a.next {
    background: url(../../src/img/sub/ico_paginext.png)no-repeat center;
  }
  .paginate.type01 input[type=text] {
    width: 37px;
    border-radius: 6px;
  }
  .paginate.type01 .btn_page_go {
    width: 66px;
    background: var(--main_color);
    border-radius: 6px;
  }
}

/* 게시판 상세 */
.board_detail_wrap{
  border-top: 2px solid var(--main_color);
  border-bottom: 1px solid var(--main_color);
  font-weight: 500;
}
.board_detail_wrap > div{
  border-bottom: 1px solid var(--border_color);
  padding: 20px 30px;
}
.board_detail_wrap .editor_box{
  padding-top: 50px;
  padding-bottom: 50px;
}
.board_detail_wrap .editor_box img {
  height: auto !important;
}
.board_detail_wrap .title{
  font-size: var(--title_m);
  line-height: 38px;
  font-weight: 700;
  word-break: break-all;
}
.board_detail_wrap .title_box{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.board_detail_wrap .title_box .title_head {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.board_detail_wrap .title_box .title_head .name {
  font-size: var(--text_xl);
  padding-top: 7px;
}
.board_detail_wrap .title_box .tag_wrap{
  display: flex;
  gap: 5px;
  align-items: flex-start;
  position: relative;
}
.board_detail_wrap .title_box .tag_wrap::before{
  content: '';
  display: block;
  width: 1px;
  background-color: var(--border_color);
  height: 30px;
  position: absolute;
  right: 0;
  top: 4px;
}
.board_detail_wrap .title_box .tag{
  height: 38px;
  min-width: 85px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.board_detail_wrap .title_box .tag.type01{
  --tag_color: var(--sub_color01);
}
.board_detail_wrap .option{
  font-size: var(--text_xl);
  min-width: 100px;
  padding: 0 10px;
  text-align: center;
  line-height: 38px;
}
.info_box .info_list{
  display: flex;
  gap: 10px 45px;
  align-items: flex-start;
  font-size: var(--text_xl);
  flex-wrap: wrap;
}
.info_box .info_list > li{
  display: flex;
  gap: 4px;
  align-items: flex-start;
}
.info_box .info_list .data_text{
  font-weight: 400;
  flex: 1;
  min-width: 0;
}
.info_box .info_list .data_title{
  min-width: max-content;
  font-weight: 700;
}
.info_box:not(:has(.info_list)) {
  display: none;
}
.file_list_wrap .file_btn_wrap{
  display: inline-flex;
  gap: 4px;
}
.file_list_wrap .file_btn{
  --btn_color: #000;
  border: 2px solid var(--btn_color);
  color: var(--btn_color);
  font-size: var(--text_m);
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  transition: 0.3s;
}
.info_list .file_list_wrap{
  padding-left: 15px;
}
.file_list_wrap .file_btn:hover{
  color: #fff;
  background-color: var(--btn_color);
}
.file_list_wrap .file_btn.type01{
  --btn_color : var(--sub_color01);
}
.file_list_wrap .file_btn.type03{
  --btn_color : var(--sub_color03);
}
.file_list_wrap > li{
  line-height: 30px;
}
.file_list_wrap > li + li{
  margin-top: 5px;
}
.file_list_wrap > li:hover .file_title{
  text-decoration: underline;
  text-underline-offset: 3px;
}
.file_list_wrap .file_title + .file_btn_wrap{
  margin-left: 10px;
}
@media screen and (max-width: 1024px){
  .board_detail_wrap .title_box .tag_wrap::before{
    display: none;
  }
  .board_detail_wrap .title_box .tag_wrap{
    width: 100%;
  }
  .board_detail_wrap .option{
    min-width: 80px;
  }
}
@media screen and (max-width: 768px){
  .board_detail_wrap > div{
    padding: 12px 10px;
  }
  .board_detail_wrap .title_box .tag{
    height: 30px;
    font-size: 14px;
    min-width: 60px;
  }
  .board_detail_wrap .title_box .title_head {
    gap: 10px;
  }
  .board_detail_wrap .option{
    line-height: 30px;
  }
  .board_detail_wrap .title{
    line-height: 28px;
  }
  .info_box .info_list{
    gap: 5px 20px;
  }
  .info_box .info_list > li{
    position: relative;
  }
  .info_box .info_list > li.m_full{
    width: 100%;
  }
  .info_box .info_list > li.m_full .data_title{
    display: inline-block;
  }
  .board_detail_wrap .info_box .info_list > li.m_full::before{
    display: none;
  }
  .info_box .info_list > li:not(:last-child)::before{
    content: '';
    width: 1px;
    height: 14px;
    background: var(--border_color);
    display: inline-block;
    position: absolute;
    right: -10px;
    top: 1px;
  }
  .info_box .info_list .data_title{
    display: none;
  }
  .file_list_wrap .file_btn{
    height: 20px;
    border: 1px solid var(--btn_color);
  }
  .info_list .file_list_wrap{
    padding-left: 0;
  }
  .file_list_wrap > li{
    line-height: 20px;
  }
  .file_list_wrap .file_title + .file_btn_wrap{
    margin-left: 0;
    display: flex;
    margin-top: 5px;
  }
  .board_detail_wrap .option{
    font-size: 16px;
    min-width: auto;
  }
  .info_box .info_list .data_text.view::before{
    content: '';
    width: 18px;
    aspect-ratio: 18 / 10;
    background: url(../img/sub/ico_view.png) no-repeat center / contain;
    margin-right: 5px;
    display: inline-block;
  }
  .board_detail_wrap .editor_box{
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
/* 이전글, 다음글 */
.board_detail_wrap + .post_wrap{
  border-top: none;
}
.post_wrap{
  border-top: 1px solid var(--main_color);
}
.post_wrap .post_list > li{
  display: flex;
  font-size: var(--text_xl);
  border-bottom: 1px solid var(--border_color);
}
.post_wrap .post_type{
  width: 230px;
  background-color: var(--table_bg_color01);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  border-right: 1px solid var(--border_color);
}
.post_wrap .post_title{
  flex: 1;
  min-width: 0;
  padding: 10px 40px;
}
.post_wrap .post_link{
  line-height: 45px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: block;
}
.post_wrap .post_link:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media screen and (max-width:768px){
  .post_wrap .post_type{
    width: 56px;
  }
  .post_wrap .post_link{
    line-height: 25px;
  }
  .post_wrap .post_title {
    padding: 10px 15px;
  }
}
/* 버튼 목록 */
.btn_wrap{
  display: flex;
  margin-top: 40px;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.btn_wrap .btn{
  --btn_color: #222;
  border: 2px solid var(--btn_color);
  background-color: var(--btn_color);
  color: #fff;
  width: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 50px;
  transition: 0.3s;
  font-size: var(--text_xl);
  gap: 20px;
}
.btn_wrap .btn:hover{
  background-color:#fff;
  color: var(--btn_color);
}
.btn_wrap .btn.type01{
  --btn_color: var(--sub_color05);
}
.btn_wrap .btn.type02{
  --btn_color: var(--sub_color01);
}
@media screen and (max-width:768px){
  .btn_wrap{
    flex-direction: column;
    margin-top: 30px;
  }
  .btn_wrap .btn{
    width: 100%;
    height: 40px;
  }
}

/* 센터소개 - 인사말 */
.intro_box {
  min-height: 240px;
  background-color: #f9ddda;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 75px 10px;
  border-radius: 30px 0 30px 0;
  position: relative;
}
.intro_box::before {
  content: '';
  width: 227px;
  aspect-ratio: 227 / 179;
  background: url(../img/sub/ico_illustration02.png)no-repeat center / contain;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.intro_box::after {
  content: '';
  width: 228px;
  aspect-ratio: 228 / 166;
  background: url(../img/sub/ico_illustration01.png)no-repeat center / contain;
  position: absolute;
  right: 5%;
  bottom: 10px;
}
.intro_box .intro_title {
  text-align: center;
  font-size: 34px;
  line-height: 50px;
  position: absolute;
  z-index: 10;
}
.greeting_wrap .text_box {
  padding: 30px;
}
.greeting_wrap .text_box .text {
  font-size: 20px;
  line-height: 30px;
}
.greeting_wrap .text + .text {
  margin-top: 20px;
}
.greeting_wrap .text_box .sign {
  margin-top: 20px;
  font-size: var(--text_xl);
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .intro_box {
    min-height: 165px;
  }
  .intro_box .intro_title {
    font-size: 20px;
    line-height: 35px;
  }
  .intro_box::before {
    width: 160px;
  }
  .intro_box::after {
    width: 150px;
  }
}
@media screen and (max-width: 768px) {
  .intro_box {
    overflow: hidden;
    padding: 50px 10px;
    border-radius: 40px 0 40px 0;
  }
  .intro_box::before {
    width: 95px;
    bottom: -15px;
  }
  .intro_box::after {
    width: 80px;
    bottom: 0;
    right: 5%;
  }
  .intro_box .intro_title {
    font-size: 17px;
    line-height: 30px;
  }
  .greeting_wrap .text_box {
    padding: 30px 5px;
  }
  .greeting_wrap .text_box .text {
    font-size: 16px;
    line-height: 25px;
  }
  .greeting_wrap .text_box .sign {
    font-size: 16px;
  }
}

/* 센터소개 - 오시는길 */
.location_wrap .map_img {
  overflow: hidden;
}
.location_wrap .map_img img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
}
.location_wrap .map_img .root_daum_roughmap {
  max-width: 100%;
}
.location_wrap .map_img img.map_pc {
  display: block;
}
.location_wrap .map_img img.map_moblie {
  display: none;
}
.location_wrap .map_info {
  padding: 50px;
  border-left: 1px solid var(--border_color);
  border-right: 1px solid var(--border_color);
  border-bottom: 1px solid var(--border_color);
  display: flex;
  align-items: center;
  gap: 40px;
}
.location_wrap .map_left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.location_wrap .map_left::after {
  content: '';
  width: 2px;
  height: 60px;
  display: inline-block;
  background-color: var(--border_color);
  margin-left: 40px;
}
.location_wrap .map_left img {
  max-width: 242px;
  width: 100%;
  height: auto;
  display: block;
}
.location_wrap .map_right .address {
  display: block;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
}
.location_wrap .map_right .call {
  font-size: 20px;
  font-weight: 500;
}
.location_wrap .map_right .point {
  font-weight: 700;
  color: var(--sub_color01);
}
.traffic_wrap {
  margin-top: 50px;
}
.traffic_wrap .traffic_box:not(:last-of-type) {
  margin-bottom: 50px;
}
.traffic_wrap .map_title {
  font-size: 24px;
  font-weight: 700;
  border-bottom: 1px solid var(--main_color);
  padding-bottom: 15px;
}
.traffic_list.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.traffic_list .traffic_item {
  display: flex;
  gap: 30px;
  padding-top: 30px;
  position: relative;
}
.traffic_list .traffic_item::before {
  content: '';
  width: 100px;
  aspect-ratio: 1 / 1;
  display: inline-block;
  border-radius: 10px;
  background-color: #eaeef8;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 30px;
}
.traffic_list .traffic_item.type01::before {
  background-image: url(../img/sub/ico_traffic01.png);
  background-size: 52px 51px;
}
.traffic_list .traffic_item.type02::before {
  background-image: url(../img/sub/ico_traffic02.png);
  background-size: 52px 51px;
}
.traffic_list .traffic_item.type03::before {
  background-image: url(../img/sub/ico_traffic03.png);
  background-size: 66px 42px;
}
.traffic_item .traffic_text {
  padding-top: 20px;
  padding-left: 120px;
}
.traffic_text .title {
  font-size: var(--text_xl);
  font-weight: 500;
  margin-bottom: 15px;
}
.traffic_text .title.center {
  text-align: start;
}
.traffic_text .point {
  color: var(--sub_color05);
}
.traffic_text .point.color01 {
  color: #758830;
}
.traffic_text .traffic_group > li {
  margin-bottom: 25px;
}
.circle_list > li {
  position: relative;
  padding-left: 10px;
  font-size: var(--text_l);
  font-weight: 300;
  line-height: 26px;
  text-align: left;
}
.circle_list > li + li{
  margin-top: 5px;
}
.circle_list > li::before {
  content: '';
  width: 5px;
  aspect-ratio: 1 / 1;
  background-color: var(--sub_color03);
  position: absolute;
  top: 10px;
  left: 0;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .traffic_item .traffic_text {
    padding-top: 5px;
  }
}
@media screen and (max-width: 768px) {
	.location_wrap .wrap_map{
		height: 320px  !important;
	}
  .location_wrap .map_info {
    flex-direction: column;
    padding: 30px 10px;
    gap: 20px;
  }
  .location_wrap .map_left {
    flex-direction: column;
    width: 100%;
  }
  .location_wrap .map_left::after {
    width: 100%;
    height: 2px;
    margin-left: 0;
    margin-top: 20px;
  }
  .location_wrap .map_left img {
    max-width: 150px;
  }
  .location_wrap .map_img img.map_pc {
    display: none;
  }
  .location_wrap .map_img img.map_moblie {
    display: block;
  }
  .location_wrap .map_right {
    text-align: center;
  }
  .location_wrap .map_right .address {
    font-size: 14px;
    line-height: 20px;
  }
  .location_wrap .map_right .call {
    display: block;
    font-size: 14px;
    margin-top: 5px;
  }
  .traffic_list.grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .traffic_list .traffic_item {
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
  }
  .traffic_list .traffic_item::before {
    text-align: center;
    margin: 0 auto;
    position: static;
  }
  .traffic_list .traffic_item + .traffic_item {
    padding-top: 0;
  }
  .traffic_item .traffic_text {
    padding: 0;
  }
  .traffic_text .title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .traffic_text .title.center {
    text-align: center;
    margin-bottom: 5px;
  }
  .traffic_text .title.point {
    text-align: start;
    font-size: 18px;
  }
  .traffic_text .traffic_group {
    margin-top: 20px;
  }
  .traffic_text .traffic_group > li {
    margin-bottom: 15px;
  }
  .circle_list > li {
    text-align: start;
    line-height: 20px;
  }
  .circle_list > li::before{
    top: 8px;
  }
}

/* 센터소개 - 캐릭터소개 */
.intro_box.type01 {
  background-color: #8b8add;
}
.intro_box.type01::before {
  display: none;
}
.intro_box.type01::after {
  width: 269px;
  aspect-ratio: 269 / 238;
  background: url(../img/sub/ico_character.png)no-repeat center / contain;
  right: 15%;
  bottom: -15px;
}
.intro_box.type01 .intro_title {
  color: #fff;
  font-size: 25px;
  font-weight: 700;
}
.intro_box.type01 .sub_tit {
  color: #fff;
  font-size: 45px;
}
.character_info {
  margin-top: 50px;
}
.character_info .title {
  font-size: 28px;
  font-weight: 700;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--main_color);
}
.character_info .text01 {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
}
.character_info .text02 {
  font-size: var(--text_l);
  margin-top: 10px;
}
.character_info .text03 {
  font-size: 22px;
  font-weight: 700;
  color: var(--main_color);
  margin-top: 20px;
}
.character_info .border_box + .text03 {
  margin-top: 30px;
}
.character_info .border_box {
  border: 1px solid var(--border_color);
  padding: 50px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.character_info .border_box .ct_type01 {
  display: block;
  width: 100%;
  max-width: 424px;
}
.character_info .border_box .mobile {
  display: none;
}
.step_list_wrap .step_list {
  display: flex;
}
.step_list .step_text {
  position: relative;
  flex: 1;
  max-width: 250px;
  white-space: nowrap;
  font-weight: bold;
  color: #ff5500;
  text-align: center;
  padding-bottom: 50px;
}
.step_list .step_text span {
  font-size: 18px;
}
.step_list_wrap .circle_cont {
  display: flex;
  padding-top: 50px;
}
.circle_cont > li:first-of-type {
  margin-right: -20px;
}
.circle_cont > li:last-of-type {
  margin-left: -20px;
}
.circle_cont .cicle_item {
  width: 220px;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  min-width: 0;
  border-radius: 50%;
  background: linear-gradient(180deg,rgba(255, 115, 27, 1) 0%, rgba(255, 55, 0, 1) 100%);
  position: relative;
}
.circle_cont .cicle_item::before {
  content: '';
  width: 31px;
  aspect-ratio: 31 / 16;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/sub/ico_circlearrow.png)no-repeat;
}
.circle_cont .cicle_item .hashtag {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.character_page .board_button_list,
.ci_intro_page .board_button_list{
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
.ci_intro_page .board_btn .btn_item,
.character_page .board_btn .btn_item {
  height: 55px;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.character_page .board_btn .btn_item::before,
.character_page .board_btn .btn_item::after,
.ci_intro_page .board_btn .btn_item::before,
.ci_intro_page .board_btn .btn_item::after {
  display: none;
}
.character_page .board_btn .btn_item:hover,
.ci_intro_page .board_btn .btn_item:hover{
  background-color: #fff;
}
.board_btn .btn_item.jpg {
  background-color: var(--sub_color05);
  border: 2px solid var(--sub_color05);
}
.board_btn .btn_item.jpg:hover {
  color: var(--sub_color05);
}
.board_btn .btn_item.ai {
  background-color: var(--sub_color01);
  border: 2px solid var(--sub_color01);
}
.board_btn .btn_item.ai:hover {
  color: var(--sub_color01);
}
.board_btn .btn_item.pdf {
  background-color: #119c9f;
  border: 2px solid #119c9f;
}
.board_btn .btn_item.pdf:hover {
  color: #119c9f;
}
@media screen and (max-width: 1024px) {
  .intro_box.type01::after {
    width: 185px;
    aspect-ratio: 185/ 164;
    bottom: -10px;
    right: 5%;
  }
  .intro_box.type01 .intro_title {
    font-size: 18px;
  }
  .intro_box.type01 .sub_tit {
    font-size: 30px;
  }
  .character_info {
    margin-top: 30px;
  }
  .character_info .title {
    font-size: 20px;
    padding-bottom: 15px;
  }
  .character_info .text01 {
    font-size: 18px;
    line-height: 26px;
    margin-top: 15px;
  }
  .character_info .text02 {
    font-size: 16px;
    line-height: 22px;
  }
  .character_info .text03 {
    font-size: 18px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .intro_box.type01 {
    overflow: visible;
    padding: 25px 10px 70px;
  }
  .intro_box.type01::after {
    width: 115px;
    aspect-ratio: 115/ 120;
    right: 2%;
    bottom: -15px;
  }
  .character_info .border_box {
    padding: 35px 10px;
    margin-top: 15px;
  }
  .character_info .border_box .ct_type01 {
    max-width: 230px;
  }
  .character_info .border_box .pc {
    display: none;
  }
  .character_info .border_box .mobile {
    display: block;
  }
  .step_list .step_text {
    white-space: normal;
    word-break: keep-all;
  }
  .step_list .step_text span {
    font-size: 16px;
  }
  .step_list_wrap .circle_cont {
    padding-top: 30px;
  }
  .circle_cont .cicle_item {
    width: 100px;
  }
  .circle_cont .cicle_item .hashtag {
    font-size: 18px;
  }
  .character_page .board_button_list {
    margin-top: 40px;
  }
}

/* 센터소개 - CI 소개 */
.ci_cont:not(:last-of-type) {
  margin-bottom: 50px;
}
.ci_cont .title {
  font-size: 28px;
  font-weight: 700;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--main_color);
}
.ci_cont .text01 {
  font-size: 26px;
  font-weight: 700;
  padding-top: 20px;
}
.ci_cont .text_list {
  padding-top: 20px;
}
.ci_cont .text_list > li {
  font-size: 20px;
}
.ci_cont .text_list > li:not(:last-of-type) {
  padding-bottom: 10px;
}
.ci_cont .point {
  font-size: 20px;
  font-weight: 700;
  color: var(--main_color);
}
.bd_box_wrap {
  padding-top: 30px;
}
.bd_box_wrap .bd_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}
.bd_box_wrap .point {
  display: block;
  margin-bottom: 15px;
}
.bd_box_wrap .bd_item .bd_text {
  font-size: 18px;
}
.bd_box_wrap .bd_item .bd_text + .bd_box {
  min-height: 355px;
  margin-top: 10px;
  padding: 20px 35px;
}
.bd_box_wrap .bd_box {
  border: 1px solid var(--border_color);
  padding: 50px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bd_box_wrap .bd_box .mo {
  display: none;
}
.bd_box_wrap .bd_box img {
  display: block;
  max-width: 100%;
}

@media screen and (max-width: 1024px) {
  .bd_box_wrap .bd_box {
    padding: 50px 15px;
  }
}

@media screen and (max-width: 768px) {
  .bd_box_wrap .bd_box .pc {
    display: none;
  }
  .bd_box_wrap .bd_box .mo {
    display: block;
  }
  .bd_box_wrap .bd_box .img_w {
    max-width: 110px;
    width: 100%;
    height: auto;
  }
  .bd_box_wrap .bd_grid {
    grid-template-columns: 1fr;
  }
  .ci_cont .title{
    font-size: 20px;
    padding-bottom: 10px;
  }
  .ci_cont .text_list > li{
    font-size: 16px;
    line-height: 24px;
  }
  .ci_cont .text_list > li .point{
    font-size: 16px;
  }
  .bd_box_wrap{
    padding-top: 15px;
  }
  .ci_cont:not(:last-of-type){
    margin-bottom: 30px;
  }
  .ci_cont .text01{
    font-size: 18px;
    padding-top: 15px;
  }
  .ci_cont .point{
    font-size: 18px;
  }
  .ci_cont .text_list{
    padding-top: 15px;
  }
  .bd_box_wrap .point{
    margin-bottom: 5px;
  }
  .bd_box_wrap .bd_item .bd_text{
    font-size: 14px;
  }
  .bd_box_wrap .bd_item .bd_text + .bd_box{
    min-height: 280px;
    padding: 15px;
  }
}

/* 지원사업 - 상권활성화 지원 */
.support_list {
  border-top: 2px solid var(--main_color);
}
.support_list > li {
  border-bottom: 1px solid var(--border_color);
  padding: 40px 30px;
  display: flex;
  gap: 35px;
}
.support_img {
  width: 100%;
  max-width: 330px;
  aspect-ratio: 330 / 210;
  overflow: hidden;
  border-radius: 10px;
}
.support_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.support_info {
  max-height: 210px;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.support_info .tit {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  overflow: hidden;
}
.support_info .txt {
  font-size: var(--text_l);
  font-weight: 300;
  display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  line-height: 25px;
}
.support_info .btn_wrap {
  margin-top: auto;
  justify-content: start;
}
@media screen and (max-width: 768px) {
  .support_list > li {
    padding: 20px 10px;
    flex-direction: column;
    gap: 20px;
  }
  .support_img {
    max-width: 100%;
  }
  .support_info .tit {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .support_info .txt {
    margin-bottom: 20px;
    line-height: 20px;
  }
  .support_info .btn_wrap {
    align-items: flex-start;
  }
  .support_info .btn_wrap .btn {
    width: 130px;
  }
}

/* 지원사업 - 상권활성화 지원 - 마케팅 지원 */
.text_list .title_box {
  margin-bottom: 20px;
}
.text_list .title_box .title {
  display: inline-block;
}
.text_list .title_box .bar_list {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 5px;
}
.text_list .title_box .bar_list .thin {
  font-size: 24px;
}
.bar_list > li {
  position: relative;
  padding-left: 15px;
  text-align: left;
}
.bar_list > li::before {
  content: '';
  width: 8px;
  height: 1px;
  background: #000;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 13px;
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  .text_list .title_box .bar_list .thin {
    font-size: 18px;
  }
  .bar_list > li {
    padding-left: 10px;
  }
  .bar_list > li::before {
    width: 6px;
    top: 10px;
  }
}

/* 지원사업 - 디지털화 */
.digital_list {
  padding-top: 40px;
  border-top: 2px solid var(--main_color);
}
.text_list .title {
  font-size: 24px;
  font-weight: 500;
}
.text_list .title:not(:last-of-type) {
  margin-bottom: 20px;
}
.text_list .thin {
  font-weight: 300;
}
.text_list .thin_sub {
  display: block;
  font-size: 18px;
  font-weight: 300;
  margin-top: 5px;
  line-height: 22px;
}
.process_list_wrap {
  margin: 20px 0;
}
.process_list {
  display: flex;
  gap: 20px;
}
.process_list > li:not(.arrow) {
  flex: 1;
  min-width: 0;
  text-align: center;
  border: 1px solid var(--border_color);
  display: flex;
  flex-direction: column;
}
.process_list > li.arrow {
  width: 20px;
  background: url(../img/sub/ico_arrow.png) no-repeat center center;
  background-size: contain !important;
  flex-shrink: 0;
}
.process_list > li .bg_title {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main_color);
  color: #fff;
  font-size: 20px;
  padding: 5px;
}
.process_list > li .bg_text {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--table_bg_color01);
  font-size: var(--text_l);
  padding: 5px;
}
.process_list > li .sub_text {
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px 5px;
  font-size: var(--text_l);
  flex: 1;
}
.process_list > li .ar {
  display: flex;
  gap: 5px;
  margin: 7px auto;
}
.process_list > li .ar p{
  width: 26px;
  height: 26px;
  color: #fff;
  background: #85a7f3 url(../img/sub/ico_ar.png) no-repeat center center;
  border-radius: 50%;
}
.process_list > li .ar p.top{
  transform: rotate(180deg);
}
@media screen and (max-width: 1024px) {
  .process_list {
    gap: 10px;
  }
  .process_list > li {
    width: 100%;
  }
  .process_list > li.arrow {
    width: 15px;
  }
  .process_list > li .bg_title {
    font-size: 18px;
  }
  .text_list .title {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .digital_list{
    padding: 30px 0;
  }
  .process_list_wrap {
    margin: 10px 0 20px;
  }
  .process_list {
    flex-direction: column;
    align-items: center;
  } 
  .process_list > li.arrow {
    height: 15px;
    transform: rotate(90deg);
  }
  .process_list > li .bg_title {
    min-height: 50px;
  }
  .process_list > li .bg_text {
    min-height: 40px;
  }
  .process_list > li .sub_text {
    min-height: 65px;
    padding: 15px 5px;
  }
  .process_list > li .ar {
    margin: 5px auto;
  }
  .text_list .title {
    line-height: 26px;
  }
  .text_list .thin_sub {
    font-size: 15px;
  }
}

/* 알림/소식 - SNS홍보 */
.board_button_list {
  margin: 0 auto;
}
.board_btn {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
.board_btn .btn_item {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 225px;
  padding: 15px 20px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.board_btn .btn_item::after {
  content: '';
  width: 6px;
  aspect-ratio: 6 / 10;
  display: inline-block;
  margin-left: auto;
  background-image: url(../img/sub/ico_btnprev.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.board_btn .btn_item::before {
  content: '';
  width: 21px;
  aspect-ratio: 1 / 1;
  display: inline-block;
  margin-right: 5px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.board_btn .btn_item.blog {
  background-color: #249e0c;
}
.board_btn .btn_item.blog:hover {
  border-color: #249e0c;
  background-color: #fff;
  color: #249e0c;
}
.board_btn .btn_item.blog::before {
  background-image: url(../img/sub/ico_blog.png);
}
.board_btn .btn_item.blog:hover::before {
  background-image: url(../img/sub/ico_blog_on.png);
}
.board_btn .btn_item.blog:hover::after {
  background-image: url(../img/sub/ico_btnprev_blog.png);
}
.board_btn .btn_item.insta {
  background-color: #d20c7c;
}
.board_btn .btn_item.insta:hover {
  border-color: #d20c7c;
  background-color: #fff;
  color: #d20c7c;
}
.board_btn .btn_item.insta::before {
  background-image: url(../img/sub/ico_insta.png);
}
.board_btn .btn_item.insta:hover::before {
  background-image: url(../img/sub/ico_insta_on.png);
}
.board_btn .btn_item.insta:hover::after {
  background-image: url(../img/sub/ico_btnprev_insta.png);
}
.board_btn .btn_item.youtube {
  background-color: #de2d28;
}
.board_btn .btn_item.youtube:hover {
  border-color: #de2d28;
  background-color: #fff;
  color: #de2d28;
}
.board_btn .btn_item.youtube::before {
  background-image: url(../img/sub/ico_youtube.png);
}
.board_btn .btn_item.youtube:hover::before {
  background-image: url(../img/sub/ico_youtube_on.png);
}
.board_btn .btn_item.youtube:hover::after {
  background-image: url(../img/sub/ico_btnprev_youtube.png);
}
.grid_box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 50px;
  padding: 40px 0;
}
@media screen and (max-width: 1024px) {
  .board_btn {
    flex-direction: column;
    gap: 7px;
  }
  .grid_box {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 30px;
  }
}
@media screen and (max-width: 768px) {
  .grid_box {
    padding: 25px 0;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .grid_box {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
}

/* 알림/소식 - 행사캘린더 */
.callender_top {
  padding: 40px 0;
  border-top: 2px solid var(--main_color);
}
.cal_control.type01 {
  margin-left: calc((100% - 725px) / 3);
}
.cal_control.type01 .date {
  order: 2;
}
.cal_control.type01 .prev {
  order: 1;
  border: 1px solid var(--border_color);
  margin-right: 15px;
}
.cal_control.type01 .next {
  order: 3;
}
.board_detail_wrap .title_box.type01 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.board_detail_wrap .title_box.type01 .data_title {
  font-size: var(--text_xl);
  font-weight: 700;
}
.board_detail_wrap .title_box.type01 .date {
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .cal_control.type01 {
    margin-left: 0;
    margin: 0 auto;
  }
  .board_detail_wrap .title_box.type01 {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .callender_top {
    padding: 25px 0;
  }
}

/* 부천시 상권 - 부천시 상권현황 */
.situation_page {
  padding: 50px 0;
  display: flex;
  gap: 50px;
  border-top: 2px solid var(--main_color);
}
.situation_page .map_area {
  flex: 1.2;
  min-width: 0;
}
.map_area .map_list > li.active {
  display: inline-block;
}
.map_area .map_list > li {
  display: none;
  aspect-ratio: 751 / 983;
}
.map_area .map_list > li > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.situation_page .store_area {
  flex: 1;
  min-width: 0;
  max-width: 560px;
}
.tab_button-wrap.type02 {
  margin-bottom: 40px;
}
.tab_button-wrap.type02 .tab_button-list li a {
  background: var(--table_bg_color01);
  min-height: 50px;
}
.tab_button-wrap.type02 .tab_button-list li.on a {
  background: var(--main_color);
  border: 1px solid var(--main_color);
  font-weight: 600;
}
.situation_page .board_srh_wrap {
  width: 100%;
}
.situation_page .board_srh_wrap .board_box_area {
  padding: 0;
  background-color: #fff;
}
.situation_page .board_box_area .board_input {
  width: 100%;
}
.situation_page .board_srh_wrap .board_srh_input {
  flex: 1;
  min-width: 0;
}
.situation_page .board_box_area .board_input input[type="text"] {
  width: auto;
}
.store_list_wrap .store_item {
  height: 680px;
  display: none;
  border: 2px solid #8891a5;
  border-radius: 10px;
  padding: 30px 5px;
  overflow: hidden;
}
.store_list_wrap .store_item.active {
  display: block;
}
.store_list_wrap .store_item .situa_detail {
  height: 100%;
  overflow-y: auto;
  padding: 0 30px;
}
.store_list_wrap .store_item .situa_detail::-webkit-scrollbar {
  width: 8px;
}
.store_list_wrap .store_item .situa_detail::-webkit-scrollbar-thumb {
  background: #8891a5;
  border-radius: 10px;
}
.store_list_wrap .store_item .situa_detail::-webkit-scrollbar-track {
  border-radius: 10px;
  background: var(--input_bg_color);
}
.situa_detail > li {
  padding: 25px 0;
}
.situa_detail > li:first-of-type { 
  padding-top: 0; 
}
.situa_detail > li:last-of-type { 
  padding-bottom: 0; 
}
.situa_detail > li:not(:last-of-type) {
  border-bottom: 1px solid var(--border_color);
}
.situa_detail > li > .situa_item {
  display: flex;
  gap: 15px;
}
.situa_detail > li > .situa_item .situa_img {
  width: 150px;
  aspect-ratio: 150 / 115;
  border: 1px solid var(--border_color);
  border-radius: 8px;
  overflow: hidden;
}
.situa_detail > li > .situa_item .situa_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.situa_info_wrap {
  max-height: 115px;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding-right: 5px;
}
.detail_info.situa {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 25px;
  margin-bottom: 10px;
  overflow: hidden;
}
.detail_info.situa > li {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.detail_info.situa > li:not(:first-of-type)::before {
  content: '';
  width: 1px;
  height: 18px;
  background-color: var(--border_color);
  display: inline-block;
  margin-right: 10px;
}
.detail_info.situa > li:has(.gu) {
  flex: 0 0 auto;
  overflow: visible;
}
.detail_info.situa > li:has(.mk) {
  flex: 1 1 0%; 
  min-width: 0;
}
.detail_info.situa .gu {
  font-size: 20px;
  font-weight: 300;
  white-space: nowrap;
}
.detail_info.situa .mk {
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.situa_info_wrap .situa_info .address {
  min-height: 40px;
  font-weight: 300;
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.situa_btn_wrap {
  display: flex;
  gap: 10px;
  margin-top: auto;
}
.situa_btn_wrap .situa_btn {
  min-width: 80px;
  height: 30px;
  background-color: var(--sub_color01);
  border: 1px solid var(--sub_color01);
  border-radius: 5px;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.situa_btn_wrap .situa_btn:hover {
  background-color: #fff;
  color: var(--sub_color01);
}
.situa_btn_wrap .situa_btn.map {
  background-color: var(--main_color);
  border-color: var(--main_color);
}
.situa_btn_wrap .situa_btn.map:hover {
  background-color: #fff;
  color: var(--main_color);
}
@media screen and (max-width: 1024px) {
  .situation_page {
    flex-direction: column;
    align-items: center;
  }
  .situation_page .store_area {
    width: 100%;
    max-width: 800px;
  }
  .situation_page .board_box_area .board_input > select {
    max-width: 150px;
  }
  .situation_page .board_srh_wrap .board_srh_input {
    max-width: 100%;
  }
  .store_list_wrap .store_item {
    height: 520px;
  }
}
@media screen and (max-width: 768px) {
  .store_list_wrap .store_item {
    height: 450px;
    padding: 25px 5px;
  }
  .store_list_wrap .store_item .situa_detail {
    padding: 0 20px;
  }
  .situa_detail > li {
    padding: 20px 0;
  }
  .detail_info.situa {
    gap: 5px;
    margin-bottom: 5px;
  }
  .detail_info.situa > li:not(:first-of-type)::before {
    margin-right: 10px;
  }
  .detail_info.situa .gu {
    font-size: 16px;
  }
  .detail_info.situa .mk {
    font-size: 16px;
  }
  .situa_info_wrap .situa_info .address {
    min-height: 36px;
    font-size: 14px;
    line-height: 18px;
  }
  .situa_btn_wrap .situa_btn {
    min-width: 65px;
    height: 25px;
    font-size: 14px;
  }
  .tab_button-wrap.type02 {
    margin-bottom: 30px;
  }
  .situation_page .board_srh_wrap .board_box_area {
    margin-bottom: 25px;
  }
  .tab_button-wrap.type02 .tab_button-list li a {
    min-height: 40px;
  }
}
@media screen and (max-width: 480px) {
  .situation_page {
    gap: 30px;
  }
  .situa_detail > li > .situa_item {
    flex-direction: column;
    gap: 10px;
  }
  .situa_detail > li > .situa_item .situa_img {
    width: 100%;
  }
  .situa_btn_wrap {
    margin-top: 10px;
  }
  .store_list_wrap .store_item {
    min-height: 350px;
  }
  .situation_page .board_box_area .board_input > select {
    max-width: max-content;
  }
}

/* 부천시 상권 - 부천시 상권현황 - 팝업 */
.layer_popup {
  display: none;
}
.layer_popup .layer_wrap {
  max-width: 690px;
  border-radius: 20px;
  overflow: hidden;
}
.layer_popup .layer_wrap .con_wrap {
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  padding: 30px 40px;
}
.layer_popup .layer_wrap .con_wrap::-webkit-scrollbar {
  width: 4px;
}
.layer_popup .layer_wrap .con_wrap::-webkit-scrollbar-thumb {
  background: #8891a5;
  border-radius: 10px;
}
.layer_popup .layer_wrap .con_wrap::-webkit-scrollbar-track {
  border-radius: 10px;
  background: var(--input_bg_color);
}
.layer_wrap .mk_detail_img {
  text-align: center;
}
.layer_wrap .mk_detail_img img {
  max-width: 100%;
  border-radius: 20px;
}
.layer_wrap .detail_info.situa {
  padding: 20px 0;
  margin-bottom: 0;
}
.layer_wrap .detail_info.situa .gu {
  font-size: 24px;
}
.layer_wrap .detail_info.situa .mk {
  font-size: 24px;
}
.layer_wrap .mk_detail_txt {
  max-width: 590px;
  padding: 20px 0;
}
.layer_wrap .circle_list {
  width: 100%;
}
.layer_wrap .circle_list > li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 18px;
}
.layer_wrap .circle_list > li .tit {
  min-width: 120px;
  font-weight: 600;
  display: inline-block;
  flex-shrink: 0;
}
.layer_wrap .circle_list > li .txt {
  word-break: keep-all;
  overflow-wrap: break-word;
  flex: 1;
  min-width: 0;
}
.layer_popup .layer_wrap .btn_pop_close {
  background-image: url(../img/sub/ico_popup_btn_close.png);
  right: 20px;
  top: 20px;
}
.layer_popup .btn_wrap {
  padding: 0;
  margin: 0;
}
.layer_popup .btn_wrap .btn {
  border-radius: 8px;
}
@media screen and (max-width: 1024px) {
  .layer_wrap .detail_info.situa .gu {
    font-size: 18px;
  }
  .layer_wrap .detail_info.situa .mk {
    font-size: 18px;
  }
  .layer_wrap .circle_list > li {
    font-size: 16px;
    line-height: 22px;
  }
  .layer_wrap .circle_list > li::before {
    top: 8px;
  }
  .layer_wrap .circle_list > li .tit {
    min-width: 90px;
  }
}
@media screen and (max-width: 768px) {
  .layer_wrap .detail_info.situa {
    gap: 10px;
  }
  .layer_popup .layer_wrap {
    width: calc(100% - 40px);
    border-radius: 10px;
  }
  .layer_wrap .mk_detail_img {
    border-radius: 10px;
  }
  .layer_wrap .mk_detail_txt {
    width: 100%;
  }
  .layer_wrap .circle_list > li {
    font-size: 14px;
  }
  .layer_wrap .circle_list > li .tit {
    min-width: 75px;
  }
  .layer_popup .btn_wrap .btn {
    width: 100px;
    height: 40px;
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .layer_popup .layer_wrap .con_wrap {
    padding: 20px 15px;
  }
  .layer_popup .layer_wrap .btn_pop_close {
    right: 15px;
  }
}

/* 부천시 상권 - 가게홍보 */
.gallery_board.type02 .gallery_item_list {
  gap: 40px 60px;
  padding: 40px 0;
  border-top: 2px solid var(--main_color);
  border-bottom: 1px solid var(--main_color);
}
.gallery_board.type02 .gallery_item_list > li:hover .txt_wrap {
  background-color: #fff;
}
.gallery_board.type02 .gallery_item_list > li:hover .txt_wrap .tit {
  color: var(--sub_color01);
  font-weight: 500;
}
.gallery_board.type02 .gallery_item_list > li:hover .thum_wrap img {
  transform: scale(1.1);
}
.gallery_board.type02 .gallery_item_list .thum_wrap {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 300 / 240;
}
.gallery_board.type02 .gallery_item_list .thum_wrap img {
  transition: all 0.3s ease-in-out;
}
.gallery_board.type02 .gallery_item_list .txt_wrap {
  border: 0;
  padding: 0;
  padding-top: 20px;
}
.gallery_board.type02 .gallery_item_list .txt_wrap > ul {
  border-top: 1px solid var(--border_color);
  padding-top: 10px;
}
.gallery_board.type02 .gallery_item_list .txt_wrap .tit {
  font-size: 20px;
  line-height: 26px;
}
.gallery_board.type02 .gallery_item_list .txt_wrap .tit.new::before {
  content: 'N';
  width: 24px;
  aspect-ratio: 1 / 1;
  background-color: #ae0f0f;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  color: #fff;
  font-size: 16px;
}
.txt_wrap > ul > .hit::before {
  content: '';
  width: 19px;
  aspect-ratio: 19 / 11;
  background: url(../img/sub/ico_view.png)no-repeat;
  display: inline-block;
  margin-right: 5px;
}
.gallery_board.type02 .thum_wrap {
  position: relative;
}
.img_tag {
  min-width: 105px;
  padding: 10px 5px;
  border-radius: 0 5px 5px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  left: 0;
}
.img_tag.type01 {
  background-color: var(--sub_color06);
}
.img_tag.type02 {
  background-color: var(--sub_color07);
}
.img_tag.type03 {
  background-color: var(--sub_color08);
}
.img_tag.type04 {
  background-color: var(--sub_color02);
}
.img_tag.type05 {
  background-color: var(--sub_color01);
}
.img_tag span {
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .gallery_board.type02 .gallery_item_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 50px;
  }
}
@media screen and (max-width: 768px) {
  .gallery_board.type02 .gallery_item_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
    padding: 25px 0;
  }
  .gallery_board.type02 .gallery_item_list .txt_wrap .tit {
    font-size: 18px;
    line-height: 22px;
    height: 44px;
    margin-bottom: 10px;
  }
  .gallery_board.type02 .gallery_item_list .txt_wrap .tit.new::before {
    width: 18px;
    height: 18px;
    border-radius: 3px;
    font-size: 14px;
  }
  .img_tag span {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .gallery_board.type02 .gallery_item_list {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* 부천시 상권 - 가게홍보 - 상세 */
.store_promotion_detail .board_detail_wrap .title_box {
  align-items: center;
}
.title_box .call {
  margin-left: auto;
  font-size: var(--text_xl);
  font-weight: 600;
}
.title_box .call span {
  font-weight: 400;
}
.editor_slide {
  margin: 0 -25px;
}
.editor_slide div {
  line-height: 0;
  font-size: 0;
}
.editor_slide .editor_slide_item {
  width: 100%;
  aspect-ratio: 635 / 510;
  overflow: hidden;
  padding: 0 25px;
  position: relative;
}
.editor_slide .editor_slide_item::before {
  content: '';
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 25px;
  right: 25px;
  border-radius: 10px;
  transition: opacity 0.3s ease;
}
.editor_slide .slick-center .editor_slide_item::before {
  opacity: 0;
}
.editor_slide .editor_slide_item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}
.editor_box .editor_control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 35px auto;
}
.editor_control button {
  width: 9px;
  aspect-ratio: 9 / 15;
  display: inline-block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.editor_control .prev {
  background-image: url(../img/ico_prev.png);
}
.editor_control .next {
  background-image: url(../img/ico_next.png);
}
.editor_control .count {
  font-size: 18px;
}
.editor_control .count .current {
  color: var(--sub_color01);
  min-width: 20px;
  display: inline-block;
}
.store_promotion_detail .btn_wrap.btnL .btn_list {
  display: flex;
  gap: 10px;
  margin-bottom: 60px;
}
.btn_wrap.btnL .btn  {
  width: 225px;
  border-radius: 10px;
  gap: 10px;
}
.btn_wrap.btnL .btn::before {
  content: '';
  width: 17px;
  height: 25px;
  display: inline-block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.btn_wrap.btnL .btn.naver {
  background-color: #249e0c;
  border: 2px solid #249e0c;
}
.btn_wrap.btnL .btn:hover.naver {
  background-color: #fff;
  color: #249e0c;
}
.btn_wrap.btnL .btn.kakao {
  background-color: #ce7605;
  border: 2px solid #ce7605;
}
.btn_wrap.btnL .btn:hover.kakao {
  background-color: #fff;
  color: #eca317;
}
.btn_wrap.btnL .btn.naver::before {
  background-image: url(../img/sub/ico_naver.png);
  background-size: 17px 17px;
}
.btn_wrap.btnL .btn:hover.naver::before {
  background-image: url(../img/sub/ico_naver_on.png);
}
.btn_wrap.btnL .btn.kakao::before {
  background-image: url(../img/sub/ico_kakao.png);
  background-size: 17px 25px;
}
.btn_wrap.btnL .btn:hover.kakao::before {
  background-image: url(../img/sub/ico_kakao_on.png);
}
@media screen and (max-width: 1024px) {
  .title_box .call {
    margin-left: 0;
  }
  .store_promotion_detail .board_detail_wrap .editor_box {
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  .editor_box .editor_control {
    margin: 15px 0 30px;
  }
  .store_promotion_detail .btn_wrap.btnL .btn_list {
    flex-direction: column;
    margin-bottom: 40px;
  }
  .btn_wrap.btnL {
    padding: 0;
  }
  .btn_wrap.btnL .btn {
    width: 155px;
  }
}

/* 연혁 */
.year_page {
  position: relative;
}
.year_page::after {
  content: '';
  width: 272px;
  aspect-ratio: 272 / 340;
  background-image: url(../img/sub/img_character.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.year_page .inner::after {
  content: '';
  display: block;
  width: 12px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  position: absolute;
  left: 250px;
  top: 0;
  background-color: var(--border_color);
  transform: translateX(-50%);
}
.year_box{
  padding-top: 110px;
  padding-bottom: 100px;
  --side_width : 250px;
  --circle_dot: 120px;
  position: relative;
}
.year_box::before{
  content: '';
  display: block;
  position: absolute;
  left: var(--side_width);
  top: 0;
  width: 1px;
  height: 100%;
  background-color: var(--border_color);
}
.year_box::after{
  content: '';
  display: block;
  position: absolute;
}
.year_box > li{
  display: flex;
}
.year_box > li + li{
  margin-top: 70px;
}
.year_box .year_cont{
  min-width: var(--side_width);
}
.year_box .month_list{
  flex: 1;
  min-width: 0;
  padding: 15px 0 15px 85px;
}
.year_box .year_title{
  color: var(--sub_color09);
  font-size: 50px;
  font-weight: 700;
}
.year_box .month_title{
  font-size: 24px;
  font-weight: 700;
  min-width: 145px;
  padding-left: 35px;
  position: relative;
}
.year_box .month_list > li{
  display: flex;
  gap: 10px;
  position: relative;
  align-items: flex-start;
}
.year_box .month_title::before{
  content: '';
  display: block;
  width: 12px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 3px solid var(--sub_color09);
  position: absolute;
  left: 0;
  top: 8px;
}
.year_box .month_list > li::after{
  position: absolute;
  content: '';
  display: block;
  background-color: var(--border_color);
  width: 85px;
  height: 1px;
  left: -85px;
  top: 13px;
  z-index: -1;
}
.year_box .month_list > li:first-of-type::after{
  width: 190px;
  left: -190px
}
.year_box .month_list > li:first-of-type::before{
  content: '';
  display: block;
  width: 12px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  position: absolute;
  left: -190px;
  top: 8px;
  background-color: var(--border_color);
}
.year_box .text_box{
  font-size: 20px;
  line-height: 30px;
}
.year_box .text_box .sub_text{
  font-weight: 300;
  color: #4d4d4d;
  margin-top: 5px;
}
.year_box .month_list > li + li{
  margin-top: 20px;
}
.year_box::after{
  content: '';
  display: block;
  width: 12px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  position: absolute;
  left: 250px;
  bottom: 0;
  background-color: var(--border_color);
  transform: translateX(-50%);
}
.banner_box{
  border-bottom-right-radius: 30px;
  border-top-left-radius: 30px;
  position: relative;
  overflow: hidden;
  min-height: 165px;
}
.banner_box > img{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width:1024px){
  .year_page .inner::after {
    left: 200px;
  }
  .year_page::after {
    width: 200px;
  }
  .year_box{
    --side_width: 200px;
    padding-top: 40px;
  }
  .year_box .month_list > li:first-of-type::after{
    left: -100px;
    width: 100px;
  }
  .year_box .month_list > li::after{
    width: 40px;
    left: -40px;
  }
  .year_box .month_list > li:first-of-type::before{
    left: -100px;
  }
  .year_box .month_list{
    padding: 15px 0 15px 40px;
  }
  .year_box::after{
    left: 200px;
  }
}
@media screen and (max-width:768px){
  .year_page .inner::after {
    display: none;
  }
  .year_page {
    padding-bottom: 200px;
  }
  .year_page::after {
    width: 130px;
    left: 50%;
    transform: translateX(-50%);
  }
  .year_box > li,
  .year_box .month_list > li{
    flex-direction: column;
    gap: 5px;
  }
  .year_box{
    padding-bottom: 0;
    padding-top: 0;
  }
  .year_box .year_title{
    font-size: 32px;
    margin-bottom: 8px;
  }
  .year_box .month_title{
    font-size: 18px;
    padding-left: 18px;
  }
  .year_box .text_box{
    font-size: 14px;
    line-height: 18px;
    padding-left: 18px;
  }
  .year_box::after,
  .year_box::before,
  .year_box .month_list > li::before,
  .year_box .month_list > li::after{
    display: none;
  }
  .year_box .month_list{
    padding: 0px;
  }
  .year_box .month_title::before {
    top: 6px;
  }
  .year_box .month_list > li + li{
    margin-top: 10px;
  }
  .year_box > li + li{
    margin-top: 30px;
  }
}

/* 기타 - 이용약관 */
.mbs_agreement_list {
  border-top: 2px solid var(--main_color);
}
.mbs_agreement_item { 
  margin-top: 40px;
}
.mbs_agreement_item .title {
  font-size: 22px;
  color: var(--main_color);
}
.agreement_list .agreement_item {
  margin-top: 20px;
}
.agreement_list .agreement_item .bold {
  font-size: 18px;
}
.agreement_list .agreement_item > ul {
  font-size: 16px;
  font-weight: 300;
  margin-top: 10px;
}
.agreement_list .agreement_item > ul:is(.num_list) {
  counter-reset: my-counter;
}
.agreement_list .agreement_item > ul:is(.num_list) > li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.agreement_list .agreement_item > ul:is(.num_list) > li:is(.off) {
  padding-left: 0;
}
.agreement_list .agreement_item > ul:is(.num_list) > li:not(.off)::before {
  counter-increment: my-counter;
  content: counter(my-counter);
  position: absolute;
  left: 0;
  top: 2px;
  width: 14px;
  height: 14px;
  border: 1px solid var(--sub_color01);
  border-radius: 50%;
  color: var(--sub_color01);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agreement_list .agreement_item > ul > li {
  margin-top: 10px;
}
.agreement_list .agreement_item > ul > li > ul {
  margin-top: 10px;
  counter-reset: my-counter;
}
.agreement_list .agreement_item > ul > li > ul > li {
  font-size: 14px;
  line-height: 24px;
  position: relative;
  padding-left: 20px;
}
.agreement_list .agreement_item > ul > li > ul > li::before {
  counter-increment: my-counter;
  content: counter(my-counter, hangul) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .mbs_agreement_item {
    margin-top: 30px;
  }
  .agreement_list .agreement_item {
    margin-top: 15px;
  }
  .agreement_list .agreement_item .bold {
    font-size: 16px;
  }
  .agreement_list .agreement_item > ul {
    margin-top: 10px;
  }
  .agreement_list .agreement_item > ul > li {
    font-size: 14px;
    line-height: 20px;
  }
  .agreement_list .agreement_item > ul:is(.num_list) > li {
    margin-bottom: 0;
  }
  .agreement_list .agreement_item > ul:is(.num_list) > li:not(.off)::before {
    top: 3px;
  }
  .agreement_list .agreement_item > ul > li > ul {
    margin-top: 5px;
  }
}

/* 기타 - 이메일무단수집거부 */
.email_collection_wrap .email_inner {
  background: var(--table_bg_color01);
  padding: 70px 0;
}
.with_wrap {
  padding: 0 20px;
}
.email_collection_wrap .with_wrap .top .title {
  font-size: 22px;
  line-height: 36px;
  text-align: center;
  font-weight: 500;
}
.email_collection_wrap .with_wrap .top .title::before {
  content: '';
  display: block;
  margin: 0 auto 30px;
}
.email_collection_wrap .with_wrap .top .title.email::before {
  background: url(../img/sub/ico_email.png)no-repeat center / contain;
  width: 99px;
  aspect-ratio: 99 / 84;
}
@media screen and (max-width: 768px) {
  .email_collection_wrap .email_inner {
    padding: 40px 0;
  }
  .with_wrap {
    padding: 0 15px;
  }
  .email_collection_wrap .with_wrap .top .title.email::before {
    width: 60px;
    aspect-ratio: 60 / 57;
  }
  .email_collection_wrap .with_wrap .top .title {
    font-size: 16px;
    line-height: 25px;
  }
  .email_collection_wrap .with_wrap .top .title br {
    display: none;
  }
}

/* 기타 - 통합검색 */
.total_srh_wrap .guide_box {
  padding-top: 20px;
}
.total_srh_wrap .guide_box .text {
  font-size: 22px;
  line-height: 36px;
  text-align: center;
  font-weight: 500;
}
.total_srh_wrap .guide_box .text::before {
  content: '';
  width: 126px;
  aspect-ratio: 126 / 51;
  display: block;
  margin: 0 auto 40px;
  background: url(../img/sub/ico_total_srh.png)no-repeat center / contain;
}
@media screen and (max-width: 768px) {
  .total_srh_wrap .guide_box {
    padding-top: 0;
  }
  .total_srh_wrap .guide_box .text {
    font-size: 16px;
    line-height: 25px;
  }
  .total_srh_wrap .guide_box .text::before {
    margin: 0 auto 25px;
  }
}

/* 통합검색 - 검색 결과 요약 */
.total_sum_area {
  padding: 15px 20px;
  font-size: 20px;
  line-height: 35px;
  margin-bottom: 55px;
  border-radius: 5px;
}
.total_sum_area .total_sum_text {
  font-size: 22px;
  font-weight: 500;
  text-align: center;
}
.total_srh_wrap :is(.keyword, .result) {
  color: var(--sub_color01);
}
@media screen and (max-width:768px) {
  .total_srh_wrap .board_srh_wrap .board_box_area {
    margin: 0;
  }
  .total_sum_area .total_sum_text {
    font-size: 16px;
    line-height: 22px;
  }
  .total_sum_area {
    padding: 20px 10px 10px;
    margin-bottom: 35px;
  }
}

/* 통합검색 - 결과 - 공통 */
.total_result_sum {
  font-size: 22px;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--main_color);
  font-weight: 700;
}
.total_result_box {
  position: relative;
}
.total_result_box .more_view_btn {
  position: absolute;
  display: flex;
  width: 84px;
  height: 45px;
  padding: 0px 10px 0;
  border: 1px solid var(--main_color);
  background-color: var(--main_color);
  color: #fff;
  justify-content: center;
  align-items: center;
  top: -22px;
  transition: 0.3s;
  font-size: var(--text_m);
  right: 0;
}
.total_result_box .more_view_btn span {
  font-size: 30px;
  display: inline-block;
  margin-left: 10px;
  font-weight: 300;
}
.total_result_box .result_list>li {
  border-bottom: 1px solid #dfdfdf;
}
.total_result_box .result_list .no_data,
.total_result_box .result_list .no_search {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
}
.total_result_box .result_list .inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 65px;
  padding: 23px 15px 18px;
  position: relative;
}
.total_result_box .con_top {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.total_result_box .result_list .inner .con {
  width: 100%;
}
.total_result_box .result_list .title {
  font-weight: 700;
  font-size: 18px;
  margin-top: 10px;
}
.total_result_box .result_list .title+.content {
  margin-top: 4px;
}
.total_result_box .result_list .content {
  font-size: 16px;
  line-height: 22px;
  max-height: 44px;
  font-weight: 300;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-break: break-all;
}
.total_result_box .result_list .content strong {
  font-weight: normal;
  color: var(--sub_color01);
}
.total_result_box .result_list .path_list {
  display: flex;
  align-items: center;
  font-size: 18px;
  gap: 8px;
}
.total_result_box .result_list .path_list>li::before {
  content: '';
  display: block;
  width: 5px;
  aspect-ratio: 5 / 9;
  background: url(../img/sub/ico_path_arrow.png) no-repeat center;
  background-size: contain;
}
.total_result_box .result_list .path_list>li:first-of-type::before {
  width: 14px;
  aspect-ratio: 1 / 1;
  background: url(../img/sub/ico_path_home.png) no-repeat center;
}
.total_result_box .result_list .path_list>li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.total_result_box .result_list .path_list>li span {
  padding-top: 3px;
}
.total_result_box .util_btn_wrap {
  display: flex;
  gap: 20px;
}
.total_result_box .util_btn_wrap>a {
  text-decoration: underline;
  text-underline-offset: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
}
.total_result_box .util_btn_wrap a::after {
  content: '';
  display: block;
  background: no-repeat center top;
  background-size: cover;
  aspect-ratio: 1 / 1;
}
.total_result_box .util_btn_wrap .new_window_btn::after {
  width: 14px;
  background-image: url(../img/sub/ico_new_window.png);
}
.total_result_box .util_btn_wrap .window_btn:after {
  width: 12px;
  background-image: url(../img/sub/ico_current_window.png);
}
.total_result_box+.total_result_box {
  margin-top: 60px;
}
@media screen and (hover:hover) {
  .total_result_box .util_btn_wrap a:hover {
    color: var(--sub_color01);
  }
  .total_result_box .util_btn_wrap a:hover::after {
    background-position: 0 100%;
  }
  .total_result_box .more_view_btn:hover {
    background-color: #fff;
    color: var(--sub_color01);
  }
  .total_result_box .util_btn_wrap .new_window_btn:hover::after {
    background-image: url(../img/sub/ico_new_window_on.png);
  }
  .total_result_box .util_btn_wrap .window_btn:hover::after {
    background-image: url(../img/sub/ico_current_window_on.png);
  }
}
@media screen and (max-width:768px) {
  .total_result_sum {
    font-size: 18px;
    padding-bottom: 15px;
  }
  .total_result_box .more_view_btn {
    font-size: 14px;
    width: 80px;
    height: 35px;
    top: -8px;
    padding-top: 2px;
  }
  .total_result_box .more_view_btn span {
    font-size: 24px;
  }
  .total_result_box .result_list .inner {
    font-size: 14px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 50px;
    padding: 13px 10px 10px;
  }
  .total_result_box .util_btn_wrap>a {
    font-size: 13px;
  }
  .total_result_box .result_list .inner .con {
    width: 100%;
    padding-right: 0;
  }
  .total_result_box .result_list .content {
    font-size: 14px;
    line-height: 18px;
    max-height: 36px;
    margin: 5px auto;
  }
  .total_result_box .result_list .no_data,
  .total_result_box .result_list .no_search {
    height: 50px;
    font-size: 16px;
  }
  .total_result_box .result_list .path_list {
    font-size: 14px;
    gap: 7px;
  }
  .total_result_box .result_list .path_list>li {
    gap: 7px;
  }
  .total_result_box .result_list .path_list>li:first-of-type::before {
    width: 11px;
    aspect-ratio: 11/ 12;
    margin-bottom: 2px;
    background-size: contain;
  }
  .total_result_box .util_btn_wrap .new_window_btn::after {
    width: 12px;
  }
  .total_result_box .util_btn_wrap .window_btn:after {
    width: 11px;
  }
  .total_result_box .util_btn_wrap {
    gap: 10px;
  }
  .total_result_box .result_list .title {
    font-size: 16px;
    margin-top: 8px;
  }
}

/* 업무안내 */
.board_wrap .board_list.type03 .tr td > .circle_list{
  padding: 12px;
}
.board_wrap .board_list.type03 .tr td > .circle_list > li{
  font-weight: 500;
}
.board_wrap .board_list.type03 .tr td > .circle_list > li .bar_list{
  font-weight: 300;
}
.bold{
  font-weight: 700;
}
@media screen and (max-width:1024px){
  .board_wrap .board_list.type03 .tr td.m_full{
    width: 100%;
  }
  .board_wrap .board_list.type03 .tr td > .circle_list{
    padding: 0;
  }
  .board_wrap .board_list.type03 .tr td > .circle_list > li{
    font-size: 16px;
    line-height: 24px;
  }
  .board_wrap .board_list.type03 .tr td .pre{
    line-height: 24px;
    padding: 0;
  }
  .board_wrap .board_list.type03 .tr td > .circle_list > li + li{
    margin-top: 5px;
  }
  .board_wrap .board_list.type03.info .tr td{
    font-size: 16px;
  }
  .board_wrap .board_list.type03 .tr td > .circle_list > li .bar_list{
    font-size: 14px;
  }
  .board_wrap .board_list.type03 .tr td > .circle_list > li .bar_list > li::before{
    top: 12px;
  }
}
/* 기본테이블 */
.scroll_wrap{
  overflow-x: auto;
  position: relative;
  padding-top: 1px;
}
.scroll_wrap + .title{
  margin-top: 30px;
}
.basic_table{
  font-size: 20px;
  min-width: 520px;
}
.basic_table thead{
  background-color: var(--input_bg_color);
}
.basic_table tr{
  height: 50px;
  border-bottom: 1px solid var(--border_color);
}
.basic_table :is(th, td){
  text-align: center;
  padding: 5px 15px;
}
.basic_table :is(th, td):not(:last-of-type){
  border-right: 1px solid var(--border_color);
}
.basic_table td.left{
  text-align: left;
}
@media screen and (max-width:768px){
  .basic_table{
    font-size: 14px;
  }
  .basic_table tr{
    height:40px;
  }
  .basic_table :is(th, td){
    padding: 5px 10px;
  }
  .scroll_wrap + .title{
    margin-top: 20px;
  }
}

/*추가사항*/
.gallery_board.type02 .tr.no_data,
.gallery_board.type02 .tr.no_search{
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
}
.board_wrap .tr.no_data,
.board_wrap .tr.no_search{
  border-top: 1px solid var(--main_color);
  border-bottom: 1px solid var(--main_color);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
}
.store_list_wrap .no_search,
.store_list_wrap .no_data{
  border-bottom: none;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width:768px){
  .board_wrap .tr.no_data,
  .board_wrap .tr.no_search,
  .gallery_board.type02 .tr.no_data,
  .gallery_board.type02 .tr.no_search,
  .store_list_wrap .no_search,
  .store_list_wrap .no_data{
    height: 50px;
    font-size: 16px;
  }
}

/* 기타 - 고객상담창구 */
.customer_area {
  background-color: var(--table_bg_color01);
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
}
.customer_area::after {
  content: '';
  width: 586px;
  height: 523px;
  position: absolute;
  right: -60px;
  bottom: -30px;
  background: url(../img/sub/ico_customer_area.png) no-repeat center / contain;
  z-index: 1;
}
.customer_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
}
.customer_text::before {
  content: '';
  width: 194px;
  height: 147px;
  background: url(../img/sub/ico_customer_top.png)no-repeat center / contain;
  margin-bottom: 40px;
}
.customer_text .text {
  font-size: 22px;
  line-height: 35px;
}
.customer_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  position: relative;
  z-index: 2;
}
.customer_list > li {
  background-color: #fff;
  border-radius: 8px;
  padding: 50px 20px;
  text-align: center;
}
.customer_item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 30px;
}
.customer_item .title {
  font-size: 26px;
  font-weight: 700;
  color: var(--main_color);
}
.customer_item::before {
  content: '';
  width: 60px;
  display: block;
  aspect-ratio: 1 / 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.customer_item.type01::before {
  background-image: url(../img/sub/ico_customer01.png);
}
.customer_item.type02::before {
  background-image: url(../img/sub/ico_customer02.png);
}
.customer_item.type03::before {
  background-image: url(../img/sub/ico_customer03.png);
}
.customer_info > li:not(:last-of-type) {
  margin-bottom: 10px;
}
.customer_info .text {
  font-size: 20px;
}
.customer_info .badge {
  min-width: 95px;
  height: 30px;
  display: inline-flex;
  padding: 5px 18px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-right: 5px;
}
.customer_info .badge.type01 {
  background-color: var(--sub_color06);
}
.customer_info .badge.type02 {
  background-color: var(--sub_color07);
}
.customer_list > li:has(.customer_item.type02) .customer_info{
  max-width: 275px;
  margin: 0 auto;
}
.customer_list > li:has(.customer_item.type02) .customer_info .text{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.customer_list .text01 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
.customer_list .text02 {
  font-size: 20px;
  margin-bottom: 10px;
}
.customer_list .text03 {
  font-size: 20px;
  color: #ba522a;
}
.customer_btn {
  padding-top: 25px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.customer_btn .btn_mail {
  border:2px solid var(--sub_color01);
  background-color: var(--sub_color01);
  color: #fff;
  border-radius: 8px;
  padding: 10px;
  transition: 0.3s;
}
.customer_btn .btn_mail:hover{
  color: var(--sub_color01);
  background-color: #fff;
}
@media screen and (max-width: 1400px){
  .customer_list{
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .customer_list {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .customer_text::before {
    width: 100px;
    height: 77px;
  }
  .customer_text .text{
    font-size: 18px;
    line-height: 26px;
  }
  .customer_area{
    padding: 50px 20px 115px;
  }
  .customer_item .title{
    font-size: 21px;
  }
  .customer_info .badge{
    font-size: 14px;
    min-width: 80px;
    height: 25px;
    border-radius: 12.5px;
  }
  .customer_info .text{
    font-size: 16px;
  }
  .customer_info > li:not(:last-of-type){
    margin-bottom: 5px;
  }
  .customer_btn{
    padding-top: 20px;
    flex-direction: column;
    align-items: center;
    font-size: 15px;
  }
  .customer_btn .btn_mail{
    padding: 10px 15px;
  }
  .customer_list .text01 {
    font-size: 19px;
    margin-bottom: 5px;
  }
  .customer_list .text02,
  .customer_list .text03{
    font-size: 16px;
    margin-bottom: 0px;
  }
  .customer_area::after{
    aspect-ratio: 586 / 523;
    height: auto;
    width: 320px;
  }
  .customer_list > li:has(.customer_item.type02) .customer_info {
    max-width: 230px;
  }
}
.basic_table .dot_list {
  padding: 10px;
}
.basic_table .dot_list > li{
  padding-left: 15px;
  text-align: left;
  position: relative;
}
.basic_table .dot_list > li + li{
  margin-top: 5px;
}
.basic_table .dot_list > li::before{
  content: '';
  display: block;
  width: 2px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: #000;
  top: 8px;
  left: 4px;
  position: absolute;
}
@media screen and (max-width:768px){
  .basic_table .dot_list > li{
    padding-left: 10px;
  }
  .basic_table .dot_list > li::before{
    top: 7px;
    left: 2px;
  }
  .basic_table .dot_list {
    padding: 5px;
  }
}