@charset "utf-8";
/* ===================================================================
CSS information

 file name  :common.css
 author     :meets
style info  :ベース設定　ハックは最下部に記述
=================================================================== */
.pc{display:block;}
.sp{display:none;}

/*--------------------------------------------------------------------
基本設定
--------------------------------------------------------------------*/
html,body {
	width:100%;
	height:100%;
}

html {
	height:100%;
	overflow-y:scroll;
	background-image: url(../common/image/bg.jpg);
}

/*--Reset-----------------------------------------------------------*/
* {
	margin:0;
	padding:0;
}

a {
	text-decoration:none;
}

img {
	border:none;
	vertical-align:middle;
}

ul,ol {
	list-style:none;
}

/*--Text------------------------------------------------------------*/
body {
	font-size:88%;
	font-weight:normal;
	line-height:1.5;
	font-family:"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	background: url(../images/bg_main.png) no-repeat top center;
}

* html body {/*IE6*/
	font-family:"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}

*:first-child + html body {/*IE7*/
	font-family:"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}

h1 {
	font-size:120%;
}

h2,h3,h4,h5,h6 {
	font-size:100%;
}

/*--Link------------------------------------------------------------*/
a,a:link {color:#333333;}
a:visited {color:#333333;}
a:hover,a:active {color:#777777;}
a:focus {outline:none;}

/*--HTML5-----------------------------------------------------------*/
article,aside,details,footer,header,hgroup,menu,nav,section,summary {
	display:block;
}


/*--------------------------------------------------------------------
共通パーツ
--------------------------------------------------------------------*/
h1 {
	float:left;
}

h2 {
}

#column1 p {
}

#column2 p {
}

#wrap-btm p {
}

#wrapper {
	width:100%;
	background:url(../images/bg_header.png) top center repeat-x;
	overflow:hidden;
}


/*--------------------------------------------------------------------
header（ヘッダー部分）
--------------------------------------------------------------------*/
header {
	text-align:left;
	width: 1000px;
	margin:0 auto 30px;
	overflow:hidden;
}

/*--nav------------------------------------------------------------*/
header nav{
	float:right;
}

header nav ul{
	overflow:hidden;
	width:700px;
}

header nav ul li{
	float:left;
	padding:0 16px;
}

header .addtel{
float: right;
background-image: url(../images/bg_addtel.jpg);
width: 700px;
padding: 10px 0;
margin: 0 0 20px 0;
}

header .addtel img{
margin: 0 15px;
}

/*--------------------------------------------------------------------
content（コンテンツ部分）
--------------------------------------------------------------------*/
#content {
	clear:both;
	overflow: hidden;
	margin:0 auto 30px;
}

#content #main_column{
	float:left;
	width:1000px;
}


/*--------------------------------------------------------------------
footer部分
--------------------------------------------------------------------*/
#wrap-btm {
	background: #ffffff;
	clear:both;
	width:100%;
	text-align:center;
}

#wrap-btm footer {
	margin:0 auto;
}

#pagetop{
text-align: center;
padding: 20px 0;
}

footer{
text-align: center;
background: #ede7dd;
}

footer #footer_menu{
padding:20px;
}

footer #footer_info{
padding:15px;
}

footer #footer_info h3{
margin: 0 0 15px 0;
}

footer #copyright{
background:#000000;
color: #ffffff;
padding:5px;
font-size: 0.8em;
}

/*--------------------------------------------------------------------
センター固定 or リキッドレイアウトの変更
（リキッドレイアウトにする場合はwidthを100%に変更）
--------------------------------------------------------------------*/
header,
#content{
	width:1000px;
}


/*----------------------------------------------------
	リンク画像ロールオーバー設定
----------------------------------------------------*/

a img{
-webkit-transition: 0.3s ease-in-out;
-moz-transition: 0.3s ease-in-out;
-o-transition: 0.3s ease-in-out;
transition: 0.3s ease-in-out;
}

a:hover img{
opacity: 0.6;
filter: alpha(opacity=40);
}

a:hover img.nonfade{
filter:alpha(opacity=100);
-moz-opacity:1;
-khtml-opacity: 1;
opacity:1;
-webkit-transition: 0s ease-in-out;  
-moz-transition: 0s ease-in-out;  
-o-transition: 0s ease-in-out;  
transition: 0s ease-in-out;
}