@charset "utf-8";

/*タグのリセット*/
html, body, div, span, object, h1, h2, h3, h4, h5, h6, p, 
em, img, small, strong, sub, 
dl, dt, dd, ol, ul, li, fieldset, form, label, 
article, aside, figcaption, figure, 
footer, header, menu, nav, section, time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
ul{
	list-style-type: none;
}

/***************************************ページベース設定***************************************/
/*ページ背景、フォントなど*/
body {
	color: #000;
	background: url(../img/bg_yellow.jpg) repeat;
	font-weight: normal;
	line-height: 2;
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	font-size: 16px;
}
.f120 {
	font-size: 120%;
}
.f80 {
	font-size: 80%;
}
.bold {
	font-weight: bold;
}

/*箇条書き設定*/
ol {
	padding-left: 2em;
}

dd {
	padding-left: 5em;
}

dt {
	font-weight: bold;
	float: left;
	width: 5em;
}

.square {
	list-style-type: square;
	margin-left: 1.5em;
}

.disc {
	list-style-type: disc;
	margin-left: 1.5em;
}

/*リンク設定*/
a {
	color: #00F;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}

/*幅設定*/
.wa {
	width: 100%;
}
.wl {
	width: 96%;
}

/*テキスト配置設定*/
.c {
	text-align: center;
}
.r {
	text-align: right;
}
.l {
	text-align: left;
}

/*FLOAT設定*/
.FR {
	float: right;
}

.FL {
	float: left;
	margin-right: 15px;
}
.clear {
	clear: both;
}


/*FONT色設定*/
.color_red, .f_red {
	color: #e90e0e; /*赤*/
}
.f_blue {
	color: #00f; /*青*/
}
.f_pink {
	color: #ff69b4; /*HOTPINK*/
}



/*背景色設定*/
.bg_white {
	background-color: #FFF; /*白*/
}
.bg_color {
	background-color: #fff9cc; /*クリーム*/
	border-radius: 6px;
}
.bg_water {
	background-color: #99ffff; /*水色*/
}
.bg_skin {
	background-color: #ffcc99; /*肌色*/
}
.bg_pink {
	background-color: #ffcccc; /*ピンク*/
}

/*表示・非表示設定*/
#sdisp {
	display: none;
}

/*コンテナ*/
#container {
	width: 1000px;	/*コンテナー幅*/
	margin-right: auto;
	margin-left: auto;
/*	background-color: #efefff; /*薄い青*/
}

/*サイトロゴ*/
header h1 {
	font-size: 16px;
	text-align: center;
	padding-top: 10px;
	font-weight: normal;
}

/*コンテンツ*/
#contents {
	clear: right;
}

#contents img {
	margin-bottom: 10px;
}

/*フッター設定*/
footer {
	clear: both;
	text-align: center;
	padding: 5px,0px;
/*	background-color: #E4A20B; /*山吹色*/
	color: #000;
	line-height: 1.5;
	font-size: 80%;
}

footer a {
	color: #333;
}
footer a:hover {
	color: #000;
}

/*ページの上へ戻る*/
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 55%;
}
#page-top a {
    background: #666;
    text-decoration: none;
    color: #fff;
    width: auto;
    padding: 5px;
    text-align: center;
    display: block;
    border-radius: 10px;
    opacity: 0.8;
}
#page-top a:hover {
    text-decoration: none;
    background: #999;
}
