.layout {
  width: 100%;
  max-width: 840px;
  padding: 0 24px;
  margin: 0 auto;
}

.main-banner .swiper-slide img {
  width: 100%;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.15);
  margin-bottom: 12px;
  padding: 12px;
  background-color: white;
  z-index: 100;
}
.header > a {
  width: 100px;
  display: block;
}
.header > a > img {
  width: 100%;
}
.header > button {
  font-size: 28px;
  color: #333;
}
.header > .menus {
  display: none;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
  width: 100%;
}
.header > .menus.active {
  display: block;
}
.header > .menus > .contents {
  min-width: 300px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 90%;
  background-color: white;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100vh;
  overflow: hidden;
  overflow-y: scroll;
}
.header > .menus > .contents #hide-all-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 28px;
  color: #333;
}
.header > .menus > .contents > .partners {
  display: flex;
  align-items: center;
  letter-spacing: -1px;
  font-size: 11px;
  gap: 4px;
  color: #333;
  white-space: nowrap;
}
.header > .menus > .contents > .tnb {
  display: flex;
  width: 100%;
  gap: 18px;
  background-color: #f9f9f9;
  padding: 12px;
  box-sizing: border-box;
  border: 1px solid #ddd;
}
.header > .menus > .contents > .tnb > li > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.header > .menus > .contents > .tnb > li > a > i {
  font-size: 20px;
  color: #333;
}
.header > .menus > .contents > .tnb > li > a > span {
  font-size: 12px;
  color: #333;
  white-space: nowrap;
}
.header > .menus > .contents > .gnb {
  display: flex;
  flex-direction: column;
}
.header > .menus > .contents > .gnb > li {
  font-size: 16px;
  cursor: pointer;
  line-height: 2;
  border-bottom: 1px solid #f0f0f0;
  font-weight: 500;
  color: #333;
}
.header > .menus > .contents > .gnb > li > a {
  color: #333;
  display: block;
}
.header > .menus > .contents > .gnb > li > ul {
  max-height: 0;
  overflow: hidden;
  transition: all 0.1s;
  opacity: 0;
}
.header > .menus > .contents > .gnb > li > ul.active {
  background-color: #f9f9f9;
  padding: 12px;
  border-top: 1px solid #ddd;
  max-height: 500px;
  opacity: 1;
}
.header > .menus > .contents > .gnb > li > ul.active > li > a {
  display: block;
  font-size: 14px;
  color: #333;
}
.header > .menus > .contents > .sns {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer {
  background-color: #222;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer > .top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer > .top > .pages {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.footer > .top > .pages > li > a {
  color: #f9f9f9;
  font-size: 12px;
}
.footer > .top > .sns {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer > .bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer > .bottom > img {
  width: 120px;
  mix-blend-mode: luminosity;
}
.footer > .bottom > .info {
  display: flex;
  flex-wrap: wrap;
  color: #f9f9f9;
  gap: 8px;
  line-height: 1.4;
}
.footer > .bottom > .copyright {
  color: #f9f9f9;
  line-height: 2;
}

.pagination > span.swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: white;
  opacity: 1;
  position: relative;
}
.pagination > span.swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  content: "";
  background-color: #2958ff;
  position: absolute;
  width: 14px;
  height: 14px;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.tag {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 8px;
  height: 24px;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
}
.tag.blue {
  color: #2958ff;
  border: 1px solid #2958ff;
}
.tag.orange {
  color: white;
  background-color: #e99c39;
}
.tag.red {
  color: white;
  background-color: #f85b5b;
}

.field {
  position: relative;
  width: 100%;
  height: 40px;
  border: 1px solid #ddd;
}
.field > input {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  width: 100%;
  height: 100%;
  padding: 4px;
}
.field > input:disabled {
  background-color: #f0f0f0;
}
.field > .warning {
  color: #ea3b3b;
  font-size: 14px;
  position: absolute;
  bottom: -30px;
}
.field > button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
}

.edu-color-button {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background-color: #3557f5;
  color: white;
  padding: 0 8px;
}

.edu-ghost-button {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 1px solid #3557f5;
  color: #3557f5;
  padding: 0 8px;
}

.edu-black-button {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0 8px;
}

.page-title {
  padding-top: 12px;
  padding-bottom: 24px;
}
.page-title > strong {
  font-size: 18px;
  color: #222;
  line-height: 1.6;
  font-weight: 500;
}
.page-title > p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.label {
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.label > p {
  font-size: 16px;
  color: #333;
  width: 150px;
  flex-shrink: 0;
}
.label > p.req::after {
  content: "*";
  color: red;
}
.label > .select {
  width: 100%;
  height: 40px;
  border: 1px solid #ddd;
  padding: 4px;
}
.label > .field {
  position: relative;
  width: 100%;
  height: 40px;
  border: 1px solid #ddd;
}
.label > .field > input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 4px;
}
.label > .field > input:disabled {
  background-color: #f0f0f0;
}
.label > .field > .warning {
  color: #ea3b3b;
  font-size: 12px;
  position: absolute;
  bottom: -30px;
}
.label > .field > button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
}
.label > .textarea {
  width: 100%;
  min-height: 300px;
  border: 1px solid #ddd;
  padding: 4px;
}
.label > .flex {
  display: flex;
  align-items: center;
  gap: 12px;
}
.label > .flex > label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.label > .flex > label > p {
  font-size: 14px;
  color: #333;
}

.toggles {
  display: flex;
  min-width: 200px;
  height: 40px;
  border-radius: 20px;
  border: 1px solid #ddd;
}
.toggles > label {
  width: 50%;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.toggles > label > p {
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-size: 16px;
  color: #333;
  transition: all 0.2s;
}
.toggles > label > p:first-of-type {
  margin-left: 4px;
}
.toggles > label > p:last-of-type {
  margin-right: 4px;
}
.toggles > label > input[type=radio] {
  display: none;
}
.toggles > label > input[type=radio]:checked ~ p {
  background-color: #2958ff;
  color: white;
}

.search {
  display: flex;
  align-items: center;
  width: 180px;
  height: 30px;
  border: 1px solid #ddd;
}
.search > input {
  width: 140px;
  height: 30px;
  padding: 6px;
  font-size: 16px;
  color: #333;
}
.search > button {
  width: 40px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #ddd;
}
.search > button > img {
  width: 18px;
}

.searchBox {
  display: flex;
  align-items: center;
}
.searchBox > select {
  width: 120px;
  height: 30px;
  border: 1px solid #ddd;
  margin-right: -1px;
  padding: 0 6px;
  font-size: 14px;
  color: #333;
}

.filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}
.filter > .filter-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e3e3e3;
  color: #222;
  padding: 4px 12px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 400;
}
.filter > .filter-item.active {
  background-color: #2958ff;
  color: white;
}

.ghost-button {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #dde4ff;
  padding: 0 6px;
  color: #2958ff;
  border: 1px solid #dde4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  height: 30px;
}

.normal-button {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #2958ff;
  padding: 0 6px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  height: 30px;
}

.orange-button {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #e99c39;
  padding: 0 6px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  height: 30px;
}

.list-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin: 24px 0;
}
.list-pagination > .item {
  width: 24px;
  height: 24px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.list-pagination > .item.active {
  background-color: #2958ff;
  color: white;
  border: 0;
}

.table-scroll {
  overflow: hidden;
  width: 100%;
  overflow-x: scroll;
}

.table {
  width: 100%;
  min-width: 640px;
}
.table > .title {
  text-align: center;
  font-size: 14px;
  color: #333;
  padding: 4px 0;
}
.table > thead > tr {
  background-color: #f0f0f0;
  border-bottom: 1px solid #ddd;
}
.table > thead > tr > td {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  padding: 6px;
  border-left: 1px solid #ddd;
  color: #333;
}
.table > thead > tr > td:last-of-type {
  border-right: 1px solid #ddd;
}
.table > tbody > tr {
  border-bottom: 1px solid #ddd;
}
.table > tbody > tr.noti {
  background-color: #f7f7f7;
}
.table > tbody > tr.answer {
  display: none;
  background-color: #f0f0f0;
}
.table > tbody > tr > td {
  font-size: 12px;
  cursor: pointer;
  font-weight: 400;
  color: #333;
  vertical-align: middle;
  padding: 6px;
  border-right: 1px solid #ddd;
  line-height: 1.6;
}
.table > tbody > tr > td:first-of-type {
  text-align: center;
  border-left: 1px solid #ddd;
}
.table > tbody > tr > td.center {
  text-align: center;
}
.table > tbody > tr > td.left {
  text-align: left;
}
.table > tbody > tr > td > img {
  width: 14px;
}

.table-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.table-filter > .item {
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  padding: 2px 12px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.table-filter > .item.active {
  border: 0;
  background-color: #2958ff;
  color: white;
}

.point {
  color: #16a7d0 !important;
}

.tag2 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: #e99c39;
  border-radius: 10px;
  font-size: 12px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 6px;
}

.mobile-tag {
  white-space: nowrap;
  display: flex;
  height: 24px;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: #00b0f0;
  border-radius: 10px;
  font-size: 12px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 6px;
}

.error-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: #f85b5b;
  border-radius: 10px;
  font-size: 12px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 6px;
}

.edu-color-button {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background-color: #3557f5;
  color: white;
  padding: 0 8px;
}

.edu-ghost-button {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 1px solid #3557f5;
  color: #3557f5;
  padding: 0 8px;
}

.edu-black-button {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0 8px;
}

.page-title {
  padding-top: 40px;
  padding-bottom: 60px;
}
.page-title > strong {
  font-size: 38px;
  color: #222;
  line-height: 1.6;
  font-weight: 500;
}
.page-title > p {
  font-size: 28px;
  color: #333;
  line-height: 1.6;
}
.page-title > p.note {
  font-size: 18px;
  color: #666;
}

.dash {
  width: 30px;
  height: 1px;
  background-color: #272727;
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dimmed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
}/*# sourceMappingURL=global.css.map */