@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: 16px;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", 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 {
	margin: auto;
	text-align: center;
	padding: 0 20px;
	max-width: 100%;
	max-height: 100%;
	font-weight: bold;
	font-size: 18px;
	letter-spacing: 0.1em;
	line-height: 2.1;
}
@media screen and (min-width: 600px) {
	.img_center {
		padding: 0 20px;
		max-width: 100%;
		max-height: 100%;
		font-weight: bold;
		font-size: 24px;
		letter-spacing: 0.1em;
		line-height: 2.1;
	}
}
