@charset "UTF-8";
html {
  font-size: 16px;
}
@media only screen and (max-width: 1439px) {
  html {
    font-size: 1.111vw;
  }
}
@media only screen and (max-width: 1023px) {
  html {
    font-size: 2.083vw;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 4.44vw;
  }
}

body, table, input, textarea, select, button {
  font-family: "Pretendard", sans-serif;
  font-size: 1rem;
  font-weight: 300;
}

.container {
  width: 90rem;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin: 0 auto;
}
@media only screen and (max-width: 1023px) {
  .container {
    width: 100%;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

header {
  height: 5rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #FFFFFF;
  background-size: 100% 6.25rem;
  z-index: 99;
}
@media only screen and (max-width: 1023px) {
  header {
    height: 6.25rem;
  }
}
@media only screen and (max-width: 767px) {
  header {
    height: 4.5rem;
  }
}
header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}
@media only screen and (max-width: 1023px) {
  header .container {
    position: relative;
  }
  header .container:has(.open) {
    height: 6.25rem;
    background-color: #FFFFFF;
    position: absolute;
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  header .container:has(.open) {
    width: 100%;
    height: 4.5rem;
    background-color: #FFFFFF;
  }
}
header .container .logo {
  position: relative;
  z-index: 3;
  font-size: 0;
}
header .container .logo a {
  display: block;
}
header .container .logo a img {
  display: block;
  height: 2.5rem;
}
header .container #menu_m {
  display: none;
}
@media only screen and (max-width: 1023px) {
  header .container #menu_m {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0;
    padding: 0.4688rem 0.3125rem;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  header .container #menu_m:before, header .container #menu_m .middle, header .container #menu_m:after {
    content: "";
    width: 100%;
    height: 0.1875rem;
    background: #111111;
    position: relative;
  }
  header .container #menu_m .middle {
    margin: 0.3125rem 0;
  }
  header .container #menu_m:before {
    margin-bottom: 0.3125rem;
  }
  header .container #menu_m:after {
    margin-top: 0.3125rem;
  }
  header .container #menu_m.open {
    z-index: 5;
  }
  header .container #menu_m.open:before {
    box-shadow: none;
    transform: rotate(45deg);
    transform-origin: left top;
    width: 2rem;
    margin-bottom: 0;
  }
  header .container #menu_m.open .middle {
    display: none;
  }
  header .container #menu_m.open:after {
    box-shadow: none;
    transform: rotate(-45deg);
    transform-origin: left bottom;
    width: 2rem;
    margin-top: 0;
  }
}
header .container .gnb {
  height: 100%;
}
@media only screen and (max-width: 1023px) {
  header .container .gnb {
    height: auto;
    position: fixed;
    left: 100%;
    width: 80%;
    top: 0;
    padding-top: 6.25rem;
    transition: 0.5s;
  }
  header .container .gnb:before {
    content: "";
    top: 0;
    width: 100%;
    left: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5019607843);
    position: fixed;
    z-index: -1;
  }
  header .container .gnb:after {
    content: "";
    position: absolute;
    left: 2.5rem;
    top: 1.875rem;
    width: 6.5rem;
    height: 2.5rem;
    background: url("/public/img/세종새활용센터로고.svg") no-repeat center center/cover;
  }
  header .container .gnb:has(.open) {
    background: #fff;
    position: absolute;
    top: 0;
    left: 20%;
    display: block;
  }
  header .container .gnb:has(.open):before {
    left: 0;
  }
}
@media only screen and (max-width: 767px) {
  header .container .gnb {
    width: 100%;
    padding-top: 4.5rem;
  }
  header .container .gnb:after {
    content: none;
  }
  header .container .gnb:has(.open) {
    left: 0;
  }
}
header .container .gnb .main_menu {
  display: flex;
  align-items: center;
  height: 100%;
}
header .container .gnb .main_menu::after {
  content: "";
  width: 100%;
  height: 0rem;
  transition: all 0.4s ease-in-out;
  background: rgba(248, 248, 250, 0.95);
  position: absolute;
  top: 5rem;
  left: 0;
}
header .container .gnb .main_menu:hover:after {
  content: "";
  width: 100%;
  height: 16.25rem;
  background: rgba(248, 248, 250, 0.95);
  position: absolute;
  top: 5rem;
  left: 0;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 1023px) {
  header .container .gnb .main_menu:hover:after {
    content: none;
  }
}
@media only screen and (max-width: 1023px) {
  header .container .gnb .main_menu {
    display: block;
    height: calc(100vh - 5rem);
  }
  header .container .gnb .main_menu.open {
    left: auto;
    border-top: 0.0625rem solid #111111;
    z-index: 2;
    background: #fff;
  }
  header .container .gnb .main_menu.open .main_menu_li > a {
    color: var(--font1);
    font-weight: 600;
  }
}
@media only screen and (max-width: 767px) {
  header .container .gnb .main_menu {
    height: calc(100vh - 4.5rem);
  }
  header .container .gnb .main_menu.open {
    width: 100%;
    top: 4.5rem;
  }
}
header .container .gnb .main_menu .main_menu_li {
  position: relative;
  z-index: 2;
  height: 100%;
}
@media only screen and (max-width: 1023px) {
  header .container .gnb .main_menu .main_menu_li {
    height: auto;
  }
  header .container .gnb .main_menu .main_menu_li.pc {
    display: none;
  }
}
header .container .gnb .main_menu .main_menu_li > a {
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.625rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
}
@media only screen and (max-width: 1023px) {
  header .container .gnb .main_menu .main_menu_li > a {
    height: auto;
    width: 100%;
    padding: 1.625rem 2.5rem;
    justify-content: flex-start;
    border-bottom: 0.0625rem solid #E1E1E4;
    font-size: 1.125rem;
    position: relative;
  }
}
@media only screen and (max-width: 767px) {
  header .container .gnb .main_menu .main_menu_li > a {
    padding: 1.25rem;
  }
}
header .container .gnb .main_menu .main_menu_li > a.bttn {
  height: 2.875rem;
  margin-top: 1.0625rem;
  font-size: var(--f8);
}
header .container .gnb .main_menu .main_menu_li > a.bttn.outline {
  border-color: #fff;
  background: none;
}
header .container .gnb .main_menu .main_menu_li:nth-of-type(7) {
  margin-left: 2.5rem;
  margin-right: 1.25rem;
}
header .container .gnb .main_menu .main_menu_li:nth-of-type(7) .bttn {
  margin-right: 0.3125rem;
}
@media only screen and (max-width: 1023px) {
  header .container .gnb .main_menu .main_menu_li:nth-of-type(7) {
    margin-left: 0;
    margin-right: 0;
  }
}
header .container .gnb .main_menu .main_menu_li .icon {
  display: none;
}
header .container .gnb .main_menu .main_menu_li .sub_menu {
  position: absolute;
  width: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.23s ease-in;
}
@media only screen and (max-width: 1023px) {
  header .container .gnb .main_menu .main_menu_li .sub_menu {
    position: relative;
    display: none;
  }
  header .container .gnb .main_menu .main_menu_li .sub_menu + .icon {
    display: block;
    position: absolute;
    top: 1.625rem;
    right: 2.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background: url(../img/open_close.svg) no-repeat center center/contain;
  }
  header .container .gnb .main_menu .main_menu_li .sub_menu.active {
    display: block !important;
    background-color: #F8F8FA;
    opacity: 1;
  }
  header .container .gnb .main_menu .main_menu_li .sub_menu.active + .icon {
    transform: rotate(180deg);
  }
}
@media only screen and (max-width: 767px) {
  header .container .gnb .main_menu .main_menu_li .sub_menu + .icon {
    top: 1.5rem;
    right: 1.875rem;
  }
}
header .container .gnb .main_menu .main_menu_li .sub_menu .sub_menu_li {
  padding-block: 1rem;
}
@media only screen and (max-width: 1023px) {
  header .container .gnb .main_menu .main_menu_li .sub_menu .sub_menu_li {
    padding: 1.125rem 3.125rem;
    border-bottom: 0.0625rem solid #E1E1E4;
  }
}
@media only screen and (max-width: 767px) {
  header .container .gnb .main_menu .main_menu_li .sub_menu .sub_menu_li {
    padding: 0.75rem 1.875rem;
  }
}
header .container .gnb .main_menu .main_menu_li .sub_menu .sub_menu_li:hover {
  background-color: #00AB4E;
  color: #FFFFFF;
}
header .container .gnb .main_menu .main_menu_li .sub_menu .sub_menu_li a {
  display: block;
  text-align: center;
  font-size: var(--f8);
  line-height: var(--l8);
}
@media only screen and (max-width: 1023px) {
  header .container .gnb .main_menu .main_menu_li .sub_menu .sub_menu_li a {
    text-align: left;
    font-size: 1rem;
    line-height: 1.5;
  }
}
header .container .gnb .main_menu:hover .sub_menu {
  display: block;
  opacity: 1;
  pointer-events: visible;
}
@media only screen and (max-width: 1023px) {
  header .container .gnb .main_menu:hover .sub_menu {
    display: none;
  }
}
.sec_subv {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .sec_subv {
    padding-bottom: 1.25rem;
  }
}
.sec_subv .container {
  width: 100%;
  margin-top: 5rem;
  height: 21.875rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  background: #D9D9D9 no-repeat center/cover;
}
@media only screen and (max-width: 1023px) {
  .sec_subv .container {
    height: 15.625rem;
    margin-top: 6.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .sec_subv .container {
    margin-top: 4.5rem;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.sec_subv .container.introduce {
  background: url(/public/img/intro_bg.png) no-repeat top/cover;
}
@media only screen and (max-width: 1023px) {
  .sec_subv .container.introduce {
    background: url(/public/img/intro_bg_t.png) no-repeat center/cover;
  }
}
@media only screen and (max-width: 767px) {
  .sec_subv .container.introduce {
    background: url(/public/img/intro_bg_m.png) no-repeat center/cover;
  }
}
.sec_subv .container.business {
  background: url(/public/img/business_bg.png) no-repeat center/cover;
}
@media only screen and (max-width: 1023px) {
  .sec_subv .container.business {
    background: url(/public/img/business_bg_t.png) no-repeat center/cover;
  }
}
@media only screen and (max-width: 767px) {
  .sec_subv .container.business {
    background: url(/public/img/business_bg_m.png) no-repeat center/cover;
  }
}
.sec_subv .container.board {
  background: url(/public/img/board_bg.png) no-repeat center/cover;
}
@media only screen and (max-width: 1023px) {
  .sec_subv .container.board {
    background: url(/public/img/board_bg_t.png) no-repeat center/cover;
  }
}
@media only screen and (max-width: 767px) {
  .sec_subv .container.board {
    background: url(/public/img/board_bg_m.png) no-repeat center/cover;
  }
}
.sec_subv .container.reserve {
  background: url(/public/img/reserve_bg.png) no-repeat center/cover;
}
@media only screen and (max-width: 1023px) {
  .sec_subv .container.reserve {
    background: url(/public/img/reserve_bg_t.png) no-repeat center/cover;
  }
}
@media only screen and (max-width: 767px) {
  .sec_subv .container.reserve {
    background: url(/public/img/reserve_bg_m.png) no-repeat center/cover;
  }
}
.sec_subv .page_path {
  width: 100%;
  border-block: 0.0625rem solid #E1E1E4;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 1023px) {
  .sec_subv .page_path {
    margin-bottom: 3.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .sec_subv .page_path {
    margin-bottom: 2.5rem;
  }
}
.sec_subv .page_path ul {
  width: 87.5rem;
  height: 5rem;
  margin: auto;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 1.5em;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
}
@media only screen and (max-width: 1023px) {
  .sec_subv .page_path ul {
    width: 90%;
  }
}
@media only screen and (max-width: 767px) {
  .sec_subv .page_path ul {
    display: none;
    gap: 1.25rem;
    font-size: 0.75rem;
  }
}
.sec_subv .page_path ul li {
  position: relative;
}
.sec_subv .page_path ul li:nth-of-type(1) {
  width: 5rem;
  height: 100%;
  background-color: #00AB4E;
}
.sec_subv .page_path ul li:nth-of-type(1) a {
  display: block;
  padding: 1.875rem;
}
.sec_subv .page_path ul li:nth-of-type(1) i {
  display: inline-block;
  width: 1.25rem;
  aspect-ratio: 1;
  background: url(../../../public/img/home.svg) no-repeat center/contain;
}
.sec_subv .page_path ul li:not(:first-of-type) + li:before {
  content: "";
  position: absolute;
  background: url(../img/arrow-right.svg) no-repeat center/contain;
  width: 0.4375rem;
  height: 0.875rem;
  top: 50%;
  right: 100%;
  transform: translate(-100%, -50%);
}
@media only screen and (max-width: 767px) {
  .sec_subv .page_path ul li:not(:first-of-type) + li:before {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.sec_subv .page_title {
  font-size: 2.25rem;
  line-height: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 1023px) {
  .sec_subv .page_title {
    margin-bottom: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .sec_subv .page_title {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 0.625rem;
  }
}
.sec_subv.login {
  height: 9rem;
  padding: 0;
}
.sec_subv.login .container {
  display: none;
}

main.sub {
  padding-bottom: 12.5rem;
}
@media only screen and (max-width: 1023px) {
  main.sub {
    padding-bottom: 5rem;
  }
}
@media only screen and (max-width: 767px) {
  main.sub {
    padding-bottom: 3.75rem;
  }
}
footer {
  background: #303030;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
}
@media only screen and (max-width: 1023px) {
  footer {
    padding: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  footer {
    font-size: 0.875rem;
    padding: 1.875rem 1.25rem;
  }
}
footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 2.5rem;
  padding-bottom: 5rem;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  footer .container {
    flex-direction: column;
    justify-content: center;
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  footer .container {
    flex-direction: column;
    justify-content: center;
    padding: 0;
  }
}
footer .container .footer_01 {
  width: 15.25rem;
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 1023px) {
  footer .container .footer_01 {
    width: fit-content;
  }
}
@media only screen and (max-width: 767px) {
  footer .container .footer_01 {
    width: fit-content;
  }
}
footer .container .footer_01 .logo img {
  display: block;
  width: 6.5rem;
}
@media only screen and (max-width: 1023px) {
  footer .container .footer_01 .logo img {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  footer .container .footer_01 .logo img {
    width: 5.875rem;
  }
}
@media only screen and (max-width: 1023px) {
  footer .container .footer_01 {
    margin-bottom: 1.25rem;
  }
}
footer .container .footer_02 {
  order: 2;
  width: 30.5rem;
}
footer .container .footer_02 a.m {
  display: none;
}
@media only screen and (max-width: 1023px) {
  footer .container .footer_02 {
    order: 3;
    display: flex;
    flex-direction: column;
    padding-top: 0;
  }
  footer .container .footer_02 a.m {
    display: block;
    order: 3;
    margin-bottom: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  footer .container .footer_02 {
    width: 100%;
    margin-bottom: 0.75rem;
  }
}
footer .container .footer_02 > div:nth-of-type(1) {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 1.25rem;
}
footer .container .footer_02 > div:nth-of-type(1) h3 {
  font-size: 1.375rem;
  line-height: 1.625rem;
  color: #FFFFFF;
}
@media only screen and (max-width: 1023px) {
  footer .container .footer_02 > div:nth-of-type(1) {
    order: 0;
  }
  footer .container .footer_02 > div:nth-of-type(1) h3 {
    font-size: 1.125rem;
    line-height: 1.625rem;
  }
}
@media only screen and (max-width: 767px) {
  footer .container .footer_02 > div:nth-of-type(1) {
    gap: 1.25rem;
    margin-bottom: 0.5rem;
  }
  footer .container .footer_02 > div:nth-of-type(1) h3 {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
footer .container .footer_02 > div:nth-of-type(2) {
  margin-bottom: 1.25rem;
}
@media only screen and (max-width: 767px) {
  footer .container .footer_02 > div:nth-of-type(2) {
    margin-bottom: 0;
  }
}
footer .container .footer_02 > div:nth-of-type(2) > .info-box {
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  footer .container .footer_02 > div:nth-of-type(2) > .info-box {
    font-size: 0.875rem;
    line-height: 1.375rem;
  }
}
@media only screen and (max-width: 767px) {
  footer .container .footer_02 > div:nth-of-type(2) > .info-box:nth-of-type(1) {
    margin-bottom: 0.25rem;
  }
}
footer .container .footer_02 > div:nth-of-type(2) > .info-box span:nth-of-type(1) {
  display: inline-block;
  font-weight: 600;
  width: 3.5rem;
  margin-right: 1rem;
}
@media only screen and (max-width: 767px) {
  footer .container .footer_02 > div:nth-of-type(2) > .info-box span:nth-of-type(1) {
    margin-right: 0.5rem;
  }
}
footer .container .footer_02 > .sns-box {
  display: flex;
  gap: 0.625rem;
}
footer .container .footer_02 > .sns-box > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.75rem;
  aspect-ratio: 1;
}
@media only screen and (max-width: 1023px) {
  footer .container .footer_02 > .sns-box {
    position: absolute;
    right: 0;
    top: 0;
  }
}
footer .container .footer_02 p {
  margin-top: 3.75rem;
}
@media only screen and (max-width: 1023px) {
  footer .container .footer_02 p {
    order: 3;
    margin-top: 0;
  }
}
footer .container .footer_03 {
  order: 3;
  width: 29rem;
  flex-grow: 1;
  display: flex;
  flex-flow: row wrap;
  gap: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.375rem;
  font-weight: 400;
}
footer .container .footer_03 .footer_menu {
  width: 6.125rem;
}
footer .container .footer_03 .footer_menu_list {
  margin-bottom: 1rem;
}
footer .container .footer_03 > p {
  width: 100%;
  flex-grow: 1;
  color: #95A3AB;
  align-self: flex-end;
}
@media only screen and (max-width: 1023px) {
  footer .container .footer_03 {
    order: 4;
  }
  footer .container .footer_03 .footer_menu {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  footer .container .footer_03 {
    order: 4;
  }
  footer .container .footer_03 .footer_menu {
    display: none;
  }
}

.scroll-init {
  position: absolute;
  right: 0;
  width: 3.25rem;
  aspect-ratio: 1;
  background-color: #00AB4E;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media only screen and (max-width: 1023px) {
  .scroll-init {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .scroll-init {
    display: none;
  }
}

button.bttn.main:disabled,
input[type=submit].bttn.main:disabled {
  box-shadow: none;
  background: var(--gray-scale-2);
  color: var(--font4);
}

.table_box {
  border-top: 1px solid var(--line1);
  border-bottom: 1px solid var(--line1);
  margin-bottom: 2.5rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.bttn_area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.bttn {
  cursor: pointer;
  display: inline-block;
  height: 2.875rem;
  line-height: 2.875rem;
  text-align: center;
  padding: 0 1.25rem;
  font-size: var(--f8);
  border-radius: 1.875rem;
}
.bttn.little {
  border-radius: 0.25rem;
}
.bttn.largest {
  height: 3.75rem;
  line-height: 3.75rem;
  font-size: var(--f5);
  font-weight: 700;
}
.bttn.large {
  height: 3.5rem;
  line-height: 3.5rem;
  font-size: var(--f7);
}
.bttn.small {
  height: 2.25rem;
  line-height: 2.25rem;
  font-size: var(--f9);
}
.bttn.smallest {
  height: 1.625rem;
  line-height: 1.625rem;
  font-size: var(--f9);
}
.bttn.grdt {
  background: var(--bg-grdt);
  color: #fff;
}
.bttn.brand {
  background: var(--color-brand);
  color: #fff;
}
.bttn.black {
  background: var(--line1);
  color: #fff;
}
.bttn.outline-black {
  background: #fff;
  border: 0.0625rem solid var(--line1);
}
.bttn.sub {
  background: var(--color-sub-brand);
  color: #fff;
}
.bttn.gray {
  background: var(--bg2);
  color: var(--font2);
}
.bttn.outline {
  background: #fff;
  border: 0.0625rem solid var(--color-brand);
  color: var(--color-brand);
}
.bttn.outline-line-gray {
  background: #fff;
  border: 0.0625rem solid var(--line2);
  color: var(--color-brand);
}
.bttn.outline-gray {
  background: #fff;
  border: 0.0625rem solid var(--line2);
}
.bttn.main {
  box-shadow: 0 0 0 0.0625rem var(--line2);
}
.bttn.main:before, .bttn.main:after {
  content: "";
  transition: 0.3s;
}
.bttn.main:focus {
  outline: none;
  position: relative;
  background: none;
  color: var(--font1);
}
.bttn.main:focus:before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--bg-grdt);
  z-index: -2;
}
.bttn.main:focus:after {
  width: calc(100% - 0.125rem);
  height: calc(100% - 0.125rem);
  position: absolute;
  top: 0.0625rem;
  left: 0.0625rem;
  background: #fff;
  z-index: -1;
}
.bttn.main:hover, .bttn.main:active {
  box-shadow: none;
  background: var(--bg-grdt);
  color: #fff;
}

.inputs {
  font-size: var(--f7);
  line-height: var(--l7);
  border: none;
  border-right: 0.0625rem solid var(--line2);
  padding: 0 1.25rem;
}
.inputs:focus {
  outline: 0;
  background: #fff;
}
.inputs:hover {
  background: var(--bg2);
}
.inputs:disabled, .inputs:read-only {
  background: var(--bg2);
}
.inputs.large {
  height: 3.5rem;
}

input[type=checkbox].checkbox, input[type=checkbox].radio,
input[type=radio].checkbox,
input[type=radio].radio {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  vertical-align: middle;
}
input[type=checkbox].checkbox,
input[type=radio].checkbox {
  background: #fff url(../img/checkbox_default.svg) no-repeat center center/cover;
}
input[type=checkbox].checkbox:hover,
input[type=radio].checkbox:hover {
  background-image: url(../img/checkbox_tap_hover.svg);
}
input[type=checkbox].checkbox:disabled,
input[type=radio].checkbox:disabled {
  background-image: url(../img/checkbox_disabled.svg);
}
input[type=checkbox].checkbox:checked,
input[type=radio].checkbox:checked {
  background-image: url(../img/checkbox_selected.svg);
}
input[type=checkbox].checkbox:checked:disabled,
input[type=radio].checkbox:checked:disabled {
  background-image: url(../img/checkbox_selectedDisabled.svg);
}
input[type=checkbox].radio,
input[type=radio].radio {
  background: #fff url(../img/radio_default.svg) no-repeat center center/cover;
}
input[type=checkbox].radio:hover,
input[type=radio].radio:hover {
  background-image: url(../img/radio_tap_hover.svg);
}
input[type=checkbox].radio:checked,
input[type=radio].radio:checked {
  background-image: url(../img/radio_selected.svg);
}
input[type=checkbox].radio:checked:disabled,
input[type=radio].radio:checked:disabled {
  background-image: url(../img/radio_disabled.svg);
}
input[type=checkbox].radio:checked:disabled,
input[type=radio].radio:checked:disabled {
  background-image: url(../img/radio_selectedDisabled.svg);
}

.upload_btn {
  display: inline-block;
  width: 9.5625rem;
  height: 2.875rem;
  text-align: center;
  font-size: var(--f9);
  line-height: 2.875rem;
  background: var(--bg2);
  position: relative;
  vertical-align: middle;
  margin-right: 0.5rem;
  cursor: pointer;
}
.upload_btn:before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  vertical-align: middle;
  background: url(../img/download.svg) no-repeat center center/cover;
  margin-right: 0.25rem;
}
.upload_btn:after {
  content: "첨부파일";
  vertical-align: middle;
}
.upload_btn + .uploaded_file {
  position: relative;
  vertical-align: middle;
  display: inline-block;
  padding: 0 2.5rem 0 1.25rem;
  border: 0.0625rem solid var(--line2);
  height: 2.875rem;
  line-height: 2.875rem;
  max-width: 100%;
  font-size: 0.6875rem;
}
.upload_btn + .uploaded_file em {
  cursor: pointer;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.625rem;
}
.upload_btn + .uploaded_file a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.select_box {
  height: 2.875rem;
  font-size: var(--f9);
  line-height: var(--l9);
  border: 1px solid var(--line2);
  padding: 0 1.625rem 0 0.625rem;
  border-radius: 0.25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  background: url(../img/selectbox.svg) no-repeat calc(100% - 0.625rem) center/1rem 1rem;
}
.select_box:hover {
  background-color: var(--bg2);
  border-color: var(--color-brand);
}
.select_box:focus {
  outline: none;
  border-color: var(--color-brand);
}

ul.cont_nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.0625rem;
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 767px) {
  ul.cont_nav {
    margin-bottom: 1.25rem;
  }
}
ul.smf_tab {
  display: flex;
}
ul.smf_tab li {
  flex: 1;
  line-height: 5rem;
  height: 5rem;
  text-align: center;
  font-size: 1.375rem;
  border: 1px solid var(--line2);
  background: #fff;
  color: var(--font3);
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  ul.smf_tab li {
    height: 3.5rem;
    line-height: 3.5rem;
    font-size: 1.125rem;
  }
}
ul.smf_tab li.active {
  border-color: var(--color-brand);
  background: var(--color-brand);
  color: #fff;
  font-weight: 700;
}
ul.smf_tab ~ .tab_contents {
  display: none;
}
ul.smf_tab ~ .tab_contents.active {
  display: block;
}

.sec_pop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  z-index: 999;
}
.sec_pop.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec_pop .inner {
  background: #fff;
  border-radius: 1.25rem;
}
.sec_pop .inner .close_pop {
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .moving_bg {
    display: none;
  }
}
.pop {
  display: none;
}
.pop.active {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pop.active .inner {
  background: #fff;
  max-width: 40rem;
  width: calc(100% - 2.5rem);
  border-radius: 0.5rem;
}
.pop.active .inner > div {
  display: none;
}
.pop.active .inner > div.on {
  display: block;
}
.pop.active .inner > div .pop_cont {
  padding: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: var(--font-color-3);
  text-align: center;
}
.pop.active .inner > div .pop_cont h4 {
  font-size: 1.125rem;
  line-height: 1.625rem;
  font-weight: 600;
  color: var(--font-color-1);
}
.pop.active .inner > div .pop_cont h4 + span {
  display: block;
  margin-top: 0.5rem;
}
.pop.active .inner > div .pop_btns {
  border-top: 1px solid var(--line-color-3);
  padding: 0.5rem 1.25rem;
  display: flex;
  gap: 1.25rem;
}
.pop.active .inner > div .pop_btns > * {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1.5rem;
  height: 2.5rem;
  cursor: pointer;
}
.pop.active .inner > div .pop_btns > *.color {
  color: var(--color-primary);
  font-weight: 600;
}