@charset "UTF-8";
/* 標準可変メディア
   メモ : 可変メディアでは、HTML からメディアの高さおよび幅の属性を削除する必要がある
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 では最大幅がサポートされていないため、デフォルトで幅 100% に設定される */
.ie6 img {
	width:100%;
}
*{
	margin: 0;
	padding: 0;
}

/*リンク*/

a {
	color: #333;
	text-decoration: none;
}
a:hover {
	color: #D70C19;
	text-decoration: none;
}

/* すべてのブラウザーで、フォーカスの設定時およびホバー時の読みやすさを改善 : h5bp.com/h */
a:hover, a:active { outline: 0; }

/*
	Dreamweaver 可変グリッドプロパティ
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	10;
	dw-gutter-percentage:	25;
	
	以下からヒントを入手 : Ethan Marcotte 氏の「レスポンシブ Web デザイン」 
	http://www.alistapart.com/articles/responsive-web-design
	
	および Joni Korpi 氏の「Golden Grid System」
	http://goldengridsystem.com/ 
*/

/* モバイルレイアウト : 480 px およびそれ以下. */
/*ベースアイテム指定*/
.container {
	margin: 0 auto;
	clear: both;
}
#bodyInner #mainWrap #titleList .container .item {
	float: left;
}

#bodyInner #mainWrap .worksBox .container .clearfix li.item {
	width: 230px;
	height: auto;
	float: left;
	margin: 10px;
	padding: 10px;
	background-color: #fff;
	border-radius: 3px;
}

/* 見出し等指定 */
.largeTitle {
	font-size: 28px;
	font-weight: lighter;
	text-align: center;
	margin-bottom: 50px;
	color: #333;
}
.midTitle {
	font-weight: lighter;
	font-size: 16px;
	margin-bottom: 10px;
	color: #333;
}

.textRight {
	font-size: 12px;
	margin-right: 2.5%;
	text-align: right;
}

.comment {
	margin-top: 3px;
	height: 15px;
	font-size: 10px;
	line-height: 15px;
	font-weight: lighter;
	color: #333;
}

.brank {
	width: 100%;
	height: 40px;
	margin-bottom: 30px;
	color: #fff;
	text-align: right;
}

/*ワークスコンテンツリンクリスト*/
#bodyInner ul#titleList {
	height: auto;
	margin: 0 auto;
	text-align: center;
}
#bodyInner ul#titleList li {
	display: inline;
}
#bodyInner ul#titleList li img {
	width: 90px;
	height: auto;
	margin: 0 15px;
	margin-bottom: 15px;
}

/*サービスコンテンツ指定*/
#mainWrap {
	width: 95%;
	margin: 0 auto;
}
#mainWrap .worksBox {
	width: 95%;
	margin: 0 auto;
}
#mainWrap .boxTitle {
	margin-bottom: 30px;
}

#mainWrap h4.worksTitle {
	width: 90%;
	max-width: 900px;
	margin: 0 auto;
	margin-bottom: 20px;
	padding-bottom: 5px;
	text-align: center; 
	font-size: 20px;
	font-weight: bold;
	height: 40px;
	line-height: 40px;
	color: #666;
	border-bottom: solid #0099cc 2px;
}
.text {
	font-size: 13px;
	text-align: center;
	line-height: 1.5em;
	font-weight: lighter;
	color: #333;
}

/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only screen and (min-width: 481px) {
	/*サービスコンテンツ指定769以上変更点*/
#bodyInner #mainWrap .worksBox .container .clearfix li.item {
	width: 180px;
	height: auto;
	float: left;
	margin: 10px;
}
}

/* デスクトップレイアウト : 769 px ～最大 1232 px。モバイルレイアウトとタブレットレイアウトからスタイルを継承。 */

@media only screen and (min-width: 769px) {
/*ヘッダ周り指定769以上変更点*/

}