@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 およびそれ以下. */
.slideShow {
	display: none;
}
.content1 {
	text-align: center;
	padding-top: 50px;
	padding-bottom: 100px;
}

.content1 p{
	width: 98%;
	margin-left: auto;
	margin-right: auto;
	text-align:left;
}
.content1 table{
	margin-left:auto;
	margin-right:auto;
}
.content1 td{
	text-align:left;
	padding-left: 5px;
	padding-right: 5px;
}
.boxTop{
  width:40%;
	border-color: #0070BB;
	border-style:solid, solid, solid, solid;
	border-width: 6px;
	border-radius: 6px;
}
.boxBottom{
  width:40%;
}
.blueBoxGroup{
  display: table;
}
.blueBox{
  display: table-cell;
	width: 47%;
	border-color: #0070BB;
	border-style:solid;
	border-width: 6px;
	border-radius: 6px;
}
.blueBox img{
  margin-bottom: 10px;
}
.blueBox p{
	width: 95%;
}
.content1 ul {
	text-align:left;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only screen and (min-width: 481px) {
.slideShow {
	display: none;
}
.content1 {
	text-align: center;
	padding-top: 50px;
	padding-bottom: 100px;
}
.content1 p{
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	text-align:left;
}
.blueBox1 p{
	width: 95%;
}
.blueBox2 p{
	width: 90%;
}
.content1 ul {
	text-align:left;
	width: 80%;
	margin-left:auto;
	margin-right:auto;
}

/* デスクトップレイアウト : 769 px ～最大 1232 px。モバイルレイアウトとタブレットレイアウトからスタイルを継承。 */

@media only screen and (min-width: 769px) {
.slideShow {
	display: none;
}
.contents {
	width: 100%;
}
.content1 {
	text-align: center;
	padding-top: 50px;
	padding-bottom: 100px;
}
.content1 p{
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	text-align:left;
}
.blueBox1 p{
	width: 80%;
}
.blueBox2 p{
	width: 80%;
}

}