@charset "utf-8";
/* CSS Document */
@font-face {
  font-family: '나눔고딕';
  src: url('/font/NanumGothic.eot');
  src: url('/font/NanumGothic.eot?#iefoix') format('embedded-opentype'), url('/font/NanumGothic.woff') format('woff'), url('/font/NanumGothic.ttf') format('truetype'), url('/font/NanumGothic.ttc');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'batang';
  src: url('/font/batang.eot');
  src: url('/font/batang.eot?#iefoix') format('embedded-opentype'), url('/font/batang.woff') format('woff'), url('/font/batang.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'gabriola';
  src: url('/font/gabriola.eot');
  src: url('/font/gabriola.eot?#iefoix') format('embedded-opentype'), url('/font/gabriola.woff') format('woff'), url('/font/gabriola.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'soju';
  src: url('/font/soju.eot');
  src: local('☺'), url('/font/soju.woff') format('woff'), url('/font/soju.ttf') format('truetype'), url('/font/soju.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* body */
* {
  margin: 0 auto;
  padding: 0;
}
body {
  font-size: 14px;
  font-family: "나눔고딕";
}
/* Basic Element Setting */
/* a,button */
a,
button {
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  background: none;
  transition: backgrond 300ms, color 300ms;
}
.un:hover {
  text-decoration: underline;
}
/* Input */
input,
select,
textarea {
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  -webkit-transition: border 300ms, box-shadow 300ms;
  -moz-transition: border 300ms, box-shadow 300ms;
  -ms-transition: border 300ms, box-shadow 300ms;
  -o-transition: border 300ms, box-shadow 300ms;
  transition: border 300ms, box-shadow 300ms;
}
input:focus,
select:focus,
textarea:focus {
  -webkit-box-shadow: inset 0 0 10px -3px black;
  -moz-box-shadow: inset 0 0 10px -3px black;
  box-shadow: inset 0 0 10px -3px black;
}
/* List */
li {
  list-style: none;
}
li.in {
  list-style: inside;
}
li.no {
  list-style: none !important;
}
ul.in li {
  list-style: inside;
}
img {
  border: none;
}
/* Head title */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
table {
  font-size: inherit;
  border-spacing: 0;
}
/* !Basic Element Setting */
/* float */
.fl {
  float: left !important;
}
.fr {
  float: right !important;
}
.fn {
  float: none !important;
}
/* margin */
.ml10 {
  margin-left: 10px !important;
}
.ml15 {
  margin-left: 15px !important;
}
.ml20 {
  margin-left: 20px !important;
}
.ml30 {
  margin-left: 30px !important;
}
.ml40 {
  margin-left: 40px !important;
}
.ml50 {
  margin-left: 50px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mt15 {
  margin-top: 15px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.mt40 {
  margin-top: 40px !important;
}
.mt50 {
  margin-top: 50px !important;
}
/* width */
.w100 {
  width: 100% !important;
}
.w50 {
  width: 50% !important;
}
/* padding */
.p10 {
  padding: 10px !important;
}
.p15 {
  padding: 15px !important;
}
.p20 {
  padding: 20px !important;
}
.pn {
  padding: 0 !important;
}
/* position */
.pr {
  position: relative !important;
}
.pa {
  position: absolute !important;
}
.ycenter {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.xcenter {
  position: absolute;
  right: 50%;
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
  transform: translateX(50%);
}
.center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/* text */
.word-break {
  word-break: initial;
}
.cred {
  color: #e74c3c;
}
/* line-height */
.lh17 {
  line-height: 1.7 !important;
}
.lh2 {
  line-height: 2 !important;
}
/* align */
.tl {
  text-align: left !important;
}
.tc {
  text-align: center !important;
}
.tr {
  text-align: right !important;
}
/* gradient */
.blue-gradient {
  background-image: linear-gradient(0deg, #00347d, #3bd4dc);
}
.purple-gradient {
  background-image: linear-gradient(0deg, #432c84, #cc77dc);
}
.red-gradient {
  background-image: linear-gradient(0deg, #ad0a43, #ff9578);
}
/* else */
.circle {
  border-radius: 50%;
}
.hide {
  display: none;
}
.show {
  display: block !important;
}
.bn {
  border: none;
}
/* Layout */
.fill {
  float: left;
  width: 100%;
}
.wrap {
  width: 1170px;
  position: relative !important;
}
.wrap.small {
  max-width: 800px;
}
.content {
  float: left !important;
  width: 100%;
  padding: 40px 10px;
  box-sizing: border-box;
}
.content.pn {
  padding: 0;
}
.content.mh {
  min-height: 600px;
}
.content_box {
  float: left;
  width: 100%;
  min-height: 500px;
  padding: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: white;
  -webkit-box-shadow: 0 0 10px -3px black;
  -moz-box-shadow: 0 0 10px -3px black;
  box-shadow: 0 0 10px -3px black;
}
/* layout class */
.bgray {
  background: #f8f8f8;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}
.subtitle {
  float: left;
  width: 100%;
  text-align: center;
  font-size: 27px;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .subtitle {
    font-size: 17px;
  }
}
@media screen and (max-width: 780px) {
  .subtitle {
    font-size: 20px;
  }
}
.half {
  float: left;
  width: 50%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.text_box {
  line-height: 2 !important;
}
.text_box p {
  margin-bottom: 25px;
}
@media screen and (max-width: 1000px) {
  .popup .popup_wrap {
    height: auto !important;
  }
}
.popup {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: none;
}
.popup .popup_wrap {
  display: none;
  width: 300px;
  max-width: 100%;
  background: white;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 15px;
  -webkit-box-shadow: 0 0 10px -3px black;
  -moz-box-shadow: 0 0 10px -3px black;
  box-shadow: 0 0 10px -3px black;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.popup .popup_wrap h1 {
  color: #362b31;
  font-size: 1.3rem;
  padding-bottom: 5px;
  border-bottom: 1px solid #362b31;
  position: relative !important;
}
.popup .popup_wrap h1::after {
  position: absolute !important;
  bottom: 0px;
  left: 0;
  right: 50%;
  background: #362b31;
  height: 1px;
  content: ' ';
}
.popup .popup_wrap .popup_content {
  float: left;
  width: 100%;
}
.popup .popup_wrap .popup_content.form {
  float: left;
  width: 100%;
  line-height: 1.7 !important;
}
.popup .popup_wrap .popup_content.form input {
  float: left;
  width: 100%;
  height: 35px;
  background: none;
  border: none;
  border-bottom: 1px solid #ccc;
  margin-top: 5px;
}
.popup .popup_wrap .popup_content.form button {
  background: #362b31;
  border-radius: 5px;
  float: right !important;
  margin: 10px;
  margin-bottom: 0;
  padding: 5px 10px;
  color: #c5b8a6;
  font-weight: bold;
  -webkit-transition: all 500ms;
  -moz-transition: all 500ms;
  -ms-transition: all 500ms;
  -o-transition: all 500ms;
  transition: all 500ms;
}
.popup .popup_wrap .popup_content.form button:hover {
  background: #706561;
  color: #eee;
}
.popup .popup_wrap .popup_content.form select {
  float: left;
  width: 100%;
  height: 35px;
  background: none;
  border: none;
  border-bottom: 1px solid #ccc;
  margin-top: 5px;
}
.popup .popup_wrap .popup_content.btn_box {
  float: left;
  width: 100%;
}
.popup .popup_wrap .popup_content.btn_box a {
  float: left;
  width: 100%;
  border-radius: 5px;
  background: #362b31;
  height: 40px;
  color: #c5b8a6;
  line-height: 40px;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
  -webkit-transition: all 500ms;
  -moz-transition: all 500ms;
  -ms-transition: all 500ms;
  -o-transition: all 500ms;
  transition: all 500ms;
  margin-bottom: 10px;
}
.popup .popup_wrap .popup_content.btn_box a img {
  vertical-align: middle;
  display: inline-block;
  height: 20px;
  margin: 10px;
  margin-left: 0;
}
.popup .popup_wrap .popup_content.btn_box a:hover {
  color: #eee;
  background: #706561;
}
.popup .popup_wrap .popup_content.btn_box a:last-child {
  margin-bottom: 0;
}
/* over 1170 */
@media screen and (max-width: 1170px) {
  .wrap {
    width: 100%;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}
/* 800 */
@media screen and (max-width: 900px) {
  #top_main_menu.set {
    display: none !important;
  }
  #page_1 .img_box {
    width: 20%;
  }
  #page_1 .text_box:nth-of-type(2) {
    float: right !important;
    width: 70% !important;
  }
  #page_1 .text_box:nth-of-type(3) {
    float: left !important;
    width: 100% !important;
  }
  #page_1 .text_box:nth-of-type(3) br {
    display: none;
  }
  #page_2 .wrap > article {
    width: 100% !important;
  }
  #page_3 .wrap > div:first-child > div {
    width: 50% !important;
  }
  #page_3 .wrap > div:first-child > div p {
    height: 170px;
    overflow-y: scroll;
  }
}
@media screen and (max-width: 500px) {
  #mobile_menu {
    display: block;
  }
  #top_main_menu,
  #header_main_menu {
    display: none;
    opacity: 0;
  }
  #top_main_menu.set {
    display: none !important;
  }
  #header_logo {
    margin-top: 35px;
    margin-bottom: 100px;
  }
  #page_1 {
    text-align: center !important;
  }
  #page_1 .img_box {
    width: 50%;
    float: none !important;
  }
  #page_1 .text_box:nth-of-type(2) {
    float: right !important;
    width: 100% !important;
  }
  #page_1 .text_box:nth-of-type(3) {
    float: left !important;
    width: 100% !important;
  }
  #page_1 .text_box:nth-of-type(3) br {
    display: none;
  }
  #page_1 .text_box h2 {
    margin-top: 15px;
  }
  #page_3 .wrap > div:first-child > div {
    width: 100% !important;
  }
  #header_banner_text {
    padding: 0 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  #header_banner_text p {
    font-size: 1.8rem !important;
  }
  #header_banner_text p > span {
    font-size: 1rem !important;
  }
  #date h2 {
    position: relative !important;
  }
  #date h2 span {
    float: left;
    width: 100%;
  }
  #date h2 div {
    position: absolute !important;
    right: 0;
  }
}
