@import url("layout_base.css");
@font-face {
  font-family: "LAB디지털";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-07@1.0/LAB디지털.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "KoPubDotumMedium";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_two@1.0/KoPubDotumMedium.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "GmarketSansMedium";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "twayair";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_tway@1.0/twayair.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
}

/* 공통 부분 */
html {
  overflow-x: hidden;
}
body {
  font-family: "Heebo", sans-serif;
  font-size: 16px;
  height: 100%;
  color: #444;
  white-space: normal;
  word-wrap: break-word;
  line-height: 1;
}
/* 모든 내용 붙이기 */
* {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* h부분도 설정하기 위해 기본값으로 둠 */
  font-weight: normal;
  /* 기본값 */
  font-size: inherit;
}
/* 점을 없앰 */
ul,
ol,
li {
  list-style: none;
}
a {
  /* 밑줄 없앰 */
  text-decoration: none;
}
a:link,
a:visited,
a:hover,
a:focus {
  color: #444;
}
.clear::after {
  content: "";
  display: block;
  clear: both;
}
img {
  border: none;
  vertical-align: middle;
}
.hdd,
legend {
  font-size: 0;
  width: 0;
  height: 0;
  line-height: 0;
  text-indent: -9999px;
  overflow: hidden;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.box_inner {
  width: 1050px;
  margin: 0 auto;
}
input,
select,
textarea,
button,
form,
label {
  vertical-align: middle;
}
fieldset {
  border: none;
}
input[type="text"],
input[type="number"],
input[type="password"],
input[type="tel"],
input[type="email"] {
  box-sizing: border-box;
  display: inline-block;
  height: 45px;
  padding: 0 10px;
  border: 1px solid #ccc;
  line-height: normal;
  font-size: 15px;
}
textarea {
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 15px;
}
/* css-radio 클래스를 가진 버튼(동그라미 없애고 그림으로 띄우기 위함) */
input[type="radio"].css-radio {
  overflow: hidden;
  position: absolute;
  left: -1000px;
  width: 1px;
  height: 1px;
}
/* css-radio 버튼 뒤의 label(배경으로 그림파일을 넣어서 버튼처럼 보이게 하기 위함) */
input[type="radio"].css-radio + label {
  display: inline-block;
  padding-left: 20px !important;
  margin-right: 20px;
  background: url(../images/bg_radio.png) no-repeat 0 0;
  cursor: pointer;
  vertical-align: middle;
  font-size: 15px;
  line-height: 16px;
}
/* 만약 css-radio 버튼이 클릭되었다면 배경 이미지를 옮겨서 클릭된 그림으로 바꿔주기 */
input[type="radio"].css-radio:checked + label {
  background-position: 0 -50px;
}
input[type="checkbox"].css-checkbox {
  overflow: hidden;
  position: absolute;
  left: -1000px;
  width: 1px;
  height: 1px;
}
input[type="checkbox"].css-checkbox + label {
  display: inline-block;
  padding-left: 30px !important;
  height: 20px;
  line-height: 20px;
  background: url(../images/bg_checkbox.png) no-repeat 0 0;
  background-size: 20px;
  cursor: pointer;
  vertical-align: middle;
  font-size: 15px;
}
input[type="checkbox"].css-checkbox:checked + label {
  background-position: 0 -20px;
}
/* select태그 
    -webkit-appearance는 해당 브라우저의 기본 스타일을 사용하지 않을 때 none값을 준다.
    맨 오른쪽에 있는 아래화살표 없애주기 위함(배경 이미지로 띄우기)
*/
select {
  -webkit-appearance: none;
  height: 30px;
  padding: 0 5px;
  border: 1px solid #ccc;
}
.select_common {
  display: inline-block;
  box-sizing: border-box;
  position: relative;
  width: 158px;
  height: 35px;
  border: 1px solid #ccc;
  overflow: hidden;
  background: url(../images/ico_selectArr.png) no-repeat 100% 50%;
}
.select_common select {
  display: inline-block;
  width: 185px;
  background: none;
  height: 29px;
  padding: 0 10px;
  border: none;
  font-size: 15px;
}
/* 버튼들 */
.btn_line {
  text-align: center;
  font-size: 0;
}
.btn_line a {
  margin-left: 10px;
}
.btn_line a:first-child {
  margin-left: 0;
}
/* 가입, 수정 버튼 */
.btn_basecolor {
  background: #384d75;
  color: #fff !important;
  border: none;
  position: relative;
  width: 125px;
  height: 100px;
  line-height: 100px;
  font-size: 20px;
  vertical-align: middle;
  padding: 0 2em;
  cursor: pointer;
  transition: 800ms ease all;
  outline: none;
}
.btn_basecolor:hover {
  background: #fff;
  color: #384d75 !important;
}
.btn_basecolor:before,
.btn_basecolor:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 2px;
  width: 0;
  background: #384d75;
  transition: 400ms ease all;
}
.btn_basecolor:after {
  right: inherit;
  top: inherit;
  left: 0;
  bottom: 0;
}
.btn_basecolor:hover:before,
.btn_basecolor:hover:after {
  width: 100%;
  transition: 800ms ease all;
}
/* 검색버튼 */
.btn_srch {
  background: #384d75;
  color: #fff !important;
  border: none;
  position: relative;
  width: 70px;
  height: 35px;
  line-height: 35px;
  font-size: 14px;
  vertical-align: middle;
  text-align: center;
  padding: 0 2em;
  cursor: pointer;
  transition: 800ms ease all;
  outline: none;
}
.btn_srch:hover {
  background: #fff;
  color: #384d75 !important;
}
.btn_srch:before,
.btn_srch:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 2px;
  width: 0;
  background: #384d75;
  transition: 400ms ease all;
}
.btn_srch:after {
  right: inherit;
  top: inherit;
  left: 0;
  bottom: 0;
}
.btn_srch:hover:before,
.btn_srch:hover:after {
  width: 100%;
  transition: 800ms ease all;
}
/* 목록버튼 */
.btn_bbs {
  font-size: 14px;
  display: inline-block;
  background: #384d75;
  color: #fff !important;
  width: 70px;
  text-align: center;
  line-height: 35px;
  height: 35px;
  vertical-align: middle;
}
/* input, textarea의 placeholder 기본스타일을 우리가 원하는 것으로 변경 */
input::-webkit-input-placeholder {
  color: #999;
}
textarea::-webkit-input-placeholder {
  color: #999;
}
table,
theadm tbody,
tfoot {
  border-collapse: collapse;
  border-spacing: 0;
  border: none;
}
/* --------서브페이지 공통 시작-------- */
.bodytext_area {
  box-sizing: border-box;
  padding: 55px 50px 0;
}
/* 헤더바로 아래에 있는 사진 */
.location_area {
  height: 445px;
  background: url(../images/img_top1.jpg) no-repeat center center;
}
.location_area.member {
  background: url(../images/img_top2.jpg) no-repeat center center / cover;
}
.location_area.customer {
  background: url(../images/img_top3.jpg) no-repeat center center / cover;
}
.location_area.package {
  background: url(../images/img_top4.jpg) no-repeat center center / cover;
}
.location_area h2.tit_page {
  padding: 250px 0 0 0;
  margin: 0 50px;
  border-bottom: 1px solid #ccc;
  font-size: 30px;
  letter-spacing: 3px;
  color: #fff;
}
/* 위에있는 문자열 아래에 오는 현재 페이지의 경로를 나타내는 글자들 */
.location_area p.location {
  padding: 20px 0 0 50px;
  color: #fff;
}
.location_area p.location .path {
  display: inline-block;
  padding: 0 10px;
}
/* 얘는 모바일에서 이용 */
.location_area ul.page_menu {
  display: none;
}
/* --------서브페이지 공통 끝-------- */
/* skipnavi */
/* "본문내용" 글자 숨기기 */
.skipnavi {
  position: relative;
  left: 0;
  top: -50px;
  width: 100%;
  text-indent: -9999px;
  /* 글자 사이즈를 줄여야 밑의 요소가 자리를 확보함 */
  font-size: 0;
  z-index: 999;
}
.skipnavi > li > a:focus,
.skipnavi > li > a:active {
  position: absolute;
  left: 0;
  top: 50px;
  display: block;
  width: 100%;
  font-size: 12px;
  text-indent: 0;
  padding: 5px;
  font-weight: bold;
  text-align: center;
  background-color: #f2f2f2;
}
/*--------메인 페이지 시작--------*/
/* 헤더 시작 */
header {
  font-family: "GmarketSansMedium";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
}
/* 로고 */
header > .header_area > h1 {
  /* 로그인, 회원 가입 옆으로 보냄 */
  float: left;
  padding: 5px 0 0;
}
header > .header_area > h1 > a {
  display: block;
  width: 270px;
  height: 125px;
  background: url(../images/logowhite.png) no-repeat center / cover;
  text-indent: -9999px;
  overflow: hidden;
}
/* 로그인, 회원가입 글자들을 포함하고 있는 박스 */
.header_cont {
  text-align: right;
  padding: 10px;
}
/* 로그인, 회원가입 글자들을 오른쪽 정렬 */
.header_cont .util {
  color: #fff;
  text-align: right;
  padding-top: 10px;
  height: 10px;
}
/* 로그인, 회원가입 글자들 일렬로 배치 */
.header_cont .util li {
  display: inline;
}
/* 로그인 뒤에 | 넣기 */
.header_cont .util li:first-child::after {
  content: "|";
  display: inline-block;
  padding: 0 2px 0 10px;
  font-size: 10px;
  position: relative;
  top: -2px;
}
.header_cont .util li a {
  font-size: 14px;
  color: #fff;
}
/* 네비게이션 */
.header_cont .gnb {
  float: right;
  box-sizing: border-box;
  padding-top: 5px;
}
/* 서브메뉴 일렬로 정렬 */
.header_cont .gnb li {
  float: left;
}
.header_cont .gnb li a {
  color: #fff;
  display: block;
  padding: 26px 40px;
  font-size: 18px;
}
/* 서브메뉴 맨 오른쪽 메뉴 오른쪽 패딩 없애서 우측 정렬하기 */
.header_cont .gnb li:last-child a {
  padding-right: 0;
}
/* 하위 메뉴 숨기기 */
.gnb_depth {
  position: absolute;
  left: 0;
  top: 113px;
  width: 100%;
  display: none;
}
/* 하위 메뉴 보이기 */
/* .gnb_depth {
  position: absolute;
  left: 0;
  top: 113px;
  width: 100%;
} */
/* 하위 메뉴의 가로크기 치대로 */

.gnb_depth .submenu_list {
  width: 1050px;
  margin: 0 auto;
  text-align: left;
}
/* 하위 메뉴 적절한 위치로 움직이기 */
.gnb_depth2_1 .submenu_list {
  box-sizing: border-box;
  padding-left: 380px;
}
.gnb_depth2_2 .submenu_list {
  box-sizing: border-box;
  padding-left: 520px;
}
.gnb_depth2_3 .submenu_list {
  box-sizing: border-box;
  padding-left: 680px;
}
.gnb_depth2_4 .submenu_list {
  box-sizing: border-box;
  padding-left: 760px;
}
.gnb_depth2_1 .submenu_list li:first-child a,
.gnb_depth2_2 .submenu_list li:first-child a,
.gnb_depth2_3 .submenu_list li:first-child a,
.gnb_depth2_4 .submenu_list li:first-child a,
.gnb_depth2_3 .submenu_list li:nth-child(2) a {
  padding-top: 0;
  padding-right: 0;
}
.gnb_depth2_1 .submenu_list li:last-child a,
.gnb_depth2_2 .submenu_list li:last-child a,
.gnb_depth2_3 .submenu_list li:last-child a,
.gnb_depth2_4 .submenu_list li:last-child a {
  padding-top: 0;
}
/* 헤더 끝 */
/* 본문 시작 */
#container {
  padding-bottom: 70px;
}
/* pc롤링 */
.visualRoll {
  position: relative;
  width: 100%;
}
.viewImgList {
  position: relative;
  margin: 0 auto;
  width: 100%;
}
.viewImgList li {
  text-align: center;
  height: 550px;
  line-height: 550px;
  background-size: cover !important;
}
/* rollingImg 배치하기 */
.viewImgList li.imgList0 {
  position: relative;
  z-index: 50;
  background: url(../images/rolling1.jpg) no-repeat center;
  background-position: top;
}
.viewImgList li.imgList1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  background: url(../images/rolling2.jpg) no-repeat center;
  background-position: center;
}
.viewImgList li.imgList2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: url(../images/rolling3.jpg) no-repeat center;
  background-position: top;
}
/* 롤링 버튼들을 감싼 박스 배치 */
.rollbtnArea {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 25px;
  z-index: 200;
}

.rollbtnArea .rollingbtn {
  width: 320px;
  margin: 0 auto;
  text-align: center;
}
.rollbtnArea .rollingbtn li {
  display: inline-block;
  margin-right: 5px;
}
.rollbtnArea .rollingbtn li.play {
  display: none;
}
.rollbtnArea .rollingbtn li a {
  vertical-align: middle;
}
/* solar system */
.place_list {
  width: 1200px;
}

.about_area h2 {
  padding: 105px 0 50px;
  text-align: center;
  font-size: 40px;
}

.about_area .place_list li {
  float: left;
  width: 25%;
  margin-left: 10%;
}
.about_area .place_list li .card1 {
  background: url(../images/earth3.png) no-repeat center / cover;
  background-size: 95%;
  width: 100%;
  height: 350px;
}
.about_area .place_list li .card2 {
  background: url(../images/moon1.png) no-repeat center / cover;
  background-size: 100%;
  width: 100%;
  height: 350px;
}
.about_area .place_list li .card3 {
  background: url(../images/mars1.png) no-repeat center / cover;
  background-size: 95%;
  width: 100%;
  height: 350px;
}
.about_area .place_list li:first-child {
  margin-left: 0;
}
/* 카드 이름 */
.about_area .place_list li h3 {
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  color: rgb(212, 221, 238);
}
/* 장소 소개 */
.about_area .place_list p.txt {
  font-family: "LAB디지털";
  box-sizing: border-box;
  font-size: 1.3rem;
  text-align: center;
  padding: 10px 30px 0 10px;
  width: 100%;
  overflow: hidden;
  word-break: keep-all;
  line-height: 1.8;
  color: rgb(212, 221, 238);
}
/* VIEW 버튼 */
.about_area .place_list li .view {
  display: inline-block;
  margin-left: 43%;
  margin-top: 20px;
  padding-top: 5px;
  margin-bottom: 10px;
  border-top: 2px solid rgb(212, 221, 238);
  color: rgb(212, 221, 238);
}
/* 입대 및 미래연혁 시작*/
.appbbs_area {
  padding: 60px 0;
}
.appbbs_area > .appbbs_box > .app_line > button {
  float: left;
  width: 66%;
  box-sizing: border-box;
  padding: 45px 0;
  text-align: center;
  font-size: 0;
  height: 200px;
}

/* 버튼 시작 */
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed");

.preserve-3d {
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}

.button_base {
  float: left;
  font-size: 3.5rem;
  position: relative;
  width: 60%;
  height: 250px;
  margin-top: 50px;
  margin-right: 40px;
  text-align: center;
  line-height: 3;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  cursor: default;
}

.button_base:hover {
  cursor: pointer;
}

.b12_3d_glitch {
  overflow: hidden;
  width: 60%;
  height: 190px;
}

.b12_3d_glitch div {
  padding: 10px;
  position: absolute;
  text-align: center;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  width: 100%;
  height: 180px;
}

.b12_3d_glitch div:nth-child(1) {
  top: 1px;
  left: 0px;
  border: #000000 solid 1px;
}

.b12_3d_glitch div:nth-child(2) {
  color: #000;
  top: 2px;
  width: 100%;
  height: 180px;
}

.b12_3d_glitch:hover div:nth-child(1) {
  animation: b12_3d_glitch_bg 0.3s linear;
  -webkit-animation: b12_3d_glitch_bg 0.3s linear;
  -moz-animation: b12_3d_glitch_bg 0.3s linear;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
}
.b12_3d_glitch:hover div:nth-child(2) a {
  color: #fff !important;
}
.b12_3d_glitch:hover div:nth-child(2) {
  color: #000;
  animation: b12_3d_glitch 0.3s linear;
  -webkit-animation: b12_3d_glitch 0.3s linear;
  -moz-animation: b12_3d_glitch 0.3s linear;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAGCAYAAAAL+1RLAAAAF0lEQVQIW2NkwAIYgWKS6OIgQQxAoUoAE4AAUnD/0ugAAAAASUVORK5CYII=)
    repeat;
}

@-webkit-keyframes b12_3d_glitch_bg {
  49.00% {
    background-color: #ffffff;
  }
  50.00% {
    background-color: #000000;
  }
  to {
    background-color: #000000;
  }
}

@-webkit-keyframes b12_3d_glitch {
  from {
    transform: skewX(0deg);
    -webkit-transform: skewX(0deg);
    -moz-transform: skewX(0deg);
    color: #000000;
  }
  25.00% {
    transform: skewX(80deg);
    -webkit-transform: skewX(80deg);
    -moz-transform: skewX(80deg);
    color: #000000;
  }
  75.00% {
    transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    color: #ffffff;
  }
  90.00% {
    transform: skewX(0deg);
    -webkit-transform: skewX(0deg);
    -moz-transform: skewX(0deg);
    color: #ffffff;
  }
  to {
    transform: skewX(0deg);
    -webkit-transform: skewX(0deg);
    -moz-transform: skewX(0deg);
    color: #ffffff;
  }
}

@-moz-keyframes b12_3d_glitch_bg {
  49.00% {
    background-color: #ffffff;
  }
  50.00% {
    background-color: #000000;
  }
  to {
    background-color: #000000;
  }
}

@-moz-keyframes b12_3d_glitch {
  from {
    transform: skewX(0deg);
    -webkit-transform: skewX(0deg);
    -moz-transform: skewX(0deg);
    color: #000000;
  }
  25.00% {
    transform: skewX(80deg);
    -webkit-transform: skewX(80deg);
    -moz-transform: skewX(80deg);
    color: #000000;
  }
  75.00% {
    transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    color: #ffffff;
  }
  90.00% {
    transform: skewX(0deg);
    -webkit-transform: skewX(0deg);
    -moz-transform: skewX(0deg);
    color: #ffffff;
  }
  to {
    transform: skewX(0deg);
    -webkit-transform: skewX(0deg);
    -moz-transform: skewX(0deg);
    color: #ffffff;
  }
}
/* 버튼 끝 */

/* 미래연혁 부분, 오른쪽으로 띄우기 */
.appbbs_box > .bbs_line {
  float: right;
  width: 30%;
}
/* "FUTURE" 글자 크게 */
.appbbs_box > .bbs_line h3 {
  text-align: center;
  font-size: 26px;
}
/* "FUTURE", 미래연혁 내용들과 거리두기 */
.appbbs_box > .bbs_line > .future {
  font-family: "KoPubDotumMedium";
  font-size: 16px;
  padding-top: 10px;
}
/* 각 공지사항들 거리두기(글꼴에 따라 적절히 선택) */
.appbbs_box > .bbs_line > .future > li {
  padding: 6px 0;
}
.appbbs_box > .bbs_line > .future > li > p:first-child {
  display: block;
  height: 20px;
  padding-left: 14px;
  background: url(../images/ico_bullet.png) no-repeat 0 30%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.appbbs_box > .bbs_line > .future > li > p:last-child {
  padding-left: 24px;
  border-bottom: 1px solid #444;
  width: 80%;
}
/* 입대 및 미래연혁 끝*/
/* 본문 끝 */
/* 푸터 시작 */
footer {
  font-family: "twayair";
  border-top: 1px solid #ddd;
}

footer > .foot_area {
  position: relative;
  padding-bottom: 40px;
}
/* 차지하는 자리 조절 */
footer > .foot_area > .foot_list {
  padding-top: 25px;
}
/* 이용약관, 개인정보취급방침 한줄로 만들기 */
footer > .foot_area > .foot_list > li {
  float: left;
}
/* | 만들고 사이즈 조절하기 */
footer > .foot_area > .foot_list li:first-child::after {
  content: "|";
  display: inline-block;
  padding: 0 10px;
  font-size: 10px;
  color: #000;
  position: relative;
  top: -2px;
}
/* 이용약관, 개인정보취급방침 진하게, 사이즈 조절 */
footer > .foot_area > .foot_list > li > a {
  font-weight: bold;
  font-size: 15px;
}
/* 사업자명 */
footer > .foot_area > h2 {
  padding-top: 25px;
  font-size: 14px;
  color: #666;
}
/* 주소 */
footer > .foot_area > .addr {
  padding-top: 5px;
  line-height: 1.4;
  font-size: 13px;
  color: #666;
}
/* 이메일 주소, 전화번호 */
footer > .foot_area > .addr .space0 {
  letter-spacing: 0;
}
/* copyright 스타일링 */
footer > .foot_area > .copy {
  padding-top: 3px;
  font-size: 13px;
  color: #666;
  letter-spacing: 0;
}
/* sns 아이콘들 오른쪽 위로 이동 */
footer > .foot_area > .snslink {
  position: absolute;
  right: 20px;
  top: 50px;
}
/* 아이콘 일렬로 배치 */
footer > .foot_area > .snslink > li {
  float: left;
  margin-left: 60px;
}
/* 아이콘에 그림 넣기 */
footer > .foot_area > .snslink > li > a {
  display: block;
  width: 50px;
  height: 74px;
  text-indent: -9999px;
  overflow: hidden;
  background: url(../images/ico_blog_r.png) no-repeat;
}
footer > .foot_area > .snslink > li + li > a {
  background-image: url(../images/ico_facebook_r.png);
}
footer > .foot_area > .snslink > li + li + li > a {
  background-image: url(../images/ico_instargram_r.png);
}
/* 푸터 끝 */
/* 퀵 메뉴 시작 */
.quick_area {
  position: fixed;
  top: 171px;
  width: 50px;
  z-index: 100;
  right: 0;
}
.quick_area > .quick_list > li {
  text-align: center;
  background-color: #282828;
}
.quick_area > .quick_list > li > a {
  display: block;
  padding: 15px 0;
  border-top: 1px solid #4d4d4d;
}
.quick_area > .quick_list > li {
  height: 50px;
}
.quick_area > .quick_list > li:nth-child(1) > a {
  padding: 0;
  background: url(../images/phoneservice_side.png) no-repeat center;
  background-size: 60px;
  height: 100%;
}
.quick_area > .quick_list > li:nth-child(2) > a {
  padding: 0;
  background: url(../images/kakao_side.png) no-repeat center;
  background-size: 100px;
  height: 100%;
}
.quick_area > .quick_list > li:nth-child(3) > a {
  padding: 0;
  background: url(../images/location_side.png) no-repeat center;
  background-size: 100px;
  height: 90%;
}
.to_top {
  text-align: center;
  background-color: #fff;
}
.to_top a {
  display: block;
  height: 25px;
  box-sizing: border-box;
  text-indent: -9999px;
  border-left: 1px solid #a3a3a3;
  border-bottom: 1px solid #a3a3a3;
  background: url("../images/ico_totop.png") no-repeat center;
  background-size: 60%;
}
/* 퀵 메뉴 끝*/
/*--------메인 페이지 끝--------*/
/*--------로그인 페이지 시작--------*/
.login_wrap {
  width: 508px;
  margin: 150px auto 0;
}
h1.loginTit {
  text-align: center;
}
h1.loginTit > a {
  display: block;
}
h1.loginTit > a > img {
  width: 100%;
}
.login_list {
  width: 75%;
  margin: 70px auto 20px;
}
.login_list > li {
  position: relative;
  margin-bottom: 4px;
  height: 54px;
  box-sizing: border-box;
  padding-left: 50px;
  border-radius: 5px;
  /* border: 1px solid black; */
}
.login_list > li > a {
  font-family: "GmarketSansMedium";
  display: block;
  height: 54px;
  box-sizing: border-box;
  line-height: 54px;
  text-align: center;
  font-size: 14px;
  color: #fff;
}
.login_list > li:last-child {
  margin-bottom: 0;
}
.login_list > li.kakao {
  background: #f3e129 url(../images/ico_katalk.png) no-repeat 15px 50%;
  background-size: 45px 45px;
}
.login_list > li.kakao > a {
  color: #202224;
}
.login_list > li.naver {
  background: #00c300 url(../images/ico_naver.png) no-repeat 15px 50%;
  background-size: 45px 45px;
}
.login_list > li.facebook {
  background: #405ea9 url(../images/ico_face.png) no-repeat 15px 50%;
  background-size: 45px 45px;
}
.login_list > li.email {
  background: #888 url(../images/ico_cellphone.png) no-repeat 15px 50%;
  background-size: 45px 45px;
}
.login_btn_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.login_btn {
  position: relative;
  width: 50px;
  height: 25px;
}
.login_btn input {
  position: relative;
  z-index: 1;
  appearance: none;
  -webkit-appearance: none;
}
.login_btn span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f80000;
  border-radius: 80px;
  transition: 0.5s;
  box-shadow: 0 5px 10px #f8000088;
}
.login_btn input:checked ~ span {
  background: #05be05;
  box-shadow: 0 5px 10px #05be0588;
}
.login_btn span i {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 23px;
  height: 23px;
  background: #fff;
  border-radius: 50%;
  transition: 0.5s;
}
.login_btn input:checked ~ span i {
  left: 26px;
}
.btnmsg {
  margin: 20px auto;
  text-align: center;
}
.btnmsg span {
  font-family: "twayair";
}
/*--------로그인 페이지 끝--------*/
/*--------회원가입 페이지 시작--------*/
#body_join {
  background: url(../images/earth1.png) no-repeat;
  background-position: 1% 69%;
}
.location_area.member > .box_inner > form {
  padding-top: 100px;
}
.appForm {
  font-family: "GmarketSansMedium";
  margin: 40px auto 0;
}
/* 필수요소 빨간색 */
.appForm .info_pilsoo {
  font-family: "GmarketSansMedium";
  position: relative;
  padding-left: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #000;
  font-size: 15px;
  color: #f00;
}
/*  * 필수아이템 앞에 붙이기 */
.appForm .pilsoo_item::before {
  content: "*";
  display: inline-block;
  position: absolute;
  left: 5px;
  top: 0px;
  width: 15px;
  font-size: 17px;
  font-weight: bold;
  color: #f00;
}
.appForm .app_list {
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}
.appForm .app_list li {
  padding: 5px 0;
}
.appForm .app_list li .tit_lbl {
  position: relative;
  float: left;
  width: 155px;
  box-sizing: border-box;
  padding-left: 20px;
  line-height: 42px;
  font-weight: bold;
  font-size: 17px;
  letter-spacing: -1px;
}
.appForm .app_list li .app_content {
  float: right;
  width: 770px;
}
.appForm .app_list li .app_content * {
  vertical-align: top;
}
/* @위치 */
.appForm .app_list li .app_content.email_area .ico_space {
  display: inline-block;
  padding-top: 15px;
}
.appForm .app_list li .app_content label {
  vertical-align: middle;
}
/* 회원가입 페이지에 있는 셀렉트 같은 경우에는 크기 새롭게 조정 */
.appForm .app_list .select_common {
  width: 160px;
  height: 45px;
  background-position: 100% 50%;
  border: 1px solid #ccc;
}
.appForm .app_list li .select_common select {
  width: 200px;
  height: 43px;
}
.appForm .app_list li .app_content.radio_area {
  height: 45px;
  box-sizing: border-box;
  padding-top: 12px;
}
.appForm .app_list li .app_content.checkbox_area {
  height: 45px;
  box-sizing: border-box;
  padding-top: 12px;
}
.appForm .app_list li textarea {
  height: 245px;
  resize: none;
}
.btn_line {
  padding: 20px 0;
}
.btn_basecolor {
  font-family: "GmarketSansMedium";
  padding: 10px 50px;
  border-radius: 5px;
}
/*--------회원가입 페이지 끝--------*/
/*--------내정보 페이지 시작--------*/
/* 내 정보 칸 만들기 */
.myinfo {
  font-family: "GmarketSansMedium";
}
.myinfo dt {
  background-color: #000;
  color: #fff;
  width: 170px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-size: 20px;
}
.myinfo dd {
  border-top: 2px solid #000;
}
/* 전체 내용들 아래의 회색 배경 */
.regForm .reg_list {
  padding: 0 0;
  background: url(../images/bg_reglist.png) repeat-y;
}
.regForm .reg_list li {
  min-height: 60px;
  padding: 0;
  border-bottom: 1px solid #ccc;
}
/* 타이틀들 왼쪽으로 정렬시키며 크기 및 위치 세부 조정 */
.regForm .reg_list li .tit_lbl {
  position: relative;
  float: left;
  width: 150px;
  box-sizing: border-box;
  padding-left: 20px;
  line-height: 60px;
  font-weight: bold;
  font-size: 16px;
}
/* 내용 오른쪽 정렬 */
.regForm .reg_list li .reg_content {
  float: right;
  width: 770px;
  box-sizing: border-box;
  padding-left: 22.5px;
  font-size: 15px;
  padding-top: 25px;
}
.regForm .reg_list li .reg_content * {
  vertical-align: middle;
}
.regForm .reg_list li .reg_content.radio_area:not(.gender) {
  padding-top: 15px;
}
.regForm .reg_list li .reg_content .info_line {
  padding: 5px 10px 5px 0;
  font-size: 15px;
}

/*--------내정보 페이지 끝--------*/

body {
  align-items: center;
  background-color: #f9f9f9;
}

.about_box {
  margin: 0 auto;
  /* padding: 50px; */
  background-color: #282828;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.06), 0 1px 0 0 rgba(0, 0, 0, 0.02);
}

.background {
  position: absolute;
  width: 100% !important;
  height: 1000px !important;
  top: 300px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

/*------------ 태블릿 반응형 시작 ------------*/
@media screen and (max-width: 1200px) and (min-width: 768px) {
  html {
    overflow-x: hidden;
  }
  /* header를 포함한 div를 넓이 100%로 하여 화면에 들어오게 조절 */
  .box_inner {
    width: 100%;
  }
  header .header_area h1 {
    padding-left: 20px;
  }
  .header_cont {
    float: right;
    width: 60%;
    padding-right: 20px;
  }
  .header_cont .gnb li a {
    padding: 26px 10px 26px 20px;
  }
  header > .header_area > h1 > a {
    width: 200px;
  }
  .gnb_depth .submenu_list {
    width: 100%;
    padding-left: 52%;
  }
  .gnb_depth .submenu_list a {
    padding: 20px;
  }
  #container {
    padding-bottom: 20px;
  }
  .about_area .about_box li {
    height: 380px;
  }
  .about_area .place_list p.txt {
    font-size: 12px;
  }
  .about_area .place_list span.view {
    display: none;
  }
  .about_area .about_box li .card1,
  .about_area .about_box li .card2,
  .about_area .about_box li .card3 {
    height: 250px;
  }
  .background {
    top: 740px;
    /* height: 400px !important; */
  }
  .button_base {
    margin-left: 5%;
    width: 55%;
    font-size: 3rem;
    line-height: 350%;
  }
  .appbbs_box > .bbs_line > .future > li > p:first-child {
    font-weight: bold;
  }
  .appbbs_box > .bbs_line > .future > li > p:last-child {
    font-size: 0.8rem;
  }
  .quick_area .quick_list {
    display: none;
  }
  .to_top {
    position: fixed;
    right: 20px;
    bottom: 180px;
    text-align: center;
    background: none;
    z-index: 100;
  }
  .to_top a {
    display: block;
    width: 45px;
    height: 45px;
    background: url(../images/baseline_rocket_black_24dp.png) no-repeat;
    background-size: 45px;
    border: none;
  }
  .regForm .reg_list li .tit_lbl {
    width: 21%;
  }
  .regForm .reg_list li .reg_content {
    width: 79%;
    padding-left: 30px;
  }
  .appForm .app_list li .tit_lbl {
    width: 21%;
  }
  .appForm .app_list li .app_content {
    width: 77%;
    padding-left: 10px;
  }
}
/*------------ 태블릿 반응형 끝 ------------*/
/*------------ 모바일 반응형 끝 ------------*/

@media screen and (max-width: 768px) {
  html {
    overflow-x: hidden;
  }
  .box_inner {
    width: 100%;
  }
  header {
    height: 90px;
    text-align: center;
    z-index: 200;
    background-color: rgba(0, 0, 0, 0.5);
    transition: 0.5s;
  }

  header.active {
    height: 330px;
  }
  header .header_area h1 {
    float: none;
    width: 100%;
    height: 50px;
    text-align: center;
    padding: 0;
  }
  header .header_area h1 a {
    display: inline-block;
    width: 200px;
    height: 100px;
    background-size: 150px 150px;
  }

  header > .header_area > .openMOgnb {
    display: block;
    position: absolute;
    left: 15px;
    top: 35px;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
    overflow: hidden;
    cursor: pointer;
  }
  header > .header_area > .openMOgnb span {
    position: absolute;
    width: 30px;
    height: 4px;
    background: #fff;
    border-radius: 3px;
    transition: 0.5s;
  }
  header > .header_area > .openMOgnb span:nth-child(1) {
    transform: translateY(-12px);
    width: 20px;
    left: 11px;
  }
  header > .header_area > .openMOgnb.active span:nth-child(1) {
    width: 30px;
    transform: translateY(0) rotate(45deg);
    transition-delay: 0.125s;
  }
  header > .header_area > .openMOgnb span:nth-child(2) {
    transform: translateY(12px);
    width: 15px;
    left: 11px;
  }
  header > .header_area > .openMOgnb.active span:nth-child(2) {
    width: 30px;
    transform: translateY(0) rotate(130deg);
    transition-delay: 0.2s;
  }
  header > .header_area > .openMOgnb.active span:nth-child(3) {
    transform: translateX(60px);
  }
  .header_cont .util {
    position: absolute;
    top: 3px;
    left: 2px;
  }
  .header_cont .util li {
    float: left;
  }
  .header_cont .util li a {
    font-size: 10px;
  }
  .header_cont .util li:first-child::after {
    content: "|";
    display: inline-block;
    padding: 0 10px;
    font-size: 10px;
    color: #a2a3a3;
    position: relative;
    top: -1px;
  }
  .header_cont .gnb {
    position: absolute;
    width: 100%;
    top: 100px;
    overflow: hidden;
  }
  .header_cont .gnb li {
    display: block;
    transform: translateY(-700px);
    overflow: hidden;
    width: 100%;
    text-align: center;
    transition: 0.5s;
  }
  .header_cont .gnb.active li {
    display: block;
    text-align: center;
    transform: translateX(0);
    width: 100%;
  }

  .header_cont .gnb.active li a {
    padding: 20px 0;
    margin: 0 auto;
    text-align: center;
    width: 150px;
  }

  .about_area .about_box li {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 500px;
    margin: 0 auto;
  }
  .about_area .about_box li h3,
  .about_area .about_box li p {
    position: relative;
    top: -250px;
  }
  .about_area .about_box li .view {
    display: none;
  }
  .about_area .place_list li .loader {
    position: relative;
    top: 20px;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    /* border: 1px solid #fff; */
    border-radius: 50%;
    overflow: hidden;
    animation: animate 4s linear infinite;
  }
  @keyframes animate {
    0% {
      transform: rotate(0);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .about_area .place_list li .loader::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    /* overflow: hidden; */
    background: linear-gradient(to top, transparent, rgba(0, 255, 249, 0.4));
    background-size: 200px 360px;
    background-repeat: no-repeat;
    border-top-left-radius: 200px;
  }
  .about_area .place_list li .loader::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #00fff9;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 10px #00fff9, 0 0 20px #00fff9, 0 0 30px #00fff9,
      0 0 40px #00fff9, 0 0 50px #00fff9, 0 0 60px #00fff9, 0 0 70px #00fff9,
      0 0 80px #00fff9, 0 0 90px #00fff9, 0 0 100px #00fff9;
  }
  .about_area .place_list li .loader span {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: #282828;
    border-radius: 50%;
  }
  .about_area .place_list li .card1 {
    position: relative;
    top: -265px;
    width: 270px;
    margin: 0 auto;
    height: 270px;
    background: url(../images/earth2d.jpg);
    border-radius: 50%;
    background-size: cover;
    box-shadow: inset 0 0 20px #03a9f4, 0 0 120px #03a9f4;
    animation: animateEarth 20s linear infinite;
  }
  @keyframes animateEarth {
    0% {
      background-position: 0;
    }
    100% {
      background-position: 162.5%;
    }
  }
  /* -------달--------*/
  .about_area .place_list li .loader2 {
    position: relative;
    top: 20px;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    /* border: 1px solid #fff; */
    border-radius: 50%;
    overflow: hidden;
    animation: animate 4s linear infinite;
  }
  @keyframes animate {
    0% {
      transform: rotate(0);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .about_area .place_list li .loader2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    /* overflow: hidden; */
    background: linear-gradient(to top, transparent, #6f7172);
    background-size: 200px 360px;
    background-repeat: no-repeat;
    border-top-left-radius: 200px;
  }
  .about_area .place_list li .loader2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #6f7172;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 10px #6f7172, 0 0 20px #6f7172, 0 0 30px #6f7172,
      0 0 40px #6f7172, 0 0 50px #6f7172, 0 0 60px #6f7172, 0 0 70px #6f7172,
      0 0 80px #6f7172, 0 0 90px #6f7172, 0 0 100px #6f7172;
  }
  .about_area .place_list li .loader2 span {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: #282828;
    border-radius: 50%;
  }
  .about_area .place_list li .card2 {
    position: relative;
    top: -265px;
    width: 270px;
    margin: 0 auto;
    height: 270px;
    background: url(../images/moon.jpg);
    border-radius: 50%;
    background-size: cover;
    box-shadow: inset 0 0 20px #6f7172, 0 0 120px #6f7172;
    animation: animateEarth 20s linear infinite;
  }
  @keyframes animateEarth {
    0% {
      background-position: 0;
    }
    100% {
      background-position: 162.5%;
    }
  }
  /* ----화성----- */
  .about_area .place_list li .loader3 {
    position: relative;
    top: 20px;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    /* border: 1px solid #fff; */
    border-radius: 50%;
    overflow: hidden;
    animation: animate 4s linear infinite;
  }
  @keyframes animate {
    0% {
      transform: rotate(0);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .about_area .place_list li .loader3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    /* overflow: hidden; */
    background: linear-gradient(to top, transparent, #f80000);
    background-size: 200px 360px;
    background-repeat: no-repeat;
    border-top-left-radius: 200px;
  }
  .about_area .place_list li .loader3::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #f3390b;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 10px #f3390b, 0 0 20px #f3390b, 0 0 30px #f3390b,
      0 0 40px #f3390b, 0 0 50px #f3390b, 0 0 60px #f3390b, 0 0 70px #f3390b,
      0 0 80px #f3390b, 0 0 90px #f3390b, 0 0 100px #f3390b;
  }
  .about_area .place_list li .loader3 span {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: #282828;
    border-radius: 50%;
  }
  .about_area .place_list li .card3 {
    position: relative;
    top: -265px;
    width: 270px;
    margin: 0 auto;
    height: 270px;
    background: url(../images/mars.jpg);
    border-radius: 50%;
    background-size: cover;
    box-shadow: inset 0 0 20px #f3390b, 0 0 120px #f3390b;
    animation: animateEarth 20s linear infinite;
  }
  @keyframes animateEarth {
    0% {
      background-position: 0;
    }
    100% {
      background-position: 162.5%;
    }
  }
  .about_area .about_box .background {
    display: none;
  }
  /* 버튼 */
  .b12_3d_glitch {
    margin: 0 auto;
    width: 100%;
  }
  .b12_3d_glitch div {
    font-size: 2rem;
    line-height: 5;
  }
  .appbbs_box > .bbs_line {
    width: 100%;
    float: none;
  }
  .appbbs_box > .bbs_line > .future {
    margin-left: 30px;
  }
  .appbbs_box > .bbs_line > .future > li > p:first-child {
    font-weight: bold;
  }
  .appbbs_box > .bbs_line > .future > li > p:last-child {
    font-size: 0.8rem;
  }
  .quick_area .quick_list {
    display: none;
  }
  .to_top {
    position: fixed;
    right: 20px;
    bottom: 180px;
    text-align: center;
    background: none;
    z-index: 100;
  }
  .to_top a {
    display: block;
    width: 45px;
    height: 45px;
    background: url(../images/baseline_rocket_black_24dp.png) no-repeat;
    background-size: 45px;
    border: none;
  }
  footer .foot_area .snslink {
    position: static;
    width: 210px;
    margin: 10px auto;
  }
  footer .gubun {
    display: none;
  }
  footer .foot_area .snslink li {
    margin-left: 30px;
  }
  footer .foot_area .snslink li:first-child {
    margin-left: 0;
  }
  .login_wrap {
    width: 100%;
    margin: 0 auto;
    padding-top: 75px;
  }

  .regForm {
    width: 100%;
    margin: 0 auto;
  }
  .regForm .reg_list {
    padding: 10px 0 0;
    background: none;
  }
  .regForm .reg_list li {
    position: relative;
    min-height: 50px;
    padding: 0;
    border-bottom: 1px solid #ccc;
  }
  .regForm .reg_list li .tit_lbl {
    position: relative;
    float: none;
    width: auto;
    box-sizing: border-box;
    padding: 10px;
  }
  .regForm .reg_list li .reg_content {
    float: none;
    width: auto;
    box-sizing: border-box;
    padding-left: 10px;
    padding-top: 0;
    padding-bottom: 20px;
    font-size: 15px;
  }
  .regForm .reg_list li .reg_content .info_line {
    padding: 10px 10px 3px 0;
    line-height: 1.4;
    font-size: 15px;
  }
  .regForm .reg_list li .reg_content * {
    vertical-align: middle;
  }
  .regForm .reg_list li .reg_content label {
    vertical-align: middle;
  }
  .appForm {
    margin: 20px auto;
  }
  .appForm .pilsoo_item::before {
    top: 1px;
  }
  .appForm .app_list li {
    position: relative;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
  }
  .appForm .app_list li:last-child {
    border-bottom: none;
    padding-bottom: 10px;
  }
  .appForm .app_list li .tit_lbl {
    float: none;
    width: auto;
    line-height: 30px;
  }
  .appForm .app_list li .app_content {
    float: none;
    width: auto;
  }
  .appForm .app_list li .app_content * {
    vertical-align: middle;
  }
  .appForm .app_list li .app_content input[type="text"],
  .appForm .app_list li .app_content input[type="password"],
  .appForm .app_list li .app_content input[type="tel"] {
    border: none;
    width: 100% !important;
  }
  .appForm .app_list li .app_content.email_area {
    padding: 5px 0 0;
    font-size: 0;
  }
  .appForm .app_list li .app_content.email_area input[type="text"] {
    border: 1px solid #ccc;
    width: 45% !important;
    font-size: 14px;
  }
  .appForm .app_list li .app_content.email_area .ico_space {
    width: 10% !important;
    text-align: center;
    font-size: 14px;
  }
  /* 이메일 선택 select 전체크기로 바꿔주긴 */
  .appForm .app_list li .select_common {
    width: 100%;
    height: 45px;
    margin-top: 10px;
  }
  .appForm .app_list li .select_common select {
    width: 100%;
    height: 45px;
  }
  .appForm .app_list li .app_content.radio_area {
    padding-left: 20px;
    height: 40px;
    padding-top: 10px;
  }
  .appForm .app_list li .app_content.checkbox_area {
    padding-left: 20px;
    height: 40px;
    padding-top: 10px;
  }
  .appForm .app_list li textarea {
    height: 130px;
  }
}
/*------------ 모바일 반응형 끝 ------------*/
