body {
  padding-top: 8rem;
}

body.freezing {
  overflow: hidden;
}

header {
  left: 0;
  right: 0;
  top: 0;
  position: fixed;
  z-index: 998;
}

header .header-wrap {
  position: relative;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

header .header-wrap .logo {
  position: absolute;
  left: 4vw;
  top: 2.4rem;
}

header .header-wrap .logo a {
  display: block;
  width: 24.3rem;
  height: 5.2rem;
  background: url("../images/common/logo.png") no-repeat left center;
  background-size: 100%;
}

header .header-wrap nav {
  width: 60%;
  /*   max-width:110rem; */
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

header .header-wrap nav .depth1 {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 10rem;
  width: calc(100% / 6);
  text-align: center;
}

header .header-wrap .util-group {
  position: absolute;
  top: 3.5rem;
  right: 4vw;
  display: flex;
  align-items: center;
}

.utils {
  display: flex;
  margin-right: 1.6vw;
}

.utils a {
  font-size: 1.7rem;
  color: var(--text-secondary);
}

.utils > a::after {
  content: "";
  width: 1px;
  height: 1.4rem;
  display: inline-block;
  margin: -3px 1rem 0;
  vertical-align: middle;
  background: #d9d9d9;
}

.utils > a:last-child::after {
    display: none;
}

.utils .lang {
  position: relative;
  width: 10.5rem;
  z-index: 3;
}

.utils .lang button {
  display: block;
  width: 100%;
  position: relative;
  text-align: left;
  font-size: 1.7rem;
  color: var(--text-secondary);
}

.utils .lang button.active {
  color: var(--color-primary);
  font-weight: 500;
}

.utils .lang button::after {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  position: absolute;
  right: -0.3rem;
  top: 50%;
  transform: translateY(-50%);
  background: url("../images/ico/arr_down.svg") no-repeat left top;
  background-size: 100%;
  opacity: 0.6;
}

.utils .lang button.active::after {
  transform: translateY(-50%) rotate(180deg);
}

.utils .lang ul {
  display: none;
  position: absolute;
  top: 3rem;
  width: 100%;
  left: 0;
  background: var(--bg-light);
  border: 1px solid var(--border);
}

.utils .lang ul li + li {
  border-top: 1px solid var(--border);
}

.utils .lang ul li a {
  display: block;
  text-align: center;
  line-height: 4rem;
  color: var(--text-primary);
}

.utils .lang ul li a.current {
  font-weight: 600;
}

header .header-wrap .util-group .btnSitemap {
  width: 3rem;
  height: 3rem;
  background: url("../images/common/btn_sitemap.svg") no-repeat center center;
  background-size: 100%;
}

header .depth2-wrap {
  position: fixed;
  left: 0;
  top: 10rem;
  right: 0;
  overflow: hidden;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  z-index: -9999;
  background-color: #fff;
  border-top: 1px solid var(--border);
}

header .depth2-wrap::before {
  content: "";
  max-width: 113rem;
  width: 80%;
  height: 11.3rem;
  position: absolute;
  left: 2rem;
  bottom: -1.6rem;
  background: url("../images/common/text_english.svg") no-repeat left bottom;
  background-size: 100%;
}

header .depth2-wrap.on {
  opacity: 1;
  visibility: visible;
  transition-delay: -0.1s;
  z-index: 999;
}

header .depth2-wrap .inner {
  max-width: 106rem;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

header .depth2-wrap .depth2 {
  padding: 3.4rem 0 2rem;
}

header .depth2-wrap .depth2 .tit {
  display: block;
  margin-bottom: 2rem;
  font-size: 2.6rem;
  font-weight: 600;
}

header .depth2-wrap .depth2:hover .tit,
header .depth2-wrap .depth2:focus .tit {
  color: var(--color-primary);
}

header .depth2-wrap .depth2 ul li a {
  display: block;
  padding: 0.8rem 0;
  font-size: 1.8rem;
  color: var(--text-secondary);
}

header .depth2-wrap .depth2 ul li a:hover,
header .depth2-wrap .depth2 ul li a:focus {
  color: var(--text-primary);
  font-weight: 500;
}

.sitemap-wrap {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  padding: 7rem 0 4rem;
  overflow-y: auto;
  background: var(--color-primaryDark);
  z-index: 998;
}

.sitemap-wrap.show {
  display: block;
}

.sitemap-wrap::before {
  content: "";
  width: 32rem;
  height: 37rem;
  position: fixed;
  top: 2.1rem;
  left: -3rem;
  background: url("../images/common/emblem_transparent.svg") no-repeat left top;
  background-size: 100%;
  opacity: 0.3;
}

.sitemap-wrap::after {
  content: "";
  width: 163.6rem;
  height: 16.3rem;
  position: fixed;
  bottom: 0;
  right: 0;
  background: url("../images/common/text_english.svg") no-repeat right -2rem bottom -3.7rem;
  background-size: 100%;
}

.sitemap-wrap .inner {
  max-width: 146.5rem;
}

.sitemap-wrap .title {
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  font-size: 6rem;
  color: #fff;
  font-weight: 700;
  border-bottom: 1px solid #ffffff10;
}

.sitemap-wrap .close {
  position: absolute;
  top: 5rem;
  right: 5rem;
  width: 6rem;
  height: 6rem;
  background: url("../images/common/btn_closeSite.svg") no-repeat left top;
  background-size: 100%;
}

.sitemap-wrap .utils {
  display: none;
}

.sitemap-wrap .sitemap {
  display: flex;
  justify-content: space-between;
  gap: 1.6rem;
}

.sitemap-wrap .sitemap .menu .tit {
  margin-bottom: 4rem;
  font-size: 3rem;
  color: #fff;
  font-weight: 600;
}

.sitemap-wrap .sitemap .menu:hover .tit,
.sitemap-wrap .sitemap .menu:focus .tit {
  text-decoration: underline;
  text-underline-position: under;
}

.sitemap-wrap .sitemap .menu ul li + li {
  margin-top: 2rem;
}

.sitemap-wrap .sitemap .menu ul li a {
  display: block;
  font-size: 2rem;
  color: #ffffff70;
}

.sitemap-wrap .sitemap .menu ul li a:hover,
.sitemap-wrap .sitemap .menu ul li a:focus {
  color: #ffffff;
}

.nav-bg {
  display: none;
  position: fixed;
  left: 0;
  top: 4rem;
  right: 0;
  bottom: 0;
  z-index: 98;
  background: rgba(0, 0, 0, 0.6);
}

.nav-bg.on {
  display: block;
}

footer {
  position: relative;
  padding: 0 0 2rem;
  /* border-top:2px solid #1d192f; */
  background: #739def;
}

.side-button {
  position: absolute;
  bottom: calc(100% - 30px);
  right: 136px;
  z-index: 1;
  display: block;
  width: 60px;
  height: 60px;
  background: #fff url("/pub/images/common/arrow_gotop.svg") no-repeat 50% 50%;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 10px;
}

footer .logo {
  width: 18.1rem;
  height: 3.9rem;
  margin-bottom: 4rem;
  /* background:url("../images/common/footer_logo.png") no-repeat left top; */
  background: url("../images/common/logo.png") no-repeat left center;
  background-size: 100%;
}

footer .address-wrap {
  max-width: 70rem;
}

footer .address-wrap li {
  position: relative;
  display: inline-block;
  margin: 0.4rem 0;
  font-size: 1.7rem;
  color: #fff;
}

footer .address-wrap li:not(.block) {
  padding-right: 2.5rem;
}

footer .address-wrap li:not(.block)::before {
  content: "";
  width: 1px;
  height: 1.2rem;
  position: absolute;
  top: 0.6rem;
  right: 1rem;
  background: #ffffff1a;
}

/* footer .copy {margin-top:2rem;} */

footer .copy p {
  font-size: 1.7rem;
  color: #fff;
}

footer .copy p + p {
  margin-top: 0.4rem;
}

footer .footer-btn {
  position: relative;
  display: flex;
  gap: 2rem;
  margin-bottom: 30px;
  padding: 3rem 0;
}
footer .footer-btn:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  background: #fff3;
  transform: translateX(-50%);
}

footer .footer-btn a {
  /* width:18.7rem; */
  position: relative;
  /* padding-left:2rem; */
  line-height: 1;
  font-size: 1.7rem;
  font-weight: 500;
  color: #fff;
  /* background:#fff; */
  /* border:1px solid #282536; */

  /* color:#fff;
  background:#282539; */
}

footer .footer-btn a.more::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  width: 1px;
  height: 10px;
  background: #ddd;
  margin-top: -5px;
  /* width:1.3rem;
  height:1.3rem;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  right:2rem;
  background:url("../images/ico/ico_plus.svg") no-repeat left top;
  background-size:100%; */
  /* filter:brightness(10); */
}

footer .footer-btn a:hover,
footer .footer-btn a:focus {
  background: var(--color-primary);
  color: #fff;
}

footer .footer-btn a.insta::before {
  content: "";
  width: 2rem;
  height: 2rem;
  display: inline-block;
  vertical-align: middle;
  margin: -3px 0.8rem 0 0;
  background: url("../images/ico/ico_insta.png") no-repeat left top;
  background-size: 100%;
}

.side-button.go-top,
.go-top {
  position: fixed;
  bottom: 4rem;
  right: 5%;
  width: 6rem;
  height: 6rem;
  transform: rotate(180deg);
  border: 1px solid var(--border-light);
  background: url("../images/ico/arr_down.svg") no-repeat center center #fff;
  background-size: 3rem;
  border-radius: 50%;
  box-shadow: 0 -0.4rem 1rem 0 #00000010;
}

/* common */
.contents {
  padding-top: 8rem;
  padding-bottom: 12rem;
  min-height: calc(100vh - 664.5px);
}

.contents.bottom {
  padding-bottom: 0;
}

.last-section {
  padding-bottom: 12rem !important;
}

.section + .section {
  margin-top: 8rem;
}

.section.sm + .section.sm {
  margin-top: 6rem;
}

.bg-light {
  padding: 3rem;
  background: var(--bg-light);
}

.bg-light.sm {
  padding: 2.4rem;
}

.bg-light.border {
  border: 1px solid var(--border);
}
.bg-light.border-light {
  border: 1px solid var(--border-light);
}

.bg-light.section {
  padding: 6rem 0;
}

.img img {
  max-width: 100%;
}

.img.center {
  text-align: center;
}

.bullet-list > * {
  position: relative;
  padding-left: 1.6rem;
}

.bullet-list > * + * {
  margin-top: 0.7rem;
}

.bullet-list > *::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  position: absolute;
  left: 0;
  top: 1.1rem;
  border-radius: 50%;
  background: var(--text-secondary);
}

.bullet-list.primary > *::before {
  background-color: var(--color-primary);
}

.label-cont {
  display: flex;
  gap: 1.2rem;
}

.label-cont + .label-cont {
  margin-top: 1.2rem;
}

.label-cont .label {
  flex-shrink: 0;
  flex-basis: 8rem;
}

.label-cont .label + * {
  flex-grow: 1;
}

/* tabs */
[class*="tabs-"] {
  display: flex;
}

.tabs-type1 {
  display: block;
  position: relative;
  margin-bottom: 6rem;
  border-right: 1px solid var(--border);
}

.tabs-type1::before {
  content: "";
  left: 0;
  right: 0;
  height: 1px;
  bottom: 0;
  position: absolute;
  background: var(--border);
  z-index: -1;
}

.tabs-type1 .current {
  display: none;
}

.tabs-type1 .list {
  display: flex;
  width: 100%;
}

.tabs-type1 .list button {
  position: relative;
  padding: 0 0.6rem;
  min-height: 5.5rem;
  flex-grow: 1;
  flex-basis: 0;
  font-weight: 500;
  color: var(--text-secondary);
}

.tabs-type1 .list button.active {
  color: #fff;
  font-weight: 600;
}

.tabs-type1 .list button::before {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 1px;
  position: absolute;
  border: 1px solid var(--border);
  border-bottom: 0;
  border-right: 0;
  z-index: -1;
}

.tabs-type1 .list button.active::before {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.tabs-type2 {
  margin-bottom: 3rem;
}

.tabs-type2 button {
  flex: 1 1 0;
  position: relative;
  padding-bottom: 1.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.tabs-type2 button.active {
  color: var(--color-primary);
  font-weight: 700;
}

.tabs-type2 button.active::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: var(--color-primary);
}

.tabs-type3 {
  margin-bottom: 6rem;
  display: flex;
  gap: 3rem;
  border-bottom: 1px solid var(--border);
}

.tabs-type3 button {
  position: relative;
  padding-bottom: 1.2rem;
  font-size: 2rem;
  color: var(--text-secondary);
}

.tabs-type3 button.active {
  font-weight: 600;
  color: var(--color-primary);
}

.tabs-type3 button.active::before {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: -1px;
  background: var(--color-primary);
}

.tab-container .tab-content:not(:first-child) {
  display: none;
}

/* table */
table.type1 {
  border-top: 2px solid var(--color-primaryDark);
  border-bottom: 1px solid var(--border);
}

table.type1.no-top {
  border-top: 0;
}

table.left {
  border-bottom: 0;
}

table.type1 th,
table.type1 td {
  text-align: center;
}

table.type1.border tr th:not(:first-child),
table.type1.border tr td:not(:first-child) {
  border-left: 1px solid var(--border);
}

table.type1.border tr:not(:first-child) th {
  border-top: 1px solid var(--border);
}

table.type1 th {
  padding: 1.1rem;
  font-weight: 600;
  background: #f6f7fb;
}

table.type1 tbody tr:not(:last-child) th {
  border-bottom: 1px solid var(--border);
}

table.left tbody th {
  padding: 1.2rem 1.2% 1.2rem 1.7%;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

table.type1 th .bullet-gray,
table.type1 th .bullet-gray li {
  display: inline-block;
}

table.type1 td {
  padding: 1.1rem 1rem;
  word-break: break-word;
  border-top: 1px solid var(--border);
}

table.type1 td.no_item {
  background: #f5f5f5;
}

table.type1 td.t-left {
  padding-left: 2rem;
}

table .b-left {
  border-left: 1px solid var(--border);
}

table.left tbody td {
  padding: 1.6rem 1.8%;
  height: 9rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

table td.session-red {
  background: #fff2ea;
}
table td.session-blue {
  background: #eaf9ff;
}
table td.session-green {
  background: #ebfbe7;
}

.table-scroll {
  margin: 2rem 0;
  overflow-y: hidden;
  overflow-x: auto;
  position: relative;
  background: #fff;
}

.table-scroll .scr-dim {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.table-scroll .scr-dim {
  position: absolute;
  left: 0;
  top: 0;
  bottom: -1px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.table-scroll .scr-dim.hide {
  opacity: 0;
  z-index: -2;
}

.table-scroll .scr-dim::before {
  content: "";
  width: 8.2rem;
  height: 3rem;
  background: url("../images/ico/ico_scroll.svg") no-repeat left top;
  background-size: 100%;
}

.table-scroll .scr-dim p {
  margin-top: 2rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
}

.form-sch {
  margin-bottom: 4.8rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.form-sch .select-wrap {
  flex-basis: 25rem;
}

.form-sch .select-wrap .select,
.form-sch .select-wrap ul li .option,
.form-sch input {
  font-size: 1.6rem;
}

.form-sch .search-wrap {
  flex-basis: 34rem;
}

.search-wrap {
  display: flex;
}

.form-right .search-wrap {
  max-width: 34rem;
}
.search-wrap input {
  height: 5rem;
  flex-grow: 1;
  border-right: 0;
}

.search-wrap button {
  width: 5rem;
  height: 5rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-left: 0;
  background: url("../images/ico/ico_sch.svg") no-repeat center center #fff;
  background-size: 2rem;
}

/* select */
.select-wrap {
  position: relative;
  width: 20rem;
}

.form-right .search-wrap,
.form-right .select-wrap {
  margin-left: auto;
}

.select-wrap.w-40 {
  width: 40rem;
}

.select-wrap.w-70 {
  width: 70rem;
}
.select-wrap.w-35 {
  width: 35rem;
}

.select-wrap .select {
  width: 100%;
  height: 4rem;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4.8rem 0 2rem;
  text-align: left;
  border: 1px solid var(--border);
  background: #fff;
}

.select-wrap .select.unselected {
  color: #999;
}

.select-wrap .select.active {
  border-color: #222;
  border-bottom-color: var(--border);
}

.select-wrap .select::before {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  background: url("../images/ico/arr_down_btm.svg") no-repeat left top;
  background-size: 100%;
}

.select-wrap .select.active::before {
  transform: translateY(-50%) rotate(180deg);
}

.select-wrap ul {
  display: none;
  position: absolute;
  width: 100%;
  max-height: 22rem;
  left: 0;
  padding: 0.6rem 0;
  overflow-y: auto;
  background: #fff;
  z-index: 1;
  border: 1px solid #222;
  border-top: 0;
}

.select-wrap ul li .option {
  width: 100%;
  display: block;
  padding: 0.6rem 2rem;
  text-align: left;
  color: #000;
}

.select-wrap ul li .option:hover,
.select-wrap ul li .option:focus {
  color: var(--color-primary);
  font-weight: 600;
}

.write .row .select-wrap {
  max-width: 62.6rem;
  width: 80%;
}

.form-right.flex {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.form-right.flex .select-wrap,
.form-right.flex .search-wrap {
  margin-left: 0;
}

.form-right.flex .select-wrap {
  width: 16rem;
}

/* button */
[class*="btn-"] {
  display: inline-block;
  position: relative;
  text-align: center;
  color: #fff;
  background: var(--color-primaryDark);
  border: 1px solid var(--color-primaryDark);
}

[class*="btn-"].outline {
  color: var(--color-primaryDark);
  background: #fff;
}
[class*="btn-"].outline.hover:hover,
[class*="btn-"].outline.hover:focus {
  color: #fff;
  background: var(--color-primaryDark);
}
[class*="btn-"].outline.hover:hover .ico-after img,
[class*="btn-"].outline.hover:focus .ico-after img {
  filter: brightness(10);
}

[class*="btn-"].outline-dark {
  color: var(--text-primary);
  background: #fff;
  border-color: var(--border);
}

[class*="btn-"].outline-gray {
  color: var(--text-secondary);
  background: #fff;
  border-color: var(--border);
}

[class*="btn-"].outline-white {
  color: #fff;
  background: var(--color-primaryDark);
  border-color: #fff;
}
[class*="btn-"].outline-white.hover:hover,
[class*="btn-"].outline-white.hover:focus {
  color: var(--color-primaryDark);
  background: #fff;
  border-color: var(--color-primaryDark);
}

[class*="btn-"].dark {
  background: #3e3e3e;
}

.btn-xs {
  padding: 0 1.2rem;
  font-size: 1.4rem;
  font-weight: 500;
}
.btn-sm {
  min-width: 10.9rem;
  padding: 0.2rem 1rem;
  font-size: 1.6rem;
  font-weight: 600;
}
.btn-rg {
  min-width: 12rem;
  padding: 1rem 1.6rem;
  font-weight: 600;
}
.btn-md {
  min-width: 18rem;
  padding: 1.4rem 2rem;
  font-weight: 600;
  font-size: 2rem;
}
.btn-lg {
  min-width: 12rem;
  padding: 1.6rem 2rem;
  font-weight: 600;
  font-size: 2rem;
}

.btn_down {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.btn_down:after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: var(--color-primary);
  mask: url("../images/ico/icon_download.svg") no-repeat 50% 50% / contain;
  -webkit-mask: url("../images/ico/icon_download.svg") no-repeat 50% 50% / contain;
}
.btn_down:hover:after {
  background: #fff;
}

[class*="btn-"].w-18 {
  width: 18rem !important;
}
[class*="btn-"].w-20 {
  width: 20rem !important;
}
[class*="btn-"].w-22 {
  width: 22rem !important;
}
[class*="btn-"].w-28 {
  width: 28rem !important;
}

[class*="btn-"][class*="after-"] {
  padding-left: 2rem;
  padding-right: 4.5rem;
  text-align: left;
}

[class*="btn-"][class*="after-"]::after {
  content: "";
  width: 2rem;
  height: 2rem;
  position: absolute;
  right: 1.8rem;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: left top;
}

[class*="btn-"].after-new::after {
  background-image: url("../images/ico/ico_window_white.svg");
}

.t-center [class*="btn-"]:only-child {
  max-width: 50rem;
  width: 100%;
}

.group-btn {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.group-btn.center {
  justify-content: center;
}
.group-btn.align_center {
  align-items: center;
}

.group-btn .btn-md {
  font-size: 1.5rem;
}

.write-wrap + .group-btn {
  margin-top: 6rem;
}

[class*="btn-"] [class*="ico"] {
  width: 2rem;
  height: 2rem;
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
}

[class*="btn-"] [class*="ico"] img {
  width: 100%;
}

[class*="btn-"] .ico-before {
  margin-right: 0.6rem;
}
[class*="btn-"] .ico-after {
  margin-left: 0.6rem;
}

[class*="btn-"].disabled {
  cursor: inherit;
  color: var(--text-secondary);
  background: #ebebeb;
  border-color: var(--border-light);
}

/* text */
.new-badge::after {
  content: "N";
  display: inline-block;
  width: 2.4rem;
  line-height: 2.4rem;
  font-size: 1.4rem;
  font-weight: 600;
  vertical-align: text-top;
  margin-left: 0.8rem;
  text-align: center;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50%;
}

.t-ps {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.required::after {
  content: " *";
  color: var(--color-primary);
}

/* 오시는길 */

.map-container .map-wrap {
  height: 46rem;
}

.map-container .map-info {
  display: flex;
  position: relative;
  padding: 4rem 3%;
  background: var(--color-primary);
}

.map-container .map-info::before {
  content: "";
  width: 28.4rem;
  height: 31.3rem;
  position: absolute;
  right: 0;
  top: 3.3rem;
  background: url("../images/common/emblem_transparent.svg") no-repeat left top;
  background-size: 100%;
}

.map-container .map-info .logo {
  width: 36rem;
  height: 6rem;
  background: url("../images/common/logo_eng_white.svg") no-repeat left top;
  background-size: 100%;
}

.map-container .map-info .info {
  position: relative;
  padding-left: 13%;
}

.map-container .map-info .info::before {
  content: "";
  width: 1px;
  top: 0.5rem;
  bottom: 0.5rem;
  left: 21%;
  position: absolute;
  border-left: 1px dashed #ffffff30;
}

.map-container .map-info .info p {
  position: relative;
  padding-left: 3.2rem;
  color: #fff;
  font-weight: 500;
}

.map-container .map-info .info p + p {
  margin-top: 1.6rem;
}

.map-container .map-info .info p::before {
  content: "";
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  left: 0;
  top: 0.3rem;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left top;
}

.map-container .map-info .info p.add::before {
  background-image: url("../images/ico/ico_pin_white.svg");
}
.map-container .map-info .info p.tel::before {
  background-image: url("../images/ico/ico_call_white.svg");
}
.map-container .map-info .info p.fax::before {
  background-image: url("../images/ico/ico_fax_white.svg");
}

.trans {
  margin-top: 6rem;
}

.trans dl {
  display: flex;
  gap: 3rem;
}

.trans dl + dl {
  margin-top: 2rem;
}

.trans dl dt {
  width: 11.2rem;
  height: 11.2rem;
  flex-shrink: 0;
  padding-top: 2.4rem;
  text-align: center;
  font-weight: 700;
  border-radius: 50%;
  background: var(--bg-light);
}

.trans dl dt::before {
  content: "";
  width: 3.5rem;
  height: 3.5rem;
  display: block;
  margin: 0 auto 0.7rem;
  background-size: 100%;
  background-position: left top;
  background-repeat: no-repeat;
}

.trans dl dt.metro::before {
  background-image: url("../images/ico/ico_metro.svg");
}
.trans dl dt.bus::before {
  background-image: url("../images/ico/ico_bus.svg");
}

.trans dl dd {
  flex-grow: 1;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.trans dl dd.d-flex {
  gap: 5%;
}

.trans dl dd.d-flex .f-semibold {
  flex-shrink: 0;
}

.trans dl dd.d-flex .bus-info {
  flex-grow: 1;
  position: relative;
}

.trans dl dd.d-flex .bus-info p {
  position: relative;
  padding-left: 5.8rem;
  color: var(--text-secondary);
}

.trans dl dd.d-flex .bus-info p + p {
  margin-top: 1rem;
}

.trans dl dd.d-flex .bus-info span {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 4.6rem;
  line-height: 2.6rem;
  font-size: 1.6rem;
  text-align: center;
  color: #fff;
  font-weight: 600;
  background: #62af1e;
}

.trans dl dd.d-flex .bus-info span.blue {
  background: #366fc6;
}

.result-wrap {
  max-width: 50rem;
  margin: 0 auto;
}

.result-tit {
  margin-bottom: 4.8rem;
  text-align: center;
  font-weight: 500;
}

.result-tit::before {
  content: "";
  width: 8rem;
  height: 8rem;
  display: block;
  margin: 0 auto 2.4rem;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left top;
}

.result-tit.confirm::before {
  background-image: url("../images/ico/ico_result_confirm.svg");
}
.result-tit.docu::before {
  background-image: url("../images/ico/ico_result_docu.svg");
}

.applicate-wrap .tit {
  padding: 1.6rem 2.6rem;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
}

.applicate-wrap .tit p {
  padding-left: 2.6rem;
  position: relative;
  font-size: 2rem;
  font-weight: 600;
}

.applicate-wrap .tit p::before {
  content: "";
  width: 2.1rem;
  height: 2rem;
  position: absolute;
  left: 0;
  top: 0.4rem;
  background: url("../images/ico/ico_docu.svg") no-repeat left top;
  background-size: 100%;
}

.applicate-wrap .tit span {
  display: block;
  margin-top: 1rem;
}

.applicate-wrap .info {
  padding: 1rem 3rem;
  margin-bottom: 1.6rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.applicate-wrap .info dl {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
}

.applicate-wrap .info dt {
  color: var(--text-secondary);
  font-weight: 500;
}
.applicate-wrap .info dd {
  font-weight: 600;
  text-align: right;
}

.btn-copy {
  padding: 0 1rem 0 0.6rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  background: #fff !important;
  border: 1px solid var(--border) !important;
}

.btn-copy .ico-before {
  width: 1.6rem;
  height: 1.6rem;
}

.applicate-wrap .apply-num {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  gap: 0.4rem 0.8rem;
}

.result-wrap .group-btn {
  margin-top: 6rem;
}

.result-wrap .group-btn [class*="btn"] {
  flex: 1 1 0;
}

.result-wrap .group-btn .btn-lg {
  font-size: 1.8rem;
}

.result-wrap .form input {
  width: 100%;
}

.result-wrap .form input + input {
  margin-top: 1rem;
}

.pagination {
  margin-top: 6rem;
  text-align: center;
  font-size: 0;
}

.pagination a {
  display: inline-block;
  width: 4rem;
  height: 4rem;
  font-family: "Roboto";
  text-align: center;
}

.pagination a.num {
  position: relative;
  font-size: 1.5rem;
  line-height: 4rem;
  font-weight: 600;
}

.pagination a.num.current::before {
  content: "";
  width: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.6rem;
  height: 2px;
  position: absolute;
  background: var(--color-dark);
}

.pagination a.num:hover {
  font-weight: 600;
}

.pagination a.arrow {
  width: 3rem;
}

.pagination a.arrow.prev,
.pagination a.arrow.next {
  background: url("../images/ico/page_prev.svg") no-repeat center center;
  background-size: 1.4rem;
}
.pagination a.arrow.first,
.pagination a.arrow.last {
  background: url("../images/ico/page_first.svg") no-repeat center center;
  background-size: 1.4rem;
}

.pagination a.arrow.disabled {
  opacity: 0.38;
  cursor: inherit;
}

.pagination a.arrow.next {
  transform: rotate(180deg);
}

.pagination a.arrow.last {
  transform: rotate(180deg);
}

.member-bg {
  margin: -8rem 0 -12rem;
  padding: 8rem 0 10rem;
  background: var(--bg-light);
}

.member-bg + .inner {
  margin-top: 20rem;
}


.member-wrap .top-info {
  margin-bottom: 4rem;
  padding: 3rem 1rem;
  text-align: center;
  background: #dfedf4;
}

.member-wrap .content {
  padding: 5rem;
  background: #fff;
  box-shadow: 0.4rem 0.3rem 2rem 0 #0000001c;
  width:44%;
  margin:0 auto;
}

.member-wrap .content .heading2 {
  position: relative;
  margin-bottom: 4rem;
  text-align: center;
}
.heading2 em {
  display: block;
  font-size: 15px;
  color: #666;
  font-style: normal;
  font-weight: 400;
}
.member-wrap .content .heading2.line {
  padding-bottom: 3.3rem;
}

.member-wrap .content .heading2.line::before {
  content: "";
  width: 3rem;
  height: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background: #d9d9d9;
}

.member-wrap .content .form .row + .row {
  margin-top: 2.4rem;
}

.member-wrap .content .form .row .label {
  margin-bottom: 1.4rem;
  font-weight: 700;
}

.member-wrap .content .form .row input,
.member-wrap .content .form .row .select-wrap {
  width: 100%;
}

.member-wrap .content .form .row .radio {
  width: 47%;
  margin-right: 0;
}

.member-wrap .content .form .row .select-wrap .select {
  width: 100%;
  height: 4rem;
}

.member-wrap .content .form .row .input-btn {
  display: flex;
  gap: 1rem;
}

.member-wrap .content .login-btm {
  margin-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  font-size: 1.6rem;
}

.member-wrap .content .login-btm .checkbox input + label::before {
  width: 1.8rem;
  height: 1.8rem;
  top: 0.2rem;
  background: #fff;
  border: 1px solid var(--border);
}
.member-wrap .content .login-btm .checkbox input:checked + label::before {
  background-image: url("../images/ico/ico_checkbox_on.svg");
  background-size: 100%;
  border: 0;
}

.member-wrap .content .login-btm .find {
  display: flex;
}

.member-wrap .content .group-btn {
  margin-top: 4.8rem;
  flex-direction: column;
  gap: 1rem;
}

.member-wrap .content .group-btn a {
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.5rem;
}

.pay-container {
  display: flex;
  align-items: flex-start;
  gap: 3.4%;
}

.pay-container .left {
  flex-grow: 1;
}

.pay-container .sticky {
  flex-basis: 26.5%;
  min-width: 25rem;
  position: sticky;
  top: 10rem;
  border: 2px solid var(--color-primary);
}

.pay-container .sticky .info {
  padding: 2.4rem 2.4rem 3rem;
}

.pay-container .sticky .info dl + dl {
  margin-top: 1.7rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.pay-container .sticky .info dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pay-container .sticky .btn-rg {
  width: 100%;
  padding-top: 1.6rem;
  padding-bottom: 1.3rem;
}

.captcha {
  display: flex;
  gap: 1rem;
  width: 80%;
  max-width: 60rem;
}

.captcha .img {
  display: flex;
  flex-basis: 20rem;
  flex-shrink: 0;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 0.4rem;
}

.captcha .img img {
  display: block;
  margin: 0 auto;
}

.captcha .img button {
  width: 5.8rem;
  height: 5.8rem;
  background: url("../images/ico/ico_refresh.svg") no-repeat center;
  border-left: 1px solid var(--border);
}

.captcha input {
  flex-grow: 1;
  width: calc(100% - 21rem) !important;
  border-radius: 0.4rem;
}

.t-divide::after {
  content: "";
  width: 1px;
  height: 1.5rem;
  display: inline-block;
  margin: -3px 0.8rem 0 1rem;
  vertical-align: middle;
  background: var(--border);
}

.table-box {
  margin-bottom: 1rem;
  border-top: 2px solid var(--color-primaryDark);
}

.table-box .head {
  font-weight: 600;
  background: var(--color-primaryLight);
}

.table-box .head .row {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.table-box .row {
  padding: 1.2rem 0.8rem;
  display: flex;
  align-items: center;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.table-box .row > * {
  flex-basis: 0;
  flex-grow: 1;
}

.table-box .row .label {
  display: none !important;
}

.table-box .row .btn-sm {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.table-box .row .btn-sm + .btn-sm {
  margin-top: 0.8rem;
}

.box-delete {
  width: 2.4rem;
  height: 2.4rem;
  background: url("../images/ico/ico_box_delete.svg") no-repeat left top;
  background-size: 100%;
}
.btn_modify {
  width: 2.4rem;
  height: 2.4rem;
  background: var(--color-primary) url("../images/ico/icon_modify.svg") no-repeat 50% 50% / 50%;
}

.add-row {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: url("../images/ico/ico_plus_round_white.svg") no-repeat center
    var(--color-primaryDark);
  background-size: 2rem;
}

.table-box .w-1 {
  flex-basis: 6.5rem;
}
.table-box .w-15 {
  flex-basis: 12rem;
}
.table-box .w-2 {
  flex-basis: 17rem;
}
.table-box .w-3 {
  flex-basis: 18.5rem;
}
.table-box .w-4 {
  flex-basis: 23rem;
}
.table-box .w-5 {
  flex-basis: 24.5rem;
}
.table-box .w-6 {
  flex-basis: 27rem;
}
.table-box .w-7 {
  flex-basis: 47rem;
}
.table-box .w-8 {
  flex-basis: 53rem;
}

.table-box.m-pad .body .row > div:not(.btns) {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.table-box .row .select-wrap,
.table-box .row input {
  width: 100%;
}

.table-box .row .year {
  justify-content: flex-start;
}

.table-box .row .year .select-wrap,
.table-box .row .year input {
  width: calc(100% - 6rem);
}

.table-box .row .period input {
  width: calc(50% - 5.5rem);
}

.table-box .row .select-wrap .select {
  height: 6rem;
}

.table-box .row .txt {
  padding-left: 1rem;
  letter-spacing: 0.3rem;
}

.table-box .row .period .txt {
  padding-right: 1rem;
}

.table-box.m-table .btn-sm {
  min-width: 7rem;
  padding: 0.2rem 2rem;
}

.table-box.m-table .print-btn {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 3%;
}

.table-box .row .print-btn .btn-sm {
  width: 10.8rem;
}

.table-box .row .print-btn .btn-sm + .btn-sm {
  margin: 0;
}

.table-box.m-table .c-error + .btn-sm {
  margin-top: 0.5rem;
}

.mo_vw {
  display: none;
}

@media screen and (max-width: 1600px) {
  header .header-wrap .logo {
    left: 2rem;
  }

  header .header-wrap nav {
    width: 46%;
  }

  header .header-wrap .util-group {
    right: 2rem;
  }

  .go-top {
    right: 2rem;
  }
}

@media screen and (max-width: 1200px) {
  body {
    padding-top: 8rem;
  }

  header .header-wrap .logo {
    top: 2rem;
  }
  header .header-wrap .logo a {
    width: 17vw;
    height: 3.8vw;
  }

  header .header-wrap nav {
    transform: translateX(-3rem);
  }

  header .header-wrap nav .depth1 {
    font-size: 1.9rem;
    line-height: 8rem;
  }

  header .depth2-wrap {
    top: 8rem;
  }

  header .depth2-wrap .depth2 {
    padding: 2.6rem 0 1.8rem;
  }

  header .depth2-wrap .depth2 .tit {
    margin-bottom: 1.2rem;
    font-size: 2.4rem;
  }

  header .depth2-wrap .depth2 ul li a {
    padding: 0.6rem 0;
    font-size: 1.8rem;
  }

  header .header-wrap .util-group {
    top: 2.8rem;
  }

  header .header-wrap .util-group .utils .lang {
    width: 9.5rem;
  }

  header .header-wrap .util-group .utils a,
  header .header-wrap .util-group .utils .lang button {
    font-size: 1.5rem;
  }

  header .header-wrap .util-group .btnSitemap {
    width: 2.4vw;
    height: 2.4vw;
  }
}

/* tablet */
@media screen and (max-width: 1024px) {
  header .header-wrap {
    height: 8rem;
  }

  header .header-wrap .logo a {
    width: 17rem;
    height: 3.9rem;
  }

  header .header-wrap nav,
  header .depth2-wrap {
    display: none;
  }

  header .header-wrap .util-group {
    top: 2.6rem;
  }

  header .header-wrap .util-group .btnSitemap {
    width: 3rem;
    height: 3rem;
    background-size: 2.4rem;
  }

  header .header-wrap .util-group .btnSitemap.on {
    background-size: 3rem;
    background-image: url("../images/common/btn_closeSite.svg");
  }

  .sitemap-wrap {
    top: 8rem;
    height: calc(100vh - 8rem);
    padding: 0 2rem 5rem;
    background: #fff;
    border-top: 1px solid var(--border);
    z-index: 997;
  }

  .sitemap-wrap .title,
  .sitemap-wrap .close {
    display: none;
  }

  .sitemap-wrap::before,
  .sitemap-wrap::after {
    display: none;
  }

  .sitemap-wrap .sitemap {
    display: block;
  }

  .sitemap-wrap .sitemap .menu .tit {
    position: relative;
    margin-bottom: 0;
    font-size: 2.4rem;
    line-height: 7rem;
    color: var(--text-primary);
    cursor: pointer;
    border-bottom: 1px dashed var(--border);
  }

  .sitemap-wrap .sitemap .menu .tit.active {
    color: var(--color-primary);
  }

  .sitemap-wrap .sitemap .menu .tit::before {
    content: "";
    width: 2.8rem;
    height: 2.8rem;
    position: absolute;
    right: -0.4rem;
    top: 50%;
    transform: translateY(-50%);
    background: url("../images/ico/arr_down_round.svg") no-repeat left top;
    transition: all 0.2s;
    background-size: 100%;
  }

  .sitemap-wrap .sitemap .menu .tit.active::before {
    transform: translateY(-50%) rotate(180deg);
  }

  .sitemap-wrap .sitemap .menu:hover .tit,
  .sitemap-wrap .sitemap .menu:focus .tit {
    text-decoration: inherit;
  }

  .sitemap-wrap .sitemap .menu ul {
    display: none;
    padding: 2rem 0;
    border-bottom: 1px dashed var(--border);
  }

  .sitemap-wrap .sitemap .menu ul li + li {
    margin-top: 1.6rem;
  }

  .sitemap-wrap .sitemap .menu ul li a {
    display: block;
    font-size: 1.8rem;
    color: #000;
  }

  .sitemap-wrap .sitemap .menu ul li a:hover,
  .sitemap-wrap .sitemap .menu ul li a:focus {
    color: #000;
    color: var(--color-primary);
  }

  footer .footer-btn {
    position: relative;
    right: auto;
    top: auto;
    margin-top: 3rem;
  }

  .map-container .map-info {
    flex-direction: column;
    gap: 3rem;
  }

  .map-container .map-info .info {
    padding-left: 0;
  }

  .map-container .map-info .info::before {
    display: none;
  }

  .scr-text.show-tab {
    display: inline-block;
  }

  .write .row .select-wrap {
    max-width: 100%;
    width: 100%;
  }

  .captcha {
    width: 100%;
  }
}

/* mobile */
@media screen and (max-width: 768px) {
  body {
    padding-top: 6rem;
  }

  header .header-wrap {
    height: 6rem;
  }

  header .header-wrap .logo {
    top: 1.7rem;
  }

  header .header-wrap .logo a {
    width: 12.1rem;
    height: 2.6rem;
  }

  header .header-wrap .util-group {
    top: 1.6rem;
  }

  header .header-wrap .util-group .utils {
    display: none;
  }

  .sitemap-wrap {
    top: 6rem;
    height: calc(100vh - 6rem);
    padding: 0 0 5rem;
  }

  .sitemap-wrap .utils {
    display: flex;
    margin-right: 0;
    padding: 1.8rem 2rem;
    background: var(--color-primaryDark);
  }

  .utils a {
    font-size: 1.3rem;
    color: #fff;
  }

  .utils > a::after {
    height: 1.2rem;
    margin: -3px 1.1rem 0;
    background: #ffffff20;
  }

  .utils .lang {
    width: 8.6rem;
  }

  .utils .lang button {
    font-size: 1.3rem;
    color: #fff;
  }

  .utils .lang button.active {
    color: #fff;
    font-weight: 400;
  }

  .utils .lang button::after {
    width: 2rem;
    height: 2rem;
    opacity: 1;
    filter: brightness(10);
  }

  .utils .lang ul {
    top: 2.7rem;
  }

  .utils .lang ul li a {
    line-height: 3.7rem;
  }

  .sitemap-wrap .sitemap .menu .tit {
    font-size: 2rem;
  }

  .sitemap-wrap .sitemap .menu .tit::before {
    width: 2.5rem;
    height: 2.5rem;
  }

  .sitemap-wrap .sitemap .menu ul li + li {
    margin-top: 1.4rem;
  }

  .sitemap-wrap .sitemap .menu ul li a {
    font-size: 1.5rem;
  }

  footer {
    padding: 0 0 2rem;
  }

  footer .address-wrap {
    max-width: 100%;
  }

  footer .address-wrap li {
    display: inline-block;
    margin: 0.2rem 0;
    font-size: 1.3rem;
  }

  footer .address-wrap li.m-block {
    display: block;
  }

  footer .address-wrap li.m-block::before {
    display: none;
  }

  footer .address-wrap li:not(.block) {
    padding-right: 2.1rem;
  }

  footer .address-wrap li:not(.block)::before {
    top: 0.4rem;
    right: 0.8rem;
  }

  /*   footer .copy {margin-top:1.4rem;} */

  footer .copy p {
    font-size: 1.3rem;
  }

  footer .copy p + p {
    margin-top: 0.6rem;
  }

  footer .footer-btn {
    flex-wrap: wrap;
    gap: 1rem 1.4rem;
    margin-top: 0;
    overflow: hidden;
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
  }

  footer .footer-btn a {
    /*width:calc(50% - 0.5rem);
    padding-left:1.6rem;
    line-height:4.8rem;*/
    font-size: 1.4rem;
  }

  footer .footer-btn a.more::before {
    left: -7px;
  }
  /*footer .footer-btn a.more::before {
    width:1rem;
    height:1rem;
    right:2rem;
  }

  footer .footer-btn a.insta::before {
    width:1.6rem;
    height:1.6rem;
    margin:-3px 0.8rem 0 0;
  }*/

  .side-button.go-top,
  .go-top {
    position: fixed;
    bottom: 2rem;
    width: 4.6rem;
    height: 4.6rem;
    background-size: 2.4rem;
  }

  /* common */
  .contents {
    padding-top: 6rem;
    padding-bottom: 8rem;
  }
  .last-section {
    padding-bottom: 8rem !important;
  }

  .section + .section {
    margin-top: 5rem;
  }

  .section.sm + .section.sm {
    margin-top: 4rem;
  }

  .bg-light {
    padding: 2rem;
  }

  .bg-light.sm {
    padding: 1.8rem;
  }

  .bg-light.section {
    padding: 4rem 0;
  }

  .bullet-list > * {
    padding-left: 1.2rem;
  }

  .bullet-list > * + * {
    margin-top: 0.5rem;
  }

  .bullet-list > *::before {
    top: 0.8rem;
  }

  .label-cont {
    gap: 1rem;
  }

  .label-cont + .label-cont {
    margin-top: 1rem;
  }

  .label-cont .label {
    flex-basis: 6rem;
  }

  /* tabs */
  [class*="tabs-"] {
    flex-wrap: wrap;
  }

  .tabs-type1 {
    margin-bottom: 3rem;
    border: 0;
  }

  .tabs-type1::before {
    display: none;
  }

  .tabs-type1.on {
    box-shadow: 0 0.4rem 1rem #0000001a;
  }

  .tabs-type1 .current {
    width: 100%;
    height: 5rem;
    display: block;
    position: relative;
    padding: 0 2rem;
    padding-right: 5rem;
    text-align: left;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-secondary);
    border: 1px solid var(--border);
  }

  .tabs-type1 .current::after {
    content: "";
    width: 1.6rem;
    height: 1.6rem;
    position: absolute;
    top: 1.6rem;
    right: 1.8rem;
    background: url("../images/ico/arr_down_pri.svg") no-repeat left top;
    background-size: 100%;
    filter: grayscale(1) brightness(0.2);
  }

  .tabs-type1.on .current {
    font-weight: 600;
    color: var(--color-primary);
  }

  .tabs-type1.on .current::before {
    content: "";
    left: -0.1rem;
    right: -0.1rem;
    top: -0.1rem;
    bottom: -0.1rem;
    position: absolute;
    border: 2px solid var(--color-primary);
  }

  .tabs-type1.on .current::after {
    filter: none;
  }

  .tabs-type1 .list {
    display: none;
    width: 100%;
    position: absolute;
    top: 5rem;
    z-index: 10;
    background: #fff;
  }

  .tabs-type1.on .list {
    display: block;
    padding: 1.8rem 0;
    border: 2px solid var(--color-primary);
    border-top: 0;
  }

  .tabs-type1 .list button {
    width: 100%;
    min-height: 0;
    padding: 0 1.8rem;
    line-height: 3.6rem;
    text-align: left;
  }

  .tabs-type1 .list button.active {
    color: var(--text-primary);
  }

  .tabs-type1 .list button::before {
    display: none;
  }

  .tabs-type2 {
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }

  .tabs-type2 button {
    flex: 1 1 50%;
    padding-bottom: 1.2rem;
  }

  .tabs-type2 button.active::before {
    height: 2px;
  }

  .tabs-type3 {
    margin-bottom: 3rem;
    gap: 1rem;
  }

  .tabs-type3 button {
    position: relative;
    padding: 0 0.3rem 1rem;
    font-size: 1.4rem;
  }

  .tabs-type3 button.active::before {
    height: 2px;
  }

  /* table */
  table.left tbody th {
    padding: 1.6rem;
    word-break: break-all;
  }

  table.left tbody td {
    padding: 1.6rem;
  }

  table.type1 th .bullet-gray li {
    display: inline;
  }

  table.type1 th .bullet-gray > li::before {
    top: 0.5rem;
  }

  table.type1 td.t-left {
    padding-left: 1.2rem;
  }

  table.type1.m-pad td {
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }

  .table-scroll {
    margin: 1.6rem 0;
  }

  .form-sch {
    margin-bottom: 3rem;
    flex-direction: column;
    gap: 0.6rem;
  }

  .form-sch .select-wrap {
    width: 100%;
    flex-basis: 100%;
  }

  .form-sch .select-wrap .select,
  .form-sch .select-wrap ul li .option,
  .form-sch input {
    font-size: 1.3rem;
  }

  .form-sch .search-wrap {
    flex-basis: 100%;
  }

  .search-wrap input {
    height: 4.4rem;
  }

  .search-wrap button {
    width: 4.4rem;
    height: 4.4rem;
    background-size: 1.6rem;
  }

  /* select */
  .select-wrap .select {
    height: 4.2rem;
    padding: 0 3.6rem 0 1.2rem;
  }

  .select-wrap.w-35,
  .select-wrap.w-40 {
    width: 100%;
  }

  .select-wrap .select::before {
    width: 2rem;
    height: 2rem;
    right: 1.2rem;
  }

  .select-wrap ul {
    padding: 0.8rem 0;
    max-height: 18rem;
  }

  .select-wrap ul li .option {
    padding: 0.4rem 1.2rem;
  }

  .form-right.flex {
    gap: 0.6rem;
  }

  .form-right.flex .select-wrap .select {
    height: 4.4rem;
  }

  .form-right.flex.with-btn {
    flex-wrap: wrap;
  }

  .form-right.flex.with-btn .select-wrap {
    width: 9rem;
  }

  .form-right.flex.with-btn .btn-rg {
    flex-basis: 100%;
    padding: 1rem 0;
  }

  /* btn */
  .btn-xs {
    padding: 0 0.8rem;
    font-size: 1.2rem;
  }
  .btn-sm {
    min-width: 8.5rem;
    padding: 0.1rem 1rem;
    font-size: 1.3rem;
  }
  .btn-rg {
    padding: 0.6rem 1.2rem;
  }
  .btn-md {
    padding: 1rem 1.6rem;
    font-weight: 600;
    font-size: 1.5rem;
  }
  .btn-lg {
    min-width: 12rem;
    padding: 1.2rem 2rem;
    font-size: 1.5rem;
  }

  [class*="btn-"].w-18 {
    width: 14rem !important;
  }
  [class*="btn-"].w-20 {
    width: 15rem !important;
  }
  [class*="btn-"].w-22 {
    width: 16rem !important;
  }
  [class*="btn-"].w-28 {
    width: 24rem !important;
  }

  [class*="btn-"][class*="after-"] {
    padding-left: 1.4rem;
    padding-right: 3rem;
  }

  [class*="btn-"][class*="after-"]::after {
    width: 1.6rem;
    height: 1.6rem;
    right: 1.2rem;
  }

  .group-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .group-btn [class*="btn-"][class*="w-"] {
    flex-basis: calc(50% - 0.4rem);
    width: auto !important;
  }

  .group-btn .btn-rg.m-full,
  .group-btn .btn-md.m-full {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }

  .write-wrap + .group-btn {
    margin-top: 4rem;
  }

  .group-btn .btn-md {
    font-size: 1.5rem;
  }

  [class*="btn-"] [class*="ico"] {
    width: 1.6rem;
    height: 1.6rem;
  }

  /* text */
  .new-badge::after {
    width: 1.9rem;
    line-height: 1.9rem;
    font-size: 1.2rem;
    margin-left: 0.6rem;
  }

  .t-ps {
    font-size: 1.2rem;
  }

  /* 오시는길 */
  .map-container .map-wrap {
    height: 30rem;
  }

  .map-container .map-info {
    padding: 2.4rem 2rem;
    gap: 2rem;
  }

  .map-container .map-info::before {
    display: none;
  }

  .map-container .map-info .logo {
    width: 22rem;
    height: 3.6rem;
  }

  .map-container .map-info .info p {
    padding-left: 2.8rem;
  }

  .map-container .map-info .info p + p {
    margin-top: 0.8rem;
  }

  .map-container .map-info .info p::before {
    width: 1.8rem;
    height: 1.8rem;
    top: 0;
  }

  .trans {
    margin-top: 4rem;
  }

  .trans dl {
    gap: 1.6rem;
  }

  .trans dl + dl {
    margin-top: 2.8rem;
  }

  .trans dl dt {
    width: 8rem;
    height: 8rem;
    padding-top: 1.4rem;
  }

  .trans dl dt::before {
    width: 2.8rem;
    height: 2.6rem;
    margin-bottom: 0.6rem;
  }

  .trans dl dd {
    padding-top: 1.6rem;
    border-top: 0;
  }

  .trans dl dd.d-flex {
    gap: 1rem;
  }

  .trans dl dd.d-flex .bus-info p {
    padding-left: 4.8rem;
  }

  .trans dl dd.d-flex .bus-info span {
    width: 3.8rem;
    top: -1px;
    font-size: 1.3rem;
    line-height: 2rem;
  }

  .result-tit {
    margin-bottom: 3.2rem;
  }

  .result-tit::before {
    width: 5.4rem;
    height: 5.4rem;
    margin: 0 auto 1.6rem;
  }

  .applicate-wrap .tit {
    padding: 1.2rem 1.6rem;
  }

  .applicate-wrap .tit p {
    padding-left: 2.2rem;
    position: relative;
    font-size: 1.5rem;
  }

  .applicate-wrap .tit p::before {
    width: 1.6rem;
    height: 1.6rem;
    left: 0;
    top: 0.4rem;
  }

  .applicate-wrap .tit span {
    margin-top: 0.6rem;
  }

  .applicate-wrap .info {
    padding: 1rem 1.6rem;
    margin-bottom: 1rem;
  }

  .applicate-wrap .info dl {
    padding: 0.3rem 0;
  }

  .applicate-wrap .info dt {
    flex-shrink: 0;
    flex-basis: 8rem;
  }

  .btn-copy {
    font-size: 1.2rem;
  }

  .btn-copy .ico-before {
    width: 1.2rem;
    height: 1.2rem;
  }

  .applicate-wrap .apply-num {
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: flex-end;
  }

  .result-wrap .group-btn {
    margin-top: 3rem;
  }

  .result-wrap .group-btn .btn-lg {
    font-size: 1.5rem;
  }

  .result-wrap .form input + input {
    margin-top: 0.8rem;
  }

  .pagination {
    margin-top: 3rem;
  }

  .pagination a {
    width: 3.4rem;
    height: 3.4rem;
  }

  .pagination a.num {
    font-size: 1.3rem;
    line-height: 3.4rem;
  }

  .pagination a.num.current::before {
    width: 1rem;
  }

  .pagination a.arrow.prev,
  .pagination a.arrow.next {
    background-size: 1.2rem;
  }
  .pagination a.arrow.first,
  .pagination a.arrow.last {
    background-size: 1.2rem;
  }

  .scr-text.show-mo {
    display: inline-block;
  }

  .member-bg {
    margin: -6rem 0 -8rem;
    padding: 5rem 0 6rem;
  }

  .member-bg + .inner {
    margin-top: 12rem;
  }

  .member-wrap {
    width: 100%;
  }

  .member-wrap .top-info {
    width: calc(100% - 4rem);
    margin: 0 auto 2.4rem;
    padding: 2rem 1rem;
  }

  .member-wrap .content {
    padding: 0 2rem;
    box-shadow: none;
  }

  .member-wrap .content .heading2 {
    margin-bottom: 3rem;
  }

  .member-wrap .content .heading2.line {
    padding-bottom: 2.4rem;
  }

  .member-wrap .content .form .row + .row {
    margin-top: 1.6rem;
  }

  .member-wrap .content .form .row .label {
    margin-bottom: 0.8rem;
  }

  .member-wrap .content .form .row .input-btn .btn-rg {
    min-width: 8rem;
  }

  .member-wrap .content .form .row .select-wrap .select {
    height: 4.4rem;
  }

  .member-wrap .content .login-btm {
    margin-top: 1.2rem;
    font-size: 1.3rem;
  }

  .member-wrap .content .login-btm .checkbox input + label::before {
    width: 1.4rem;
    height: 1.4rem;
  }

  .member-wrap .content .group-btn {
    margin-top: 3rem;
    gap: 1rem;
  }

  .member-wrap .content .group-btn a {
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1.5rem;
  }

  .pay-container {
    display: block;
  }

  .pay-container .sticky {
    min-width: 0;
    position: relative;
    top: auto;
    margin-top: 5rem;
  }

  .pay-container .sticky .info {
    padding: 2rem;
  }

  .pay-container .sticky .info dl + dl {
    padding-top: 1.6rem;
  }

  .pay-container .sticky .btn-rg {
    padding-top: 1.2rem;
    padding-bottom: 1rem;
    font-size: 1.6rem;
  }

  .captcha {
    gap: 0.6rem;
    max-width: 100%;
  }

  .captcha .img {
    flex-basis: 15rem;
    border-radius: 0;
  }

  .captcha .img img {
    width: calc(100% - 4.2rem);
  }

  .captcha .img button {
    width: 4.2rem;
    height: 4.2rem;
    background-size: 1.4rem;
  }

  .captcha input {
    width: calc(100% - 15.6rem) !important;
    border-radius: 0;
  }

  .t-divide::after {
    height: 1.1rem;
    margin-left: 0.7rem;
    margin-right: 0.5rem;
  }

  .table-box {
    border-top: 0;
  }

  .table-box .head {
    display: none;
  }

  .table-box .body {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
  }

  .table-box .row {
    padding: 0 0 0.7rem 0;
    display: block;
    text-align: left;
    border: 1px solid var(--border);
  }

  .table-box .row .title {
    padding: 1.3rem 1.4rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
    font-size: 1.6rem;
    background: var(--color-primaryLight);
  }

  .table-box .row .label {
    display: block !important;
    font-weight: 600;
  }

  .table-box.table-ad .row .label {
    flex-basis: 10rem;
    flex-shrink: 0;
  }

  .table-box .row .btn-sm {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .table-box .row .btn-sm + .btn-sm {
    margin-top: 0.5rem;
  }

  .table-box .row > *:not(.title, .btns) {
    display: flex;
    padding: 0.4rem 1.4rem;
  }

  .table-box .row .btn-sm {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
  }

  .table-box.m-pad .body .row {
    padding: 0.6rem 1.6rem;
  }

  .table-box.m-pad .body .row > div:not(.btns) {
    padding: 0.5rem 0;
    justify-content: flex-start;
    align-items: baseline;
  }

  .table-box .body .row p.text-ell {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .table-box.m-pad .body .row .btns {
    margin: 0.9rem 0 0.7rem;
    display: flex;
    gap: 0.8rem;
  }

  .table-box.m-pad .body .row .btns .btn-xs {
    padding: 0.3rem 1.2rem;
  }

  .table-box .row > div .label {
    flex-basis: 7rem;
  }

  .table-box.m-pad .row > div .label {
    flex-basis: 8.5rem;
    flex-shrink: 0;
  }

  .table-box.m-table .row {
    padding: 0;
    border: 0;
    border-top: 2px solid var(--color-primary);
  }

  .table-box.m-table .row > * {
    padding: 0;
    border-bottom: 1px solid var(--border-light);
  }

  .table-box.m-table .row .label {
    padding: 0.9rem 0;
    flex-basis: 8.4rem;
    flex-shrink: 0;
    display: flex !important;
    justify-content: center;
    background: var(--color-primaryLight);
  }

  .table-box.m-table .row .label.center {
    align-items: center;
  }

  .table-box.m-table .row .cont {
    padding: 0.9rem 1rem 0.9rem 1.6rem;
  }

  .table-box.m-table .print-btn {
    padding: 0;
  }

  .table-box .row .print-btn .btn-sm {
    width: 9.3rem;
    padding: 0.2rem 1.8rem;
  }

  .table-box.m-table .c-error.mo-inline {
    display: inline-block;
  }

  .table-box.m-table .c-error + .btn-sm {
    margin-top: 0;
    margin-left: 1rem;
  }

  .add-row {
    width: 3rem;
    height: 3rem;
    background-size: 1.4rem;
  }

  .write-wrap .write .degree {
    display: flex;
    gap: 2rem;
  }

  .write-wrap .write .row.period .cont {
    display: flex;
    align-items: center;
  }

  .write-wrap .write .row.period .cont input[type="text"] {
    width: 40%;
  }

  .write-wrap .write .row.period .cont .txt {
    flex-basis: 10%;
    text-align: center;
  }

  .mo_vw {
    display: block;
  }
}
