@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 およびそれ以下. */
html, 
html * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: Gotham, Helvetica Neue, Helvetica, Arial," sans-serif";
}
a {
	text-decoration: none;
	color: #ffffff;
}
a:hover {
	text-decoration:none;
	color:#999;
}
a:visited {
	color:#ffffff;
}
header {
	padding: 32px;
}
body {
	margin-left: auto;
	margin-right: auto;
	background: #FFFBC4;
}
.style-logo {	
	margin-left: auto;
	margin-right: auto;
	display: block;
}
.style-nav ul {
	list-style-type: none;
}
.style-nav ul li a {
	text-decoration: none;
	color: #ffffff;
	text-align: center;
	display: block;
	padding: 8px;	
}
.style-nav ul li {
	justify-content: space-between;
	font-size: 20px;
	font-weight: 700;
	background-color: #22AC38;
	border-radius: 50vh;
	padding: 0.4em;
	width: 300px;
	margin: 10px auto 5px auto;
}
h1 {
	margin-bottom: 10px;
}
h3 {
	font-size: 25px;
	font-weight: 600;
	margin-top: 30px;
	margin-bottom: 20px;
}
h4 {
	font-size: 18px;
	font-weight: 500;
	margin-top: 10px;
}
h5 {
	font-size: 15px;
	font-weight: 400;
	margin: 10px 50px 20px 50px;
	line-height: 150%;
}
p {
	font-size: 18px;
	font-weight: 200;
	color:#FFF;
	margin: 30px 50px 30px 50px;
	line-height: 150%;
	text-align: left;
}
.y-box {
	background-color: #FFF000;
	color:#666;
	text-align: center;
	padding-bottom: 5px;
}
.b-box {
	background-color: #00A0DF;
	color: #ffffff;
	padding-bottom: 5px;
	text-align: center;
}
.google_map {
	width: 350px;
	height: 300px;	
}
.r-box {
	background-color: #E60020;
	text-align: center;
	padding-bottom: 50px;
	font-size: 16px;
	font-weight: 700;
}
.button {
	border: 2px #ffffff solid;
	padding: 10px 20px;
	border-radius: 30px;
	text-decoration: none;
}	
.f_icon {
	margin-top: 30px;	
}
.g-box {
	background-color: #95C036;
	color: #ffffff;
	padding-bottom: 30px;
	text-align: center;
}
.g-box img {
	padding: 0px 0px 0px 0px;
}
.o-box {
	background-color: #ED811B;
	color: #ffffff;
	padding-bottom: 50px;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
}
.f-box {
	background-color: #D3EDF9;
	padding-bottom: 50px;
	text-align: center;
}
.footer-text {
	font-size: 11px;
	font-weight: 600;
	margin-bottom: 30px;
	color:#666;
	text-align: center;
}


/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */
/*タブレット用*/
@media only screen and (min-width: 768px) {
	body {
	max-width:768px;
	}
	.style-logo ul li {
		display: inline-block;
	}		
	h1 {
	padding-top: 20px;
	margin-bottom: 30px;
	}
	.col-md-half {
		width: 381px;
	}
	.col {
		float: left;
		padding: 0px 0px 0px 0px;
	}
	.y-box {
		height: 483px;
	}
	.b-box {
		height: 483px;
	}
	.r-box {
		height: 423px;
	}
	.g-box {
		height: 423px;
	}
	.o-box {
		height: 676px;
	}
	.f-box {
		height: 676px;
	}
	iframe {
		height: 100%; 	
	}
	footer {
		clear: both;
	}
}

/* デスクトップレイアウト : 769 px ～最大 1232 px。モバイルレイアウトとタブレットレイアウトからスタイルを継承。 */
/*ディスクトップ用*/
@media only screen and (min-width: 1024px) {

}
