@charset "UTF-8";
/*
Theme Name: Twenty Twenty
Text Domain: twentytwenty
Version: 1.3
Requires at least: 4.7
Requires PHP: 5.2.4
Description: Our default theme for 2020 is designed to take full advantage of the flexibility of the block editor. Organizations and businesses have the ability to create dynamic landing pages with endless layouts using the group and column blocks. The centered content column and fine-tuned typography also makes it perfect for traditional blogs. Complete editor styles give you a good idea of what your content will look like, even before you publish. You can give your site a personal touch by changing the background colors and the accent color in the Customizer. The colors of all elements on your site are automatically calculated based on the colors you pick, ensuring a high, accessible color contrast for your visitors.
Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks, accessibility-ready
Author: the WordPress team
Author URI: https://wordpress.org/
Theme URI: https://wordpress.org/themes/twentytwenty/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

All files, unless otherwise stated, are released under the GNU General Public
License version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html)

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned
with others.
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

	0. 	CSS Reset
	1. 	Document Setup
	2. 	Element Base
	3. 	Helper Classes
	4. 	Site Header
	5. 	Menu Modal
	6. 	Search Modal
	7. 	Page Templates
		a. 	Template: Cover Template
		c. 	Template: Full Width
	8.  Post: Archive
	9.  Post: Single
	10. Blocks
	11. Entry Content
	12. Comments
	13. Site Pagination
	14. Error 404
	15. Widgets
	16. Site Footer
	17. Media Queries

----------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@300;500;700&display=swap");
.post-meta-wrapper {
  display: none !important;
}

/* -------------------------------------------------------------------------- */
/*	0. CSS Reset
/* -------------------------------------------------------------------------- */
html,
body {
  border: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
address,
big,
cite,
code,
em,
font,
img,
small,
strike,
sub,
sup,
li,
ol,
ul,
fieldset,
form,
label,
legend,
button,
table,
caption,
tr,
th,
td {
  border: none;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
  text-align: inherit;
}

blockquote::before,
blockquote::after {
  content: "";
}

/* -------------------------------------------------------------------------- */
/*	1. Document Setup
/* -------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'NanumSquareRound', sans-serif;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  -webkit-font-smoothing: antialiased;
  word-break: break-word;
  word-wrap: break-word;
}

#site-content {
  overflow: hidden;
  min-height: calc(100vh - 292px);
}

/* Clearing ---------------------------------- */
.group::after,
.entry-content::after {
  clear: both;
  content: "";
  display: block;
}

/* Base Transitions -------------------------- */
/* Screen Reader Text ------------------------ */
/* Skip Link --------------------------------- */
/*	2. Element Base
/* ---------------------------------------------*---------------------------- */
main {
  display: block;
}

p {
  line-height: 1.5;
}

em,
i,
q,
dfn {
  font-style: italic;
}

em em,
em i,
i em,
i i,
cite em,
cite i {
  font-weight: bolder;
}

big {
  font-size: 1.2em;
}

small {
  font-size: 0.75em;
}

b,
strong {
  font-weight: 700;
}

ins {
  text-decoration: underline;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

abbr,
acronym {
  cursor: help;
}

address {
  line-height: 1.5;
  margin: 0 0 2rem 0;
}

hr {
  border-style: solid;
  border-width: 0.1rem 0 0 0;
  border-color: #dcd7ca;
  margin: 4rem 0;
}

a {
  text-decoration: none;
  color: #000;
}

a:hover,
a:focus {
  text-decoration: none;
}

li {
  list-style: none;
}

/* Quotes ------------------------------------ */
blockquote {
  border-color: #cd2653;
  border-style: solid;
  /*rtl:ignore*/
  border-width: 0 0 0 0.2rem;
  color: inherit;
  font-size: 1em;
  margin: 4rem 0;
  /*rtl:ignore*/
  padding: 0.5rem 0 0.5rem 2rem;
}

cite {
  color: #6d6d6d;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25;
}

blockquote cite {
  display: block;
  margin: 2rem 0 0 0;
}

blockquote p:last-child {
  margin: 0;
}

/* Code -------------------------------------- */
code,
kbd,
pre,
samp {
  font-family: monospace;
  font-size: 0.9em;
  padding: 0.4rem 0.6rem;
}

code,
kbd,
samp {
  background: rgba(0, 0, 0, 0.075);
  border-radius: 0.2rem;
}

pre {
  border: 0.1rem solid #dcd7ca;
  line-height: 1.5;
  margin: 4rem 0;
  overflow: auto;
  padding: 3rem 2rem;
  text-align: left;
}

pre code {
  background: transparent;
  padding: 0;
}

/* Media ------------------------------------- */
figure {
  display: block;
  margin: 0;
}

iframe {
  display: block;
  max-width: 100%;
}

video {
  display: block;
}

svg,
img,
embed,
object {
  display: block;
  height: auto;
  max-width: 100%;
}

figcaption,
.wp-caption-text {
  color: #6d6d6d;
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 1.5rem;
}

figcaption a,
.wp-caption-text a {
  color: inherit;
}

blockquote.instagram-media,
iframe.instagram-media {
  margin: auto !important;
}

/* GALLERIES */
.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 3em 0 3em -0.8em;
  width: calc(100% + 1.6em);
}

.gallery-item {
  margin: 0.8em 0;
  padding: 0 0.8em;
  width: 100%;
}

.gallery-caption {
  display: block;
  margin-top: 0.8em;
}

/* Inputs ------------------------------------ */
fieldset {
  border: 0.2rem solid #dcd7ca;
  padding: 2rem;
}

legend {
  font-size: 0.85em;
  font-weight: 700;
  padding: 0 1rem;
}

label {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0 0 0.5rem 0;
}

label.inline,
input[type="checkbox"] + label {
  display: inline;
  font-weight: 400;
  margin-left: 0.5rem;
}

input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  top: 2px;
  display: inline-block;
  margin: 0;
  width: 1.5rem;
  min-width: 1.5rem;
  height: 1.5rem;
  background: #fff;
  border-radius: 0;
  border-style: solid;
  border-width: 0.1rem;
  border-color: #dcd7ca;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
}

input[type="checkbox"]:checked::before {
  /* Use the "Yes" SVG Dashicon */
  content: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%23000000%27%2F%3E%3C%2Fsvg%3E");
  position: absolute;
  display: inline-block;
  margin: -0.1875rem 0 0 -0.25rem;
  height: 1.75rem;
  width: 1.75rem;
}

input,
textarea,
button,
.button,
.faux-button,
.wp-block-button__link,
.wp-block-file__button {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1;
}

@supports (font-variation-settings: normal) {
  input,
  textarea,
  button,
  .button,
  .faux-button,
  .faux-button.more-link,
  .wp-block-button__link,
  .wp-block-file__button {
    font-family: "Inter var", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  }
}

input,
textarea {
  border-color: #dcd7ca;
  color: #000;
}

code,
input[type="url"],
input[type="email"],
input[type="tel"] {
  /*rtl:ignore*/
  direction: ltr;
}

select {
  font-size: 1em;
}

textarea {
  height: 12rem;
  line-height: 1.5;
  width: 100%;
}

input::-webkit-input-placeholder {
  line-height: normal;
}

input:-ms-input-placeholder {
  line-height: normal;
}

input::-moz-placeholder {
  line-height: revert;
  /* Reset to the value from the user-agent stylesheet. */
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

button:focus,
button:hover,
.button:focus,
.button:hover,
.faux-button:focus,
.faux-button:hover,
.wp-block-button .wp-block-button__link:focus,
.wp-block-button .wp-block-button__link:hover,
.wp-block-file .wp-block-file__button:focus,
.wp-block-file .wp-block-file__button:hover,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover {
  text-decoration: underline;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  border-color: currentColor;
}

input[type="search"]:focus {
  outline: thin dotted;
  outline-offset: -4px;
}

/* -------------------------------------------------------------------------- */
/*                            이미지 확대
/* -------------------------------------------------------------------------- */
.bigPictureWrapper-mobile {
  position: absolute;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  background-color: #000;
  z-index: 100;
  background: rgba(0, 0, 0, 0.8);
}

.bigPictureWrapper {
  position: absolute;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0%;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 100;
  background: rgba(0, 0, 0, 0.8);
}

.bigPicture {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bigPicture img {
  width: 600px;
}

/* -------------------------------------------------------------------------- */
/*                               table
/* -------------------------------------------------------------------------- */
table {
  width: 100%;
  font-size: 1.5em;
  empty-cells: show;
  min-width: 350px;
  overflow: hidden;
  border-spacing: 0;
  border-collapse: collapse;
  border: 2px solid #000;
}

.alignleft > table {
  margin: 0;
}

.alignright > table {
  margin: 0;
}

th,
td {
  font-family: "Noto Serif KR", serif;
  line-height: 0;
  height: 5vh;
  margin: 0;
  overflow: visible;
  border: 2px solid #000;
}

th {
  font-family: "Noto Sans KR", sans-serif;
}

caption {
  font-weight: 600;
  padding: 0.5em;
  text-align: center;
  background: #dcd7ca;
}

thead {
  vertical-align: bottom;
  white-space: nowrap;
  padding: 25px 0px;
}

.li-set {
  float: left;
  text-align: center;
  height: 110px;
  display: table;
}

/* Dropdown Toggle */
.dropdown-toggle:hover,
.dropdown-toggle:focus {
  background: transparent;
}

.dropdown-toggle:focus {
  outline: thin dotted;
}

.dropdown-toggle.toggled-on .icon {
  /* IE 9 */
  -webkit-transform: rotate(-180deg);
  /* Chrome, Safari, Opera */
  transform: rotate(-180deg);
}

.hide-scroll {
  overflow: hidden;
}

.auto-scroll {
  overflow: auto !important;
}

/* -------------------------------------------------------------------------- */
/*                                Header
/* -------------------------------------------------------------------------- */
.pc-sub {
  display: block !important;
}

#site-header {
  position: fixed;
  width: 100%;
  padding: 0px 50px;
  z-index: 2;
  background-color: #F8F8F8;
}

#site-header .nav-toggle {
  display: none;
}

#site-header .header-inner:after {
  content: "";
  display: block;
  clear: both;
}

#site-header .header-inner .header-titles {
  float: left;
}

#site-header .header-inner .header-titles .log-img {
  resize: both;
  padding-top: 8px;
}

#site-header .header-inner .header-navigation-wrapper {
  width: auto;
  height: auto;
  float: right;
}

#site-header .header-inner .header-navigation-wrapper .nav-top-box {
  display: none;
}

#site-header .header-inner .header-navigation-wrapper:after {
  content: "";
  display: block;
  clear: both;
}

#site-header .header-inner .header-navigation-wrapper .primary-menu:after {
  content: "";
  display: block;
  clear: both;
}

#site-header .header-inner .header-navigation-wrapper .primary-menu .menu-item {
  float: left;
  position: relative;
  z-index: 4;
  padding: 0px 0px;
}

#site-header .header-inner .header-navigation-wrapper .primary-menu .menu-item a {
  display: block;
  padding: 34px 19px;
  font-size: 1.1em;
  font-weight: bold;
}

#site-header .header-inner .header-navigation-wrapper .sub-menu {
  position: absolute;
  font-size: 0.9em;
  display: none;
  width: 130%;
  height: auto;
  margin-top: 34px;
  top: 57px;
  left: 51.5%;
  background-color: #F8F8F8;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 4;
  border-radius: 4px;
  -webkit-box-shadow: 0 0px 11px -3px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0px 11px -3px rgba(0, 0, 0, 0.3);
}

#site-header .header-inner .header-navigation-wrapper .sub-menu:last-child {
  border-right: 2px solid #f6f6f9;
}

#site-header .header-inner .header-navigation-wrapper .sub-menu li {
  width: 100%;
  padding: 0px 0px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#site-header .header-inner .header-navigation-wrapper .sub-menu li a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 0px 16px 0px !important;
  font-size: 1em !important;
  font-weight: bold;
}

#site-header .header-inner .header-navigation-wrapper .sub-menu li a:hover {
  text-decoration: underline;
  color: #0242AF;
}

#site-content.about .page-header {
  background: url("./assets/images/banner-img.png");
  background-repeat: round;
}

#site-content.news .page-header {
  background: url("./assets/images/banner_new.jpg");
  background-repeat: round;
}

#site-content.notice .page-header {
  background: url("./assets/images/banner_notice.jpg");
  background-repeat: round;
}

#site-content.accounting .page-header {
  background: url("./assets/images/banner_accounting.jpg");
  background-repeat: round;
}

#site-content.pds-bg-img .page-header {
  background: url("./assets/images/banner_pds.jpg");
  background-repeat: round;
}

#site-content.board .page-header {
  background: url("./assets/images/banner_board.jpg");
  background-repeat: round;
}

#site-content.directions .page-directions {
  background: url("./assets/images/directions-img.png");
  background-repeat: round;
}

#site-content .page-wrap .page-contents .contents-inner {
  padding: 5%;
}

#wrap {
  padding-top: 87px;
}

/* -------------------------------------------------------------------------- */
/*                                    body
/* -------------------------------------------------------------------------- */
.home main {
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.home main:after {
  content: "";
  display: block;
  clear: both;
}

.home main .left-box-wrapper {
  display: none;
}

.home main .main-left-box {
  position: absolute;
  margin-left: 50px;
  padding-top: 90px;
  z-index: 1;
  height: calc(115% - 16%);
}

.home main .main-left-box .left-text {
  font-size: 2.5em;
  font-weight: 700;
  margin-left: 35px;
  color: #ffffff;
  text-shadow: 1px 1px 2px gray;
}

.home main .main-left-box .left-text-900 {
  font-size: 1.4em;
  font-weight: 900;
}

.home main .main-left-box .notice-box {
  position: absolute;
  width: 90%;
  top: 60%;
  margin-left: 35px;
  background-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.7);
  overflow: hidden;
  border-radius: 4px;
}

.home main .main-left-box .notice-box .notice-inner .notice-content {
  color: #ffffff;
  background-color: #0242AF;
}

.home main .main-left-box .notice-box .notice-inner .notice-content .notice-title-style {
  font-weight: 700;
  font-size: 21px;
  padding: 6px 0px;
  padding-left: 14px;
}

.home main .main-left-box .notice-box .notice-inner .notice-con {
  padding: 6% 7%;
}

.home main .main-left-box .notice-box .notice-inner .notice-con ul li:not(:last-child) {
  margin-bottom: 10px;
}

.home main .main-left-box .notice-box .notice-inner .notice-con ul li:not(:last-child):hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.home main .main-left-box .notice-box .notice-inner .notice-con a .notice-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  float: left;
  width: 70%;
  font-size: 1.0em;
}

.home main .main-left-box .notice-box .notice-inner .notice-con a .notice-date {
  padding-right: 1px;
  text-align: right;
}

.home main .main-sub-inner {
  position: absolute;
  background-color: #234ED9;
  right: 95px;
  margin-top: 90px;
  border-radius: 8px;
  padding: 24px 20px;
  z-index: 1;
}

.home main .main-sub-inner .main-sub-circle {
  border-radius: 50%;
  height: 103px;
  width: 103px;
  margin-bottom: 14px;
  background-color: #0242AF;
  border: 1px solid #FFFFFF;
}

.home main .main-sub-inner .main-sub-text {
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.home main .main-sub-inner .a1 {
  position: absolute;
  padding: 29px 16.5px;
}

.home main .main-sub-inner .a2 {
  position: absolute;
  padding: 25px 27px;
}

.home main .main-sub-inner .a3 {
  position: absolute;
  padding: 22px 22px;
}

.home main .main-sub-inner .a4 {
  position: absolute;
  padding: 25px 22px;
}

.home main .main-sub-inner ul:after {
  content: "";
  display: block;
  clear: both;
}

.home main .main-sub-inner ul li {
  display: inline-block;
  margin: 0px 14px;
}

.home main .main-sub-inner ul li a {
  position: absolute;
  padding: 26px 25px;
}

.home main .main-sub-inner .main-sub-top {
  position: relative;
}

.home main .main-sub-inner .main-sub-bottom {
  position: relative;
  margin-top: 24px;
}

main {
  position: relative;
  background-color: #fff;
}

main .page-inner {
  padding: 2% 15%;
  width: 100%;
}

main .page-inner #kboard-default-list {
  background-color: #ffffff;
  padding: 0 2%;
}

main .page-inner #kboard-default-list .kboard-list-header {
  padding-left: 21px;
  padding-top: 20px;
  width: 100%;
}

main .page-inner #kboard-default-list .kboard-list td {
  font-size: 14px;
  line-height: 1.4;
}

main .page-inner #kboard-default-list .kboard-list .kboard-list-title {
  padding-left: 15px;
}

main .page-inner #kboard-default-list .kboard-pagination {
  width: 100%;
}

main .page-inner .address {
  margin-top: 35px;
}

main .page-inner .address p {
  line-height: 1.7;
  font-size: 18px;
  letter-spacing: -0.05em;
  color: #111111;
}

main .page-inner .address p span {
  font-weight: 500;
  color: #111111;
  font-size: 18px;
}

main .page-header {
  position: relative;
  width: 101%;
  height: 150px;
}

main .page-header .test-box {
  width: 14%;
  border-top: 3px solid #EEEFF0;
  border-bottom: 3px solid #EEEFF0;
  padding: 1.2% 0px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

main .page-header .page-header-title {
  text-align: center;
  font-size: 2.3vw;
  color: #ffffff;
}

main .left-box-wrapper {
  display: block;
  float: left;
  width: 20%;
  height: 100vh;
  margin-right: 1%;
}

main .left-box-wrapper .left-box {
  width: 11.9%;
  position: absolute;
  top: 115px;
  left: 8%;
  z-index: 1;
  color: #ffffff;
  background-color: #0242AF;
  padding-bottom: 20px;
}

main .left-box-wrapper .left-box.left-active {
  top: 88px;
  position: fixed;
}

main .left-box-wrapper .left-box .left-box-inner {
  width: 38%;
  border-top: 4px solid #ffffff;
  margin-left: 30px;
  margin-top: 24.6%;
}

main .left-box-wrapper .left-box .left-box-inner .left-box-title {
  font-size: 1.7vw;
  font-weight: 700;
  width: 200%;
  border-width: 1px;
  margin-top: 17.8%;
}

main .left-box-wrapper .left-box .left-box-inner .left-box-contents {
  width: 226%;
  padding-top: 38%;
  margin-left: -30px;
}

main .left-box-wrapper .left-box .left-box-inner .left-box-contents a {
  display: inline-block;
  margin: 0% 0%;
  font-weight: 700;
  padding: 11px 14.2%;
  height: 45px;
  width: 11.79vw;
  color: #ffffff;
  border-bottom: 1px solid #002158;
}

main .left-box-wrapper .left-box .left-box-inner .left-box-contents li:last-child a {
  border: 0px;
}

main.about .post-inner .entry-content {
  padding: 0 21%;
  margin: 0 auto;
  width: 100%;
  margin: 0 auto;
  font-family: "Noto Serif KR", serif;
  background-color: #F5F5F5;
}

main.about .post-inner .entry-content .table-status {
  background-color: #ffffff;
  padding: 0 3%;
  padding-bottom: 5%;
  -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 16px rgba(0, 0, 0, 0.08);
}

main.about .post-inner .entry-content .table-status td span {
  line-height: 1.3;
}

main.about .post-inner .entry-content .table-status p > iframe {
  padding-top: 32px;
}

main.about .post-inner .entry-content .table-status .address p {
  font-size: 18px;
  margin-bottom: 6px;
}

main.about .post-inner .entry-content .table-status .address p span {
  font-weight: 500;
  margin-bottom: 4px;
}

main.about .post-inner .entry-content .table-status p > img {
  float: left;
  max-width: 322px;
  min-width: 100px;
  padding-right: 20px;
  width: 100%;
}

main.about .post-inner .entry-content .table-status p {
  margin-bottom: 1em;
  font-family: "Noto Sans KR", sans-serif;
}

main.about .post-inner .entry-content h2 {
  font-family: "Noto Serif KR", serif;
  width: 100%;
  font-size: 1.9em;
  float: left;
  text-align: left;
  margin-bottom: 26.5px;
  padding-bottom: 10px;
  padding-top: 39px;
  border-bottom: 1.5px dashed #CDCDCD;
}

main.about .post-inner .entry-content .body-contents {
  padding-bottom: 33px;
}

main.about .post-inner .entry-content .body-contents .about-img {
  float: left;
  padding-right: 20px;
  width: 35%;
  min-width: 190px;
}

main.about .post-inner .entry-content .body-contents .mid-contents {
  font-family: "Noto Serif KR", serif;
  font-size: 24px;
  padding-top: 23px;
}

main.about .post-inner .entry-content .body-contents .tail-contents {
  font-family: "Noto Serif KR", serif;
  font-size: 24px;
  padding-left: 5px;
}

main.about .post-inner .mce-item-table {
  overflow-x: auto;
  white-space: nowrap;
}

main.about .post-inner h4 {
  font-size: 1.5em;
}

main.about .post-inner h5 {
  font-size: 1.3em;
}

main.about .post-inner .page-articles {
  padding-bottom: 150px;
  width: 100%;
}

main.about .post-inner .table-articles {
  font-size: 20px;
  padding-bottom: 50px;
}

main.about .post-inner .table-articles:after {
  content: "";
  display: block;
  clear: both;
}

main.about .post-inner .table-articles .table-head:after {
  content: "";
  display: block;
  clear: both;
}

main.news .left-box-wrapper {
  display: none;
}

main.notice .left-box-wrapper {
  display: none;
}

main.accounting .left-box-wrapper {
  display: none;
}

main.pds p:after {
  content: "";
  display: block;
  clear: both;
}

main.board .left-box-wrapper {
  display: none;
}

/* -------------------------------------------------------------------------- */
/*                               Footer
/* -------------------------------------------------------------------------- */
footer {
  -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.1) inset;
          box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.1) inset;
  width: 100%;
  padding-bottom: 15px;
  background-color: #f8f8f8;
}

footer:after {
  content: "";
  display: block;
  clear: both;
}

footer .footer-credits {
  padding: 0px 30%;
  margin-left: 2%;
}

footer .footer-credits .log-img-footer {
  float: left;
  min-width: 135px;
  padding-top: 15px;
  padding-right: 20px;
}

footer .link {
  background-color: #fff;
  text-align: center;
  padding: 1em;
  margin-bottom: 1em;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

footer .link a {
  display: inline-block;
}

/* -------------------------------------------------------------------------- */
/*                               모바일
/* -------------------------------------------------------------------------- */
@media screen and (max-width: 2400px) {
  main.about .post-inner .entry-content .body-contents .about-img {
    width: 36%;
  }
  main.about .post-inner .entry-content .body-contents .tail-contents {
    font-size: 29px;
  }
}

@media screen and (max-width: 1750px) {
  #site-content .slider-wrapper {
    min-width: 1750px;
  }
  footer .footer-credits .log-img-footer {
    padding-top: 5px;
  }
  footer .footer-credits .site-info {
    font-size: 0.8em;
  }
}

@media screen and (max-width: 1510px) {
  footer .footer-credits .log-img-footer {
    width: 190px;
  }
  footer .footer-credits .site-info {
    font-size: 0.7em;
    width: 50vw;
  }
}

@media screen and (max-width: 1366px) {
  #site-content .slider-wrapper {
    min-width: 1750px;
    -webkit-transform: translate(-10%, 0%);
            transform: translate(-10%, 0%);
  }
  .home main .main-left-box .left-text {
    font-size: 2.0em;
    margin-left: 35px;
  }
  .home main .main-left-box .notice-box {
    position: absolute;
    width: 100%;
  }
  .home main .main-left-box .notice-box .notice-inner .notice-con .notice-title {
    width: 74%;
    font-size: 0.9em;
  }
  .home main .main-sub-inner .main-sub-text {
    font-size: 12px;
  }
  .home main .main-sub-inner .main-sub-circle {
    height: 81px;
    width: 81px;
  }
  .home main .main-sub-inner .a2 {
    padding: 14.4px 15px;
  }
  .home main .main-sub-inner .a3 {
    padding: 11px 11px;
  }
  .home main .main-sub-inner .a4 {
    padding: 15px 12px;
  }
  .home main .main-sub-inner ul li {
    margin-left: 18.7px;
    margin-top: 14.5px;
  }
  .home main .main-sub-inner .main-sub-top ul li {
    width: 80px;
  }
  .home main .main-sub-inner .main-sub-top ul li a {
    padding: 17px 13.4px;
  }
  .home main .main-sub-inner .main-sub-top ul li .a1 {
    padding: 18px 6px;
  }
  .home main .main-sub-inner .main-sub-bottom ul li {
    width: 80px;
  }
  main.about .post-inner .entry-content .body-contents .about-img {
    width: 40%;
  }
  main.pds .page-inner {
    padding: 0 15%;
  }
  main.pds .page-inner #kboard-default-list .kboard-list-header {
    padding-left: 21px;
    padding-top: 20px;
    width: 100%;
  }
  main.pds .page-inner #kboard-default-list .kboard-list .kboard-list-title {
    padding-left: 15px;
  }
  main.pds .page-inner #kboard-default-list .kboard-pagination {
    width: 100%;
  }
}

@media screen and (max-width: 1314px) {
  footer .footer-credits {
    padding: 0px 29%;
  }
}

@media screen and (max-width: 1288px) {
  #site-content .post-inner .entry-content {
    padding: 0 8%;
  }
  #site-content .post-inner .entry-content .table-status p > img {
    width: 70%;
  }
  table {
    font-size: 1.1em;
  }
  main .page-header {
    height: 11vw;
    min-height: 75px;
  }
  main .left-box-wrapper {
    display: none;
  }
  footer .footer-credits .site-info {
    font-size: 0.6em;
    width: 67vw;
  }
}

@media screen and (max-width: 1124px) {
  footer .footer-credits {
    padding: 0px 27%;
    margin-left: 1%;
  }
}

@media screen and (max-width: 1024px) {
  #site-content .slider-wrapper {
    -webkit-transform: translate(-24%, 0%);
            transform: translate(-24%, 0%);
  }
  #wrap {
    top: 58px;
    padding-top: 59px;
  }
  #site-header {
    padding: 0px 34px 0px 0px;
  }
  #site-header .header-inner .header-titles .log-img {
    width: 182px;
    margin-left: 17px;
    padding: 3px 0px;
  }
  #site-header .header-inner .header-navigation-wrapper .primary-menu .menu-item a {
    padding: 19px 10px;
  }
  #site-header .header-inner .header-navigation-wrapper .sub-menu {
    top: 20px;
  }
  .home main .main-left-box .left-text {
    font-size: 2.0em;
  }
  .home main .main-left-box .notice-box .notice-inner .notice-con {
    padding: 19px 25px;
  }
  .home main .main-left-box .notice-box .notice-inner .notice-con .notice-title {
    width: 81%;
    font-size: 0.8em;
  }
  main.about .post-inner .entry-content .table-status p {
    padding-left: 0px;
  }
  main.about .post-inner .entry-content .table-status span {
    font-size: 1em !important;
  }
  main.about .post-inner .entry-content h2 {
    width: 100%;
  }
  main.about .post-inner .entry-content .body-contents .mid-contents {
    font-size: 21px;
  }
  footer .footer-credits .log-img-footer {
    padding-right: 20px;
    padding-left: 2px;
  }
}

@media screen and (max-width: 960px) {
  #site-header .header-inner .header-navigation-wrapper .primary-menu:after {
    content: "";
    display: block;
    clear: both;
  }
  footer .footer-credits {
    padding: 0px 25%;
  }
}

@media screen and (max-width: 915px) {
  #site-content .main-sub-inner {
    display: none;
  }
  footer .footer-credits {
    padding: 0px 24%;
  }
}

@media screen and (max-width: 880px) {
  footer .footer-credits {
    padding: 0px 23%;
    margin-left: 0;
  }
}

@media screen and (max-width: 850px) {
  .home main .main-left-box {
    margin-top: 50px;
    height: 100%;
    padding-top: 0;
  }
  .home main .main-left-box .left-text {
    margin-left: 0px;
    font-size: 2.0em;
  }
  .home main .main-left-box .left-text-900 {
    font-size: 1.2em;
  }
  .home main .main-left-box .notice-box {
    margin-left: 0px;
  }
  .home main .main-left-box .notice-box .notice-inner .notice-content .notice-title-style {
    font-size: 17px;
    padding: 7px 7px;
  }
  .home main .main-left-box .notice-box .notice-inner .notice-con {
    padding: 20px 18px;
  }
  .home main .main-left-box .notice-box .notice-inner .notice-con .notice-title {
    width: 82%;
    font-size: 0.8em;
  }
  main.about .post-inner .entry-content .body-contents .mid-contents {
    font-size: 19px;
    padding-left: 0px;
  }
  main.about .post-inner .entry-content .body-contents .tail-contents {
    font-size: 21px;
  }
  footer .footer-credits {
    padding: 0px 20%;
  }
}

@media screen and (max-width: 821px) {
  footer .footer-credits {
    padding: 0px 21%;
  }
}

@media screen and (max-width: 796px) {
  main.about .post-inner .entry-content .table-status p > img {
    float: none;
    width: 100%;
    margin: 0 auto;
    padding: 0 5% 8% 5%;
  }
  #site-content .slider-wrapper {
    min-width: 1750px;
    -webkit-transform: translate(-32%, 0%);
            transform: translate(-32%, 0%);
  }
  #site-content .post-inner .entry-content {
    padding: 0 0;
  }
  #site-header .header-inner .header-navigation-wrapper {
    clear: both;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 63px;
    height: 58px;
    overflow: hidden;
    background-color: transparent;
    -webkit-transition: width 0.4s cubic-bezier(0.8, 0, 0.2, 1), height 0.4s cubic-bezier(0.8, 0, 0.2, 1), background-color 0.2s cubic-bezier(0.8, 0, 0.2, 1) 0.5s;
    transition: width 0.4s cubic-bezier(0.8, 0, 0.2, 1), height 0.4s cubic-bezier(0.8, 0, 0.2, 1), background-color 0.2s cubic-bezier(0.8, 0, 0.2, 1) 0.5s;
    z-index: 101;
  }
  #site-header .header-inner .header-navigation-wrapper.on {
    width: 100%;
    height: 100%;
    background-color: #234ED9;
    -webkit-transition: width 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0.2s, height 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0.2s, background-color 0.2s cubic-bezier(0.8, 0, 0.2, 1);
    transition: width 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0.2s, height 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0.2s, background-color 0.2s cubic-bezier(0.8, 0, 0.2, 1);
  }
  #site-header .header-inner .header-navigation-wrapper .nav-top-box {
    display: block;
    position: relative;
    height: 58px;
    width: 100%;
    font-size: 25px;
    font-weight: 700;
    padding-left: 10px;
    padding-top: 10px;
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
    z-index: 501;
    top: 0;
  }
  #site-header .header-inner .header-navigation-wrapper .primary-menu-wrapper {
    position: absolute;
    top: 0px;
    right: 0;
    bottom: 48px;
    left: 0;
    overflow: hidden;
    padding: 0% 0%;
    z-index: 500;
  }
  #site-header .header-inner .header-navigation-wrapper .primary-menu-wrapper .primary-menu {
    width: 100%;
    position: unset;
    top: 48px;
  }
  #site-header .header-inner .header-navigation-wrapper .primary-menu-wrapper .primary-menu .menu-item {
    -webkit-transition: 0.2s;
    transition: 0.2s;
    float: unset;
    width: 100%;
    margin-bottom: -19px;
    margin-left: 0px;
    padding: 0px;
    /*=====↓↓↓=====↓↓↓=====↓↓↓=====↓↓↓=====↓↓↓=====TEST=====↓↓↓=====↓↓↓=====↓↓↓=====↓↓↓=====↓↓↓=====*/
    /*=====↑↑↑=====↑↑↑=====↑↑↑=====↑↑↑=====↑↑↑=====TEST=====↑↑↑=====↑↑↑=====↑↑↑=====↑↑↑=====↑↑↑=====*/
  }
  #site-header .header-inner .header-navigation-wrapper .primary-menu-wrapper .primary-menu .menu-item a:first-child {
    margin-top: -2px;
  }
  #site-header .header-inner .header-navigation-wrapper .primary-menu-wrapper .primary-menu .menu-item > a {
    color: #F3F3F3;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 0;
  }
  #site-header .header-inner .header-navigation-wrapper .primary-menu-wrapper .primary-menu .menu-item a {
    display: block;
    border-right: 0;
    font-size: 18px;
    margin: 18px 0px;
  }
  #site-header .header-inner .header-navigation-wrapper .primary-menu-wrapper .primary-menu .menu-item .main-on {
    border-bottom: 0px;
  }
  #site-header .header-inner .header-navigation-wrapper .primary-menu-wrapper .primary-menu .menu-item .sub-menu {
    top: 10px;
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0);
    border-top: none;
    border-left: none;
    border-right: none;
  }
  #site-header .header-inner .header-navigation-wrapper .primary-menu-wrapper .primary-menu .menu-item .sub-menu li {
    border-bottom: none;
    margin-bottom: -21px;
  }
  #site-header .header-inner .header-navigation-wrapper .primary-menu-wrapper .primary-menu .menu-item .sub-menu.on {
    height: auto;
    max-height: 5000px;
    left: 50%;
    top: -18px;
  }
  #site-header .header-inner .header-navigation-wrapper .primary-menu-wrapper .primary-menu .menu-item .sub-menu.on li:nth-child(1) {
    -webkit-box-shadow: 0px 6px 0px 0px rgba(0, 0, 0, 0.1) inset;
            box-shadow: 0px 6px 0px 0px rgba(0, 0, 0, 0.1) inset;
  }
  #site-header .header-inner .header-navigation-wrapper .primary-menu-wrapper .primary-menu .menu-item .sub-menu a {
    width: 100%;
    text-align: left;
    margin-bottom: 21px;
    margin-left: 0;
    padding: 21px 34px !important;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  main.pds .page-inner {
    padding: 0 0;
    width: 90%;
    margin: 0 auto;
  }
  footer .footer-credits {
    padding: 0px 15%;
  }
  footer .footer-credits .site-info {
    width: 70vw;
  }
  .hamburger {
    position: absolute;
    top: -9px;
    right: -13px;
    z-index: 102;
    display: inline-block;
    cursor: pointer;
    -webkit-transition-property: opacity, -webkit-filter;
    transition-property: opacity, -webkit-filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
    -webkit-transition-duration: 0.15s;
            transition-duration: 0.15s;
    -webkit-transition-timing-function: linear;
            transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: -23px;
    overflow: visible;
  }
  .hamburger:hover {
    opacity: 0.7;
  }
  .hamburger.is-active:hover {
    opacity: 0.7;
  }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: #9B9B9B;
  }
  .hamburger-box {
    width: 66px;
    height: 57px;
    margin: 15px;
    display: inline-block;
    position: relative;
  }
  .hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
  }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 30px;
    height: 3px;
    background-color: #9B9B9B;
    border-radius: 4px;
    position: absolute;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.15s;
            transition-duration: 0.15s;
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease;
  }
  .hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::before, .hamburger.is-active .hamburger-inner::after {
    background-color: #F3F3F3;
  }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
  }
  .hamburger-inner::before {
    top: -10px;
  }
  .hamburger-inner::after {
    bottom: -10px;
  }
  /*
		* Collapse
		*/
  .hamburger--collapse .hamburger-inner {
    top: auto;
    bottom: 0;
    -webkit-transition-duration: 0.13s;
            transition-duration: 0.13s;
    -webkit-transition-delay: 0.13s;
            transition-delay: 0.13s;
    -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  .hamburger--collapse .hamburger-inner::after {
    top: -20px;
    -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
  }
  .hamburger--collapse .hamburger-inner::before {
    -webkit-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  .hamburger--collapse.is-active .hamburger-inner {
    -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
            transform: translate3d(0, -10px, 0) rotate(-45deg);
    -webkit-transition-delay: 0.22s;
            transition-delay: 0.22s;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
  }
  .hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
}

@media screen and (max-width: 768px) {
  table {
    font-size: 0.9em;
  }
}

@media screen and (max-width: 687px) {
  main .page-header .test-box {
    width: 94px;
    padding: 8.2px 0px;
  }
  main .page-header .page-header-title {
    font-size: 15.7px;
  }
  main.about .post-inner .entry-content h2 {
    font-size: 23px;
  }
  footer .footer-credits {
    padding: 0px 16%;
  }
  footer .footer-credits .log-img-footer {
    width: 150px;
  }
}

@media screen and (max-width: 667px) {
  footer .footer-credits {
    padding: 0px 13%;
  }
  footer .footer-credits .site-info {
    width: 75vw;
  }
}

@media screen and (max-width: 600px) {
  .home main .main-left-box {
    height: 87%;
  }
  .home main .main-left-box .notice-box {
    top: 66%;
  }
  .home main .main-left-box .notice-box .notice-inner .notice-con {
    padding: 17px 18px;
  }
  .home main .main-left-box .notice-box .notice-inner .notice-con .notice-title {
    width: 83%;
    font-size: 0.7em;
  }
  .home main .main-sub-inner {
    display: none;
  }
  main.about .post-inner .entry-content .body-contents .about-img {
    width: 45%;
  }
  main.about .post-inner .entry-content .body-contents .mid-contents {
    font-size: 15px;
  }
  main.about .post-inner .entry-content .body-contents .tail-contents {
    font-size: 17px;
  }
  footer .footer-credits {
    padding: 0 0 0 8%;
  }
  footer .footer-credits .site-info {
    width: 80vw;
  }
}

@media screen and (max-width: 560px) {
  footer .footer-credits {
    padding: 0px 8%;
  }
}

@media screen and (min-width: 480px) and (max-width: 552px) {
  footer .footer-credits {
    padding: 0px 8%;
  }
  footer .footer-credits .site-info {
    width: 86vw;
  }
  footer .footer-credits .log-img-footer {
    float: none;
    width: 160px;
  }
}

@media screen and (max-width: 520px) {
  #site-content .slider-wrapper {
    -webkit-transform: translate(-44%, 0%);
            transform: translate(-44%, 0%);
  }
  .home main .main-left-box .notice-box {
    margin: 0 5%;
  }
}

@media screen and (max-width: 512px) {
  table {
    font-size: 0.7em;
  }
}

@media screen and (max-width: 500px) {
  footer .footer-credits {
    padding: 0px 4.5%;
  }
}

@media screen and (max-width: 480px) {
  #site-header .header-inner:after {
    content: "";
    display: block;
    clear: both;
  }
  .home main .main-left-box {
    width: 100%;
    height: 100%;
    margin-left: 0px;
  }
  .home main .main-left-box .left-text {
    margin-left: 50px;
    font-size: 2.0em;
  }
  .home main .main-left-box .notice-box {
    top: 65%;
    width: 90%;
    margin: 0 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .home main .main-left-box .notice-box .notice-inner .notice-con .notice-title {
    width: 70%;
  }
  .home main .main-sub-inner {
    display: none;
  }
  main.about .post-inner .entry-content .body-contents .about-img {
    padding-right: -10px;
    width: 51%;
  }
  main.about .post-inner .entry-content .body-contents .mid-contents {
    font-size: 15px;
  }
  footer {
    padding: 0 0;
  }
  footer .footer-credits {
    padding: 0 0 0 19%;
  }
  footer .footer-credits .log-img-footer {
    float: none;
    width: 160px;
  }
  footer .site-info {
    font-size: 10px;
    padding-top: 5px;
  }
}

@media screen and (max-width: 420px) {
  #site-header .header-inner .header-navigation-wrapper.on {
    right: 0;
  }
  .home main .main-left-box {
    height: 90%;
  }
  .home main .main-left-box .left-text {
    margin-left: 50px;
    font-size: 24px;
  }
  .home main .main-left-box .notice-box {
    top: 56%;
    width: 90%;
  }
  .home main .main-left-box .notice-box .notice-inner .notice-content .notice-title-style {
    font-size: 16px;
  }
  .home main .main-left-box .notice-box .notice-inner .notice-con {
    padding: 17px 19px;
  }
  .home main .main-left-box .notice-box .notice-inner .notice-con .notice-title {
    width: 75%;
    font-size: 10px;
  }
  main.about .post-inner .entry-content h2 {
    font-size: 22px;
  }
  main.about .post-inner .entry-content .body-contents .about-img {
    padding-right: -10px;
    width: 51%;
  }
  main.about .post-inner .entry-content .body-contents .tail-contents {
    font-size: 14px;
  }
  footer .footer-credits {
    padding: 5px 15%;
  }
  footer .footer-credits .site-info {
    font-size: 0.5em;
    width: 72vw;
    padding-top: 2px;
  }
  footer .log-img-footer {
    width: 130px;
    padding-top: 5px;
  }
}

@media screen and (max-width: 414px) {
  #site-content .post-inner .entry-content .table-status {
    overflow-x: auto;
  }
}

@media screen and (max-width: 375px) {
  #site-content .slider-wrapper {
    min-width: 1600px;
  }
  #site-header .header-inner .header-navigation-wrapper {
    width: 100%;
  }
  #site-header .header-inner .header-navigation-wrapper .primary-menu-wrapper .primary-menu .menu-item a {
    font-size: 15px;
    padding: 18px 9px;
  }
  #site-header .header-inner .header-navigation-wrapper .primary-menu-wrapper .primary-menu .menu-item .sub-menu.on {
    left: 187.5px;
  }
  #site-header .header-inner .header-navigation-wrapper .primary-menu-wrapper .primary-menu .menu-item .sub-menu a {
    padding: 18px 10px !important;
  }
  .home .main .main-left-box .notice-box .notice-inner .notice-content .notice-title-style {
    padding: 4px 4px;
  }
  .home .main .main-left-box .notice-box .notice-inner .notice-con {
    padding: 15px 15px;
  }
  .home .main .main-left-box .notice-box .notice-inner .notice-con .notice-title {
    width: 59%;
  }
  main.about .post-inner .entry-content .body-contents .about-img {
    width: 56%;
  }
  main.about .post-inner .entry-content .body-contents .mid-contents {
    font-size: 12px;
    padding-top: 25px;
  }
  main.about .post-inner .entry-content .body-contents .tail-contents {
    font-size: 11px;
  }
  footer .footer-credits {
    padding: 1px 12%;
  }
  footer .footer-credits .site-info {
    width: 78vw;
  }
}

@media screen and (max-width: 360px) {
  #site-header .header-inner .header-navigation-wrapper .primary-menu-wrapper .primary-menu .menu-item .sub-menu.on {
    left: 179.5px;
  }
  footer .footer-credits {
    padding: 2px 9%;
  }
  footer .footer-credits .site-info {
    width: 83vw;
  }
}

@media screen and (max-width: 375px) {
  table {
    font-size: 0.7em;
  }
}

@media screen and (max-width: 320px) {
  #site-content .slider-wrapper {
    min-width: 860px;
  }
  #site-header .header-inner .header-navigation-wrapper .primary-menu-wrapper .primary-menu .menu-item .sub-menu.on {
    left: 160px;
  }
  .home .main .main-left-box {
    height: 80%;
  }
  .home .main .main-left-box .left-text {
    margin-left: 20px;
  }
  .home .main .main-left-box .notice-box .notice-inner .notice-content {
    padding: 0px 10px;
  }
  .home .main .main-left-box .notice-box .notice-inner .notice-con {
    padding: 3px 24px;
  }
  main.about .post-inner .entry-content h2 {
    font-size: 19px;
  }
  main.about .post-inner .entry-content .body-contents {
    padding: 0 24px;
  }
  main.about .post-inner .entry-content .body-contents .about-img {
    width: 50%;
    margin-top: 21px;
  }
  main.about .post-inner .entry-content .body-contents .mid-contents {
    margin-top: 17px;
  }
  footer .footer-credits {
    padding: 0 4%;
  }
  footer .footer-credits .site-info {
    width: 93vw;
  }
}

/* -------------------------------------------------------------------------- */
/*                               세로 반응형
/* -------------------------------------------------------------------------- */
@media screen and (min-height: 1024px) {
  #site-content .slider-wrapper {
    min-width: 2021px;
    -webkit-transform: translate(-35%, 0%);
            transform: translate(-35%, 0%);
  }
}

@media screen and (min-height: 1366px) {
  #site-content .slider-wrapper {
    min-width: 2700px;
    -webkit-transform: translate(-35%, 0%);
            transform: translate(-35%, 0%);
  }
}

@media screen and (max-height: 825px) {
  .home main .main-left-box .notice-box {
    top: 64%;
  }
}

@media screen and (max-height: 740px) {
  .home main .main-left-box .notice-box {
    top: 49%;
  }
}

@media screen and (max-height: 720px) {
  .home main {
    height: 77vh;
  }
}
/*# sourceMappingURL=style.css.map */