@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%;
}

/*
	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 およびそれ以下. */

.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width:99%;
	padding-left:0.5%;
	padding-right:0.5%;
}
body {
  width: 100%;
  background-color:#FFF;
  font-family:"A-OTF UD新丸ゴ Pro M", "ＭＳ Ｐゴシック", "ＭＳ Ｐ明朝", "ＭＳ ゴシック", Helvetica, "DIN Next LT Pro", Didot;
  color:#888888;
}
a {
  color:#888888;
  text-decoration:underline;
}
a:hover {
  color:#008080;
  text-decoration:underline;
}

/*ヘッダー*/
#header {
	text-align:left;
	background-color:#FFF;
	margin-top:50px;
	position:relative;
	overflow:hidden;
}
#header h1{
	margin:0 auto;
	padding:15px 0 5px 5px;
	width:100%;
}
#header h2{
	color:#888888;
	padding-left:15px;
	font-size:1.2em;
}
#header p{
	font-size:1.0em;
	color:#888888;
	padding-left:10px;
	word-break:normal;
}
/*ヘッダーEND*/

/*ナビ*/	
#nav{
	margin:5px 0 10px 0;
	height:84px;
	width:100%;
}
#nav ul li{
	width:16.6%;
	margin: 0;
	text-align: center;
	float: left;
}
/*ナビEND*/

/*コンテンツ*/
div#art {
	margin:50px 0 50px 0;
}
div#art section#list h2{
	font-weight: bold;
	font-size:1.5em;
	color:#888888;
	padding:15px;
	text-align:center;
	border-bottom:1px #888888 solid;
}
div#art section#list article{
	text-align:center;
	width:50%;
	min-width:120px;
	float:left;
	margin-bottom:20px;
	padding-bottom:20px;
	border-bottom:1px #888888 solid;
}
div#art section#list article img{
	width:100%;
	height:auto;
	max-width:184px;
	padding:15px 0 15px 0;
}
div#art section#list article h3{
	font-size:0.9em;
	font-weight:bold;
	
}
div#art section#list article p{
	font-size:1.0em;
	text-align:left;
	line-height:2.0;
	padding:0 15px;
	display:none;
}
/*コンテンツEND*/

/*フッター*/
#foot {
	width: 100%;
	background-color:#FFF;
	text-align:center;
	clear:left;
	left:50%;
	margin:70px 0 70px 0;
}
#foot p{
	color:#888888;
	font-size:0.9em;
}
/*フッターEND*/



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

@media only screen and (min-width: 481px) {
.gridContainer {
	width: 90.675%;
	padding-left: 1.1625%;
	padding-right: 1.1625%;
}

/*コンテンツ*/
div#art section#list h2{
	color:#888888;
	padding:5px 0 5px 15px;
}
div#art section#list article{
	text-align:center;
	width:33%;
	min-width:120px;
	float:left;
	margin-bottom:30px;
}
div#art section#list article img{
	width:100%;
	height:auto;
	max-width:250px;
}
div#art section#list article h3{
	font-size:0.9em;
	font-weight:bold;
}
div#art section#list article p{
	font-size:0.8em;
	text-align:left;
	line-height:2.0;
	padding:0 15px;
	display:block;
}



}

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

@media only screen and (min-width: 769px) {
.gridContainer {
	width: 80%;
	max-width: 960px;
	padding-left: 10%;
	padding-right: 10%;
	margin: auto;
}
header{
	max-width:960px;
	margin-left:auto;
	margin-right:auto;
}
footer{
	clear:left;
	max-width:960px;
	margin-left:auto;
	margin-right:auto;
}
footer p{
	text-align:left;
}

div#art{
	max-width:960px;
	margin-left:auto;
	margin-right:auto;
}
div#art section#list article{
	width:100%;
}
div#art section#list article img{
	float:left;
	margin-right:20px;
}
div#art section#list article h3{
	border-left:5px solid #888888;
	margin-bottom:10px;
	padding-left:10px;
	text-align:left;
	float:left;
	font-size:1.0em;
}
div#art section#list article p{
	line-height:3.0em;
	border:1px solid #888888;
	float:left;
	width:60%;
}

}