@charset "utf-8";
/* CSS Document */
/*-------------------------------------------------------------------
　リセットCSS + サイト共通設定
------------------------------------------------------------------------------*/
/* 全ての要素に対する余白初期値設定 */
body,
h1,h2,h3,h4,h5,h6,
p,ul,ol,dl,dt,dd,li,
table,th,td,
form,select,option,input
address,pre,strong,em,iframe,img{
	margin:0;
	padding:0;
	font-size:100%;
	font-style: normal;
	font-weight: normal;
	line-height: 1.5;
	border:0;
}
/* デフォルト文字設定 */
body{
	color: #000000;
	background: #FFFFFF;
	line-height: 1.5;
		font-size: 13px;
    font-family:
    	Verdana, Arial,
    	'ヒラギノ角ゴ Pro W3',
    	'Hiragino Kaku Gothic Pro',
    	Osaka,
    	'ＭＳ Ｐゴシック',
    	sans-serif;
}
ul,ol{
	list-style-type:none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* 画像とフォームパーツの上下位置をテキストの真ん中に */
input, select, textarea {
	vertical-align: middle;
}
img {
	border-width: 0px;
	vertical-align: top;
}
/* デフォルトリンク色の設定 */
a {
	color: #ff0055;
	text-decoration: underline;
}
a:visited {
	color: #ff0055;
	text-decoration: underline;
}
a:hover {
	color: #888888;
	text-decoration: none;
}

/* 画像リンクの設定 */
a img{
	opacity:1;
	filter: alpha(opacity=100);
}
img{
	max-width: 100%;
	height: auto;
	width /***/:auto;　/*IE8のみ適用*/
}
.bnr_opacity a:hover img {
	filter: alpha(opacity=70);
    -moz-opacity:0.70;
    opacity:0.70;
}
/*	clearfix
---------------------------------------------------------------------------*/
.clearfix:after {
	content: "";
	display: block;
	clear: both;
	height:0;
}
* html .clearfix { zoom:1; } /*for IE6*/
*:first-child+html .clearfix { zoom:1; } /*for IE7*/
.cb {
	clear: both;
}

/*----------------------------------------------------------------------------------------

　レイアウト

-----------------------------------------------------------------------------------------*/
html{
  display: table;
  width: 100%;
  height: 100%;
}

body{
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

.img_center {
	max-width: 100%;
		max-height: 100%;		
}

@media ( max-width : 768px ) {
	.img_center {
		max-width: 90%;
			max-height: 90%;
			text-align: center;
			margin: 0 auto;
	}
}
