

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: #a1d1a8;
  outline: 0;
  box-shadow: 0 0 0 0.04rem rgba(26, 148, 15, 0.25);
}
input[type="checkbox"]:checked {
  accent-color: #079654;
  background-color: #079654 !important;
  color: #ffffff !important;
}

.no_scroll{
  overflow: hidden;
}

header {
  position: relative;
}
.nav-fixed .topnav {
  z-index: 1039;
}
.topnav_bg {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100vw;
  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 {
  max-width: 90%;
  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: 1.05rem;
  color: #fff;
}
.topnav .nav .nav_wrap .nav_item {
  /* min-width: 120px; */
  text-align: center;
  padding: 0 3rem;
}
.topnav .nav .nav_wrap .nav_item > a {
  position: relative;
  display: block;
  width: 100%;
  height: 90px;
  font-family: "GmarketSansMedium";
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  line-height: 90px;
}
.topnav .nav .nav_wrap .nav_item > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  transition: all 0.3s ease-out;
}
.topnav .nav .nav_item.active > a {
  font-weight: 700 !important;
  color: #1c5c41 !important;
}
.topnav .nav .nav_item.active > a::after {
  bottom: 3px;
  width: 100%;
  background: #1c5c41;
  transition-duration: 0.2s;
  transition-delay: 0.3s;
}
.topnav .nav .nav_wrap .sub {
  position: absolute;
  display: flex;
  gap: 0;
  top: 98%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
  margin: 0;
  text-align: left;
  width: 100vw;
  height: 0px !important;
  overflow: hidden;
  z-index: 1040;
  background-color: #fff;
}
.topnav .nav .nav_wrap .sub.active {
  height: auto !important;
  overflow: auto;
  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_wrap .sub .left{
  width: 36%;
  background-color: #edf7f0;
  padding: 2rem 2rem 2rem 5%;
  margin: 0;
  display: flex;
  /* justify-content: flex-end; */
  border-top: 1px solid #f3f3f3;
}
.topnav .nav .nav_wrap .sub .left h1{
  font-family: "GmarketSansMedium";
  font-size: 2.2rem;
  color: #19523a;
}
.topnav .nav .nav_wrap .sub .left h1 span{
  font-size: .95rem;
}
.topnav .nav .nav_wrap .sub .left img{
  padding: 1rem 0 .5rem 0;
  max-width: 60%;
}
.topnav .nav .nav_wrap .sub .left p{
  /* font-family: "GmarketSansMedium"; */
  font-size: .85rem;
  color: #585858;
}
.topnav .nav .nav_wrap .sub .right{
  width: 65%;
  display: flex;  
  gap: 3rem;
  padding: 2rem 2rem 5rem 5%;
  margin: 0;
  border-top: 1px solid #f3f3f3;
}
.topnav .nav .nav_wrap .sub .right>div{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: .5rem;
}
.topnav .nav .nav_wrap .sub .right strong{
  display: block;
  width: 180px;
  max-width: 180px;
  font-family: "GmarketSansMedium";
  font-size: 1.05rem;
  color: #111;
  text-align: center;
  padding: .2rem 1rem;
  margin: 0 0 .5rem 0;
  border-bottom: 1px dashed  #a2c2b5;
}
.topnav .nav .nav_wrap .right a {
  position: relative;
  font-family: "GmarketSansMedium";
  font-size: 0.9rem !important;
  color: #585858;
  letter-spacing: -0.5px;
  line-height: 20px;
  padding: 0 0 0 .8rem;
  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;
}
.topnav .nav .nav_wrap .right a:hover {
  color: rgb(12, 116, 73);
  padding: 0 0 0 1.1rem;
}
.topnav .nav .nav_wrap .right a::before{
  position: absolute;
  content: '·';
  left: 0;
  top: 0;
  font-weight: 600;
  font-size: 1.5rem;
  color: #309b6e;
} 
.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: 1.2rem;
  }
  .topnav .nav .nav_wrap .sub a {
    font-size: 0.9rem;
  }
}
@media (min-width: 1200px) {
  .topnav {
    padding: 0rem 5rem;
  }
}
@media (max-width: 1300px) {
  .topnav .nav .nav_wrap .nav_item {
    padding: 0 1.5rem;
  }
  .topnav .nav .nav_wrap .nav_item > a {
    font-size: 1.2rem;
  }
}
@media (max-width: 1050px) {
  .topnav .nav {
    display: none;
    /* 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;
  }
}
@media (max-width: 767.98px) {
  .topnav {
    padding: 0rem 1rem;
  }
}




.topnav .rnav {
  display: flex;
  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;
}
.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.8);
}
.topnav .rnav > div a:hover {
  color: #0a5308;
}
.topnav .rnav > div button {
  font-size: 1.2rem;
  font-weight: 100;
  color: #fff;
  background-color: transparent;
  border: solid transparent;
}
.topnav .rnav .mem{
  display: flex !important;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .topnav .rnav .mem{
    display: none !important;
  }
}


.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: .5rem 1.5rem 2.5rem 1.5rem !important;
  top: 0;
  right: -350px;
  width: 300px;
  height: 100vh;
  overflow-y: auto;
  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;
  width: 100%;
}
.nav_side .logo {
  padding: 0 0 .5rem 0;
}
.nav_side .logo img {
  max-width: 100%
}
.nav_side .mem_box{
  width: 100%;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  padding: 1rem 0;
  margin: 0;
}
.nav_side .mem_info{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0 0 1rem 0;
}
.nav_side .mem_info .pic{
  width: 60px;
  padding: 0;
  margin: 0;
}
.nav_side .mem_info .pic span{
  width: 40px;
  height: 40px;
  font-size: .8rem;
  color: #464947;
  padding: .9rem 1rem;
  background: #f3f3f3;
  border-radius: 100%;
  overflow: hidden;
}
.nav_side .mem_info .tt{
  font-family: "GmarketSansMedium", "Roboto", system-ui, -apple-system, "Noto Sans", sans-serif;
  font-size: .7rem;
}
.nav_side .mem_info .tt strong{
  font-size: .9rem;
}
.nav_side .mem {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 0.3rem;
  margin: 0;
  padding: 0.5rem 0;
  background-color: #fff;
  border: 1px dashed #aebeb7;
  border-radius: 2rem;
}
.nav_side .mem div {
  width: 100%;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  padding: 0;
  margin: 0;
}
.nav_side .mem div.tt {
  display: block;
  font-family: "Pretendard", "GmarketSansMedium", system-ui, -apple-system,
    "Noto Sans", sans-serif;
  font-size: 0.7rem;
  color: #222;
  text-align: center;
	word-break:keep-all;
	word-wrap:break-word;
  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: #378061;
  text-align: center;
  padding:0 0.5rem 0 0 !important;
  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: #1c5c41;
}
.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: #1c5c41;
}
.nav_side .menu_wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  /* border-top: 1px solid #222222;
	border-bottom: 1px solid #222222; */
  padding: 2rem 0 0 0;
}
.nav_side .menu_wrap .menu {
  padding: 0.5rem 0;
  width: 100%;
  font-family: "GmarketSansMedium";
  font-size: 1.05rem;
  text-align: left;
  border: none;
  background: none;
}
.nav_side .menu_wrap .menu:hover {
  color: #1f7e56;
}
.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>div {
  padding: .6rem 0 1.5rem 0;
}
.nav_side .menu_wrap .submenu h1 {
  font-family: "GmarketSansMedium";
  font-size: .98rem;
  font-weight: 600;
  color: #25684c;
  padding: 0;
}
.nav_side .menu_wrap .submenu a {
  position: relative;
  display: block;
  font-family: "GmarketSansMedium";
  font-size: 0.85rem;
  padding: 0.3rem 0;
}
.nav_side .menu_wrap .submenu a:hover {
  color: #1c5c41;
}
.nav_side .menu_wrap .submenu.active {
  height: auto;
  overflow: auto;
  margin-bottom: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #c5cac8;
}
.nav_side .menu_wrap .menu.active {
  color: #1c5c41;
}
.nav_side .tel_wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding: 1rem 0 10rem 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.85rem;
  color: #fff;
  text-align: center;
  padding: 0.5rem 0;
  background-color: #1c5c41;
  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.8rem;
  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: 40px;
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-size: 0.8rem;
  color: #1c5c41;
}
.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: 250px;
  }
  .nav_side .logo img {
    transform: scale(0.85);
    transform-origin: left;
  }
  .nav_side .menu_wrap .menu {
    font-size: 1.1rem;
  }
}

footer {
  display: flex;
  width: 100%;
  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: #eeeeee;
  /* border-top: 1px solid #e4e4e4; */
  /* border-bottom: 1px solid #e4e4e4; */
  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: #414141;
}
footer .footer_wrap .menu > div a.p {
  color: #313131;
}
footer .footer_wrap .menu > div a:hover {
  color: #06926f;
}
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;
}
footer .info_wrap{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  width: 100%;
	margin: 2rem 0;
	padding: 0 5rem;
}
footer .logo_list{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: .5rem;
  padding: 0;
  margin: 0;
  order: 2;
}
footer .logo_list img{
  width: 100%;
  max-width: 135px;
}
footer .sns{
  display: flex;
  padding: 0;
  margin: 0;
  order: 3;
}
footer .sns a{
  padding: 0;
  margin: 0;
  font-size: .9rem;
  color: #fff;
  background-color: #4676ed;
  border-radius: 17.5px;
  width: 35px;
  height: 35px;
  overflow: hidden;
  transition: all .2s;
}
footer .sns img{
  width: 35px;
}
footer .sns span{
  padding-left: 1rem;
}
footer .sns a:hover{
  padding: 0 1.5rem 0 .5rem;
  width: 150px;
}
footer .finfo{
	display: flex;
  flex-direction: column;
	padding: 0;
	margin: 0;
	font-size: .75rem;
  order: 1;
}
footer .finfo ul{
	display: flex;
	flex-wrap: wrap;
  justify-content: flex-start;
	gap: 0 2rem;
	padding: 0;
	margin: 0;
}
footer .finfo ul li{
	padding: .2rem 0;
	margin: 0;
  text-wrap: balance;
  word-break: keep-all;
  word-wrap: break-word;
}
footer .finfo ul li.t{
	font-weight: 700;
}
@media (max-width: 991.98px) {
  footer .footer_wrap .menu {
    padding: 1rem 2.5rem;
  }
  footer .footer_wrap .company {
    padding: 1.5rem 2.5rem;
  }
  footer .info_wrap{
    flex-direction: column;
  }
  footer .sns{
    order: 1;
  }
  footer .logo_list{
    order: 2;
  }
  footer .finfo{
    order: 3;
  }
}
@media (max-width: 767.98px) {
  footer .footer_wrap .menu {
    padding: .5rem 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;
  }
  footer .finfo ul{
    flex-direction: column;
    margin:.5rem 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;
}

.search_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0;
  margin: 0;
}
.search_wrap .total{
  padding: 0;
  margin: 0;
  font-size: .7rem;
  vertical-align: bottom;
}
.search_wrap .total strong{
  font-size: .75rem;
  color: #0e793a;
}
.search_wrap .box {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin: 0;
}
.search_wrap .box li {
  padding: 2px 2px;
  margin: 0;
}

.form_wrap {
  padding: 0;
  margin: 0;
  width: 100%;
  border-top: 2px solid #004ab9;
}
.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", 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: 2rem 0 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: 0;
  border-top: 2px solid #1c5c41;
  margin: 0;
  padding: 1rem 0;
}
.board_list_photo .photo_item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.5rem;
  width: 33.33%;
  padding: 1rem 1rem 2rem 1rem;
  margin: 0;
}
.board_list_photo .photo_item .pic {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1.6/1;
  object-fit: cover;
  overflow: hidden;
  transition: all .2s;
}
.board_list_photo .photo_item .pic img {
  width: 100%;
  transition: all .2s;
}
.board_list_photo .photo_item:hover .pic{
  border-radius: 2rem 0 0 0;
}
.board_list_photo .photo_item:hover .pic .img {
  transform: scale(1.15);
  filter: grayscale(80%);
}
.board_list_photo .photo_item .play{
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  z-index: 10;
}
.board_list_photo .photo_item .play img{
  max-width: 0;
}
.board_list_photo .photo_item:hover .play img{  
  max-width: 18%;
}
.board_list_photo .photo_item .subject {
  font-family: "Pretendard", system-ui, -apple-system, "Noto Sans", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
}
@media (max-width: 991.98px) {
  .board_list_photo .photo_item {
    gap: 0.5rem;
    width: 50%;
  }
}
@media (max-width: 767.98px) {
  .board_list_photo .photo_item {
    gap: 0.5rem;
    width: 100%;
    padding: 1rem .5rem;
  }
  .board_list_photo .photo_item .subject {
    font-size: 1rem;
  }
}
@media (max-width: 500px) {
  .board_list_photo .photo_item {
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 0;
  }
}

.board_view_wrap {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  width: 100%;
  border-top: 2px solid #1c5c41;
  border-bottom: 1px solid #ecf1f8;
}
.board_view_wrap div {
  padding: 1rem;
}
.board_view_wrap .title {
  font-family: "Pretendard", 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: #f0f0f0;
  padding: 0.8rem 1rem;
}
.board_view_wrap .info span {
  display: inline-block;
  padding: 0 0.5rem;
  cursor: pointer;
}
.board_view_wrap .con {
  font-family: "Pretendard", system-ui, -apple-system, "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #000 !important;
  letter-spacing: 0;
  word-break: keep-all;
  word-wrap: break-word;
  padding: 2.5rem 1rem;
}
@media (max-width: 767.98px) {
  .board_view_wrap .con {
    padding: 1.5rem 1rem;
  }
}

#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: 0;
    font-size: 1.15rem;
  }
}
.page_contents {
  width: 100%;
  border-top: 2px solid #1c5c41;
  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 #1c5c41;
}
.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;
  font-family: "Pretendard", system-ui, -apple-system, "Noto Sans", sans-serif;
  font-size: 0.8rem;
  letter-spacing: -1px;
}
.table_center tr,
.table_center td {
  text-align: center;
  padding: 1rem 0.5rem;
  font-family: "Pretendard", system-ui, -apple-system, "Noto Sans", sans-serif;
  font-size: 1rem;
  letter-spacing: -1px;
}
@media (max-width: 767.98px) {
  .table-responsive table {
    width: 700px;
  }
}

.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: 25px;
  height: 25px;
  background-color: #59c066;
  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;
  }
}



.mt50{ margin-top: 50px; }
.mt100{ margin-top: 100px; }