@charset "utf-8";

/* --------------------------------------------------
 *  CSSの初期化とUtilCSSの宣言
 *
 *  [1] CSS初期化
 *  [2] フロート
 *  [3] マージン
 *  [4] ディスプレイ
 *  [5] テキスト装飾
 *  [6] テキストサイズ
 *  [7] フォーム
 * -------------------------------------------------- */


/* --------------------------------------------------
 *  [1] CSS初期化
 * -------------------------------------------------- */
* {
	margin: 0;
	padding: 0;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

html{
	overflow-y: scroll;
}

body {
	color: #333;
	font-size: 12px;
}

table,img,p {
    border: 0;
}

address {
	font-style:normal;
} 

ul,
ol {
	margin: 0px;
	padding: 0px;
}

li {
    list-style-type: none;
	text-align: left;
}

select {
    border: solid 1px #CCC;
}

img {
	border: 0;
	vertical-align: bottom;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
	font-size: 12px;
}

table {
	border-collapse: separate;
	border-spacing: 0px;
	border-collapse:collapse;
}

th {
	font-weight: normal;
	text-align: left;
}

.picture {
    border: 1px solid #ccc;
}


/* --------------------------------------------------
 *  [2] フロート
 * -------------------------------------------------- */
.left {
	float: left;
	display: block;
}

.right {
	float:right;
	display: block;
}

.clear {
    clear: both;
	display: block;
}


/* --------------------------------------------------
 *  [3] マージン
 * -------------------------------------------------- */
.mrg10x0 {
	margin: 10px 0;
	display: block;
}

.mrg15x0 {
	margin: 15px 0;
	display: block;
}

.mrg30x0 {
	margin: 30px 0;
	display: block;
}

.mrg0x10 {
	margin: 0 10px;
	display: block;
}

.mrg0x15 {
	margin: 0 15px;
	display: block;
}

.mrg0x30 {
	margin: 0 30px;
	display: block;
}

.mrg10x0x0x0 {
	margin-top: 10px;
	display: block;
}

.mrg0x10x0x0 {
	margin-right: 10px;
	display: block;
}

.mrg0x20x0x0 {
	margin-right: 20px;
	display: block;
}

.mrg20x0x0x0 {
	margin-top: 20px;
	display: block;
}

.mrg30x0x0x0 {
	margin-top: 30px;
	display: block;
}

.mrg0x0x10x0 {
	margin-bottom: 10px;
	display: block;
}

.mrg0x0x0x0 {
	margin-bottom: 0px;
	display: block;
}

.mrg0x10x0x0 {
	margin-right: 10px;
	display: block;
}

.mrg0x0x20x0 {
	margin-bottom: 20px;
	display: block;
}

.mrg0x0x30x0 {
	margin-bottom: 30px;
	display: block;
}

.mrg0x0x40x0 {
	margin-bottom: 40px;
	display: block;
}

.mrg0x0x50x0 {
	margin-bottom: 50px;
	display: block;
}

.mrg0x0x0x30 {
	margin-left: 30px;
	display: block;
}


/* --------------------------------------------------
 *  [4] ディスプレイ
 * -------------------------------------------------- */
.inline {
	display: inline;
}

.block {
	display: block;
}

.hide {
	display: none;
}



/* --------------------------------------------------
 *  [5] テキスト装飾
 * -------------------------------------------------- */
.txtLeft {
	text-align: left;
}

.txtCenter {
	text-align: center;
}

.txtRight {
	text-align: right;
}

.bold {
	font-weight: bold;
}

.normal {
	font-weight: normal;
}

.red {
	color: #E71F19;
}

.darkRed {
	color: #A41215;
}

.white {
	color: #FFF;
}

.brown {
	color: #402f26;
}

.gold {
	color: #BE9237;
}

.gray {
	color: #818180;
}

.pink {
	color: #F83F75;
}

.icon01 {
	padding-left: 10px;
    background: url(../img/icon/ico_arrow_gray.png) left center no-repeat;
}

.icon02 {
	padding-left: 12px;
    background: url(../img/icon/ico_arrow_white.png) left center no-repeat;
}


/* --------------------------------------------------
 *  [6] テキストサイズ
 * -------------------------------------------------- */
.txt10 {
	font-size: 10px;
}

.txt11 {
	font-size: 11px;
}

.txt12 {
	font-size: 12px;
}

.txt14 {
	font-size: 14px;
}

.txt16 {
	font-size: 16px;
}

.txt18 {
	font-size: 18px;
}

.txt20 {
	font-size: 20px;
}

.txt30 {
	font-size: 30px;
}

.txt35 {
	font-size: 35px;
}

.lh120 {
	line-height: 120%;
}

.lh140 {
	line-height: 140%;
}

.lh19px {
	line-height: 19px;
}

.vaTxtTop {
	vertical-align: text-top;
}

.ls2px {
	letter-spacing: 2px;
}


/* --------------------------------------------------
 *  [7] フォーム
 * -------------------------------------------------- */
input[type='image'] {
    border: none;
}

input[type='text'],
input[type='password'] {
    border: 1px solid #CCC;
}

input[type='checkbox'],
input[type='radio'] {
	margin-right: 3px;
	vertical-align: text-top;
}
