/******************************************************************
	Fonts
******************************************************************/
@import url(http://fonts.googleapis.com/earlyaccess/sawarabimincho.css);
									
/******************************************************************
	This is the CSS Reset
******************************************************************/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
html, body {
	width: 100%;
	min-width: 960px;
	height: 100%;
	letter-spacing: 0.025em;
	-webkit-font-smoothing: subpixel-antialiased;
}

/******************************************************************
	Text Selection Styles
******************************************************************/
::selection {
	background: #6093e7;
	color: #fff;
}
::-moz-selection {
	background: #6093e7;
	color: #fff;
}
::-webkit-selection {
	background: #6093e7;
	color: #fff;
}
a {
	outline: none;
}

/******************************************************************
	General
******************************************************************/								
a {
	font-family: "Sawarabi Mincho", Verdana, Arial, sans-serif;
	text-decoration: none;
	font-size: 8pt;
	color: #616161;
}
a:hover {
	color: #6093e7;
}
b {
	font-weight: bold;
}
p {
	font-family: "Sawarabi Mincho", Verdana, Arial, sans-serif;
	line-height: 1.8em;
	color: #848484;
	font-size: 16px;
	margin: 1em 0;
}
h1 {
	font-family: "Sawarabi Mincho", Verdana, Arial, sans-serif;
	line-height: 1.6em;
	color: #454544;
	text-decoration: none;
	font-size: 40px;
}
h2 {
	font-family: "Sawarabi Mincho", Verdana, Arial, sans-serif;
	line-height: 1.6em;
	color: #454544;
	text-decoration: none;
	font-size: 20px;
}
h3 {
	font-family: "Sawarabi Mincho", Verdana, Arial, sans-serif;
	line-height: 1.6em;
	color: #454544;
	text-decoration: none;
	font-size: 18px;
}
h4 {
	font-family: "Sawarabi Mincho", Verdana, Arial, sans-serif;
	line-height: 1.6em;
	color: #454544;
	text-decoration: none;
	font-size: 16px;
}
h5 {
	font-family: "Sawarabi Mincho", Verdana, Arial, sans-serif;
	line-height: 1.6em;
	color: #454544;
	text-decoration: none;
	font-size: 14px;
}
h6 {
	font-family: "Sawarabi Mincho", Verdana, Arial, sans-serif;
	line-height: 1.6em;
	color: #454544;
	text-decoration: none;
	font-size: 12px;
}
.hidden {
	display: none;
}
.block {
	display: block;
}
.left {
	float: left;
}
.right {
	float: right;
}
.clear {
	clear: both;
}

/******************************************************************
	Colors
******************************************************************/
.white {
	color: #FFF;
}
.color {
	color: #6093e7;
}
.dark-gray {
	color: #4b4b4b;
}
.mid-gray {
	color: #ababab;
}
.light-gray {
	color: #cfcfcf;
}

/******************************************************************
	Main
******************************************************************/
.content {
	max-width: 960px;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}
.content.sidebar {
	width: 659px;
	float: left;
	margin-top: 40px;
	border-right: 1px solid #e7e7e7;
}
.sidebar {
	width: 300px;
	float: right;
}
blockquote {
	font-family: "Sawarabi Mincho", Verdana, Arial, sans-serif;
	font-size: 28px;
	line-height: 60px;
	width: 100%;
	background-color: #f6f6f6;
	height: 100px;
	text-align: center;
	padding-top: 40px;
	color: #616161;
	font-weight: 300;
	font-style: italic;
}
blockquote:before {
	content: '"';
	font-weight: bold;
	font-size: 36px;
}
blockquote:after {
	content: '"';
	font-weight: bold;
	font-size: 36px;
}
div.pagetitle {
	width: 100%;
	background-color: #6093e7;
	height: 120px;
}
div.pagetitle h1 {
	line-height: 120px;
	color: #FFF;
	text-align: center;
}
p.main {
	font-size: 15px;
	text-align: center;
	margin: 50px auto;
	font-weight: 400;
}
div.section.divider {
	width: 100%;
	height: 40px;
	border-top: 1px solid #6093e7;
	text-align: center;
	margin-top: 100px;
	margin-bottom: 40px;
}
div.section.divider.single {
	border-top: 1px solid #6093e7;
	margin-top: 150px;
}
div.section.divider h2 {
	font-weight: 400;
	color: #6093e7;
	background-color: #FFF;
	margin-top: -20px;
	width: 300px;
	margin-left: auto;
	margin-right: auto;
	font-size: 24px;
	text-transform: uppercase;
}
a.scroll {
	width: 100%;
	display: block;
}
div.icon {
	font-size: 80px;
	color: #FFF;
}
.front div.icon {
	line-height: 210px;
	text-align: center;
}

/******************************************************************
	Hero Images
******************************************************************/
.hero {
	width: 100%;
	height: 100%;
}
.home.hero {
	background-image: url(../img/home_bg.jpg);
	background-size: cover;
}
.overlay {
	background-image: url(../img/overlay_light_diagonal.png);
	position: absolute;
	width: 100%;
	height: 100%;
	background-repeat: repeat;
}
.herowrapper {
	position: absolute;
	top: 50%;
	height: 40px;
	margin-top: -40px;
	width: 100%;
}
.herowrapper h1 {
	text-align: center;
	color: #FFF;
	font-size: 40px;
	font-weight: 300;
	background: rgba(0,0,0,0.3);
}
.herowrapper b {
	background-color: rgba(255, 255, 255, 0.8);
	padding: 0px 5px;
}
a.scrolldown {
	display: block;
	width: 100%;
	height: 50px;
	position: absolute;
	top: 70%;
	cursor: pointer;
	text-shadow: #000 2px 2px 2px;
}
.scrolldown .icon {
	font-size: 20px;
	text-align: center;
}
.scrolldown h3 {
	text-align: center;
	font-size: 15px;
	text-transform: uppercase;
	color: #FFF;
	font-weight: 300;
}

/******************************************************************
	Menu
******************************************************************/
.menubar {
	position: fixed;
	top: 0px;
	height: 80px;
	width: 100%;
	z-index: 9999;
	background-color: #FFF;
	margin-top: 0px;
	-moz-box-shadow: 0 2px 2px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 2px 2px rgba(0,0,0,0.2);
	box-shadow: 0 2px 2px rgba(0,0,0,0.2);
}
.menubar.alt {
	background-color: #f6f6f6;
}
a.logo {
	float: left;
	display: block;
	width: 150px;
	height: 30px;
	background-image: url(../img/logo.png);
	margin: 27px 0px 0px 40px;
}
ul.mainmenu {
	font-family: "Sawarabi Mincho", Verdana, Arial, sans-serif;
	float: right;
	margin: 0px 40px 0px 0px;
	text-transform: uppercase;
	font-weight: 300;
}
ul.mainmenu li {
	cursor: pointer;
	display: inline-block;
	padding: 30px 10px 31px 10px;
}
ul.mainmenu li a {
	font-size: 12px;
	color: #838282;
	-webkit-transition: color 400ms ease;
	-moz-transition: color 400ms ease;
	-o-transition: color 400ms ease;
	-ms-transition: color 400ms ease;
	transition: color 400ms ease;
}
ul.mainmenu li:hover a {
	color: #6093e7;
}
ul.mainmenu li.active a {
	font-weight: bold;
	color: #6093e7;
}

/******************************************************************
	Footer
******************************************************************/
footer.main {
	height: 195px;
	width: 100%;
	margin-top: 60px;
	text-align: center;
}
footer.main div.twitter {
	width: 100%;
	padding-bottom: 30px;
	background-color: #343434;
}
footer.main h5.twitter {
	color: #FFF;
	line-height: 90px;
	background-color: #343434;
}
footer.main h6.copyright {
	color: #FFF;
	line-height: 50px;
	background-color: #272727;
}


/******************************************************************
	message
******************************************************************/
.message{}
.message img{
	max-width: 100%;
	height: auto;
}

/******************************************************************
	merit
******************************************************************/
.merit{}
.merit h3 span{
	color: #6093e7;
	margin-left: 20px;
}
.merit ul li{
	overflow: hidden;
}
.merit ul li div.textBox{
	width: 70%;
	float: right;
	margin: 40px 0;
}
.merit ul li div.imgBox{
	width: 25%;
	margin-bottom: 40px;
	float: left;
	text-align: center;
	background: #6093e7;
	border-radius: 100%;
}
.merit ul li div.imgBox img{
	width: 100%;
	height: auto;
}

/******************************************************************
	outline
******************************************************************/
.outline{
	font-family: "Sawarabi Mincho", Verdana, Arial, sans-serif;
}
.outline h3{
	font-size: 22px;
	font-weight: 600;
	text-align: center;
	margin: 1em 0;
}
.outline table {
	width: 100%;
	margin:0 auto 40px auto;
	border-collapse: separate;
	border-top: 1px solid #ccc;

}
.outline table th {
	width: 50%;
	line-height: 1.8em;
	font-size: 16px;
	text-align: center;
	border-bottom: 1px solid #ccc;

}
.outline table td {
	width: 50%;
	line-height: 1.8em;
	color: #848484;
	font-size: 16px;
	padding: 10px 0;
	border-bottom: 1px solid #ccc;

}
.outline iframe{
	width: 100%;
	height: 300px;
}

/******************************************************************
	Contact
******************************************************************/
.contact {
	text-align: center;
	font-family: "Sawarabi Mincho", Verdana, Arial, sans-serif;
	line-height: 1.8em;
	color: #848484;
	font-size: 16px;
}
.contact p.checkcont{
	background: #f1f1f1;
	border-radius: 3px;
	line-height: 50px;
	min-height: 50px;
	font-size: 18px;
	width: 500px;
	margin: 10px auto;
	text-align: left;
	padding: 10px;

}

.contact p a{
	font-size: 16px;
	color: #6093e7;
	font-weight: bold;
	-webkit-transition: color 400ms ease;
	-moz-transition: color 400ms ease;
	-o-transition: color 400ms ease;
	-ms-transition: color 400ms ease;
	transition: color 400ms ease;
}
.contact p a:hover{
	color: #cfcfcf;
}
.endofform{
	clear: both;
}
.endofform input{
	line-height: 50px;
	font-size: 18px;
	width: 200px;
	height: 50px;
	border: none;
	color: #fff;
	background: #4b4b4b;
	outline: none;
	border-radius: 3px;
	text-align: center;
	-webkit-transition: background 400ms ease;
	-moz-transition: background 400ms ease;
	-o-transition: background 400ms ease;
	-ms-transition: background 400ms ease;
	transition: background 400ms ease;

}
.endofform input:hover{
	cursor: pointer;
	background: #ababab;
}
.endofform ul{
	width: 500px;
	margin: 40px auto 0 auto;
}
.endofform ul li{
	width: 50%;
	float: left;
	text-align: center;
}
input.text01 {
	line-height: 50px;
	font-size: 18px;
	width: 500px;
	height: 50px;
	border: 1px solid #6093e7;
	outline: none;
	border-radius: 3px;
	margin-bottom: 20px;
	text-align: left;
	padding: 10px;
}
textarea {
	line-height: 50px;
	height: 200px;
	font-size: 18px;
	width: 500px;
	border: 1px solid #6093e7;
	outline: none;
	border-radius: 3px;
	margin-bottom: 20px;
	text-align: left;
	padding: 10px;
}


/******************************************************************
	Footer
******************************************************************/
.footer {
	width: 100%;
	margin-top: 50px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	background-color: #6093e7;
}
.footer h6 {
	line-height: 50px;
	color: #FFF;
}

