/*! normalize.scss v0.1.0 | MIT License | based on git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

@font-face {
  font-family: "Spoqa Han Sans Neo";
  font-weight: 700;
  src: local("Spoqa Han Sans Neo Bold"), url("../font/SpoqaHanSansNeo-Bold.woff2") format("woff2"), url("../font/SpoqaHanSansNeo-Bold.woff") format("woff"), url("../font/SpoqaHanSansNeo-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Spoqa Han Sans Neo";
  font-weight: 500;
  src: local("Spoqa Han Sans Neo Medium"), url("../font/SpoqaHanSansNeo-Medium.woff2") format("woff2"), url("../font/SpoqaHanSansNeo-Medium.woff") format("woff"), url("../font/SpoqaHanSansNeo-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Spoqa Han Sans Neo";
  font-weight: 400;
  src: local("Spoqa Han Sans Neo Regular"), url("../font/SpoqaHanSansNeo-Regular.woff2") format("woff2"), url("../font/SpoqaHanSansNeo-Regular.woff") format("woff"), url("../font/SpoqaHanSansNeo-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Spoqa Han Sans Neo";
  font-weight: 300;
  src: local("Spoqa Han Sans Neo Light"), url("../font/SpoqaHanSansNeo-Light.woff2") format("woff2"), url("../font/SpoqaHanSansNeo-Light.woff") format("woff"), url("../font/SpoqaHanSansNeo-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Spoqa Han Sans Neo";
  font-weight: 100;
  src: local("Spoqa Han Sans Neo Thin"), url("../font/SpoqaHanSansNeo-Thin.woff2") format("woff2"), url("../font/SpoqaHanSansNeo-Thin.woff") format("woff"), url("../font/SpoqaHanSansNeo-Thin.ttf") format("truetype");
}
div#content.sub01 div.sub-head {
  background: #74C8FF;
}
div#content.sub01 div.sub-head.fix {
  background: rgba(116, 200, 255, 0.8);
}

div#content.sub02 div.sub-head {
  background: #91DCD2;
}
div#content.sub02 div.sub-head.fix {
  background: rgba(145, 220, 210, 0.8);
}

div#content.sub03 div.sub-head {
  background: #88C46F;
}
div#content.sub03 div.sub-head.fix {
  background: rgba(136, 196, 111, 0.8);
}

div#content.sub04 div.sub-head {
  background: #FFCE48;
}
div#content.sub04 div.sub-head.fix {
  background: rgba(255, 206, 72, 0.8);
}

div#content.sub05 div.sub-head {
  background: #8FABE3;
}
div#content.sub05 div.sub-head.fix {
  background: rgba(143, 171, 227, 0.8);
}

/* basic */
div.list-empty {
  background: #efefef;
  border: 1px solid #ccc;
  text-align: center;
  padding: 80px 10px;
  word-break: keep-all;
  font-weight: 900;
  color: #888;
  font-size: 18px;
  margin: 0 0 40px;
}

.nowLoading {
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
}
.nowLoading span {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.nowLoading i {
  font-size: 180px;
  color: #fff;
}

.pagenation {
  display: inline-block;
  text-align: center;
  font-size: 0;
  margin: 50px 0;
  padding: 0 !important;
  width: 100%;
}
.pagenation a {
  background: white;
}
.pagenation a,
.pagenation strong {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
  color: #222;
  width: 26px;
  line-height: 26px;
  border-radius: 10px;
  margin: 0 2px;
}
@media (min-width: 1200px) {
  .pagenation a,
  .pagenation strong {
    width: 38px;
    line-height: 38px;
    font-size: 16px;
  }
}
.pagenation a.jump, .pagenation a.move,
.pagenation strong.jump,
.pagenation strong.move {
  font-size: 0;
  position: relative;
}
.pagenation a.jump i, .pagenation a.move i,
.pagenation strong.jump i,
.pagenation strong.move i {
  position: absolute;
  left: 50%;
  top: 50%;
  color: #222;
  font-size: 18px;
  transform: translateY(-50%) translateX(-50%);
}
.pagenation .active,
.pagenation strong {
  font-weight: normal;
  font-weight: 500;
  color: #fff;
  background: #1276C0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

s input[type=password] {
  font-family: sans-serif;
}
s input[type=password]::placeholder {
  font-family: "Spoqa Han Sans Neo", "Malgun Gothic", "apple sd gothic neo", sans-serif;
}

.sr-only,
.sound_only {
  position: absolute !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/* default input */
input,
select,
textarea {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: #fff;
  /*
         @media all and (max-width: 1199px) {
             appearance: none;
             -moz-appearance: none;
             -ms-appearance: none;
             -webkit-appearance: none;

             &::-ms-expand {
                 display: none;
             }
         }
     */
}

a {
  text-decoration: none;
  color: #404040;
}

button {
  outline: none;
  border-radius: 0;
}

/* default btn */
.button-set {
  text-align: center;
  margin: 34px auto 40px;
  font-size: 0;
  white-space: nowrap;
}
@media (min-width: 1200px) {
  .button-set {
    margin: 40px auto;
  }
}
.button-set a,
.button-set button {
  display: inline-block;
  vertical-align: top;
  font-size: 18px;
  margin: 0 5px;
  font-weight: 700;
  color: #fff;
  background: #777777;
  border-radius: 10px;
  padding: 0 4px;
  width: 184px;
  max-width: 33%;
  line-height: 56px;
  border: none;
  border: 1px solid transparent;
}
@media (min-width: 1200px) {
  .button-set a,
  .button-set button {
    font-size: 20px;
    margin: 0 10px;
    line-height: 74px;
  }
}
.button-set a.sub,
.button-set button.sub {
  background: #fff;
  color: #222;
  border-color: #ccc;
}
.button-set a.main,
.button-set button.main {
  background: #1276C0;
}
.button-set.three a,
.button-set.three button {
  width: auto;
  padding: 0 15px;
}
@media (min-width: 1200px) {
  .button-set.three a,
  .button-set.three button {
    padding: 0 55px;
  }
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.3);
}
.modal.on {
  display: block;
}
.modal .modal-content {
  position: absolute;
  background-color: #fff;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 620px;
  max-width: calc(100% - 40px);
  border-radius: 25px;
  overflow: hidden;
}
.modal .modal-content h2 {
  background: #1276C0;
  line-height: 60px;
  color: #fff;
  margin: 0;
  text-align: center;
}
.modal .modal-content h2 button {
  position: absolute;
  right: 20px;
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: 500;
}
.modal .modal-content h2 button i {
  position: relative;
  top: 3px;
  font-size: 20px;
}
.modal .modal-content ul.list {
  margin: 0;
  padding: 0;
  max-height: 600px;
  overflow-y: auto;
}
.modal .modal-content ul.list li {
  position: relative;
  border-bottom: 1px solid #ccc;
  background: #fff;
  padding: 30px 124px 30px 20px;
}
@media (min-width: 1200px) {
  .modal .modal-content ul.list li {
    padding-right: 30px;
  }
}
.modal .modal-content ul.list li:last-child() {
  border: none;
}
.modal .modal-content ul.list li strong {
  display: block;
  font-weight: 700;
  font-size: 20px;
  color: #1276C0;
  margin: 0 0 6px;
}
.modal .modal-content ul.list li span {
  display: block;
  font-size: 16px;
  font-weight: 500;
}
.modal .modal-content ul.list li button {
  position: absolute;
  right: 20px;
  top: 30px;
  bottom: 30px;
  width: 84px;
  font-size: 16px;
  color: #fff;
  background: #2E2E2F;
  border: none;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .modal .modal-content ul.list li button {
    right: 30px;
  }
}

/* basic */
html {
  min-width: 360px;
  max-width: 100%;
  font-size: 16px;
  height: -webkit-fill-available;
}

html,
body {
  font-family: "Spoqa Han Sans Neo", "Malgun Gothic", "apple sd gothic neo", sans-serif;
}
@media (max-width: 1280px) {
  html.lock,
  body.lock {
    height: 100vh;
    overflow: hidden;
  }
}

body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  /* header */
}
body .container {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  width: 100%;
  text-align: left;
  vertical-align: top;
  padding: 0 20px;
}
@media (min-width: 1280px) {
  body .container {
    position: relative;
    display: inline-block;
    margin: 0 auto;
    width: 1280px;
    padding: 0;
  }
}
body .small-container {
  padding: 90px 20px;
  margin: 0 auto;
  width: 100%;
  max-width: 440px;
}
body .small-container h3 {
  margin: 0 auto 60px;
  font-size: 24px;
  color: #202020;
  font-weight: 500;
}
body .small-container h3 small {
  display: block;
  font-size: 16px;
  color: #3E3E3E;
  margin: 24px 0 0;
}
body .small-container h3 small span {
  display: block;
}
body .small-container div.btn-set {
  font-size: 0;
  margin: 32px 0;
}
body .small-container div.btn-set button,
body .small-container div.btn-set a {
  display: inline-block;
  text-align: center;
  width: calc(50% - 6px) !important;
  line-height: 56px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #00B7CE;
  color: #00B7CE;
  font-weight: 700;
  font-size: 20px;
  cursor: pointer;
}
body .small-container div.btn-set button:first-child,
body .small-container div.btn-set a:first-child {
  margin-right: 12px;
}
body .small-container div.btn-set button.btn_main,
body .small-container div.btn-set a.btn_main {
  border-color: transparent;
  background: #00B7CE;
  color: #fff;
}
body .small-container div.btn-single {
  margin: 32px 0;
}
body .small-container div.btn-single button,
body .small-container div.btn-single a {
  display: block;
  text-align: center;
  width: 100%;
  line-height: 56px;
  border-radius: 8px;
  background: #00B7CE;
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  margin: 20px 0 24px;
}
body .small-container div.btn-single button.off,
body .small-container div.btn-single a.off {
  opacity: 0.4;
}
body .small-container div.btn-gray {
  margin: 10px 0;
}
body .small-container div.btn-gray button,
body .small-container div.btn-gray a {
  display: block;
  text-align: center;
  width: 100%;
  line-height: 56px;
  border-radius: 8px;
  background: #666;
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  margin: 0 0 24px;
}
body .small-container div.btn-gray button.off,
body .small-container div.btn-gray a.off {
  opacity: 0.4;
}
body div.login {
  padding: 150px 20px 80px;
  margin: 0 auto;
  width: 100%;
  max-width: 440px;
}
body div.login h1 {
  margin: 0 auto 80px;
  width: 100px;
  height: 48px;
  font-size: 0;
  background: url(../images/img-logo.svg) no-repeat center/100% auto;
}
body div.login form div.user-box {
  position: relative;
  margin: 0 0 12px;
}
body div.login form div.user-box input[type=text],
body div.login form div.user-box input[type=number],
body div.login form div.user-box input[type=tel],
body div.login form div.user-box input[type=date],
body div.login form div.user-box input[type=email],
body div.login form div.user-box input[type=password] {
  border: 1px solid #E3E3E3;
  width: 100%;
  height: 56px;
  border-radius: 8px;
  padding: 0 16px 0;
  font-size: 16px;
  color: #202020;
}
body div.login form div.user-box label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #A9A9A9;
}
body div.login form div.user-box input:focus,
body div.login form div.user-box input:valid {
  padding: 16px 16px 0;
  outline: none;
}
body div.login form div.user-box input:focus + label,
body div.login form div.user-box input:valid + label {
  top: 8px;
  transform: none;
  font-size: 11px;
}
body div.login form div.chk_box {
  margin: 0 0 32px;
}
body div.login form div.chk_box input {
  display: none;
}
body div.login form div.chk_box label {
  display: inline-block;
  vertical-align: top;
  font-size: 13px;
  line-height: 24px;
  color: #A9A9A9;
  margin-left: 8px;
  padding: 0 0 0 34px;
  background: url("../images/icon-checkbox-n.svg") no-repeat left center/24px auto;
}
body div.login form div.chk_box input:checked + label {
  background-image: url("../images/icon-checkbox-y.svg");
}
body div.login form button.login {
  width: 100%;
  height: 56px;
  border-radius: 8px;
  background: #00B7CE;
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  margin: 0 0 24px;
}
body div.login form div.login-tools {
  text-align: center;
  padding: 0 0 56px;
  margin: 0 0 32px;
  border-bottom: 1px solid #E3E3E3;
}
body div.login form div.login-tools a {
  display: inline-block;
  font-size: 13px;
  color: #A9A9A9;
}
body div.login form div.login-tools a::after {
  content: "|";
  margin: 0 22px;
}
body div.login form div.login-tools a:last-of-type::after {
  display: none;
}
body div.login div.sns-wrap {
  text-align: center;
}
body div.login div.sns-wrap a {
  display: inline-block;
  width: 56px;
  height: 56px;
  font-size: 0;
  background: #eee;
  border-radius: 50%;
  margin: 0 17px;
}
body div.login div.sns-wrap a.kakao {
  background: url("../images/login-kakao.svg") no-repeat center/100% auto;
}
body div.login div.sns-wrap a.naver {
  background: url("../images/login-naver.svg") no-repeat center/100% auto;
}
body div.find {
  padding: 90px 20px;
  margin: 0 auto;
  width: 100%;
  max-width: 440px;
}
body div.find h3 {
  margin: 0 auto 60px;
  font-size: 24px;
  color: #202020;
  font-weight: 500;
}
body div.find form fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
body div.find form fieldset div.user-box {
  position: relative;
  margin: 0 0 12px;
}
body div.find form fieldset div.user-box input[type=text],
body div.find form fieldset div.user-box input[type=password] {
  border: 1px solid #E3E3E3;
  width: 100%;
  height: 56px;
  border-radius: 8px;
  padding: 0 16px 0;
  font-size: 16px;
  color: #202020;
}
body div.find form fieldset div.user-box label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #A9A9A9;
}
body div.find form fieldset div.user-box input:focus,
body div.find form fieldset div.user-box input:valid {
  padding: 16px 16px 0;
  outline: none;
}
body div.find form fieldset div.user-box input:focus + label,
body div.find form fieldset div.user-box input:valid + label {
  top: 8px;
  transform: none;
  font-size: 11px;
}
body div.find form button.btn_submit {
  width: 100%;
  height: 56px;
  border-radius: 8px;
  background: #00B7CE;
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  margin: 20px 0 24px;
}
body div.register section {
  text-align: left;
}
body div.register section h4 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #202020;
  font-weight: 500;
}
body div.register section textarea {
  width: 100%;
  height: 120px;
  padding: 10px;
  font-size: 13px;
  color: #3E3E3E;
}
body div.register section fieldset {
  display: block;
  border: none;
  margin: 10px 0 30px;
  line-height: 24px;
  font-size: 16px;
  color: #3E3E3E;
  font-weight: 500;
  padding: 0;
}
body div.register section fieldset input {
  display: none;
}
body div.register section fieldset label {
  display: block;
  padding: 0 0 0 34px;
  background: url("../images/icon-checkbox-n.svg") no-repeat left center/24px auto;
}
body div.register section fieldset input:checked + label {
  background-image: url("../images/icon-checkbox-y.svg");
}
body div.register section div table {
  width: 100%;
  border-left: 1px solid #E3E3E3;
  border-top: 1px solid #E3E3E3;
}
body div.register section div table caption {
  display: none;
}
body div.register section div table th,
body div.register section div table td {
  border-right: 1px solid #E3E3E3;
  border-bottom: 1px solid #E3E3E3;
  font-size: 13px;
  padding: 5px;
  text-align: center;
  word-break: keep-all;
}
body div.register section div table th {
  background: #F9F9F9;
}
body div.register div#fregister_chkall {
  background: rgba(0, 183, 206, 0.1019607843);
  line-height: 56px;
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  padding: 0 16px;
  border-radius: 8px;
}
body div.register div#fregister_chkall input {
  display: none;
}
body div.register div#fregister_chkall label {
  display: block;
  padding: 0 0 0 34px;
  background: url("../images/icon-checkbox-n.svg") no-repeat left center/24px auto;
}
body div.register div#fregister_chkall input:checked + label {
  background-image: url("../images/icon-checkbox-y.svg");
}
body div.register div#register_form div.register_form_inner {
  margin: 0 0 60px;
}
body div.register div#register_form div.register_form_inner ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
body div.register div#register_form div.register_form_inner ul li {
  position: relative;
  margin: 0 0 12px;
}
body div.register div#register_form div.register_form_inner ul li input[type=text],
body div.register div#register_form div.register_form_inner ul li input[type=password] {
  border: 1px solid #E3E3E3;
  width: 100%;
  height: 56px;
  border-radius: 8px;
  padding: 0 16px 0;
  font-size: 16px;
  color: #202020;
}
body div.register div#register_form div.register_form_inner ul li label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #A9A9A9;
}
body div.register div#register_form div.register_form_inner ul li input:focus,
body div.register div#register_form div.register_form_inner ul li input:valid {
  padding: 16px 16px 0;
  outline: none;
}
body div.register div#register_form div.register_form_inner ul li input:focus + label,
body div.register div#register_form div.register_form_inner ul li input:valid + label {
  top: 8px;
  transform: none;
  font-size: 11px;
}
body div.register div#register_form div.register_form_inner ul li.chk_box {
  line-height: 24px;
}
body div.register div#register_form div.register_form_inner ul li.chk_box input {
  display: none;
}
body div.register div#register_form div.register_form_inner ul li.chk_box label {
  display: block;
  text-align: left;
  font-size: 16px !important;
  position: static;
  color: #A9A9A9;
  padding: 0 0 0 34px;
  background: url("../images/icon-checkbox-n.svg") no-repeat left center/24px auto;
}
body div.register div#register_form div.register_form_inner ul li.chk_box input:checked + label {
  background-image: url("../images/icon-checkbox-y.svg");
}
body div.register div.result-box {
  border: 1px solid #E3E3E3;
  border-radius: 8px;
  padding: 30px 10px 20px;
  margin: 0 0 32px;
}
body div.register div.result-box p {
  margin: 0 0 10px;
}
body header {
  text-align: center;
  position: relative;
  z-index: 900;
  background: #fff;
  border-bottom: 1px solid #E3E3E3;
}
body header .container {
  height: 52px;
}
@media (min-width: 1280px) {
  body header .container {
    height: 150px;
  }
}
body header .container h1 {
  width: 58px;
  height: 28px;
  margin: 16px 0 0 12px;
  font-size: 0;
}
@media (min-width: 1280px) {
  body header .container h1 {
    width: 100px;
    height: 48px;
    margin: 26px 0 0;
  }
}
body header .container h1 a {
  display: block;
  height: 100%;
  background: url(../images/img-logo.svg) no-repeat center/100% auto;
}
body header .container button.main-menu {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 44px;
  height: 44px;
  background: url("../images/icon-menu.svg") no-repeat center/100% auto;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: none;
}
@media (min-width: 1280px) {
  body header .container button.main-menu {
    display: none;
  }
}
body header.on .container {
  border-bottom-color: transparent;
}
@media (max-width: 1280px) {
  body nav#main-menu {
    display: none;
    position: fixed;
    z-index: 1300;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #fff;
    min-width: 360px;
  }
  body nav#main-menu.on {
    display: block;
  }
  body nav#main-menu div.head-tools {
    position: relative;
    font-size: 0;
    background: #00B7CE;
    padding: 60px 24px 94px;
  }
  body nav#main-menu div.head-tools a {
    display: inline-block;
    color: #fff;
    font-size: 11px;
  }
  body nav#main-menu div.head-tools a.login {
    font-size: 20px;
    font-weight: 700;
    margin-right: 20px;
  }
  body nav#main-menu div.head-tools a.reg-ticket {
    display: block;
    border: 2px solid #fff;
    position: absolute;
    text-align: center;
    left: 24px;
    right: 24px;
    bottom: 24px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    line-height: 50px;
  }
  body nav#main-menu div.head-tools a.reg-ticket::before {
    content: "";
    display: inline-block;
    position: relative;
    top: 1px;
    width: 20px;
    height: 18px;
    background: url(../images/icon-ticket.svg) no-repeat center/100% auto;
    margin: 0 10px 0 0;
  }
  body nav#main-menu div.menus > ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  body nav#main-menu div.menus > ul > li h3 {
    margin: 0;
  }
  body nav#main-menu div.menus > ul > li h3 a {
    display: block;
    color: #202020;
    font-size: 16px;
    font-weight: 400;
    line-height: 68px;
    border-bottom: 1px solid #E3E3E3;
    padding: 0 24px;
    background: url(../images/icon-menu-arrow.svg) no-repeat right 7px center/44px auto;
  }
  body nav#main-menu button.close {
    position: absolute;
    right: 12px;
    top: 12px;
    border: none;
    width: 44px;
    height: 44px;
    background: url("../images/icon-close.svg") no-repeat center/100% auto;
    font-size: 0;
  }
}
@media (min-width: 1280px) {
  body nav#main-menu div.head-tools {
    position: absolute;
    z-index: 1300;
    right: 50%;
    top: 40px;
    margin-right: -600px;
    font-size: 0;
  }
  body nav#main-menu div.head-tools a {
    font-size: 16px;
    margin: 0 0 0 40px;
    color: #0075FF;
    font-weight: 700;
  }
  body nav#main-menu.menu div.menus {
    position: absolute;
    z-index: 902;
    top: 110px;
    left: 50%;
    margin-left: -620px;
  }
  body nav#main-menu.menu div.menus > ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  body nav#main-menu.menu div.menus > ul > li {
    display: inline-block;
    position: relative;
    margin-left: 50px;
  }
  body nav#main-menu.menu div.menus > ul > li:first-of-type {
    margin-left: 0;
  }
  body nav#main-menu.menu div.menus > ul > li h3 {
    margin: 0;
  }
  body nav#main-menu.menu div.menus > ul > li h3 a {
    display: block;
    color: #000;
    font-size: 16px;
    font-weight: 700;
  }
  body nav#main-menu.menu div.menus > ul > li h3 a:hover {
    color: #00B7CE;
  }
  body nav#main-menu.menu div.menus > ul > li ul {
    display: none;
  }
  body nav#main-menu.menu div.menus > ul > li.on ul {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 40px;
    width: 130px;
    list-style: none;
    padding: 20px 20px 10px;
    background: #253039;
    border: 1px solid #17171a;
    border-radius: 10px;
  }
  body nav#main-menu.menu div.menus > ul > li.on ul::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -20px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-bottom-color: #253039;
  }
  body nav#main-menu.menu div.menus > ul > li.on ul li a {
    display: block;
    font-size: 15px;
    color: #c7d6e5;
    margin-bottom: 10px;
  }
  body nav#main-menu.menu div.menus > ul > li.on ul li a:hover, body nav#main-menu.menu div.menus > ul > li.on ul li a.active {
    color: #fff;
  }
  body nav#main-menu.menu button.close {
    display: none;
  }
  body nav#main-menu.allMenu {
    position: absolute;
    z-index: 800;
    left: 0;
    right: 0;
    top: 0;
    background: #fff;
    padding-top: 120px;
  }
  body nav#main-menu.allMenu h2 {
    display: none;
  }
  body nav#main-menu.allMenu div.menus > ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    font-size: 0;
    width: 1200px;
  }
  body nav#main-menu.allMenu div.menus > ul::before {
    content: "";
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 100px;
    margin-left: 320px;
    width: 275px;
    height: 45px;
    background: url(../images/img-menu.svg) no-repeat center/100% auto;
  }
  body nav#main-menu.allMenu div.menus > ul > li {
    display: inline-block;
    width: 33.3333333333%;
    vertical-align: top;
    border-top: 1px solid #b3c4d5;
    padding-bottom: 22px;
  }
  body nav#main-menu.allMenu div.menus > ul > li:first-child {
    border-top: none;
  }
  body nav#main-menu.allMenu div.menus > ul > li h3 {
    margin: 25px 0 15px;
  }
  body nav#main-menu.allMenu div.menus > ul > li h3 a {
    display: block;
    color: #222;
    font-size: 19px;
    word-break: keep-all;
    font-weight: 800;
    padding: 0;
    line-height: 1.6;
  }
  body nav#main-menu.allMenu div.menus > ul > li ul {
    display: none;
  }
  body nav#main-menu.allMenu div.menus > ul > li:nth-child(1), body nav#main-menu.allMenu div.menus > ul > li:nth-child(2) {
    width: 100%;
  }
  body nav#main-menu.allMenu div.menus > ul > li:nth-child(1) ul, body nav#main-menu.allMenu div.menus > ul > li:nth-child(2) ul {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
  }
  body nav#main-menu.allMenu div.menus > ul > li:nth-child(1) ul li, body nav#main-menu.allMenu div.menus > ul > li:nth-child(2) ul li {
    display: inline-block;
  }
  body nav#main-menu.allMenu div.menus > ul > li:nth-child(1) ul li a, body nav#main-menu.allMenu div.menus > ul > li:nth-child(2) ul li a {
    display: block;
    position: relative;
    font-size: 16px;
    margin-bottom: 15px;
    padding: 0 30px 0 0;
    word-break: keep-all;
  }
  body nav#main-menu.allMenu div.menus > ul > li:nth-child(1) ul li a:hover, body nav#main-menu.allMenu div.menus > ul > li:nth-child(1) ul li a.active, body nav#main-menu.allMenu div.menus > ul > li:nth-child(2) ul li a:hover, body nav#main-menu.allMenu div.menus > ul > li:nth-child(2) ul li a.active {
    font-weight: 600;
    color: #4572c2;
  }
  body nav#main-menu.allMenu div.util {
    top: -61px;
  }
  body nav#main-menu.allMenu div.util a {
    color: #555;
  }
  body nav#main-menu.allMenu button.close {
    position: absolute;
    font-size: 0;
    left: 50%;
    margin-left: 564px;
    top: -71px;
    width: 36px;
    height: 36px;
    border: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34' viewBox='0 0 34 34'%3E%3Cg transform='translate(-314 -62)'%3E%3Crect width='34' height='34' transform='translate(314 62)' fill='%23303339' opacity='0.9'/%3E%3Cpath d='M17.043,7.843H10.557V1.357a1.357,1.357,0,0,0-2.715,0V7.843H1.357a1.357,1.357,0,0,0,0,2.715H7.843v6.486a1.357,1.357,0,1,0,2.715,0V10.558h6.486a1.357,1.357,0,0,0,0-2.715' transform='translate(330.936 65.602) rotate(45)' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E%0A") no-repeat center/100% auto;
  }
}
body div.search-form {
  margin: 24px 0;
  padding: 0 20px;
}
@media (min-width: 1280px) {
  body div.search-form {
    position: absolute;
    z-index: 901;
    width: 514px;
    left: 50%;
    top: 26px;
    margin: 0 0 0 -514px;
  }
}
body div.search-form input {
  width: 100%;
  height: 48px;
  border: 1px solid #DFDFDF;
  border-radius: 48px;
  padding: 0 20px 0 48px;
  background: url(../images/icon-search.svg) no-repeat left top/auto 100%;
}
@media (min-width: 1280px) {
  body div.search-form input {
    background-position: left 12px top;
    padding-left: 60px;
  }
}
body div.search-form input::placeholder {
  color: #ABABAB;
}
@media (max-width: 1280px) {
  body.sub div.search-form {
    display: none;
  }
}
body div#content {
  display: inline-block;
  width: 100%;
  position: relative;
  text-align: center;
  /* MAIN */
}
body div#content.main section.main-issue {
  display: inline-block;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 20px;
  margin: 0 0 50px;
}
@media (min-width: 1280px) {
  body div#content.main section.main-issue {
    padding: 0;
    margin: 0 0 120px;
  }
}
body div#content.main section.main-issue div.main-swiper {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  font-size: 0;
}
@media (min-width: 1280px) {
  body div#content.main section.main-issue div.main-swiper {
    border-radius: 0;
  }
}
body div#content.main section.main-issue div.main-swiper div.swiper-slide a {
  display: block;
  height: 200px;
}
@media (min-width: 1280px) {
  body div#content.main section.main-issue div.main-swiper div.swiper-slide a {
    height: 360px;
  }
}
body div#content.main section.main-issue div.main-swiper div.swiper-slide a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body div#content.main section.main-issue div.main-swiper div.main-pagination {
  width: auto;
  position: absolute;
  z-index: 600;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #fff;
  background: rgba(32, 32, 32, 0.2);
  border-radius: 4px;
  line-height: 19px;
  padding: 0 6px;
}
body div#content.main section.main-issue div.main-swiper div.main-arrow {
  display: none;
}
@media (min-width: 1280px) {
  body div#content.main section.main-issue div.main-swiper div.main-arrow {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 400;
    width: 32px;
    height: 32px;
    border-radius: 50%;
  }
  body div#content.main section.main-issue div.main-swiper div.main-arrow.main-prev {
    left: 50px;
    background: url(../images/arrow-left.svg) no-repeat rgba(32, 32, 32, 0.2) center/8px auto;
  }
  body div#content.main section.main-issue div.main-swiper div.main-arrow.main-next {
    right: 50px;
    background: url(../images/arrow-right.svg) no-repeat rgba(32, 32, 32, 0.2) center/8px auto;
  }
}
body div#content.main section.main-event div.container h3 {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  color: #000;
  margin: 0 0 28px;
}
@media (min-width: 1280px) {
  body div#content.main section.main-event div.container h3 {
    margin: 0 0 60px;
  }
}
body div#content.main section.main-event div.container div.tabs {
  display: flex;
  justify-content: center;
  margin: 20px;
}
body div#content.main section.main-event div.container div.tabs button {
  height: 30px;
  border: 1px solid #00B7CE;
  border-radius: 30px;
  background: #fff;
  color: #00B7CE;
  font-size: 13px;
  padding: 0 10px;
  margin: 0 4px;
  text-wrap-mode: nowrap;
}
body div#content.main section.main-event div.container div.tabs button.on {
  border-color: transparent;
  background: #00B7CE;
  color: #fff;
}
@media (min-width: 1280px) {
  body div#content.main section.main-event div.container div.tabs {
    display: none;
  }
}
body div#content.main section.main-event div.container div.event-swiper {
  overflow: hidden;
  margin: 0 0 30px;
}
@media (min-width: 1280px) {
  body div#content.main section.main-event div.container div.event-swiper {
    margin: 0 0 100px;
  }
}
@media (min-width: 1280px) {
  body div#content.main section.main-event div.container div.event-swiper div.swiper-wrapper {
    display: flex;
    justify-content: space-between;
  }
}
body div#content.main section.main-event div.container div.event-swiper div.swiper-wrapper div.swiper-slide {
  width: auto;
}
@media (min-width: 1280px) {
  body div#content.main section.main-event div.container div.event-swiper div.swiper-wrapper div.swiper-slide {
    width: 232px;
  }
}
body div#content.main section.main-event div.container div.event-swiper div.swiper-wrapper div.swiper-slide p.image {
  width: 232px;
  height: 276px;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 0 24px;
}
body div#content.main section.main-event div.container div.event-swiper div.swiper-wrapper div.swiper-slide p.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body div#content.main section.main-event div.container div.event-swiper div.swiper-wrapper div.swiper-slide strong {
  display: block;
  width: 232px;
  font-size: 20px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0 0 24px;
  color: #202020;
}
body div#content.main section.main-event div.container div.event-swiper div.swiper-wrapper div.swiper-slide dl {
  font-size: 16px;
  color: #202020;
  margin: 0;
}
body div#content.main section.main-event div.container div.event-swiper div.swiper-wrapper div.swiper-slide dl dt {
  float: left;
  font-weight: 700;
}
body div#content.main section.main-event div.container div.event-swiper div.swiper-wrapper div.swiper-slide dl dd {
  margin-left: 72px;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body div#content.main section.main-event div.container a.more {
  margin: 0 0 60px;
  display: block;
  text-align: right;
  font-weight: 700;
  font-size: 20px;
  color: #00B7CE;
  font-weight: 700;
  opacity: 0.3;
}
body div#content.main section.main-event div.container a.more.on {
  opacity: 1;
}
@media (min-width: 1280px) {
  body div#content.main section.main-event div.container a.more {
    display: none;
  }
}
body div#content.sub div.search-form {
  display: none;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents aside.submenu {
    width: 200px;
    position: absolute;
    left: 50%;
    transform: translateX(-620px);
    top: 55px;
    text-align: left;
    z-index: 100;
  }
}
body div#content.sub section.sub-contents aside.submenu strong {
  display: none;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents aside.submenu strong {
    display: block;
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 32px;
  }
}
body div#content.sub section.sub-contents aside.submenu ul {
  list-style: none;
  margin: 0 -20px 0;
  padding: 16px 0 0;
  display: flex;
  border-bottom: 1px solid #3E3E3E;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents aside.submenu ul {
    display: block;
    border: none;
  }
}
body div#content.sub section.sub-contents aside.submenu ul li {
  flex: 1 1 auto;
  text-align: center;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents aside.submenu ul li {
    flex: none;
    text-align: left;
  }
}
body div#content.sub section.sub-contents aside.submenu ul li a {
  display: inline-block;
  font-size: 16px;
  color: #202020;
  line-height: 42px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents aside.submenu ul li a {
    display: block;
    font-size: 20px;
    color: #000000;
    line-height: 58px;
    padding: 0 20px;
    border-left: 4px solid transparent;
  }
}
body div#content.sub section.sub-contents aside.submenu ul li a.on {
  font-weight: 700;
  border-bottom: 3px solid #3e3e3e;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents aside.submenu ul li a.on {
    border-bottom: none;
    background: #F9F9F9;
    border-color: #00B7CE;
  }
}
body div#content.sub section.sub-contents aside.submenu ul li a span {
  color: #00B7CE;
  padding: 0 0 0 10px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents aside.submenu + div.container {
    padding-left: 300px;
  }
}
body div#content.sub section.sub-contents div.container div.tabs {
  display: flex;
  justify-content: left;
  margin: 20px 0 40px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.tabs {
    margin: 55px 0 56px;
  }
}
body div#content.sub section.sub-contents div.container div.tabs button {
  height: 30px;
  border: 1px solid #00B7CE;
  border-radius: 30px;
  background: #fff;
  color: #00B7CE;
  font-size: 13px;
  padding: 0 10px;
  margin: 0 4px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.tabs button {
    height: 42px;
    color: #A9A9A9;
    border-color: transparent;
    font-size: 20px;
    padding: 0 28px;
  }
}
body div#content.sub section.sub-contents div.container div.tabs button.on {
  border-color: transparent;
  background: #00B7CE;
  color: #fff;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.contents-list {
    font-size: 0;
    margin: 80px 0 0;
  }
}
body div#content.sub section.sub-contents div.container div.contents-list div.item {
  position: relative;
  width: 100%;
  margin: 0 0 80px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.contents-list div.item {
    display: inline-block;
    width: calc((100% - 120px) / 5);
    margin-right: 30px;
    vertical-align: top;
  }
  body div#content.sub section.sub-contents div.container div.contents-list div.item:nth-child(5n) {
    margin-right: 0;
  }
}
body div#content.sub section.sub-contents div.container div.contents-list div.item p.image {
  width: 100%;
  height: 214px;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 0 24px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.contents-list div.item p.image {
    height: 276px;
  }
}
body div#content.sub section.sub-contents div.container div.contents-list div.item p.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body div#content.sub section.sub-contents div.container div.contents-list div.item strong {
  display: block;
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0 0 24px;
  color: #202020;
}
body div#content.sub section.sub-contents div.container div.contents-list div.item dl {
  font-size: 16px;
  color: #202020;
  margin: 0;
}
body div#content.sub section.sub-contents div.container div.contents-list div.item dl dt {
  float: left;
  font-weight: 700;
}
body div#content.sub section.sub-contents div.container div.contents-list div.item dl dd {
  margin-left: 72px;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body div#content.sub section.sub-contents div.container div.contents-list div.item p.label {
  position: absolute;
  z-index: 10;
  left: 12px;
  top: 12px;
  font-size: 16px;
  margin: 0;
  font-weight: 700;
  color: #00B7CE;
  line-height: 30px;
  padding: 0 8px;
  border: 1px solid #00B7CE;
  border-radius: 8px;
  background: #fff;
}
body div#content.sub section.sub-contents div.container button.btn-more {
  display: block;
  border: 1px solid #A9A9A9;
  margin: 0 auto 100px;
  border-radius: 8px;
  height: 44px;
  padding: 0 30px;
  color: #3E3E3E;
  font-size: 20px;
  background: #fff;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container button.btn-more {
    padding: 0 57px;
    height: 56px;
  }
}
body div#content.sub section.sub-contents div.container button.btn-more strong {
  font-weight: 700;
  color: #00B7CE;
}
body div#content.sub section.sub-contents div.container div.detail-box {
  position: relative;
  margin: 0 auto;
  padding: 50px 0 60px;
  max-width: 400px;
  word-break: keep-all;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.detail-box {
    max-width: 100%;
    padding: 60px 0 100px 448px;
  }
}
body div#content.sub section.sub-contents div.container div.detail-box div.detail-swiper {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  font-size: 0;
  margin: 0 auto 40px;
  width: 320px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.detail-box div.detail-swiper {
    position: absolute;
    left: 0;
    top: 60px;
    width: 400px;
  }
}
body div#content.sub section.sub-contents div.container div.detail-box div.detail-swiper div.swiper-slide a {
  display: block;
  height: 320px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.detail-box div.detail-swiper div.swiper-slide a {
    height: 400px;
  }
}
body div#content.sub section.sub-contents div.container div.detail-box div.detail-swiper div.swiper-slide a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body div#content.sub section.sub-contents div.container div.detail-box div.detail-swiper div.detail-pagination {
  width: auto;
  position: absolute;
  z-index: 600;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #fff;
  background: rgba(32, 32, 32, 0.2);
  border-radius: 4px;
  line-height: 19px;
  padding: 0 6px;
}
body div#content.sub section.sub-contents div.container div.detail-box div.detail-swiper div.main-arrow {
  display: none;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.detail-box div.detail-swiper div.main-arrow {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 400;
    width: 32px;
    height: 32px;
    border-radius: 50%;
  }
  body div#content.sub section.sub-contents div.container div.detail-box div.detail-swiper div.main-arrow.main-prev {
    left: 50px;
    background: url(../images/arrow-left.svg) no-repeat rgba(32, 32, 32, 0.2) center/8px auto;
  }
  body div#content.sub section.sub-contents div.container div.detail-box div.detail-swiper div.main-arrow.main-next {
    right: 50px;
    background: url(../images/arrow-right.svg) no-repeat rgba(32, 32, 32, 0.2) center/8px auto;
  }
}
body div#content.sub section.sub-contents div.container div.detail-box h3 {
  font-weight: 700;
  color: #202020;
  font-size: 24px;
  margin: 0 0 10px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.detail-box h3 {
    font-size: 32px;
    margin: 0 0 12px;
  }
}
body div#content.sub section.sub-contents div.container div.detail-box p.date {
  font-size: 18px;
  color: #202020;
  margin: 0 0 4px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.detail-box p.date {
    font-size: 24px;
  }
}
body div#content.sub section.sub-contents div.container div.detail-box p.time {
  font-size: 13px;
  color: #202020;
  margin: 0 0 30px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.detail-box p.time {
    font-size: 16px;
    margin: 0 0 90px;
  }
}
body div#content.sub section.sub-contents div.container div.detail-box div.btn-box {
  margin: 30px 0 10px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.detail-box div.btn-box {
    margin: 90px 0 16px;
    font-size: 0;
  }
}
body div#content.sub section.sub-contents div.container div.detail-box div.btn-box a {
  display: block;
  text-align: center;
  line-height: 48px;
  border: 1px solid #00B7CE;
  margin: 0 0 10px;
  border-radius: 8px;
  font-weight: 700;
  color: #00B7CE;
  font-size: 16px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.detail-box div.btn-box a {
    display: inline-block;
    font-size: 20px;
    line-height: 56px;
    margin-right: 16px;
    padding: 0 28px;
  }
}
body div#content.sub section.sub-contents div.container div.detail-box div.btn-box a.on {
  border-color: transparent;
  color: #fff;
  background: #00B7CE;
}
body div#content.sub section.sub-contents div.container div.detail-box div.btn-box a.off {
  border-color: transparent;
  color: #B5E3E8;
  background: #D2F7FB;
}
body div#content.sub section.sub-contents div.container div.detail-box dl {
  background: #F4F4F4;
  border-radius: 8px;
  padding: 20px 20px 10px;
  font-size: 13px;
  margin: 0 0 30px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.detail-box dl {
    padding: 16px 32px 6px;
    font-size: 16px;
    margin: 0 0 40px;
  }
}
body div#content.sub section.sub-contents div.container div.detail-box dl dt {
  font-weight: 700;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.detail-box dl dt {
    float: left;
    width: 100px;
  }
}
body div#content.sub section.sub-contents div.container div.detail-box dl dd {
  margin: 0 0 10px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.detail-box dl dd {
    margin: 0 0 10px 100px;
  }
}
body div#content.sub section.sub-contents div.container div.detail-box div.detail-text {
  font-size: 13px;
  color: #202020;
  line-height: 1.6;
  margin: 0 0 30px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.detail-box div.detail-text {
    font-size: 16px;
    margin: 0 0 40px;
  }
}
body div#content.sub section.sub-contents div.container div.detail-box a.btn-list {
  display: block;
  background: #00B7CE;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border-radius: 8px;
  padding: 0 28px;
  line-height: 48px;
  width: 160px;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.detail-box a.btn-list {
    line-height: 56px;
    font-size: 20px;
    margin: 0;
  }
}
body div#content.sub section.sub-contents div.container div.detail-box a.btn-list::before {
  content: "";
  display: inline-block;
  position: relative;
  margin: 0 10px 0 0;
  top: 2px;
  width: 18px;
  height: 18px;
  text-align: center;
  background: url("../images/icon-list.svg") no-repeat center/100% auto;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.my-contents-list {
    font-size: 0;
  }
}
body div#content.sub section.sub-contents div.container div.my-contents-list div.item {
  position: relative;
  width: 100%;
  margin: 0 0 60px;
  padding: 0 0 20px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.my-contents-list div.item {
    padding: 24px 0 24px 192px;
    margin: 0 0 80;
    min-height: 262px;
    border-bottom: 1px solid #E3E3E3;
  }
}
body div#content.sub section.sub-contents div.container div.my-contents-list div.item p.image {
  width: 100%;
  height: 214px;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 0 24px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.my-contents-list div.item p.image {
    position: absolute;
    left: 0;
    top: 24px;
    width: 160px;
    height: 214px;
  }
}
body div#content.sub section.sub-contents div.container div.my-contents-list div.item p.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body div#content.sub section.sub-contents div.container div.my-contents-list div.item strong {
  display: block;
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0 0 24px;
  color: #202020;
}
body div#content.sub section.sub-contents div.container div.my-contents-list div.item dl {
  font-size: 16px;
  color: #202020;
  margin: 0;
}
body div#content.sub section.sub-contents div.container div.my-contents-list div.item dl dt {
  float: left;
  font-weight: 700;
}
body div#content.sub section.sub-contents div.container div.my-contents-list div.item dl dd {
  margin-left: 72px;
  margin-bottom: 5px;
}
body div#content.sub section.sub-contents div.container div.my-contents-list div.item span {
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: 0;
  font-size: 16px;
  font-weight: 700;
  color: #00B7CE;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.my-contents-list div.item span {
    font-size: 20px;
    bottom: 24px;
  }
}
body div#content.sub section.sub-contents div.container div.my-detail-box {
  position: relative;
  margin: 0 auto 60px;
  padding: 0 0 60px;
  max-width: 400px;
  word-break: keep-all;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.my-detail-box {
    max-width: 100%;
    padding: 0 0 100px 324px;
    min-height: 400px;
  }
}
body div#content.sub section.sub-contents div.container div.my-detail-box p.image {
  margin: 0 0 20px;
  height: 320px;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.my-detail-box p.image {
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 292px;
    height: 400px;
  }
}
body div#content.sub section.sub-contents div.container div.my-detail-box p.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body div#content.sub section.sub-contents div.container div.my-detail-box h3 {
  font-weight: 700;
  color: #202020;
  font-size: 24px;
  margin: 0 0 10px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.my-detail-box h3 {
    font-size: 32px;
    margin: 0 0 32px;
  }
}
body div#content.sub section.sub-contents div.container div.my-detail-box dl {
  font-size: 13px;
  margin: 0 0 30px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.my-detail-box dl {
    font-size: 16px;
    margin: 0 0 40px;
  }
}
body div#content.sub section.sub-contents div.container div.my-detail-box dl dt {
  font-weight: 700;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.my-detail-box dl dt {
    float: left;
    width: 100px;
  }
}
body div#content.sub section.sub-contents div.container div.my-detail-box dl dd {
  margin: 0 0 10px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.my-detail-box dl dd {
    margin: 0 0 10px 100px;
  }
}
body div#content.sub section.sub-contents div.container div.my-detail-box div.qr {
  margin: 0 0 60px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.my-detail-box div.qr {
    display: inline-block;
    margin: 55px 30px 60px 0;
  }
}
body div#content.sub section.sub-contents div.container div.my-detail-box div.qr p {
  margin: 0 auto;
  border: 2px solid #000000;
  width: 170px;
  height: 170px;
  padding: 10px;
  border-radius: 8px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.my-detail-box div.qr p {
    margin: 0;
  }
}
body div#content.sub section.sub-contents div.container div.my-detail-box div.qr p canvas {
  width: 100%;
  height: 100%;
}
body div#content.sub section.sub-contents div.container div.my-detail-box div.qr a {
  display: block;
  margin: 12px auto 0;
  font-size: 20px;
  color: #00B7CE;
  font-weight: 700;
  width: 148px;
  line-height: 36px;
  border: 1px solid #00B7CE;
  border-radius: 8px;
  text-align: center;
  margin-top: 12px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.my-detail-box div.qr a {
    margin: 12px 0 0;
  }
}
body div#content.sub section.sub-contents div.container div.my-detail-box div.barcode {
  margin: 0 0 60px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.my-detail-box div.barcode {
    display: inline-block;
    margin: 55px 0 60px;
  }
}
body div#content.sub section.sub-contents div.container div.my-detail-box div.barcode p {
  margin: 0 auto;
  border: 2px solid #000000;
  width: 320px;
  height: 170px;
  padding: 10px;
  border-radius: 8px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.my-detail-box div.barcode p {
    margin: 0;
  }
}
body div#content.sub section.sub-contents div.container div.my-detail-box div.barcode p canvas {
  width: 100%;
  height: 100%;
}
body div#content.sub section.sub-contents div.container div.my-detail-box div.barcode a {
  display: block;
  margin: 12px auto 0;
  font-size: 20px;
  color: #00B7CE;
  font-weight: 700;
  width: 148px;
  line-height: 36px;
  border: 1px solid #00B7CE;
  border-radius: 8px;
  text-align: center;
  margin-top: 12px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.my-detail-box div.barcode a {
    margin: 12px 0 0;
  }
}
body div#content.sub section.sub-contents div.container div.my-detail-box a.list {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #00B7CE;
  text-align: center;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.container div.my-detail-box a.list {
    position: absolute;
    z-index: 10;
    right: 0;
    top: 0;
    font-size: 20px;
    top: 0px;
  }
}
body div#content.sub section.sub-contents div.reg-ticket div.result-box {
  text-align: left;
  border: 1px solid #E3E3E3;
  border-radius: 8px;
  padding: 32px;
  word-break: keep-all;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.reg-ticket div.result-box {
    padding: 16px;
  }
}
body div#content.sub section.sub-contents div.reg-ticket div.result-box > strong {
  display: block;
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 32px;
  text-align: center;
}
body div#content.sub section.sub-contents div.reg-ticket div.result-box div.item {
  position: relative;
  width: 100%;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.reg-ticket div.result-box div.item {
    min-height: 154px;
    padding: 0 0 0 136px;
  }
}
body div#content.sub section.sub-contents div.reg-ticket div.result-box div.item p.image {
  width: 252px;
  height: 302px;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto 24px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.reg-ticket div.result-box div.item p.image {
    position: absolute;
    left: 0;
    top: 0;
    width: 112px;
    height: 154px;
  }
}
body div#content.sub section.sub-contents div.reg-ticket div.result-box div.item p.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body div#content.sub section.sub-contents div.reg-ticket div.result-box div.item strong {
  display: block;
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0 0 24px;
  color: #202020;
}
body div#content.sub section.sub-contents div.reg-ticket div.result-box div.item dl {
  font-size: 16px;
  color: #202020;
  margin: 0;
}
body div#content.sub section.sub-contents div.reg-ticket div.result-box div.item dl dt {
  float: left;
  font-weight: 700;
}
body div#content.sub section.sub-contents div.reg-ticket div.result-box div.item dl dd {
  margin-left: 72px;
  margin-bottom: 5px;
}
body div#content.sub section.sub-contents div.reg-ticket div.result-box div.item p.label {
  position: absolute;
  z-index: 10;
  left: 12px;
  top: 12px;
  font-size: 16px;
  margin: 0;
  font-weight: 700;
  color: #00B7CE;
  line-height: 30px;
  padding: 0 8px;
  border: 1px solid #00B7CE;
  border-radius: 8px;
  background: #fff;
}
body div#content.sub section.sub-contents div.reg-ticket div.result-box div.barcode {
  margin: 20px 0 20px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.reg-ticket div.result-box div.barcode {
    margin: 55px 0 20px;
  }
}
body div#content.sub section.sub-contents div.reg-ticket div.result-box div.barcode p {
  margin: 0 auto !important;
  border: 2px solid #000000;
  width: 260px !important;
  height: 144px;
  padding: 10px;
  border-radius: 8px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.reg-ticket div.result-box div.barcode p {
    width: 320px !important;
    height: 144px;
  }
}
body div#content.sub section.sub-contents div.reg-ticket div.result-box div.barcode p canvas {
  width: 100%;
  height: 100%;
}
body div#content.sub section.sub-contents div.reg-ticket div.result-box div.barcode a {
  display: block;
  margin: 12px auto 0;
  font-size: 20px;
  color: #00B7CE;
  font-weight: 700;
  width: 148px;
  line-height: 36px;
  border: 1px solid #00B7CE;
  border-radius: 8px;
  text-align: center;
  margin-top: 12px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.reg-ticket div.result-box div.barcode a {
    margin: 12px 0 0;
  }
}
body div#content.sub section.sub-contents div.online-reg > hr {
  border: none;
  border-top: 1px solid #e3e3e3;
  margin: 0 0 22px;
}
body div#content.sub section.sub-contents div.online-reg h4 {
  text-align: left;
  position: relative;
  color: #202020;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  padding: 0 0 0 36px;
  margin: 0 0 26px;
}
body div#content.sub section.sub-contents div.online-reg h4 span {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 23px;
  border-radius: 4px;
  background: #04CD00;
  color: #fff;
  font-weight: 400;
  text-align: center;
}
body div#content.sub section.sub-contents div.online-reg ul.radio {
  background: #F9F9F9;
  border-radius: 8px;
  list-style: none;
  margin: 0 0 62px;
  padding: 24px 24px 4px;
}
body div#content.sub section.sub-contents div.online-reg ul.radio li {
  margin: 0 0 20px;
  text-align: left;
}
body div#content.sub section.sub-contents div.online-reg ul.radio li input[type=date] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
body div#content.sub section.sub-contents div.online-reg ul.radio li input {
  outline: none;
  border: 1px solid #E3E3E3;
  width: 100%;
  height: 56px;
  border-radius: 8px;
  padding: 0 16px 0;
  font-size: 16px;
  color: #202020;
}
body div#content.sub section.sub-contents div.online-reg ul.radio li input[type=checkbox],
body div#content.sub section.sub-contents div.online-reg ul.radio li input[type=radio] {
  display: none;
}
body div#content.sub section.sub-contents div.online-reg ul.radio li label {
  font-size: 16px;
  line-height: 24px;
  padding-left: 32px;
  color: #A9A9A9;
  background: url("../images/btn_radio_default.svg") no-repeat left center/auto 100%;
  cursor: pointer;
}
body div#content.sub section.sub-contents div.online-reg ul.radio li input:checked + label {
  color: #202020;
  background-image: url("../images/btn_radio_selected.svg");
}
body div#content.sub section.sub-contents div.board-list {
  padding: 50px 0 60px;
}
body div#content.sub section.sub-contents div.board-list h3 {
  font-size: 24px;
  color: #3E3E3E;
  margin: 0 0 48px;
  text-align: center;
  font-weight: 500;
}
body div#content.sub section.sub-contents div.board-list ul.list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid #3E3E3E;
}
body div#content.sub section.sub-contents div.board-list ul.list li {
  border-bottom: 1px solid #E3E3E3;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.board-list ul.list li {
    line-height: 76px;
    font-size: 0;
  }
}
body div#content.sub section.sub-contents div.board-list ul.list li span {
  display: none;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.board-list ul.list li span {
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    color: #202020;
    width: 76px;
    text-align: center;
  }
}
body div#content.sub section.sub-contents div.board-list ul.list li a {
  display: block;
  font-weight: 700;
  font-size: 13px;
  color: #202020;
  padding: 10px 0 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.board-list ul.list li a {
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    padding: 0 20px 0 0;
    width: calc(100% - 356px);
  }
}
body div#content.sub section.sub-contents div.board-list ul.list li p {
  display: inline-block;
  font-size: 13px;
  color: #202020;
  margin: 0 10px 10px 0;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.board-list ul.list li p {
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    color: #202020;
    width: 140px;
    margin: 0;
    padding: 0 20px;
    text-align: center;
  }
}
body div#content.sub section.sub-contents div.board-list nav.pg_wrap {
  list-style: none;
  margin: 40px 0;
  padding: 0;
  text-align: center;
}
body div#content.sub section.sub-contents div.board-list nav.pg_wrap span.pg {
  display: inline-block;
  vertical-align: top;
}
body div#content.sub section.sub-contents div.board-list nav.pg_wrap span.pg a,
body div#content.sub section.sub-contents div.board-list nav.pg_wrap span.pg strong {
  display: inline-block;
  vertical-align: top;
  width: 36px;
  line-height: 36px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  color: #A9A9A9;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.board-list nav.pg_wrap span.pg a,
  body div#content.sub section.sub-contents div.board-list nav.pg_wrap span.pg strong {
    width: 56px;
    line-height: 56px;
    font-size: 16px;
  }
}
body div#content.sub section.sub-contents div.board-list nav.pg_wrap span.pg a.pg_prev,
body div#content.sub section.sub-contents div.board-list nav.pg_wrap span.pg strong.pg_prev {
  font-size: 0;
  background: url(../images/icon-board-left.svg) no-repeat center/100% auto;
}
body div#content.sub section.sub-contents div.board-list nav.pg_wrap span.pg a.pg_prev:hover,
body div#content.sub section.sub-contents div.board-list nav.pg_wrap span.pg strong.pg_prev:hover {
  background-image: url(../images/icon-board-left-hover.svg);
}
body div#content.sub section.sub-contents div.board-list nav.pg_wrap span.pg a.pg_next,
body div#content.sub section.sub-contents div.board-list nav.pg_wrap span.pg strong.pg_next {
  font-size: 0;
  background: url(../images/icon-board-right.svg) no-repeat center/100% auto;
}
body div#content.sub section.sub-contents div.board-list nav.pg_wrap span.pg a.pg_next:hover,
body div#content.sub section.sub-contents div.board-list nav.pg_wrap span.pg strong.pg_next:hover {
  background-image: url(../images/icon-board-right-hover.svg);
}
body div#content.sub section.sub-contents div.board-list nav.pg_wrap span.pg a:hover,
body div#content.sub section.sub-contents div.board-list nav.pg_wrap span.pg strong:hover {
  color: #00B7CE;
}
body div#content.sub section.sub-contents div.board-list nav.pg_wrap span.pg strong {
  background: #00B7CE;
  color: #fff;
}
body div#content.sub section.sub-contents div.board-view {
  padding: 50px 0 60px;
}
body div#content.sub section.sub-contents div.board-view h3 {
  font-size: 24px;
  color: #3E3E3E;
  margin: 0 0 48px;
  text-align: center;
  font-weight: 500;
}
body div#content.sub section.sub-contents div.board-view div.head {
  border-top: 2px solid #3E3E3E;
  border-bottom: 1px solid #E3E3E3;
  padding: 20px 0px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.board-view div.head {
    padding: 32px 28px 12px;
  }
}
body div#content.sub section.sub-contents div.board-view div.head h4 {
  margin: 0 0 10px;
  font-size: 16px;
  color: #202020;
  font-weight: 700;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.board-view div.head h4 {
    margin: 0 0 20px;
    font-size: 20px;
  }
}
body div#content.sub section.sub-contents div.board-view div.head ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
body div#content.sub section.sub-contents div.board-view div.head ul li {
  font-size: 13px;
  color: #202020;
  line-height: 18px;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.board-view div.head ul li {
    font-size: 16px;
  }
}
body div#content.sub section.sub-contents div.board-view div.head ul li.hit {
  padding-left: 24px;
  background: url(../images/icon-view.svg) no-repeat left center/auto 100%;
}
body div#content.sub section.sub-contents div.board-view div.text {
  font-size: 13px;
  color: #202020;
  line-height: 1.6;
  padding: 20px 0;
  border-bottom: 1px solid #E3E3E3;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.board-view div.text {
    padding: 40px 28px;
    font-size: 16px;
  }
}
body div#content.sub section.sub-contents div.board-view div.text img.block {
  display: block;
  width: auto;
  max-width: 100%;
  margin: 20px auto;
}
body div#content.sub section.sub-contents div.board-view div.text ul.attach {
  margin: 30px 0 0;
  padding: 20px 20px 10px;
  list-style: none;
  background: #eee;
}
body div#content.sub section.sub-contents div.board-view div.text ul.attach li {
  margin: 0 0 10px;
}
body div#content.sub section.sub-contents div.board-view div.text ul.attach li a {
  display: block;
  font-weight: 700;
  font-size: 13px;
  color: #202020;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents div.board-view div.text ul.attach li a {
    font-size: 16px;
  }
}
body div#content.sub section.sub-contents a.btn-list {
  display: block;
  background: #00B7CE;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border-radius: 8px;
  padding: 0 28px;
  line-height: 48px;
  width: 160px;
  margin: 0 auto 80px;
  text-align: center;
}
@media (min-width: 1280px) {
  body div#content.sub section.sub-contents a.btn-list {
    line-height: 56px;
    font-size: 20px;
  }
}
body div#content.sub section.sub-contents a.btn-list::before {
  content: "";
  display: inline-block;
  position: relative;
  margin: 0 10px 0 0;
  top: 2px;
  width: 18px;
  height: 18px;
  text-align: center;
  background: url("../images/icon-list.svg") no-repeat center/100% auto;
}
body footer#footer {
  text-align: center;
  color: #A9A9A9;
}
@media (min-width: 1280px) {
  body footer#footer {
    line-height: 1.6;
    padding: 0 0 30px;
  }
}
body footer#footer div.container {
  font-size: 12px;
  text-align: center;
  border-top: 1px solid #E3E3E3;
  padding-top: 24px;
}
@media (min-width: 1280px) {
  body footer#footer div.container {
    text-align: left;
    padding-left: 204px;
  }
}
body footer#footer div.container ul.footer-util {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  font-size: 0;
  white-space: nowrap;
}
@media (min-width: 1280px) {
  body footer#footer div.container ul.footer-util {
    position: absolute;
    right: 20px;
    top: 20px;
  }
}
body footer#footer div.container ul.footer-util li {
  display: inline-block;
  position: relative;
  padding: 0 12px;
}
body footer#footer div.container ul.footer-util li::after {
  content: "|";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
}
body footer#footer div.container ul.footer-util li:last-child::after {
  display: none;
}
body footer#footer div.container ul.footer-util li a {
  font-size: 13px;
  color: #757575;
}
body footer#footer div.container address {
  font-size: 11px;
  font-style: normal;
  margin: 20px;
}
@media (min-width: 1280px) {
  body footer#footer div.container address {
    margin: 0 0 15px;
    font-size: 13px;
  }
}
body footer#footer div.container address p {
  margin: 0 0 10px;
}
@media (min-width: 1280px) {
  body footer#footer div.container address p {
    margin: 0 0 4px;
  }
}
body footer#footer div.container address p span {
  display: inline-block;
  white-space: nowrap;
}
body footer#footer div.container address p span::after {
  content: "|";
  margin: 0 12px;
}
body footer#footer div.container address p span:last-of-type::after {
  display: none;
}
body footer#footer div.container p.ps {
  font-size: 11px;
  margin: 22px 0;
}
@media (min-width: 1280px) {
  body footer#footer div.container p.ps {
    font-size: 13px;
  }
}
@media (min-width: 1280px) {
  body footer#footer div.container div.service-links {
    position: absolute;
    right: 20px;
    top: 46px;
    margin: 0;
  }
}
body footer#footer div.container div.service-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0 6px 0 0;
  font-size: 0;
}
body footer#footer div.container div.service-links a.kakao {
  background: url(../images/ic_kakao.svg) no-repeat center/100% auto;
}
body footer#footer div.container div.service-links a.facebook {
  background: url(../images/ic_facebook.svg) no-repeat center/100% auto;
}
body footer#footer div.container div.service-links a.instagram {
  background: url(../images/ic_insta.svg) no-repeat center/100% auto;
}
body footer#footer div.container div.service-links a.naver {
  background: url(../images/ic_naver.svg) no-repeat center/100% auto;
}
body footer#footer div.container h2 {
  margin: 28px auto;
  width: 100px;
  height: 48px;
  font-size: 0;
  background: url(../images/img-logo.svg) no-repeat center/100% auto;
}
@media (min-width: 1280px) {
  body footer#footer div.container h2 {
    position: absolute;
    top: 66px;
    left: 52px;
    margin: 0;
  }
}
body div.agree-popup {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: 2000;
}
body div.agree-popup.on {
  display: block;
}
body div.agree-popup > div {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: #fff;
  width: calc(100% - 40px);
  max-width: 400px;
  max-height: 80%;
  border: 1px solid #eee;
  text-align: left;
  padding: 16px;
  max-height: 600px;
}
body div.agree-popup > div strong {
  display: block;
  line-height: 56px;
  border-radius: 8px;
  background: rgba(0, 183, 206, 0.1);
  font-size: 24px;
  font-weight: 500;
  color: #3E3E3E;
  text-align: center;
  width: calc(100% - 72px);
}
body div.agree-popup > div button {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  border: none;
  font-size: 0;
  background: url("../images/icon-close2.svg") no-repeat #00B7CE center/36px auto;
}
body div.agree-popup > div div.agree-text {
  margin: 40px 0 0;
  font-size: 16px;
  color: #3E3E3E;
  max-height: 470px;
  overflow-y: auto;
}
body div.agree-popup > div div.agree-text p {
  margin: 0 0 6px;
}
body div.chkall {
  background: rgba(0, 183, 206, 0.1019607843);
  line-height: 56px;
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  padding: 0 16px;
  border-radius: 8px;
  margin: 0 0 16px;
}
body div.chkall input {
  display: none;
}
body div.chkall label {
  display: block;
  padding: 0 0 0 34px;
  background: url("../images/icon-checkbox-n.svg") no-repeat left center/24px auto;
}
body div.chkall input:checked + label {
  background-image: url("../images/icon-checkbox-y.svg");
}
body article.box.agree ul.chkbox {
  list-style: none;
  margin: 0;
  padding: 0 0 16px;
  text-align: left;
}
body article.box.agree ul.chkbox li {
  display: block;
  position: relative;
  border: none;
  margin: 10px 0 16px;
  line-height: 24px;
  font-size: 16px;
  color: #3E3E3E;
  font-weight: 500;
  padding: 0 16px;
}
body article.box.agree ul.chkbox li input {
  display: none;
}
body article.box.agree ul.chkbox li label {
  display: block;
  padding: 0 0 0 34px;
  background: url("../images/icon-checkbox-n.svg") no-repeat left center/24px auto;
}
body article.box.agree ul.chkbox li label span {
  padding: 0 0 0 10px;
  font-size: 13px;
  color: #A9A9A9;
  font-weight: 400;
}
body article.box.agree ul.chkbox li input:checked + label {
  background-image: url("../images/icon-checkbox-y.svg");
}
body article.box.agree ul.chkbox li button {
  position: absolute;
  right: 0;
  top: 50%;
  height: 24px;
  transform: translateY(-50%);
  font-size: 13px;
  color: #A9A9A9;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  padding-right: 24px;
  background: url(../images/arrow-right2.svg) no-repeat right center/24px auto;
}
body article.box.information dl.profile {
  border: 1px solid #E3E3E3;
  border-radius: 8px;
  padding: 24px 24px 14px;
  margin: 0 0 20px;
  font-size: 16px;
  color: #3E3E3E;
  text-align: left;
}
body article.box.information dl.profile dt {
  float: left;
  font-weight: 700;
  width: 75px;
}
body article.box.information dl.profile dd {
  margin: 0 0 10px 75px;
}
body article.box.fieldset fieldset {
  border: none;
  margin: 0;
  padding: 0;
  font-size: 0;
}
body article.box.fieldset fieldset hr {
  border: none;
  border-top: 1px solid #e3e3e3;
  margin: 0 0;
}
body article.box.fieldset fieldset div.line-box {
  position: relative;
  margin: 0 0 12px;
}
body article.box.fieldset fieldset div.line-box.type-text select,
body article.box.fieldset fieldset div.line-box.type-text input[type=text],
body article.box.fieldset fieldset div.line-box.type-text input[type=number],
body article.box.fieldset fieldset div.line-box.type-text input[type=password],
body article.box.fieldset fieldset div.line-box.type-text input[type=date],
body article.box.fieldset fieldset div.line-box.type-text input[type=email],
body article.box.fieldset fieldset div.line-box.type-text input[type=tel] {
  border: 1px solid #E3E3E3;
  width: 100%;
  height: 56px;
  border-radius: 8px;
  padding: 0 16px 0;
  font-size: 16px;
  color: #202020;
}
body article.box.fieldset fieldset div.line-box.type-text select:disabled,
body article.box.fieldset fieldset div.line-box.type-text input[type=text]:disabled,
body article.box.fieldset fieldset div.line-box.type-text input[type=number]:disabled,
body article.box.fieldset fieldset div.line-box.type-text input[type=password]:disabled,
body article.box.fieldset fieldset div.line-box.type-text input[type=date]:disabled,
body article.box.fieldset fieldset div.line-box.type-text input[type=email]:disabled,
body article.box.fieldset fieldset div.line-box.type-text input[type=tel]:disabled {
  background: #F9F9F9;
  color: #A9A9A9;
}
body article.box.fieldset fieldset div.line-box.type-text label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #A9A9A9;
}
body article.box.fieldset fieldset div.line-box.type-text select:focus,
body article.box.fieldset fieldset div.line-box.type-text select:valid,
body article.box.fieldset fieldset div.line-box.type-text input:focus,
body article.box.fieldset fieldset div.line-box.type-text input.valid {
  padding: 16px 16px 0;
  outline: none;
}
body article.box.fieldset fieldset div.line-box.type-text input:focus {
  border-color: #3E3E3E;
}
body article.box.fieldset fieldset div.line-box.type-text select:focus + label,
body article.box.fieldset fieldset div.line-box.type-text select:valid + label,
body article.box.fieldset fieldset div.line-box.type-text input:focus + label,
body article.box.fieldset fieldset div.line-box.type-text input.valid + label,
body article.box.fieldset fieldset div.line-box.type-text input[type=date] + label {
  top: 8px;
  transform: none;
  font-size: 11px;
}
body article.box.fieldset fieldset div.line-box.type-text.button input {
  width: calc(100% - 124px);
}
body article.box.fieldset fieldset div.line-box.type-text.button button {
  vertical-align: top;
  width: 112px;
  margin-left: 12px;
  border: 1px solid #00B7CE;
  border-radius: 8px;
  height: 56px;
  background: #fff;
  font-size: 20px;
  font-weight: 700;
  color: #00B7CE;
}
body article.box.fieldset fieldset div.line-box.type-text.button button.off {
  background: #D2F7FB;
  border-color: transparent;
  color: #B5E3E8;
}
body article.box.fieldset fieldset div.line-box.type-text.counter input {
  padding-right: 80px;
}
body article.box.fieldset fieldset div.line-box.type-text.counter span {
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: #FF473C;
}
body article.box.fieldset fieldset div.line-box.type-radio {
  text-align: left;
  padding: 28px 16px 0;
}
body article.box.fieldset fieldset div.line-box.type-radio input {
  display: none;
}
body article.box.fieldset fieldset div.line-box.type-radio label {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  padding-left: 32px;
  margin: 0 40px 16px 0;
  color: #A9A9A9;
  background: url("../images/btn_radio_default.svg") no-repeat left center/auto 100%;
  cursor: pointer;
}
body article.box.fieldset fieldset div.line-box.type-radio input:checked + label {
  color: #202020;
  background-image: url("../images/btn_radio_selected.svg");
}
body fieldset.captcha {
  border: 1px solid #E3E3E3 !important;
  border-radius: 8px;
  padding: 20px !important;
  text-align: center;
}
body fieldset.captcha legend {
  display: none;
}
body fieldset.captcha input[type=text] {
  border: 1px solid #E3E3E3;
  width: calc(100% - 100px) !important;
  height: 56px;
  border-radius: 8px;
  padding: 0 16px 0 !important;
  font-size: 16px;
  color: #202020;
}
body fieldset.captcha button {
  vertical-align: top;
  width: 40px;
  height: 56px;
  border-radius: 8px;
  font-size: 0;
  border: 1px solid #00B7CE;
}
body fieldset.captcha button#captcha_mp3 {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' style='fill: rgba(0, 183, 206, 1);transform: ;msFilter:;'%3E%3Cpath d='M12 2C6.486 2 2 5.589 2 10c0 2.908 1.898 5.516 5 6.934V22l5.34-4.005C17.697 17.852 22 14.32 22 10c0-4.411-4.486-8-10-8zm0 14h-.333L9 18v-2.417l-.641-.247C5.67 14.301 4 12.256 4 10c0-3.309 3.589-6 8-6s8 2.691 8 6-3.589 6-8 6z'%3E%3C/path%3E%3C/svg%3E") no-repeat center/30px auto;
}
body fieldset.captcha button#captcha_reload {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' style='fill: rgba(0, 183, 206, 1);transform: ;msFilter:;'%3E%3Cpath d='M10 11H7.101l.001-.009a4.956 4.956 0 0 1 .752-1.787 5.054 5.054 0 0 1 2.2-1.811c.302-.128.617-.226.938-.291a5.078 5.078 0 0 1 2.018 0 4.978 4.978 0 0 1 2.525 1.361l1.416-1.412a7.036 7.036 0 0 0-2.224-1.501 6.921 6.921 0 0 0-1.315-.408 7.079 7.079 0 0 0-2.819 0 6.94 6.94 0 0 0-1.316.409 7.04 7.04 0 0 0-3.08 2.534 6.978 6.978 0 0 0-1.054 2.505c-.028.135-.043.273-.063.41H2l4 4 4-4zm4 2h2.899l-.001.008a4.976 4.976 0 0 1-2.103 3.138 4.943 4.943 0 0 1-1.787.752 5.073 5.073 0 0 1-2.017 0 4.956 4.956 0 0 1-1.787-.752 5.072 5.072 0 0 1-.74-.61L7.05 16.95a7.032 7.032 0 0 0 2.225 1.5c.424.18.867.317 1.315.408a7.07 7.07 0 0 0 2.818 0 7.031 7.031 0 0 0 4.395-2.945 6.974 6.974 0 0 0 1.053-2.503c.027-.135.043-.273.063-.41H22l-4-4-4 4z'%3E%3C/path%3E%3C/svg%3E") no-repeat center/30px auto;
}
body fieldset.captcha span {
  display: block;
  font-size: 13px;
  color: #202020;
  margin: 10px 0 20px;
}

/*# sourceMappingURL=style.css.map */
