@charset "utf-8";
/* CSS Document */

/* 標準可変メディア
   メモ : 可変メディアでは、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 およびそれ以下. */

#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	background-color: #cfc;
}
#LayoutDiv1 img {
	float: left;
	margin-left: 30px;
	width: 50px;
	background-color: #cfc;
}
	
h1 {
	color: #FF0000;
	text-align: center;
	text-shadow: 2px 2px 2px #999;
	padding-top: 10px;
}

#sitemap {
  text-align: right;
  text-decoration-color: #3333FF;
  margin-right: 40px;
}

#LayoutDiv2 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
nav li {
	float:left;
	width: 50%;
}
nav a {
	display: block;
	width: 80%;
	height: 44px;
	font-size: 108%;
	font-weight: bold;
	line-height: 22px;
	text-align: center;
	margin: 5px auto;
	color: #3333FF;
	border: solid 2px #ffffff;
	text-shadow: -1px -1px 2px rgba(255,255,255,0.5), 1px 1px 2px rgba(0,0,0,0.5);
	background-color: #FF99CC;
	box-shadow: 1px 1px 3px #999;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
nav a:hover {
	background-color: #ff0;
}
/*いいねボタンの位置*/
.fb-like {
	float: right;
	margin: 10px 20px;
}

/*フッターのCSS*/
footer {
	clear:both;
	background-color: #ccf;
	overflow:hidden;
}
footer ul {
	list-style-type: none;
}
footer ul li {
	float: left;
	width: 23%;
	text-align: center;
	border-left: none;
	padding-top: 20px;
	padding-bottom: 20px;
}
footer ul li.first {
	float: left;
	width: 23%;
	text-align: center;	
	border-left: none;
	padding-top: 20px;
	padding-bottom: 20px;
}
#copyright {
  clear:both;
  text-align: center;
  padding-top: 20px
}
  #copyright p {
    font-size: 12px;
  }
  #copyright address {
    font-size: 12px;
	color: #ff0;
  }
.top {
	clear: both;
	float: right;
  margin-right: 10px;
  font-size: 10px;
}
.top img {
	width:50px;
	margin-right: 5px; 
	vertical-align: middle;
}
.top a p {
	color: #000;
}

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

@media only screen and (min-width: 481px) {
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
#LayoutDiv1 img {
	float: left;
	margin-left: 30px;
	width: 60px;
}

#LayoutDiv2 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
nav {
	width: 99%;
	height: 54px;
	margin: 4px auto;
}

nav li {
	float:left;
	width: 16.5%;
}

nav a {
	display: block;
	width: 90%;
	height: 44px;
	font-size: 108%;
	font-weight: bold;
	line-height: 22px;
	text-align: center;
	margin: 0 auto;
	color: #3333FF;
	border: solid 2px #ffffff;
	text-shadow: -1px -1px 2px rgba(255,255,255,0.5), 1px 1px 2px rgba(0,0,0,0.5);
	background-color: #FF99CC;
	box-shadow: 1px 1px 3px #999;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
footer ul {
	list-style-type: none;
}
footer ul li {
	float: left;
	width: 13%;
	text-align: center;
	border-left:#009 1px solid;
	padding-top: 5px;
	padding-bottom: 5px;
}

footer ul li.first {
	float: left;
	width: 13%;
	text-align: center;
	border-left: none;
	padding-top: 5px;
	padding-bottom: 5px;
}

}


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

@media only screen and (min-width: 769px) {
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
#LayoutDiv1 img {
	float: left;
	margin-left: 30px;
	width: 70px;
}

#LayoutDiv2 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
nav {
	clear: both;
	height: 54px;
	max-width: 98%;
	margin: 5px auto;
}
nav li {
	float:left;
}

nav a {
	display: block;
	width: 93%;
	height: 44px;
	font-size: 108%;
	font-weight: bold;
	line-height: 22px;
	text-align: center;
	margin: 0 4px;
	color: #3333FF;
	border: solid 2px #ffffff;
	text-shadow: -1px -1px 2px rgba(255,255,255,0.5), 1px 1px 2px rgba(0,0,0,0.5);
	background-color: #FF99CC;
	box-shadow: 1px 1px 3px #999;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
footer ul li {
	float: left;
	width: 12%;
	text-align: center;
	border-left:#009 1px solid;
	padding-top: 5px;
	padding-bottom: 5px;
}
footer ul li.first {
	float: left;
	width: 12%;
	text-align: center;
	border-left:none;
	padding-top: 5px;
	padding-bottom: 5px;
}


}
