@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:		4;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	12;
	dw-gutter-percentage:	25;
	
	以下からヒントを入手 : Ethan Marcotte 氏の「レスポンシブ Web デザイン」 
	http://www.alistapart.com/articles/responsive-web-design
	
	および Joni Korpi 氏の「Golden Grid System」
	http://goldengridsystem.com/ 
*/

/* Mobile Layout: 480px and below. */

.talentindex {
	color: #F93;
	font-size: 11px;
}

table.talent {
	width: 95%;
	margin-left: auto;
	margin-right: auto;
	clear: none;
	float: none;
	border: none;
}

.talent td {
	width: 22.5%;
	padding-bottom: 7px;
	margin-left: auto;
	margin-right: auto;
	clear: none;
	float: none;
	border: none;
}

.talent p {
	text-align: center;
	color: #FFF;
	font-size: 9px;
	line-height: 5px;
}


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

@media only screen and (min-width: 481px) {

.talentindex {
	font-size: 13px;
}

table.talent {
	width: 420px;
}

.talent td {
	padding-bottom: 12px;
	width: 95px;
}

.talent p {
	font-size: 12px;
	line-height: 10px;
}

}

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

@media only screen and (min-width: 769px) {

.talentindex {
	font-size: 15px;
}

table.talent {
	width: 660px;
}

.talent td {
	padding-bottom: 15px;
	width: 155px;
}

.talent p {
	font-size: 14px;
	line-height: 15px;
}

}