@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;
}
.menu {
  font-family: 'batang';
}
#mobile_menu {
  display: none;
}
#mobile_menu .wrap {
  position: fixed;
  z-index: 99;
  background: white;
  height: 50px;
  padding: 5px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 0 10px -1px black;
  -moz-box-shadow: 0 0 10px -1px black;
  box-shadow: 0 0 10px -1px black;
}
#mobile_menu button {
  float: left !important;
  width: 40px;
  height: 40px;
  position: relative !important;
}
#mobile_menu button div {
  display: inline-block;
  position: absolute !important;
  top: 16px;
  -webkit-transition: all 500ms;
  -moz-transition: all 500ms;
  -ms-transition: all 500ms;
  -o-transition: all 500ms;
  transition: all 500ms;
  background: #212121;
  width: 24px;
  height: 4px;
  border-radius: 2px;
  left: 8px;
  margin: 0;
}
#mobile_menu button div::after {
  position: absolute !important;
  top: 8px;
  -webkit-transition: all 500ms;
  -moz-transition: all 500ms;
  -ms-transition: all 500ms;
  -o-transition: all 500ms;
  transition: all 500ms;
  background: #212121;
  width: 24px;
  height: 4px;
  border-radius: 2px;
  left: 0;
  content: ' ';
}
#mobile_menu button div::before {
  position: absolute !important;
  top: -8px;
  -webkit-transition: all 500ms;
  -moz-transition: all 500ms;
  -ms-transition: all 500ms;
  -o-transition: all 500ms;
  transition: all 500ms;
  background: #212121;
  width: 24px;
  height: 4px;
  border-radius: 2px;
  left: 0;
  content: ' ';
}
#mobile_menu .open button div {
  transform: rotate(180deg);
}
#mobile_menu .open button div::before {
  transform: rotate(45deg);
  width: 15px;
  top: -5px;
  left: 10px;
}
#mobile_menu .open button div::after {
  transform: rotate(-45deg);
  width: 15px;
  left: 10px;
  top: 5px;
}
#mobile_menu span {
  float: left !important;
  line-height: 40px;
  font-size: 1rem;
  font-weight: bold;
}
#mobile_menu > ul {
  position: absolute !important;
  transform: translateX(-150%);
  -webkit-transition: all 500ms;
  -moz-transition: all 500ms;
  -ms-transition: all 500ms;
  -o-transition: all 500ms;
  transition: all 500ms;
  width: 220px;
  top: 0;
  left: 0;
  z-index: 98;
  padding-top: 60px;
  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;
}
#mobile_menu > ul li {
  font-size: 0.8rem;
  line-height: 40px;
}
#mobile_menu > ul li a {
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  cursor: pointer;
  float: left;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-transition: all 500ms;
  -moz-transition: all 500ms;
  -ms-transition: all 500ms;
  -o-transition: all 500ms;
  transition: all 500ms;
}
#mobile_menu > ul li a:hover {
  background: #e4ded4;
}
#mobile_menu > ul ul {
  display: none;
}
#mobile_menu > ul > li > ul > li > a {
  padding-left: 30px;
}
#mobile_menu > ul > li > ul > li > ul > li > a {
  padding-left: 45px;
}
#mobile_menu .open + ul {
  transform: translateX(0);
}
#top_main_menu {
  opacity: 0;
  position: fixed;
  z-index: 99;
  height: 70px;
  top: 0;
  left: 0;
  right: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #362b31;
  background: #e4ded4;
  font-family: 'gabriola', 'batang';
  font-size: 1rem;
  -webkit-box-shadow: 0 0 10px -3px black;
  -moz-box-shadow: 0 0 10px -3px black;
  box-shadow: 0 0 10px -3px black;
}
#top_main_menu li:hover > a {
  color: #706561;
}
#top_main_menu > .wrap > ul {
  float: left !important;
}
#top_main_menu > .wrap > ul > li {
  position: relative !important;
  line-height: 70px;
  float: left !important;
  text-align: center !important;
}
#top_main_menu > .wrap > ul > li .now:after {
  position: absolute !important;
  bottom: 15px;
  width: 25px;
  height: 3px;
  background: #362b31;
  position: absolute;
  right: 50%;
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
  transform: translateX(50%);
  content: ' ';
  z-index: 2;
}
#top_main_menu > .wrap > ul > li .now:before {
  position: absolute !important;
  top: 15px;
  width: 25px;
  height: 3px;
  background: #362b31;
  position: absolute;
  right: 50%;
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
  transform: translateX(50%);
  content: ' ';
  z-index: 2;
}
#top_main_menu > .wrap > ul > li ul {
  padding-left: 10px;
  display: none;
  float: left !important;
}
#top_main_menu > .wrap > ul > li > ul {
  -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 !important;
  left: 0;
  width: 200px;
  background: #362b31;
  padding: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#top_main_menu > .wrap > ul > li > ul li {
  float: left;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1rem;
  padding: 5px 0 5px 10px;
}
#top_main_menu > .wrap > ul > li > ul li > a {
  float: left;
  width: 100%;
  color: #a1949b;
  font-size: 0.85rem;
  text-align: left !important;
}
#top_main_menu > .wrap > ul > li > ul li:hover > a {
  color: white;
}
header {
  position: relative;
  float: left;
  width: 100%;
  z-index: 50;
}
header #header_banner_box {
  float: left;
  width: 100%;
  z-index: 0;
  height: 100%;
  overflow: hidden;
  position: absolute !important;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
header #header_banner_box div {
  display: none;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: absolute !important;
  float: left !important;
  z-index: 0;
}
header #header_banner_box div:first-child {
  display: block;
}
header #header_banner_box:after {
  content: " ";
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  position: absolute !important;
  background: #2c2329;
  z-index: 0;
  opacity: .5;
}
header #header {
  float: left;
  width: 100%;
  height: 100%;
}
header #header #header_logo {
  float: left;
  width: 100%;
  text-align: center !important;
  height: 214px;
  padding-top: 65px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
header #header #header_logo img {
  display: block;
}
header #header #header_logo img:first-child {
  height: 45%;
}
header #header #header_logo img:last-child {
  height: 55%;
  margin-top: -1%;
}
header #header #header_main_menu {
  float: left;
  width: 100%;
  opacity: 0;
  padding-top: 45px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-bottom: 30px;
}
header #header #header_main_menu > ul {
  float: left;
  width: 100%;
  text-align: center !important;
  font-family: 'gabriola', 'batang';
}
header #header #header_main_menu > ul > li {
  position: relative !important;
  padding: 0 15px;
  float: left;
  color: #fefefe;
  line-height: 3rem;
  font-size: 1rem;
  font-weight: 100;
  letter-spacing: 0.4rem;
}
header #header #header_main_menu > ul > li > a {
  display: inline;
}
header #header #header_main_menu > ul > li > .more {
  display: inline;
  position: absolute !important;
  content: ' ';
  line-height: 0;
  width: 0;
  height: 0;
  top: 50%;
  -webkit-transform: translateY(-70%);
  -moz-transform: translateY(-70%);
  -ms-transform: translateY(-70%);
  -o-transform: translateY(-70%);
  transform: translateY(-70%);
  border-left: 5px solid white;
  border-bottom: 5px solid transparent;
  border-top: 5px solid transparent;
}
header #header #header_main_menu > ul > li:hover > a {
  color: #c5b8a6;
}
header #header #header_main_menu > ul > li:hover > .more {
  border-left-color: #c5b8a6;
}
header #header #header_main_menu > ul > li .now:after {
  position: absolute !important;
  bottom: 0;
  width: 25px;
  height: 3px;
  background: #fefefe;
  position: absolute;
  right: 50%;
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
  transform: translateX(50%);
  content: ' ';
  z-index: 2;
}
header #header #header_main_menu > ul > li .now:before {
  position: absolute !important;
  top: 0;
  width: 25px;
  height: 3px;
  background: #fefefe;
  position: absolute;
  right: 50%;
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
  transform: translateX(50%);
  content: ' ';
  z-index: 2;
}
header #header #header_main_menu > ul > li ul {
  padding-left: 10px !important;
}
header #header #header_main_menu > ul > li li {
  padding-left: 10px;
}
header #header #header_main_menu > ul > li > ul {
  position: absolute !important;
  display: none;
  z-index: 10;
  top: 0;
  left: 100%;
  width: 200px;
  background: #362b31;
  padding: 20px;
  -webkit-box-shadow: 0 0 10px -3px black;
  -moz-box-shadow: 0 0 10px -3px black;
  box-shadow: 0 0 10px -3px black;
}
header #header #header_main_menu > ul > li > ul li {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  width: 100%;
  position: relative !important;
  opacity: 0;
  color: #a1949b;
  text-align: left !important;
  line-height: 1rem;
  font-size: 0.85rem;
  vertical-align: top;
  padding-top: 5px;
  padding-bottom: 5px;
}
header #header #header_main_menu > ul > li > ul li ul {
  position: relative;
  display: none;
  padding: 5px 0px;
}
header #header #header_main_menu > ul > li > ul li > a {
  -webkit-transition: all 500ms;
  -moz-transition: all 500ms;
  -ms-transition: all 500ms;
  -o-transition: all 500ms;
  transition: all 500ms;
}
header #header #header_main_menu > ul > li > ul li:hover > a {
  color: white;
}
header #header #header_main_menu > ul > li > ul li > .more {
  float: right !important;
  right: 0;
  border-left: 5px solid transparent;
  border-top: 5px solid #a1949b;
  border-right: 5px solid transparent;
  -webkit-transition: all 500ms;
  -moz-transition: all 500ms;
  -ms-transition: all 500ms;
  -o-transition: all 500ms;
  transition: all 500ms;
}
header #header #header_main_menu > ul > li > ul li:hover > .more {
  border-top: 5px solid white;
}
header #header #header_banner_text {
  float: left;
  width: 100%;
  margin-top: -20px;
  height: 150px;
}
header #header #header_banner_text p {
  -ms-word-break: break-all;
  word-break: break-all;
  left: 20px;
  right: 20px;
  display: none;
  position: absolute !important;
  line-height: 1.2;
  font-family: 'gabriola', 'batang';
  color: #e4ded4;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.3rem;
  z-index: 2;
  float: left !important;
  text-align: center !important;
}
header #header #header_banner_text p:first-child {
  display: block;
}
header #header #header_banner_text p > span {
  font-size: 1.5rem;
}
header #header #header_banner_btn {
  text-align: center !important;
  z-index: 10;
  float: left;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 30px;
}
header #header #header_banner_btn button {
  -webkit-transition: background 500ms;
  -moz-transition: background 500ms;
  -ms-transition: background 500ms;
  -o-transition: background 500ms;
  transition: background 500ms;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #706561;
}
header #header #header_banner_btn button.now {
  background: #e4ded4;
}
header #header #header_banner_btn button:hover {
  background: rgba(228, 222, 212, 0.5);
}
#content_box {
  position: relative !important;
  background-image: url('/image/back.jpg');
  -webkit-background-size: cover;
  background-size: cover;
}
footer {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 3% 0;
  background: #c5b8a6;
  text-align: center !important;
}
footer img {
  width: 350px;
}
footer p {
  color: #362b31;
  margin-bottom: 20px;
}
#icon {
  position: fixed;
  z-index: 100;
  bottom: 30px;
  right: 30px;
  width: 80px;
  height: 98px;
  border-radius: 50%;
  overflow: hidden;
  opacity: .6;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 500ms;
  -moz-transition: all 500ms;
  -ms-transition: all 500ms;
  -o-transition: all 500ms;
  transition: all 500ms;
  -webkit-box-shadow: 0 0 10px -3px black;
  -moz-box-shadow: 0 0 10px -3px black;
  box-shadow: 0 0 10px -3px black;
  background: black;
}
#icon:hover {
  opacity: 1;
}
#icon:hover > img:last-child {
  opacity: 1;
}
#icon:hover > img:first-child {
  opacity: 0;
}
#icon img {
  float: left !important;
  -webkit-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  -ms-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: opacity 500ms;
  opacity: 1;
  width: 100%;
  position: absolute !important;
}
#icon img:last-child {
  opacity: 0;
  position: absolute !important;
}
#notfound .box {
  float: left;
  width: 100%;
  text-align: center !important;
  color: #212121;
}
#notfound .box p {
  vertical-align: middle;
  font-weight: bold;
  font-size: 1.2rem;
}
#notfound .box p img {
  margin: 10px;
  vertical-align: middle;
}
#notfound .box p span {
  color: #e74c3c;
  font-weight: bold;
}
#default {
  float: left;
  width: 100%;
}
#default img {
  float: left !important;
  width: 30%;
}
#default h1 {
  float: left;
  width: 100%;
  font-size: 1.5rem;
  color: #212121;
  border-bottom: 1px solid #ccc;
  padding: 10px;
  padding-top: 0;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#default .default_content {
  float: left !important;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 10px;
  width: 70%;
}
#default .default_content p {
  float: left;
  width: 100%;
  line-height: 1.7 !important;
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 20px;
}
#date p {
  line-height: 160%;
  margin-bottom: 10px;
  font-size: 13px;
}
#date iframe {
  max-width: 100%;
}
#date img {
  margin: 0 8px 8px 8px;
  max-width: 100%;
}
#date .content_box {
  background: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  padding: 0;
  margin-top: 20px;
  position: relative;
}
#date .content_box .loading_box {
  background: rgba(0, 0, 0, 0.05);
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  content: '';
}
#date .content_box .loading_box img {
  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%);
  height: 50%;
}
#date figure {
  float: left !important;
  max-width: 100%;
  margin: 0 8px 8px 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 8px;
  background: #f9f9f9 !important;
  border: 1px solid #ddd !important;
}
#date figure img {
  margin: 0 !important;
}
#date figure figcaption {
  text-align: left !important;
  font-size: 0.65rem;
  margin: 0 !important;
}
#date #date_box {
  float: left;
  width: 100%;
  color: #362b31;
  font-size: 2rem;
  font-weight: bold;
  font-family: 'batang';
  margin-bottom: 10px;
  position: relative !important;
}
#date #date_box .date_wrap {
  float: left !important;
  position: relative !important;
  margin-right: 10px;
  vertical-align: middle;
}
#date #date_box label {
  position: relative !important;
  float: left;
  width: 100%;
  z-index: 0;
}
#date #date_box .select {
  cursor: pointer;
  float: left;
  width: 100%;
  opacity: 0;
  height: 100%;
  position: absolute !important;
  left: 0;
  bottom: 0;
  z-index: 0;
}
#date #date_box span {
  float: left !important;
  font-size: 1rem;
  position: absolute !important;
  bottom: 0;
}
#date .board_list {
  float: left;
  width: 100%;
  background: white;
  -webkit-box-shadow: 0 0 10px -5px black;
  -moz-box-shadow: 0 0 10px -5px black;
  box-shadow: 0 0 10px -5px black;
  padding: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 20px;
  cursor: pointer;
  -webkit-transition: background 250ms;
  -moz-transition: background 250ms;
  -ms-transition: background 250ms;
  -o-transition: background 250ms;
  transition: background 250ms;
}
#date .board_list h2 {
  float: left;
  width: 100%;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  color: #212121;
  font-size: 1.2rem;
}
#date .board_list h2 span {
  color: #666;
  margin-left: 15px;
  font-size: 0.8rem;
}
#date .board_list h2 div {
  float: right !important;
}
#date .board_list h2 div img {
  width: 15px;
}
#date .board_list .board_list_content {
  height: 20px;
  overflow: hidden;
  float: left;
  width: 100%;
}
#date .board_list .board_list_content span {
  overflow: hidden;
  max-width: 100%;
  display: inline-block;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
#date .board_list:hover {
  background: rgba(0, 0, 0, 0.05);
}
#date .board_list.board_show {
  background: white !important;
}
#date .board_list.board_show .board_list_content {
  overflow: visible;
}
#date .board_list.board_show .board_list_content span {
  display: inline;
  overflow: visible;
  white-space: normal;
  -ms-text-overflow: clip;
  text-overflow: clip;
}
#html_wrap h1 {
  float: left;
  width: 100%;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  font-size: 1.3rem;
  line-height: 1.7 !important;
  font-family: 'batang';
}
#html_wrap iframe {
  max-width: 100%;
}
#html_wrap img {
  margin: 0 8px 8px 8px;
  max-width: 100%;
}
#html_wrap figure {
  float: left !important;
  max-width: 100%;
  margin: 0 8px 8px 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 8px;
  background: #f9f9f9 !important;
  border: 1px solid #ddd !important;
}
#html_wrap figure img {
  margin: 0 !important;
}
#html_wrap figure figcaption {
  text-align: left !important;
  font-size: 0.65rem;
  margin: 0 !important;
}
#html_wrap .edit_icon {
  float: right !important;
  position: absolute;
  right: 16px;
  width: 15px;
  top: 16px;
}
#html_wrap .edit_icon img {
  float: left;
  width: 100%;
}
#html_wrap .content_box .fill {
  font-size: 12px;
  line-height: 1.7 !important;
}
#html_wrap p {
  line-height: 160%;
  margin-bottom: 10px;
  font-size: 13px;
}
