@charset "utf-8";

/* 共通設定
--------------------------------------------------------------------------------------------------------------------*/
html,body,h1,h2,h3,h4,h5,h6,ul,ol,li,div,p,dl,dt,dd,form,table,tr,th,td {
	margin: 0;
	padding: 0;
}

table,tr,th,td {
	font-size: 100%;
	text-align: left;
}
table {
	border-collapse: collapse;
}
ul {
	list-style: none;
}
input, textarea {
	font-size: 1em;/* for IE */
}


/* 共通クラス
----------------------------------------------------------------------------------*/
/* フロート
-------------------------------------------------*/
.fLeft {
	float: left;
}
.fRight {
	float: right;
}
.fClear {
	clear: both;
}

/* テキスト揃え方向ヨコ
-------------------------------------------------*/
.text-right {
	text-align: right;
}
.text-center {
	text-align: center;
}
.text-left {
	text-align: left;
}

/* テキスト揃え方向タテ
-------------------------------------------------*/
.valign-top {
	vertical-align: top;
}
.valign-middle {
	vertical-align: middle;
}
.valign-bottom {
	vertical-align: bottom;
}

/* マージン
-------------------------------------------------*/
/* 上 */
.marTop5 {
	margin-top: 5px;
}
.marTop10 {
	margin-top: 10px;
}
.marTop15 {
	margin-top: 15px;
}
.marTop20 {
	margin-top: 20px;
}
.marTop25 {
	margin-top: 25px;
}
.marTop30 {
	margin-top: 30px;
}
.marTop35 {
	margin-top: 35px;
}
.marTop40 {
	margin-top: 40px;
}

/* 右 */
.marRight5 {
	margin-right: 5px;
}
.marRight10 {
	margin-right: 10px;
}
.marRight15 {
	margin-right: 15px;
}
.marRight20 {
	margin-right: 20px;
}
.marRight25 {
	margin-right: 25px;
}
.marRight30 {
	margin-right: 30px;
}
.marRight35 {
	margin-right: 35px;
}
.marRight40 {
	margin-right: 40px;
}

/* 下 */
.marBottom5 {
	margin-bottom: 5px;
}
.marBottom10 {
	margin-bottom: 10px;
}
.marBottom15 {
	margin-bottom: 15px;
}
.marBottom20 {
	margin-bottom: 20px;
}
.marBottom25 {
	margin-bottom: 25px;
}
.marBottom30 {
	margin-bottom: 30px;
}
.marBottom35 {
	margin-bottom: 35px;
}
.marBottom40 {
	margin-bottom: 40px;
}

/* 左 */
.marLeft5 {
	margin-left: 5px;
}
.marLeft10 {
	margin-left: 10px;
}
.marLeft15 {
	margin-left: 15px;
}
.marLeft20 {
	margin-left: 20px;
}
.marLeft25 {
	margin-left: 25px;
}
.marLeft30 {
	margin-left: 30px;
}
.marLeft35 {
	margin-left: 35px;
}
.marLeft40 {
	margin-left: 40px;
}

/* マージン無し */
.marZero {
	margin: 0 !important;
}


/* パディング
-------------------------------------------------*/
/* 上 */
.padTop5 {
	padding-top: 5px;
}
.padTop10 {
	padding-top: 10px;
}
.padTop15 {
	padding-top: 15px;
}
.padTop20 {
	padding-top: 20px;
}
.padTop25 {
	padding-top: 25px;
}
.padTop30 {
	padding-top: 30px;
}
.padTop35 {
	padding-top: 35px;
}
.padTop40 {
	padding-top: 40px;
}

/* 右 */
.padRight5 {
	padding-right: 5px;
}
.padRight10 {
	padding-right: 10px;
}
.padRight15 {
	padding-right: 15px;
}
.padRight20 {
	padding-right: 20px;
}
.padRight25 {
	padding-right: 25px;
}
.padRight30 {
	padding-right: 30px;
}
.padRight35 {
	padding-right: 35px;
}
.padRight40 {
	padding-right: 40px;
}

/* 下 */
.padBottom5 {
	padding-bottom: 5px;
}
.padBottom10 {
	padding-bottom: 10px;
}
.padBottom15 {
	padding-bottom: 15px;
}
.padBottom20 {
	padding-bottom: 20px;
}
.padBottom25 {
	padding-bottom: 25px;
}
.padBottom30 {
	padding-bottom: 30px;
}
.padBottom35 {
	padding-bottom: 35px;
}
.padBottom40 {
	padding-bottom: 40px;
}

/* 左 */
.padLeft5 {
	padding-left: 5px;
}
.padLeft10 {
	padding-left: 10px;
}
.padLeft15 {
	padding-left: 15px;
}
.padLeft20 {
	padding-left: 20px;
}
.padLeft25 {
	padding-left: 25px;
}
.padLeft30 {
	padding-left: 30px;
}
.padLeft35 {
	padding-left: 35px;
}
.padLeft40 {
	padding-left: 40px;
}

/* パディング無し */
.padZero {
	padding: 0 !important;
}



/* ボーダー対策
-------------------------------------------------*/
img {
	border: none;
}


/* アウトライン対策
-------------------------------------------------*/
object {
	outline: none;
}


/* clear:float
--------------------------------------------------------------------------------------------------------------------*/
.clearfix {
	display: inline-block; /* for Mac IE */
	zoom: 1;/*for IE 5.5-7*/
}
.clearfix:after {/*for modern browser*/
	content: "";
	height: 0;
	clear: both;
	display: block;
}
/* Mac版IEを除外 \*/
.clearfix { display: block; }
/* */

