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

 file name  :common.css
 author     :meets
style info  :ベース設定　ハックは最下部に記述
=================================================================== */

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

html {
	height:100%;
	overflow-y:scroll;
}

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

a {
	text-decoration:underline;
}

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:"ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	background:#f9f7f4;
	color:#494949;
}

* 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;
	margin:28px 0 0 20px;
}

h2 {
}

#column1 p {
}

#column2 p {
}

#wrap-btm p {
}

#wrapper {
	width:100%;
	background:url(../images/bg_base.jpg) repeat-x top center;
}


/*--------------------------------------------------------------------
header（ヘッダー部分）
--------------------------------------------------------------------*/
header {
	text-align:left;
	margin:0 auto;
	height:132px;
}

/*--nav------------------------------------------------------------*/
header nav{
}

header nav ul{
	overflow:hidden;
}

header nav ul li{
	float:left;
}

header nav#sm{
	float:right;
}

header nav#sm li{
	margin:0 0 50px 25px;
}

header nav#gm{
	clear:both;
	position:relative;
	/*top:105px;*/
	z-index:10;
}

header nav#gm li{
	margin:0 5px 0 0;
	background:#b37575;
}

header nav#gm li.last{
	margin:0 0 0 0;
}


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

#content #main_column{
	margin:0 auto;
}

#content section{
	clear:both;
	overflow:hidden;
	margin:40px auto;
	width:1000px;
}

#content #other_link{
}

#content #other_link dl{
	overflow:hidden;
	background:url(../images/bg_otherlink.png) top center no-repeat;
}

#content #other_link dt{
	float:left;
	margin:76px 33px 0 0;
}

#content #other_link dd{
	background:#ffffff;
	float:left;
	margin:0 10px 0 0;
}



/*--------------------------------------------------------------------
footer部分
--------------------------------------------------------------------*/
#wrap-btm {
	clear:both;
	width:100%;
	text-align:center;
	background:#111111 url(../images/bg_footer.jpg) repeat-x top center;
}

#wrap-btm footer {
	text-align:left;
	margin:0 auto;
	overflow:hidden;
}

#wrap-btm p.logo{
	padding:20px 0;
}

#wrap-btm p.copyright{
	text-align:right;
	color:#ffffff;
}

#pagetop {
	position: fixed;
	bottom: 20px;
	right: 10px;
}

/*--------------------------------------------------------------------
センター固定 or リキッドレイアウトの変更
（リキッドレイアウトにする場合はwidthを100%に変更）
--------------------------------------------------------------------*/
header,
footer {
	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;
}