ul,
li,
ol {
  list-style: none;
}
form {
  padding: 0;
  margin: 0;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

input[type="file"] {
  padding: 0.375rem 0.2rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.2;
  color: #212529;
  background-color: #fff;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type="text"],
input[type="password"],
input[type="number"],
textarea {
  padding: 0.375rem 0.2rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.2;
  color: #212529;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select {
  padding: 0.375rem 2.25rem 0.375rem 0.2rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.2;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select:focus,
input:focus,
textarea:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.025rem rgba(13, 110, 253, 0.25);
}


.nav-fixed .topnav {
  z-index: 1039;
  border-top: 6px solid var(--bs-primary);
}
.topnav_bg {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 0;
  background: #fff;
  z-index: 1038;
  transition: all 0.1s ease-out;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
}
.topnav_bg.active {
  /* height: 420px; */
  background: rgba(255, 255, 255, 1);
  border-bottom: 1px solid rgb(242, 242, 242);
  transition: all 0.05s ease-out;
  -webkit-transition: all 0.05s ease-out;
  -moz-transition: all 0.05s ease-out;
  -ms-transition: all 0.05s ease-out;
  -o-transition: all 0.05s ease-out;
}
.topnav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 5rem;
  height: 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.2s ease;
}
.topnav .logo img {
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
}
.topnav .nav .nav_wrap {
  display: flex;
  /* gap: 0 .2rem; */
  font-weight: 400;
  font-size: 1rem;
  color: #fff;
}
.topnav .nav .nav_wrap .nav_item {
  position: relative;
  /* min-width: 160px; */
  text-align: center;
  padding: 0 1.5rem;
}
.topnav .nav .nav_wrap .nav_item > a {
  display: block;
  position: relative;
  width: 100%;
  height: 90px;
  font-family: "Jost","GmarketSansMedium";
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: -1px;
  line-height: 90px;
}
.topnav .nav .nav_wrap .sub {
  position: absolute;
  top: 96%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
  margin: 0;
  text-align: left;
  /* width: 150%; */
  width: 100%;
  height: 0px !important;
  overflow: hidden;
  z-index: 1040;
}
.topnav .nav .nav_wrap .sub.active {
  display: block;
}
.topnav .nav .nav_wrap .sub::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  transition: all 0.3s ease-out;
}
.topnav .nav .nav_wrap .sub a {
  display: block;
  font-weight: 500;
  font-size: 0.85rem !important;
  letter-spacing: -0.5px;
  padding: 0.5rem;
  margin: 0;
  text-align: center;
  opacity: 0;
  border-bottom: 1px solid #f0f0f0;
}
.topnav .nav .nav_wrap .sub a:last-child {
  border-bottom: none;
}
.topnav .nav .nav_wrap .sub a:hover {
  color: #143ac3;
  background: #f0f0f0;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}
.topnav .nav .nav_wrap .sub a:hover span {
  display: inline-block;
  padding-right: 0.25rem;
  font-weight: 600;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}
.topnav .nav .nav_item:hover > a {
  font-weight: 700 !important;
  color: #082383 !important;
}
.topnav .nav .nav_item:hover .sub {
  height: auto !important;
  background: #fff;
  overflow: auto;
  padding: 1rem 0;
  border-radius: 0 0 0.5rem 0.5rem;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1), 0 3px 5px rgba(0, 0, 0, 0.15);
  transition-duration: 0.5s;
}
.topnav .nav .nav_item:hover .sub::after {
  width: 15px;
  height: 3px;
  background: #004ab9;
  /* transform: rotate(-45deg); */
  transition-duration: 0.5s;
  transition-delay: 0.3s;
}
.topnav .nav .nav_item:hover .sub a {
  opacity: 1;
  transition-duration: 0.3s;
  /* transition-delay: 0.1s; */
}
.topnav .sub a {
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}
.topnav.bg_w {
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 1);
}
.topnav.bg_w .nav .nav_wrap .nav_item > a {
  font-weight: 700 !important;
  color: #000;
}
.topnav.bg_w .rnav > div a,
.topnav.bg_w .rnav > div button {
  color: #000;
}

.topnav.navbar-shrink {
  height: 65px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  background-color: rgba(255, 255, 255, 1);
}
.topnav.navbar-shrink .logo img {
  transform: scale(0.8);
  transform-origin: left;
}
.topnav.navbar-shrink .nav_wrap {
  font-weight: 500;
  font-size: 0.95rem;
  color: #000;
}
.topnav.navbar-shrink .nav .nav_wrap .nav_item > a {
  font-weight: 700 !important;
  color: #000;
  height: 65px;
  line-height: 65px;
}
.topnav.navbar-shrink .rnav > div a,
.topnav.navbar-shrink .rnav > div button {
  color: #000;
}
@media (min-width: 992px) {
  .topnav {
    padding: 0rem 1.5rem;
  }
  .topnav .nav .nav_wrap .nav_item > a {
    font-size: 1rem;
  }
  .topnav .nav .nav_wrap .sub a {
    font-size: 0.8rem;
  }
}
@media (min-width: 1200px) {
  .topnav {
    padding: 0rem 5rem;
  }
}
@media (max-width: 1300px) {
  .topnav .nav .nav_wrap .nav_item {
    padding: 0 1rem;
  }
  .topnav .nav .nav_wrap .nav_item > a {
    font-size: .9rem;
  }
}
@media (max-width: 1050px) {
  .topnav .nav {
    /* position: fixed;
    right: -250px;
    top: 0;
    width: 250px;
    height: 100vh;
    padding: 2rem 1.5rem;
    background-color: #fff; */
  }
}
@media (max-width: 991.98px) {
  .topnav {
    padding: 0rem 2rem;
  }
  .topnav .nav {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .topnav {
    padding: 0rem 1rem;
  }
}




.topnav .rnav {
  display: none;
  justify-content: flex-end;
  align-items: center;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 1);
  padding: 0;
  margin: 0;
}
@media (max-width: 991.98px) {
  .topnav .rnav {
    display: flex;
  }
}
.topnav .rnav > div {
  padding: 0 0.5rem;
}
.topnav .rnav > div:last-child {
  padding: 0 0 0 0.5rem;
}
.topnav .rnav > div a {
  color: rgba(255, 255, 255, 0.6);
}
.topnav .rnav > div a:hover {
  color: #a9ebff;
}
.topnav .rnav > div button {
  font-size: 1.2rem;
  font-weight: 100;
  color: #fff;
  background-color: transparent;
  border: solid transparent;
}

.topnav_sub {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
}

.nav_side_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 2000;
}
.nav_side_bg.active {
  display: block;
}
.nav_side {
  position: fixed;
  display: flex;
  padding: 0 2.5rem;
  top: 0;
  right: -400px;
  width: 350px;
  height: 100vh;
  background: #fff;
  transition: all 0.3s ease-in-out;
  z-index: 2001;
}
.nav_side.active {
  right: 0;
}
.nav_side .nav_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.nav_side .logo {
  padding: 1rem 0;
  margin: 0;
}
.nav_side .logo img {
  transform: scale(0.8);
}
.nav_side .mem {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.3rem;
  margin: 0;
  padding: 0.5rem 1rem;
  background: #f4f4f5;
}
.nav_side .mem div {
  padding: 0;
  margin: 0;
}
.nav_side .mem div.tt {
  font-family: "Pretendard", "GmarketSansMedium", system-ui, -apple-system,
    "Noto Sans", sans-serif;
  font-size: 0.7rem;
  color: #222;
  padding-top: 0.5rem;
}
.nav_side .mem a {
  display: inline-block;
  font-family: "Roboto", "Pretendard", system-ui, -apple-system, "Noto Sans",
    sans-serif;
  font-size: 0.65rem;
  color: #222;
  padding: 0;
  margin: 0;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}
.nav_side .mem a + a {
  padding-left: 0.4rem;
}
.nav_side .mem a span {
  display: inline-block;
  width: 10px;
  color: #a3cce5;
  text-align: center;
  padding-right: 0.2rem;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}
.nav_side .mem a:hover,
.nav_side .mem a:hover span {
  color: #0987d0;
}
.nav_side .mem_full {
  width: 100%;
  text-align: center;
  margin: 0.2rem 0 0 0;
}
.nav_side .mem_full a {
  display: block;
  font-family: "Roboto", "Pretendard", system-ui, -apple-system, "Noto Sans",
    sans-serif;
  font-size: 0.7rem;
  color: #fff;
  background: #071b64;
  padding: 0.4rem 0;
}
.nav_side .mem_full a:hover {
  color: #ffee57;
  background: #051652;
}
.nav_side .menu_wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: 4px solid var(--bs-primary);
  padding: 0 !important;
  margin: 0;
}
.nav_side .menu_wrap .menu_item{
  padding: 0;
  margin: 0;
  border-bottom: 1px solid var(--bs-gray-200);
}
.nav_side .menu_wrap .menu {
  position: relative;
  padding: 0.7rem 1rem;
  width: 100%;
  font-family: "Jost", "GmarketSansMedium";
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--bs-gray-700);
  text-align: left;
  border: none;
  background: none;
}
.nav_side .menu_wrap .menu .arrow {
  position: absolute;
  right: 10px;
  top: 35%;
  font-size: .8rem;
  color: var(--bs-gray-500);
  transition: all .2s;
}
.nav_side .menu_wrap .menu.active .arrow {
  color: var(--bs-primary);
  /* transform: rotate(180deg); */
  transform: scaleY(-1);
  transition-duration: .3s;
}
.nav_side .menu_wrap .menu:hover {
  color: var(--bs-primary);
  background-color: var(--bs-gray-100);
}
.nav_side .menu_wrap .submenu {
  position: relative;
  width: 100%;
  height: 0px;
  overflow: hidden;
  padding-left: 1rem;
  transition: all 0.3s ease-in-out;
}
.nav_side .menu_wrap .submenu a {
  position: relative;
  display: block;
  font-family: "GmarketSansMedium";
  font-size: 0.85rem;
  padding: 0.5rem 0;
}
.nav_side .menu_wrap .submenu a:hover {
  color: #004ab9;
}
.nav_side .menu_wrap .submenu.active {
  height: auto;
  overflow: auto;
  margin: .5rem 0 1.5rem 0;
}
.nav_side .tel_wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding: 1rem 0 0 0;
  margin-top: 2rem;
  font-size: 0.8rem;
  font-family: "Jost", system-ui, -apple-system, "Noto Sans", sans-serif;
}
.nav_side .tel_wrap h2 {
  font-family: "Pretendard", "SCoreDream", system-ui, -apple-system, "Noto Sans",
    sans-serif;
  font-size: 0.95rem;
  color: #fff;
  text-align: center;
  padding: 0.5rem 0;
  background-color: #132876;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
}
.nav_side .tel_wrap .cs {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  /* gap: 1rem; */
  padding: 0;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-family: "Jost", system-ui, -apple-system, "Noto Sans", sans-serif;
  word-break: keep-all;
  word-wrap: break-word;
}
.nav_side .tel_wrap .cs .tt {
  min-width: 45px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-size: 0.75rem;
  color: #1937a0;
  padding-top: .2rem;
}
.nav_side .tel_wrap .cs .tel {
  font-family: "Jost", sans-serif !important;
  font-size: 0.9rem;
  letter-spacing: 0;
}
@media (max-width: 767.98px) {
  .nav_side {
    padding: 0 1.2rem;
    width: 300px;
  }
  .nav_side .logo img {
    transform: scale(0.8);
  }
  .nav_side .menu_wrap {
    padding: 1rem 0 0 0;
  }
  .nav_side .menu_wrap .menu {
    font-size: 1rem;
  }
  .nav_side .mem a,
  .nav_side .mem_full a {
    font-size: 0.6rem;
  }
}

footer {
  width: 100%;
  display: flex;
  padding: 0;
  margin: 0;
}
footer .footer_wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0px;
  margin: 0;
}
footer .footer_wrap .menu {
  display: flex;
  padding: .5rem 5rem;
  margin: 0;
  background-color: var(--bs-primary);
  transition: all 0.2s ease;
}
footer .footer_wrap .menu > div {
  padding: 0 2rem 0 0;
}
footer .footer_wrap .menu > div a {
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--bs-white);
}
footer .footer_wrap .menu > div a.p {
  /* color: #313131; */
}
footer .footer_wrap .menu > div a:hover {
  color: #0a4cbe;
}
footer .footer_wrap .company {
  padding: 1.5rem 5rem;
  margin: 0;
  transition: all 0.2s ease;
}
footer .footer_wrap .company .name {
  font-family: "Pretendard", "SCoreDream", system-ui, -apple-system, "Noto Sans",
    sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #464646;
  padding-bottom: 0.5rem;
}
footer .footer_wrap .company .info {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  font-family: "Pretendard", "SCoreDream", system-ui, -apple-system, "Noto Sans",
    sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: #636363;
}
footer .footer_wrap .company .info > div {
  padding: 0 2rem 0 0;
  line-height: 1.3;
  word-break: keep-all;
  word-wrap: break-word;
}
footer .footer_wrap .company .info span {
  font-weight: 500;
  color: #7c7c7c;
  padding-right: 5px;
}
@media (max-width: 991.98px) {
  footer .footer_wrap .menu {
    padding: 1rem 2.5rem;
  }
  footer .footer_wrap .company {
    padding: 1.5rem 2.5rem;
  }
}
@media (max-width: 767.98px) {
  footer {
    padding: 0 0 3rem 0;
  }
  footer .footer_wrap .menu {
    padding: 1rem 0.5rem;
    justify-content: center !important;
    flex-wrap: wrap;
  }
  footer .footer_wrap .menu > div {
    padding: 0 0.5rem;
  }
  footer .footer_wrap .company {
    padding: 1.5rem 0.5rem;
    text-align: center;
  }
  footer .footer_wrap .company .info {
    padding: 1rem 0;
    justify-content: center !important;
  }
  footer .footer_wrap .company .info > div {
    width: 100%;
    padding: 0.15rem 0;
  }
}

.page-top {
  color: #fff;
  background-color: #000;
}

.help_top {
  font-size: 0.75rem;
  color: #e68b30;
  padding-bottom: 10px;
}
.help_right {
  font-size: 0.75rem;
  color: #e68b30;
  padding-left: 10px;
}

.cate_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 2rem;
  margin: 0;
  width: 100%;
  background-color: #f4f4f4;
  border-radius: .8rem;
}
.cate_wrap a{
  padding: .5rem 2rem;
  margin: 0;
  font-size: .9rem;
  background-color: #fff;
  border: 1px solid #d8d8d8;
  border-radius: .5rem;
}
.cate_wrap a:hover{
  border: 1px solid var(--bs-primary);
}
.cate_wrap a.active{
  color: var(--bs-white);
  background: var(--bs-primary);
  border: 1px solid var(--bs-primary);
}
@media (max-width: 767.98px) {
  .cate_wrap {
    justify-content: center;
    gap: .5rem;
    padding: .5rem;
  }
  .cate_wrap a{
    padding: .5rem 1.2rem;
    font-size: .7rem;
  }
}

.search_wrap {
  padding: 1.5rem;
  margin: 0 auto;
  width: 100%;
  background-color: #f4f4f4;
  border-radius: .8rem;
  text-align: center;
}
.search_wrap .box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  margin: 0;
  padding: 0;
}
.search_wrap .box li {
  padding: 0;
  margin: 0;
}
.search_wrap input{
  width: 35vw;
  height: 40px;
  font-size: 1rem;
  color: #797979;
  padding: .5rem 1.5rem;
  border: 1px solid #d8d8d8;
  border-radius: 2rem;
}
.search_wrap select {
  height: 40px;
  font-size: 1rem;
  color: #797979;
  padding: .5rem  3rem .5rem 1.5rem;
  border: 1px solid #d8d8d8;
  border-radius: 2rem;
}
.search_wrap .bt_search{
  height: 40px;
  font-size: 1rem;
  color: var(--bs-primary);
  padding: .5rem  1.5rem;
  background: #fff;
  border: 1px solid var(--bs-primary);
  border-radius: 2rem;
}
.search_wrap .bt_search:hover{
  color: #fff;
  background: var(--bs-primary);
  border: 1px solid var(--bs-primary);
}
@media (max-width: 767.98px) {
  .search_wrap {
    padding: 1rem .5rem;
  }
  .search_wrap .box {
    gap: .3rem;
  }
  .search_wrap input,
  .search_wrap .bt_search{
    font-size: .8rem;
    padding: .5rem 1rem;
  }
  .search_wrap select{
    font-size: .8rem;
    padding: .5rem 2rem .5rem 1rem;

  }
}


.search_total{
  padding: 0 0 0 .5rem;
  margin: 1rem 0 0 0;
  font-size: .8rem;
  vertical-align: bottom;
}
.search_total strong{
  font-size: .85rem;
  color: var(--bs-primary);
  padding-left: .5rem;
}

.form_wrap {
  padding: 0;
  margin: 0;
  width: 100%;
  border-top: 2px solid var(--bs-primary);
}
.form_wrap > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.6rem 0;
  margin: 0;
  border-bottom: 1px solid #eaeef3;
}
.form_wrap .title {
  width: 15%;
  min-width: 100px;
  padding: 0 0 0 1.5rem;
  margin: 0;
  font-size: 0.9rem;
  font-weight: bold;
  transition: all 0.2s ease;
}
.form_wrap .value {
  width: 85%;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}
.form_wrap input[type="text"],
.form_wrap input[type="password"],
.form_wrap input[type="number"],
.form_wrap textarea {
  width: 100%;
  padding: 0.7rem 0.5rem;
  /* background: #f5f5f5; */
  background: #eeeeee;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.form_wrap select {
  padding: 0.7rem 0.5rem;
  /* background: #f5f5f5; */
  background: #eeeeee;
  border: 1px solid transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 16px 12px;
  transition: all 0.2s ease;
}
.form_wrap select:focus,
.form_wrap input:focus,
.form_wrap textarea:focus {
  background: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.025rem rgba(13, 110, 253, 0.5);
}
.form_wrap span {
  font-family: "Pretendard", "SCoreDream", system-ui, -apple-system, "Noto Sans",
    sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  color: #f47420;
}
.form_wrap .value .name {
  width: 30%;
  max-width: 150px;
}
.form_wrap .value .tel {
  width: 30%;
  max-width: 150px;
  ime-mode: disabled;
}
.form_wrap .value .email {
  width: 30%;
  max-width: 150px;
  ime-mode: disabled;
}
@media (min-width: 1400px) {
  .form_wrap .title {
    width: 15%;
  }
  .form_wrap .value {
    width: 85%;
  }
}
@media (max-width: 767.98px) {
  .form_wrap .title {
    width: 100%;
    padding: 0 0 0.5rem 0;
  }
  .form_wrap .value {
    width: 100%;
  }
  .form_wrap .value .name {
    width: 100%;
    max-width: 100%;
  }
  .form_wrap .value .tel {
    width: 100%;
    max-width: 30%;
  }
  .form_wrap .value .email {
    width: 45%;
    max-width: 45%;
  }
}
.form_span {
  font-size: 0.8rem;
}
.form_span span {
  font-family: "Pretendard", "SCoreDream", system-ui, -apple-system, "Noto Sans",
    sans-serif;
  font-weight: 400;
  color: #f47420;
}
.form_info {
  display: flex;
  width: 100%;
  padding: 0;
  margin: 0;
}
.form_info .tt {
  font-family: "OneMobileTitle", "SCoreDream", system-ui, -apple-system,
    "Noto Sans", sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
}

.no_data {
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 0;
  font-size: 0.8rem;
  text-align: center;
  border-bottom: 1px solid #f1f1f1;
}

.board_list_photo {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1.5rem;
  border-top: 2px solid var(--bs-primary);
  margin: 1rem 0 0 0;
  padding: 1rem 0;
}
.board_list_photo .photo_item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.5rem;
  width: 25%;
  padding: 0;
  margin: 0;
}
.board_list_photo .photo_item .pic {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
}
.board_list_photo .photo_item .pic img {
  width: 100%;
}
.board_list_photo .photo_item .subject {
  font-family: "Pretendard", "SCoreDream", system-ui, -apple-system, "Noto Sans",
    sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  text-align: center;
}


.board_view_wrap {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  width: 100%;
  border-top: 2px solid var(--bs-primary);
  border-bottom: 1px solid #ecf1f8;
}
.board_view_wrap div {
  padding: 1rem;
}
.board_view_wrap .title {
  font-family: "Pretendard", "SCoreDream", system-ui, -apple-system, "Noto Sans",
    sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: #000;
  padding: 1.5rem 1rem;
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #c4c4c4;
}
.board_view_wrap .info {
  font-size: 0.8rem;
  color: #616161;
  background: #f8f8f8;
  padding: 0.8rem 1rem;
}
.board_view_wrap .info span {
  display: inline-block;
}
.board_view_wrap .info span.blank {
  padding: 0 0.5rem;
}
.board_view_wrap .con {
  font-family: "Pretendard", "SCoreDream", system-ui, -apple-system, "Noto Sans",
    sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: #000 !important;
  letter-spacing: 0;
  word-break: keep-all;
  word-wrap: break-word;
  padding: 2.5rem 1rem;
}
.board_view_wrap .info .falink .fa-link{
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  color: var(--bs-primary);
  padding-right: .5rem;
}
.board_view_wrap .info .falink:hover {
  color: var(--bs-primary);
}
@media (max-width: 767.98px) {
  .board_view_wrap .con {
    padding: 2.5rem 1rem !important;
  }
}

#DivContents {
  width: 100%;
  table-layout: fixed;
  box-sizing: border-box;
  font-size: 0.95rem;
  word-break: keep-all;
  word-wrap: break-word;
}
#DivContents p {
  padding: 5px 0px;
  margin: 0px;
  font-size: 0.95rem;
}
#DivContents td {
  font-size: 0.95rem;
}
#DivContents img {
  /*max-width: 1000px;*/
  max-width: 100%;
}
@media (max-width: 768px) {
  #DivContents {
    padding: 1rem 0;
    font-size: 1.15rem;
  }
}
.page_contents {
  width: 100%;
  border-top: 2px solid var(--bs-primary);
  padding: 2rem 0;
  margin: 0;
  font-size: 0.85rem !important;
  color: #000;
  word-break: keep-all;
  word-wrap: break-word;
}
.page_contents p,
.page_contents td {
  font-size: 0.85rem !important;
}

.table {
  font-size: 0.8rem;
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid var(--bs-primary);
}
.table > :not(:first-child),
.dataTable-table > :not(:first-child) {
  border-top: none;
}
.table > thead {
  font-size: 0.8rem;
  letter-spacing: -1px;
}
.table > thead td {
  padding: 1rem 0;
}
.table_center tr,
.table_center td {
  text-align: center;
  padding: 1rem 0.5rem;
  font-size: 0.9rem;
  letter-spacing: -1px;
}
@media (max-width: 767.98px) {
  .table-responsive table {
    width: 700px;
  }
}

.td_no{ width: 80px !important; }
.td_name{ width: 130px !important; }
.td_date{ width: 100px !important; }
.td_hit{ width: 100px !important; }
.td_answer{ width: 80px !important; }
.table .name{ font-size: 0.8rem !important;}
.number {
  font-family: "Jost", sans-serif !important;
  font-size: 0.8rem !important;
  letter-spacing: 0px !important;
}

.icon_notice {
  display: inline-block;
  color: #ffffff;
  font-size: 1em;
  padding: 0px;
  width: 20px;
  height: 20px;
  background-color: #f47420;
  border: 0px;
  border-radius: 100%;
}

.bt_search {
  display: inline-block;
  color: #fff;
  padding: 0.45rem 0.5rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.2;
  background-color: #6d6d6d;
  border: 1px solid #525252;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.bt_search:focus,
.bt_search:hover {
  background-color: #37aef3;
  border-color: #2d98d6;
  outline: 0;
  box-shadow: 0 0 0 0.025rem rgba(13, 110, 253, 0.25);
}

.bt_default {
  display: inline-block;
  color: #000;
  padding: 0.45rem 0.5rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.2;
  background-color: #f3f3f3;
  border: 1px solid #bbb9b9;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.bt_default:focus,
.bt_default:hover {
  color: #1a5fc7;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.025rem rgba(13, 110, 253, 0.25);
}

.bt_blue {
  display: inline-block;
  color: #fff;
  padding: 0.45rem 0.5rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.2;
  background-color: #1a5fc7;
  border: 1px solid #1a5fc7;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.bt_blue:focus,
.bt_blue:hover {
  color: #fff;
  background-color: #1553b1;
  border-color: #1553b1;
  outline: 0;
  box-shadow: 0 0 0 0.025rem rgba(13, 110, 253, 0.25);
}

.bt_white {
  display: inline-block;
  color: #414141;
  padding: 0.8rem 2rem;
  font-family: "Pretendard", "SCoreDream", system-ui, -apple-system, "Noto Sans",
    sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1.2;
  background-color: #fff;
  border: 1px solid #cccccc;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.bt_white:focus,
.bt_white:hover {
  color: #000;
  background-color: #fff;
  border: 1px solid #696969;
  outline: 0;
}

.bt_dark {
  display: inline-block;
  color: #e4e4e4;
  padding: 0.8rem 2rem;
  font-family: "Pretendard", "SCoreDream", system-ui, -apple-system, "Noto Sans",
    sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1.2;
  background-color: #424242;
  border: 1px solid #424242;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.bt_dark:focus,
.bt_dark:hover {
  color: #fff;
  background-color: #303030;
  border: 1px solid #252525;
  outline: 0;
}

#vod_wrap {
  float: left;
  width: 100%;
  margin: auto;
  padding: 0px 0px 30px 0px;
  text-align: center;
}
#vod_wrap .video {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 0;
  padding-bottom: 675px;
  margin: auto;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 767px) {
  #vod_wrap .video {
    padding-bottom: 56.25%;
  }
}
#vod_wrap_full {
  float: left;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
#vod_wrap iframe,
#vod_wrap object,
#vod_wrap embed,
#vod_wrap_full iframe,
#vod_wrap_full object,
#vod_wrap_full embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
}
#vod_wrap .vod_play,
#vod_wrap_full .vod_play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/*@-ms-viewport{width:device-width}*/
.visible-lg,
.visible-md,
.visible-sm,
.visible-xs {
  display: none !important;
}
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  td.visible-xs,
  th.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  td.visible-sm,
  th.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table;
  }
  tr.visible-md {
    display: table-row !important;
  }
  td.visible-md,
  th.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  td.visible-lg,
  th.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table;
  }
  tr.visible-print {
    display: table-row !important;
  }
  td.visible-print,
  th.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}


.mt-3{
  margin-top: 3rem !important;
}
.mt-5{
  margin-top: 5rem !important;
}