html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans KR", sans-serif;
  line-height: 1.3;
}

* {
  box-sizing: border-box;
}

h1, h2, h3 {
  font-family: "Nunito Sans", sans-serif;
}

a {
  color: #000;
  text-decoration: none;
}
a:active, a:focus, a:hover {
  color: black;
  text-decoration: underline;
}
a:visited {
  color: #000;
}

.svg {
  display: inline-block;
  line-height: 0;
  vertical-align: text-top;
}
.svg svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reset-ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comp-modal {
  display: none;
}
.comp-modal.show-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  animation: modalFadeIn 0.2s ease-out forwards;
  opacity: 0;
  padding-top: 2em;
}
.comp-modal .modal-wrapper {
  overflow-x: hidden;
  min-width: 290px;
  max-width: 960px;
}
.comp-modal .modal-wrapper .modal-container {
  background-color: rgb(255, 255, 255);
  border-radius: 1em;
  margin: 0.5em;
  margin-bottom: 1em;
}
.comp-modal .modal-wrapper .modal-container .modal-header, .comp-modal .modal-wrapper .modal-container .modal-footer {
  padding: 0.5em;
}
.comp-modal .modal-wrapper .modal-container .modal-header {
  display: flex;
  align-items: center;
  line-height: 1;
  padding: 1.5rem;
  padding-bottom: 0.5em;
}
.comp-modal .modal-wrapper .modal-container .modal-header .title {
  flex: 1 1 auto;
  font-weight: bold;
  padding-left: 0.5em;
}
.comp-modal .modal-wrapper .modal-container .modal-header .btn {
  cursor: pointer;
}
.comp-modal .modal-wrapper .modal-container .modal-body {
  padding: 1em;
  min-width: 340px;
}
.comp-modal .modal-wrapper .modal-container .modal-body > p {
  font-size: 0.75em;
  text-align: center;
  color: #666;
}
.comp-modal .modal-wrapper .modal-container .modal-footer {
  border-top: 1px solid #eeeeee;
  line-height: 0;
}
.comp-modal .modal-wrapper .modal-container .modal-footer .form-container {
  margin: 0;
}
.comp-modal .modal-wrapper .modal-container .modal-footer .btn {
  border-radius: 0.5em;
}

@keyframes modalFadeIn {
  100% {
    opacity: 1;
    padding-top: 0;
  }
}
.header {
  display: flex;
  justify-content: end;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #fff;
  background-image: url("../images/logo.png");
  background-position: left 1rem top 1.25rem;
  background-repeat: no-repeat;
  background-size: auto 2.5em;
  height: 4em;
  padding: 1rem;
  padding-bottom: 0;
}
.header a {
  display: inline-block;
  padding: 0.5rem;
  font-weight: bold;
}
@media screen and (max-width: 639px) {
  .header + .wrapper {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 640px) {
  .header {
    display: none;
  }
}

.wrapper {
  padding: 1em;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: row;
  gap: 1rem;
  margin-top: 3rem;
}
.wrapper .container {
  min-width: 18.625rem;
}
@media screen and (max-width: 639px) {
  .wrapper .container.order-1 {
    order: 2;
  }
  .wrapper .container.order-1 .logo, .wrapper .container.order-1 .apply {
    display: none;
  }
  .wrapper .container.order-1 .no-style {
    min-height: auto;
  }
}
@media screen and (min-width: 640px) and (max-width: 939px) {
  .wrapper .container.order-2 {
    width: 38.25rem;
    order: 3;
    position: relative;
  }
  .wrapper .container.order-2 .block:first-child {
    display: inline-block;
  }
  .wrapper .container.order-2 .block:last-child {
    float: right;
    margin-top: 9rem;
  }
  .wrapper .container.order-2 .has-bubble {
    position: absolute;
    top: 0;
    right: 0;
    align-items: start;
    background-image: url("../images/bubble-reverse.png");
    background-position: left top;
  }
}
@media screen and (max-width: 639px) {
  .wrapper .container.order-2 {
    order: 3;
  }
  .wrapper .container.order-2 .block:first-child {
    display: none;
  }
}
@media screen and (max-width: 639px) {
  .wrapper .container.order-3 {
    order: 1;
  }
  .wrapper .container.order-3 .height4x {
    background-image: url("../images/mk-bg.png");
    background-position: right top 4rem;
    background-repeat: no-repeat;
    background-size: auto 12rem;
  }
  .wrapper .container.order-3 .height4x .title {
    background: none;
    padding-top: 0.5rem;
    padding-bottom: 2.5rem;
  }
}
@media screen and (min-width: 640px) and (max-width: 939px) {
  .wrapper .container.order-3 {
    order: 2;
  }
}
@media screen and (max-width: 639px) {
  .wrapper .container {
    width: 100%;
  }
}
@media screen and (max-width: 639px) {
  .wrapper {
    flex-direction: column;
  }
}
@media screen and (min-width: 640px) and (max-width: 939px) {
  .wrapper {
    padding: 0;
    flex-wrap: wrap;
  }
}

.block {
  background-color: #F4F4F4;
  border-radius: 1rem;
  display: block;
  font-size: 0.875em;
  padding: 1.5rem;
  margin-bottom: 1rem;
  min-height: 8.5rem;
  width: 18.625rem;
}
.block.apply {
  color: #fff;
  height: 8.5rem;
  padding: 1.5rem 1rem 1rem 1.5rem;
  background-position: right 1em bottom 1em;
  background-repeat: no-repeat;
  background-size: 2rem;
}
.block.apply.group {
  background-color: #1AD3CC;
  background-image: url("../images/apply-group-btn.png");
}
.block.apply.group:hover, .block.apply.group:active {
  background-color: #18c5bf;
}
.block.apply.one {
  background-color: #FF9D00;
  background-image: url("../images/apply-one-btn.png");
}
.block.apply.one:hover, .block.apply.one:active {
  background-color: #f09400;
}
.block.apply img {
  height: 1.25rem;
  margin-top: 0.25rem;
  width: auto;
}
.block.apply p {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 0;
  margin-top: 0.5em;
}
.block.height2x {
  height: 18rem;
}
.block.height2x table {
  width: 100%;
  height: 15rem;
  border-spacing: 0;
  border-collapse: collapse;
}
.block.height2x table td {
  text-align: center;
  vertical-align: middle;
  padding: 0;
}
.block.height2x table td.space {
  background-color: #fff;
}
.block.height2x table td p {
  font-weight: bold;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
.block.height2x table td img {
  width: auto;
  height: 3.5rem;
}
.block.height2x table tr:nth-child(2) td {
  height: 5px;
}
.block.height2x table tr:nth-child(1) td:nth-child(1) {
  padding-right: 1rem;
  padding-bottom: 1rem;
}
.block.height2x table tr:nth-child(1) td:nth-child(3) {
  padding-left: 1rem;
  padding-bottom: 1rem;
}
.block.height2x table tr:nth-child(3) td:nth-child(1) {
  padding-right: 1rem;
  padding-top: 1rem;
}
.block.height2x table tr:nth-child(3) td:nth-child(3) {
  padding-left: 1rem;
  padding-top: 1rem;
}
.block.has-bubble {
  background-image: url("../images/bubble.png");
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 1.875rem;
  display: flex;
  align-items: end;
}
.block.has-bubble .bubble {
  background-color: #AC38E0;
  border-radius: 3rem;
  color: #fff;
  padding: 1rem 1.5rem;
  width: 80%;
}
@media screen and (max-width: 639px) {
  .block.has-bubble {
    display: none;
  }
}
.block.height4x {
  min-height: 37rem;
  padding-bottom: 1rem;
}
.block.height4x .title {
  font-family: "Song Myung", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  padding-top: 3rem;
  background-image: url(../images/logo-mk.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 2.5rem;
}
.block.height4x ul {
  list-style: none;
  margin: 0;
  margin-top: 2.5rem;
  padding: 0;
}
.block.height4x ul li {
  border-bottom: 5px solid #fff;
  padding: 0.5em 0;
}
.block.height4x ul li:last-child {
  border: none;
}
.block.height4x ul li a {
  background-image: url("../images/link.png");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.block.height4x ul li a:hover, .block.height4x ul li a:active {
  background-image: url("../images/link-active.png");
}
.block.height4x ul li a p {
  margin: 0;
  color: #666;
}
.block.height4x ul li a p span {
  display: block;
  font-size: 0.75em;
  color: #888;
}
.block.image {
  background-color: #eee;
  background-image: url("../images/main.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.block.logo {
  background-image: url("../images/logo.png");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto 3em;
}
.block.no-style {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
}
.block h1 {
  font-size: 1.25rem;
}
.block .highlight {
  background-color: #FFF258;
}
@media screen and (max-width: 639px) {
  .block {
    width: 100%;
  }
}
@media screen and (max-width: 939px) {
  .block:last-child {
    margin-bottom: 0;
  }
}

.block-group {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 18.625rem;
}
.block-group .block {
  width: 9rem;
  height: 8.5rem;
  margin-bottom: 0.625rem;
}

.footer {
  text-align: center;
  margin: 1rem 0;
  padding: 1rem;
}
.footer img {
  height: 2rem;
  width: auto;
}
.footer p {
  font-size: 0.75em;
  margin-top: 0.25em;
}
.footer p.info {
  margin-top: 3rem;
  font-size: 0.625em;
  color: #888;
}/*# sourceMappingURL=style.css.map */