@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: 1200px;
  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: absolute;
  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: 5px;
}
/* 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;
}

/* 버튼 시작 */
@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;
  }
}
/* 버튼 끝 */

/* 본문 끝 */
/* 푸터 시작 */
footer {
  clear: both;
  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%;
}
/* 퀵 메뉴 끝*/
/*--------메인 페이지 끝--------*/
/*--------움직이는 바탕화면 시작--------*/
html,
body {
  height: 100%;
}

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

.container {
  margin: 0 auto;
  /* padding: 50px; */
  background-color: #fff;
  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;
  top: 300px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

/*--------움직이는 바탕화면 끝--------*/
/*--------우주군 소개 페이지 시작--------*/
.mission_section {
  width: 100%;
  text-align: center;
}

.mission_section > .mission > h2 {
  float: left;
  padding: 50px;
  margin-left: 20px;
  padding-right: 0;
  font-size: 4rem;
}
.mission_section > .mission > h2::after {
  content: "|";
  padding-right: 10px;
  margin-left: 100px;
  font-weight: 20;
  color: #a3a3a3;
}
.mission_section > .mission > p {
  padding: 50px;
  font-size: 1.5rem;
  padding-left: 0;
  text-align: left;
  margin: 0 0 0 500px;
  width: 60%;
}
.mission_section > .gubun {
  width: 800px;
  border-top: 1px solid #a3a3a3;
  margin: 30px;
  margin-left: 600px;
  margin-bottom: 50px;
}

.mission_section .mission_card_tit > h2 {
  float: left;
  padding: 50px;
  margin-left: 20px;
  padding-right: 0;
  font-size: 4rem;
}

.mission_section .mission_card_tit > h2::after {
  content: "|";
  padding-right: 10px;
  margin-left: 185px;
  font-weight: 20;
  color: #a3a3a3;
}
.mission_section .mission_card {
  display: flex;
}
.mission_section .mission_card div img {
  width: 300px;
  margin-left: 50px;
  filter: grayscale(1);
  height: 300px;
  border-radius: 20px;
}
.mission_section .mission_card div > h3 {
  width: 280px;
  text-align: left;
  line-height: 2;
  font-size: 1.5rem;
  font-variant: small-caps;
  margin-left: 55px;
  color: #f9f9f9;
}

.mission_section .mission_card div > p {
  text-align: left;
  margin-left: 67px;
  width: 280px;
  color: #f9f9f9;
}
.mission_section .mission_card .first:before h3,
.mission_section .mission_card .first:before p,
.mission_section .mission_card .second:before h3,
.mission_section .mission_card .second:before p,
.mission_section .mission_card .third:before h3,
.mission_section .mission_card .third:before p {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
.mission_section .mission_card .first:hover img,
.mission_section .mission_card .second:hover img,
.mission_section .mission_card .third:hover img {
  filter: grayscale(0);
  transition: all 0.5s;
}
.mission_section .mission_card .first:hover h3,
.mission_section .mission_card .first:hover p,
.mission_section .mission_card .second:hover h3,
.mission_section .mission_card .second:hover p,
.mission_section .mission_card .third:hover h3,
.mission_section .mission_card .third:hover p {
  transition: all 0.5s;
  transform: translateY(-190px);
  text-shadow: 2px 3px 3px rgba (0, 0, 0, 1);
}
/*--------우주군 소개 페이지 끝--------*/
/*--------소통 페이지 시작--------*/
.location_area.community {
  background: url(../images/sapce1.webp) no-repeat;
  background-size: 100%;
}
.location_area.community p {
  font-variant: small-caps;
}
.minisrch_form {
  width: 100%;
  text-align: right;
  margin-bottom: 20px;
}
.minisrch_form .tbox {
  padding: 0 5px 0 30px;
  width: 220px;
  height: 35px;
  line-height: 30px;
  border: none;
  border-bottom: 1px solid #ccc;
  background: url("../images/ico_search.png") no-repeat 10px 50%;
  background-size: 15px;
}
.minisrch_form .btn_srch {
  padding: 10px 28px;
  height: 35px;
}
.bbsListTbl {
  width: 100%;
}
.bbsListTbl th,
.bbsListTbl td {
  padding: 10px;
  box-sizing: border-box;
  height: 10px;
}
.bbsListTbl th {
  border-bottom: 1px solid #ccc;
  /* background-color: #f0f3fa; */
}
.bbsListTbl td {
  text-align: center;
  line-height: 1.3;
  border-bottom: 1px solid #ccc;
}
.bbsListTbl td.tit_notice {
  text-align: left;
}
.bbsListTbl td:nth-child(1) {
  width: 10%;
}
.bbsListTbl td:nth-child(2) {
  width: 50%;
}
.bbsListTbl td:nth-child(3) {
  width: 10%;
}
.bbsListTbl td:nth-child(4) {
  width: 20%;
}
.pagination {
  padding: 40px 0 0;
  text-align: center;
}
.pagination a {
  display: inline-block;
}
.pagination a.pbtn {
  display: inline-block;
  padding: 7px;
  text-align: center;
  vertical-align: middle;
  font-size: 0;
}
.pagination a .pagenum {
  display: inline-block;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  vertical-align: middle;
}
.pagination a .currentPage {
  background-color: #384d75;
  color: #fff;
  border-radius: 3px;
}
.pagination a:hover .pagenum {
  background-color: #ddd;
  border-radius: 3px;
}
/*--------소통 페이지 끝--------*/
/*--------모집 페이지 시작--------*/
.location_area.recruit {
  background: url(../images/img_top1.jpg) no-repeat;
  background-size: 100%;
  background-position: center;
}
.recruit p {
  font-variant: small-caps;
}
.officer_section {
  margin-top: 50px;
}
.officer_pic {
  width: 1200px;
}
.officer-pic img {
  position: absolute;
  width: 500px;
  filter: grayscale(1);
  top: 500px;
  left: 50px;
  border-radius: 50px;
  z-index: 0;
}
.officer-pic h3,
.officer-pic p {
  margin-top: 10px;
  width: 300px;
  margin-left: 100px;
  position: relative;
  left: 0;
  top: 0;
  z-index: -1;
}
.officer_section .officer h2 {
  position: relative;
  float: inline;
  top: 50px;
  left: 250px;
  font-size: 3rem;
  width: 500px;
  text-align: center;
  font-family: "GmarketSansMedium";
}
.officer_section .officer h2::before {
  margin-right: 100px;
  content: "|";
  color: #666;
}
.officer-pic img:hover {
  transition: all 0.5s;
  filter: grayscale(0);
  z-index: 0;
}
.officer-pic:hover p,
.officer-pic:hover h3 {
  transform: translateY(20px);
  transition: all 0.5s;
  color: #ddd;
  z-index: 3;
}
.engineer-pic img {
  border-radius: 30px;
  position: absolute;
  width: 500px;
  filter: grayscale(1);
  top: 700px;
  left: 750px;
}

.officer_section {
  display: flex;
  height: 390px;
}
.engineer_section {
  display: flex;
  height: 200px;
}

.engineer_section .engineer h2 {
  position: relative;
  float: inline;
  top: 30px;
  left: 100px;
  font-size: 3rem;
  width: 500px;

  text-align: center;
  font-family: "GmarketSansMedium";
}
.engineer_section .engineer h2::after {
  margin-left: 100px;
  content: "|";
  color: #666;
}
.engineer-pic h3,
.engineer-pic p {
  margin-top: 10px;
  width: 300px;
  margin-left: 400px;
  position: relative;
  text-align: right;
  left: 0;
  top: 0;
  z-index: -1;
}
.engineer-pic:hover p,
.engineer-pic:hover h3 {
  transform: translateY(-20px);
  transition: all 0.5s;
  color: #ddd;
  z-index: 3;
}
.engineer-pic img:hover {
  transition: all 0.5s;
  filter: grayscale(0);
  z-index: 0;
}
/*--------모집 페이지 끝--------*/
/*--------민간 우주인 페이지 시작--------*/
.location_area.civil {
  background: url(../images/img_top3.jpg) no-repeat;
  background-size: 100%;
  background-position: center;
}
.civil .content {
  display: flex;
  flex-wrap: nowrap;
}
.civil .clip iframe {
  width: 100%;
  height: 100%;
}
.civil .clip {
  width: 55%;
  height: 500px;

  margin: 30px 30px 20px 30px;
}
.civil .position iframe {
  width: 100%;
  height: 360px;
}
.civil .position {
  width: 38%;
  height: 500px;
  margin: 30px 20px 20px 0;
}
.civil .position h2 {
  text-align: center;
  font-size: 2rem;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
.civil .position p {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1.2rem;
  width: 100%;
  text-align: center;
}
.civil .position .subp h2,
.civil .position .subp p {
  display: none;
}
/*--------민간 우주인 페이지 끝--------*/
/*------------ 태블릿 반응형 시작 ------------*/
@media screen and (max-width: 1300px) 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 5px 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;
  }

  .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;
  }
  /*---------- 우주군 소개 (태블릿) 시작---------*/
  .mission_section {
    width: 100%;
  }
  .mission_section .mission {
    width: 100%;
  }
  .mission_section .mission h2 {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 10px;
  }
  .mission_section .mission p {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 10px;
    font-size: 1.2rem;
    text-align: center;
  }
  .mission_section .mission h2:after {
    display: none;
  }
  .mission_section > .gubun {
    margin: 0 auto 10px;
    padding: 0;
    width: 80%;
  }
  .mission_section .mission_card {
    flex: none;
    display: inline-block;
  }
  .mission_section .mission_card_tit > h2 {
    float: none;
    width: 100%;
    padding: 0;
    margin: 0 auto;
    text-align: center;
    margin-left: 5%;
    margin-top: 3%;
    margin-bottom: 1%;
  }
  .mission_section .mission_card_tit > h2::after {
    display: none;
  }

  .mission_card .first,
  .mission_card .second,
  .mission_card .third {
    float: left;
    width: 32%;
  }
  .mission_card .first img,
  .mission_card .second img,
  .mission_card .third img {
    width: 90% !important;
  }
  .mission_card .first h3,
  .mission_card .first p,
  .mission_card .second h3,
  .mission_card .second p,
  .mission_card .third h3,
  .mission_card .third p {
    font-size: 1rem !important;
    width: 80% !important;
  }
  /*---------- 우주군 소개 (태블릿) 끝---------*/
  /*---------- 우주군 모집 (태블릿) 시작---------*/
  .main_content {
    margin: 0 auto;
    display: flex;
  }
  .officer_section {
    width: 50%;
    display: block;
  }
  .officer_section .officer h2 {
    position: relative;
    left: 0;
    top: -100px;
    width: 100%;
  }
  .officer_section .officer h2::before {
    display: none;
  }
  .officer_section .officer-pic img {
    position: absolute;
    top: 600px;
    width: 40%;
  }
  .officer-pic h3,
  .officer-pic p {
    top: 110px;
    width: 50%;
  }

  .engineer_section {
    width: 50%;
    display: block;
  }
  .engineer_section .engineer h2 {
    position: relative;
    left: 0;
    top: 50px;
    width: 100%;
  }
  .engineer_section .engineer h2::after {
    display: none;
  }
  .engineer-pic h3,
  .engineer-pic p {
    position: relative;
    top: -80px;
    left: -68%;
    width: 50%;
  }
  .engineer_section .engineer-pic img {
    position: relative;
    top: 100px;
    left: 10%;
    width: 80%;
  }

  /*---------- 우주군 모집 (태블릿) 끝---------*/
  /*---------- 민간 우주인 (태블릿) 시작---------*/

  .civil .content {
    display: inline-block;
  }
  .civil .clip {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    left: 0;
    top: 600px;
  }
  .civil .position {
    width: 100%;
  }
  .civil .position > iframe {
    position: relative;
    width: 60%;
    left: 0;
    top: 600px;
  }
  .civil .position .subp h2,
  .civil .position .subp p {
    display: block;
    position: relative;
    top: 250px;
    width: 30%;
    left: 62%;
  }
  .civil .position .subp h2 {
    font-size: 2.5rem;
  }
  .civil .position .subp p {
    font-size: 1.5rem;
  }
  .civil_footer {
    border: none;
  }
  .civil_footer > .civil_foot {
    top: 350px;
    border-top: 1px solid #999;
  }

  /*---------- 민간 우주인 (태블릿) 끝---------*/
}

/*------------ 태블릿 반응형 끝 ------------*/
/*------------ 모바일 반응형 끝 ------------*/
@media screen and (max-width: 700px) {
  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;
  }

  /*---------- 우주군 소개 (모바일) 시작---------*/
  .mission_section {
    width: 100%;
  }
  .mission_section .mission {
    width: 100%;
  }
  .mission_section .mission h2 {
    width: 100%;
    margin: 0;
    padding: 0;
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .mission_section .mission p {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 10px;
    font-size: 1.2rem;
    text-align: center;
  }
  .mission_section .mission h2:after {
    display: none;
  }
  .mission_section > .gubun {
    margin: 0 auto 10px;
    padding: 0;
    width: 80%;
  }
  .mission_section .mission_card {
    flex: none;
    display: inline-block;
  }
  .mission_section .mission_card_tit > h2 {
    float: none;
    width: 100%;
    padding: 0;
    margin: 0 auto;
    text-align: center;
  }
  .mission_section .mission_card_tit > h2::after {
    display: none;
  }

  .mission_card .first,
  .mission_card .second,
  .mission_card .third {
    float: left;
    margin: 0 auto;
    justify-content: center;
    width: 100%;
  }
  .mission_card .first img,
  .mission_card .second img,
  .mission_card .third img {
    margin: 0 10px !important;
    width: 95% !important;
  }
  .mission_card .first h3,
  .mission_card .first p,
  .mission_card .second h3,
  .mission_card .second p,
  .mission_card .third h3,
  .mission_card .third p {
    margin: 0 40px !important;
    font-size: 1rem !important;
    width: 60% !important;
  }
  /*---------- 우주군 소개 (모바일) 끝---------*/
  /*---------- 우주군 모집 (모바일) 시작---------*/
  .main_content {
    width: 100%;
    margin: 0 auto;
    display: block;
  }
  .officer_section {
    display: block;
    width: 100%;
  }
  .officer_section .officer h2 {
    position: relative;
    top: -500px;
    font-size: 250%;
    left: 0;
    display: block;
    width: 100%;
  }
  .officer_section .officer h2::before {
    display: none;
  }
  .officer-pic h3,
  .officer-pic p {
    position: relative;
    top: -200px;
    left: 0;
    width: 50%;
  }
  .officer-pic img {
    position: relative;
    top: 0;
    left: 0;
    margin-top: 50px;
    width: 100%;
  }
  .engineer_section {
    display: block;
    width: 100%;
    margin: 0 auto;
    height: auto;
  }
  .engineer_section .engineer h2 {
    position: relative;
    width: 100%;
    text-align: center;
    left: 0;
    top: 100px;
  }
  .engineer_section .engineer h2::after {
    display: none;
  }
  .engineer-pic img {
    position: relative;
    top: 0;
    left: 0;
    margin-top: 200px;
    width: 100%;
  }
  .engineer-pic h3,
  .engineer-pic p {
    position: relative;
    top: -180px;
    left: -70%;
    width: 50%;
  }
  /*---------- 우주군 모집 (모바일) 끝---------*/
  .quick_area .quick_list {
    display: none;
  }
  .to_top {
    position: fixed;
    right: 10px;
    bottom: 30px;
    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;
  }
  /*------------ 민간 우주인(모바일) 시작 ------------*/
  .civil {
    display: block;
  }
  .location_area.civil {
    position: absolute;
    background-position: center;
    background-size: cover;
    width: 100%;
    top: 0;
  }
  .civil .content {
    display: inline-block;
  }
  .civil .clip {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    left: 0;
    top: 580px;
  }
  .civil .position {
    width: 100%;
  }
  .civil .position > iframe {
    position: relative;
    width: 100%;
    left: 0;
    top: 420px;
  }
  .civil .position h2,
  .civil .position p {
    width: 100%;
    position: relative;
    top: -80px;
  }
  .civil .position .subp h2,
  .civil .position .subp p {
    display: none;
  }

  .civil_footer {
    border: none;
  }
  .civil_footer > .civil_foot {
    top: 400px;
    border-top: 1px solid #999;
  }
  /*------------ 민간 우주인(모바일) 끝 ------------*/
  /*------------ 소통의 창(모바일) 시작 ------------*/
  .location_area.community {
    height: 340px;
  }
  .location_area.community .box_inner {
    position: absolute;
    top: -120px;
  }
  .bodytext_area.box_inner {
    padding: 10px 10px;
  }
  fieldset {
    display: flex;
    flex-wrap: wrap;
  }
  .minisrch_form .tbox {
    left: 0;
    width: 100%;
  }
  .minisrch_form .btn_srch {
    clear: both;
    width: 100%;
    line-height: 20px;
    height: 20px;
  }
  .bbsListTbl {
    width: 100%;
    border-top: 2px solid #384d75;
  }

  .bbsListTbl th,
  .bbsListTbl td {
    padding: 10px;
    box-sizing: border-box;
    height: 45px;
  }
  /* 번호, 조회수 열은 없애주기 */
  .bbsListTbl th:nth-child(1),
  .bbsListTbl th:nth-child(3),
  .bbsListTbl td:nth-child(1),
  .bbsListTbl td:nth-child(3) {
    display: none;
  }
  .bbsListTbl th:nth-child(2) {
    width: 70%;
  }
  .bbsListTbl th:nth-child(4) {
    width: 30%;
  }

  .bbsListTbl td {
    line-height: 1.3;
    border-bottom: 1px solid #ccc;
  }

  /*------------ 소통의 창(모바일) 끝 ------------*/
}
/*------------ 모바일 반응형 끝 ------------*/
