@charset "utf-8";
/* CSS Document */

/* *******************************************************

	* ProjectName : Eduspec Landing Page
	* FileName : landing_com_20190829.css
	* Description : All Common
	* Date : 2019.08.29
	* Name : 김희선
 
******************************************************** */

/* 폰트 */
@import url("../fonts/fonts.css"); 

/* -------------------------------- 

Common Style

-------------------------------- */
#wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.blind {
  visibility: hidden;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  text-indent: -555555px;
}
.pc_only {
  display: block;
}
.m_only {
  display: none;
}

/* -------------------------------- 

Contents Background Color Style

-------------------------------- */
.bgcolor_white {
	background-color: #ffffff;
}
.bgcolor_gray {
	background-color: #f0f0f0;
}
.bgcolor_green {
	background-color: #69c098;
}

/* -------------------------------- 

Header Style

-------------------------------- */
header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
}
.pc_nav {
  display: block;
}
.m_nav {
  display: none;
}
.nav_innner {
  position: relative;
  width: 100%;
  height: 100px;
  background-color: #ffffff;
  border-bottom: 1px #f0f0f0 solid;
  box-sizing: border-box;
}
.nav_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.nav_box > ul li {
  float: left;
  margin: 0 55px;
}
.nav_box > ul li > a {
  display: inline-block;
  padding: 10px;
  text-transform: uppercase;
  position:relative;
}
.nav_box > ul li > a span {
	vertical-align: middle;
	float: left;
	position: relative;
	font-size: 24px;
  font-weight: 600;
  color: #444444;
}
.nav_box > ul li > a::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 65%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
	width: 100%;
	height: 8px;
	background-color: transparent;
}
.nav_box > ul li > a:hover span, .nav_box > ul li > a.active span {
	color: #000000;
}
.nav_box > ul li > a:hover::before, .nav_box > ul li > a.active::before {
	background-color: rgba(54, 178, 122, 0.7);
}
.logo {
  position: absolute;
  left: 10%;
  top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
.logo a {
  display: block;
  width: 175px;
  height: 49px;
  background: url("../../images_landing/bi/bi_l_eduspec_pc.png") no-repeat left;
  background-size: 100%;
  text-indent: -555555px;
}
.member_box {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}
.member_box > a.btn_join {
  display: inline-block;
  margin-right: 30px;
  font-size: 20px;
  font-weight: 500;
  color: #36b27a;
}
.member_box > a.btn_login {
  display: inline-block;
  width: 100px;
  padding: 8px 0;
  border: 2px #36b27a solid;
  text-align: center;
  box-sizing: border-box;
}
.member_box > a.btn_login span {
  font-size: 20px;
  font-weight: 500;
  color: #36b27a;
}
@media only screen and (max-width: 1600px) {
	.nav_innner {
    height: 85px;
	}
	.nav_box > ul li {
    float: left;
    margin: 0 40px;
	}
	.nav_box > ul li > a {
		padding: 10px 5px;
	}
	.nav_box > ul li > a span {
		font-size: 22px;
	}
	.nav_box > ul li > a::before {
		height: 6px;
	}
	.logo a {
    display: block;
    width: 150px;
    height: 42px;
    background: url(../../images_landing/bi/bi_l_eduspec_m.png) no-repeat left;
    background-size: 100%;
    text-indent: -555555px;
	}
	.member_box > a.btn_join {
    margin-right: 20px;
    font-size: 18px;
	}
	.member_box > a.btn_login {
		width: 90px;
		padding: 7px 0;
		border: 2px #36b27a solid;
	}
	.member_box > a.btn_login span {
		font-size: 18px;
	}
}
@media only screen and (max-width: 1300px) {
	.logo {
		left: 5%
	}
	.member_box {
		right: 5%;
	}
}
@media only screen and (max-width: 1200px) {
	.nav_innner {
    height: 80px;
	}
	.nav_box > ul li {
    float: left;
    margin: 0 30px;
	}
	.nav_box > ul li > a {
		padding: 10px 5px;
	}
	.nav_box > ul li > a span {
		font-size: 20px;
	}
	.nav_box > ul li > a::before {
		height: 6px;
	}
	.logo a {
    display: block;
    width: 135px;
    height: 38px;
    background: url(../../images_landing/bi/bi_l_eduspec_m.png) no-repeat left;
    background-size: 100%;
    text-indent: -555555px;
	}
}
@media only screen and (max-width: 1024px) {
	.pc_nav {
		display: none;
	}
	.m_nav {
		display: block;
	}
	.m_nav_inner {
		position: relative;
		width: 100%;
		height: 70px;
		background-color: #ffffff;
		border-bottom: 1px #f0f0f0 solid;
		box-sizing: border-box;
	}
	.m_logo {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
	}
	.m_logo > a {
    display: block;
    width: 110px;
    height: 31px;
    background: url(../../images_landing/bi/bi_l_eduspec_m.png) no-repeat left;
    background-size: 100%;
    text-indent: -555555px;
	}
	.mobile_util {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translate(0, -50%);
	}
	.m_btn_login {
    display: inline-block;
    margin-right: 10px;
    width: 70px;
    height: 25px;
    line-height: 23px;
    background-color: #36b27a;
    text-align: center;
    vertical-align: middle;
	}
	.m_btn_login > span {
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
	}
	.nav_open_btn {
    display: inline-block;
    visibility: visible;
    opacity: 1;
    vertical-align: middle;
	}
	.nav_open_btn > span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: #000000;
	}
	/* -------------------------------- 

	Layer GNB Style

	-------------------------------- */
	/*#com_gnb {
		display: block;
	}*/
	.c_mask {
		position: fixed;
		top: 0px;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.75);
		z-index: 100;
		display: none;
	}
	#com_gnb {
		position: fixed;
		top: 0px;
		right: -100%;
		width: 100%;
		height: 100%;
		background-color: rgba(54, 178, 122, 1);
		z-index: 1000;
	}
	#com_gnb .gnb_box {
		width: 60%;
    position: absolute;
    top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
    padding-bottom: 30px;
    box-sizing: border-box;
		text-align: center;
    z-index: 999;
	}
	.gnb_box > ul {
		width: 100%;
		margin: 60px auto 30px;
	}
	.gnb_box > ul li {
		display: block;
    cursor: pointer;
    line-height: 40px;
    position: relative;
    margin: 10px 0;
    padding: 10px 0;
    text-decoration: none;
	}
	.gnb_box > ul li a {
		display: block;
		font-size: 36px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
	}
	.gnb_box > ul li:hover a {
    color: rgba(255, 255, 255, 1);
	}
	.gnb_box > .m_btn_join a {
		display: block;
		width: 35%;
		padding: 12px 0 14px 0;
		margin: 50px auto 0;
		border: 2px #ffffff solid;
		background-color: transparent;
		box-sizing: border-box;
		-webkit-transition: background-color 0.4s;
    -moz-transition: background-color 0.4s;
    transition: background-color 0.4s;
		
		line-height: 26px;
		font-size: 26px;
		font-weight: 500;
		color: #ffffff;
	}
	.gnb_box > .m_btn_join a:hover {
		color: #000000;
		background-color: #ffffff;
	}
	
	.btn_gnb_box {
		position: relative;
		height: 80px;
		z-index: 999;
	}
	.btn_gnb_close {
		position: absolute;
		right: 0;
		padding: 35px;
		background: url("../../images_landing/icon/icon_close_m.png") no-repeat center;
		background-size: 30px 30px;
	}
}
@media only screen and (max-width: 978px) {
	#com_gnb {
		width: 100%;
	}
	.gnb_box > ul {
    margin: 60px auto 30px;
	}
	.gnb_box > ul li {
    line-height: 30px;
	}
	.gnb_box > ul li a {
    font-size: 32px;
		 color: rgba(255, 255, 255, 1);
	}
	.gnb_box > ul li:hover a {
    color: rgba(255, 255, 255, 1);
	}
	.gnb_box > .m_btn_join a {
    display: block;
    width: 45%;
    padding: 12px 0 14px 0;
    margin: 50px auto 0;
    line-height: 22px;
    font-size: 22px;
	}
	.gnb_box > .m_btn_join a {
		display: block;
		width: 40%;
		padding: 12px 0 14px 0;
		margin: 50px auto 0;
		border: 2px #ffffff solid;
		background-color: transparent;
		box-sizing: border-box;
		-webkit-transition: background-color 0;
    -moz-transition: background-color 0;
    transition: background-color 0;
		
		line-height: 26px;
		font-size: 26px;
		font-weight: 500;
		color: #ffffff;
	}
	.gnb_box > .m_btn_join a:hover {
		color: #ffffff;
		background-color: transparent;
	}
}
@media only screen and (max-width: 610px) {
	.gnb_box > ul {
    width: 65%;
    margin: 60px auto 30px;
	}
	.gnb_box > ul li a {
    font-size: 26px;
	}
	.gnb_box > .m_btn_join a {
    display: block;
    width: 65%;
    padding: 12px 0 14px 0;
    margin: 40px auto 0;
    line-height: 20px;
    font-size: 20px;
	}
}
@media only screen and (max-width: 567px) {
	.m_nav_inner {
		height: 60px;
	}
}
@media only screen and (max-width: 410px) {
	.gnb_box > ul {
    width: 100%;
    margin: 60px auto 30px;
	}
	.gnb_box > ul li a {
    font-size: 26px;
	}
	.gnb_box > .m_btn_join a {
    display: block;
    width: 90%;
    padding: 12px 0 14px 0;
    margin: 40px auto 0;
    line-height: 20px;
    font-size: 20px;
	}
}

/* -------------------------------- 

Sub Top Common Title Style

-------------------------------- */
.sub_wrap {
	display: block;
	overflow: hidden;
	width: 100%;
	padding: 100px 0 0 0;
	box-sizing: border-box;
}
.sub_comtitle_inner {
	display: block;
	overflow: hidden;
  width: 100%;
	height: 280px;
  background: url("../../images_landing/bg/bg_l_title.jpg") no-repeat center;
  background-size: cover;
  text-align: center;
  position: relative;
}
.sub_comtitle_inner .sub_comtitle_box {
	width: 100%;
	max-width: 1200px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}
.sub_comtitle_box > h1 {
	font-size: 72px;
	font-weight: 600;
	line-height: 96px;
	color: #ffffff;
	margin-bottom: 10px;
}
.sub_comtitle_box > p {
	font-size: 18px;
	font-weight: 300;
	line-height: 20px;
	color: #ffffff;
}
@media only screen and (max-width: 1600px) {
	.sub_wrap {
		padding: 85px 0 0 0;
	}
}
@media only screen and (max-width: 1200px) {
	.sub_wrap {
		padding: 80px 0 0 0;
	}
	.sub_comtitle_inner {
		height: 200px;
	}
	.sub_comtitle_inner .sub_comtitle_box {
		padding: 0 5%;
		box-sizing: border-box;
	}
	.sub_comtitle_box > h1 {
    font-size: 58px;
    line-height: 76px;
    margin-bottom: 10px;
	}
	.sub_comtitle_box > p {
		font-size: 18px;
	}
}
@media only screen and (max-width: 1024px) {
	.sub_wrap {
		padding: 70px 0 0 0;
	}
	.sub_comtitle_inner {
		height: 160px;
	}
	.sub_comtitle_box > h1 {
    font-size: 48px;
    line-height: 64px;
    margin-bottom: 10px;
	}
	.sub_comtitle_box > p {
		font-size: 16px;
	}
}
@media only screen and (max-width: 820px) {
.text_bn_box {
    padding: 50px 5%;
	}
}
@media only screen and (max-width: 567px) {
	.sub_wrap {
		padding: 60px 0 0 0;
	}
	.sub_comtitle_inner {
		height: 145px;
	}
	.sub_comtitle_box > h1 {
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 10px;
	}
	.sub_comtitle_box > p {
		font-size: 14px;
	}
}
@media only screen and (max-width: 359px) {
	.sub_comtitle_box > p {
		font-size: 12px;
	}
}
/* -------------------------------- 

Sub Small Style

-------------------------------- */
.sub_small_inner {
	width: 100%;
	padding: 5% 0;
	text-align: center;
}
.sub_small_box {
	width: 100%;
	max-width: 830px;
	margin: 0 auto;
	position: relative;
}
.sub_small_box > h2 {
	font-size: 52px;
	font-weight: 500;
	line-height: 56px;
	color: #000000;
}
.sub_small_box > p {
	font-size: 20px;
	font-weight: 400;
	line-height: 32px;
	color: #000000;
	margin-top: 20px;
}
.sub_small_box > .terms_p {
	font-size: 15px;
	font-weight: 300;
	line-height: 30px;
	color: #666666;
	text-align: left;
}
@media only screen and (max-width: 1200px) {
	.sub_small_inner {
		padding: 80px 5%;
		box-sizing: border-box;
	}
	.sub_small_box > h2 {
    font-size: 40px;
    line-height: 42px;
	}
	.sub_small_box > p {
    font-size: 17px;
    line-height: 27px;
    margin-top: 10px;
	}
}
@media only screen and (max-width: 1024px) {
	.sub_small_inner {
		padding: 60px 5%;
	}
}
@media only screen and (max-width: 820px) {
	.sub_small_inner {
    padding: 50px 5%;
	}
	.sub_small_box > h2 {
    font-size: 36px;
    line-height: 40px;
	}
	.sub_small_box > p {
    font-size: 16px;
    line-height: 26px;
    margin-top: 10px;
	}
}
@media only screen and (max-width: 567px) {
	.sub_small_inner {
    padding: 45px 5%;
	}
	.sub_small_box > h2 {
    font-size: 30px;
    line-height: 34px;
	}
	.sub_small_box > p {
    font-size: 15px;
		font-weight: 300;
    line-height: 20px;
    margin-top: 7px;
	}
}
/* -------------------------------- 

Common Input Style

-------------------------------- */
.com_input_area {
	display: block;
	width: 100%;
	max-width: 500px;
	margin: 50px auto 0;
	text-align: center;
}
.com_input {
	width: 100%;
	margin-bottom: 20px;
	box-sizing: border-box;
}
.com_input input {
	width: 100%;
	border: 1px #dddddd solid;
	padding: 0 10px;
	height: 55px;
	font-size: 18px;
	font-weight: 500;
	line-height: 55px;
	text-align: center;
	color: #000000;
	box-sizing: border-box;
}
.com_input input::placeholder {
  color: #aaaaaa;
	font-weight: 300;
}
.com_check {
	width: 100%;
	text-align: left;
}
.com_check > label {
	font-size: 14px;
	font-weight: 300;
	color: #888888;
	vertical-align: middle;
}
.com_check > input[type="checkbox"] {
	margin-right: 5px;
	vertical-align: middle;
}
.com_btn {
	width: 100%;
	margin-top: 35px;
}
.com_btn > a {
	display: block;
	width: 100%;
	height: 60px;
	line-height: 60px;
	background-color: #36b27a;
}
.com_btn > a span {
	font-size: 22px;
	font-weight: 500;
	color: #ffffff;
}
.com_input_area > ul {
	margin-top: 20px;
}
.com_input_area > ul li {
	display: inline-block;
	text-align: center;
	padding: 0 15px;
	border-left: 1px #bfbfbf solid;
	vertical-align: middle;
}
.com_input_area > ul li:first-child {
	border-left: 0;
}
.com_input_area > ul li a {
	font-size: 15px;
	font-weight: 400;
	line-height: 18px;
	color: #000000;
}
@media only screen and (max-width: 359px) {
	.com_input_area > ul li {
    padding: 0 10px;
	}
}
/* -------------------------------- 

Common Line Text Style

-------------------------------- */
.com_line_area {
	display: block;
	width: 100%;
	max-width: 830px;
	margin: 40px auto 0;
	padding-top: 50px;
	text-align: center;
	box-sizing: border-box;
	position: relative;
}
.com_line_area::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background-image: url("../../images_landing/bg/bg_line.png");
}
.com_line_area > p {
	font-size: 15px;
	font-weight: 400;
	line-height: 26px;
	color: #000000;
}
.com_line_area > p a {
	font-weight: 500;
	color: #36b27a;
	text-decoration: underline;
	text-underline-position: under;
}
.com_line_input {
	display: block;
	overflow: hidden;
	width: 100%;
}
.com_line_input > .line_input {
	width: 50%;
	float: left;
	text-align: left;
	margin-bottom: 20px;
	padding: 0 1%;
	box-sizing: border-box;
}
.com_line_input > .line_input_all {
	width: 100%;
	float: left;
	text-align: left;
	margin-bottom: 20px;
	padding: 0 1%;
	box-sizing: border-box;
}
.line_input > input, .line_input_all > input {
	width: 100%;
	border: 1px #dddddd solid;
	padding: 0 13px;
	height: 45px;
	margin-top: 7px;
	font-size: 16px;
	font-weight: 400;
	box-sizing: border-box;
}
.line_input > input::placeholder, .line_input_all > input::placeholder {
	font-weight: 300;
	font-size: 16px;
	color: #aaaaaa;
}
.com_line_input > .line_input_p {
	width: 100%;
	float: left;
	text-align: left;
	margin: -10px 0 20px 0;
	padding: 0 1%;
	box-sizing: border-box;
}
.com_line_input > .line_input_p span {
	font-size: 15px;
	font-weight: 300;
	line-height: 20px;
	color: #be2020;
}
.com_line_input > .line_select_field {
	width: 50%;
	float: left;
	text-align: left;
	margin-bottom: 20px;
	padding: 0 1%;
	box-sizing: border-box;
}
.line_select_field .line_select {
	background: url(../../images_landing/icon/icon_arrow.png) no-repeat 97% center;
	height: 45px;
	overflow: hidden;
	width: 100%;
	border: 1px #dddddd solid;
	margin-top: 7px;
	box-sizing: border-box;
}
.line_select > select {
	width: 100%;
	background: transparent;
	border: none;
	font-size: 16px;
	height: 45px;
	padding: 0 13px;
	box-sizing: border-box;
	color: #000000;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.line_select > select option {
	font-weight: 300;
	color: #aaaaaa;
}
.com_line_input > .line_input_code {
	display: block;
	width: 100%;
	text-align: left;
	padding: 0 1%;
	box-sizing: border-box;
}
.line_input_code > input {
	width: 100%;
	border: 4px #36b27a solid;
	padding: 0 15px;
	height: 65px;
	line-height: 65px;
	font-size: 30px;
	font-weight: 600;
	color: #36b27a;
	text-align: center;
	box-sizing: border-box;
}
.line_input_code > input::placeholder {
	font-size: 30px;
	font-weight: 600;
	color: #96d2b3;
}
.com_line_input > p {
	font-size: 18px;
	font-weight: 500;
	line-height: 20px;
	color: #be2020;
	margin-top: 15px;
}
.com_line_input > .btn_join {
	width: 100%;
	text-align: center;
	margin-top: 45px;
}
.com_line_input > .btn_join a {
	display: block;
	width: 220px;
	height: 60px;
	line-height: 60px;
	background-color: #000000;
	margin: 0 auto;
}
.com_line_input > .btn_join a span {
	font-size: 22px;
	font-weight: 400;
	color: #ffffff;
}
@media only screen and (max-width: 820px) {
	.com_line_area {
		padding-top: 40px;
	}
	.line_input_code > input, .line_input_code > input::placeholder {
    font-size: 26px;
	}
}
@media only screen and (max-width: 567px) {
	.com_line_input > .line_input {
		width: 100%;
		text-align: center;
		margin-bottom: 10px;
	}
	.com_line_input > .line_input_p {
		margin: -5px 0 20px 0;
	}
	.com_line_input > .line_input_p span {
		font-size: 14px;
	}
	.com_line_input > .line_select_field {
		width: 100%;
		margin-bottom: 10px;
	}
	.line_input > input, .line_input_all > input {
		font-size: 15px;
	}
	.line_input > input::placeholder, .line_input_all > input::placeholder {
		font-size: 15px;
	}
	.line_select > select {
		font-size: 15px;
	}
	.line_input_code > input {
		width: 100%;
		border: 3px #36b27a solid;
		padding: 0 15px;
		height: 60px;
		line-height: 60px;
		font-size: 22px;
		font-weight: 600;
		color: #36b27a;
		text-align: center;
		box-sizing: border-box;
	}
	.line_input_code > input::placeholder {
		font-size: 22px;
		font-weight: 600;
		color: #96d2b3;
	}
}
@media only screen and (max-width: 499px) {
	.line_input_code > input {
		font-size: 18px;
	}
	.line_input_code > input::placeholder {
		font-size: 18px;
	}
	.com_line_input > p {
    font-size: 16px;
    margin-top: 10px;
	}
	.com_line_input > .btn_join {
    margin-top: 40px;
	}
	.com_line_input > .btn_join a {
    width: 200px;
    height: 50px;
    line-height: 50px;
	}
	.com_line_input > .btn_join a span {
    font-size: 18px;
	}
}
/* -------------------------------- 

Terms Style

-------------------------------- */
.terms_area {
	display: block;
	width: 100%;
	max-width: 830px;
	margin: 50px auto 0;
	text-align: center;
	border: 1px #dadada solid;
	box-sizing: border-box;
}
.terms_all {
	border-bottom: 1px #f0f0f0 solid;
	padding: 10px;
	text-align: left;
	box-sizing: border-box;
}
.terms_all > input[type="checkbox"] {
	margin-right: 5px;
	vertical-align: middle;
}
.terms_all > span {
	font-size: 15px;
	font-weight: 500;
	line-height: 18px;
	color: #000000;
}
.terms1 {
	padding: 10px;
	text-align: left;
	box-sizing: border-box;
}
.terms1 > input[type="checkbox"] {
	margin-right: 5px;
	vertical-align: middle;
}
.terms1 > span {
	font-size: 15px;
	font-weight: 500;
	line-height: 18px;
	color: #000000;
}
.terms1 > span.point {
	color: #c50505;
	margin-left: 5px;
}
.terms1 > p {
	width: 100%;
	margin-top: 10px;
}
.terms1 > p textarea {
	width: 100%;
	height: 90px;
	border: 1px #eaeaea solid;
	background: #fafafa;
	padding: 10px 25px;
	color: #666666;
	font-size: 13px;
	font-weight: 300;
	line-height: 24px;
	box-sizing: border-box;
	resize: none;
}
/* -------------------------------- 

Footer Style

-------------------------------- */
footer.footer_inner {
	width: 100%;
	background-color: #333333;
	padding: 40px 5%;
	box-sizing: border-box;
}
.footer_inner .footer_box {
	display: block;
	width: 100%;
	max-width: 1200px;
	overflow: hidden;
	margin: 0 auto;
	text-align: center;
	position: relative;
}
.footer_box .footer_top {
	width: 100%;
	border-bottom: 1px rgba(255, 255, 255, 0.3) solid;
	padding: 10px 0;
	text-align: left;
}
.footer_top > ul li {
	display: inline-block;
	margin-right: 40px;
}
.footer_top > ul li a {
	display: block;
	font-size: 15px;
	font-weight: 300;
	line-height: 18px;
	color: rgba(255, 255, 255, 0.7);
}
.footer_top > ul li a:hover {
	color: rgba(255, 255, 255, 1);
}
.footer_box .footer_btm {
	width: 100%;
	margin-top: 30px;
	text-align: left;
	position: relative;
}
.footer_btm .footer_btm_info {
	display: inline-block;
	margin-right: 6%;
}
.footer_btm_info > p.info_name {
	font-size: 18px;
	font-weight: 400;
	line-height: 20px;
	color: #ffffff;
}
.footer_btm_info > p.info_detail {
	font-size: 14px;
	font-weight: 200;
	line-height: 22px;
	margin-top: 15px;
	letter-spacing: 0px;
	color: rgba(255, 255, 255, 0.8);
}
.footer_btm .footer_panmun {
	position: absolute;
	right: 3%;
	top: 20px;
	text-align: center;
}
.footer_panmun .bi_panmun {
	width: 130px;
	height: 19px;
	background: url("../../images_landing/bi/bi_l_footer.png") no-repeat;
	background-size: 100%;
	text-indent: -555555px;
}
.footer_panmun > ul.social_icon {
	display: block;
	margin-top: 15px;
}
.footer_panmun > ul.social_icon li {
	display: inline-block;
	margin: 0 3px;
}
a.facebook {
	display: block;
	width: 25px;
	height: 25px;
	background: url(../../images_landing/icon/icon_f.png) no-repeat;
	background-size: 100%;
	text-indent: -555555px;
}
a.twiter {
	display: block;
	width: 25px;
	height: 25px;
	background: url(../../images_landing/icon/icon_t.png) no-repeat;
	background-size: 100%;
	text-indent: -555555px;
}
a.youtube {
	display: block;
	width: 25px;
	height: 25px;
	background: url(../../images_landing/icon/icon_y.png) no-repeat;
	background-size: 100%;
	text-indent: -555555px;
}
a.blog {
	display: block;
	width: 25px;
	height: 25px;
	background: url(../../images_landing/icon/icon_b.png) no-repeat;
	background-size: 100%;
	text-indent: -555555px;
}

.footer_box_m {
	display: none;
}
@media only screen and (max-width: 978px) {
	footer.footer_inner {
		padding: 40px 5%;
	}
	.footer_inner .footer_box {
		display: none;
	}
	.footer_inner .footer_box_m {
		display: block;
		position: relative;
		text-align: center;
	}
	.footer_box_m .footer_top_m {
    width: 100%;
    border-bottom: 1px rgba(255, 255, 255, 0.3) solid;
    padding: 10px 0;
    text-align: center;
	}
	.footer_top_m > ul li {
    display: inline-block;
    margin: 0 20px;
	}
	.footer_top_m > ul li a {
    display: block;
    font-size: 15px;
    font-weight: 300;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.7);
	}
	.footer_top_m > ul li a:hover {
		color: rgba(255, 255, 255, 1);
	}
	.footer_box_m .footer_btm_m {
    width: 100%;
    text-align: center;
    position: relative;
	}
	.footer_box_m .footer_info_m {
    display: block;
    margin-top: 25px;
	}
	.footer_info_m > p.info_m_name {
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    color: #ffffff;
	}
	.footer_info_m > p.info_m_detail {
    font-size: 14px;
    font-weight: 200;
    line-height: 22px;
    margin-top: 10px;
    letter-spacing: 0px;
    color: rgba(255, 255, 255, 0.8);
	}
	.footer_btm_m .footer_panmun_m {
		display: block;
		text-align: center;
		margin-top: 25px;
	}
	.footer_panmun_m .bi_panmun_m {
		width: 130px;
		height: 19px;
		background: url("../../images_landing/bi/bi_l_footer_m.png") no-repeat;
		background-size: 100%;
		text-indent: -555555px;
		margin: 0 auto;
	}
	.footer_panmun_m > ul.social_icon_m {
		display: block;
		margin: 10px auto 0;
	}
	.footer_panmun_m > ul.social_icon_m li {
		display: inline-block;
		margin: 0 3px;
	}
	a.facebook {
		display: block;
		width: 25px;
		height: 25px;
		background: url(../../images_landing/icon/icon_f_m.png) no-repeat;
		background-size: 100%;
		text-indent: -555555px;
	}
	a.twiter {
		display: block;
		width: 25px;
		height: 25px;
		background: url(../../images_landing/icon/icon_t_m.png) no-repeat;
		background-size: 100%;
		text-indent: -555555px;
	}
	a.youtube {
		display: block;
		width: 25px;
		height: 25px;
		background: url(../../images_landing/icon/icon_y_m.png) no-repeat;
		background-size: 100%;
		text-indent: -555555px;
	}
	a.blog {
		display: block;
		width: 25px;
		height: 25px;
		background: url(../../images_landing/icon/icon_b_m.png) no-repeat;
		background-size: 100%;
		text-indent: -555555px;
	}
}
@media only screen and (max-width: 414px) {
	.footer_top_m > ul li a {
    font-size: 14px;
    line-height: 18px;
	}
	.footer_box_m .footer_info_m {
    display: block;
    margin-top: 20px;
	}
	.footer_info_m > p.info_m_name {
    font-size: 16px;
	}
	.footer_info_m > p.info_m_detail {
    font-size: 13px;
    line-height: 20px;
    margin-top: 5px;
	}
	
}
@media only screen and (max-width: 320px) {
	.footer_info_m > p.info_m_name {
    font-size: 15px;
	}
	.footer_info_m > p.info_m_detail {
    font-size: 12px;
    line-height: 18px;
    margin-top: 5px;
	}
}
/* -------------------------------- 

Page Top Common Style

-------------------------------- */
.topBtn {
  position: fixed;
  right: 90px;
  bottom: 60px;
  width: 60px;
  height: 60px;
  background: #101010;
	z-index: 100;
}
.topBtn span {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	font-size: 0;
}
.topBtn span::after {
	content: "";
  position: relative;
  display: inline-block;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
  margin-top: 20px;
	width: 16px;
	height: 16px;
	background-image: url("../../images_landing/icon/icon_top.png");
	background-repeat: no-repeat;
	background-size: 100%;
}
@media only screen and (max-width: 1023px) {
  .topBtn {
    right: 30px;
  }
}
@media only screen and (max-width: 800px) {
  .topBtn {
    right: 30px;
    bottom: 80px;
    width: 40px;
    height: 40px;
  }
  .topBtn span::after {
    margin-top: 13px;
		width: 14px;
    height: 14px;
		background-image: url("../../images_landing/icon/icon_top_m.png");
  }
}
