@charset "utf-8";
/* CSS Document */
/*//sub nav
/////////////////////////////////////////////*/
#sub_nav {
	width: 100%;
	background: #000;
	padding: 5px 0;
}
#sub_nav ul {
	width: 100%;
	display: table;
}
#sub_nav ul li {
	width: 20%;
	text-align: center;
	display: table-cell;
	
}
#sub_nav ul li br {
	display: none;
}
#sub_nav ul li a {
	display: block;
	color: #fff;
	font-size: 1.3em;
	padding: 10px 0;
}
#sub_nav ul li a:hover {
	color: #fce721;
	-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all  0.5s ease;
}
#nLand {
	background: url(../imgs/common/land_icon.png) no-repeat left 30% center;
}
#nExample {
	background: url(../imgs/common/house_icon.png) no-repeat left 30% center;
}
#nLand,
#nExample {
	background-size: auto 80%;
}
@media screen and (max-width:599px) {
	#sub_nav ul li a {
		font-size: 0.9em;
		padding: 2.5em 5px 3px;
		line-height: 1;
	}
	#sub_nav ul li br {
		display: block;
	}
	#sub_nav ul li {
		border-right: 1px solid #4F4F4F;
		box-shadow: 1px 0px 1px -1px #ccc;
	}
	#sub_nav ul li:last-child {
		border-right: none;
	}
	#nLand,
  #nExample {
    background-position: top 0.2em center;
	}
  #nLand,
  #nExample {
    background-size: 25% auto;
  }
}
/*/////////////////////////////////////////////
main
/////////////////////////////////////////////*/
#main {
  min-height: 400px;
  padding: 20px;
}
#main ul {
  width: 100%;
  font-size: 0;
}
#main ul li {
  width: 50%;
  display: inline-block;
  text-align: left;
  vertical-align: top;
  margin-bottom: 10px;
}
#main ul li:nth-of-type(2n) {
  text-align: right;
}
@media screen and (max-width:599px) {
  #main {
    min-height: inherit;
    padding: 10px;
  }
  #main ul li {
    width: 100%;
    display: block;
  }
}
/*/////////////////////////////////////////////
Coming Soon
/////////////////////////////////////////////*/
h3 {
  width: 80%;
  padding: 100px;
  border: 1px solid;
  margin: 0 auto;
  text-align: center;
  font-size: 2rem;
  font-family: Arial, Helvetica, "sans-serif";
}

@media screen and (max-width:599px) {
	h3 {
    width: 90%;
    padding: 80px 10px;
  }
}