@charset "UTF-8";
/*
739px以下
最小幅375px（左右に20pxずつ余白をとるので、中身は335px）
*/

/*全体の設定
-----------------------------------------------------------------------------------------*/
*{
	margin: 0; 
	padding: 0; 
	list-style-type: none; 
	font-weight: normal;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
img {
	border-width: 0px;
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
	width /***/:auto;
}
* html img {
	border-width: 0px;
	vertical-align: top;
	padding:-1px;
}
*:first-child+html img {
	border-width: 0px;
	vertical-align: middle;
	padding:-1px;
}
html{
	height:100%;
}
body {
	background:#FFFFFF;
	font-family:'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	color: #000000;
	text-align:center;
	font-size:14px;
	line-height:26px;
	height:100%;
	-webkit-text-size-adjust:none;
	min-width:375px;
}
h1,h2,h3,h4,h5,h6,p,li,dt,dd,input,table,figure{
	font-size:16px;
	line-height:30px;
}
strong{
	font-weight:bold;
}
em{
	font-style:normal;
	color:#CC0033;
	font-weight:bold;
}
table {
	empty-cells:show; 
	border-collapse:collapse; 
	border-spacing:0;
}
/* 左右分けレイアウト*/
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.clearfix {
	min-height: 1px;
}
* html .clearfix {
	height: 1px;
	/*\*//*/
	height: auto;
	overflow: hidden;
	/**/
}

/*標準のリンク*/
a{
	color: #0071BC;
	text-decoration: none;
	outline:none;
}
a:hover {
	text-decoration: none;
	outline:none;
}
a:link,a:visited,a:hover,a:active {
	outline:none;
}
/*画像のhoverは透過*/
a:hover img{
	opacity: 0.75;
	filter: alpha(opacity=75);
	-moz-opacity: 0.75;
}
/*表示の切り替え*/
.sp{
	display:inline;
}
.pc{
	display:none;
}


/*header
-----------------------------------------------------------------------------------------*/
header{
	background:#ef8200;
	border:none;
}
/*-------------------------ロゴ*/
header .logo{
	background:#ef8200;
	position:relative;
        z-index:2;
	text-align:left;
	float:none;
}
header .logo img{
	max-height:50px;
}
/*-------------------------サブメニュー*/
header .submenu{
	background:#ef8200;
	padding:2px;
	width:100%;
	position:fixed;
	top:0;
        z-index: 3;
	display:none;
}
header .submenu li{
	float:left;
	width:calc(100% / 3);
	margin:0;
}
header .submenu li a{
	display:block;
	text-align:center;
}
header .submenu li + li a{
	border-left:1px solid #fce6cc;
}
header .submenu li img{
	width:130px;
}
/*スクロールした時*/
#wrapper.scroll{
	padding-top:50px;
}
#wrapper.scroll header .submenu.sp{
	display:block;
}



/*footer
-----------------------------------------------------------------------------------------*/
footer{
	background:#F6F5F0;
	color:#000000;
}
footer a{
	color:#000000;
}
footer a:hover{
	text-decoration:underline;
}
/*-------------------------コピーライト*/
footer small{
	display:block;
	text-align:left;
	font-size:8px;
	line-height:15px;
	padding:10px ;
}
/*-------------------------上へ*/
#toPageTop {
	position:fixed;
	bottom: 0;
	right: 0;
	width:50px;
	height:50px;
	background:#999;
	opacity: 0.5;
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
	z-index:100;
}
* html #toPageTop {position:absolute;}
#toPageTop:hover{
	opacity: 1;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	cursor:pointer;
}