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

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

.list-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin: 32px 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: #46b969;
  color: white;
  border: 0;
}

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

.header {
  background-color: white;
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}
.header > .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.header > .top > .left {
  display: flex;
  align-items: center;
  font-size: 14px;
  background-color: #f7f7f7;
  border-radius: 20px;
  padding: 6px;
  gap: 8px;
}
.header > .top > .left > li {
  transition: all 0.2s;
  padding: 8px;
  border-radius: 20px;
  color: #222;
}
.header > .top > .left > li:hover {
  background-color: #46b969;
  color: white;
}
.header > .top > .right {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header > .top > .right > .tnb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.header > .top > .right > .tnb > li {
  color: #222;
  transition: color 0.2s;
}
.header > .top > .right > .tnb > li:hover {
  color: #46b969;
}
.header > .top > .right > .sns {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header > .top > .right > .sns img {
  width: 100%;
}
.header > .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header > .bottom > .logo {
  width: 160px;
}
.header > .bottom > .logo > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.header > .bottom > .gnb {
  display: flex;
  align-items: center;
  gap: 34px;
}
.header > .bottom > .gnb > li {
  font-size: 18px;
  color: #222;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
  white-space: nowrap;
}
.header > .bottom > .gnb > li:hover {
  color: #46b969;
}
.header > .bottom > .gnb > li:hover > ul {
  display: flex;
}
.header > .bottom > .gnb > li:hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #46b969;
  bottom: -10px;
  left: 50%;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: showSideWays 0.2s forwards;
}
.header > .bottom > .gnb > li:last-of-type::after {
  display: none;
}
@keyframes showSideWays {
  from {
    width: 0;
  }
  to {
    width: 80%;
  }
}
.header > .bottom > .gnb > li > ul {
  display: none;
  background-image: linear-gradient(180deg, transparent 46px, white 1px, white 100%);
  flex-direction: column;
  padding: 6px 20px;
  border-bottom: 2px solid #46b969;
  position: absolute;
  z-index: 50;
  top: -1px;
  left: 0;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 50px;
}
.header > .bottom > .gnb > li > ul > li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
.header > .bottom > .gnb > li > ul > li > a {
  color: #333;
  display: block;
  transition: color 0.2s;
}
.header > .bottom > .gnb > li > ul > li > a:hover {
  color: #46b969;
}

.footer {
  background-color: #272727;
  padding: 60px 0;
}
.footer .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.footer .top > .pages {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: auto;
}
.footer .top > .pages > li {
  font-size: 14px;
  color: #f0f0f0;
  position: relative;
}
.footer .top > .pages > li:after {
  content: "";
  position: absolute;
  right: -10px;
  width: 1px;
  height: 100%;
  top: 0;
  background-color: #545454;
}
.footer .top > .pages > li:last-of-type:after {
  display: none;
}
.footer .top > .sns {
  display: flex;
  gap: 4px;
}
.footer .bottom {
  display: flex;
  align-items: flex-start;
  gap: 100px;
}
.footer .bottom > img {
  width: 200px;
}
.footer .bottom > .info > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.footer .bottom > .info > ul > li {
  font-size: 14px;
  color: white;
  word-break: keep-all;
  line-height: 1.6;
}
.footer .bottom > .info > .copyright {
  color: white;
  font-size: 14px;
  margin-top: 20px;
}

.fix-menu {
  position: fixed;
  right: 20px;
  bottom: 100px;
  background-color: #f7f7f7;
  border-radius: 10px;
  overflow: hidden;
  z-index: 150;
  cursor: pointer;
}
@media screen and (max-width: 1290px) {
  .fix-menu {
    display: none;
  }
}
.fix-menu > ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fix-menu > ul > li {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #ddd;
}
.fix-menu > ul > li:last-of-type {
  border-bottom: 0px;
}
.fix-menu > ul > li > a,
.fix-menu > ul > li button {
  font-size: 14px;
  color: #222;
  padding: 12px 8px;
  display: block;
  transition: color 0.2s;
  text-align: center;
  width: 100%;
}
.fix-menu > ul > li > a:hover,
.fix-menu > ul > li button:hover {
  color: #46b969;
}

.dimmed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.all-menu {
  display: none;
}
.all-menu.active {
  display: block;
}
.all-menu > .menus {
  position: absolute;
  z-index: 200;
  background-color: white;
  width: 1000px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 16px;
}
.all-menu > .menus > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.all-menu > .menus > header > strong {
  color: #222;
  font-weight: 400;
  font-size: 24px;
}
.all-menu > .menus > header > button {
  width: 50px;
  height: 50px;
}
.all-menu > .menus > header > button > img {
  width: 100%;
}
.all-menu > .menus > .list {
  display: flex;
  flex-wrap: wrap;
}
.all-menu > .menus > .list > li {
  width: 25%;
  padding: 16px;
  font-size: 18px;
  color: #222;
  font-weight: 500;
}
.all-menu > .menus > .list > li > ul {
  border-top: 1px solid #ddd;
  margin-top: 8px;
  padding-top: 8px;
}
.all-menu > .menus > .list > li > ul > li {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
}

.tag {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #46b969;
  border: 1px solid #46b969;
  border-radius: 10px;
  font-size: 12px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 6px;
}

.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;
  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: #319b51;
  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 #319b51;
  color: #319b51;
  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;
}

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

.label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.label > p {
  font-size: 20px;
  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;
  display: flex;
  align-items: center;
  justify-content: center;
  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: -20px;
}
.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: 16px;
  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: #46b969;
  color: white;
}

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

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

.filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0;
}
.filter > .filter-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e3e3e3;
  color: #222;
  padding: 6px 16px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 400;
}
.filter > .filter-item.active {
  background-color: #46b969;
  color: white;
}

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

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

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

.table {
  width: 100%;
}
.table > .title {
  text-align: center;
  font-size: 18px;
  color: #333;
  padding: 8px 0;
}
.table > thead > tr {
  background-color: #f0f0f0;
  border-bottom: 1px solid #ddd;
}
.table > thead > tr > td {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  padding: 12px;
  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: 16px;
  cursor: pointer;
  font-weight: 400;
  color: #333;
  vertical-align: middle;
  padding: 8px;
  border-right: 1px solid #ddd;
  line-height: 1.6;
}
.table > tbody > tr > td:first-of-type {
  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: 16px;
}

.table-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.table-filter > .item {
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  padding: 8px 16px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.table-filter > .item.active {
  border: 0;
  background-color: #46b969;
  color: white;
}

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

.notice {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 40px;
}
.notice > img {
  width: 60px;
}
.notice > .info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.notice > .info > strong {
  font-weight: 500;
  font-size: 18px;
  color: #333;
  margin-bottom: 12px;
}
.notice > .info > .list {
  font-size: 12px;
  color: #333;
  margin-bottom: 4px;
  display: list-item;
  list-style: circle;
  margin-left: 20px;
}
.notice > .info > .desc {
  font-size: 12px;
  color: #333;
  margin-top: 4px;
}

input[type="radio"] {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #656565;
  position: relative;
}
input[type="radio"]:checked::after {
  width: 16px;
  height: 16px;
  left: 50%;
  top: 50%;
  content: "";
  position: absolute;
  transform: translate(-50%, -50%);
  background-color: #636363;
  border-radius: 50%;
} /*# sourceMappingURL=global.css.map */
