/********** fonts **********/
@font-face {
  font-family: 'SCoreDream';
  font-weight: 100;
  font-style: normal;
  src: url("../fonts/SCDream/SCDream1.otf") format("opentype"), url("../fonts/SCDream/SCDream1.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: 'SCoreDream';
  font-weight: 200;
  font-style: normal;
  src: url("../fonts/SCDream/SCDream2.otf") format("opentype"), url("../fonts/SCDream/SCDream2.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: 'SCoreDream';
  font-weight: 300;
  font-style: normal;
  src: url("../fonts/SCDream/SCDream3.otf") format("opentype"), url("../fonts/SCDream/SCDream3.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: 'SCoreDream';
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/SCDream/SCDream4.otf") format("opentype"), url("../fonts/SCDream/SCDream4.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: 'SCoreDream';
  font-weight: 500;
  font-style: normal;
  src: url("../fonts/SCDream/SCDream5.otf") format("opentype"), url("../fonts/SCDream/SCDream5.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: 'SCoreDream';
  font-weight: 600;
  font-style: normal;
  src: url("../fonts/SCDream/SCDream6.otf") format("opentype"), url("../fonts/SCDream/SCDream6.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: 'SCoreDream';
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/SCDream/SCDream7.otf") format("opentype"), url("../fonts/SCDream/SCDream7.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: 'SCoreDream';
  font-weight: 800;
  font-style: normal;
  src: url("../fonts/SCDream/SCDream8.otf") format("opentype"), url("../fonts/SCDream/SCDream8.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: 'SCoreDream';
  font-weight: 900;
  font-style: normal;
  src: url("../fonts/SCDream/SCDream9.otf") format("opentype"), url("../fonts/SCDream/SCDream9.woff") format("woff");
  font-display: swap;
}


html {
  font-size: 62.5%;
  overflow-X: hidden;
  color: #2e2e2e;
}

body {
  font-family: 'SCoreDream', 'Montserrat', 'Noto Sans KR', sans-serif;
  background-color: white;
  word-break: keep-all;
  overflow-wrap: break-word;
}

xmp {
	font-family: 'SCoreDream', 'Montserrat', 'Noto Sans KR', sans-serif;
	word-break: keep-all;
  	overflow-wrap: break-word;
}

:root {
  --main-color: #4c7dcb;
  --main-blue: #1a64ff;
  --main-black: #202020;
  --assist-color: #1a64ff;
}

.wrap {
  width: 95%;
  max-width: 132rem;
  margin: 0px auto;
  position: relative;
}

.overlay {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 98;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
}

#header {
  width: 100%;
  position: relative;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  background: white;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

#header .wrap {
  min-height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#header .wrap .logo {
  display: block;
}

#header .wrap .logo a {
  display: block;
}

#header .wrap .nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

#header .wrap .nav .menu_close_button {
  display: none;
}

#header .wrap .nav a {
  font-family: 'NanumSquare', sans-serif;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #202020;
  opacity: 0.9;
  -webkit-transition: color 0.2s, opacity 0.2s;
  transition: color 0.2s, opacity 0.2s;
  position: relative;
}

#header .wrap .nav a::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: var(--main-color);
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

#header .wrap .nav a:hover,
#header .wrap .nav a.active {
  opacity: 1;
  color: var(--main-color);
}

#header .wrap .nav a:hover::after,
#header .wrap .nav a.active::after {
  width: 100%;
  opacity: 1;
}

#header .wrap .menu_button {
  display: none;
}

#footer {
  width: 100%;
  position: relative;
  background: #181818;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 6rem 0;
}

#footer .wrap .tabs {
  width: 100%;
  position: relative;
  border-bottom: 1px solid #808080;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

#footer .wrap .tabs a {
  font-size: 1.4rem;
  font-weight: 400;
  color: #919191;
  margin-right: 10px;
  letter-spacing: 0.03em;
}

#footer .wrap .tabs a:last-child {
  margin-right: 0;
}

#footer .wrap .info {
  width: 100%;
  position: relative;
}

#footer .wrap .info li {
  line-height: 2rem;
}

#footer .wrap .info li span {
  font-size: 1.2rem;
  font-weight: 400;
  color: #919191;
  margin-right: 10px;
}

#footer .wrap .info li span:last-child {
  margin-right: 0;
}

#footer .wrap > a {
  position: absolute;
  right: 0;
  bottom: 0;
  border: 1px solid #808080;
  padding: 10px 20px;
  font-size: 1.5rem;
  font-weight: 400;
  color: #919191;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

#footer .wrap > a::after {
  font-size: 15px;
  font-weight: 500;
  content: "\f105";
  font-family: "FontAwesome", sans-serif;
  color: #919191;
  padding-left: 8px;
  -webkit-transition: padding 0.35s;
  transition: padding 0.35s;
}

#footer .wrap > a:hover::after {
  padding-left: 12px;
}

#modal {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.2);
  display: none;
}

#modal .content {
  width: 95%;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

#modal .content::-webkit-scrollbar {
  display: none;
}

#modal .content .head {
  width: 100%;
  position: relative;
}

#modal .content .body {
  width: 100%;
  position: relative;
}

#modal .content .bottom {
  width: calc(100% - 60px);
  margin: 0px auto;
  min-height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  gap: 20px;
}

#modal .content .bottom a {
  width: calc(100% - 40px);
  max-width: 180px;
  min-height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 1.6rem;
  color: #404040;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  padding: 2% 10px;
}

#modal .content .bottom a.border_button {
  opacity: 0.9;
  color: var(--main-color);
  border: 1px solid rgba(76, 125, 203, 0.9);
}

#modal .content .bottom a.border_button:hover {
  opacity: 1;
  border: 1px solid #4c7dcb;
}

#modal .content .bottom a.color_button {
  color: #fff;
  background-color: rgba(76, 125, 203, 0.9);
}

#modal .content .bottom a.color_button:hover {
  background-color: #4c7dcb;
}

#modal.terms_modal .content {
  max-width: 640px;
  max-height: 95%;
}

#modal.terms_modal .content .head {
  width: 100%;
  position: relative;
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

#modal.terms_modal .content .head h2 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #202020;
}

#modal.terms_modal .content .body {
  width: calc(100% - 40px);
  height: calc(100% - 120px);
  max-height: 400px;
  margin: 0 auto;
  overflow: auto;
  padding: 10px;
  border: 1px solid #e9e9e9;
}

#modal.terms_modal .content .body::-webkit-scrollbar {
  width: 8px;
  height:8px;
}

#modal.terms_modal .content .body::-webkit-scrollbar-track {
  background-color: #ddd;
}

#modal.terms_modal .content .body::-webkit-scrollbar-thumb {
  background: #aaa;
}

#modal.terms_modal .content .body::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

#modal.terms_modal .content .body::-webkit-scrollbar-thumb:active {
  background: #666;
}

#modal.terms_modal .content .body::-webkit-scrollbar-button {
  display: none;
}

/* #modal.terms_modal .content .body p {
  word-break: break-all;
  font-size: 1.5rem;
  font-weight: 400;
  color: #404040;
} */

#modal.terms_modal .content .body * {
  word-break: break-all;
}

#modal.terms_modal .content .body h3 {
  font-size: 1.8rem;
  font-weight: 500;
}

#modal.terms_modal .content .body h5 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 1.2rem;
  margin-bottom: .3rem;
}

#modal.terms_modal .content .body p {
  font-size: 1.5rem;
  line-height: 2.2rem;
  font-weight: 400;
  color: #404040;
  margin-bottom: .3rem;
}

#modal.terms_modal .content .body table {
  border-collapse: collapse;
  border: 1px solid #e9e9e9;
  margin-top: 1.2rem;
}

#modal.terms_modal .content .body table tr th, #modal.terms_modal .content .body table tr td {
  font-size: 1.4rem;
  font-weight: 400;
  border: 1px solid #e9e9e9;
  text-align: center;
  padding: .6rem;
  word-break: keep-all;
}

#modal.terms_modal .content .body table tr th {
  font-weight: 500;
}

#modal.procedure_modal .content {
  max-width: 640px;
  max-height: 95%;
}

#modal.procedure_modal .content .head {
  width: calc(100% - 60px);
  margin: 0 auto;
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
}

#modal.procedure_modal .content .head h2 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #202020;
}

#modal.procedure_modal .content .head .button_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

#modal.procedure_modal .content .head .button_items a {
  padding: 4px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.03em;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

#modal.procedure_modal .content .head .button_items .all_reset_button {
  background: #e9e9e9;
  color: #a8a8a8;
}

#modal.procedure_modal .content .head .button_items .all_reset_button:hover {
  background: #a9a9a9;
  color: #fff;
}

#modal.procedure_modal .content .head .button_items .excel_button {
  background: #04a512;
  color: #fff;
}

#modal.procedure_modal .content .head .button_items .excel_button:hover {
  background: #03920f;
}

#modal.procedure_modal .content .body {
  width: calc(100% - 40px);
  height: calc(100% - 120px);
  max-height: 400px;
  margin: 0 auto;
  overflow-y: scroll;
  overflow-x: hidden;
  padding: 0px 10px;
}

#modal.procedure_modal .content .body::-webkit-scrollbar {
  width: 8px;
  height:8px;
}

#modal.procedure_modal .content .body::-webkit-scrollbar-track {
  background-color: #ddd;
}

#modal.procedure_modal .content .body::-webkit-scrollbar-thumb {
  background: #aaa;
}

#modal.procedure_modal .content .body::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

#modal.procedure_modal .content .body::-webkit-scrollbar-thumb:active {
  background: #666;
}

#modal.procedure_modal .content .body::-webkit-scrollbar-button {
  display: none;
}

#modal.procedure_modal .content .body .scroll_content {
  margin: 0 !important;
  max-height: none !important;
  overflow: visible !important;
}

#modal.procedure_modal .content .body .new_info,
#modal.procedure_modal .content .body .excel_info {
  width: 100%;
  position: relative;
  padding: 20px 10px;
  margin-bottom: 20px;
}

#modal.procedure_modal .content .body .new_info p,
#modal.procedure_modal .content .body .new_info a,
#modal.procedure_modal .content .body .excel_info p,
#modal.procedure_modal .content .body .excel_info a {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

#modal.procedure_modal .content .body .new_info p,
#modal.procedure_modal .content .body .excel_info p {
  display: block;
}

#modal.procedure_modal .content .body .new_info {
  background: rgba(76, 125, 203, 0.05);
}

#modal.procedure_modal .content .body .excel_info {
  background: rgba(4, 165, 18, 0.05);
}

#modal.procedure_modal .content .body .excel_info a {
  color: #04a512;
  display: inline-block;
}

#modal.procedure_modal .content .body .excel_info a:hover {
  text-decoration: underline;
}

.scroll_content {
  width: 100%;
  position: relative;
  max-height: 528px;
  overflow-y: scroll;
  border: 1px solid #dbdbdb;
  border-left: none;
  border-right: none;
}

.scroll_content ul {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.scroll_content ul:first-child {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  top: 0;
  z-index: 1;
}

.scroll_content ul:first-child li {
  background: #f8f9fa;
}

.scroll_content ul:last-child li {
  border: none;
}

.scroll_content ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  min-height: 48px;
  border-bottom: 1px solid #dbdbdb;
  font-weight: 500;
  font-size: 15px;
  color: #343a40;
  padding: 6px;
}

.scroll_content ul li:nth-of-type(1) {
  width: 15%;
}

.scroll_content ul li:nth-of-type(2) {
  width: 35%;
}

.scroll_content ul li:nth-of-type(3) {
  width: 50%;
}

.scroll_content ul li input[type="text"] {
  width: 100%;
  border: 1px solid #dbdbdb;
  padding: 6px;
  text-align: center;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #343a40;
}

.scroll_content ul li input[type="text"]:focus {
  outline: 1px solid var(--main-color);
  border-color: var(--main-color);
}

.scroll_content ul li .reset_button {
  background: #e9e9e9;
  border-radius: 100%;
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.scroll_content ul li .reset_button span {
  font-size: 16px;
  color: #a8a8a8;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.scroll_content ul li .reset_button:hover {
  background: #a9a9a9;
}

.scroll_content ul li .reset_button:hover span {
  color: #fff;
}

#container {
  width: 100%;
  position: relative;
  min-height: 100vh;
  padding: 9rem 0;
}

#container .page_head {
  width: 100%;
  position: relative;
}

#container .page_head .wrap {
  padding: 9rem 0;
}

#container .page_head .wrap h2 {
  font-size: 4.2rem;
  font-weight: 700;
}

#container .page_head .page_tab {
  width: 100%;
  position: relative;
}

#container .page_head .page_tab::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #e9e9e9;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

#container .page_head .page_tab .page_tab_inner {
  width: 95%;
  max-width: 132rem;
  position: relative;
  margin: 0 auto;
  white-space: nowrap;
  overflow: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
}

#container .page_head .page_tab .page_tab_inner a {
  display: inline-block;
  position: relative;
  color: #999;
  font-size: 1.7rem;
  font-weight: 500;
  padding-bottom: 1rem;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#container .page_head .page_tab .page_tab_inner a:hover {
  color: #2e2e2e;
}

#container .page_head .page_tab .page_tab_inner a.active {
  color: #2e2e2e;
}

#container .page_head .page_tab .page_tab_inner .stick {
  width: auto;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}

#container .about_section {
  width: 100%;
  position: relative;
  display: none;
}

#container .about_section.active {
  display: block;
  -webkit-animation: fade-in 1s 1;
          animation: fade-in 1s 1;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}

@-webkit-keyframes fade-in {
  0% {
    -webkit-transform: translateY(6rem);
            transform: translateY(6rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    -webkit-transform: translateY(6rem);
            transform: translateY(6rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

#container .about_section .wrap {
  padding-top: 8rem;
}

#container .about_section .wrap .about_main_box {
  width: 100%;
  position: relative;
}

#container .about_section .wrap .about_main_box h2 {
  font-size: 3.6rem;
}

#container .about_section .wrap .about_main_box h2 span {
  display: block;
}

#container .about_section .wrap .about_main_box h2 span:nth-of-type(1) {
  font-weight: 400;
}

#container .about_section .wrap .about_main_box h2 span:nth-of-type(2) {
  font-weight: 700;
}

#container .about_section .wrap .about_main_box .text_box {
  width: 100%;
  position: relative;
  margin-top: 2.4rem;
}

#container .about_section .wrap .about_main_box .text_box p {
  font-size: 1.6rem;
  font-weight: 400;
}

#container .about_section .wrap .about_main_box > ul {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 4rem;
}

#container .about_section .wrap .about_main_box > ul li {
  width: calc(33.333% - 4rem);
  position: relative;
  margin-right: 6rem;
}

#container .about_section .wrap .about_main_box > ul li:last-child {
  margin-right: 0;
}

#container .about_section .wrap .about_main_box > ul li img {
  width: 100%;
  height: auto;
  display: block;
}

#container .about_section .wrap .about_main_box > ul li p {
  width: 100%;
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 400;
}

#container .about_section .wrap .about_main_box .table_box {
  width: 100%;
  position: relative;
  margin-top: 6rem;
}

#container .about_section .wrap .about_main_box .table_box > .box {
  width: 100%;
  position: relative;
}

#container .about_section .wrap .about_main_box .table_box > .box .box_title {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

#container .about_section .wrap .about_main_box .table_box > .box .table {
  width: 100%;
  position: relative;
  overflow-x: auto;
}

#container .about_section .wrap .about_main_box .table_box > .box .table ul {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#container .about_section .wrap .about_main_box .table_box > .box .table ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 1.5rem;
  padding: 1.6rem 1.2rem;
  border: 1px solid #dbdbdb;
  border-right: none;
  border-bottom: none;
}

#container .about_section .wrap .about_main_box .table_box > .box .table ul li:last-child {
  border-right: 1px solid #dbdbdb;
}

#container .about_section .wrap .about_main_box .table_box > .box .table ul li.border_bottom {
  border-bottom: 1px solid #dbdbdb;
}

#container .about_section .wrap .about_main_box .table_box > .box .table ul li:nth-of-type(2n-1) {
  width: 20%;
  min-width: 12.4rem;
  font-weight: 500;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

#container .about_section .wrap .about_main_box .table_box > .box .table ul li:nth-of-type(2n) {
  width: 30%;
  min-width: 18.6rem;
  font-weight: 400;
}

#container .about_section .wrap .about_main_box .table_box > .box .table ul li.col_3 {
  width: 80%;
}

#container .about_section .wrap .about_main_box .table_box > .box .table ul li.col_3_min_max {
  min-width: 49.6rem;
}

#container .about_section .wrap .about_main_box .table_box > .box .table ul li a {
  color: #2e2e2e;
}

#container .about_section .wrap .about_main_box .table_box > .box .table ul li a:hover {
  color: blue;
  text-decoration: underline;
}

#container .about_section .wrap .about_main_box .table_box > .box .table ul:last-child li {
  border-bottom: 1px solid #dbdbdb;
}

#container .about_section .wrap .about_ceo_box {
  width: 100%;
  position: relative;
}

#container .about_section .wrap .about_ceo_box .letter_box {
  width: 100%;
  position: relative;
  word-break: keep-all;
  margin-bottom: 6rem;
}

#container .about_section .wrap .about_ceo_box .letter_box:last-child {
  margin-bottom: 0;
}

#container .about_section .wrap .about_ceo_box .letter_box h2 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

#container .about_section .wrap .about_ceo_box .letter_box p {
  font-size: 1.7rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

#container .about_section .wrap .about_ceo_box .letter_box p:last-child {
  margin-bottom: 0;
}

#container .about_section .wrap .about_map_box {
  width: 100%;
  position: relative;
}

#container .about_section .wrap .about_map_box .box {
  width: 100%;
  position: relative;
  margin-bottom: 6rem;
}

#container .about_section .wrap .about_map_box .box:last-child {
  margin-bottom: 0;
}

#container .about_section .wrap .about_map_box .box h2 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

#container .about_section .wrap .about_map_box .box p {
  font-size: 1.7rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

#container .about_section .wrap .about_map_box .box .map {
  width: 100%;
  position: relative;
}

#container .about_section .wrap .about_map_box .box .map .map_container {
  width: 100%;
  position: relative;
  max-width: 640px;
  pointer-events: none;
}

#container .about_section .wrap .about_map_box .box .map .map_container::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

#container .about_section .wrap .about_map_box .box .map .map_container > div {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

#container .about_section .wrap .about_map_box .box .map p {
  width: 100%;
  position: relative;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 10px;
}

#container .content .layout .paging {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
}

#container .content .layout .paging > a {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

#container .content .layout .paging > a span {
  font-size: 2.4rem;
  color: #b8b8b8;
  -webkit-transition: color 0.35s;
  transition: color 0.35s;
}

#container .content .layout .paging > a:hover span {
  color: var(--main-color);
}

#container .content .layout .paging > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#container .content .layout .paging > div > a {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  color: #b8b8b8;
  border-radius: 100%;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

#container .content .layout .paging > div > a:hover {
  color: var(--main-color);
}

#container .content .layout .paging > div > a.selected {
  color: #fff;
  background: var(--main-color);
}

@media (max-width: 1199px) {
  html {
    font-size: 50%;
  }
  #header.menu_open {
    top: 0 !important;
  }
  #header .wrap {
    min-height: 68px;
  }
  #header .wrap .logo a img {
    height: 28px;
  }
  #header .wrap .nav {
    width: 80%;
    max-width: 360px;
    height: 100vh;
    position: fixed;
    right: -360px;
    top: 0;
    display: block;
    background: var(--main-color);
    -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
    -webkit-transition: right 0.5s;
    transition: right 0.5s;
  }
  #header .wrap .nav.active {
    right: 0;
  }
  #header .wrap .nav .menu_close_button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-height: 90px;
    padding: 0 2.5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    margin: 0 0 0 auto;
  }
  #header .wrap .nav a {
    height: 68px;
    padding: 0 5%;
    font-weight: 400;
    border-bottom: 1px solid #fff;
    color: #fff !important;
  }
  #header .wrap .nav a:nth-of-type(1) {
    border-top: 1px solid #fff;
  }
  #header .wrap .nav a::after {
    display: none;
  }
  #header .wrap .nav a::before {
    font-size: 2rem;
    font-weight: 400;
    content: "\f105";
    color: #fff;
    font-family: "FontAwesome", sans-serif;
    position: absolute;
    right: 5%;
  }
  #header .wrap .menu_button {
    display: block;
    font-size: 3.2rem;
    cursor: pointer;
    color: #202020;
  }
}

@media (max-width: 767px) {
  #footer .wrap .tabs {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  #footer .wrap .tabs,
  #footer .wrap .info {
    text-align: center;
  }
  #footer .wrap .info li span {
    display: block;
    margin-right: 0;
  }
  #footer .wrap > a {
    position: relative;
    right: auto;
    bottom: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 20px auto 0px;
  }
  #modal.terms_modal .content .body {
    width: calc(100% - 20px);
  }
}

.layout_button_area {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  gap: 1rem;
  margin-top: 6rem;
}

.layout_button_area > a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  border: 1px solid #e9ecef;
  padding: 10px 28px;
  font-size: 1.5rem;
  font-weight: 400;
  color: #808080;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.layout_button_area > a:hover {
  color: var(--main-blue);
  border-color: var(--main-blue);
}

.layout_button_area > a span {
  font-size: 22px;
  margin-right: 4px;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

.arrow_item {
  font-size: 1.4rem;
  position: relative;
}

.arrow_item::after {
  font-size: 15px;
  font-weight: 500;
  content: "\f105";
  font-family: "FontAwesome", sans-serif;
  color: #808080;
  padding-left: 8px;
  -webkit-transition: padding 0.35s;
  transition: padding 0.35s;
}

.arrow_item:hover {
  color: var(--main-color) !important;
}

.arrow_item:hover::after {
  color: var(--main-color) !important;
  padding-left: 12px;
}

/* 220118 */
.video_modal {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.65);
  display: none;
}

.video_modal .inner_content {
  width: 95%;
  max-width: 960px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.video_modal .inner_content video {
  width: 100%;
}

.video_modal .inner_content .top_close_area {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.video_modal .inner_content .top_close_area a i {
  font-size: 2.8rem;
  font-weight: 300;
  color: #fff;
}

.video_modal .inner_content .close_area {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-color: transparent;
  margin-top: 10px;
  gap: 10px;
}

.video_modal .inner_content .close_area * {
  color: #fff;
}

.video_modal .inner_content .close_area label,
.video_modal .inner_content .close_area a {
  font-size: 1.4rem;
  font-weight: 400;
  cursor: pointer;
  display: inline-block;
  position: relative;
}

.video_modal .inner_content .close_area label:hover,
.video_modal .inner_content .close_area a:hover {
  text-decoration: underline;
}

.video_modal .inner_content .close_area label::before {
  content: "";
  display: inline-block;
  min-width: 16px;
  min-height: 16px;
  background: transparent;
  border: 1px solid #fff;
  -webkit-transition: all .2s;
  transition: all .2s;
  -webkit-transform: translateY(2.5px);
          transform: translateY(2.5px);
  margin-right: 6px;
  border-radius: 100%;
}

.video_modal .inner_content .close_area label::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 6px;
  top: 5px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all .2s;
  transition: all .2s;
  opacity: 0;
}

.video_modal .inner_content .close_area input[type="checkbox"] {
  display: none;
}

.video_modal .inner_content .close_area input[type="checkbox"]:checked ~ label::before {
  border-color: #fff;
}

.video_modal .inner_content .close_area input[type="checkbox"]:checked ~ label::after {
  opacity: 1;
}


#container .about_section .wrap .about_main_box .process_box {
  width: 100%;
  position: relative;
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}

#container .about_section .wrap .about_main_box .process_box .title_box {
  width: 100%;
  position: relative;
  background-color: #5272b8;
  text-align: center;
  padding: 1.2rem .6rem;
}

#container .about_section .wrap .about_main_box .process_box .title_box h2 {
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
}

#container .about_section .wrap .about_main_box .process_box .info_box {
  width: 100%;
  position: relative;
  text-align: center;
}

#container .about_section .wrap .about_main_box .process_box .info_box p {
  color: red;
  font-size: 1.5rem;
  font-weight: 500;
}

#container .about_section .wrap .about_main_box .process_box img {
  width: 100%;
}

.table.app_table ul {
  -ms-flex-wrap: wrap!important;
      flex-wrap: wrap!important;
  border: 1px solid #e9e9e9!important;
  border-bottom: none!important;
  border-top: none!important;
}
.table.app_table ul li {
  width: 100% !important;
  max-width: none !important;
  min-width: auto !important;
  border: none!important;
  border-bottom: 1px solid #e9e9e9!important;
  text-align: left !important;
  -webkit-box-pack: start!important;
      -ms-flex-pack: start!important;
          justify-content: flex-start!important;
}
.table.app_table ul:first-child li:first-child {
  border-top: 1px solid #e9e9e9!important;
}

.app_terms {
	width: 95%;
	position: relative;
	margin: 0 auto;
	padding: 4rem 0;
}

.app_terms * {
  word-break: break-all;
}

.app_terms h3 {
  font-size: 2.4rem;
  font-weight: 500;
}

.app_terms h5 {
  font-size: 2rem;
  font-weight: 500;
  margin-top: 1.6rem;
  margin-bottom: .6rem;
}

.app_terms p {
  font-size: 1.8rem;
  line-height: 2.6rem;
  font-weight: 400;
  color: #404040;
  margin-bottom: .6rem;
}

.app_terms table {
	border-collapse: collapse;
	border: 1px solid #e9e9e9;
	margin-top: 2rem;
}

.app_terms table tr th {
	font-size: 2rem;
	font-weight: 500;
	padding: 1rem;
	border: 1px solid #e9e9e9;
}

.app_terms table tr td {
  font-size: 1.8rem;
  font-weight: 400;
  border: 1px solid #e9e9e9;
  text-align: center;
  padding: 1rem;
  word-break: keep-all;
}

body.app_mode table,
body.app_mode table * {
	display: block;
	text-align: left!important;
}

body.app_mode table thead {
	background-color: #fcfcfc;
}

#modal2 {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.2);
  display: none;
}

#modal2 .content {
  width: 95%;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

#modal2 .content::-webkit-scrollbar {
  display: none;
}

#modal2 .content .head {
  width: 100%;
  position: relative;
}

#modal2 .content .body {
  width: 100%;
  position: relative;
}

#modal2 .content .bottom {
  width: calc(100% - 60px);
  margin: 0px auto;
  min-height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  gap: 20px;
}

#modal2 .content .bottom a {
  width: calc(100% - 40px);
  max-width: 180px;
  min-height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 1.6rem;
  color: #404040;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  padding: 2% 10px;
}

#modal2 .content .bottom a.border_button {
  opacity: 0.9;
  color: var(--main-color);
  border: 1px solid rgba(76, 125, 203, 0.9);
}

#modal2 .content .bottom a.border_button:hover {
  opacity: 1;
  border: 1px solid #4c7dcb;
}

#modal2 .content .bottom a.color_button {
  color: #fff;
  background-color: rgba(76, 125, 203, 0.9);
}

#modal2 .content .bottom a.color_button:hover {
  background-color: #4c7dcb;
}

#modal2.terms_modal .content {
  max-width: 640px;
  max-height: 95%;
}

#modal2.terms_modal .content .head {
  width: 100%;
  position: relative;
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

#modal2.terms_modal .content .head h2 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #202020;
}

#modal2.terms_modal .content .body {
  width: calc(100% - 40px);
  height: calc(100% - 120px);
  max-height: 400px;
  margin: 0 auto;
  overflow: auto;
  padding: 10px;
  border: 1px solid #e9e9e9;
}

#modal2.terms_modal .content .body::-webkit-scrollbar {
  width: 8px;
  height:8px;
}

#modal2.terms_modal .content .body::-webkit-scrollbar-track {
  background-color: #ddd;
}

#modal2.terms_modal .content .body::-webkit-scrollbar-thumb {
  background: #aaa;
}

#modal2.terms_modal .content .body::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

#modal2.terms_modal .content .body::-webkit-scrollbar-thumb:active {
  background: #666;
}

#modal2.terms_modal .content .body::-webkit-scrollbar-button {
  display: none;
}

#modal2.terms_modal .content .body * {
  word-break: break-all;
}

#modal2.terms_modal .content .body h3 {
  font-size: 1.8rem;
  font-weight: 500;
}

#modal2.terms_modal .content .body h5 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 1.2rem;
  margin-bottom: .3rem;
}

#modal2.terms_modal .content .body p {
  font-size: 1.5rem;
  line-height: 2.2rem;
  font-weight: 400;
  color: #404040;
  margin-bottom: .3rem;
}

#modal2.terms_modal .content .body table {
  border-collapse: collapse;
  border: 1px solid #e9e9e9;
  margin-top: 1.2rem;
}

#modal2.terms_modal .content .body table tr th, #modal.terms_modal .content .body table tr td {
  font-size: 1.4rem;
  font-weight: 400;
  border: 1px solid #e9e9e9;
  text-align: center;
  padding: .6rem;
  word-break: keep-all;
}

#modal2.terms_modal .content .body table tr th {
  font-weight: 500;
}

#modal2.procedure_modal .content {
  max-width: 640px;
  max-height: 95%;
}

#modal2.procedure_modal .content .head {
  width: calc(100% - 60px);
  margin: 0 auto;
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
}

#modal2.procedure_modal .content .head h2 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #202020;
}

#modal2.procedure_modal .content .head .button_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

#modal2.procedure_modal .content .head .button_items a {
  padding: 4px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.03em;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

#modal2.procedure_modal .content .head .button_items .all_reset_button {
  background: #e9e9e9;
  color: #a8a8a8;
}

#modal2.procedure_modal .content .head .button_items .all_reset_button:hover {
  background: #a9a9a9;
  color: #fff;
}

#modal2.procedure_modal .content .head .button_items .excel_button {
  background: #04a512;
  color: #fff;
}

#modal2.procedure_modal .content .head .button_items .excel_button:hover {
  background: #03920f;
}

#modal2.procedure_modal .content .body {
  width: calc(100% - 40px);
  height: calc(100% - 120px);
  max-height: 738px;
  margin: 0 auto;
  overflow-y: scroll;
  overflow-x: hidden;
  padding: 0px 10px;
}

#modal2.procedure_modal .content .body::-webkit-scrollbar {
  width: 8px;
  height:8px;
}

#modal2.procedure_modal .content .body::-webkit-scrollbar-track {
  background-color: #ddd;
}

#modal2.procedure_modal .content .body::-webkit-scrollbar-thumb {
  background: #aaa;
}

#modal2.procedure_modal .content .body::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

#modal2.procedure_modal .content .body::-webkit-scrollbar-thumb:active {
  background: #666;
}

#modal2.procedure_modal .content .body::-webkit-scrollbar-button {
  display: none;
}

#modal2.procedure_modal .content .body .scroll_content {
  margin: 0 !important;
  max-height: none !important;
  overflow: visible !important;
}

#modal2.procedure_modal .content .body .new_info,
#modal2.procedure_modal .content .body .excel_info {
  width: 100%;
  position: relative;
  padding: 20px 10px;
  margin-bottom: 20px;
}

#modal2.procedure_modal .content .body .new_info p,
#modal2.procedure_modal .content .body .new_info a,
#modal2.procedure_modal .content .body .excel_info p,
#modal2.procedure_modal .content .body .excel_info a {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

#modal2.procedure_modal .content .body .new_info p,
#modal2.procedure_modal .content .body .excel_info p {
  display: block;
}

#modal2.procedure_modal .content .body .new_info {
  background: rgba(76, 125, 203, 0.05);
}

#modal2.procedure_modal .content .body .excel_info {
  background: rgba(4, 165, 18, 0.05);
}

#modal2.procedure_modal .content .body .excel_info a {
  color: #04a512;
  display: inline-block;
}

#modal2.procedure_modal .content .body .excel_info a:hover {
  text-decoration: underline;
}




#modal2 .row label {
  font-family: 'NanumSquare', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #404040;
  padding-bottom: 6px;
  display: inline-block;
}

#modal2 .row input[type="text"],
#modal2 .row input[type="password"],
#modal2 .row input[type="date"],
#modal2 .row input[type="time"],
#modal2 .row select {
  width: 100%;
  min-height: 50px;
  border: 1px solid #dbdbdb;
  padding: 10px;
  font-size: 15px;
  font-family: 'Noto Sans KR', sans-serif;
  color: #202020;
  -webkit-transition: border .7s, outline .7s;
  transition: border .7s, outline .7s;
  outline: 1px solid transparent;
}

#modal2 .row input[type="text"]:focus,
#modal2 .row input[type="password"]:focus,
#modal2 .row input[type="date"]:focus,
#modal2 .row input[type="time"]:focus,
#modal2 .row select:focus {
  border-color: var(--main-color);
  outline: 1px solid var(--main-color);
}

#modal2 .row input[type="text"]::-webkit-input-placeholder,
#modal2 .row input[type="password"]::-webkit-input-placeholder,
#modal2 .row input[type="date"]::-webkit-input-placeholder,
#modal2 .row input[type="time"]::-webkit-input-placeholder,
#modal2 .row select::-webkit-input-placeholder {
  font-size: 15px;
  font-family: 'Noto Sans KR', sans-serif;
}

#modal2 .row input[type="text"]:-ms-input-placeholder,
#modal2 .row input[type="password"]:-ms-input-placeholder,
#modal2 .row input[type="date"]:-ms-input-placeholder,
#modal2 .row input[type="time"]:-ms-input-placeholder,
#modal2 .row select:-ms-input-placeholder {
  font-size: 15px;
  font-family: 'Noto Sans KR', sans-serif;
}

#modal2 .row input[type="text"]::-ms-input-placeholder,
#modal2 .row input[type="password"]::-ms-input-placeholder,
#modal2 .row input[type="date"]::-ms-input-placeholder,
#modal2 .row input[type="time"]::-ms-input-placeholder,
#modal2 .row select::-ms-input-placeholder {
  font-size: 15px;
  font-family: 'Noto Sans KR', sans-serif;
}

#modal2 .row input[type="text"]::placeholder,
#modal2 .row input[type="password"]::placeholder,
#modal2 .row input[type="date"]::placeholder,
#modal2 .row input[type="time"]::placeholder,
#modal2 .row select::placeholder {
  font-size: 15px;
  font-family: 'Noto Sans KR', sans-serif;
}

#modal2 .row select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("../images/select.png");
  background-repeat: no-repeat;
  background-position: right 2px center;
  cursor: pointer;
  background-color: #fff;
  border-radius: 0;
  padding: 10px 24px 10px 10px;
}

#modal2 .row select:focus {
  background-image: url("../images/selected.png");
}

/* 211124 추가 */
.option_area {
  width: 100%;
  position: relative;
  margin-top: 2rem;
}

.option_area .option_box {
  width: 100%;
  position: relative;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  padding: 2rem;
  border: 1px solid #dbdbdb;
  background: #fdfdfd;
  margin-top: -1px;
}

.option_area .option_box li {
  width: 100%;
  position: relative;
  padding-left: 10.8rem;
}

.option_area .option_box.none_image_box li {
	padding-left: 0;
}

.option_area .option_box li.option_image {
  width: 9.6rem;
  height: 9.6rem;
  position: absolute;
  display: block;
  border: 1px solid #f3f3f3;
  left: 2rem;
  top: 2rem;
  padding: 0 !important;
}

.option_area .option_box li.option_image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.option_area .option_box li.option_line {
  margin: 1rem 0;
}

.option_area .option_box li:last-child {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 2rem;
  right: 2rem;
  padding: 0 !important;
}

.option_area .option_box li p {
  font-size: 1.7rem;
  font-weight: 500;
  padding-right: 3.6rem;
}

.option_area .option_box li span:nth-of-type(1) {
  font-size: 1.6rem;
  font-weight: 600;
}

.option_area .option_box li span:nth-of-type(2) {
  font-size: 1.4rem;
  font-weight: 400;
}

.option_area .option_box li a {
  width: 2.4rem;
  height: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #ccc;
  border-radius: 100%;
}

.option_area .option_box li a .material-icons {
  font-size: 16px;
  font-weight: 400;
  color: #fefefe;
}

.option_area .option_box .count_box {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  position: relative;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.option_area .option_box .count_box button {
  background: #fff;
  width: 3.2rem;
  height: 3.2rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  font-size: 1.8rem;
  font-weight: 500;
  border: 1px solid #dbdbdb;
}

.option_area .option_box .count_box button:hover,
.option_area .option_box .count_box button:focus {
  outline: none !important;
}

.option_area .option_box .count_box input {
  width: 4.6rem !important;
  height: 3.2rem !important;
  padding: 0 !important;
  min-height: auto !important;
  text-align: center !important;
  border: 1px solid #dbdbdb !important;
  border-left: none !important;
  border-right: none !important;
  font-size: 1.5rem;
}

.option_area .option_box .count_box input:focus {
  border-color: #dbdbdb;
  outline: none !important;
}

/* 211124 추가 끝 */
