@charset "utf-8";


/* =Reset default browser CSS.
Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */
/*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, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table.table, caption, tbody, tfoot, thead, tr, th, td {border: 0;font-family: inherit;font-size: 100%;font-style: inherit;font-weight: inherit;margin: 0;outline: 0;padding: 0;vertical-align: baseline;}*/
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, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, form, label, legend, table.table, caption, tbody, tfoot, thead, tr, th, td {border: 0;font-family: inherit;font-size: 100%;font-style: inherit;font-weight: inherit;margin: 0;outline: 0;padding: 0;vertical-align: baseline;}
:focus {outline: 0;}

ol, ul {list-style: none;}
table.table {border-collapse: separate;border-spacing: 0;}
caption, th, td {font-weight: normal;text-align: left;}
blockquote:before, blockquote:after,q:before, q:after {content: "";}
blockquote, q {quotes: "" "";}
a img{border: 0;}
figure{margin:0}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}
sup { font-size: 10px; }

/* -------------------------------------------------------------- */

body {
	color:#333;
	font-size:small;
	font-family:verdana,"ヒラギノ丸ゴ ProN W4","Hiragino Maru Gothic ProN","メイリオ","Meiryo","ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
	line-height:1.5;
	-webkit-text-size-adjust: none;
/*	padding-bottom: 220px;*/
/*	margin-bottom: 220px;*/
	margin-bottom: 50px;
}

textarea {
	color:#333;
	font-size:small;
}

fieldset {
	border: solid 1px #ccc;
	border-radius: 5px;
    -moz-border-radius: 5px; /* for Firefox */
    -webkit-border-radius: 5px; /* for Chrome */
}

/* リンク設定
------------------------------------------------------------*/
/*
a{color:#acd16b;text-decoration:none;}
a:hover{color:#73a51c;}
*/
a{color:#73a51c;text-decoration:none;}
a:hover{text-decoration: underline;}
a:active, a:focus {outline:0;}


/* 全体
------------------------------------------------------------*/
strong {
	font-weight: bolder;
}

#wrapper{
	margin:0 auto;
	padding:0 1%;
	width:98%;
	position:relative;
	background:#fff;
}

.inner{
	margin:0 auto;
	width:100%;
}

hr{
	display: block;
	border: 0;
  	height: 2px;
	background-color: #f4b83a;
}

h2 {
	font-size: 150%;
	font-weight: bold;
}

h4 {
	font-weight: bold;
	border-bottom: solid 1px #f4b83a;
}

ol.paren {
	margin-left: 3.0em;
}
 
ol.paren li {
	list-style-type: none;
	list-style-position: inside;
	counter-increment: cnt;
/*	padding-left: 0em;*/
	text-indent: -1.5em;
}
ol.paren li:before {
	/*display: marker;*/
	content: "(" counter(cnt) ") ";
}

ol.circle {
	list-style: none;
	text-indent: 10px;
	padding-left: 2.0em;
	margin-top: -1.5em;
}
ol.circle li:first-child:before {
	content: "\2460";
	padding-right: 0.5em;
}
ol.circle li:first-child+li:before {
	content: "\2461";
	padding-right: 0.5em;
}
ol.circle li:first-child+li+li:before {
	content: "\2462";
	padding-right: 0.5em;
}
ol.circle li:first-child+li+li+li:before {
	content: "\2463";
}

ol.roman li {
	list-style-type: lower-roman !important;
	margin-left: 1.5em;
	text-indent: -1em;
}

ol.roman li:before ,
ol.roman li:first-child:before,
ol.roman li:first-child+li:before,
ol.roman li:first-child+li+li:before,
ol.roman li:first-child+li+li+li:before {
	content: none;
}

pre {
	white-space: -moz-pre-wrap;	/* Mozilla */
	white-space: -pre-wrap;		/* Opera 4-6 */
	white-space: -o-pre-wrap;	/* Opera 7 */
	white-space: pre-wrap;		/* CSS3 */
	word-wrap: break-word;		/* IE 5.5+ */
}

label {
	white-space: nowrap;
}

input,
textarea {
	padding: 5px;
    border-radius: 5px;
	border: solid 1px #ccc;
	
    /* Webkit */
    background: -webkit-gradient( linear, left top, left bottom, from(#eee), to(#fff) );
    -webkit-border-radius: 5px;
    -webkit-box-shadow: 1px 1px 1px #fff;
     
    /* Firefox */
    background: -moz-linear-gradient( top, #eee, #fff );
    -moz-border-radius: 5px;
    -moz-box-shadow: 1px 1px 1px #fff;
     
    /* IE */
    filter: progid:DXImageTransform.Microsoft.gradient
											(startColorstr=#ffeeeeee,endColorstr=#ffffffff);
    zoom: 1;
}

input:hover,
textarea:hover {
	border: solid 1px #f8b500;
}

input:focus,
textarea:focus {
	border: solid 1px #f8b500;
	-webkit-box-shadow: 0px 0px 10px rgba(248,181,0,0.7);
	   -moz-box-shadow: 0px 0px 10px rgba(248,181,0,0.7);
	        box-shadow: 0px 0px 10px rgba(248,181,0,0.7);
}

/*************
/* ヘッダー
*************/
#header{
	height:60px;
}

/*
hr{
	width: 932px;
	border: none;
	border-bottom: solid 2px #f4b83a
}
*/
#header h1{
	padding:5px 0 10px 15px;
	font-size:10px;
	font-weight:normal;
}

/*************
/* ロゴ
*************/
.logo{
	float:left;
}

.logo p{float:left;}

.logo img{
	width:auto;
	float:left;
	padding:2px 10px 0 10px;
}

.logo span{display:block;}

/*************
/* 電話番号
*************/
.info{
	float:right;
	padding-right:20px;
	text-align:right;
}

.info .open{font-size:11px;}


/*************
/* ロゴ+電話番号
*************/
.logo,.info .tel{
	margin-top:6px;
	color:#acd16b;
	font-size:20px;
	font-weight:bold;
}

.logo span,.info span{
	color:#333;
	font-size:.6em;
	font-weight:normal;
}


/**************************
/* メイン画像（トップページ+サブページ）
**************************/
#mainBanner{
	margin:17px auto;
	padding:0;
	width:100%;
	position:relative;
	line-height:0;
}

#mainBanner img{
	width: 932px;
	max-width:100%;
	height:auto;
}

#advantage{
	margin: 17px auto;
	padding: 0;
	width: 932px;
	position: relative;
}

#service{
	margin: 17px auto;
	padding: 0;
	width: 932px;
	position: relative;
	h2 {
		color: red;
		padding-left: 1em;
		text-indent: -1em;
	}
}

#subpage #mainBanner img{border:4px solid #f1f1f1;}

.slogan {
	position: absolute;
	max-width: 100%;
	height: auto;
	bottom: 0px;
	left:0;
	padding:5px 10px;
	line-height:1.4;
	color:#fff;
}

.slogan h2 {
	padding-bottom:5px;
	font-size:20px;
	font-weight:bold;
	color:#333;
}


/**************************
/* グリッド
**************************/
.gridWrapper {
	padding-bottom:20px;
	overflow: hidden;
}

* html .gridWrapper{height:1%;}
	
.grid {
	float:left;
	border-radius:5px;
	background:#fff;
}

.box {
	margin:0 5px;
	padding:10px;
	border:1px solid #f1f1f1;
}

.box img {
	max-width:100%;
	height:auto;
	border:4px solid #f1f1f1;
}

.box h3{padding:10px 0 5px;}

.box h3, .box p{text-align:left;}

.box p.readmore {
	padding:10px 5px 5px;
	text-align:right;
}

/*************
メイン コンテンツ
*************/
section.content article {
	padding:20px;
	margin-bottom:20px;
	border:1px solid #f1f1f1;
	overflow:hidden;
}

* html section.content article{height:1%;}

section.content p{margin-bottom:5px;}

h3.heading {
	padding: 0 10px;
	color: #333;
/*	font-weight: normal;*/
	font-weight: bold;
	line-height: 36px;
/*	background: #f0f0f0;*/
	background: -webkit-gradient( linear, left top, left bottom, from(#f8f8f8), to(#f0f0f0) );
	background: -moz-linear-gradient( top, #f8f8f8, #f0f0f0 );
	background: linear-gradient(to bottom, #f8f8f8, #f0f0f0);
	filter: progid:DXImageTransform.Microsoft.gradient (startColorstr=#fff8f8f8,endColorstr=#fff0f0f0);
}

section.content img {
	max-width:90%;
	height:auto;
}

	
section.content #list li {
	list-style: none;
	background-image: url(../images/icon.gif);
	background-repeat: no-repeat;
	padding-left: 24px;
/*	line-height: 30px;*/
	margin-bottom: 10px;
}


.alignleft {
	float:left;
	clear:left;
	margin:3px 10px 10px 0;
}

.alignright {
	float:right;
	clear:right;
	margin:3px 0 10px 10px;
}

#gallery .grid img,.border,ul.list img{border:4px solid #f1f1f1;}



/*************
テーブル
*************/
.matrix table {
	background-color: #999999;
	border: solid 1px #ccc;
}

.matrix th {
	background-color: #f0ffff;
	font-size: small;
	margin-left: 2px;
	margin-right: 0px;
	padding-left: 2px;
	padding-right: 0px;
	border-left: solid 1px #ccc;
	border-top: solid 1px #ccc;
}

.matrix td {
	background-color: #ffffff;
	margin-left: 2px;
	margin-right: 0px;
	padding-left: 2px;
	padding-right: 0px;
	border-left: solid 1px #ccc;
	border-top: solid 1px #ccc;
}

table.company{
	border-collapse:collapse;
	margin:5px auto 15px auto;
}

table.company td{
	border-collapse:collapse;
	background-color:#fff;
	text-align:left;
	padding:8px;
	border:1px solid #D6D6D6;
	line-height:20px;
}

table.company th{
	background-color:#fff;
	text-align:right;
	padding:8px;
	white-space:nowrap;
	color: #151515;
	border-top:1px solid #D4D4D4;
	border-right:1px solid #D4D4D4;
	border-bottom:1px solid #D4D4D4;
	border-left:1px solid #D4D4D4;
	font-size:13px;
	font-weight:normal;
	letter-spacing:1px;
	background-repeat:repeat-x;
	background-position:top;
}

table.history{
	width: 600px;
	border-collapse: collapse;
	margin: 5px auto 15px auto;
}

table.history th{
	background-color:#fff;
	text-align:right;
	padding:8px;
	white-space:nowrap;
	color: #151515;
	border-top: dotted 1px #d4d4d4;
	border-bottom: dotted 1px #d4d4d4;
}

table.history td{
	background-color:#fff;
	text-align:left;
	padding:8px;
	word-wrap:break-word;
	/*white-space:nowrap;*/
	color: #151515;
	border-top: dotted 1px #d4d4d4;
	border-bottom: dotted 1px #d4d4d4;
}

table.price{
	width: 100%;
	border-collapse: collapse;
	margin: 5px auto 15px auto;
}

table.price th{
	background-color:#f0ffff;
	text-align:left;
 	vertical-align:middle;
	padding:8px;
	white-space:nowrap;
	color: #151515;
	border-top:1px solid #D4D4D4;
	border-right:1px solid #D4D4D4;
	border-bottom:1px solid #D4D4D4;
	border-left:1px solid #D4D4D4;
	font-size:13px;
	font-weight:normal;
	letter-spacing:1px;
	background-repeat:repeat-x;
	background-position:top;
	word-break:break-all;
}

table.price td{
	border-collapse:collapse;
	background-color:#fff;
	text-align:right;
 	vertical-align:middle;
	padding:8px;
	border:1px solid #D6D6D6;
	line-height:20px;
}

.price a{
	color: #0000ff;
}

table.spec{
	width: 100%;
	border-collapse: collapse;
	margin: 5px auto 15px auto;
}

table.spec th{
	background-color:#f0ffff;
	text-align: center;
 	vertical-align:middle;
	padding:8px;
	white-space:nowrap;
	color: #151515;
	border-top:1px solid #D4D4D4;
	border-right:1px solid #D4D4D4;
	border-bottom:1px solid #D4D4D4;
	border-left:1px solid #D4D4D4;
	font-size:13px;
	font-weight:normal;
	letter-spacing:1px;
	background-repeat:repeat-x;
	background-position:top;
	word-break:break-all;
}

table.spec td{
	border-collapse: collapse;
	background-color: #fff;
	text-align: left;
 	vertical-align: middle;
/*	padding: 8px;*/
	padding: 0 8px;
	border: 1px solid #D6D6D6;
	line-height: 20px;
	height: 34px;
}

table.spec td#spec{
	text-align: center;
}

table.spec td small{
	font-size: 80%;
	line-height: 0;
	white-space: nowrap;
	position: relative;
	top: -8px;
}

table.inquiry  th {
	font-size: small;
	margin-left: 8px;
	margin-right: 0px;
	padding-left: 8px;
	padding-right: 0px;
	text-align: left;
	font-weight: normal;
	white-space: nowrap;
	background: #ffffff url(/images/none.gif) left no-repeat;
}

table.inquiry  th.must {
	margin-left: 8px;
	margin-right: 0px;
	padding-left: 8px;
	padding-right: 0px;
	text-align: left;
	font-weight: normal;
	background: #ffffff url(images/must.gif) left no-repeat;
}

table.inquiry td {
	margin-left: 2px;
	margin-right: 2px;
	padding-left: 2px;
	padding-right: 2px;
	text-align: left;
	background-color: #ffffff;
}

table.inquiry textarea{
	width: 100%;
}

#entry input.must {
	/*content: '*';*/
	filter: '*';
}

#entry textarea.must {
	/*content: '*';*/
	filter: '*';
}

#entry select.must {
	/*content: '*';*/
	filter: '*';
}

.shadow img {
	width: 222px;
	height: 170px;
	margin-top: 0;
	margin-bottom: 8px;
	text-align: center;
	background-color: #fff;
	-webkit-box-shadow: 0 10px 6px -6px #888;
       -moz-box-shadow: 0 10px 6px -6px #888;
            box-shadow: 0 10px 6px -6px #888;
}

/*************
/* サイドバー
*************/
#sidebar ul{padding:10px;}

#sidebar li {
	margin-bottom:10px;
	padding-bottom:10px;
	list-style:none;
	border-bottom:1px dotted #f1f1f1;
}

#sidebar li:last-child {
	border:0;
	margin-bottom:0px;
}

#sidebar li a{display:block;}

#sidebar ul.list li{
	clear:both;
	margin-bottom:5px;
	padding:5px 0;
	overflow:hidden;
	border:0;
}

ul.list li{height:1%;}

ul.list li img {
float:left;
margin-right:10px;
}

ul.list li {
	font-size:12px;
	line-height:1.35;
}


/*************
/* フッター
*************/
#footer {
	clear:both;
	overflow:hidden;
	padding:0px 10px 20px 10px;
	background:#f3f3f3;
}

* html #footer{height:1%;}

#footer .grid {
	padding:0px 0 5px;
	margin:0;
	background:transparent;
}

#footer #info .logo, #footer #info .info{float:none;}

#footer #info .info {
	clear:both;
	padding:10px 0 0 15px;
	text-align:left;
}

#footer .logo{font-size:18px;}

#footer .info .tel,#footer .info .tel span,#footer #info .open {
	font-size:12px;
	color:#333;
}

#WEB_System ul {
	list-style: disc;
	padding-left: 20px;
}

#AppWork ul {
	list-style: disc;
}

/*
ul.footnav{
float:right;
width:650px;
padding:10px 0;
}

ul.footnav li{
float:left;
margin-bottom:10px;
padding:0 7px 0 8px;
font-size:11px;	
border-right:1px solid #b6b6b6;
}
*/

#footer a{color:#333;}
#footer a:hover{color:#888;}

/*
footer {
	position: fixed !important;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}
*/
address {
	clear:both;
	padding:2px;
	text-align:center;
	font-style:normal;
	font-size:10px;
	color:#333;
	background:#dbdbdb;
	position: fixed !important;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}

@media only screen and 
(min-width : 1224px) {
/* Styles */
}

/* PC用 */
@media only screen and (min-width: 960px) {
	#header,#wrapper,.inner{
		width:960px;
		padding:0;
		margin:0 auto;
	}
	
	div.logo{
		 margin-left:10px;
	}
	
	/*#wrapper{padding-bottom:50px;}*/
	
	nav#mainNav{
		clear:both;
		overflow:hidden;
		position:relative;
	}
	
	nav#mainNav .inner{
		width:932px;
		padding:0 14px;
	}

	nav#mainNav ul li{
		float: left;
		position: relative;
	}

	nav#mainNav li:last-child{border-right:1px dotted #ebebeb;}

	nav#mainNav ul li a{
		display: block;
		text-align: center;
		_float:left;
		font-size:13px;
		width:154px;
		height:45px;
		padding-top:9px;
		color:#333;
		border-left:1px dotted #ebebeb;
	}

	nav#mainNav ul li a span,nav#mainNav ul li a strong{
		display:block;
	}

	nav#mainNav ul li a span{
		color:#cdcdcd;
		font-size:10px;
	}

	nav div.panel{
		display:block !important;
		float:left;
	}

	a#menu{display:none;}

	nav#mainNav li.active a{
		color:#909090;
/*		background:#f9f9f9;*/
		background: -webkit-gradient( linear, left top, left bottom, from(#ffffff), to(#f9f9f9) );
		background: -moz-linear-gradient( top, #ffffff, #f9f9f9 );
		background: linear-gradient(to bottom, #ffffff, #f9f9f9);
		filter: progid:DXImageTransform.Microsoft.gradient (startColorstr=#ffffffff,endColorstr=#fff9f9f9);
		padding-top:9px;
		border-top: solid 2px #acd16b
	}
	
	nav#mainNav li a:hover{
		color:#909090;
/*		background:#f9f9f9;*/
		background: -webkit-gradient( linear, left top, left bottom, from(#f0f0f0), to(#ffffff) );
		background: -moz-linear-gradient( top, #f0f0f0, #fffffff );
		background: linear-gradient(to bottom, #f0f0f0, #ffffff);
		filter: progid:DXImageTransform.Microsoft.gradient (startColorstr=#fff0f0f0,endColorstr=#ffffffff);
		padding-top:9px;
	}
	
	#mainBanner{margin-left:15px;}
	#subpage #mainBanner{margin:17px auto;}
	#advantage{margin-left:15px;}
	
	#main{
	float:right;
	width:667px;
	padding:15px 15px 0 0;
	/*padding-right:15px;*/
	}
	
	#main h1 {
		font-size: 16px;
	}
	
	#sidebar{
	float:left;
	width:245px;
	padding:15px 0 0 15px;
	overflow:hidden;
	}
	
	#sidebar article{
	padding:7px;
	margin-bottom:20px;
	border:1px solid #f1f1f1;
	overflow:hidden;
	}
	
	#sitemap {
	float:left;
	width:930px;
	padding:17px 0 0 15px;
	}
	
	#sitemap table {
		border-collapse: separate;
		border-spacing: 0;
	}

	#sitemap th {
		padding: 0 0 0 0;
		border: none;
		text-align: center;
	}
	
	#sitemap td {
		padding: 0 0 0 0;
		border: none;
		color: #ccc;
		text-align: center;
		line-height: 13px;
	}
	
	#sitemap div {
		text-align: left;
		min-width: 100px;
		padding: 4px;
		border: solid 1px #ccc;
		margin-bottom: 10px;
	}
	
	#sitemap a {
		color: #333;
	}
	
	/* グリッド全体 */
	.gridWrapper{
		width:960px;
		margin:0 0 0 -10px;
	}
	
	#gallery article{padding:10px 0 10px 10px;}
	
	/* グリッド */
	.grid{
		float:left;
		width:300px;
		margin-left:20px;
	}
	
	#subpage .grid{width:auto;}
	
	#gallery .grid{
		width:auto;
		margin:10px 0 2px 10px;
	}

	hr{
		width: 932px;
	}
	
	footer {
		position: fixed !important;
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
	}
	
	ul.footnav{
		position: relative;
		top: 16px;
		float:right;
		width:650px;
		line-height: 8px;
/*		padding:10px 0;*/
	}
	
	ul.footnav li{
	float:left;
	margin-bottom:10px;
	padding:0 7px 0 8px;
	font-size:11px;	
	border-right:1px solid #b6b6b6;
	}
	
	.achievement span {
		font-size: 20px;
		line-height: 26px;
	}
	.achievement span h1 {
		font-size: 20px !important;
	}
	.achievement a img {
		border: 0;
		margin-left: 10px;
	}
	.achievement hr {
		height: 1px;
	}
	.achievement #screenshot {
		height: 170px;
	
	    /*box-shadow*/
	    box-shadow:0 0 5px #fff, 0 0 5px #ccc, 0 0 1px #aaa;
	    -webkit-box-shadow:0 0 5px #fff, 0 0 5px #ccc, 0 0 1px #aaa;
	    -moz-box-shadow:0 0 5px #fff, 0 0 5px #ccc, 0 0 1px #aaa;
	    
	    /*ボックスのデザイン*/
	    border:1px solid #ccc;
	    text-align:center
	}
	.achievement #separator {
		margin: 1px 0 3px 0;
		background-color: #eee;
	}
	
	#AppWork ul {
		margin-left: 100px;
	}
	
	#AppWork .shadow {
		width: 120%;
		height: 532px;
		padding-left: 6px;
	}
	
	#AppWork .shadow img {
		height: 532px;
	}
	
	.inquiry table {
		width: 400px;
	}
	
	.inquiry .name th {
		width: 50px;
	}
	
	.inquiry .name #sei {
		width: 140px;
		padding-right:0;
	}
	
	.inquiry .name #mei {
		width: 120px;
		text-align: right;
	}
	
	.inquiry .name input[type=text] {
		width: 100px;
	}
	
	.inquiry input[type=text], .inquiry input[type=email] {
		width: 380px;
	}
	
	.inquiry textarea {
		width: 490px !important;
	}
	
	.inquiry #route fieldset {
		width: 480px;
	}
	
	.inquiry #route input[type=text] {
		width: 470px;
	}
	
	.inquiry #confirm {
		margin-left: 70px;
		padding-left: 10px;
		padding-top: 20px;
		width: 500px;
	}
	
	.inquiry table {
		border-collapse: separate;
		border-spacing: 12px;
	}
	
	.inquiry #confirm_content {
		width: 460px;
		height: 240px;
	}

	.inquiry #check_word_sp {
		display: none;
	}
}


@media only screen and (max-width:959px){
	*{
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
	}
	
	nav#mainNav{
		clear:both;
		width:100%;
		margin:0 auto;
		padding:0;
		/*
		background: -webkit-gradient(linear, left top, left bottom, color-stop(1, #f5f5f5), color-stop(0.5, #f0f0f0), color-stop(0.00, #f7f7f7));
		background: -webkit-linear-gradient(top, #f7f7f7 0%, #f0f0f0 50%, #f5f5f5 100%);
		background: -moz-linear-gradient(top, #f7f7f7 0%, #f0f0f0 50%, #f5f5f5 100%);
		background: -o-linear-gradient(top, #f7f7f7 0%, #f0f0f0 50%, #f5f5f5 100%);
		background: -ms-linear-gradient(top, #f7f7f7 0%, #f0f0f0 50%, #f5f5f5 100%);
		background: linear-gradient(top, #f7f7f7 0%, #f0f0f0 50%, #f5f5f5 100%);
		*/
		border:1px solid #e4e4e4;
	}
/*
	nav#mainNav a.menu{
		width:100%;
		display:block;
		height:40px;
		line-height:40px;
		font-weight: bold;
		text-align:left;
	}

	nav#mainNav a#menu span{padding-left:10px;}
	nav#mainNav a.menu span:before{content: "→ ";}
	nav#mainNav a.menuOpen span:before{content: "↓ ";}

	nav#mainNav a#menu:hover{cursor:pointer;}
*/
	nav .panel{
/*	nav#mainNav .inner{*/
/*		display: none;*/
		float:center;
		width:99%;
height: 80px;
		position: relative;
		right: 0;
		top:0;
		z-index: 1;
	}
/*
	nav#mainNav ul li{
		float: none;
		clear:both;
		width:100%;
		height:auto;
		line-height:10px;
	}
*/
	nav#mainNav ul li{
		float: left;
		width: 33%;
		position: relative;
/*		background-color: #ffffff;*/
	}
	nav#mainNav ul li a{
		display: block;
		text-align: center;
		_float:left;
		font-size:13px;
/*		width:154px;*/
		height:40px;
		padding-top:10px;
		color:#333;
		border-left:1px dotted #ebebeb;
		border-bottom:1px dotted #ebebeb;
	}
	
	nav#mainNav ul li span{
		display: none;
	}
/*
	nav#mainNav ul li a,nav#mainNav ul li.current-menu-item li a{
		display: block;
		padding:15px 10px;
		text-align:left;
		border-bottom:1px dashed #ccc;
	}
	*/
	nav#mainNav ul li a span{padding-left:10px;}
	
	nav#mainNav ul li:first-child a{
		border-top:1px solid #e4e4e4;
	}
	
	nav#mainNav ul li:last-child a{border:0;}
	
	nav#mainNav ul li.active a{
/*		color:#73a51c;*/
		color:#111;
		font-weight:bold;
		background-color:#FFFddF;
	}

	nav div.panel{
		display:block !important;
		float:left;
		background-color:#ffffff !important;
	}
/*	nav div.panel{float:none;}*/
	
	.slogan {
		/*bottom: 0;*/
		font-size: 180%;
		color: #333;
		text-shadow:
			-1px -1px #fff,
			1px -1px #fff,
			-1px 1px #fff,
			1px 1px #fff;
	}
	
	#subpage #mainBanner{max-width:668px;}
	#advantage, #service {
		max-width:100%;
		font-size: 90%;
	}
	
	#sidebar{padding-bottom:30px;}
	
	#sidebar article{padding:7px 0;}
	
	#footer .grid,#footer ul.footnav {
		float:none;
		width:100%;
		text-align:center;
	}

	ul.footnav li{float:none;display:inline-block;}
	
	.grid {
		width:32%;
		margin:10px 0 0 1%;
	}
	
	#gallery .grid {
		float:left;
		width:31%;
		margin:0 0 0 1%;
	}
	
	.achievement span {
		font-size: 16px;
		line-height: 26px;
	}
	.achievement span h1 {
		font-size: 20px !important;
	}
	.achievement a img {
		border: 0;
		width: 40%;
		height: 40%;
		margin-left: 10px;
	}
	.achievement hr {
		height: 1px;
	}
	.achievement #screenshot	{
		height: 80px;
	
	    /*box-shadow*/
	    box-shadow:0 0 5px #fff, 0 0 5px #ccc, 0 0 1px #aaa;
	    -webkit-box-shadow:0 0 5px #fff, 0 0 5px #ccc, 0 0 1px #aaa;
	    -moz-box-shadow:0 0 5px #fff, 0 0 5px #ccc, 0 0 1px #aaa;
	    
	    /*ボックスのデザイン*/
	    border:1px solid #ccc;
	    text-align:center
	}
	.achievement #separator {
		margin: 1px 0 3px 0;
		background-color: #eee;
	}
	
	section.content article {
		padding: 10px;
	}
	
	footer {display:none}
	
	#footer .grid img, #footer .info{float:none;}
	#footer .grid p{display:block;}
	#footer #info .info{float:none;text-align:center;}
	
	#footer .logo,#footer .info {
		width:100%;
		float:none;
	}
	
	#footer .logo p{float:none;display:block;}
	#footer .logo img{float:none;padding:0;}
	
	#AppWork ul {
		margin-left: 20px;
	}
	
	#AppWork .shadow {
		width: 110%;
		height: 300px;
	}
	
	#AppWork img {
		height: 300px;
	}
	
	#AppWork span {
		line-height: 14px;
	}
	
	#AppWork span h1 {
		line-height: 30px;
	}
	
	#AppWork span img {
		width: 64px;
		height: 64px;
	}
	
	#AppWork #screenshot {
		width: 19%;
		height: 19%;
	}
	
	#AppWork a img {
		width: 129px;
		height: 45px;
		margin-bottom: 10px;
	}
}

/* スマートフォン 横(ランドスケープ) */
@media only screen and (max-width:640px){
	#header h1,.logo,.info{text-align:center;}
	
	.logo,.info{
		clear:both;
		width:100%;
		float:none;
	}
	
	.logo p{float:none;display:block;}
	
	header .logo img{
		width:96%;
		float:none;
		padding:0;
	}
	
	#header{
		height:80px;
		padding-bottom:20px;
	}
	
	#header p{
		margin-top:-10px;
		line-height:20px;
	}
	
	.box img{
		float:left;
		margin-right:5px;
	}
	
	.box h3{padding-top:0;}

	.alignleft,.alignright{
		float:none;
		display:block;
		margin:0 auto 10px;
	}
	
	#gallery .grid{float:left;}
	
	hr{
		width: 100%;
	}
	
	table.price {
		width: 100%;
	}
	
	table.price th{
		word-break:break-all;
	}
	
	footer img{
		width: 24px;
		height: 20px;
	}

	ul.footnav{
		float:right;
		width:650px;
		padding:10px 0;
	}
	
	ul.footnav li{
		float:left;
		padding:0 7px 0 8px;
		font-size:11px;	
		border-right:1px solid #b6b6b6;
	}
}


/* スマートフォン 縦(ポートレート) */
@media only screen and (max-width:480px){
	.grid{width:100%;}
	.box img{max-width:100px;}
	#mainBanner h2,#mainBanner p{font-size:80%;}

	.inquiry form {
		margin-left: -10px;
	}
	
	.inquiry .name th {
	}
	
	.inquiry .name #sei {
/*		width: 80px;*/
		padding-right:0;
	}
	
	.inquiry .name #mei {
/*		width: 80px;*/
/*		text-align: right;*/
	}
	
	.inquiry .name input[type=text] {
		width: 70px;
	}
	
	.inquiry input[type=text], .inquiry input[type=email] {
		width: 230px;
	}
	
	.inquiry textarea {
		width: 330px !important;
	}
	
	.inquiry legend {
		 white-space: nowrap;
	}
	
	.inquiry label {
		 white-space: nowrap;
	}
	
	.inquiry #route input[type=text] {
		width: 310px;
	}
	
	.inquiry #check_word_pc {
		display: none;
	}
	
	.inquiry #check_word_sp {
/*		visibility: visible;*/
	}
	
	.inquiry #confirm {
		margin-left: -10px;
		margin-top: -10px;
		padding-left: 0px;
		padding-top: 0px;
		width: 360px;
	}
	
	.inquiry #confirm table {
		border-collapse: separate;
		border-spacing: 2px;
	}
	
	.inquiry #confirm th {
		width: 100px !important;
	}
	
	.inquiry #confirm_content {
		width: 350px;
		height: 240px;
	}
}

/* スマートフォン (横向き) */
@media only screen and(orientation : landscape) {
	header .logo img{
		width:50%;
		float:left;
		padding-left:10px;
	}
	
	#header{
		height:40px;
		padding-bottom:0;
	}
	
	#header p{
		margin-top:0;
		line-height:auto;
	}
}

/* スマートフォン (横向き) */
@media only screen and (min-width : 321px) and ((-webkit-device-pixel-ratio: 1.5)or(-webkit-device-pixel-ratio: 2)){
	header .logo img{
		width:40%;
		float:left;
		padding-left:10px;
	}
}

/* iPad */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
	#AppWork table img {
		height: auto !important;
	}
	#AppWork .shadow {
		height: 600px !important;
		margin-left: 10px;
	}
	#AppWork .shadow img {
		width: 720px !important;
		height: 600px !important;
	}
}

/* iPad pro */
@media only screen and (min-device-width: 2048px) and (max-device-width: 2732px) {
	#AppWork table img {
		height: auto !important;
	}
	#AppWork .shadow {
		height: 600px !important;
		margin-left: 10px;
	}
	#AppWork .shadow img {
		width: 720px !important;
		height: 600px !important;
	}
}
