@charset "utf-8";
/* CSS Document */

* {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
*:before, *:after {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/************************************************************************************
HTML,BODY
*************************************************************************************/
html,body {
	width:100%;
	height:100%;
	min-height:100%; /* html fit brows */
}
body {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
	text-align:center;
	font-size:14px;
	font-family:'メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック','sans-serif';
	line-height:150%;
	color:#222222;
}

/************************************************************************************
CLEARFIX
*************************************************************************************/
.clearfix:after {
	content:".";
	display:block;
	height:0;
	clear: both;
	visibility:hidden;
}
.clearfix {/* for IE<8 */
	zoom:1;
}

/************************************************************************************
FLOAT
*************************************************************************************/
.floatleft {
	float:left;
}
.floatright {
	float:right;
}
.floatnone {
	float:none;
}

/************************************************************************************
LINK
*************************************************************************************/
a {
	white-space:nowrap;
}
a:link {
	color:#222222;
	text-decoration: none;
	outline: none;
}
a:visited {
	color:#222222;
	text-decoration:none;
}
a:hover {
	color:#52a9de;
	text-decoration: none;
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	-ms-transition-duration: 0.5s;
	transition-duration: 0.5s;
}
a:active, a:focus{
	outline:none;
}
.alphaover a:hover img {
	opacity:0.8;
	filter:alpha(opacity=80);
	-moz-opacity:0.8;
}
.none{
	opacity:0.4;
	filter:alpha(opacity=40);
	-moz-opacity:0.4;
}
a.ghostButton {
	width:240px;
	color:#52a9de;
	text-align:center;
	line-height:30px;
	font-family:'メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック','sans-serif';
	padding:10px 30px;
	margin:24px auto 0;
	background-color:transparent;
	border:2px #52a9de solid;
	border-radius:1px;
	box-shadow:0px 0px 6px 1px rgba(0,0,0,0.1);
	cursor:pointer;
	transition: all 0.4s;
	display:block;
	opacity:1.0;
	filter:alpha(opacity=100);
	-moz-opacity:1.0;
}
a.ghostButton:hover {
	opacity:0.7;
	filter:alpha(opacity=70);
	-moz-opacity:0.7;
}
/************************************************************************************
TEXT
*************************************************************************************/
h2 {
    font-size:18px;
	text-align:left;
	line-height:250%;
	border-top:#222222 1px solid;
	border-bottom:#222222 1px solid;
	padding-left:10px;	
}

/************************************************************************************
INPUT,TEXTAREA
*************************************************************************************/
input[type="text"], input[type="password"], input[type="search"], isindex{
	box-shadow:0px 0px 6px 1px rgba(0,0,0,0.1);
	font-family:'メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック','sans-serif';
	-webkit-appearance:textfield;
	padding:2px;
	background-color:#FFF;
	border:1px solid #636363;
	border-image:initial;
	-webkit-rtl-ordering:logical;
	-webkit-user-select:text;
	cursor:auto;
}
input[type="text"]:focus, input[type="password"]:focus {
	outline:2px #52a9de solid;
	box-shadow:none;
}
textarea {
	box-shadow:0px 0px 6px 1px rgba(0,0,0,0.1);
	font-family:'メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック','sans-serif';
	-webkit-appearance:textarea;
	background-color:#FFF;
	border:1px solid #636363;
	border-image:initial;
	-webkit-rtl-ordering:logical;
	-webkit-user-select:text;
	-webkit-box-orient:vertical;
	resize:auto;
	cursor:auto;
	padding:2px;
	white-space:pre-wrap;
	word-wrap:break-word;
}
textarea:focus {
	outline:2px #52a9de solid;
	box-shadow:0px 0px 6px 1px rgba(0,0,0,0.1);
}
input[type="button"], input[type="submit"], input[type="reset"], input[type="file"]::-webkit-file-upload-button, button {
	border:none;
}


/************************************************************************************
BUTTON/SUBMIT/RESET
*************************************************************************************/
button, input[type="submit"], input[type="reset"], input[type="button"] {
	color:#FFFFFF;
	text-align:center !important;
	line-height:30px;
	font-family:'メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック','sans-serif';
	padding:4px 15px;
	margin-bottom:15px;
	background-color:#52a9de;
	border:none;
	border-radius:3px;
	box-shadow:0px 0px 6px 1px rgba(0,0,0,0.1);
	cursor:pointer;
	transition: all 0.3s;
}

button:hover, input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover {
	opacity:0.8;
	filter:alpha(opacity=80);
	-moz-opacity:0.8;
}
button:active, input[type="submit"]:active, input[type="reset"]:active, input[type="button"]:active {
	outline:none;
	box-shadow:0px 0px 6px 1px rgba(0,0,0,0.2) inset;
}
button:focus, input[type="submit"]:focus, input[type="reset"]:focus, input[type="button"]:focus {
	border:none;
	outline:none;
}

/************************************************************************************
CONTAINER
*************************************************************************************/
#container {
	width:100%;
	height:100%;
	min-height:100%; /* html fit brows */
	margin:0 auto;
}

/************************************************************************************
CATCHY
*************************************************************************************/
#catchy img {
	width:100%;
	min-width:960px;
	height:auto;
	margin-top:66px;
}

/************************************************************************************
PAGE-TOP
*************************************************************************************/
#pageTop {
	width:50px;
	height:50px;
    position:fixed;
	right:20px;
	bottom:55px;
	z-index:9999;
}
#pageTop a {
	width:50px;
	height:50px;
	display:block;
	color:#FFFFFF;
	line-height:50px;
	background-color:#52a9de;
	filter: alpha(opacity=50);
	-moz-opacity:0.5;
	opacity:0.5;
    display:block;
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	-ms-transition-duration: 0.5s;
	transition-duration: 0.5s;
}
#pageTop a:hover {
	background-color:#222222;
	filter:alpha(opacity=100);
	-moz-opacity:1.0;
	opacity:1.0;
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	-ms-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

/************************************************************************************
HEADER
*************************************************************************************/
#header {
	width:100%;
	min-width:960px;
	height:66px;
	background-color:#FFFFFF;
	position:fixed;
	
	top:0;
	left:0;
}
#logo {
	padding-top:13px;
	padding-left:20px;
	float:left;
}
#gNav {
	padding-top:20px;
	padding-right:20px;
	float:right;
}
#gNav ul {
	margin-right:-40px;
}
#gNav ul li {
	margin-right:40px;
	float:left;
}
#gNav ul li a {
	display:block;
	padding-bottom:20px;
}
a.current {
	color:#52a9de;
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	-ms-transition-duration: 0.5s;
	transition-duration: 0.5s;
}
#gNav ul li a:hover, #gNav ul li a.current {
	border-bottom:5px solid #52a9de;
	-webkit-transition-duration: 0.5;
	-moz-transition-duration: 0.5;
	-o-transition-duration: 0.5;
	-ms-transition-duration: 0.5;
	transition-duration: 0.5s;
}

/************************************************************************************
CONTENTS
*************************************************************************************/
#main {
	width:960px;
	height:auto;
	margin:20px auto ;
	overflow:hidden;
}
#col3 {
	width:975px;
	margin-right:-15px;
	margin-bottom:20px;
	overflow:hidden;
}
#news, #about, #business {
	width:310px;
	text-align:left;
	margin-right:15px;
	float:left;
}

/************************************************************************************
NEWS
*************************************************************************************/
#news dl {
	height:243px;
	padding:15px;
	margin-top:10px;
	overflow-y:scroll;
}
#news dl dt {
	font-size:12px;
}
#news dl dd {
	border-bottom:#ededed dotted 1px;
	padding-bottom:5px;
	margin-bottom:10px;
}
#news dl dd a {
	text-decoration:underline;
}

/************************************************************************************
ABOUT
*************************************************************************************/
#about p {
	padding:15px;
	margin-top:10px;
}

/************************************************************************************
BUSINESS
*************************************************************************************/
#business ul {
	padding:15px;
	margin-top:10px;
}
#business ul li {
	list-style:circle inside;
}
#business p {
	text-align:right;
	padding:0 15px 20px;
}

/************************************************************************************
LOCATION
*************************************************************************************/
#location {
	width:100%;
	min-width:960px;
	height:auto;
	text-align:left;
	background-color:#ededed;
	padding-top:20px;
	padding-bottom:20px;
}
#access {
	width:960px;
	margin:0 auto;
}
#access h2 {
	margin-bottom:20px;
}
#access iframe {
	margin-bottom:20px;
}
#col2Wrap {
	width:800px;
	margin:0 auto;
	
}
#col2 {
	width:820px;
	margin-right:-20px;
	overflow:hidden;
}
.col_1of2 {
	width:390px;
	height:174px;
	padding:15px 30px 30px;
	background-color:#FFFFFF;
	margin-right:20px;
	margin-bottom:20px;
	float:left;
}
.col_1of2 h3 {
	font-size:16px;
	text-align:center !important;
	background-color:#52a9de;
	line-height:215%;
	color:#FFFFFF;
}
.col_1of2 p {
	text-align:left;
	/*padding-top:35px;*/
	padding:10px 15px;
}

#add, #phone, #fax, #mail {
	background-position:center;
	background-repeat:no-repeat;
}
#add {
	background-image:url(../images/common/address.png);
}
#phone {
	background-image:url(../images/common/phone.png);
}
#fax {
	background-image:url(../images/common/fax.png);
}
#mail {
	background-image:url(../images/common/mail.png);
}
#location a.ghostButton {
	color:#636363;
	margin-bottom:20px;
	border:2px #636363 solid;
}

/************************************************************************************
ABOUTWRAP
*************************************************************************************/
#aboutWrap {
	padding-bottom:30px;
}	
#aboutWrap table {
	width:870px;
	margin:0 auto;
}
#aboutWrap caption {
	padding:10px;
	color:#FFFFFF;
	font-weight:bold;
	text-align:center;
	line-height:16px;
	background-color:#636363;
	margin:15px 0;
	
}
#aboutWrap th {
	padding:10px;
	color:#FFFFFF;
	line-height:100%;
	text-align:center;
	vertical-align:middle;
	background-color:#52a9de;
}
#aboutWrap td {
	padding:10px;
	font-size:13px;
	line-height:180%;
}
#aboutWrap td a {
	color:#52a9de;
	text-decoration:underline;
}
#aboutWrap td a:hover {
	text-decoration:none;
}
#aboutWrap a.ghostButton {
	color:#636363;
	margin-left:10px;
	margin-right:10px;
	border:2px #636363 solid;
	display: inline-block;
}

/************************************************************************************
WORKSWRAP
*************************************************************************************/
#worksWrap {
	padding-bottom:30px;
	
}
#worksWrap h3 {
	color:#FFFFFF;
	font-size:16px;
	line-height:230%;
	text-align:left;
	background-color:#52a9de;
	padding-left:10px;
	margin:15px 0;
}
#worksWrap p {
	text-align:left;
	padding:5px 20px 20px;
}
#worksWrap p#note {
	font-size:15px;
	padding:0 !important;
	margin:20px 0 20px;
	text-align:center;
}
#worksWrap a.ghostButton {
	color:#636363;
	margin-left:10px;
	margin-right:10px;
	border:2px #636363 solid;
	display: inline-block;
}

/************************************************************************************
CONTACTWRAP
*************************************************************************************/
form {
	width:900px;
	margin:20px auto 0;
	text-align:left;
	line-height:180%;
	
}
form div{
	padding:10px 20px;
}

.text {
	width:282px;
	height:28px;
}
textarea {
	width:791px;
	max-width:856px;
	height:260px;
}

/************************************************************************************
FORMWRAP
*************************************************************************************/
#formWrap {
	width:960px;
	margin:66px auto 30px;	
}
#formWrap p {
	margin:20px;
	text-align:left;
}
#formWrap table {
	width:870px;
	margin:0 auto;
}
#formWrap caption {
	padding:10px;
	color:#FFFFFF;
	font-weight:bold;
	text-align:center;
	line-height:16px;
	background-color:#636363;
	margin:15px 0;
	
}
#formWrap th {
	padding:10px;
	color:#FFFFFF;
	line-height:100%;
	text-align:center;
	vertical-align:middle;
	background-color:#52a9de;
}
#formWrap td {
	padding:10px;
	font-size:13px;
	line-height:180%;
}
#formWrap td a {
	color:#52a9de;
	text-decoration:underline;
}

/************************************************************************************
THANKSTWRAP
*************************************************************************************/
#thanksWrap {
	text-align:left;
	line-height:180%;
}
#thanksWrap h2, #thanksWrap p {
	margin-bottom:30px;
}
#thanksWrap p {
	padding:0 20px;
}
/************************************************************************************
FOOTER
*************************************************************************************/
#footer {
	width:100%;
	color:#FFFFFF;
	font-size:10px;
	line-height:15px;
	padding:20px 0;
	background:#888888;
}