@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: #391603;
	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;
}

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


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

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

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

p {
	font-size: 76%;
}

.img {
	text-align: center;
}

.text-center {
	text-align: center;
}

body {
	background-color: #ddd;
}

#container {
	position: relative;			/* 親要素をposition:relativeとする */
	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);
}


/* ------ Font ------ */

/* 各ブラウザに対応したWebフォントを指定 */
@font-face {
	font-family: 'icomoon';
	src:url('fonts/icomoon.eot');
	src:url('fonts/icomoon.eot?#iefix') format('embedded-opentype'),
url('fonts/icomoon.woff') format('woff'),
url('fonts/icomoon.ttf') format('truetype'),
url('fonts/icomoon.svg#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
}

/* ------ 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:url(../images/bg01.jpg) #cfa87d;
}

header .row {
	position: relative;
}
header .row:before {
	content: "";
	display: block;
	position: absolute;
	width: 0;
	height: 0;
	top: 0;
	margin-left: 35px;
}

header h1 {
	font-size: 60%;
}

#logo {
	width: 200px;
	height: 55px;
	margin-top:5px;
}

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

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

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

#gnav a {
	display: block;
	position: relative;
	z-index: 2000;
	height: 30px;
	padding-top: 50px;
	font-size: 76%;
	text-decoration: none;
	color: #fff;
	text-align: center;
}
/* 疑似要素にアイコンフォントを指定 */
#gnav a:before {
	display: block;
	position: absolute;
	width: 100%;
	top: 15px;
	text-align: center;
	font-family: 'icomoon';
 	font-size: 22px;
	color: #fff;
}
/* 疑似要素にborderを使った三角マークを記述 */
#gnav a:after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	bottom: -10px;
	left: 50%;
	margin-left: -10px;
	border-left: solid 10px transparent;
	border-right: solid 10px transparent;
}
/* ナビゲーションの色をグラデーションにする */
#products a:link,
#products a:visited {
	background-color: #42b0c7;
	background: -moz-linear-gradient(top, #7a481b, #391603);
	background: -webkit-gradient(linear, left top, left bottom, from(#7a481b), to(#391603));
	background: -webkit-linear-gradient(top, #7a481b, #391603);
	background: linear-gradient(to bottom, #7a481b, #391603);
    border-right: solid 1px #391603;
}
/* マウスオーバー時にグラデーションの色を変更 */
#products a:hover,
#products a:active {
	background-color: #34a5bd;
	background: -moz-linear-gradient(top, #8a5322, #411f04);
	background: -webkit-gradient(linear, left top, left bottom, from(#8a5322), to(#411f04));
	background: -webkit-linear-gradient(top, #8a5322, #411f04);
	background: linear-gradient(to bottom, #8a5322, #411f04);
}
/* 疑似要素に、アイコンフォントに割り当てられた文字を記述 */
#products a:before {
	content: "\e900";
}
/* マウスオーバー時にborderを使った三角マークを表示 */
#products a:link:after,
#products a:visited:after {
	display: none;
}
#products a:hover:after,
#products a:active:after {
	display: block;
	border-top: solid 10px #391603;
}
/* ナビゲーションの色をグラデーションにする */
#company a:link,
#company a:visited {
	background-color: #42b0c7;
	background: -moz-linear-gradient(top, #7a481b, #391603);
	background: -webkit-gradient(linear, left top, left bottom, from(#7a481b), to(#391603));
	background: -webkit-linear-gradient(top, #7a481b, #391603);
	background: linear-gradient(to bottom, #7a481b, #391603);
    border-right: solid 1px #391603;
}
/* マウスオーバー時にグラデーションの色を変更 */
#company a:hover,
#company a:active {
	background-color: #34a5bd;
	background: -moz-linear-gradient(top, #8a5322, #411f04);
	background: -webkit-gradient(linear, left top, left bottom, from(#8a5322), to(#411f04));
	background: -webkit-linear-gradient(top, #8a5322, #411f04);
	background: linear-gradient(to bottom, #8a5322, #411f04);
}
/* 疑似要素に、アイコンフォントに割り当てられた文字を記述 */
#company a:before {
	content: "\e901";
}
/* マウスオーバー時にborderを使った三角マークを表示 */
#company a:link:after,
#company a:visited:after {
	display: none;
}
#company a:hover:after,
#company a:active:after {
	display: block;
	border-top: solid 10px #391603;
}
/* ナビゲーションの色をグラデーションにする */
#ir a:link,
#ir a:visited {
	background-color: #42b0c7;
	background: -moz-linear-gradient(top, #7a481b, #391603);
	background: -webkit-gradient(linear, left top, left bottom, from(#7a481b), to(#391603));
	background: -webkit-linear-gradient(top, #7a481b, #391603);
	background: linear-gradient(to bottom, #7a481b, #391603);
    border-right: solid 1px #391603;
}
/* マウスオーバー時にグラデーションの色を変更 */
#ir a:hover,
#ir a:active {
	background-color: #34a5bd;
	background: -moz-linear-gradient(top, #8a5322, #411f04);
	background: -webkit-gradient(linear, left top, left bottom, from(#8a5322), to(#411f04));
	background: -webkit-linear-gradient(top, #8a5322, #411f04);
	background: linear-gradient(to bottom, #8a5322, #411f04);
}
/* 疑似要素に、アイコンフォントに割り当てられた文字を記述 */
#ir a:before {
	content: "\e902";
}
/* マウスオーバー時にborderを使った三角マークを表示 */
#ir a:link:after,
#ir a:visited:after {
	display: none;
}
#ir a:hover:after,
#ir a:active:after {
	display: block;
	border-top: solid 10px #391603;
}
/* ナビゲーションの色をグラデーションにする */
#recruit a:link,
#recruit a:visited {
	background-color: #42b0c7;
	background: -moz-linear-gradient(top, #7a481b, #391603);
	background: -webkit-gradient(linear, left top, left bottom, from(#7a481b), to(#391603));
	background: -webkit-linear-gradient(top, #7a481b, #391603);
	background: linear-gradient(to bottom, #7a481b, #391603);
    border-right: solid 1px #391603;
}
/* マウスオーバー時にグラデーションの色を変更 */
#recruit a:hover,
#recruit a:active {
	background-color: #34a5bd;
	background: -moz-linear-gradient(top, #8a5322, #411f04);
	background: -webkit-gradient(linear, left top, left bottom, from(#8a5322), to(#411f04));
	background: -webkit-linear-gradient(top, #8a5322, #411f04);
	background: linear-gradient(to bottom, #8a5322, #411f04);
}
/* 疑似要素に、アイコンフォントに割り当てられた文字を記述 */
#recruit a:before {
	content: "\e903";
}
/* マウスオーバー時にborderを使った三角マークを表示 */
#recruit a:link:after,
#recruit a:visited:after {
	display: none;
}
#recruit a:hover:after,
#recruit a:active:after {
	display: block;
	border-top: solid 10px #391603;
}
/* ナビゲーションの色をグラデーションにする */
#support a:link,
#support a:visited {
	background-color: #42b0c7;
	background: -moz-linear-gradient(top, #7a481b, #391603);
	background: -webkit-gradient(linear, left top, left bottom, from(#7a481b), to(#391603));
	background: -webkit-linear-gradient(top, #7a481b, #391603);
	background: linear-gradient(to bottom, #7a481b, #391603);
}
/* マウスオーバー時にグラデーションの色を変更 */
#support a:hover,
#support a:active {
	background-color: #34a5bd;
	background: -moz-linear-gradient(top, #8a5322, #411f04);
	background: -webkit-gradient(linear, left top, left bottom, from(#8a5322), to(#411f04));
	background: -webkit-linear-gradient(top, #8a5322, #411f04);
	background: linear-gradient(to bottom, #8a5322, #411f04);
}
/* 疑似要素に、アイコンフォントに割り当てられた文字を記述 */
#support a:before {
	content: "\e904";
}
/* マウスオーバー時にborderを使った三角マークを表示 */
#support a:link:after,
#support a:visited:after {
	display: none;
}
#support a:hover:after,
#support a:active:after {
	display: block;
	border-top: solid 10px #391603;
}


/* ------ Mainvisual ------ */

#mainvisual {
	width: 100%;
	background:url(../images/bg01.jpg) #cfa87d;
}

#mainvisual ul {
	position: relative;
}


/* ------ Article ------ */

article {
	background-color: #fff;
	padding-bottom: 50px;
}


/* ------ Index ------ */

#index {
	padding-bottom: 20px;
}
@media screen and (min-width: 640px) {
	#index {
		background: url(../images/separetor1.png) no-repeat bottom center;
	}
}

#index section a {
	display: block;
	position: relative;
	padding: 10px 0 30px;
	text-decoration: none;
}
#index section a:link,
#index section a:visited {
	background-color: transparent;
}
#index section a:hover,
#index section a:active {
	background-color: #f5f5f5;
}

#index .img {
	margin-bottom: 10px;
}

#index h1 {
	margin-bottom: 3px;
	font-size: 90%;
	font-weight: bold;
}

#index p {
	color: #666;
}


/* ------ News ------ */

#news {
	margin-top: 30px;
}

.hukidasi{
	display: block;
	position: relative;
	background-color: #391603;
	color: #fff;
	padding: 8px 15px;
	font-size: 100%;
	z-index: 2;
}

.hukidasi:before{
	content: "";
	position: absolute;
	bottom: -16px;
	left: 20;
	border: 8px solid transparent;
	border-top: 8px solid #391603;
}

#news dl {
	position: relative;
	display: block;
	padding: 15px 0;
	text-decoration: none;
}

#news dt  {
	margin: 5px 0 0 3px;
	color: #391603;
	font-size: 100%;
	font-weight: bold;
	color:#C96;
}

#news dd  {
	padding:5px 0;
	color: #391603;
	border-bottom: dotted 1px #391603;
	font-size: 76%;
}

/* ------ Sidebar ------ */

#sidebar {
	margin-top: 30px;
	border-bottom: solid 1px #eee;
}

#sidebar section {
	display: block;
	border-top: solid 1px #eee;
	padding: 15px 0;
}

#sidebar h2 {
	margin-left: 70px;
	font-size: 90%;
	font-weight: bold;
	color: #391603;
}

#sidebar section a {
	display: block;
	position: relative;
	text-decoration: none;
	overflow: hidden;
}

#sidebar section a:link,
#sidebar section a:visited {
	background-color: transparent;
}
#sidebar section a:hover,
#sidebar section a:active {
	background-color: #C96;
}

#sidebar p.left {
	margin-left: 70px;
	color: #391603;
}

#sidebar p.full {
	font-size: 76%;
	line-height:1.5em;
	color: #391603;
}

#sidebar .img {
	float: left;
	margin: 0;
}

.tel-link {
    font-weight: bold;
}


#map_canvas{
	position: relative;
	padding: 0 0 56%;
	height: 0;
	overflow: hidden;
}
#map_canvas iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}


/* ------ Page Top ------ */

#page-top {
	border-top: solid 1px #391603;		/* 1番外側のborder */
	border-bottom: solid 1px #eac79f;
}

#page-top p {
	font-size: 68%;
	border-top: solid 1px #51290c;		/* 2番目のborder */
}

#page-top a {
	display: block;
	padding-bottom: 3px;
	text-align: center;
	text-decoration: none;
	line-height: 25px;
	color: #FFF;
	border-top: solid 1px #704017;		/* 1番内側のborder */
}
#page-top a:after {
	font-size: 11px;
	font-weight: normal;
	margin-left: 5px;
	color: #FFF;
}
#page-top a:link,
#page-top a:visited {
	background-color: #7a481b;
}
#page-top a:hover,
#page-top a:active {
	background-color: #8a5322;
}

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

footer {
	background: url(../images/bg01.jpg);
	padding:20px 0;
	text-align:center;
}

#copyright {
	margin: 0 auto;
}

#copyright p {
	font-size: 62%;
}

/* ------ form ------ */
.form_t{
	margin-top: 10px;
	padding: 5px;
}
.form_t:after {
	content: "";
	display: block;
	clear: both;
}
.form_th{
	padding: 7px;
	border-left:#391603 10px solid;
	border-bottom: #391603 1px dotted;
	font-size:80%;
}
.form_td{
	margin-top:5px;
	padding-bottom: 3px;
	border-bottom:#391603d 1px solid;
}
.red{
	color:#D40000;
	font-weight:bold;
}


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

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

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

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

}



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

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

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

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


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

	header {
	    background:url(../images/bg01.jpg) #cfa87d;
		padding-top: 0;
	}
	header .row:before {
		display: none;
	}

	header .col:first-child {
		height: 90px;
	}
	
	header h1 {
		margin: 0 auto;
	}

	header #logo {
		margin: 0 auto;
		padding-top: 5px;
	}


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

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

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

	#gnav a:before {
		top: 10px;
	}


	/* ------ Mainvisual ------ */

	#mainvisual-button {
		padding: 15px 0;
	}


	/* ------ Article ------ */

	article {
		padding-bottom: 0;
	}

	article p {
		font-size: 90%;
	}


	/* ------ Index ------ */

	#index {
		padding-bottom: 0;
	}

	#index section {
		border-top: solid 1px #eee;
	}

	#index section a {
		padding: 15px 20px 15px 15px;
	}
	#index section a:after {
		font-size: 11px;
		display: block;
		position: absolute;
		width: 10px;
		line-height: 10px;
		top: 50%;
		margin-top: -5px;
		transition-duration: 0.3s;
	}
	#index section a:link:after,
	#index section a:visited:after {
		right: 6px;
	}
	#index section a:hover:after,
	#index section a:active:after {
		right: 3px;
	}

	#index h1:after {
		display: none;
	}

	#index .img {
		margin-bottom: 0px;
	}


	/* ------ News ------ */

	#news {
		margin-top: 0;
		border-bottom: none;
	}

	#news dl {
		padding: 15px;
	}

	#news dt,
	#news dd {
		font-size: 90%;
	}


	/* ------ Sidebar ------ */

	#sidebar {
		margin-top: 0;
		border-bottom: none;
	}

	#sidebar section {
		padding: 15px ;
	}


	/* ------ Page Top ------ */

	#page-top p {
		font-size: 76%;
	}

	#page-top a {
		line-height: 35px;
	}


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

	#copyright {
		margin-bottom: 0;
		padding: 0 15px;
		text-align: center;
	}

}
