@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 およびそれ以下. */
.aboutBlock{
	margin-bottom: 40px;
}
.aboutBlock > div{
	clear: both;
	overflow: hidden;
	margin-top: 20px;
}
.aboutBlock p{
	margin: 0;
}

.about01 img{
	float: none;
	margin-right: 0;
	margin-bottom: 20px;
    width: 100%;
}
.about02 img{
	float: none;
	margin-left: 0;
	margin-bottom: 20px;
    width: 100%;
}
.activityBlock {
	margin-bottom: 40px;
}
.greetingBlock {
	margin-bottom: 40px;
	overflow: hidden;
}
.greetingBlock img{
	float: none;
	margin-right: 0;
	margin-bottom: 20px;
    width: 100%;
}
.historyBlock{
	clear:both;
	margin-bottom: 40px;
}
.mediaBlock {
	margin-bottom: 40px;
	
}
.historyItem {
	display: inline-block ;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 15px;
	width: 30%;
	margin: 1%;
}
.outlineBlock{
	width: 100%;
	margin-bottom: 20px;
}
.outlineBlock th {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 15px;
	font-weight: normal;
	text-align: left;
	line-height: 200%;
	width: 5.5em;
	vertical-align:top;
}
.outlineBlock td{
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size:15px;
	line-height: 200%;
	text-align:left;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only screen and (min-width: 481px) {
.historyItem {
	width: 17%;
}
.about01 img{
	float: left;
	margin-right: 20px;
    width: auto;
}
.about02 img{
	float: right;
	margin-left: 20px;
    width: auto;
}
.greetingBlock img{
	float: left;
	margin-right: 20px;
    max-width: 215px ;
    width: auto;
}
}

/* デスクトップレイアウト : 769 px ～最大 1232 px。モバイルレイアウトとタブレットレイアウトからスタイルを継承。 */

@media only screen and (min-width: 769px) {
}
