<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*와이드*/
@media only screen and (min-width: 1220px) and (max-width: 1780px) {
  .marginCenter {
    width: 1200px;
  }
}

/*태블릿*/
@media only screen and (min-width: 927px) and (max-width: 1219px) {
  .marginCenter {
    width: 900px;
  }
  .wrap section.topFix {
    padding-top: 65px;
  }
  .wrap div.topFix {
    padding-top: 65px;
  }
}

/*모바일*/
@media only screen and (max-width: 926px) {
  .marginCenter {
    width: calc(100% - 40px);
  }
  .wrap section.topFix {
    padding-top: inherit;
    padding-bottom: 100px;
  }
  .wrap div.topFix {
    padding-top: inherit;
  }
}
</pre></body></html>