@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, etails, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, button {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-family: inherit; }

main, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

body {
  min-width: 360px;
  max-width: 1024px;
  width: 100%;
  height: 500px;
  font-size: 16px;
  color: #000;
  line-height: 1;
  font-weight: 400;
  margin: 0 auto;
  padding-top: 48px;
  word-break: keep-all;
  box-sizing: border-box; }
  body *, body *::before, body *::after {
    box-sizing: border-box; }

hr {
  display: block;
  border: 0;
  margin: 0; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

input, select, textarea {
  font-family: inherit;
  outline: none; }

a, button {
  color: #000;
  cursor: pointer;
  border: 0;
  padding: 0;
  outline: none;
  text-decoration: none;
  background: none; }
  a:hover, button:hover {
    color: #000; }

.container {
  display: block;
  width: 100%;
  margin: 0 auto; }

/* header */
#header {
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 1024px;
  z-index: 11;
  text-align: center;
  padding: 15px 20px;
  background-color: #fff;
  transform: translateX(-50%);
  box-shadow: 0px 1px 13.8px 0px rgba(0, 0, 0, 0.13); }
  #header .logo {
    position: absolute;
    top: 50%;
    left: 20px;
    font-size: 0;
    transform: translateY(-50%); }
    #header .logo > a {
      display: block; }
      #header .logo > a img {
        display: block;
        max-width: 100%; }
  #header h2 {
    font-size: 18px;
    color: #000;
    font-weight: bold;
    letter-spacing: -1px; }
  #header .btn-area {
    position: absolute;
    top: 50%;
    right: 20px;
	display: none;
    transform: translateY(-50%); }
    #header .btn-area .btn-nav {
      display: block;
      width: 26px;
      height: 20px; }
      #header .btn-area .btn-nav .bar {
        position: absolute;
        left: 0;
        display: block;
        width: 100%;
        height: 2px;
        background-color: #000;
        -webkit-transition-property: all;
        transition-property: all;
        -webkit-transition-duration: 0.15s;
        transition-duration: 0.15s;
        -webkit-transition-timing-function: linear;
        transition-timing-function: linear;
        -webkit-transition-delay: 0s;
        transition-delay: 0s; }
        #header .btn-area .btn-nav .bar:nth-of-type(1) {
          top: 0; }
        #header .btn-area .btn-nav .bar:nth-of-type(2) {
          top: 50%;
          transform: translateY(-50%); }
        #header .btn-area .btn-nav .bar:nth-of-type(3) {
          bottom: 0; }
      #header .btn-area .btn-nav.close .bar:nth-of-type(1) {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg); }
      #header .btn-area .btn-nav.close .bar:nth-of-type(2) {
        width: 0; }
      #header .btn-area .btn-nav.close .bar:nth-of-type(3) {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-45deg); }

/* nav */
#nav {
  position: fixed;
  top: 48px;
  right: -100%;
  width: 100%;
  z-index: 10;
  overflow-y: auto;
  height: calc(100vh - 48px);
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  background-color: #fff; }
  #nav .nav-wrap {
    position: relative;
    max-width: 1024px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 20px 0;
    padding-bottom: 100px; }
    #nav .nav-wrap .menu-area > li {
      padding: 0 15px;
      border-bottom: 1px solid #ccc; }
      #nav .nav-wrap .menu-area > li > a {
        position: relative;
        display: block;
        font-size: 16px;
        color: #333;
        line-height: 46px;
        font-weight: bold; }
        #nav .nav-wrap .menu-area > li > a:after {
          position: absolute;
          top: 50%;
          right: 0;
          width: 10px;
          height: 10px;
          display: block;
          content: '';
          border-top: 1px solid #0a2ba6;
          border-right: 1px solid #0a2ba6;
          transform: translateY(-50%) rotate(45deg); }
    #nav .nav-wrap .sns-list {
      position: absolute;
      bottom: 30px;
      left: 0;
      width: 100%;
      text-align: center;
      font-size: 0; }
      #nav .nav-wrap .sns-list > a {
        display: inline-block;
        vertical-align: top;
        font-size: 14px;
        color: #A7A7A7;
        background-color: #4F4F4F;
        margin-right: 20px;
        line-height: 30px;
        padding: 0 20px 0 40px;
        border-radius: 100px;
        background-repeat: no-repeat;
        background-position: 12px 50%;
        background-size: auto auto; }
        #nav .nav-wrap .sns-list > a:nth-of-type(1) {
          background-image: url(/assets/images/ico_facebook.png); }
        #nav .nav-wrap .sns-list > a:nth-of-type(2) {
          background-image: url(/assets/images/ico_instar.png); }
        #nav .nav-wrap .sns-list > a:last-child {
          margin-right: 0; }

/* body event */
body.opened {
  overflow: hidden; }
  body.opened #nav {
    right: 0; }

/* pdf-wrap */
.pdf-wrap {
  padding-bottom: 30px; }
  .pdf-wrap > ul > li {
    padding: 30px 20px; }
    .pdf-wrap > ul > li .box {
      display: table;
      width: 100%;
      table-layout: fixed; }
      .pdf-wrap > ul > li .box > div {
        display: table-cell;
        vertical-align: bottom; }
        .pdf-wrap > ul > li .box > div.item-img {
          width: 45%; }
          .pdf-wrap > ul > li .box > div.item-img > a {
            display: block; }
            .pdf-wrap > ul > li .box > div.item-img > a > figure img {
              display: block;
              width: 100%; }
        .pdf-wrap > ul > li .box > div.details {
          position: relative;
          padding-left: 20px; }
          .pdf-wrap > ul > li .box > div.details p {
            position: absolute;
            top: 0;
            left: 20px;
            font-size: 12px;
            color: #666;
            font-weight: 400; }
          .pdf-wrap > ul > li .box > div.details .btn-area > a {
            display: block;
            width: 100%;
            font-size: 14px;
            font-weight: 500;
            color: #000;
            text-align: center;
            line-height: 36px;
            border-radius: 100px;
            background-color: #ddd; }
            .pdf-wrap > ul > li .box > div.details .btn-area > a ~ a {
              margin-top: 10px; }
    .pdf-wrap > ul > li ~ li {
      border-top: 1px solid #ccc; }

/* greeting */
.greeting {
  padding: 60px 0 40px; }
  .greeting .container {
    padding: 0 15px; }
    .greeting .container .section-header {
      position: relative;
      text-align: center;
      padding: 40px 0 280px;
      border: 8px solid #dce3e9; }
      .greeting .container .section-header:before, .greeting .container .section-header:after {
        position: absolute;
        bottom: -8px;
        width: 50%;
        height: 8px;
        content: '';
        display: block; }
      .greeting .container .section-header:before {
        left: -8px;
        background-color: #3e8fee; }
      .greeting .container .section-header:after {
        right: -8px;
        background-color: #1e3b5b; }
      .greeting .container .section-header p {
        font-size: 30px;
        color: #002f6b;
        line-height: 38px; }
      .greeting .container .section-header figure {
        position: absolute;
        bottom: -8px;
        left: 50%;
        z-index: 1;
        transform: translateX(-50%); }
        .greeting .container .section-header figure img {
          display: block;
          max-width: 300px;
          margin: 0 auto; }
    .greeting .container .section-content {
      padding-top: 60px; }
      .greeting .container .section-content p {
        font-size: 16px;
        line-height: 26px;
        color: #333; }

/* quick-link */
.quick-link {
  position: sticky;
  bottom: 30px;
  left: 0;
  z-index: 1;
  padding: 0 15px; }
  .quick-link > ul {
    display: table;
    width: 100%;
    text-align: center;
    table-layout: fixed;
    border-radius: 100px;
    box-shadow: 0px 1px 13.8px 0px rgba(0, 0, 0, 0.13);
    background-color: #fff; }
    .quick-link > ul > li {
      position: relative;
      display: table-cell;
      vertical-align: top; }
      .quick-link > ul > li:after {
        position: absolute;
        top: 50%;
        right: -.5px;
        display: block;
        width: 1px;
        height: 16px;
        content: '';
        transform: translateY(-50%);
        background-color: #999; }
      .quick-link > ul > li:last-child:after {
        display: none; }
      .quick-link > ul > li > a {
        display: block;
        font-size: 13px;
        color: #000;
        line-height: 40px; }

/* embed-responsive */
.embed-responsive {
  position: relative; }
  .embed-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%; }
  .embed-responsive:before {
    display: block;
    content: '';
    padding-top: 56.25%; }
  .embed-responsive ~ .embed-responsive {
    margin-top: 30px; }

.youtube-area {
  padding: 60px 0 40px; }
  .youtube-area h3 {
    font-size: 20px;
    color: #002f6b;
    font-weight: bold;
    padding-left: 15px;
    padding-bottom: 20px; }
  .youtube-area .btns {
    margin-top: 30px;
    padding: 0 15px; }
    .youtube-area .btns > a {
      display: block;
      text-align: center;
      color: #fff;
      font-size: 20px;
      font-weight: bold;
      line-height: 60px;
      border-radius: 15px;
      background-color: #002f6b; }

.youtube-list {
  margin-top: 30px;
  padding: 0 15px; }
  .youtube-list h4 {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px; }
  .youtube-list ul {
    display: table;
    width: 100%;
    table-layout: fixed; }
    .youtube-list ul > li {
      display: table-cell;
      vertical-align: top; }
      .youtube-list ul > li > a {
        display: block; }
        .youtube-list ul > li > a img {
          display: block;
          width: 100%; }
      .youtube-list ul > li:first-child {
        padding-right: 5px; }
      .youtube-list ul > li:last-child {
        padding-left: 5px; }

/* consult */
.consult {
  padding: 60px 0 40px; }
  .consult .container {
    padding: 0 15px; }
    .consult .container h3 {
      font-size: 20px;
      color: #002f6b;
      font-weight: bold; }
    .consult .container .note {
      margin-top: 15px;
      font-size: 16px;
      color: #000;
      font-weight: 400; }
    .consult .container ul {
      margin-top: 20px;
      padding-top: 30px;
      border-top: 1px solid #002f6b; }
      .consult .container ul > li > dl dt {
        font-size: 15px;
        color: #333;
        font-weight: 500;
        margin-bottom: 10px; }
      .consult .container ul > li > dl dd .form-control {
        display: block;
        width: 100%;
        height: 40px;
        font-size: 15px;
        color: #000;
        padding: 0 10px;
        border: 1px solid #ccc;
        border-radius: 0; }
      .consult .container ul > li > dl dd textarea {
        padding: 10px !important;
        height: 160px !important;
        resize: none; }
      .consult .container ul > li ~ li {
        margin-top: 20px; }
    .consult .container .btn-submit {
      display: block;
      width: 100%;
      text-align: center;
      color: #fff;
      font-size: 20px;
      font-weight: bold;
      line-height: 60px;
      margin-top: 30px;
      border-radius: 15px;
      background-color: #002f6b; }

/* field */
.field {
  padding: 60px 0 40px; }
  .field .container {
    padding: 0 15px; }
    .field .container .section-header {
      padding-bottom: 60px; }
      .field .container .section-header h3 {
        font-size: 20px;
        color: #002f6b;
        font-weight: bold; }
      .field .container .section-header .info-box {
        display: table;
        width: 100%;
        table-layout: fixed;
        padding-top: 20px;
        margin-top: 20px;
        border: 1px solid #ccc; }
        .field .container .section-header .info-box > div {
          display: table-cell;
          vertical-align: middle; }
          .field .container .section-header .info-box > div.item-img {
            width: 30%; }
            .field .container .section-header .info-box > div.item-img img {
              display: block;
              width: 100%; }
          .field .container .section-header .info-box > div.details {
            padding-right: 15px;
            padding-bottom: 20px; }
            .field .container .section-header .info-box > div.details p {
              font-size: 14px;
              line-height: 20px;
              font-weight: 400;
              color: #333; }
    .field .container .section-content > ul > li > dl > dt {
      font-size: 18px;
      line-height: 22px;
      font-weight: 600;
      color: #000;
      padding-left: 20px;
      background-image: url(/assets/images/ico_title_dott.png);
      background-repeat: no-repeat;
      background-position: 0 50%;
      background-size: auto auto; }
    .field .container .section-content > ul > li > dl > dd {
      padding-left: 20px;
      margin-top: 15px; }
      .field .container .section-content > ul > li > dl > dd > ul > li {
        position: relative;
        display: block;
        color: #333;
        font-size: 14px;
        line-height: 20px;
        padding-left: 10px; }
        .field .container .section-content > ul > li > dl > dd > ul > li > a {
          color: #333; }
        .field .container .section-content > ul > li > dl > dd > ul > li:before {
          position: absolute;
          top: 0;
          left: 0;
          content: '-'; }
        .field .container .section-content > ul > li > dl > dd > ul > li ~ li {
          margin-top: 5px; }
    .field .container .section-content > ul > li ~ li {
      margin-top: 30px; }

/* location */
.location {
  overflow: hidden;
  padding: 60px 0 40px; }
  .location .container {
    padding: 0 15px; }
    .location .container .section-header {
      padding-bottom: 20px; }
      .location .container .section-header h3 {
        font-size: 20px;
        color: #002f6b;
        font-weight: bold; }
      .location .container .section-header ~ .section-header {
        margin-top: 60px;
        padding-top: 60px;
        border-top: 1px solid #ccc; }
    .location .container .section-content .map-area {
      width: calc(100% + 30px);
      margin: 0 -15px; }
      .location .container .section-content .map-area iframe {
        display: block;
        width: 100%;
        height: 300px; }
    .location .container .section-content .btn-area {
      text-align: center;
      margin-top: 30px; }
      .location .container .section-content .btn-area > a {
        display: inline-block;
        width: 160px;
        text-align: center;
        color: #fff;
        font-size: 16px;
        font-weight: bold;
        line-height: 40px;
        border-radius: 100px;
        background-color: #002f6b; }

#footer {
  text-align: center;
  padding-bottom: 60px;
  background-color: #222; }
  #footer .sns-list {
    font-size: 0;
    padding: 15px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #aaa; }
    #footer .sns-list > a {
      display: inline-block;
      vertical-align: top;
      font-size: 14px;
      color: #A7A7A7;
      background-color: #4F4F4F;
      margin-right: 20px;
      line-height: 30px;
      padding: 0 20px 0 40px;
      border-radius: 100px;
      background-repeat: no-repeat;
      background-position: 12px 50%;
      background-size: auto auto; }
      #footer .sns-list > a:nth-of-type(1) {
        background-image: url(/assets/images/ico_facebook.png); }
      #footer .sns-list > a:nth-of-type(2) {
        background-image: url(/assets/images/ico_instar.png); }
      #footer .sns-list > a:last-child {
        margin-right: 0; }
  #footer .container {
    padding: 0 15px; }
    #footer .container .logo {
      display: block;
      max-width: 260px;
      margin: 0 auto; }
      #footer .container .logo img {
        display: block;
        width: 100%; }
    #footer .container .company-info {
      font-size: 12px;
      color: #A7A7A7;
      line-height: 16px;
      font-weight: 400;
      margin-top: 30px; }
      #footer .container .company-info a, #footer .container .company-info address {
        color: inherit;
        font-style: normal; }

/*# sourceMappingURL=default.css.map */
