@charset "UTF-8";

/* -------------- Resetting Again Base CSS Start -------------- */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, main,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	background: #ee3545;
	font-size: 12px;
}
ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* -------------- フォーム用リセット -------------- */
input,
button,
select,
textarea {
/*	-webkit-appearance: none; */
/*	-moz-appearance: none; */
/*	appearance: none; */
	background: transparent;
	border: none;
	border-radius: 0;
/*	font: inherit; */ /* font系のスタイル継承 */
	outline: none;
}

textarea {
	resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
	display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
/*	display: none; */
}

*:focus {
	outline: none;
}

/* -------------- clearfix -------------- */
.clearfix {
	overflow: hidden;
}

.clearboth {
	clear: both;
}

* html .clearfix {
	zoom: 1;
}

/* --------------  -------------- */
#container {
	width: 950px;
	margin: 30px auto;
	padding: 0 30px 30px;
	border:5px solid #1a8d6c;
	background-color:#ffffff;
}

#container h2 {
	text-align: center;
}

#container ul {
	list-style: none;
}

#container li {
	text-align: center;
	margin: 0 auto;
	padding: 1em 0;
	border-bottom: 2px dotted #8cc6b5;
}


p.area-btn {
	text-align: center;
	margin: 20px auto;
}


#container a:link { color:#1251c6;text-decoration:none; }
#container a:active,a:hover { color: #1251c6;text-decoration:underline;}
#container a:visited { color:#1251c6;text-decoration:none; }


#footer {
	width:100%;
	margin:0 auto;
	line-height:1.6;
	color: #fff;
	padding:10px 0 20px 0;
	text-align: center;

}