﻿@charset "UTF-8";

/* サイト共通使用CSS */

/* ================= 目次 =====================

【1】配置関連
【2】float 関連
【3】margin 関連
【4】hack 関連
【5】noscript

============================================ */

* {font-size:100%;}

/* =============================================================
　■□■ 1. 配置関連 ■□■
============================================================= */

/* ------------------ 画像中央寄せ -------------- */

.img-center{
	text-align: center;
}

.img-center img{
	margin-left: auto;
	margin-right: auto;
}

/* ------------------ 画像右寄せ -------------- */

.img-right{
	float: right;
	margin-left: 10px;
	margin-bottom: 10px;
}

.right{
	float: right;
	display: inline; /* For IE Only */	
}

/* ------------------ 画像左寄せ -------------- */

.img-left{
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}

.left{
	float: left;
	display: inline; /* For IE Only */	
}

/* ------------------ テキスト右寄せ -------------- */

.text-right{
	text-align: right;
}

/* ------------------ テキスト左寄せ -------------- */

.text-left{
	text-align: left;
}

/* ------------------ テキスト中央寄せ -------------- */

.text-center{
	text-align: center;
}

/* ------------------ テキストインデント -------------- */
.text-indent{
	text-indent: 1.0em;
	line-height: 1.5;
}

.text-indent p{
	margin-bottom: 6px;
}

.indent-none p,
p.indent-none{
	text-indent: 0em !important;
}

/* =============================================================
　■□■ 2. float 関連 ■□■
============================================================= */

/* ------------------ floatをここから回避 ------------------ */
.clear{
	clear: both;
}

/* -------- floatした中身がBOXからはみ出すのを回避 -------- */

.clearbox:after{
	content: "";
	display: block;
	clear: both;
	height: 0px;
}

.clearbox{
	height: 100%;
}


/* =============================================================
　■□■ 3. margin 関連 ■□■
============================================================= */

/* -------------- 上 -------------- */

.top0{
	margin-top: 0px;
}

.top5{
	margin-top: 5px;
}

.top10{
	margin-top: 10px;
}

.top15{
	margin-top: 15px;
}

.top20{
	margin-top: 20px;
}

.top30{
	margin-top: 30px;
}

/* -------------- 下 -------------- */
.bottom0{
	margin-bottom: 0px;
}

.bottom5{
	margin-bottom: 5px;
}

.bottom10{
	margin-bottom: 10px;
}

.bottom15{
	margin-bottom: 15px;
}

.bottom20{
	margin-bottom: 20px;
}

.bottom30{
	margin-bottom: 30px;
}

.bottom40{
	margin-bottom: 40px;
}

.bottom250{
	margin-bottom: 250px;
}

/* -------------- 左 -------------- */
.left10{
	margin-left: 10px;
}

.left20{
	margin-left: 20px;
}

/* -------------- 右 -------------- */
.right8{
	margin-right: 8px;
}

.right10{
	margin-right: 10px;
}

.right20{
	margin-right: 20px;
}

/* -------------- 上下 -------------- */

.tb15{
	margin: 15px 0;
}

/* -------------- 左右 -------------- */
.rl15{
	margin-left: 15px;
	margin-right: 15px;
}

.w50{
	width: 50px;
}

.w80{
	width: 80px;
}

#inner p.m-none{
	margin-bottom: 0px !important;
	text-indent: 1.0em !important;
}

/* =============================================================
　■□■ 4. hack 関連 ■□■
============================================================= */

/* -------- 中身をfloatした場合も背景を下まで伸ばす -------- */

.clearfix:after
{
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix
{
	display: inline-block;
}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */

/* -------- IE5.5 ＆ IE6のみで起きる不具合の回避 -------- */

/* Hides from IE5-mac \*/
* html .hollyhack {height: 1%;}
/* End hide from IE5-mac */

/* =============================================================
　■□■ 5. noscript ■□■
============================================================= */

/* ------------- noscript ------------- */
#noscript
{
	clear: both;
	font-size: 82%; /* ----- 文字サイズ固定の場合／font-size: 10px; ----- */
	color: red;
	margin: 10px 0 0 15px;
	padding: 5px 0 10px 28px;
	background: url(/img/icon_attn.gif) no-repeat;
	background-position: 0em 0.2em;
}