﻿/* MAIN VARIABLES FOR CUSTOMIZATION */
/* -------------------------------- */
*, *:before, *:after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
ul li {
	list-style: none;
	text-decoration:none
}
.nav {
	overflow: hidden;
	position: absolute;
	right: 0%;
	bottom: 20%;
	width: auto;
	height: 90px;
	margin-top: -45px;
	background: #fff;
	border-radius: 50px;
	-webkit-transform: translate3d(-50%, 0, 0);
	transform: translate3d(-50%, 0, 0);
	box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
	z-index: 1;
}
.nav__cb {
	z-index: -1000;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	pointer-events: none;
}
.nav__content {
	position: relative;
	width: 90px;
	height: 100%;
	-webkit-transition: width 1s cubic-bezier(0.49, -0.3, 0.68, 1.23);
	transition: width 1s cubic-bezier(0.49, -0.3, 0.68, 1.23);
}
.nav__cb:checked ~ .nav__content {
	-webkit-transition: width 1s cubic-bezier(0.48, 0.43, 0.29, 1.3);
	transition: width 1s cubic-bezier(0.48, 0.43, 0.29, 1.3);
	width: 470px;
}
.nav__items {
	position: relative;
	height: 100%;
	padding-left: 15px;
	padding-top: 15px;
	padding-right: 80px;
	list-style-type: none;
	font-size: 0;
}
.nav__item {
	float: left;
	padding-left: 15px;
	text-align: center;
	color: #484848;
	font-size: 18px;
	line-height: 90px;
	font-weight: bold;
	-webkit-perspective: 1000px;
	perspective: 1000px;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	cursor: pointer;
}
.nav__item:hover {
	color: #1f4dc1;
}
.nav__item:active {
	color: #1f4dc1;
}
.nav__item-text {
	display: block;
	height: 100%;
	-webkit-transform: rotateY(-70deg);
	transform: rotateY(-70deg);
	opacity: 0;
	-webkit-transition: opacity 0.7s, -webkit-transform 0.7s cubic-bezier(0.48, 0.43, 0.7, 2.5);
	transition: opacity 0.7s, -webkit-transform 0.7s cubic-bezier(0.48, 0.43, 0.7, 2.5);
	transition: transform 0.7s cubic-bezier(0.48, 0.43, 0.7, 2.5), opacity 0.7s;
	transition: transform 0.7s cubic-bezier(0.48, 0.43, 0.7, 2.5), opacity 0.7s, -webkit-transform 0.7s cubic-bezier(0.48, 0.43, 0.7, 2.5);
}
.nav__item-text.active {
	color: #1f4dc1;
}
.nav__item-text a.item_text_btn {
	position: relative;
	display: block;
	width: 60px;
	height: 60px;
	font-size: 28px;
	line-height: 55px;
	color: #fff;
	border: 2px solid #4188eb;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	background: #4188eb;
	cursor: pointer;
}
.nav__item-text a.item_text_btn:hover {
	background: #195fc0;
	color: #fff;
	border-color: #195fc0;
}
.nav__item-text a.item_text_btn.btn_01 {
	color: #fff;
	border: 2px solid #5fb003;
	background: #5fb003;
}
.nav__item-text a.item_text_btn.btn_01:hover {
	background: #4a8c00;
	color: #fff;
	border-color: #4a8c00;
}
.nav__cb:checked ~ .nav__content .nav__item-text {
	-webkit-transform: rotateY(0);
	transform: rotateY(0);
	opacity: 1;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.7s cubic-bezier(0.48, 0.43, 0.7, 2.5);
	transition: opacity 0.2s, -webkit-transform 0.7s cubic-bezier(0.48, 0.43, 0.7, 2.5);
	transition: transform 0.7s cubic-bezier(0.48, 0.43, 0.7, 2.5), opacity 0.2s;
	transition: transform 0.7s cubic-bezier(0.48, 0.43, 0.7, 2.5), opacity 0.2s, -webkit-transform 0.7s cubic-bezier(0.48, 0.43, 0.7, 2.5);
}
.nav__item:nth-child(1) .nav__item-text {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}
.nav__cb:checked ~ .nav__content .nav__item:nth-child(1) .nav__item-text {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}
.nav__item:nth-child(2) .nav__item-text {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}
.nav__cb:checked ~ .nav__content .nav__item:nth-child(2) .nav__item-text {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}
.nav__item:nth-child(3) .nav__item-text {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}
.nav__cb:checked ~ .nav__content .nav__item:nth-child(3) .nav__item-text {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}
.nav__item:nth-child(4) .nav__item-text {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}
.nav__cb:checked ~ .nav__content .nav__item:nth-child(4) .nav__item-text {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}
.nav__btn {
	position: absolute;
	right: 0;
	top: 0;
	width: 90px;
	height: 90px;
	padding: 36px 31px;
	cursor: pointer;
}
.nav__btn:before, .nav__btn:after {
	content: "";
	display: block;
	width: 28px;
	height: 4px;
	border-radius: 2px;
	background: #596778;
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-transition: background-color 0.3s, -webkit-transform 1s cubic-bezier(0.48, 0.43, 0.29, 1.3);
	transition: background-color 0.3s, -webkit-transform 1s cubic-bezier(0.48, 0.43, 0.29, 1.3);
	transition: transform 1s cubic-bezier(0.48, 0.43, 0.29, 1.3), background-color 0.3s;
	transition: transform 1s cubic-bezier(0.48, 0.43, 0.29, 1.3), background-color 0.3s, -webkit-transform 1s cubic-bezier(0.48, 0.43, 0.29, 1.3);
}
.nav__btn:before {
	margin-bottom: 10px;
}
.nav__btn:hover:before, .nav__btn:hover:after {
	background: #1f4dc1;
}
.nav__cb:checked ~ .nav__btn:before {
	-webkit-transform: translateY(7px) rotate(-225deg);
	transform: translateY(7px) rotate(-225deg);
}
.nav__cb:checked ~ .nav__btn:after {
	-webkit-transform: translateY(-7px) rotate(225deg);
	transform: translateY(-7px) rotate(225deg);
}
/* ���� �޴�*/
body {
	padding: 0;
	margin: 0;
	background: #fff;
	color: #EEEEEE;
	text-align: center;
}

@media screen and (max-width: 700px) {
body {
	padding: 170px 0 0 0;
	width: 100%
}
}
a {
	z-index: 1;
	color: inherit;
}
.menu-item, .menu-open-button {
	background: #EEEEEE;
	border-radius: 100%;
	width: 80px;
	height: 80px;
	margin-left: -40px;
	position: absolute;
	color: #FFFFFF;
	text-align: center;
	line-height: 80px;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transition: -webkit-transform ease-out 200ms;
	transition: -webkit-transform ease-out 200ms;
	transition: transform ease-out 200ms;
	transition: transform ease-out 200ms, -webkit-transform ease-out 200ms;
}
.menu-open {
	display: none;
}
.lines {
	width: 25px;
	height: 3px;
	background: #596778;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -12.5px;
	margin-top: -1.5px;
	-webkit-transition: -webkit-transform 200ms;
	transition: -webkit-transform 200ms;
	transition: transform 200ms;
	transition: transform 200ms, -webkit-transform 200ms;
}
.line-1 {
	-webkit-transform: translate3d(0, -8px, 0);
	transform: translate3d(0, -8px, 0);
}
.line-2 {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.line-3 {
	-webkit-transform: translate3d(0, 8px, 0);
	transform: translate3d(0, 8px, 0);
}
.menu-open:checked + .menu-open-button .line-1 {
	-webkit-transform: translate3d(0, 0, 0) rotate(45deg);
	transform: translate3d(0, 0, 0) rotate(45deg);
}
.menu-open:checked + .menu-open-button .line-2 {
	-webkit-transform: translate3d(0, 0, 0) scale(0.1, 1);
	transform: translate3d(0, 0, 0) scale(0.1, 1);
}
.menu-open:checked + .menu-open-button .line-3 {
	-webkit-transform: translate3d(0, 0, 0) rotate(-45deg);
	transform: translate3d(0, 0, 0) rotate(-45deg);
}
.menu {
	margin: auto;
	position: absolute;
	left: 18%;
	bottom: 30%;
	text-align: center;
	box-sizing: border-box;
	font-size: 26px;
}
.menu-item:hover {
	background: #EEEEEE;
	color: #3290B1;
}
.menu-item:nth-child(3) {
	-webkit-transition-duration: 180ms;
	transition-duration: 180ms;
}
.menu-item:nth-child(4) {
	-webkit-transition-duration: 180ms;
	transition-duration: 180ms;
}
.menu-item:nth-child(5) {
	-webkit-transition-duration: 180ms;
	transition-duration: 180ms;
}
.menu-item:nth-child(6) {
	-webkit-transition-duration: 180ms;
	transition-duration: 180ms;
}
.menu-item:nth-child(7) {
	-webkit-transition-duration: 180ms;
	transition-duration: 180ms;
}
.menu-item:nth-child(8) {
	-webkit-transition-duration: 180ms;
	transition-duration: 180ms;
}
.menu-item:nth-child(9) {
	-webkit-transition-duration: 180ms;
	transition-duration: 180ms;
}
.menu-open-button {
	z-index: 2;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
	-webkit-transition-duration: 400ms;
	transition-duration: 400ms;
	-webkit-transform: scale(1.1, 1.1) translate3d(0, 0, 0);
	transform: scale(1.1, 1.1) translate3d(0, 0, 0);
	cursor: pointer;
	box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
}
.menu-open-button:hover {
	-webkit-transform: scale(1.2, 1.2) translate3d(0, 0, 0);
	transform: scale(1.2, 1.2) translate3d(0, 0, 0);
}
.menu-open:checked + .menu-open-button {
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
	-webkit-transition-duration: 200ms;
	transition-duration: 200ms;
	-webkit-transform: scale(0.8, 0.8) translate3d(0, 0, 0);
	transform: scale(0.8, 0.8) translate3d(0, 0, 0);
}
.menu-open:checked ~ .menu-item {
	-webkit-transition-timing-function: cubic-bezier(0.935, 0, 0.34, 1.33);
	transition-timing-function: cubic-bezier(0.935, 0, 0.34, 1.33);
}
.menu-open:checked ~ .menu-item:nth-child(3) {
	transition-duration: 180ms;
	-webkit-transition-duration: 180ms;
	-webkit-transform: translate3d(0.08361px, -104.99997px, 0);
	transform: translate3d(0.08361px, -104.99997px, 0);
}
.menu-open:checked ~ .menu-item:nth-child(4) {
	transition-duration: 280ms;
	-webkit-transition-duration: 280ms;
	-webkit-transform: translate3d(90.9466px, -52.47586px, 0);
	transform: translate3d(90.9466px, -52.47586px, 0);
}
.menu-open:checked ~ .menu-item:nth-child(5) {
	transition-duration: 380ms;
	-webkit-transition-duration: 380ms;
	-webkit-transform: translate3d(90.9466px, 52.47586px, 0);
	transform: translate3d(90.9466px, 52.47586px, 0);
}
.menu-open:checked ~ .menu-item:nth-child(6) {
	transition-duration: 480ms;
	-webkit-transition-duration: 480ms;
	-webkit-transform: translate3d(0.08361px, 104.99997px, 0);
	transform: translate3d(0.08361px, 104.99997px, 0);
}
.menu-open:checked ~ .menu-item:nth-child(7) {
	transition-duration: 580ms;
	-webkit-transition-duration: 580ms;
	-webkit-transform: translate3d(-90.86291px, 52.62064px, 0);
	transform: translate3d(-90.86291px, 52.62064px, 0);
}
.menu-open:checked ~ .menu-item:nth-child(8) {
	transition-duration: 680ms;
	-webkit-transition-duration: 680ms;
	-webkit-transform: translate3d(-91.03006px, -52.33095px, 0);
	transform: translate3d(-91.03006px, -52.33095px, 0);
}
.menu-open:checked ~ .menu-item:nth-child(9) {
	transition-duration: 780ms;
	-webkit-transition-duration: 780ms;
	-webkit-transform: translate3d(-0.25084px, -104.9997px, 0);
	transform: translate3d(-0.25084px, -104.9997px, 0);
}
.blue {
	background-color: #669AE1;
	box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
}
.blue:hover {
	color: #669AE1;
	text-shadow: none;
}
.green {
	background-color: #70CC72;
	box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
}
.green:hover {
	color: #70CC72;
	text-shadow: none;
}
.red {
	background-color: #FE4365;
	box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
}
.red:hover {
	color: #FE4365;
	text-shadow: none;
}
.purple {
	background-color: #C49CDE;
	box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
}
.purple:hover {
	color: #C49CDE;
	text-shadow: none;
}
.orange {
	background-color: #FC913A;
	box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
}
.orange:hover {
	color: #FC913A;
	text-shadow: none;
}
.lightblue {
	background-color: #62C2E4;
	box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.14);
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12);
}
.lightblue:hover {
	color: #62C2E4;
	text-shadow: none;
}
/* foot */
.foot {
	border-top: 1px solid #999999;
	position: fixed;
	width: 100%;
	z-index: 10000;
	text-align: left;
	padding: 20px;
	height: 500px;
	font-size: 18px;
	color: #000;
	background: #FFF;
	display: flex;
	justify-content: center; /* align horizontal */
	right: 0;
	left: 0;
	margin-right: auto;
	margin-left: auto;
	bottom: -475px;
}

#cssmenu, #cssmenu ul, #cssmenu li, #cssmenu a {
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	font-weight: bold;
	text-decoration: none;
	line-height: 1;
	font-size: 18px;
	position: relative;
	z-index: 10000;
}
#cssmenu {
	width: 100%;
	position: absolute;
	bottom: 0;
}
#cssmenu a {
	line-height: 1.3;
}
#cssmenu > ul > li:first-child {
	background: #f7f7f7;
}
#cssmenu > ul > li:first-child > a {
	padding: 15px 10px;
	border: none;
	border-top: 1px solid #b2b2b2;
	/*border-bottom: 1px solid #b2b2b2;*/
	text-align: center;
	font-size: 18px;
	font-weight: bold;
}
#cssmenu > ul > li:first-child > a > span {
	padding: 0;
	color: #2c2c2c;
}
#cssmenu > ul > li:first-child:hover {
	background: #f7f7f7;
}
#cssmenu > ul > li {
	background: #f7f7f7;
}
#cssmenu > ul > li:hover {
	background: #f7f7f7;
}
#cssmenu > ul > li > a {
	font-size: .9em;
	display: block;
	color: #ffffff;
	border: 1px solid #c8c8c8;
	border-top: none;
}
#cssmenu > ul > li > a > span {
	display: block;
	padding: 12px 10px;
	text-align: center;
}
#cssmenu > ul > li > a:hover {
	text-decoration: none;
}
#cssmenu > ul > li.active {
	border-bottom: none;
}
#cssmenu > ul > li.has-sub > a span {
	background: url(menu_images/icon_plus.png) 96% center no-repeat;
}
#cssmenu > ul > li.has-sub.active > a span {
	background: url(menu_images/icon_minus.png) 96% center no-repeat;
}
#cssmenu ul ul {
	display: none;
	background: #fff;
}
#cssmenu ul ul li {
	text-align: center;
	padding: 0;
	/*border-bottom: 1px solid #d4d4d4;*/
	border-top: none;
	background: #f7f7f7;
}
#cssmenu ul ul li:last-child {
	border-bottom: none;
}
#cssmenu ul ul a {
	padding: 15px 10px;
	display: block;
	color: #2c2c2c;
	font-size: 14px;
	font-weight: normal;
}
#cssmenu ul ul a:hover {
	color: #1a3194;
	font-weight: bold;
}
/*�ݴ� �޴� */
#navs {
	z-index: 1;
	position: fixed;
	left: 10%;
	bottom: 30%;
	width: 40px;
	height: 40px;
	line-height: 40px;
	list-style-type: none;
	margin: 0;
	padding: 0;
	text-align: center;
	color: #fff;
	cursor: pointer;
}
#navs>li, #navs:after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	background-color: #4ECDC4;
}
#navs>li {
	transition: all .6s;
	-webkit-transition: all .6s;
	-moz-transition: .6s;
}
#navs:after {
	content: attr(data-close);
	z-index: 1;
	border-radius: 50%;
	-webkit-border-radius: 50%;
}
#navs.active:after {
	content: attr(data-open);
}
#navs a {
	width: 40px;
	height: 40px;
	display: inline-block;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	text-decoration: none;
	color: #fff;
	font-size: 0.8em;
}
.btn_btn01 {
	position: absolute;
	z-index: 10000;
	top: 50%;
	left: auto;
	right: 15px;
}
.btn_btn01 button {
	display: block;
	width: 65px;
	height: 65px;
	background: #5b6779;
	border: 1px solid #5b6779;
	font-size: 25px;
	color: #fff;
	font-weight: bold;
	margin-top: 15px;
	cursor: pointer;
	border-radius: 50px;
	-webkit-border-radius: 50px;
}


.btn_btn02 {
    position: relative;
	z-index: 10000;
	text-align: left;
	top: -110px;
    left: -135px;
    border-radius: 100px;
	-webkit-border-radius: 100px;
}
.btn_btn02 a {
	display: block;
	overflow: hidden;
	padding: 10px;
	background-color: rgba(0,0,0,0.50);
	font-size: 22px;
	color: #fff;
	font-weight: bold;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	cursor: pointer;
	text-decoration: none;
}
.btn_btn02 a span.btn_txt01 {
	display: block;	
	overflow: hidden;
	font-size: 22px;
	color: #fff;
	padding: 5px 20px 5px 0px;
}
.btn_btn02 a span.btn_txt02 {
	display: block;
	font-size: 22px;
	color: #fff;
	padding: 3px 0 0 0;
	width : 265px;
}

.btn_btn02 i {
	display: inline-block;
	float: left;	
	padding: 13px;
	background: #fff;
	border: 1px solid #fff;
	font-size: 40px;
	color: #5b6779;
	font-weight: bold;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	cursor: pointer;
	text-decoration: none;
	margin: 0px 10px 0px 0px;
}

.btn_btn03 {
	position: relative;
	z-index: 10000;
	width: 100%;
	text-align: left;
	min-width: 280px;
	top: -90px;
    left: -130px;
    border-radius: 50px;
	-webkit-border-radius: 50px;
}
.btn_btn03 a {
	display: block;
	padding: 5px 30px 5px 5px;
	background-color: rgba(0,0,0,0.50);
	font-size: 22px;
	color: #fff;
	font-weight: bold;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	cursor: pointer;
	text-decoration: none;
	width: 100%;
}

.btn_btn03 i {
	display: inline-block;
	padding: 10px;
	background: #fff;
	border: 1px solid #fff;
	font-size: 28px;
	color: #5b6779;
	font-weight: bold;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	cursor: pointer;
	text-decoration: none;
	margin-right: 10px;
}

.time_pop {
	position: absolute;
	z-index: 10000;
	top: 50%;
	left: 25%;
	right: auto;
	background: #fff;
	border: 1px solid #d5d7d8;
	border-radius: 3px;
	-webkit-border-radius: 3px;
}
.time_pop ul {
	font-size: 24px;
	margin: 10px;
	padding: 0 20px 0 0;
	float: left;
}
.time_pop ul:last-child {
	border-right: none;
}
.time_pop ul li {
	padding: 3px 15px;
	list-style: none;
	text-align: left;
	margin-top: 5px;
	color: #323232;
	font-weight: bold;
	margin: 10px
}
.time_pop ul li span {
	font-size: 24px;
	color: #323232;
	padding-left: 15px;
	font-weight: normal;
}
.time_pop a {
	display: block;
	padding: 5px 15px 5px 5px;
	font-size: 16px;
	color: #fff;
	font-weight: bold;
	cursor: pointer;
	text-decoration: none;
}
.time_pop a:hover {
	color: #1377bd;
}
.time_pop_line03 {
	position: relative;
	background: #e88200;
	border-bottom: 1px solid #c77000;
}
.time_pop .next {
	position: absolute;
	top: 15px;
	right: 5px;
}
.time_pop .next span a {
	font-size: 26px;
	color: #fff;
}
.time_pop .pre {
	position: absolute;
	top: 15px;
	left: 15px;
}
.time_pop .pre span a {
	font-size: 26px;
	color: #fff;
}
.time_pop .subway_line {
	line-height: 70px;
	height: 70px;
	font-size: 32px;
	font-weight: bold;
	color: #fff;
	position: relative;
	border-bottom: 1px solid #35a344;
	background: #35a344;
	text-align: center;
}
.time_pop .subway_line span {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 50px;
	line-height: 50px;
	color: #35a344;
	font-size: 34px;
	font-weight: bold;
	border-radius: 50px;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	background: #fff;
	cursor: pointer;
	text-decoration: none;
	margin-right: 3px;
	margin-top: 0px;
}
.btn_close {
	position: relative;
}
.btn_close button {
	display: block;
	background: #e9e9e9;
	height: 40px;
	width: 100%;
	line-height:30px;
	border: 1px solid #e9e9e9;
	font-size: 26px;
	text-align: center;
	color: #515151;
	font-weight: bold;
	padding: 5px;
	letter-spacing: -1px;
}


.subway_line_section {
	position: absolute;
	z-index: 10000;
	top: 4%;
    left: 20%;
	right: 20%;
	text-align: left;
}

.subway_box_line {
	display: block;
	padding: 15px 170px 15px 15px;
	background: #fff;
	font-size: 56px;
	line-height: 56px;
	color: #0b8d1d;
	font-weight: bold;
	border: 10px solid #0b8d1d;
	border-radius: 90px;
	-webkit-border-radius: 90px;
}
.subway_box_line01 {
	position: relative;
	display: inline-block;
	width: 100px;
	height: 100px;
	color: #fff;
	font-size: 32px;
	font-weight: bold;
	line-height: 100px;
	text-align:center;
	border-radius: 50px;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	background: #0b8d1d;
	letter-spacing: -1px;
	margin-right: 160px;
}


.foot_line {
	position: absolute;
	width: 100%;
	background: #e1e1e1;
	border-top: 1px solid #c2c2c2;
	bottom: 0;
	padding: 5px 15px 15px 15px;
	touch-action: none;
}
.foot_line ul li {
	position: relative;
	float: left;
}
.foot_line .btn_close {
	position: relative;
	text-align: center;
	font-size: 56px;
	color: #404040;
	margin: 15px 0 10px 0;
}
.line_exit {
	position: relative;
	display: block;
	text-align: center;	
	margin-right: 55px;
	margin-top: 10px;	
}

.line_exit_txt:last-child{
	margin-right: none;	
}
.line_exit_txt img {
	text-align:center;
}

.exit_section {
	width:100%; 
	float:left; 
	margin-bottom: 15px;
}
.exit_section ul li {
	float: left; 
	width: 150px;
	padding: 25px 0; 
	display: block;
	color: #474d5b; 
	text-align: center;
}
.exit_section ul li a {
	text-decoration: none;
}
.line_exit_txt  {
	width: 100%;
	font-size:22px;
	text-align:center;
	display:block;
	color: #2d2d2d;
	font-weight: bold;
	letter-spacing: -1px;
	margin-top: 10px;	
}
.subway_section {
	width:100%; 
	float:left; 
	margin: 15px 15px;
}
.subway_section ul li {
	float: left; 
	width: 130px;
	padding: 25px 0; 
	display: block;
	color: #474d5b; 
	text-align: center;
}
.subway_section ul li a {
	text-decoration: none;
}
.line_subway_txt  {
	width: 100%;
	font-size:20px;
	text-align:center;
	display:block;
	color: #2d2d2d;
	font-weight: bold;
	letter-spacing: -1px;
	margin-top: 8px;	
}


.btn_line {
	position: relative;
	display: inline-block;
	width: 80px;
	height: 80px;
	color: #fff;
	font-size: 36px;
	font-weight: bold;
	line-height: 80px;
	border-radius: 50px;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	background: #163191;
	cursor: pointer;
	text-decoration: none;
}
.line01 {
	background: #163191;
}
.line01 {
	background: #163191;
}
.line02 {
	background: #35a344;
}
.line03 {
	background: #e88200;
}
.line04 {
	background: #38a6e1;
}
.line05 {
	background: #9c4a9d;
}
.line06 {
	background: #ca8f00;
}
.line07 {
	background: #637531;
}
.line08 {
	background: #df4c71;
}
.line09 {
	background: #ba9300;
}
.line10 {
	font-size: 22px;
	letter-spacing: -1px;
	background: #6c97e1;
}
.line11 {
	font-size: 22px;
	letter-spacing: -1px;
	background: #f59700;
}
.line12 {
	font-size: 22px;
	letter-spacing: -1px;
	background: #f7d100;
}
.line13 {
	font-size: 22px;
	letter-spacing: -1px;
	background: #c41e30;
}
.line14 {
	font-size: 22px;
	letter-spacing: -1px;
	background: #81c09f;
}
.line15 {
	font-size: 22px;
	letter-spacing: -1px;
	background: #2e8fa1;
}
.line16 {
	font-size: 22px;
	letter-spacing: -1px;
	background: #51c7a6;
}
.line17 {
	font-size: 22px;
	letter-spacing: -1px;
	background: #f5b800;
}
.line18 {
	font-size: 22px;
	letter-spacing: -1px;
	background: #f0b900;
}
.line19 {
	font-size: 22px;
	letter-spacing: -1px;
	background: #60ab26;
}
.line20 {
	font-size: 22px;
	letter-spacing: -1px;
	background: #1b4fa9;
}
.line21 {
	font-size: 22px;
	letter-spacing: -1px;
	background: #b7b7b7;
}
.line22 {
	font-size: 22px;
	letter-spacing: -1px;
	background: #96e804;
}
/* foot */
.bus_list {
	position: absolute;
	width: 100%;
	background: #fff;
	color: #323232;
	border-top: 1px solid #96999d;
	bottom: 0;
	padding-top: 10px;
	height: 100%;
}
.bus_list ul {
	font-size: 16px;
	padding: 20px 30px;
	line-height: 23px;
	border-bottom: 1px solid #d5d7d8;
}
.bus_list ul li {
	list-style: none;
	text-align: left;
}
.bus_list ul li:last-child {
	border-bottom: none;
}
.bus_list .left {
	color: #323232;
	font-size: 22px;
	letter-spacing: -1px;
	margin-top: 15px;
}
.bus_list span.txt01 {
	font-size: 24px;
	color: #323232;
	margin-top: 10px;
	float: right;
}
.bus_list span.bus_blue_txt {
	font-size: 32px;
	color: #fff;
	background: #2a51c7;
    padding:4px 13px 6px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;	
	margin-right: 15px;
	letter-spacing: -1px;
}
.bus_list span.bus_green_txt {
	font-size: 32px;
	color: #fff;
	background: #40aa1f;
    padding:4px 13px 6px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;	
	margin-right: 15px;
	letter-spacing: -1px;
}
.bus_list span.bus_red_txt {
	font-size: 32px;
	color: #fff;
	background: #d4161a;
    padding:4px 13px 6px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;	
	margin-right: 15px;
	letter-spacing: -1px;
}

.bus_list .bus_blue {
	font-size: 48px;
	color: #2a51c7;
	font-weight: bold;
	text-decoration: none;
	letter-spacing: -1px;
}
.bus_list .bus_green {
	font-size: 48px;
	color: #40aa1f;
	font-weight: bold;
	text-decoration: none;
	letter-spacing: -1px;
}
.bus_list .bus_red {
	font-size: 48px;
	color: #d4161a;
	font-weight: bold;
	text-decoration: none;
	letter-spacing: -1px;
}
.bus_list ul li span.bus_txt {
	font-size: 14px;
	color: #212123;
	font-weight: bold;
	margin: 0 10px;
	text-align: center;
}
.bus_list ul li span.bus_txt_red {
	font-size: 14px;
	color: #ff2514;
	font-weight: bold;
	margin: 0 10px;
	text-align: center;
}
