@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/ 
*/

.fluid {
	clear: both;
	margin-left: 0;
	width: 100%;
	float: left;
	display: block;
}

.fluidList {
    list-style:none;
    list-style-image:none;
    margin:0;
    padding:0;        
}

/* Mobile Layout: 480px and below. */
  
.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	clear: none;
	float: none;
}

#head {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	clear: none;
	float: none;
	text-align: center;
}

#slider {
	width: 96%;
	margin-left: auto;
	margin-right: auto;
	clear: none;
	float: none;
	text-align: center;
	background-color: #666;
}

#main_space {
	width: 100%;
	height: 7px;
}

#main {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	clear: none;
	float: none;
	text-align: center;
}
#news {
	width: 96%;
	margin-left: auto;
	margin-right: auto;
	clear: none;
	float: none;
	background-color: #000;
	border: 0px solid #000;
    -moz-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    box-shadow:0 3px 5px rgba(0, 0, 0, 0.3);
    filter: progid:DXImageTransform.Microsoft.Shadow(color=#777777, direction=0, strength=3, enabled=true);
}
#sub {
	display: none;
}

#footer1 {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	clear: none;
	float: none;
}
#footer2 {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	clear: none;
	float: none;
	text-align: center;
	font-size: xx-small;
	color: #FF6;
	background: url(../img/footer_background.png) repeat;
}

.zeroMargin_mobile {
    margin-left: 0;
}
.hide_mobile {
    display: none;
}

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

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

.gridContainer {
	width: 100%;
}

#slider {
	width: 640px;
	clear: both;
}

#main_space {
	height: 10px;
}

#main {
	width: 640px;
}
#news {
	width: 450px;
	float: left;
	border: 0px solid #000;
    -moz-box-shadow: 0 5px 7px rgba(0, 0, 0, .3);
    -webkit-box-shadow: 0 5px 7px rgba(0, 0, 0, .3);
    box-shadow:0 5px 7px rgba(0, 0, 0, 0.3);
    filter: progid:DXImageTransform.Microsoft.Shadow(color=#777777, direction=0, strength=3, enabled=true);
}
#sub {
	width: 170px;
	margin-left: auto;
	margin-right: auto;
	clear: none;
	float: right;
	background-color: #000;
	display: block;
	border: 0px solid #000;
    -moz-box-shadow: 0 5px 7px rgba(0, 0, 0, .3);
    -webkit-box-shadow: 0 5px 7px rgba(0, 0, 0, .3);
    box-shadow:0 5px 7px rgba(0, 0, 0, 0.3);
    filter: progid:DXImageTransform.Microsoft.Shadow(color=#777777, direction=0, strength=3, enabled=true);
}


#footer2 {
	font-size: x-small;
}

.zeroMargin_tablet {
    margin-left: 0;
}
.hide_tablet {
    display: none;
}
}

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

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

.gridContainer {
	width: 100%;
	max-width: 1600px;
}

#slider {
	width: 1000px;
}

#main_space {
	height: 15px;
}

#main {
	width: 1000px;
}
#news {
	width: 700px;
	border: 0px solid #000;
    -moz-box-shadow: 0 7px 9px rgba(0, 0, 0, .3);
    -webkit-box-shadow: 0 7px 9px rgba(0, 0, 0, .3);
    box-shadow:0 7px 9px rgba(0, 0, 0, 0.3);
    filter: progid:DXImageTransform.Microsoft.Shadow(color=#777777, direction=0, strength=3, enabled=true);
}
#sub {
	width: 260px;
	border: 0px solid #000;
    -moz-box-shadow: 0 7px 9px rgba(0, 0, 0, .3);
    -webkit-box-shadow: 0 7px 9px rgba(0, 0, 0, .2);
    box-shadow:0 7px 9px rgba(0, 0, 0, 0.2);
    filter: progid:DXImageTransform.Microsoft.Shadow(color=#777777, direction=0, strength=3, enabled=true);
}

#footer2 {
	font-size: small;
}

.zeroMargin_desktop {
    margin-left: 0;
}
.hide_desktop {
    display: none;
}
}