@charset "UTF-8";
@import "./tokens.css";

/* font 크기 */
.top {
  font-size: var(--tx-top-title);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}

.middle {
  font-size: var(--tx-middle-title);
  font-weight: var(--font-weight-bold);
  text-align: center;
  line-height: 1.2;
}

.sub {
  font-size: var(--tx-sub-title);
  font-weight: var(--font-weight-regular);
  line-height: 1.2;
}
/* font 크기 */

.search_icon {
  background-image: url(/images/2025/minwon/main/ico_search.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

input::placeholder {
  color: #33333350;
}

.title span {
  color: var(--text-point-color);
}

.box:focus {
  outline: 3px solid #2563eb; /* 파란 포커스 링 */
  outline-offset: 0px;
}



tr:focus {
  background-color: #a8b1cc;
  outline: none;
  box-shadow: none;
}

/* ***** MAIN ***** */

.section {
  padding: var(--main-pd) 0;
}
/* main-visual s */

.main_visual {
  width: 100%;
  height: 653px;
  background-image: url(/images/2025/minwon/main/main_bac.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.main_visual::after {
  content: "";
  position: absolute;
  left: 52%;
  top: 35%;
  z-index: -1;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  background-image: url(/images/2025/minwon/main/main_image.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.main_visual .inner {
  width: 100%;
  /* max-width: calc(1280px - 24px); */
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  position: relative;
}

.main_visual .ani_image {
  position: absolute;
  top: 17%;
  right: 29%;
  z-index: -1;
  width: 350px;
  height: 350px;
  animation: mainImg 3s ease-in-out infinite;
}

.main_visual .ani_image 

.main_visual .ani_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes mainImg {
  0% {
    transform: translateY(0) rotate(0);
  }

  25% {

     transform: translateY(20px) rotate(5deg);
  }

  50% {
    transform: translateY(20px) rotate(-5deg);
  }

  100% {
    transform: translateY(0) rotate(0);
  }
}

.main_visual .visual_top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main_visual .visual_top .text_wrap {
  display: flex;
  flex-direction: column;
  gap: var(--gap-032);
  margin-top: var(--number-015);
}

.main_visual .visual_top .box_wrap {
  display: flex;
  flex-direction: column;
  gap: var(--gap-015);
  width: 26.5%;
}

.main_visual .visual_top .box_wrap .top_box {
  background-color: var(--background-white);
  width: 100%;
  max-width: 326px;
  height: auto;
  position: relative;
  border-radius: var(--box-radius-small);
  padding: var(--pd014);
  box-shadow: 0 0 6px #0000000a;
}

.main_visual .visual_top .box_wrap .top_box.calender {
  border: 1px solid var(--white);
  background-color: #ffffff50;
  backdrop-filter: blur(4px);
}

.main_visual .visual_top .box_wrap .top_box .box_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--number-08);
}

.main_visual .visual_top .box_wrap .top_box .box_title p {
  font-size: var(--tx-medium);
  font-weight: var(--font-weight-bold);
}

.main_visual .visual_top .box_wrap .top_box .box_title a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main_visual .visual_top .box_wrap .top_box .box_title a span {
  font-size: var(--tx-xsmall);
}

.main_visual .visual_top .box_wrap .top_box .box_title a:hover span {
  font-weight: var(--font-weight-medium);
}

.main_visual .visual_top .box_wrap .top_box .box_title a:hover img {
  transform: rotate(360deg);
  transition: 0.6s;
}

.main_visual .visual_top .box_wrap .top_box .box_cont {
  background-color: var(--background-cont-box);
  padding: var(--pd012) var(--pd014) 0 var(--pd014);
  border-radius: var(--box-radius-xsmall);
  height: 124px;
  position: relative;
}

.main_visual .visual_top .box_wrap .top_box.calender .box_cont {
  background-color: var(--background-white);
}

.main_visual .visual_top .box_wrap .top_box .box_cont p {
  font-size: var(--tx-xsmall);
  font-weight: var(--font-weight-regular);
}

.main_visual .visual_top .box_wrap .top_box .box_cont .day {
  position: relative;
  margin-left: var(--number-07);
  margin-bottom: var(--number-010);
  color: var(--text-gray-color);
}

.main_visual .visual_top .box_wrap .top_box .box_cont .day:hover {
  color: var(--black);
  font-weight: var(--font-weight-medium);
}

.main_visual .visual_top .box_wrap .top_box .box_cont .day:hover::after {
  background-color: var(--box-hover-color);
}

.main_visual .visual_top .box_wrap .top_box .box_cont .day::after {
  content: "";
  width: 2px;
  height: 13px;
  background-color: #ccc;
  position: absolute;
  top: 50%;
  left: -7px;
  transform: translateY(-50%);
}

.main_visual .visual_top .box_wrap .top_box .box_cont .date {
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  color: #999;
}

.main_visual .visual_bottom {
  display: flex;
  justify-content: center;
  width: 100%;
  transform: translateY(49%);
}

.main_visual .visual_bottom .menu_wrap {
  background-color: var(--background-white);
  width: 100%;
  padding: var(--pd020);
  border-radius: var(--box-radius-small);
  box-shadow: 0 0 13.8px #00000020;
}

.main_visual .visual_bottom .menu_wrap .menu {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: var(--gap-024);
}

.main_visual .visual_bottom .menu_wrap .menu .icon {
  transition: 0.4s;
}

.main_visual .visual_bottom .menu_wrap .menu .icon a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-08);
}

.main_visual .visual_bottom .menu_wrap .menu .icon .icon_box {
  width: var(--number-080);
  height: var(--number-080);
  border-radius: var(--box-radius-small);
  box-shadow: 0 0 7px #00000025;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main_visual .visual_bottom .menu_wrap .menu .icon .icon_box img {
  height: var(--number-045);
}

.main_visual .visual_bottom .menu_wrap .menu .icon:hover .icon_box {
  box-shadow: 0 0 10px #93a9f1;
  transition: 0.3s;
}

.main_visual .visual_bottom .menu_wrap .menu .icon:hover .icon_box img {
  transition: 0.3s;
}

.main_visual .visual_bottom .menu_wrap .menu .icon:hover .icon_box img {
  transform: scale(1.1);
  transition: 0.3s;
}

.main_visual .visual_bottom .menu_wrap .menu .icon .text p {
  font-size: var(--tx-medium);
  font-weight: var(--typo-font-weight-semibold);
  text-align: center;
  line-height: 1.2;
}

.main_visual .visual_bottom .menu_wrap .menu .icon:hover .text p {
  font-weight: var(--typo-font-weight-bold);
}
/* main-visual s */

/* section-02  s*/

.section02 .inner {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.section02 .search_form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--number-022);
  margin-top: var(--number-060);
}
.section02 .search_form .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* gap: var(--number-06); */
}

.section02 .search_form .text .title.sub {
  text-align: center;
}

.section02 .search_form .sch_input {
  width: 100%;
  margin-top: var(--number-030);
  display: flex;
  justify-content: center;
  gap: var(--gap-010);
}

.section02 .search_form .sch_input .custom_input {
  width: 60%;
  max-width: 535px;
  height: 55px;
  border: 4px solid #3d57ae;
  border-radius: var(--box-radius-large);
  padding: 0 var(--pd022);
  font-size: var(--tx-xsmall);
  font-weight: var(--typo-font-weight-semibold);
}

.section02 .search_form .sch_input .search_btn {
  width: var(--number-055);
  height: var(--number-055);
  background-color: #3d57ae;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.section02 .search_form .sch_input .search_btn img {
  width: var(--number-020);
  height: var(--number-020);
}

/* 테이블 표  s */

.section02 .info_form {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.section02 .info_form .table_wrap .table_top .total {
  font-weight: var(--font-weight-regular);
  font-size: var(--tx-xsmall);
  color: var(--text-gray-color2);
}

.section02 .info_form .table_wrap .table_top .total .idx {
  font-weight: var(--font-weight-bold);
  font-size: var(--tx-medium);
  color: var(--black);
  padding: 0 var(--pd03);
}

.section02 .info_form .table_wrap {
  width: 56%;
}

.section02 .info_form .table_wrap .table_board {
  width: 100%;
  max-height: 553px;
  overflow: auto;
  border-bottom: 1px solid #999;
  border-top: 1px solid var(--tb-line-color);
}

/* 표 */
.section02 .info_form .table_wrap .table_list {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.section02 .info_form .table_wrap .table_list thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: var(--background-table-color);
  text-align: center;
  font-size: var(--tx-table-header);
  font-weight: var(--font-weight-medium);
}

.section02 .info_form .table_wrap .table_list th,
.section02 .info_form .table_wrap .table_list td {
  padding: var(--pd016) var(--pd016);
  border-bottom: 1px solid #dfdfdf;
  border-right: 1px solid #dfdfdf;
  text-align: center;
  white-space: nowrap;
}

.section02 .info_form .table_wrap .table_list .last_col {
  border-right: none;
}

.section02 .info_form .table_wrap .table_list tbody td {
  cursor: pointer;
  padding: var(--pd010) var(--pd016);
  font-size: var(--tx-xsmall);
  font-weight: var(--font-weight-medium);
}

.section02 .info_form .table_wrap .table_list tbody tr:hover {
  background-color: #a8b1cc;
}

.section02 .info_form .table_wrap .table_list tbody tr:hover > td {
  font-weight: var(--font-weight-bold);
}

.section02 .info_form .table_wrap .table_list tbody td.all {
  color: var(--tb-point-color);
}

.section02 .info_form .table_wrap .table_list td.title_col {
  white-space: normal;
  line-height: 1.45;
}

/* .section02 .info_form .table_wrap .table_top {
  margin-bottom: var(--number-4);
}
 */
/* 테이블 표  e */

.section02 .info_form .text_wrap {
  width: 41%;
  margin-top: var(--number-023);
  display: flex;
  flex-direction: column;
  gap: var(--gap-022);
}

.section02 .info_form .text_wrap .box_wrap {
  display: flex;
  flex-direction: column;
  gap: var(--gap-010);
}

.section02 .info_form .text_wrap .box {
  width: 100%;
  background-color: var(--background-cont-box);
  padding: var(--pd020) var(--pd05);
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
  gap: var(--gap-020);
  box-shadow: 0 0 2px #00000025;
  padding-right: 12px;
}

.section02 .info_form .text_wrap .first {
  font-size: var(--tx-medium);
  font-weight: var(--font-weight-bold);
  color: #003399;
  text-align: left;
  padding-left: var(--pd020);
  white-space: nowrap;
}

/* section02 .box.title  s */

.section02 .info_form .text_wrap .box.title {
  display: flex;
  justify-content: flex-start;
}

.section02 .info_form .text_wrap .box .title_text {
  font-size: var(--tx-medium);
  font-weight: var(--font-weight-medium);
}

.section02 .info_form .text_wrap .box .sub_text {
  display: flex;
  align-items: center;
}

.section02 .info_form .text_wrap .box span {
  font-size: var(--tx-xxsmall);
  color: #515e78;
}
/* section02 .box.title  e */

/* section02 .box.local s */
.section02 .info_form .text_wrap .local {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  position: relative;
  cursor: pointer;
}

.section02 .info_form .text_wrap .local::after {
  content: "";
  position: absolute;
  width: var(--number-015);
  height: var(--number-015);
  right: 30px;
  top: 22px;
  transition: 0.4s;
  background-image: url("/images/2025/minwon/main/ico_arrow.svg");
  background-repeat: no-repeat;
}

.section02 .info_form .text_wrap .local.active::after {
  transform: rotate(180deg);
  transition: 0.4s;
}

.section02 .info_form .text_wrap .local .local_title {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: var(--gap-030);
}

.section02 .info_form .text_wrap .local .local_title > span {
  width: 61%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section02 .info_form .text_wrap .local.active .local_title > span {
  display: none;
}

.section02 .info_form .text_wrap .local .local_list {
  width: 100%;
  padding: 0 var(--pd020);
  display: none;
}

.section02 .info_form .text_wrap .local .local_list.active {
  display: block;
}

/* section02 .box.local e */

/* section02 .box.form s */
.section02 .info_form .text_wrap .form {
  align-items: center;
}

.section02 .info_form .text_wrap .form .custom-select {
  width: 69%;
  position: relative;
}

.section02 .info_form .text_wrap .form .select-trigger {
  background-color: transparent;
  border-bottom: 1px solid #515e78;
  padding: var(--pd05);
  cursor: pointer;
  font-size: var(--tx-small);
  color: #515e78;
  user-select: none;
  box-shadow: none;
  border-radius: 0;
}

.section02 .info_form .text_wrap .form .custom-select .options {
  display: none;
}
.section02 .info_form .text_wrap .form .custom-select.open .options {
  display: block;
}

.section02 .info_form .text_wrap .form .select-trigger:hover {
  font-weight: var(--font-weight-bold);
}

.section02 .info_form .text_wrap .form .select-trigger::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  background-image: url("/images/2025/minwon/main/ico_formArrow.svg");
  background-repeat: no-repeat;
  width: var(--number-010);
  height: var(--number-08);
  transform: translateY(-50%);
  transition: transform 0.4s;
}

.section02
  .info_form
  .text_wrap
  .form
  .custom-select.open
  .select-trigger::after {
  transform: translateY(-50%) rotate(180deg);
}

.section02 .info_form .text_wrap .form .options {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #f2f4f8;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 100;
}

.section02 .info_form .text_wrap .form .custom-select.open .options {
  display: block;
}

.section02 .info_form .text_wrap .form .options li {
  padding: var(--pd08) var(--pd012);
  cursor: pointer;
  font-size: var(--tx-xsmall);
}

.section02 .info_form .text_wrap .form .options li:hover {
  background: #515e78;
  color: var(--white);
}
/* section02 .box.form e */

/* section02 .box.result s */
.section02 .info_form .text_wrap .result {
  position: relative;
  box-shadow: 0 0 2px #00000045;
}

.section02 .info_form .text_wrap .result::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 34px;
  background-color: #ddd;
}

.section02 .info_form .text_wrap .result .res {
  width: 50%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.section02 .info_form .text_wrap .result .res .first {
  white-space: nowrap;
}

.section02 .info_form .text_wrap .result .res .num {
  font-size: var(--tx-num-size);
  font-weight: var(--typo-font-weight-semibold);
  white-space: nowrap;
}

.section02 .info_form .text_wrap .result .res .num.won {
  color: var(--text-red-color);
}

.section02 .info_form .text_wrap .result .res .num.day {
  color: var(--tb-point-color);
}
/* section02 .box.result e */

.section02 .info_form .text_wrap .box_wrap .serv_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2758ba;
  color: var(--white);
  font-size: var(--tx-medium);
  font-weight: var(--mobile-fs-heading-medium);
}

.section02 .info_form .text_wrap .box_wrap .serv_btn:hover {
  background-color: #5a8ae9;
}

/* 260303 추가 시작 */
.section02 .info_form .text_wrap .box_wrap .manual_btn {
    display: flex;
    justify-content: center;
    align-items: center !important;
    background-color: #5a8ae9;
    color: var(--white);
    font-size: var(--tx-medium);
    font-weight: var(--mobile-fs-heading-medium);
}

.section02 .info_form .text_wrap .box_wrap .manual_btn:hover {
    background-color: #5a8ae9bf;
}
/* 260303 추가 끝 */

.section02 .info_form .text_wrap .box_wrap .tip {
  flex-direction: column;
  flex-wrap: nowrap;
  position: relative;
  cursor: pointer;
}

.section02 .info_form .text_wrap .box_wrap .tip.active .tip_title > span {
  display: none;
}

.section02 .info_form .text_wrap .box_wrap .tip::after {
  content: "";
  position: absolute;
  width: var(--number-015);
  height: var(--number-015);
  right: 30px;
  top: 22px;
  transition: 0.4s;
  background-image: url("/images/2025/minwon/main/ico_arrow.svg");
  background-repeat: no-repeat;
}

.section02 .info_form .text_wrap .box_wrap .tip.active::after {
  transform: rotate(180deg);
  transition: 0.4s;
}

.section02 .info_form .text_wrap .box_wrap .tip_title {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: var(--gap-030);
}

.section02 .info_form .text_wrap .box_wrap .tip_list {
  width: 100%;
  padding: 0 var(--pd020) var(--pd024);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--gap-012);
  display: none;
}

.section02 .info_form .text_wrap .box_wrap .tip_list.active {
  display: flex;
}

.section02 .info_form .text_wrap .box_wrap .tip_list .all_text {
    /* 260303 수정 시작
  width: 48%;
  */
  width: 100%;
  /* 260303 수정 끝 */
}

.section02 .info_form .text_wrap .box_wrap .tip_list .all_text .tip_title {
  font-size: var(--tx-small);
  font-weight: var(--typo-font-weight-semibold);
  color: var(--text-point-color2);
  margin-bottom: var(--number-05);
}

.section02 .info_form .text_wrap .box_wrap .tip_list .all_text .tip_cont {
  font-size: var(--tx-xsmall);
  word-break: keep-all;
}

/* section-02  e*/

/* section-03 s */

.section03 {
  width: 100%;
  background-color: var(--background-sec3-color);
  border-top-left-radius: var(--box-radius-max);
  border-bottom-right-radius: var(--box-radius-max);
  box-shadow: 0 2px 4px #00000015;
}

.section03 .inner {
  display: flex;
  flex-direction: column;
  gap: var(--gap-030);
}

.section03 .sur_title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* gap: var(--number-06); */
}

.section03 .sur_title .title.middle {
  text-align: center;
}

.section03 .sur_title .title.sub {
  text-align: center;
}

.section03 .sur_menu .menu_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--gap-020);
}

.section03 .sur_menu .menu_list li:hover a {
  box-shadow: 0 0 10px #93a9f1;
  background-color: var(--background-cont-box);
}

.section03 .sur_menu .menu_list li:hover .icon_box img {
  transform: scale(1.2);
  transition: 0.4s;
}

.section03 .sur_menu .menu_list li .icon_box img {
  transition: 0.4s;
}

.section03 .sur_menu .menu_list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-015);
  background-color: var(--white);
  max-width: 180px;
  padding: 28px 57px;
  border-radius: var(--box-radius-medium);
  box-shadow: 0 0 2px #00000015;
}

.section03 .sur_menu .menu_list li a .text {
  text-align: center;
  font-size: var(--tx-medium);
  font-weight: var(--font-weight-medium);
  white-space: nowrap;
}
/* section-03 e */

/* section04 s */

.section04 {
  position: relative;
  padding: var(--main-pd) 0;
}

.section04::after {
  content: "";
  position: absolute;
  background-image: url("/images/2025/minwon/main/bg_blur.jpg");
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  backdrop-filter: blur(10px);
}

.section04 .box_wrap {
  width: 100%;
  max-width: 1280px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section04 .box_wrap .sys_box {
  width: 68%;
  display: flex;
  align-items: center;
  flex-direction: column;
  background: linear-gradient(to right, #ffffff33, #eaeaea33);
  border-radius: var(--box-radius-small);
  box-shadow: 0 0 15px #0000000e;
  border: 1px solid var(--white);
}

.section04 .box_wrap .sys_box .sys_title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  padding: var(--pd038) 0;
  border-bottom: 1px solid #e5e5e5;
}

.section04 .box_wrap .sys_box .sys_title .title {
  font-size: var(--tx-middle-title2);
}

.section04 .box_wrap .sys_box .sys_cont {
  width: 100%;
  padding: var(--pd036) var(--pd036);
}

.section04 .box_wrap .sys_box .sys_cont .cont_wrap {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--gap-022);
}

.section04 .box_wrap .sys_box .sys_cont .cont_wrap .cont_box a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--pd011) var(--pd040);
  background-color: var(--background-white);
  font-size: var(--tx-small);
  font-weight: var(--font-weight-medium);
  max-width: 173px;
  border-radius: var(--box-radius-medium2);
  box-shadow: 0 0 2px #00000025;
  white-space: nowrap;
}

.section04 .box_wrap .sys_box .sys_cont .cont_wrap .cont_box:hover a {
  background-color: var(--text-point-color);
  color: var(--white);
}

.section04 .box_wrap .call_box {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: var(--gap-022);
}

.section04 .box_wrap .call_box .call_top {
  border: 1px solid var(--white);
  padding: var(--pd022) 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px #00000010;
  border-radius: var(--box-radius-small);
}

.section04 .box_wrap .call_box .call_top .text_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--gap-040);
}

.section04 .box_wrap .call_box .call_top .text_wrap .call_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--gap-012);
  position: relative;
}

.section04 .box_wrap .call_box .call_top .text_wrap .call_text > p {
  font-size: var(--tx-medium);
  font-weight: var(--typo-font-weight-semibold);
}

.section04 .box_wrap .call_box .call_top .text_wrap .call_text > h3 {
  font-size: var(--tx-middle-title2);
  font-weight: var(--typo-font-weight-semibold);
}

.section04 .box_wrap .call_box .call_top .text_wrap .call_text::after {
  content: "(유료)";
  position: absolute;
  left: 50%;
  bottom: -30%;
  transform: translateX(-50%);
  color: #777;
  font-size: var(--tx-sub2-title);
}

.section04 .box_wrap .call_box .call_top .text_wrap .time_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section04 .box_wrap .call_box .call_top .text_wrap .time_text > p {
  font-size: var(--tx-small);
  font-weight: var(--font-weight-regular);
  color: #555;
  padding-left: var(--pd020);
  position: relative;
}

.section04 .box_wrap .call_box .call_top .text_wrap .time_text > p::after {
  content: "";
  position: absolute;
  top: 49%;
  left: -5px;
  transform: translateY(-50%);
  background-image: url("/images/2025/minwon/main/ico_clock.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
}

.section04 .box_wrap .call_box .call_top .text_wrap .time_text > span {
  font-size: var(--tx-xsmall);
  font-weight: var(--font-weight-regular);
  color: #3333339c;
}

.section04 .box_wrap .call_box .call_bottom {
  border: 1px solid var(--white);
  padding: var(--pd022) 0 var(--pd035);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px #00000010;
  border-radius: var(--box-radius-small);
}

.section04 .box_wrap .call_box .call_bottom .text_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--gap-012);
  position: relative;
}

.section04 .box_wrap .call_box .call_bottom .text_wrap::after {
  content: "(유료)";
  position: absolute;
  left: 50%;
  bottom: -30%;
  transform: translateX(-50%);
  color: #777;
  font-size: var(--tx-sub2-title);
}

.section04 .box_wrap .call_box .call_bottom .text_wrap > p {
  font-size: var(--tx-medium);
  font-weight: var(--typo-font-weight-semibold);
}

.section04 .box_wrap .call_box .call_bottom .text_wrap > h3 {
  font-size: var(--tx-middle-title2);
  font-weight: var(--typo-font-weight-semibold);
}

/* section04 e */

@media (max-width: 1300px) {
  /* main-visual s */
  .main_visual {
    height: auto;
    padding: var(--pd0
    50) 0;
  }

  .main_visual::after {
    left: 59%;
    top: 22%;
  }

  .main_visual .ani_image {
    top: 6%;
    right: 18%;
  }

  .main_visual .visual_top {
    gap: var(--number-0160);
    margin-bottom: var(--number-038);
  }

  .main_visual .visual_top .text_wrap {
    width: 100%;
  }

  .main_visual .visual_top .box_wrap {
    flex-direction: row;
    width: 100%;
  }

  .main_visual .visual_top .box_wrap .top_box {
    max-width: 50%;
  }

  .main_visual .visual_top .text_wrap {
    gap: var(--gap-010);
  }

  .main_visual .visual_bottom {
    transform: translateY(0);
  }

  .main_visual .visual_bottom .menu_wrap {
    padding: var(--pd020) var(--pd020);
  }

  .main_visual .visual_bottom .menu_wrap .menu {
    flex-wrap: wrap;
  }

  .main_visual .visual_bottom .menu_wrap .menu .icon .icon_box {
    width: 65px;
    height: 65px;
  }

  .main_visual .visual_bottom .menu_wrap .menu .icon .icon_box img {
    height: 40px;
  }

  .main_visual .visual_bottom .menu_wrap .menu .icon .text p {
    font-size: var(--tx-small);
  }

  /* main-visual e */

  /* section02 s */
  .section02 .search_form {
    margin-top: 0;
  }
  /* section02 e */

  /* section03 s */
  .section03 {
    border-top-left-radius: var(--box-radius-xlarge);
    border-bottom-right-radius: var(--box-radius-xlarge);
  }

  .section03 .sur_menu {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .section03 .sur_menu .menu_list {
    flex-wrap: wrap;
    width: 65%;
    gap: var(--gap-024);
  }
  /* section03 e */

  /* section04 s */
  .section04 .box_wrap .sys_box .sys_cont .cont_wrap {
    justify-content: center;
  }

  .section04 .box_wrap .call_box .call_top {
    box-shadow: none;
    border: none;
  }
  .section04 .box_wrap .call_box .call_bottom {
    box-shadow: none;
    border: none;
  }
  /* section04 e */
}

@media (max-width: 1080px) {
  /* main_visual s */
  .main_visual::after {
    left: 63%;
    top: 22%;
  }

  .main_visual .ani_image {
    top: 6%;
    right: 6%;
    width: 320px;
    height: 320px;
  }

  .main_visual .visual_bottom .menu_wrap {
    --side: 16px;
  }

  .main_visual .visual_bottom .menu_wrap .menu {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: var(--gap-024);
    padding: var(--pd08) var(--pd028) var(--pd05) var(--pd010);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--side);
    scrollbar-gutter: stable both-edges;
  }

  .main_visual .visual_bottom .menu_wrap .menu .icon {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .main_visual .visual_bottom .menu_wrap .menu::-webkit-scrollbar {
    height: 5px;
  }

  .main_visual .visual_bottom .menu_wrap .menu::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 8px;
  }

  .main_visual .visual_bottom .menu_wrap .menu {
    -webkit-mask-image: linear-gradient(
      to right,
      black calc(100% - 24px),
      transparent
    );
    mask-image: linear-gradient(to right, black calc(100% - 24px), transparent);
  }
  /* main_visual e */

  /* section02 s */
  .section02 .info_form .table_wrap {
    width: 51%;
  }

  .section02 .info_form .text_wrap {
    width: 45%;
  }

  .section02 .info_form .table_wrap .table_board {
    overflow-x: auto;
    max-height: clamp(320px, 51vh, 505px);
  }

  .section02 .info_form .table_wrap .table_board .table_list {
    min-width: 640px;
  }

  .section02 .info_form .text_wrap .first {
    font-size: var(--tx-small);
    font-weight: var(--font-weight-bold);
    color: #003399;
    text-align: center;
  }

  .section02 .info_form .text_wrap .box .title_text {
    font-size: var(--tx-small);
    font-weight: var(--font-weight-medium);
  }

  .section02 .info_form .text_wrap .local .local_title > span {
    width: 50%;
  }

  .section02 .info_form .text_wrap .form .select-trigger {
    font-size: var(--tx-xsmall);
  }

  .section02 .info_form .text_wrap .result .res .num {
    font-size: var(--tx-medium);
    font-weight: var(--typo-font-weight-semibold);
  }

  .section02 .info_form .text_wrap .result::after {
    display: none;
  }

  .section02 .info_form .text_wrap .box_wrap .tip_list,
  .section02 .info_form .text_wrap .box_wrap .local_list {
    padding: var(--pd08) var(--pd020) 0;
  }

  .section02 .info_form .text_wrap .box_wrap .tip_list .all_text {
    width: 100%;
  }

  .section02 .info_form .text_wrap .box_wrap .tip_list .all_text .tip_title {
    margin-bottom: 0;
  }
  /* section02 e */

  /* section03 s */
  .section03 .sur_menu .menu_list {
    width: 100%;
  }

  .section03 .sur_menu .menu_list {
    gap: var(--gap-024);
  }
  /* section03 e */
}

@media (max-width: 768px) {
  .top {
  /* 20251110 반응형 폰트사이즈 조절 */
    font-size: var(--tx-top-title3);
  }
  
  .middle {
  /* 20251110 반응형 폰트사이즈 조절 */
  	font-size: var(--tx-top-title3);
  }

  .sub {
    font-size: var(--tx-medium);
  }

  /* main-visual s */

  .main_visual::after {
    left: 73%;
    top: 22%;
    width: 300px;
    height: 300px;
  }

  .main_visual .ani_image {
    top: 7%;
    right: 3%;
    width: 250px;
    height: 250px;
  }

  .main_visual .visual_top {
    background-position: top -34px right 15px;
    background-size: 50%;
  }
  /* main-visual e */

  /* section02 s */
  .section02 .search_form .sch_input .custom_input {
    height: 45px;
  }

  .section02 .search_form .sch_input .search_btn {
    width: var(--number-045);
    height: var(--number-045);
  }

  .section02 .info_form {
    flex-wrap: wrap;
  }

  .section02 .info_form .table_wrap {
    width: 100%;
  }

  .section02 .info_form .text_wrap {
    width: 100%;
  }
  /* section02 e */

  /* sectton03 s */
  .section03 .sur_menu .menu_list {
    width: 100%;
  }
  /* sectton03 e */

  /* section04 s */
  .section04 .box_wrap {
    flex-wrap: wrap;
    gap: var(--gap-020);
  }

  .section04 .box_wrap .sys_box {
    width: 100%;
  }

  .section04 .box_wrap .call_box {
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .section04 .box_wrap .call_box .call_top {
    width: 100%;
    justify-content: center;
    background: linear-gradient(to right, #ffffff33, #eaeaea33);
    border-radius: var(--box-radius-small);
    box-shadow: 0 0 15px #00000015;
    border: 1px solid var(--white);
  }

  .section04 .box_wrap .call_box .call_top .text_wrap {
    gap: var(--gap-04);
  }

  .section04 .box_wrap .call_box .call_top .text_wrap .call_text {
    flex-direction: row;
  }

  .section04 .box_wrap .call_box .call_top .text_wrap .time_text {
    flex-direction: row;
    gap: var(--gap-04);
  }

  .section04 .box_wrap .call_box .call_top .text_wrap .call_text::after,
  .section04 .box_wrap .call_box .call_bottom .text_wrap::after {
    right: -22%;
    left: auto;
    bottom: 20%;
    font-size: var(--tx-medium);
  }

  .section04 .box_wrap .call_box .call_bottom .text_wrap::after {
    right: -20%;
  }

  .section04 .box_wrap .call_box .call_bottom {
    width: 100%;
    background: linear-gradient(to right, #ffffff33, #eaeaea33);
    border-radius: var(--box-radius-small);
    box-shadow: 0 0 15px #00000015;
    border: 1px solid var(--white);
    padding: var(--pd022) 0;
  }

  .section04 .box_wrap .call_box .call_bottom .text_wrap {
    flex-direction: row;
  }
  /* section04 e */
}

@media (max-width: 500px) {
  .top {
    font-size: var(--tx-top-title3);
  }

  .sub {
    font-size: var(--tx-small);
  }

  .middle {
  /* 20251110 반응형 폰트사이즈 조절 */
    font-size: var(--tx-top-title-mob);
    margin-bottom: 10px;
  }

  /* main-visual s */
  .main_visual {
    height: auto;
  }

  .main_visual::after {
    left: 69%;
    top: 14%;
    width: 250px;
    height: 250px;
  }

  
  .main_visual .ani_image {
    top: 4%;
    right: 0%;
    width: 200px;
    height: 200px;
  }

  .main_visual .visual_top .box_wrap {
    flex-direction: column;
  }

  .main_visual .visual_top {
    gap: var(--number-0100);
  }

  .main_visual .visual_top .box_wrap .top_box {
    max-width: 100%;
  }

  .main_visual .visual_top .box_wrap .top_box .box_cont {
    height: 140px;
  }

  .main_visual .visual_top .text_wrap {
    gap: var(--gap-020);
  }

  .main_visual .visual_bottom .menu_wrap .menu {
    gap: var(--gap-020);
  }

  .main_visual .visual_bottom .menu_wrap {
    padding: var(--pd020);
  }
  /* main-visual e */

  /* section02 s */
  .section02 .search_form .text .title.sub {
    font-size: var(--tx-medium);
  }
  /* section02 e */

  /* section03 s */
  .section03 {
    box-shadow: none;
    border-top-left-radius: var(--box-radius-xsmall);
    border-bottom-right-radius: var(--box-radius-xsmall);
  }

  .section03 .sur_menu .menu_list {
    gap: var(--gap-010);
  }

  .section03 .sur_menu .menu_list li {
    width: 100%;
  }

  .section03 .sur_menu .menu_list li a {
    width: 100%;
    max-width: none;
  }

  .section03 .sur_menu .menu_list li a .text {
    font-size: var(--tx-small);
  }
  /* section03 e */

  /* section04 s */
  .section04 .box_wrap .sys_box .sys_title .title {
    /* 20251110 반응형 폰트사이즈 조절 */
    font-size: var(--tx-top-title-mob);
  }

  .section04 .box_wrap .sys_box .sys_cont .cont_wrap {
    flex-direction: column;
    gap: var(--gap-012);
  }

  .section04 .box_wrap .sys_box .sys_cont .cont_wrap .cont_box {
    width: 100%;
  }

  .section04 .box_wrap .sys_box .sys_cont .cont_wrap .cont_box a {
    max-width: none;
  }

  .section04 .box_wrap .call_box .call_top .text_wrap .call_text,
  .section04 .box_wrap .call_box .call_bottom .text_wrap {
    flex-direction: column;
  }

  .section04 .box_wrap .call_box .call_top .text_wrap .call_text::after,
  .section04 .box_wrap .call_box .call_bottom .text_wrap::after {
    right: 28%;
    bottom: -16%;
  }

  .section04 .box_wrap .call_box .call_top .text_wrap {
    gap: var(--gap-020);
  }

  .section04 .box_wrap .call_box .call_top .text_wrap .time_text {
    flex-direction: column;
  }

  .section04 .box_wrap .call_box {
    background: linear-gradient(to right, #B9CAFF20, #FFF1A425);
  }

  .section04 .box_wrap .call_box .call_bottom {
    padding: var(--pd022) 0 var(--pd035);
  }
  /* section04 e */
}

@media (max-width: 380px) {
  input::placeholder {
    font-size: var(--tx-xxsmall);
  }

  .top {
    font-size: var(--tx-top-title-mob);
  }

  .middle {
    font-size: var(--tx-sub2-title);
  }

  /* main-visual s */
  .main_visual {
    padding: var(--pd030) 0;
  }

  .main_visual::after {
    display: none;
  }

  .main_visual .visual_top .text_wrap {
    gap: 10px;
  }

  .main_visual .visual_top .text_wrap .top_title {
    font-size: var(--tx-top-title-mob);
  }

  .main_visual .visual_top .text_wrap .sub_title {
    font-size: var(--tx-xsmall);
  }

  .main_visual .visual_top {
    gap: var(--gap-030);
  }

  .main_visual .visual_top .box_wrap .top_box .box_cont {
    height: 100px;
  }

  .main_visual .visual_bottom .menu_wrap .menu .icon .icon_box {
    width: 55px;
    height: 55px;
  }

  .main_visual .visual_bottom .menu_wrap .menu .icon .icon_box img {
    height: 35px;
  }

  .main_visual .visual_bottom .menu_wrap .menu .icon .text p {
    font-size: var(--tx-xsmall);
  }
  /* main-visual e */

  /* section02 s */
  .section02 .search_form .sch_input {
    gap: 2px;
  }

  .section02 .info_form .text_wrap .box {
    gap: 8px;
  }

  .section02 .info_form .text_wrap .result .res {
    gap: 8px;
  }

  .section02 .info_form .text_wrap .box.title {
    flex-direction: column;
    justify-content: center;
  }

  .section02 .info_form .text_wrap .box.title .title_text {
    text-align: center;
    font-size: var(--tx-xsmall);
  }

  .section02 .info_form .text_wrap .local .local_title {
    flex-direction: column;
    gap: var(--gap-015);
  }

  .section02 .info_form .text_wrap .first {
    padding-left: 0;
  }

  .section02 .info_form .text_wrap .form {
    flex-direction: column;
    justify-content: center;
  }

  .section02 .info_form .text_wrap .result {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--gap-015);
  }

  .section02 .info_form .text_wrap .result .res {
    flex-direction: column;
  }

  .section02 .search_form .text .title.sub {
    font-size: var(--tx-table-header);
  }

  .section02 .info_form .text_wrap .form .custom-select {
    width: 90%;
  }

  .section02 .info_form .text_wrap .form .select-trigger {
    padding: var(--pd05) var(--pd020);
  }

  .section02 .info_form .text_wrap .form .select-trigger::after {
    right: 5px;
  }

  .section02 .search_form .sch_input .custom_input {
    width: 74%;
  }

  .section02 .info_form .text_wrap .box_wrap .tip .tip_title .first {
    padding-left: var(--pd020);
  }

  .section02 .info_form .text_wrap .box .tip_title > span {
    display: none;
  }
  /* section02 e */

  /* section04 s */
  .section04 .box_wrap .sys_box .sys_title {
    padding: var(--pd020) 0;
  }

  .section04 .box_wrap .sys_box .sys_title .title {
    font-size: var(--tx-sub2-title);
  }

  .section04 .box_wrap .sys_box .sys_cont {
    padding: var(--pd036) var(--pd012);
  }

  .section04 .box_wrap .sys_box .sys_cont .cont_wrap .cont_box a {
    font-size: var(--tx-xsmall);
  }

  .section04 .box_wrap .call_box .call_top .text_wrap .call_text > h3,
  .section04 .box_wrap .call_box .call_bottom .text_wrap > h3 {
    font-size: var(--tx-top-title-mob);
  }

  .section04 .box_wrap .call_box .call_top .text_wrap .call_text::after,
  .section04 .box_wrap .call_box .call_bottom .text_wrap::after {
    right: 20%;
    bottom: -22%;
  }

  .section04 .box_wrap .call_box .call_top .text_wrap .time_text > p {
    padding-left: 0;
  }

  .section04 .box_wrap .call_box .call_top .text_wrap .time_text > p::after {
    display: none;
  }
  /* section04 e */
}
