@charset "utf-8";

/* ----------------------------------------------
 * HanbitSoft Infra Development Team
 * 봄맞이 코스튬 Stylesheet
 * Author - moran67@hanbitsoft.co.kr 200319
 ------------------------------------------------- */

/* CSS Reset
-------------------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
strong,
small,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
select,
input,
button,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
figure,
figcaption {
  margin: 0;
  padding: 0;
  font-size: 100%;
}
img,
fieldset,
button {
  border: 0;
}
article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body,
input,
button,
textarea,
select,
table,
kbd {
  line-height: 1.2;
  font-family: Malgun Gothic, "맑은고딕", "돋움", dotum, Helvetica, sans-serif;
  font-size: 12px;
  color: #000;
}
img {
  vertical-align: middle;
}
ol,
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
}
a:hover,
a:focus,
a:active {
  text-decoration: underline;
  color: #0000ff;
}
button,
label {
  cursor: pointer;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption,
legend {
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
  visibility: hidden;
}

/* Reserved Class
-------------------------------------------------------------- */
.blind {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  margin: -1px;
  width: 1px;
  height: 1px;
}
.fL {
  float: left;
}
.fR {
  float: right;
}
.clearFix {
  zoom: 1;
}
.clearFix:after {
  content: "";
  display: block;
  clear: both;
}

/* Styles
-------------------------------------------------------------- */
#wrap {
  overflow: hidden;
  width: 100%;
  min-width: 1200px;
}
#wrap .inner {
  position: relative;
  width: 1100px;
  height: 100%;
  margin: 0 auto;
}
.header {
  background: url(../images/bg_header.jpg) no-repeat 50% 0;
  height: 870px;
}
.header .btn-detail {
  position: absolute;
  top: 769px;
  left: 355px;
  width: 394px;
  height: 60px;
}
.content {
  background: url(../images/bg_content.jpg) no-repeat 50% 0;
  height: 2550px;
}
.content .char-01 {
  position: absolute;
  top: 61px;
  left: 1113px;
  background: url(../images/char01.png) no-repeat 0 0;
  width: 437px;
  height: 1027px;
  z-index: 2;
}
.content .char-02 {
  position: absolute;
  top: 773px;
  left: -282px;
  background: url(../images/char02.png) no-repeat 0 0;
  width: 256px;
  height: 974px;
  z-index: 4;
}
.content .char-03 {
  position: absolute;
  top: 1636px;
  left: 1105px;
  background: url(../images/char03.png) no-repeat 0 0;
  width: 445px;
  height: 1004px;
  z-index: 2;
}
.content .char {
  transition: all 0.4s ease-out;
  -webkit-transform: translateX(80px);
  transform: translateX(80px);
  opacity: 0;
}
.content .char.moving {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.content .list {
  opacity: 0; 
  -webkit-transform: translateY(20px); 
  transform: translateY(20px); 
}
.content .list.moving {
  opacity: 1;
  -webkit-animation-duration: 0.6s; 
  animation-duration: 0.6s; 
  -webkit-animation-fill-mode: both; 
  animation-fill-mode: both; 
  -webkit-animation-name: fadeInUpShort; 
  animation-name: fadeInUpShort; 
}
.content .list-01 {
  position: absolute;
  top: 99px;
  left: -65px;
  background: url(../images/list01.png) no-repeat 0 0;
  width: 1230px;
  height: 743px;
}
.content .list-02 {
  position: absolute;
  top: 909px;
  left: -65px;
  background: url(../images/list02.png) no-repeat 0 0;
  width: 1230px;
  height: 743px;
  z-index: 3;
}
.content .list-03 {
  position: absolute;
  top: 1719px;
  left: -65px;
  background: url(../images/list03.png) no-repeat 0 0;
  width: 1230px;
  height: 743px;
}
.content .buy-single {  
  position: absolute;
  width: 170px;
  height: 73px;
}
.content .buy-single01, 
.content .buy-single03, 
.content .buy-single05 {
  top: 625px;
  left: 45px;
}
.content .buy-single02,
.content .buy-single04,
.content .buy-single06 {
  top: 625px;
  left: 259px;
}
.content .buy-package {
  position: absolute;
  top: 625px;
  left: 727px;
  width: 244px;
  height: 72px;
}
.content .view-char {
  position: absolute;
  top: 37px;
  height: 35px;
}
.content .list-01 .view-char {
  left: 681px;
  width: 345px;
  border-bottom: 2px solid #d8714d;
}
.content .list-02 .view-char {
  left: 733px;
  width: 235px; 
  border-bottom: 2px solid #de8a10;
}
.content .list-03 .view-char {
  left: 643px;
  width: 416px; 
  border-bottom: 2px solid #689c0c;
}
.footer {
  background: url(../images/bg_footer.jpg) no-repeat 50% 0;
  height: 438px;
}
@-webkit-keyframes fadeInUpShort { 
  0% { 
      opacity: 0; 
      -webkit-transform: translateY(20px); 
  } 
  100% { 
      opacity: 1; 
      -webkit-transform: translateY(0); 
  } 
} 

@keyframes fadeInUpShort { 
  0% { 
      opacity: 0; 
      transform: translateY(20px); 
  } 
  100% { 
      opacity: 1; 
      transform: translateY(0); 
  } 
} 