@charset "UTF-8";

/*facility*/
.facility_city_btn_wrap {
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.facility_city_btn {
  background-color: #f6f6f8;
  width: 140px;
  height: 50px;
  border-radius: 999px;
}

.facility_city_btn > span {
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .facility_city_btn:hover > span {
  color: var(--blue);
}

.facility_city_btn_wrap a:last-child:hover .facility_city_btn span {
  color: white;
} */

.facility_city_btn.on {
  background-color: var(--blue);
  color: #ffffff;
}

@media screen and (max-width: 1440px){
	.facility_city_btn > span,
	.city_btn > span{
	font-size: 20px !important;}
	
	.facility_city_btn,
	.city_btn{
	width: 130px;}
}

/*care_type*/
.care_type {
  margin-top: 50px; /*25.06.19 margin-top 95px > 50px로 변경*/
}

.care_type_title {
  position: absolute;
  background-color: #f6f6f8;
  border-radius: 999px;
  padding: 0.7rem;
  width: 200px;
  text-align: center;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.care_type_text > h3{
	font-size: 20px;
}

.care_type_text > p{
	font-size: 14px;
}

/*25.06.19 .care_type_title_on을 .care_type_title.on으로 변경*/
.care_type_title.on {
  background: linear-gradient(to right, #8ec5fc, #5188f5);
  position: absolute;
  border-radius: 999px;
  padding: 0.7rem;
  width: 200px;
  text-align: center;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  color: #fff !important; /*25.06.19 color추가*/
}

.care_type_title h2 {
  z-index: 5;
}

.care_type_title::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #8ec5fc, #5188f5);
  transition: width 0.5s ease;
  z-index: -1;
}

@media screen and (max-width: 1440px){
	.care_type_title, .care_type_title.on{
	width: 150px;}
	.care_type_title h2{
	font-size: 24px !important;
	font-weight: 800 !important;
	}
	
	.care_type_text > h3{
	font-size: 18px;}
	
	.care_type_text > p{
	font-size: 10px;}
}

@media screen and (max-width: 768px){
	.care_type_text p{
	font-size: 12px;}
}

@media screen and (max-width: 520px) {
  .care_type_text h3 {
    font-size: 18px !important;
  }

/*   .care_type_text p {
    font-size: 10px;
  } */
}


.care_type_box:hover .care_type_title::after {
  width: 100%;
}

.care_type_box:hover h2 {
  color: #ffffff;
}

.care_type_content_wrap {
  margin-top: 1em;
  /*gap: 30px;*/
  height: 330px;
  display: flex;
  justify-content: space-between;
}
/*25.06.12 flex:1; 삭제*/
.care_type_box {
  position: relative;
  border-radius: 1.5rem;
  box-shadow: 0px 0px 50px rgba(0, 92, 213, 0.1);
}
/*25.06.12 gap:20px 추가*/
.care_type_content {
  width: 100%;
  padding: 3em 1em 1em 1em;
  /*gap: 20px;*/
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

/*25.06.12 width:48%; 삭제, flex:1; 추가*/
.care_type_content_box {
  background-color: #f8fbff;
  border-radius: 1rem;
  height: 270px;
  /*flex: 1;*/
  padding: 1rem 0.5rem;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media screen and (max-width: 1440px){
	.care_type_content_box{
	height: 200px;}

.care_type_content_wrap{
	height: 260px;}
}

.care_type_content_box:hover {
  outline: 3px solid var(--blue);
  transition: none !important;
}

.care_type_content_box.on {
  outline: 3px solid var(--blue);
}

.care_type_img img {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.care_type_text {
  margin-top: 1rem;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*article2 facility_map*/
.map_box {
  height: 350px;/*25.07.11 450px > 350px*/
  position: relative;
  background-image: url(/images/web/facility/facility_map.png);
  background-size: cover;
}

.map_pin img {
  position: absolute;
  cursor: pointer;
}

/*facility_table*/
.facility_table_wrap {
  height: 400px;
  overflow-y: auto;
}

/* .k6000_table {
  border: 1px solid #efefef;
}

.k6000_table thead {
  background-color: #f6f6f8;
  position: sticky;
  top: 0;
}

.k6000_table thead th {
  font-size: 1.2rem;
  padding: 0.5em 0;
}

.k6000_table td {
  text-align: center;
  font-size: 1.1rem;
  padding: 0.7em;
} */

.k6000_table tr:not(:last-child) td {
  border-bottom: 1px solid #efefef;
}

.k6000_center_table td a.btn{
	font-size: 14px !important;
}

.k6000_center_table td button.btn{
	font-size: 14px !important;
}

#careTbody .btn{
	width: 100% !important;
	height: auto;
	min-height: 40px;
}

@media screen and (max-width: 768px){
	
	#careTbody .btn{
	font-size: 14px !important;}
}


@media screen and (max-width: 1400px) {
  .facility_city_btn_wrap {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (max-width: 1024px) {
  .facility_city_btn_wrap {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .facility_city_btn_wrap.gongdong{
  grid-template-columns: repeat(4, 1fr);
} 
}

@media screen and (max-width: 940px) {
  .facility_city_btn_wrap {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (min-width: 769px) {
  .mo_facility_city_select {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .facility_city_btn_wrap {
    display: none !important;
  }

  /*25.06.12 care_type_box css추가*/
  .care_type_box {
    width: 100% !important;
    display: flex;
    align-items: flex-end;
  }

  .select_title {
    margin: 0 auto;
    padding: 1em;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
  }

  .select_title.checked {
    border: 1px solid #5188f5;
    box-shadow: 5px 5px 10px rgba(0, 92, 213, 0.05);
  }

  .select_title.checked .drop_down_icon {
    transform: rotate(180deg);
    transition: none !important;
  }

  .dropdown_menu {
    max-height: 0px;
    overflow-y: hidden;
    transition: max-height 0.3s ease;
    width: 300px;
    margin: 0 auto;
    box-shadow: 5px 5px 10px rgba(0, 92, 213, 0.05);
  }

  .dropdown_menu li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 1em;
    margin: 7px 0;
  }

  .dropdown_menu::-webkit-scrollbar {
    width: 8px;
  }

  .dropdown_menu::-webkit-scrollbar-thumb {
    border-radius: 10px;
  }

  .dropdown_menu::-webkit-scrollbar-track {
    border-radius: 10px;
  }

  .care_type_content_wrap {
    flex-direction: column;
    height: auto;
    gap: 63px;
  }

/*    .care_type_content {
    height: 316px;
  } */
 
/*   .care_type_content_box {
    height: 250px;
  } */
}


/*25.06.12 css추가-하단내용은 모두 새로추가된 내용입니다*/
@media screen and (max-width: 425px) {
  .care_type_content {
    flex-direction: column;
    height: auto;
    gap: 10px;
    /*margin-top: 30px;*/
  }

  .care_type_content_box {
    width: 100% !important;
  }
}

/*--- k보듬 6000이란? ---*/
.sub_main_visual {
  height: 450px; /*25.06.12 height:550px -> 650px로 변경되었습니다.*/ /*650px > 450px*/
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.sub_main_visual::before {
  content: "";
  position: absolute;
  margin-top: 30px; /*25.06.12 margin-top:200px 추가*/ /*25.07.09 200px > 120px*/
  top: 0; /*25.06.12 top:60px -> 0으로 변경되었습니다.*/
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 450px; /*25.06.12 height:100% -> 450px으로 변경되었습니다.*/
  /*background-image: url(http://sian.knlsys.com/k6000/image/about/sub_visual3.png);*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.sub_main_visual::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  z-index: -1;
}

.sub_main_visual_text {
  margin-top: 100px; /*25.06.12 margin-top:100px->200px으로 수정*/ /*200px > 150px*/
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.sub_main_nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.sub_main_nav a {
  display: flex;
  align-items: center;
}

.sub_main_nav img[src*="home_icon_white.svg"] {
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.5));
}

.sub_content_title {
  display: flex;
  align-items: center;
}

.sub_content_title_line {
  border-color: #bbbbbb;
}

/*k보듬 6000이란, 돌봄예약 안내*/
.sub_content_title.wrapper{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.sub_content_title.wrapper > div{
	display: flex;
	flex-direction: row;
}

@media screen and (max-width: 375px){
	.sub_content_title.wrapper{
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
	}
}

#tab2_content{
	display: none;
}

#tab_switch_btn{
display: flex;
}

.mean_wrap {
  gap: 1rem;
}

.mean h3 {
  padding: 1rem;
  min-width: 120px;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.3rem;
  border-radius: 10px;
  margin-right: 15px;
}

.mean:first-of-type h3 {
  background-color: var(--bg_pink);
}

.mean:nth-of-type(2) h3 {
  background-color: var(--bg_yellow);
}

.mean:last-of-type h3 {
  background-color: var(--bg_mint);
}

.mean_img_bg {
  height: 600px;
  position: relative;
  background-color: #eff2f9;
}

.grid_box {
  width: 100%;
  height: 301px;
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.1) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}

.symbol_btn div {
  height: 60px;
}

.symbol_btn div:first-of-type {
  background-color: var(--bg_pink);
  color: var(--pink) !important;
}

.symbol_btn div:last-of-type {
  background-color: var(--bg_yellow);
  color: var(--yellow) !important;
}

@media screen and (max-width: 1400px) {
  .sub_nav {
    left: 3%;
  }
}

@media screen and (max-width: 1024px) {
  .sub_nav {
    display: none;
  }

  .wFix3 {
    margin: 0 auto;
    padding: 0 6em;
  }

  /*25.06.13 css추가 .sub_main_visual, .sub_main_visual::before*/
  .sub_main_visual_text {
		margin-top: 85px;
	}
	
	.sub_main_visual::before{
	margin-top: 30px;
	height: 250px;}
	
	.sub_main_visual{
	height: 250px;}
}

@media screen and (max-width: 500px) {
  .mean_img_bg {
    height: 500px;
  }
  
    .wFix3 {
    margin: 0 auto;
    padding: 0 1em;
  }
}

@media screen and (max-width: 450px) {
  /*.sub_main_visual {
    height: 450px;
  }*/

  .sub_main_visual_text h1 {
    font-size: 2.5rem !important;
  }

  .sub_main_nav a span {
    font-size: 1rem !important;
  }
}

/*center_info*/
/* .center_info_box_wrap .tab_content_box .wrap_col img {
  width: 80px;
} */

.center_info_box_wrap2 .tab_content_box .wrap_col p {
  font-size: 1rem !important;
  font-weight: 400;
}

.map_wrap {
  position: relative;
  max-width: 500px;
  width: 100%;
  padding-bottom: 350px;
  margin: 0 auto;
  height: 0;
  overflow: hidden;
/*   border-radius: 12px; */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* 선택사항 */
}

.map_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .center_info_box_wrap,
  .center_info_box_wrap2 {
    flex-direction: column !important;
    gap: 20px;
  }

  .center_info_box_wrap .tab_content_box,
  .center_info_box_wrap2 .tab_content_box {
    width: 100% !important;
  }
}

/*--- 메인페이지 ---*/
.section_1 {
  position: relative;
}

.main_visual {
  /*background-image: url(/images/web/main_visual_new2.png);*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 32px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px; /*25.07.09 700px > 500px*/
}

.main_visual_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px; /*25.07.09 700px > 500px*/
}

.main_swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px; /*25.07.09 700px > 500px*/
}

.main_visual_1 {
  background-image: url(/images/web/main_visual_new2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 32px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px; /*25.07.09 700px > 500px*/
}

.main_visual_2 {
  background-image: url(/images/web/main_visual_new3.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 32px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px; /*25.07.09 700px > 500px*/
}

.main_visual_3 {
  background-image: url(/images/web/main_visual_new4.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 32px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px; /*25.07.09 700px > 500px*/
}

.main_visual_black_bg {
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 32px;
}

.main_visual::before {
  content: "";
  position: absolute;
  top: 325.6px; /*25.07.09 525.6 > 325.6px*/
  right: 0;
  width: 31px;
  height: 63.64px;
  background-image: url(/images/web/main_white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  z-index: 1;
}

.banner::after {
  content: "";
  position: absolute;
  top: 110px;
  left: -33px;
  height: 33px;
  width: 68px;
  background-image: url(/images/web/main_white2.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  z-index: 1;
}

.main_visual_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 5;
}

.main_visual_text * {
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

.main_visual_text > h2 {
  font-weight: 700;
}

.banner {
  position: absolute;
  right: 0;
  bottom: 0;
}

.banner_box {
  position: relative;
  border-radius: 30px;
  background-color: #fff;
}

.banner_swiper {
  position: relative;
}

.banner-slide {
  background-color: #fff;
  border-radius: 30px;
  position: relative;
}

.banner_wrap {
  display: flex;
  position: relative;
}
/*25.06.12 border-radius값 변경*/
.text_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  border-radius: 30px 30px 0px 30px;
  height: 142.5px;
  z-index: 10;
}

@media screen and (max-width: 768px){
	.text_wrap{
	height: 120px;}
}

.more_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  color: #ffffff !important;
  background-color: #ffb115;
  margin: 0 auto;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 12px 18px;
  z-index: 500;
}

.banner-pagination {
  position: absolute !important;
  bottom: 0px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 10 !important;
}

.swiper-pagination-bullet {
  background-color: rgba(255, 177, 21, 0.3) !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background-color: #ffb115 !important;
}

.section_title.width_fit{
	width: fit-content;
    display: block;
    margin: 0 auto;
}

.city_btn_wrap {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  gap: 1rem;
}

.city_btn {
  background-color: #f6f6f8;
  width: 140px;
  height: 50px;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.city_btn > span {
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .city_btn:hover > span {
  color: #ffb115;
}

.city_btn_wrap a:last-child:hover .city_btn span {
  color: white;
} */

.city_btn.on {
  background-color: #ffb115;
  color: #ffffff;
}

.city_info {
  position: relative;
  z-index: 1;
  height: 630px;
}

.city_info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--safe-width, 100vw);
  height: 100%;
  background-image: url(/images/web/section2_bg.png);
  background-size: 100% 100%;
  background-position: center;
  z-index: -50;
}

.city_info_wrap {
	height: 630px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.map {
  display: flex;
  justify-content: center;
  align-items: center;
}

.info {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.info_bg {
  height: 450px;
  background-color: #ffffff;
  border-radius: 1.8rem;
  box-shadow: 10px 20px 50px rgba(0, 92, 213, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/*25.08.19*/
.info_inner_text{
	width: 100%;
}

.info_inner_text_1024{
	width: 100%;
}

.info_wrap {
  height: 90% !important;
  display: flex;
  align-items: stretch !important;
}

.centers {
  overflow-x: hidden;
  overflow-y: auto;
}

.centers_card {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
  padding-bottom: 10px !important;
}

@media screen and (max-width: 1024px){
	.centers_card{
	border-bottom: none;
/* 	border-right: 1px solid #eee; */
	}
}

.centers_card:hover .centers_photo img {
  outline: 2px solid #5188f5;
  border-radius: 8px;
  transition: none !important;
}

.centers_card_on > .centers_photo > img {
  outline: 2px solid #5188f5;
  border-radius: 8px;
}

.centers_text > p {
  display: flex;
  align-items: flex-start;
}

.centers::-webkit-scrollbar {
  width: 8px;
}

.centers::-webkit-scrollbar-thumb {
  border-radius: 10px;
}

.centers::-webkit-scrollbar-track {
  border-radius: 10px;
}

.centers_info_inner {
  background-color: #f3f6fd;
  border-radius: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.centers_info div.btn{
	font-size: 20px !important;
}

.info_inner_text > h3{
	word-break: break-word;
}

.centers_text > h3{
	word-break: break-word;
}

.location_text {
  display: flex;
  align-items: center;
}

.info_inner_line {
  border-color: #ccd4e8 !important;
}

.number_box {
  background-color: #ffffff;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(17, 34, 74, 0.08);
}

.inner_btn {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

@media screen and (max-width: 1300px){
	.inner_btn{
	margin-top:80px;}
}

@media screen and (max-width: 1024px){
	.inner_btn{
	margin-top:20px;}
}

.inner_btn > div {
  height: 50px;
  border-radius: 1rem !important;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.07);
}

.notice_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notice_title > .more {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.more:hover > i {
  color: #ffb115;
}

.notice_contents_wrap {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.notice_contents {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notice_contents_text{
	width: calc(100% - 2em);
}

.notice_contents_text p:first-of-type {
/* 	width:100%; */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notice_contents:hover .notice_contents_text p:first-child {
/*   border-bottom: 1px solid #38445a !important; */
text-decoration: underline;
}

.notice_contents > i {
  color: #ffb115;
}

.section_4 > .more {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
}

.festival_swiper {
  position: relative;
}

.festival_card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.festival_img {
  border-radius: 1rem;
}

.festival_img img {
  width: 100%;
  height: 400px;
}

.festival_nav_next,
.festival_nav_prev {
  width: 60px !important;
  height: 60px !important;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
  z-index: 10 !important;
  color: #ffb115 !important;
}

.festival_nav_next::after,
.festival_nav_prev::after {
  content: none !important;
}

.festival_nav_next {
  left: 97% !important;
}

.festival_nav_prev {
  left: -0.5% !important;
}

.section_5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--safe-width, 100vw);
  height: 100%;
  background-image: url(/images/web/section5_bg3.png);
  background-size: cover;
  background-repeat: no-repeat;
/*   background-position: -200px -950px; */
  z-index: -50;
}

.section_5_card {
  min-height: 300px;
/*   backdrop-filter: blur(16px) brightness(78%);
  -webkit-backdrop-filter: blur(16px) brightness(78%); */
/*   background-color: rgba(240, 248, 255, 0.5); */
  border-radius: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section_5_card:nth-of-type(1){
	background-color: rgba(255, 230, 235, 0.8);
/* 	border: 2px solid var(--pink); */
}

.section_5_card:nth-of-type(1) i{
	color: #ffa4c8;
}

.section_5_card:nth-of-type(2) i{
	color: #ffba8a;
}

.section_5_card:nth-of-type(3) i{
	color: #ffe284;
	}

.section_5_card:nth-of-type(2){
	background-color: rgba(255, 226, 206, 0.8);
}

.section_5_card:nth-of-type(3){
	background-color: rgba(255, 250, 220, 0.8);
}


@media screen and (max-width: 768px){
	.section_5_wrap{
	align-items: center;
	}
}

.section_5 .section_title > h2 {
	color: #2a8cd8;
/*   text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5); */
}

.section_5_card > i {
  display: flex;
  justify-content: center;
}

.section_5_card i {
  transition: all 0.3s ease;
}

.section_5_card_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section_5_card:nth-of-type(1):hover i {
	color: var(--pink);
	transform: scale(1.03);
}

.section_5_card:nth-of-type(2):hover i {
	color: var(--peach);
	transform: scale(1.03);
}

.section_5_card:nth-of-type(3):hover i {
	color: var(--yellow);
	transform: scale(1.03);
}

.city_info .city_info_wrap .map .map_gb {
  position: relative;
}

.map_gb_mo area {
  cursor: pointer;
}

/*도시 이미지 오버레이*/

.overlay-img {
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  height: auto;
}

.overlay-img.fixed {
  opacity: 1;
}
.map_gb {
  position: relative;
}

.map_gb_mo {
  position: relative;
}

.map_gb img {
  max-width: none;
}

.map_gb_mo img {
  max-width: none;
}

@media screen and (max-width: 1500px){
		.map {
    display: none;
  }
  
      .info {
    width: 100% !important;
    justify-content: center;
  }
  
  .info_bg{
      width: 100% !important;
      }
}

/* @media screen and (max-width: 1200px){


} */

.overlay-img {
  position: absolute;
  pointer-events: none;
}

.overlay-img.gyeongsan {
  top: 487px;
  left: 337px;
}

.overlay-img.gyeongsan::before {
  content: "";
  position: absolute;
  background-color: #5188f5;
  width: 10px;
  height: 10px;
  z-index: 50;
}

.overlay-img.gyeongsan_mo {
  top: 353px;
  left: 244px;
}

.overlay-img.gumi {
  top: 336px;
  left: 127px;
}

.overlay-img.gumi_mo {
  top: 244px;
  left: 92px;
}

.overlay-img.gimchun {
  top: 380px;
  left: 32px;
}

.overlay-img.gimchun_mo {
  top: 275px;
  left: 24px;
}

.overlay-img.sungzu {
  top: 465px;
  left: 96px;
}

.overlay-img.sungzu_mo {
  top: 337px;
  left: 70px;
}

.overlay-img.munkyong {
  top: 122px;
  left: 29px;
}

.overlay-img.munkyong_mo {
  top: 88px;
  left: 21px;
}

.overlay-img.andong {
  top: 139px;
  left: 239px;
}

.overlay-img.andong_mo {
  top: 101px;
  left: 173px;
}

.overlay-img.youngchun {
  top: 408px;
  left: 339px;
}

.overlay-img.youngchun_mo {
  top: 296px;
  left: 246px;
}

.overlay-img.yechun {
  top: 129px;
  left: 173px;
}

.overlay-img.yechun_mo {
  top: 94px;
  left: 125px;
}

.overlay-img.chungdo {
  top: 548px;
  left: 279px;
}

.overlay-img.chungdo_mo {
  top: 397px;
  left: 202px;
}

.overlay-img.chilgok {
  top: 433px;
  left: 185px;
}

.overlay-img.chilgok_mo {
  top: 314px;
  left: 134px;
}

.overlay-img.pohang {
  top: 343px;
  left: 449px;
}

.overlay-img.pohang_mo {
  top: 249px;
  left: 326px;
}


/* @media screen and (min-width: 1441px) {
  .map_gb_mo {
    display: none;
  }
  .map_gb_mo2 {
    display: block;
  }
} */

@media screen and (max-width: 1024px){
	  .side_menu_wrap.show {
    display: none;
  }
}

@media screen and (max-width: 1700px) {
  .map_gb_mo {
    display: block;
  }

/*   .map_gb {
    display: none;
  } */
}

@media screen and (max-width: 768px) {
  .text_wrap {
    border-radius: 30px;
  }
}

@media screen and (max-width: 1800px) {
  .festival_nav_next {
    left: 96% !important;
  }

  .festival_nav_prev {
    left: 0.5% !important;
  }


}

@media screen and (max-width: 1600px) {
  .festival_nav_next,
  .festival_nav_prev {
    display: none !important;
  }

  .number_box h4 {
    font-size: 1rem !important;
  }
  
    .more_btn p {
    font-size: 1rem !important;
  }
}

@media screen and (max-width: 1450px) {
  .centers_card {
    flex-direction: column;
  }

  .centers_photo {
    width: 100% !important;
    display: flex;
    justify-content: center;
  }

  .centers_photo img {
    width: 100%;
  }

  .centers_card:hover .centers_photo img {
    outline: 2px solid #5188f5;
    border-radius: 18px;
    transition: none !important;
  }

  .centers_card_on > .centers_photo > img {
    outline: 2px solid #5188f5;
    border-radius: 18px;
  }

  .h2_1001 {
    font-size: 1.5rem !important;
  }
}

@media screen and (max-width: 1380px) {
  .more_btn {
    display: none;
  }

  .h2_1001 {
    font-size: 1.5rem !important;
  }
}

@media screen and (max-width: 1300px) {
  .number_box_wrap {
    flex-direction: column !important;
    margin-top: 20px;
    gap: 1rem;
    margin-bottom: 20px !important;
  }
  .info_inner_line {
    display: none;
  }
  .number_box {
    width: 100% !important;
    flex-direction: row;
    align-items: center !important;
    justify-content: space-between;
    padding: 10px 30px !important;
    gap: 1rem;
  }

  .number_box p {
    margin: 0 !important;
  }

  .inner_btn > div {
    height: 50px;
    border-radius: 1rem !important;
  }
  
/*   .centers_info .info_inner_contents .inner_btn{
  margin-top: 80px; 
  } */
}

@media screen and (max-width: 1240px) {
  .h2_1001 {
    font-size: 1.4rem !important;
  }

  .text_wrap p:first-of-type {
    font-size: 1.6rem !important;
  }

  .text_wrap p:nth-of-type(2) {
    font-size: 1rem !important;
  }

  .text_wrap p:last-of-type {
    font-size: 0.8rem !important;
  }
}

@media screen and (max-width: 1120px) {
  .h2_1001 {
    font-size: 1.2rem !important;
  }

  .info_inner_text h3 {
    font-size: 1.3rem !important;
  }

  .info_inner_text p {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 1024px) {
  .notice_wrap {
    flex-direction: column !important;
  }

  .notice,
  .qna,
  .center_news,
  .festival {
    width: 100% !important;
  }

  .qna,
  .center_news,
  .festival {
    margin-top: 2rem !important;
  }

  .main_visual_text h2 {
    font-size: 3rem !important;
  }

  .main_visual_text p {
    font-size: 1.2rem !important;
  }

  .info_bg {
    height: 100% !important;
  }

  .info_wrap {
    flex-direction: column !important;
  }

  .centers,
  .centers_info {
    width: 100% !important;
  }

  .centers {
    height: 50% !important;
    min-height: 50% !important;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    margin-bottom: 5px;
  }

/*   .centers_card {
    width: 100% !important;
  } */
  
  .centers_card .centers_text h3{
  	word-break: break-word;
	overflow-wrap: break-word;
  }

  .centers_card_wrap {
    display: block !important;
    width: 100% !important;
    min-width: 40% !important;
  }

  .centers_photo img {
    height: 140px !important;
  }

  .centers_info {
    padding: 0 !important;
    height: 50% !important;
    min-height: 50% !important;
  }

  .centers_info_inner {
    padding: 1rem !important;
  }
  
  .centers_info_inner .info_inner_text h3{
  word-break: break-word;
overflow-wrap: break-word;}
  .info_inner_contents {
    height: 50% !important;
  }

  .centers_info_inner .info_inner_text p:last-of-type{
  margin-bottom: 10px;}
  
  
  .number_box_wrap {
    display: flex !important;
    flex-direction: row !important;
  }

  .number_box {
    width: 30% !important;
    flex-direction: column;
    align-items: center !important;
    justify-content: space-between;
    padding: 10px 30px !important;
    gap: 1rem;
  }

  .number_box p {
    margin: 0 !important;
  }

  .city_btn_wrap {
    justify-items: center;
    align-items: center;
    align-content: center;
    width: 100% !important;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }

/*   .section_5_card_text p {
    font-size: 1.1rem !important;
  } */
}

@media screen and (min-width: 1001px) {
  .h2_1000 {
    display: none;
  }
}

@media screen and (max-width: 1000px) {
  .info_bg {
    padding-top: 20px !important;
  }
  .h2_1001 {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .banner_outside {
    display: none;
  }
  
}

@media screen and (max-width: 768px) {
	.city_btn_wrap {
    display: none;
  }
  
  .ul_blue_square li {
    font-size: 1rem !important;
  }
  /*25.06.12 height:400px ->200px으로 변경하였습니다*/
  .main_swiper,
  .main_visual,
  .main_visual_1,
  .main_visual_2,
  .main_visual_3,
  .main_visual_black_bg {
    height: 200px !important;
  }

  .main_visual_text h2 {
    font-size: 2.6rem !important;
  }

  .main_visual_text p {
    font-size: 1rem !important;
  }

  .banner,
  .main_visual::before,
  .banner:after {
    display: none;
  }

  .banner_outside {
    width: 100% !important;
    border-radius: 32px;
    box-shadow: 10px 20px 50px rgba(0, 92, 213, 0.03);
  }

  .banner-pagination {
    position: absolute !important;
    bottom: 15px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 10 !important;
  }

  .centers_photo img {
    height: 180px !important;
  }

  .h2_1000 {
    display: none;
  }

  .h2_1001 {
    display: block;
    font-size: 1.5rem !important;
  }

  .info_inner_text h3 {
    font-size: 1.4rem !important;
  }

  .info_inner_text p {
    font-size: 1rem !important;
  }

  .centers_info_inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
    .centers_card_wrap {
    display: block !important;
    width: 100% !important;
    min-width: 60% !important;
  }

  .number_box_wrap {
    margin-bottom: 1rem !important;
  }

  .section_5_wrap {
    flex-direction: column !important;
  }

  .section_5_card {
    width: 80% !important;
    /*height: 270px !important;*/
    margin-bottom: 0 !important;
  }

  .section_5_card:last-of-type {
    margin-bottom: 5rem !important;
  }
}

@media screen and (max-width: 600px) {
  .centers_photo img {
    height: 160px !important;
  }
}

@media screen and (max-width: 550px) {
  .main_visual_text h2 {
    font-size: 2.2rem !important;
  }

  .main_visual_text p {
    font-size: 0.9rem !important;
  }
  
    .centers_card_wrap {
    display: block !important;
    width: 100% !important;
	min-width: 85% !important;
  }

  .info_bg {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }
  .notice_wrap {
    flex-direction: column !important;
  }

  .inner_btn {
    display: flex;
  }

  .info_bg {
    height: 100% !important;
  }

  .info_inner_text {
    width: 100% !important;
  }
}

@media screen and (min-width: 769px) {
  .mo_city_select {
    display: none;
  }
}

@media screen and (max-width: 768px) {

  .select_title {
    margin: 0 auto;
    padding: 1em;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
  }

  .select_title.checked {
    border: 1px solid #5188f5;
    box-shadow: 5px 5px 10px rgba(0, 92, 213, 0.05);
  }

  .select_title.checked .drop_down_icon {
    transform: rotate(180deg);
    transition: none !important;
  }

  .dropdown_menu {
    max-height: 0px;
    overflow-y: hidden;
    transition: max-height 0.3s ease;
    width: 300px;
    margin: 0 auto;
    box-shadow: 5px 5px 10px rgba(0, 92, 213, 0.05);
  }

  .dropdown_menu li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 1em;
    margin: 7px 0;
  }

  .dropdown_menu::-webkit-scrollbar {
    width: 8px;
  }

  .dropdown_menu::-webkit-scrollbar-thumb {
    border-radius: 10px;
  }

  .dropdown_menu::-webkit-scrollbar-track {
    border-radius: 10px;
  }
}

@media screen and (max-width: 500px) {
  .main_visual_text h2 {
    font-size: 2rem !important;
  }

  .main_visual_text p {
    font-size: 0.8rem !important;
  }

/*   .section_2 h2,
  .section_3 h2,
  .section_4 h2 {
    font-size: 2rem !important;
  } */
  
  .section_title h2{
  font-size: 1.8rem !important;}

  .ul_blue_square li {
    font-size: 0.9rem !important;
  }
}

/*about_special_service*/
/*article 1*/
.service_wrap {
  gap: 30px;
  width: 100%;
}

.service_box {
  border: 1px solid var(--blue);
  border-top: none !important;
  width: calc((100% - 120px) / 5);
  height: 100%;
}

.service_header {
  background-color: var(--blue);
  padding: 0.5rem;
}

.service_content {
  gap: 10px;
  min-height: 150px;
  padding: 0.5rem;
  flex: 1;
}

.special_care_wrap .btn{
	height: 40px;
}

/*about_tabs*/
.about_tab_btn_wrap{
	display: flex;
	gap: 30px;
	margin-bottom: 30px;
}
.about_tab_btn{
	background-color: #eee;
	width: calc((100% - 30px) / 2);
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.3rem;
	border-radius: 10px;
	font-weight: 600;
	position: relative;
	cursor: pointer;
}

.about_tab_btn.active{
	background-color: var(--blue);
	color: #fff;
}
.about_tab_btn.active::after {
  content: "";
  display: block;
  background: url("/images/web/about/white_tabcheck.svg") no-repeat center center;
  background-size: contain;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 40px;
  margin-left: 8px;
  margin-bottom: 2px;
}

@media screen and (max-width: 768px){
	.about_tab_btn_wrap{
	flex-direction: column;
	gap: 10px;
	}
	
	.about_tab_btn{
	width: 100%;}
}

/*service_text*/
.service_text_box {
  border-radius: 1.5rem;
  background-color: #ffffff;
  box-shadow: 0px 0px 50px rgba(0, 92, 213, 0.1);
  padding: 2rem;
  gap: 30px;
}

.service_text_box_inner {
  background-color: #f6f6f8;
  padding: 2rem 1rem;
  gap: 5px;
}

@media screen and (max-width: 768px) {
  .service_box {
    width: calc((100% - 30px) / 2);
  }

  .service_box:last-child {
    margin: 0 auto;
  }
}

@media screen and (max-width: 375px) {
  .service_box {
    width: 100%;
  }
}

/*about_use_info*/
/*article1*/
.use_step {
  position: relative;
}

.use_step_box {
  border: 1px solid var(--blue);
  border-top: none !important;
  width: calc(80% / 5);
}

.use_step_header {
  background-color: var(--blue);
  padding: 0.5rem;
}

.use_step_content {
  min-height: 140px;
  padding: 0.5rem;
}

.use_step_arrow {
  margin-top: 3rem;
}

.use_step_header_full {
  width: calc(64% + 15%);
  /* ((80% / 5) * 4) + 15% */
  background-color: var(--blue);
  padding: 0.5rem;
  position: absolute;
  top: 0;
  left: calc((80% / 5) + 5%);
  z-index: 5;
}

@media screen and (min-width: 601px) {
  .use_step_arrow_down {
    display: none;
  }

  .use_step_header h3 {
    white-space: nowrap !important;
  }
}

@media screen and (max-width: 600px) {
  .use_step_header_full {
    display: none;
  }
  .use_step {
    flex-wrap: wrap;
  }
  .use_step_box {
    width: 100%;
  }

  .use_step_content {
    min-height: 100px;
  }

  .use_step_arrow {
    margin-top: 0;
    margin: 0 auto;
  }

  .use_step_arrow_left {
    display: none;
  }

  .use_step_header.hidden {
    display: none;
  }

  .use_step_box:nth-of-type(n + 3) {
    border-top: 1px solid var(--blue) !important;
  }
}

/*care_reservation*/
.blue_content_box {
  border: 1px solid var(--blue);
}

.no_decoration {
  list-style-type: none !important;
  text-decoration: underline;
}

.no_decoration a {
  color: #3f5297 !important;
}

.care_info_table {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #bbbbbb;
}

.care_info_table th,
.care_info_table td {
  border: 1px solid #bbbbbb;
  padding: 10px;
}

.care_info_table th {
  font-size: 1.3rem;
}

.how_use_wrap {
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
}

.how_use:first-of-type {
  border: 3px solid var(--bg_pink);
}

.how_use:nth-of-type(2) {
  border: 3px solid var(--bg_yellow);
}

.how_use:nth-of-type(3) {
  border: 3px solid var(--bg_mint);
}

.how_use:last-of-type {
  border: 3px solid var(--bg_lightblue);
}

.how_use_title {
  height: 50px;
}

.how_use:first-of-type .how_use_title {
  background-color: var(--bg_pink);
}

.how_use:nth-of-type(2) .how_use_title {
  background-color: var(--bg_yellow);
}

.how_use:nth-of-type(3) .how_use_title {
  background-color: var(--bg_mint);
}

.how_use:last-of-type .how_use_title {
  background-color: var(--bg_lightblue);
}

.how_use_content {
  flex: 1;
  padding: 1em;
  text-align: center;
}

.care_reservation_btn {
	min-width: 260px !important;
  height: 60px;
  border-radius: 1rem !important;
}

@media screen and (max-width: 500px) {
  .blue_title_box h2 {
    font-size: 1.4rem !important;
  }
  .how_use_wrap {
    grid-template-columns: 1fr;
  }

  .care_reservation_btn {
    width: 100% !important;
  }

  .care_info_table th {
    font-size: 1.1rem !important;
  }

  .care_info_table td {
    font-size: 1rem !important;
  }
}

/*center_info*/
.center_info_box_wrap .tab_content_box .wrap_col img {
  width: 50px;
  height: 50px;
}

.center_info_box_wrap2 .tab_content_box .wrap_col img{
	width: 50px;
	height: 50px;
}

/*festival*/
.festival_list_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.festival_list {
  width: calc((100% - 60px) / 4);
  border-radius: 1.5rem;
  background-color: #ffffff;
  box-shadow: 0px 0px 20px rgba(0, 92, 213, 0.1);
  border: 2px solid #f6f6f8;
  transition: transform 0.3s ease;
}

.festival_list:hover {
  transform: scale(1.03);
}

.festival_list_text {
  padding: 0.5rem 1rem 1rem 1.5rem;
}

.festival_list_text > p:first-of-type {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.festival_list_tag_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.festival_list_tag {
  display: inline-block;
  border-radius: 999px;
  border: 1px solid var(--blue);
  padding: 0 5px;
}

/*페스티벌 카드 모바일반응형*/

@media screen and (max-width: 1400px) {
  .festival_list {
    width: calc((100% - 40px) / 3);
  }
}

@media screen and (max-width: 768px) {
  .festival_list {
    width: calc((100% - 20px) / 2);
  }
}

@media screen and (max-width: 500px) {
  .festival_list {
    width: 100%;
  }
}

/*gb_childcare*/
.org_box {
  background-color: #eff2f9;
  padding: 1rem 0;
}

.roll_box {
  height: auto;
  padding: 2rem;
  border-radius: 1.5rem;
  background-color: #ffffff;
  box-shadow: 0px 0px 50px rgba(0, 92, 213, 0.1);
}

.roll_content_wrap {
  gap: 50px;
  position: relative;
}

.roll_content_wrap::before {
  content: "";
  border: 0;
  border-bottom: 1px solid #bbbbbb;
  border-style: dashed;
  position: absolute;
  top: 17px;
  left: 0;
  width: 100%;
}

.roll_content_wrap p{
	font-size: 0.9rem;
}

.roll_content {
  width: calc((100% - 150px) / 4);
  z-index: 5;
  position: relative;
}

.roll_content h5 {
  background-color: var(--blue);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  box-shadow: 0px 0px 10px rgba(0, 92, 213, 0.1);
}

.roll_content img {
  width: auto;
  height: 70px;
  object-fit: cover;
  margin: 1rem;
}

.blue_line_icon{
	position: relative;
}

.blue_line_icon::before{
	content: "";
   position: absolute;
   display: inline-block;
   width: 5px;
   height: 23px;
   background: var(--blue);
   top: 0px;
   left: 0;
}

.pink_line_icon{
	position: relative;
}

.pink_line_icon::before{
	content: "";
   position: absolute;
   display: inline-block;
   width: 5px;
   height: 23px;
   background: var(--pink);
   top: 0px;
   left: 0;
}

.mint_line_icon{
	position: relative;
}

.mint_line_icon::before{
	content: "";
   position: absolute;
   display: inline-block;
   width: 5px;
   height: 23px;
   background: var(--mint);
   top: 0px;
   left: 0;
}

.yellow_line_icon{
	position: relative;
}

.yellow_line_icon::before{
	content: "";
   position: absolute;
   display: inline-block;
   width: 5px;
   height: 23px;
   background: var(--yellow);
   top: 0px;
   left: 0;
}

.teacher_ul{
	display: flex;
	flex-direction: column;
	gap: 30px;
}

@media screen and (max-width: 768px) {
  .roll_content {
    width: calc(50% - 25px);
  }

  .roll_content_wrap::after {
    content: "";
    border: 0;
    border-bottom: 1px solid #bbbbbb;
    border-style: dashed;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
  }
  
  .roll_content_wrap.no_line::after{
  display:none;}

  .roll_content_wrap::before {
    display: none;
  }

/*   .roll_title p {
    font-size: 1rem !important;
  } */
  
  .teacher_title{
  font-size: 18px !important;
  font-weight: 600 !important;}
  
  .teacher_ul > li span{
  font-size: 18px !important;
  }
  
  .teacher_ul >li > ul li{
  font-size: 15px !important;}
}

@media screen and (max-width: 600px) {
  .gb_childcare {
    font-size: 2.5rem !important;
    text-align: center;
  }
}

@media screen and (max-width: 425px) {
  .roll_content {
    width: 100%;
  }

  .roll_content_wrap::after {
    display: none;
  }

  .roll_content:not(:last-of-type)::before {
    content: "";
    border: 0;
    border-bottom: 1px solid #bbbbbb;
    border-style: dashed;
    position: absolute;
    top: calc(100% + 25px);
    left: 0;
    width: 100%;
  }

  .roll_title p {
    font-size: 0.9rem !important;
  }
}

/*info_board*/
.board_content_top {
  height: 50px;
  border-bottom: 3px solid #eee;
}

.board_content_top h2 {
  cursor: pointer;
}

.board_content_box {
  padding: 2rem 0;
  border-bottom: 2px solid #eee;
  cursor: pointer;
}

.rotate_arrow {
  transition: transform 0.3s ease;
}

.rotate_arrow.rotate {
  transform: rotate(180deg);
}

/*paging*/
.paging_number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.paging_active {
  background-color: var(--blue);
  border-radius: 50%;
  color: #ffffff !important;
}
.board_bottom_wrap {
  position: relative;
}

.write_post {
  width: 15%;
  background-color: var(--blue);
  border-radius: 1rem;
  padding: 1rem;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}

.write_post:hover span {
  text-decoration: underline;
}

/*board_none*/
.board_none {
  height: 200px;
  width: 100%;
}

.board_none_write_btn {
  height: 50px;
  border-radius: 0.5rem !important;
}

.board_none_write_btn:hover {
  text-decoration: none !important;
}

/*notice_view*/
.faq_quicklink:hover {
  text-decoration: underline;
}

.board.notice .board_content_wrap .board_content_box {
  padding: 1.1rem 0 !important;
}

@media screen and (min-width: 769px) {
  .board_mo_date {
    display: none;
  }

  .board_content_text h4 {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .board.notice .board_content_top h2,
  .board.notice .board_content_box p {
    display: block;
  }

  .board.notice .board_content_top > div:nth-of-type(1) {
    display: none;
  }

  .board.notice .board_content_top h2:nth-of-type(1),
  .board.notice .board_content_wrap .board_content_box > div:nth-of-type(1) {
    display: none !important;
  }

  .board.notice .board_content_wrap .board_content_box {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .board.notice .board_content_top h2,
  .board.notice .board_content_box > p {
    width: 100% !important;
    padding-right: 0 !important;
  }

  .board.notice .board_content_box div:nth-of-type(2) p {
    padding-left: 0 !important;
  }

  .board_content_top h2:nth-of-type(2),
  .board_content_box p:first-of-type,
  .board_content_box h3 {
    display: none;
  }

  .board.notice .board_content_top h2:nth-of-type(1) {
    width: 10% !important;
  }

  .board_content_top h2:nth-of-type(1),
  .board_content_top h2:nth-of-type(3),
  .board_content_box > p:nth-of-type(2) {
    width: 25% !important;
  }

  .board_content_top div {
    min-width: 0 !important;
  }

  .board_content_top div,
  .board_content_box div {
    width: 75% !important;
  }
}

.file_download i{
	font-size: 1.6rem !important;
	font-weight: 500;
}

.file_download span{
	font-size: 1.1rem !important;
}

@media screen and (min-width: 501px) {
  .write_post_mo_link {
    display: none;
  }
}

@media screen and (max-width: 500px) {
  .write_post_link {
    display: none !important;
  }

  .write_post_mo {
    background-color: var(--blue);
    border-radius: 1rem;
    height: 50px;
  }
}

@media screen and (min-width: 376px) {
  .mo_board_lock {
    display: none !important;
  }
}

@media screen and (max-width: 375px) {
  .board_content_box > p {
    font-size: 1rem !important;
  }

  .board_content_box {
    padding: 1.5rem 0.5rem;
  }
  .board_content_text p:first-of-type > i {
    display: none;
  }

  .mo_board_lock {
    font-size: 1.2rem !important;
  }

  .board_content_top h2:nth-of-type(1),
  .board_content_top h2:nth-of-type(3),
  .board_content_box > p:nth-of-type(2) {
    width: 40% !important;
  }

  .board_content_text {
    width: 70% !important;
    min-width: 70% !important;
  }
  
  .board_content_text p{
  word-break: break-word;
overflow-wrap: break-word;}

  .board_content_box p:nth-of-type(2) {
    text-align: right !important;
  }
}

/* .post{
	position: relative;
} */

.post_header {
  border-top: 2px solid #38445a;
  border-bottom: 1px solid #38445a;
  padding: 1.5rem 0.5rem;
  background: #fff;
}

.file_download_wrap{
		background: #f6f6f8;
		width: 100%;
		margin-bottom: 10px;
}

.file_download{
	margin-top: 0 !important;
 	display: inline-flex !important;

	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 5px;
	gap: 5px;
}

/* .file_download::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width:100%;
  background-color: #f0f0f0;
  z-index: -1;
} */

.file_download:hover span {
  text-decoration: underline !important;
}

.post_wrap{
	flex-direction: column-reverse !important;
	margin-top: 0 !important;
	align-items: flex-start !important;
	width: 100%;
}

.post_answer {
  background-color: #f6f6f8;
  padding: 2rem;
}
.post_answer h3 {
  border-bottom: 1px solid #bbbbbb;
}

.post_btn {
  height: 70px;
  border-radius: 0.5rem !important;
}

@media screen and (max-width: 768px) {
  .post_btn {
    width: 100% !important;
  }
}

@media screen and (min-width: 501px) {
  .mo_post_header {
    display: none;
  }
}

@media screen and (max-width: 500px) {
  .post_header > h2 {
    display: none !important;
  }

  .post_wrap {
    flex-direction: column !important;
    align-items: start !important;
    gap: 10px;
  }
}

.write_board {
  background-color: #f6f6f8;
  padding: 2rem;
}

.category_select {
  position: relative;
  z-index: 5;
}

.category_dropdown_menu {
  position: absolute;
  width: 100%;
  max-height: 0px;
  overflow-y: hidden;
  transition: max-height 0.3s ease;
  margin: 0 auto;
  box-shadow: 5px 5px 10px rgba(0, 92, 213, 0.05);
  background-color: #ffffff;
}

.category_select_title {
  margin: 0 auto;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2em;
  border-radius: 10px;
  cursor: pointer;
  background-color: #ffffff;
}

.category_dropdown_menu li {
  display: block;
  width: 100%;
  height: 100%;
  padding: 1em;
  margin: 7px 0;
  cursor: pointer;
}

.category_select_title.checked {
  border: 1px solid #5188f5;
  box-shadow: 5px 5px 10px rgba(0, 92, 213, 0.05);
}

.category_select_title.checked .drop_down_icon {
  transform: rotate(180deg);
  transition: none !important;
}

.category_dropdown_menu::-webkit-scrollbar {
  width: 8px;
}

.category_dropdown_menu::-webkit-scrollbar-thumb {
  border-radius: 10px;
}

.category_dropdown_menu::-webkit-scrollbar-track {
  border-radius: 10px;
}

.post_title input {
  margin: 0 auto;
  height: 50px;
  padding: 0 1em;
  border-radius: 10px;
  cursor: pointer;
  background-color: #ffffff;
  border: none !important;
}

.post_title input:focus,
.write_board_content textarea:focus {
  border: 1px solid var(--blue) !important;
  box-shadow: 0px 0px 10px rgba(0, 92, 213, 0.2) !important;
}

.write_board_content textarea {
  height: 300px;
  padding: 1em;
  border-radius: 1rem;
  border: none !important;
}

.add_attach_file {
  background-color: #ffffff;
  border-radius: 1rem;
  height: 50px;
  cursor: pointer;
}

.add_attach_file:hover span {
  text-decoration: underline;
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

.post_radio {
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.post_radio span {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 50%;
  background-color: white;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.post_radio input[type="checkbox"]:checked + span,
.post_radio input[type="radio"]:checked + span {
  background-color: var(--white);
  border-color: var(--blue);
}

.post_radio input[type="checkbox"]:checked + span::after,
.post_radio input[type="radio"]:checked + span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--blue);
}

.write_board_btn_wrap {
  gap: 20px;
}

.write_board_btn_wrap div {
  min-width: 250px;
  height: 70px;
  border-radius: 1rem !important;
}

@media screen and (max-width: 768px) {
  .write_board_title {
    flex-direction: column;
    gap: 15px;
  }

  .category_select {
    width: 100% !important;
    min-width: 100% !important;
  }

  .post_title {
    width: 100% !important;
    min-width: 100% !important;
  }
  .write_board_btn_wrap {
    flex-direction: column;
  }

  .write_board_btn_wrap div {
    width: 100% !important;
    min-width: 100% !important;
  }
}

@media screen and (max-width: 375px) {
  .write_board_btn_wrap div {
    font-size: 1.7rem !important;
  }
}

/*info_current_facility*/
/*tabs*/
.tab_btn ul {
  gap: 30px;
}
.tab_btn ul li a {
  display: block;
  background-color: #f6f6f8;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  width: calc();
  min-width: 200px !important;
}

.tab_btn ul li a.active {
  color: #ffffff !important;
  background-color: var(--blue);
}

.tab_content_box {
  height: auto;
  padding: 2rem;
  border-radius: 1.5rem;
  background-color: #ffffff;
  box-shadow: 0px 0px 50px rgba(0, 92, 213, 0.1);
}

.tab_content_title {
  font-size: 1.3rem !important;
  font-weight: 700;
}

.tab_content_text {
  font-size: 1rem !important;
  font-weight: 400 !important;
  line-height: 180%;
}

.tab_table_wrap {
  gap: 30px;
}

.tab_table_wrap td {
  font-weight: 400 !important;
}

.current_facility_btn_wrap > span.font_red{
	display: flex;
	justify-content: center;
}/*25.07.09 추가*/

.current_facility_btn {
  height: 80px;
  border-radius: 1rem !important;
  min-width: 250px !important;
}

@media screen and (max-width: 768px) {
  .tab_table_wrap {
    flex-direction: column !important;
  }

  .current_facility_btn {
/*     font-size: 1.4rem !important; */
    height: 65px;
  }
}

/*25.06.19 css추가 - 하단내용은 모두 새로 추가된 내용입니다.*/
.tab_content_title .mo_facility_city_select p {
  font-size: 1.2rem !important;
}

.tab_content_title .mo_facility_city_select .select_title {
  width: 100%;
  padding: 0.5rem 1rem;
}

.tab_content_title .mo_facility_city_select .dropdown_menu {
  width: 100%;
}

/*info_faq*/
.search_box {
  background-color: #f6f6f8;
  padding: 1rem;
}

.search_box input {
  height: 50px;
  border-radius: 0.3rem;
  min-width: calc(90% - 50px) !important;
}

.search_box input:focus {
  border: 1px solid var(--blue) !important;
  box-shadow: 0px 0px 10px rgba(0, 92, 213, 0.2) !important;
}

.search_box input::placeholder {
  font-size: 1.1rem;
}

.search_box div {
  min-width: 50px !important;
  height: 50px;
  border-radius: 0.3rem !important;
}

/*faq section*/
.faq_wrap {
  gap: 20px;
}
.faq {
  border: 1px solid #bbbbbb;
  border-radius: 0.5rem;
  padding: 1.2rem 2rem;
}

.faq_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq_content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease-in-out;
}

.faq.active .faq_content {
  transition: max-height 0.8s ease-in-out;
}

.faq_title i {
  transition: transform 0.3s ease;
}
.faq.active .faq_title i {
  transform: rotate(180deg);
}

.faq_content_text {
  display: flex;
}

.faq_content_text .font_11.font_500.pl7 {
  line-height: 2.4rem;
}

/*privacy_policy*/
.privacy_main_wrap {
  background-color: #f6f6f8;
  padding: 2rem;
}

.privacy_wrap h4 {
  position: relative;
}

.privacy_wrap h4::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 5px;
  height: 20px;
  background: var(--blue);
  top: 2px;
  left: 0;
}

.privacy_wrap a {
  text-decoration: underline !important;
  color: var(--blue) !important;
}

/*reservation_calendar*/

.reservation_calendar {
  height: auto;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0px 0px 50px rgba(0, 92, 213, 0.1);
}

/*reservation_calendar*/

.month_arrow_left,
.month_arrow_right {
  cursor: pointer;
}

.date_notification {
  gap: 30px;
}

.date_table {
  height: 450px;
  border-collapse: separate !important;
  border-spacing: 10px !important;
}

.date_table th {
  font-size: 1.8rem;
}

.date_table td {
  text-align: center;
  font-size: 1.5rem;
  cursor: pointer;
  font-weight: 800;
  color: var(--gray);
}

.date_checked {
  background-color: var(--blue);
  border-radius: 0.7rem;
  color: var(--white) !important;
}

.date_line {
  border: 0.1em solid #eff2f9 !important;
}

.re_choice {
  text-decoration: underline !important;
}

.date_center h3,
.date_center2 h3 {
  border-right: 1px solid #38445a;
  padding-right: 10px;
  margin-right: 10px;
}

/*reservation_table_box*/
k6000_table_box {
  display: flex;
}
.reservation_table {
  height: 495px;
  overflow: auto;
}

.reservation_table thead {
  background-color: #f6f6f8;
  position: sticky;
  top: 0;
  z-index: 5;
}

.reservation_table thead th {
  font-size: 1.2rem;
  padding: 0.5rem 0;
}

.reservation_table td {
  text-align: center;
  font-size: 1.1rem;
  padding: 0.7em;
  vertical-align: middle;
}

.reservation_table tr:not(:last-child) td {
  border-bottom: 1px solid #efefef;
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

.reservation_radio,
.reservation_radio_xl,
.reservation_table_radio_wait {
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 25px;
  min-height: 25px;
  height: 100%;
}

.reservation_radio span {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 50%;
  background-color: white;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.reservation_radio input[type="checkbox"]:checked + span,
.reservation_radio input[type="radio"]:checked + span {
  background-color: var(--white);
  border-color: var(--blue);
}

.reservation_radio input[type="checkbox"]:checked + span::after,
.reservation_radio input[type="radio"]:checked + span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--blue);
}

.reservation_table_radio_wait span {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  background-color: white;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.reservation_table_radio_wait input[type="checkbox"]:checked + span {
  background-color: var(--white);
  border-color: var(--orange);
}

.reservation_table_radio_wait input[type="checkbox"]:checked + span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--orange);
}

.reservation_btn {
  height: 70px;
  border-radius: 1rem !important;
  display: none;
}

@media screen and (max-width: 1440px) {
  .date_table {
    height: 400px !important;
  }
}

@media screen and (max-width: 768px) {
  .reservation_calendar {
    flex-direction: column !important;
    gap: 30px;
  }

  .reservation_calendar_box,
  .k6000_table_box {
    width: 100% !important;
  }
}

@media screen and (max-width: 425px) {
  .date_center {
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    gap: 15px;
  }

  .date_table {
    height: 350px !important;
  }

  .date_table td {
    font-size: 1.3rem !important;
  }
}

/*reservation_form*/

.terms_box {
  border-radius: 1.5rem;
  border: 2px solid #eee;
  background-color: #ffffff;
  padding: 2em;
}

.terms_content_wrap {
  gap: 20px;
}

.reservation_radio_xl span {
  position: relative;
  width: 30px;
  height: 30px;
  border: 3px solid #ddd;
  border-radius: 50%;
  background-color: white;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.reservation_radio_xl input[type="checkbox"]:checked + span,
.reservation_radio_xl input[type="radio"]:checked + span {
  background-color: var(--white);
  border-color: var(--blue);
}

.reservation_radio_xl input[type="checkbox"]:checked + span::after,
.reservation_radio_xl input[type="radio"]:checked + span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--blue);
}

.view_detail_btn {
  height: 40px !important;
  border: 2px solid var(--blue) !important;
  border-radius: 0.3rem !important;
}

.form_box {
  border-radius: 1.5rem;
  background-color: #ffffff;
  box-shadow: 0px 0px 50px rgba(0, 92, 213, 0.1);
  padding: 2rem;
}

.form_box_inner {
  background-color: #f6f6f8;
  padding: 1.5rem;
}

.form_wrap {
  height: 50px;
}

.reservation_input {
  height: 40px !important;
  padding: 0 0.7rem;
  border-radius: 0.5rem;
  border: none !important;
  background-color: #fff;
  outline: none;
  font-size: 1rem;
  font-weight: 600;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.reservation_input::placeholder,
.reservation_textarea::placeholder {
  color: #bbbbbb;
  font-weight: 600;
}

.form_wrap .reservation_input:focus,
.reservation_textarea:focus {
  border: 1px solid var(--blue) !important;
  box-shadow: 0px 0px 10px rgba(0, 92, 213, 0.2) !important;
}

.add_parents {
  display: block;
  text-decoration: underline;
  width: auto !important;
}

.form_title h3 {
  flex-grow: 1;
}

.search_zipcode,
.search_zipcode_mo {
  height: 40px !important;
}

.search_zipcode:hover,
.search_zipcode_mo:hover {
  box-shadow: none !important;
}

.reservation_radio_wrap {
  gap: 0.3rem;
}

.form_radio {
  gap: 10px;
  font-weight: 600;
}

.orange_question {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  cursor: pointer;
}

.orange_question span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0px 0px 15px rgba(0, 92, 213, 0.1);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  margin-bottom: 12px;
  font-size: 13px;
  z-index: 10;
}

.tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.orange_question:hover .tooltip {
  opacity: 1;
  pointer-events: auto;
}

.h_300 {
  height: 300px !important;
}

.reservation_textarea {
  padding: 0.7rem;
  border-radius: 0.5rem;
  border: none !important;
  background-color: #fff;
  outline: none;
  font-size: 1rem;
  font-weight: 600;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: auto;
}

.reservation_btn_wrap {
  display: flex;
  justify-content: center;
}

.reservation_btn_wrap div {
  border-radius: 1rem !important;
  height: 70px;
}

@media screen and (min-width: 1661px) {
  .search_zipcode_mo {
    display: none;
  }
}

@media screen and (max-width: 1660px) {
  .search_zipcode {
    display: none;
  }
}

@media screen and (max-width: 1600px) {
  .form_wrap > span {
    font-size: 1rem !important;
  }
  .search_zipcode_mo {
    font-size: 1rem !important;
  }
}

@media screen and (max-width: 1440px) {
  .form_top_1 {
    width: 30% !important;
    min-width: 30% !important;
  }

  .form_top_1 .form_wrap span:first-of-type {
    width: 30% !important;
    min-width: 30% !important;
  }

  .form_top_2 {
    width: 69% !important;
    min-width: 69% !important;
  }
}

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 769px) {
  .form_container {
    flex-direction: column !important;
    gap: 0.5rem;
  }

  .form_wrapper {
    width: 100% !important;
    gap: 0.5rem;
  }

  .form_top_1 .form_wrap span:first-child {
    width: 24% !important;
    min-width: 24% !important;
  }

  .form_top_1 .form_wrap span:nth-child(2) {
    width: 75% !important;
    min-width: 75% !important;
  }

  .linked input {
    width: 87% !important;
    min-width: 87% !important;
  }

  .link_form_3box {
    width: 87% !important;
    min-width: 87% !important;
  }

  .link_form_3box input {
    width: 28% !important;
    min-width: 28% !important;
  }

  .form_wrap > :first-child {
    width: 12% !important;
    min-width: 12% !important;
  }

  .form_wrap > :nth-child(2) {
    width: 85% !important;
    min-width: 85% !important;
  }

  .reservation_date div input {
    width: calc(85% / 3) !important;
    min-width: calc(85% / 3) !important;
  }

  .reservation_time div input {
    width: calc(75% / 4) !important;
    min-width: calc(75% / 4) !important;
  }
}

@media screen and (max-width: 768px) {
  .terms_content {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .terms_content_right {
    margin-top: 10px;
    margin-bottom: 20px;
  }
  .form_wrap > span {
    font-size: 1.2rem !important;
  }

  .form_wrap {
    height: auto !important;
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: 0.5rem;
  }

  .form_wrap > :first-child {
    width: 100% !important;
    min-width: 100% !important;
  }

  .form_wrap > :nth-child(2) {
    width: 100% !important;
    min-width: 100% !important;
  }

  .search_zipcode_mo {
    min-width: 60px !important;
  }

  .form_address_wrap input {
    width: 100% !important;
    min-width:100% !important;
  }
  
  .form_address_wrap{
  flex-direction: column;
  gap: 10px;}
}

@media screen and (min-width: 426px) {
  .reservation_radio_terms {
    display: none;
  }
}

@media screen and (max-width: 425px) {
  .form_3box {
  	width: 100% !important;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .reservation_date div input,
  .reservation_date div span {
    width: 100% !important;
    min-width: 100% !important;
  }

  .reservation_time div input,
  .reservation_time div span {
    width: 100% !important;
    min-width: 100% !important;
  }

  .k6000_table2 th {
    font-size: 1rem !important;
  }

  .k6000_table2 td {
    font-size: 0.9rem !important;
  }

  .terms h2 {
    font-size: 1.3rem !important;
  }

  /*
  .reservation_radio_xl {
    display: none;
  }
  */

  .terms_title p {
    font-size: 1.1rem !important;
  }

  .terms_content_left p {
    font-size: 1.1rem !important;
  }

  .form_wrap > span {
    font-size: 1rem !important;
  }

  .form_title {
    margin-bottom: 20px;
  }

  .form_title h3 {
    font-size: 1.3rem !important;
  }

  .form_title a span {
    font-size: 0.8rem !important;
  }

  .form_bottom p:nth-of-type(1) {
    font-size: 1.2rem !important;
  }

  .form_bottom p:nth-of-type(3) {
    font-size: 1.2rem !important;
  }

  .form_bottom p:nth-of-type(4) {
    font-size: 1rem !important;
  }

  .reservation_btn_wrap div {
    width: 80% !important;
    min-width: 80% !important;
  }
}

/*popup*/
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup_content {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 500px;
  max-height: 600px;
  overflow: auto;
  position: relative;
}

.close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  cursor: pointer;
}

.hidden {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

.popup_child_wrap {
  gap: 20px;
}

.popup_child {
  cursor: pointer;
  border-radius: 1rem;
  border: 2px solid #efefef;
  padding: 1rem;
}

.popup_child:hover {
  border: 2px solid var(--blue);
}

/*mypage*/
.table_wrap.overflow{
	overflow: auto;
}
.mp_table{
	min-width: 900px !important;
}
 
.mypage_inner {
  background-color: #f6f6f8;
  padding: 1.5rem;
}

.mypage_box {
  border-radius: 1.5rem;
  background-color: #ffffff;
  box-shadow: 0px 0px 50px rgba(0, 92, 213, 0.1);
  padding: 2rem;
}

.mypage_search_zipcode {
  min-width: 100px !important;
}

.mypage_btn {
  height: 60px;
  min-width: 230px !important;
  border-radius: 0.5rem !important;
}

.mypage_table th,
.mypage_table_input th {
  border: 1px solid #efefef !important;
}

.mypage_table tr th,
.mypage_table_input tr th {
  background-color: #f6f6f8;
  width: 20%;
  font-size: 1.1rem;
}

.mypage_table tr td,
.mypage_table_input tr td {
  text-align: left;
  padding-left: 1rem !important;
}

.mypage_table_input tr td input {
  border-radius: 5px;
}
.mypage_table_input td input:focus {
  border: 1px solid var(--blue) !important;
  box-shadow: 0px 0px 10px rgba(0, 92, 213, 0.1) !important;
}

.mypage_search_zipcode {
  height: 45px !important;
}

.mycount_box_wrap {
  gap: 20px;
  flex-wrap: wrap;
}

.mycount_box {
  width: calc((100% - 80px) / 5);
  min-height: 150px;
  background-color: #ffffff;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(17, 34, 74, 0.08);
}

#content_2_tbody td div.bg_gray{
	pointer-events: none;
}

/*tabs*/
.tabs.mypage_tabs .tab_btn ul li a {
  background-color: #ffffff;
}

.tabs.mypage_tabs .tab_btn ul li a.active {
  color: #ffffff;
  background-color: var(--blue);
}

.add_child_table,
.add_child_table_mo {
  display: none;
}

/* .tab_content_box .table_wrap {
  overflow: auto !important;
}

.tab_content_box .table_wrap table {
  min-width: 500px !important;
}
 */
@media screen and (max-width: 767px) {
  .tabs.mypage_tabs ul {
    flex-direction: column;
    gap: 10px;
  }

  .mypage_table_input tr td input {
    width: 100% !important;
  }
}

@media screen and (min-width: 426px) {
  .mypage_table_wrap_mo,
  .wrap_mypage_table_mo {
    display: none;
  }

  .add_child_table_mo {
    display: none;
  }
}

@media screen and (max-width: 425px) {
  .mypage_table_wrap,
  .wrap_mypage_table {
    display: none;
  }

  .add_child_table {
    display: none;
  }

  .mypage_btn {
    width: 100% !important;
  }
}

@media screen and (max-width: 550px) {
  .mycount_box {
    width: calc((100% - 20px) / 2);
  }
}

/*center popup*/
.popup .popup_content.center_popup{
	background: #fff;
	/* width: auto; */
	max-height: none;
	max-width: none;
	height: 80%;
	width: 70%;
/* 	min-width: 60%; */
	border-radius: 20px;
	margin: 10px;
/* 	position: absolute;
	top: 50%;
	bottom: 50%;
	transform: translate(-50%, -50%); */
}

.popup .center_popup .center_name{
	margin-top: 2.5rem;
	margin-bottom: 0.7rem;
	font-size: 24px;
	font-weight: 800;
	position: relative;
	padding-left: 15px;
}

.popup .center_popup .center_name::before{
	content:'';
	width: 5px;
	height: 24px;
	background-color: var(--blue);
	position: absolute;
	top: 5px;
	left: 0;
	
}

.popup .center_popup .popup_center_table th{
	background-color: #f6f6f8
}

.popup_center_table.k6000_table tr:not(:last-child) th {
    border-bottom: 1px solid #efefef;
}

.popup .center_popup .popup_center_table .center_check_wrap,
.popup .center_popup .popup_center_table .center_check_wrap span{
	display: flex;
	align-items: center;
}

.popup .center_popup .popup_center_table #meal,
.popup .center_popup .popup_center_table #snack,
.popup .center_popup .popup_center_table #shuttleCar{
	display: flex;
}

.popup .center_popup .popup_center_table .center_check_icon{
	width: 20px;
	height: 20px ;
}

.popup .center_popup .popup_center_table .infant_hours{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
}

.popup .center_popup .popup_center_table .infant_hours > ul > li{
	display: flex;
	align-items: center;
}

/*popup check icon*/

.center_check_wrap .center_check_icon{
	color: #ddd;
}

.center_check_wrap .center_check_icon.on{
	color: var(--blue);
}

/*popup img*/
.popup .center_popup .popup_center_table #programPoster,
.popup .center_popup .popup_center_table #centerPhoto{
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.popup .center_popup .popup_center_table #programPoster img,
.popup .center_popup .popup_center_table #centerPhoto img{
	width: calc((100% - 20px) / 2);
	aspect-ratio: 1 / 1;
}

.popup .center_popup .popup_center_table #programPoster.one-image img,
.popup .center_popup .popup_center_table #centerPhoto.one-image img {
	width: 100%;
}

@media screen and (max-width: 1024px){
	.popup .center_popup{
	min-width: calc(100% - 20px);}
}

@media screen and (max-width: 500px){
	.popup .center_popup .popup_center_table #programPoster img,
.popup .center_popup .popup_center_table #centerPhoto img{
	width: 100%;
}
}

/*dropdown*/
.sub_content_title_wrap{
	display: flex;	
}

.sub_content_title.facility{
	justify-content: space-between;
}

.all_facility_select{
	    position: relative;
}

.all_facility_select .select_title {
    margin: 0 auto;
    padding: 0.5em 1em;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
  }

.all_facility_select .select_title.checked {
    border: 1px solid #5188f5;
    box-shadow: 5px 5px 10px rgba(0, 92, 213, 0.05);
  }

.all_facility_select .select_title.checked .drop_down_icon {
    transform: rotate(180deg);
    transition: none !important;
  }

.all_facility_select .dropdown_menu {
    max-height: 0px;
    overflow-y: hidden;
    transition: max-height 0.3s ease;
    width: 200px;
    margin: 0 auto;
    box-shadow: 5px 5px 10px rgba(0, 92, 213, 0.05);
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    z-index: 100;
  }

 .all_facility_select .dropdown_menu li a {
    display: block;
    width: 100%;
    overflow-y: auto;
    padding: 0.3em;
    margin: 7px 0;
  }

.all_facility_select .dropdown_menu::-webkit-scrollbar {
    width: 8px;
  }

.all_facility_select .dropdown_menu::-webkit-scrollbar-thumb {
    border-radius: 10px;
  }

.all_facility_select .dropdown_menu::-webkit-scrollbar-track {
    border-radius: 10px;
  }
  
/*   .scroll_btn {
  height: 30px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  position: absolute;
}

.scroll_btn.up{
	top: 0;
	right: 0; 
} */

::-webkit-scrollbar{
	width: 10px !important;
	height: 14px !important;
}

::-webkit-scrollbar-button {
  cursor: pointer;
}


::-webkit-scrollbar-button:vertical:start{
  background: url('data:image/svg+xml;utf8,<svg fill="black" height="16" viewBox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M7 15l5-5 5 5z"/></svg>') no-repeat center;
  background-size: 30px 30px;
}

::-webkit-scrollbar-button:vertical:end {
  background: url('data:image/svg+xml;utf8,<svg fill="black" height="16" viewBox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M7 9l5 5 5-5z"/></svg>') no-repeat center;
  background-size: 30px 30px;
}

/* 좌측(왼쪽 이동 버튼만 표시) */
.centers::-webkit-scrollbar-button:horizontal:start:decrement {
  background: url('data:image/svg+xml;utf8,<svg fill="black" height="16" width="16" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M15 7l-5 5 5 5z"/></svg>') no-repeat center;
  background-size: 30px 30px;
  display: block;
}

/* 우측(오른쪽 이동 버튼만 표시) */
.centers::-webkit-scrollbar-button:horizontal:end:increment {
  background: url('data:image/svg+xml;utf8,<svg fill="black" height="16" width="16" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M9 7l5 5-5 5z"/></svg>') no-repeat center;
  background-size: 30px 30px;
  display: block;
}

/* 나머지(중복 방지용) 숨기기 */
.centers::-webkit-scrollbar-button:horizontal:start:increment,
.centers::-webkit-scrollbar-button:horizontal:end:decrement {
  display: none;
}


/* 25.10.30 메인페이지 배너 css */

.popup_box{
width: 100%;
	height: 100%;
}

.popup_box img{
	display: block;
	width: 100%;
	height: 100%;
}

.popup_close_btn{
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(0, 0, 0, 0.3);
	color: #fff;
	padding: 5px;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

/* 팝업 btn */
.popup_btn{
	width: 100%;
	max-width: 80vw;
	height: 50px;
	background-color: #fff;
	outline: 1px solid #ddd;
	display: flex;
	justify-content: center;
	align-items: center;
}

.popup_btn > a{
	display: block;
	width: 50%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
}

.popup_btn > a:first-of-type{
	border-right: 1px solid #ddd;
}

@media screen and (max-width: 768px){
	.lms_pops{
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
	}
}