::-moz-selection {
  color: white;
  background-color: #a76a00;
  text-shadow: none;
}

::selection {
  color: white;
  background-color: #a76a00;
  text-shadow: none;
}

::-webkit-scrollbar {
  width: .5rem;
}

::-webkit-scrollbar-track {
  background: #003da7; 
}

::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.25);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,.25);
}

html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

img,
video {
  display: block;
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

td:not([align]),
th:not([align]) {
  text-align: left;
}

html {
  height: 100%;
  font-size: clamp(16px, 2vw, 20px);
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

article,
aside,
figure,
footer,
header,
hgroup,
section {
  display: block;
}

body,
button,
input,
select,
textarea {
  font-family: "Grotesk Remix", Pretendard, BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

code,
pre {
  font-family: Courier, "Courier New", monospace;
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: auto;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  min-height: 100%;
  overflow-x: hidden;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  word-break: keep-all;
  color: white;
  background-color: #003da7;
  cursor: default;
}

body#home {
  background-color: transparent;
}

body#home::after {
  content: "";
  position: fixed;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: #003da7;
  box-shadow: 0 1rem 1rem -1rem black;
  pointer-events: none;
}

body#home::after {
  width: 0;
  height: 0;
}

body#home.is-loaded::after {
  width: 100%;
  height: 100%;
  transition: 2s;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.header {
  position: sticky;
  z-index: 999;
  top: 0;
  padding: 1rem 1rem .5rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.25;
  background-color: #003da7;
  box-shadow: 0 .5rem 1rem -1rem black;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media screen and (min-width: 900px) {
  .header {
    position: fixed;
    left: 0;
    width: 50%;
    height: 100%;
    overflow-y: auto;
    padding-bottom: 3rem;
    padding-right: .5rem;
    font-size: 3rem;
  }
}

#home .header {
  width: 100%;
  background-color: transparent;
  box-shadow: none;
}

.toggle-nav {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem;
  opacity: .25;
  cursor: pointer;
  transition: opacity .25s;
}

.toggle-nav:hover {
  opacity: 1;
}

.toggle-nav:active {
  transform: scale(.975);
}

#home .toggle-nav {
  display: none;
}

.nav {
  font-weight: 400;
  display: none;
}

@media screen and (min-width: 900px) {
  .nav {
    display: block !important;
  }

  .toggle-nav {
    display: none !important;
  }
}

#home .nav {
  display: block !important;
}

.menu a {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu li {
  transition: padding-left .125s;
}

.menu li:hover,
.menu .is-active {
  padding-left: 1em;
}

.language {
  padding-left: 2rem;
  font-size: 1.25rem;
}

@media screen and (min-width: 900px) {
  .language {
    padding-left: 3rem;
  }
}

.main {
  position: relative;
  padding-bottom: 3rem;
  opacity: 0;
}

@media screen and (min-width: 900px) {
  .main {
    margin-left: 50%;
  }
}

.is-loaded .main {
  top: 0;
  opacity: 1;
  transition: top .25s, opacity .25s;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 999;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: .75rem 1rem .5rem;
  font-size: .875rem;
  font-weight: 400;
  background-color: #003da7;
  box-shadow: 0 -.5rem 1rem -1rem black;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#home .footer {
  bottom: -25%;
}

#home.is-loaded .footer {
  bottom: 0;
  transition: bottom 1s 1.5s;
}

.footer div {
  display: flex;
}

.footer div a:not(:last-child) {
  margin-right: .75em;
}

.copyright {
  display: inline-flex;
  align-items: center;
}

.copyright span {
  margin-right: .375em;
}

.section {
  padding: 1rem;
}

@media screen and (min-width: 900px) {
  .section {
    padding-left: .5rem;
  }
}

.section:not(:last-child) {
  margin-bottom: 3rem;
}

.section-header {
  margin-bottom: 3em;
}

.section:not(:first-child) .section-header {
  padding-top: .75em;
  border-top: 1px solid rgba(255,255,255,.125);
}

.title {
  padding-right: 1em;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
}

@media screen and (min-width: 900px) {
  .title {
    font-size: 3rem;
  }
}

.title.is-small {
  font-size: 1.5rem;
}

.title:not(.is-spaced) + .subtitle {
  margin-top: -1.25rem;
}

.subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
}

.subtitle:not(.is-spaced) + .title {
  margin-top: -1.25rem;
}

.content {
  position: relative;
  font-family: "Choi Jeongho";
  font-size: 1rem;
}

@media screen and (min-width: 1200px) {
  .content {
    max-width: 65ch;
  }
}

:lang(ko) .content {
  line-height: 1.625;
}

:lang(en) .content {
  line-height: 1.375;
}

.content:not(:last-child) {
  margin-bottom: 3rem;
}

.content a:not([class]) {
  padding-bottom: .125em;
  border-bottom: 1px solid rgba(255,255,255,.25);
  transition: border-color .25s;
}

.content a:not([class]):hover {
  border-color: white;
}

.content h1 {
  padding-top: .125em;
  text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,.25);
}

.content h1:not(:first-child) {
  margin-top: 2em;
}

.content h2 {
  font-size: 1.5em;
}

.content h2:not(:first-child),
.content h3:not(:first-child),
.content h4:not(:first-child),
.content h5:not(:first-child),
.content h6:not(:first-child) {
  margin-top: 1em;
}

/*.content strong {
  font-weight: normal;
}

.content strong::before {
  content: "『";
}

.content strong::after {
  content: "』";
}

.content em {
  font-style: normal;
}

.content em::before {
  content: "「";
}

.content em::after {
  content: "」";
}*/

.content ul,
.content ol {
  margin-left: 2em;
}

.content ul li:nth-child(odd) {
  list-style-type: disc;
}

.content ul li:nth-child(even) {
  list-style-type: square;
}

.content blockquote {
  padding-left: 2em;
  border-left: .1em solid currentColor;
}

.content figure {
  margin: 0 auto;
}

.content figure:not(:first-child) {
  margin-top: 2em;
}

.content figure:not(:last-child) {
  margin-bottom: 2em;
}

.content figcaption {
  margin-top: .25em;
  font-size: .75em;
}

.content .video,
.content .iframe {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}

.content .video iframe,
.content .iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.content hr {
  border: 0;
}

.content hr::after {
  content: "* * *";
  display: block;
  position: relative;
  top: .125em;
  text-align: center;
}

.content sup,
.content sub {
  position: relative;
  font-size: .75em;
}

.content sup {
  top: .25em;
}

.content sub {
  bottom: .25em;
}

.content .footnote-ref {
  display: inline-block;
  padding: 0 .125em;
}

.content .footnotes {
  margin-top: 2rem;
  font-size: .75em;
}

.content .footnotes hr {
  display: none;
}

.content .footnote-backref {
  display: inline-block;
  position: relative;
  left: -.25em;
  width: 1rem;
  height: 1rem;
  color: transparent;
}

.content .footnote-backref::after {
  content: "↑";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: black;
  background-color: white;
}

.content > *:not(:last-child) {
  margin-bottom: 1em;
}

.images {
  display: flex;
  flex-wrap: wrap;
  margin: -.75rem;
}

.images:not(:last-child) {
  margin-bottom: 1rem;
}

.images > div {
  width: calc(100% / 3);
  padding: .75rem;
}

.image > div {
  position: relative;
  width: 100%;
  padding-top: 75%;
}

.image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  cursor: zoom-in;
}

.image figcaption {
  display: none;
  margin-top: .5em;
  font-family: "Choi Jeongho", serif;
  font-size: .75em;
}

.image.is-expanded,
.image.is-expanded > div {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #003da7;
}

.image.is-expanded img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: calc(100% - 2rem);
  width: auto;
  max-height: 75%;
  height: auto;
  cursor: zoom-out;
}

.image.is-expanded figcaption {
  display: block;
  position: absolute;
  z-index: 9999;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  text-align: center;
}

.card {
  margin: -.5rem;
}

.card > * {
  padding: .5rem;
}

@media screen and (min-width: 428px) {
  .card {
    display: flex;
  }

  .card > * {
    width: 50%;
  }
}

.card figcaption > div:first-child {
  font-size: 1.5rem;
  font-weight: 500;
}

.container {
  position: relative;
  width: auto;
  margin: 0 auto;
}

@media screen and (min-width: 600px) {
  .container {
    max-width: 60rem;
  }
}

.columns {
  margin: -.75rem;
}

.columns:last-child {
  margin-bottom: -.75rem;
}

.columns:not(:last-child) {
  margin-bottom: .75rem;
}

.column {
  padding: .75rem;
}

@media screen and (min-width: 900px) {
  .columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .columns.is-wide {
    margin: -1.5rem;
  }

  .columns.is-wide:last-child {
    margin-bottom: -1.5rem;
  }

  .columns.is-wide:not(:last-child) {
    margin-bottom: 1.5rem;
  }

  .columns.is-wide > .column {
    padding: 1.5rem;
  }

  .column {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
  }

  .column.is-1-4 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: calc(100% / 4);
  }

  .column.is-2-4 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: calc(100% / 4 * 2);
  }

  .column.is-3-4 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: calc(100% / 4 * 3);
  }

  .column.is-4-4 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
  }

  .column.is-1-5 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: calc(100% / 5);
  }

  .column.is-2-5 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: calc(100% / 5 * 2);
  }

  .column.is-3-5 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: calc(100% / 5 * 3);
  }

  .column.is-4-5 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: calc(100% / 5 * 4);
  }

  .column.is-5-5 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
  }

  .column.is-1-6 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: calc(100% / 6);
  }

  .column.is-2-6 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: calc(100% / 6 * 2);
  }

  .column.is-3-6 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: calc(100% / 6 * 3);
  }

  .column.is-4-6 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: calc(100% / 6 * 4);
  }

  .column.is-5-6 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: calc(100% / 6 * 5);
  }

  .column.is-6-6 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
  }

  .column.is-1-12 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: calc(100% / 12);
  }

  .column.is-2-12 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: calc(100% / 12 * 2);
  }

  .column.is-3-12 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 25%;
  }

  .column.is-4-12 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: calc(100% / 12 * 4);
  }

  .column.is-5-12 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: calc(100% / 12 * 5);
  }

  .column.is-6-12 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 50%;
  }

  .column.is-7-12 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: calc(100% / 12 * 7);
  }

  .column.is-8-12 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: calc(100% / 1.5);
  }

  .column.is-9-12 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 75%;
  }

  .column.is-10-12 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: calc(100% / 12 * 10);
  }

  .column.is-11-12 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: calc(100% / 12 * 11);
  }

  .column.is-12-12 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
  }

  .column .column-sticky {
    position: sticky;
    top: 1.5rem;
  }
}

.form {

}

.field:not(:last-child) {
  margin-bottom: 1rem;
}

.control {
  box-sizing: border-box;
  clear: both;
  font-size: 1rem;
  position: relative;
  text-align: inherit;
}

.input {
  -moz-appearance: none;
  -webkit-appearance: none;
  align-items: center;
  border: 1px solid transparent;
  border-radius: .375em;
  box-shadow: none;
  display: inline-flex;
  font-size: 1rem;
  height: 2.5em;
  justify-content: flex-start;
  line-height: 1.5;
  padding-bottom: calc(.5em - 1px);
  padding-left: calc(.75em - 1px);
  padding-right: calc(.75em - 1px);
  padding-top: calc(.5em - 1px);
  position: relative;
  vertical-align: top;
  box-shadow: inset 0 .0625em .125em rgba(10,10,10,.05);
  max-width: 100%;
  width: 100%;
  background-color: #fff;
  border-color: #dbdbdb;
  border-radius: .375em;
  color: #363636;
}

.input:hover {
  border-color: #b5b5b5;
}

.button {
  -moz-appearance: none;
  -webkit-appearance: none;
  align-items: center;
  border: 1px solid transparent;
  border-radius: .375em;
  box-shadow: none;
  display: inline-flex;
  font-size: 1rem;
  height: 2.5em;
  justify-content: flex-start;
  line-height: 1.5;
  padding-bottom: calc(.25em - 1px);
  padding-left: calc(.75em - 1px);
  padding-right: calc(.75em - 1px);
  padding-top: calc(.25em - 1px);
  position: relative;
  vertical-align: top;
  background-color: #fff;
  border-color: #dbdbdb;
  border-width: 1px;
  color: #363636;
  cursor: pointer;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

.is-xs {
  font-size: .75rem;
}

.is-s {
  font-size: .875rem;
}

.is-m {
  font-size: 1rem;
}

.is-l {
  font-size: 1.5rem;
}

.is-xl {
  font-size: 2rem;
}

.breadcrumb {
  font-size: 1rem;
  white-space: nowrap;
}

.breadcrumb ol {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.breadcrumb li {
  align-items: center;
  display: flex;
}

.breadcrumb a {
  align-items: center;
  color: #485fc7;
  display: flex;
  justify-content: center;
  padding: 0 .75em;
}

.breadcrumb li:first-child a {
  padding-left: 0;
}

.breadcrumb .is-active {
  color: #363636;
  cursor: default;
  pointer-events: none;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.tags .tag {
  margin-bottom: .25rem;
}

.tags .tag:not(:last-child) {
  margin-right: .25rem;
}

.tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 2em;
  padding: .125em .5em;
  font-size: 1rem;
  background-color: gainsboro;
  border-radius: .25em;
}

.tag.is-small {
  font-size: .75rem;
}

.tag.is-active {
  color: white;
  background-color: black;
}

.index {
  font-size: 2rem;
  line-height: 1.25;
}

@media screen and (min-width: 600px) {
  .index {
    font-size: 3rem;
  }
}

.index li {
  padding-left: 1em;
  text-indent: -1em;
}

.download {
  display: block;
  padding: .375em 1em .5em;
  text-align: center;
  color: #003da7;
  background-color: rgba(255,255,255,.25);
  transition: background-color .25s;
}

.download:hover {
  background-color: rgba(255,255,255,1);
}

.featured {
  position: fixed;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  max-width: calc(100% - 6rem);
  width: 100%;
  max-height: 75%;
  height: 100%;
  transition: transform 2s 2s;
}

.is-loaded .featured {
  transform: translate(-50%, -50%) scale(1);
}

.featured img {
  max-width: 100%;
  width: auto;
  max-height: 100%;
  height: auto;
  margin: 0 auto;
  box-shadow: 0 .75rem 1rem -1rem black;
}

.logo,
.logo a {
  display: inline-flex;
  align-items: center;
}

.logo {
  margin-bottom: .125em;
}

.logo img {
  height: .875rem;
}

.header .logo {
  display: flex;
}

.header .logo img {
  display: inline-block;
  height: 2rem;
}

@media screen and (min-width: 900px) {
  .header .logo img {
    height: 3rem;
  }
}

.logo img:nth-child(1) {
  display: none;
}

.logo img:nth-child(2) {
  display: inline-block;
}

@media screen and (min-width: 428px) {
  .logo img:nth-child(1) {
    display: inline-block;
  }

  .logo img:nth-child(2) {
    display: none;
  }
}