@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:url(../images/bg_base.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;
}

* 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_main.png) top center no-repeat;
	overflow:hidden;
}


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

/*--nav------------------------------------------------------------*/
header p{
	text-align: right;
	margin: 10px 0 15px 0;
}

header nav{
	float:right;
}

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

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


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

#content #main_column{
	overflow: hidden;
	margin: 20px auto 0;
}

h2#pagetitle{
	background: url(../images/bg_pagetitle.jpg);
	text-align: center;
	padding: 20px 0;
}

#pankuzu{
	background: #cfcfcf;
	padding: 10px 0;
}

#pankuzu p{
	width: 1000px;
	margin: 0 auto;
}

#content #main_column .google-maps {
margin: 20px 0 0 0;
position: relative;
padding-bottom: 50%; // これが縦横比
height: 0;
overflow: hidden;
}
#content #main_column .google-maps iframe {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important;
}
/*--------------------------------------------------------------------
footer部分
--------------------------------------------------------------------*/
#footer_menu{
	clear: both;
	background: #2b69a2;
	overflow: hidden;
	margin-top: 50px;
}

#footer_menu ul{
	text-align: center;
}

#footer_menu li{
	display: inline-block;
	margin: 10px 20px;
	color: #ffffff;
}

#footer_menu li a,
#footer_menu li a:link {color:#ffffff;}
#footer_menu li a:visited {color:#ffffff;}
#footer_menu li a:hover,
#footer_menu li a:active {color:#B6B6B6;}
#footer_menu li a:focus {outline:none;}


#wrap-btm {
	overflow: hidden;
	padding: 30px 0 0 0;
	background: #ffffff;
	clear:both;
	width:100%;
	text-align:center;
}

#wrap-btm footer p{
	margin: 20px 0;
}

ul#footer_banner {
	margin: 40px 0;
	text-align: center;
}

#footer_banner li{
	width: 300px;
	height: 90px;
	margin: 0 10px 20px 10px;
	display: inline-table;
}



#wrap-btm footer p#copyright{
	clear: both;
	background: #000000;
	color: #ffffff;
	margin: 0;
	padding: 10px 0;
}

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