﻿@charset "utf-8";

/*-----------------------------------------------------	*/
/* Browser Default Initialization */
/*-----------------------------------------------------	*/

html {
	overflow-y: scroll;
}

body, div, dl, dt, dd, ul, ul li, h1, h2, h3, h4, h5, h6,
pre, form, fieldset, input, textarea, p, blockquote, th, td,
section, nav, article, aside, hgroup, header, address,
figure, figcaption {
	margin: 0;
	padding: 0;
	line-height: 160%;
}
address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
	font-weight: normal;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th {
	text-align: left;
}
q:before ,q:after {
	content: '';
}
object, embed {
	vertical-align: top;
}
hr, legend {
	display: none;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}
img, abbr, acronym, fieldset {
	border: 0;
}
img {
	vertical-align: top;
	-ms-interpolation-mode: bicubic;
}
ul li {
	list-style-type: none;
}


/* ------ Body ------ */

body {
	font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	color: #333;
	font-size: 16px;
	line-height: 160%;
	text-align: left;
	letter-spacing: -0.001em;		/* iOS4でのテキストの隙間への対応 */
	-webkit-text-size-adjust: 100%;		/* 文字サイズの自動調整機能のキャンセル */
}
.win body {
	font-family: 'メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
}

/* ------ Anchor ------ */

a {
	outline: none;
	-webkit-tap-highlight-color:rgba(0,0,0,0); 
}

a:link {
	text-decoration: none;
	color: #38bdbb;
}
a:visited {
	text-decoration: none;
	color: #38bdbb;
}
a:hover {
	text-decoration: underline;
	color: #38bdbb;
}
a:active {
	text-decoration: underline;
	color: #38bdbb;
}

/*-------------------------------------*/
/* 浮動コンテンツのクリア */
/*-------------------------------------*/
.clearfix:after {
     visibility: hidden;
     display: block;
     font-size: 0;
     content: " ";
     clear: both;
     height: 0;
}

/*-----------------------------------------------------	*/
/* for all */
/*-----------------------------------------------------	*/

/* ------ General Settings ------ */

/* フルードイメージ対応 */
img {
	max-width: 100%;
	height: auto;
}
.ie8 img {
	width: auto;
}

body {
	background-color: #fffffd;
}

#wrapper {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	-webkit-box-shadow: 0 0 20px rgba(0,0,0,0.1);
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* ------ Column ------ */

.row {
	max-width: 930px;
	margin: 0 auto;
}
.row:after {
	content: "";
	display: block;
	clear: both;
}

/* 各カラムを横並びにし、左マージンを設定 */
.col {
	float: left;
	margin-left: 3.2258064515%;
}

/* 左端のカラムの左マージンを削除 */
.col:first-child,
.col.left {margin-left: 0;}

/* カラムの左右を入れ替えるための設定 */
.col.right {
	float: right;
	margin-left: 3.2258064515%;
}

/* 各カラムの幅を％で設定 */
.one-second {width: 48.3870967741%;}
.one-third {width: 31.1827956988%;}
.two-third {width: 65.5913978494%;}


/* ------ Header ------ */

header {
	width: 100%;
	background-color: #ffc600;
}

header h1 {
	display: none;
}

#header-logo {
	width: 100%;
}

/* ------ Global Navi ------ */

/* デスクトップ／タブレット用表示では、右寄せで配置 */
#gnav {
	float: right;
	width: 76%;
}

/* ナビゲーションの各項目は、横並びに配置 */
#gnav li {
	float: left;
	width: 33%;
}

/* カレント項目は、文字色変更 */
#gnav li.currentItem a{
	color: #fffffd;
}

#gnav a {
	color: #333;
	font-weight: bold;
	display: block;
	height: 30px;
	padding-top: 20px;
	padding-bottom: 10px;
	font-size: 80%;
	text-decoration: none;
	text-align: center;
}

/* マウスオーバー時に背景色を変更 */
#gnav a:hover,
#gnav a:active {
	background-color: #ffd966;
}

/* ------ Footer ------ */

footer {
	width: 100%;
	background-color: #ffc600;
}

#footer-nav-area {
	width: 400px;
}

/* ナビゲーションの各項目は、横並びに配置 */
#footer-nav li {
	float: left;
	width: 80px;
}

#footer-nav a {
	color: #333;
	font-weight: bold;
	display: block;
	height: 30px;
	padding-top: 10px;
	padding-left: 10px;
	font-size: 64%;
	text-decoration: none;
	text-align: left;
}

/* マウスオーバー時に文字色を変更 */
#footer-nav a:hover,
#footer-nav a:active {
	color: #fffffd;
}

#footer-logo {
	padding-left: 10px;
	width: 140px;
}

#copyright {
	padding-bottom: 16px;
}

#copyright p {
	padding-top: 12px;
	padding-right: 10px;
	font-size: 70%;
	font-family:"lucida grande", tahoma, verdana, arial, sans-serif!important;
	text-align: right;
}

/*-----------------------------------------------------	*/
/*	for 640px - 979px				*/
/*-----------------------------------------------------	*/

@media screen and (min-width: 640px) and (max-width: 979px) {

	/* ------ Column ------ */

	/* 左右に18pxの余白を設定 */
	.row {
/*		padding: 0 18px; */
	}

}



/*-----------------------------------------------------	*/
/*	for - 639px					*/
/*-----------------------------------------------------	*/

@media screen and (max-width: 639px) {

	/* ------ Column ------ */

	/* 各カラムの横並びを解除し、縦１列に並べる */
	.col,
	.col.left,
	.col.right {
		float: none;
		width: auto;
		margin-left: 0;
	}


	/* ------ Header ------ */

	header .col:first-child {
		height: 52px;
		border-bottom: solid 1px #333;
	}

	#header-logo {
		width: 200px;
		margin: 0 auto;
	}

	/* ------ Global Navi ------ */

	/* スマートフォン用表示では、横幅いっぱいに配置 */
	#gnav {
		float: none;
		width: 100%;
	}

	#gnav a {
		height: 25px;
		padding-top: 10px;
		padding-bottom: 10px;
		font-size: 68%;
	}

	/* ------ Footer ------ */

	/* スマートフォン用表示では、中央に配置 */
	#footer-nav-area {
		margin: 0 auto;
		width: 100%;
	}

	/* スマートフォン用表示では、横幅いっぱいに配置 */
	#footer-nav li {
		width: 33%;
	}

	#footer-nav a {
		padding-top: 6px;
		padding-left: 0;
		text-align: center;
		font-size: 56%;
	}

	#footer-logo {
		margin: 0 auto;
		padding-left: 0;
	}

	#copyright {
		padding-bottom: 10px;
	}

	#copyright p {
		padding-top: 8px;
		padding-right: 0;
		font-size: 46%;
		text-align: center;
	}

}
