@charset "utf-8";

* {
	margin: 0;
	padding: 0;
}

header,
main,
article,
section,
nav,
aside,
figure,
figcaption,
footer {
	display: block;
}

a {
	background-color: transparent;
	outline: none;
}

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

table {
	border-collapse: collapse;
	border: none;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

button,
input,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

input[type="checkbox"] {
	-webkit-appearance: checkbox;
	-moz-appearance: checkbox;
	appearance: checkbox;
}

input[type="radio"] {
	-webkit-appearance: radio;
	-moz-appearance: radio;
	appearance: radio;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

input {
	line-height: normal;
}

textarea {
	overflow: auto;
}

b,strong {
	font-weight: bold;
}

address {
	font-style: normal;
}

caption {
	text-align: left;
}


/* ---------- common ---------------------------------------- */
body {
	color: #202020;
	font-size: 100%;
	font-family: '游ゴシック','YuGothic','メイリオ','Meiryo','ＭＳ Ｐゴシック',sans-serif;
	font-weight: 500;
	line-height: 100%;
	background: #f8f5ef;
}

h1,h2,h3,h4,h5,h6 {
	color: #202020;
	font-size: 100%;
	font-weight: 500;
	line-height: 140%;
	letter-spacing: 0.1em;
}

p {
	font-size: 82%;
	letter-spacing: 1px;
	line-height: 180%;
}

th,td {
	font-size: 82%;
	font-weight: 500;
	line-height: 180%;
	letter-spacing: 1px;
	text-align: left;
	vertical-align: top;
}

dt,dd {
	font-size: 82%;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: 1px;
}

li {
	font-size: 100%;
	letter-spacing: 1px;
	list-style-type: none;
}

input,textarea,select {
	letter-spacing: 1px;
	line-height: 100%;
}

a:link,
a:visited,
a:hover,
a:active {
	color: #202020;
	text-decoration: none;
}

/* clearfix */
.clearfix:after {
	content: " ";
	display: block;
	clear: both;
}


/* ---------- container ---------------------------------------- */
#container {
	position: relative;
	overflow: hidden;
	min-width: 1000px;
}


/* ---------- main ---------------------------------------- */
#main {
	width: 900px;
	margin: 20px auto 60px;
	padding: 0 50px;
	background-color: #fff;
}


/* ---------- header ---------------------------------------- */
#header {
	position: relative;
	border-top: solid 4px #c8a040;
	position: relative;
	margin-bottom: 30px;
}

#header .logo {
	padding-top: 46px;
}
#header .logo-entry {
	position: absolute;
	top: 54px;
	right: 0;
}

/* ---------- footer ---------------------------------------- */
#footer {
	position: relative;
	clear: both;
	padding: 10px 0 50px;
	border-top: 1px solid #CCC;
}

/* fnav */
.fnav {
	text-align: right;
}
.fnav li {
	display: inline-block;
	margin-left: 15px;
}
.fnav li a {
	color: #be9634;
	font-size: 75%;
}
.fnav li a:hover {
	text-decoration: underline;
}
.fnav li a i {
	color: #9e9e9e;
	padding-right: 4px;
}

#footer .copyright {
	margin-top: -14px;
	color: #9e9e9e;
	font-size: 70%;
	line-height: 120%;
}

/* ---------- message ---------------------------------------- */
/* success */
.message.success {
	border: 3px solid #c8a040;
	color: #be9633;
	font-size: 100%;
	font-weight: bold;
	margin-bottom: 10px;
	padding: 18px 15px;
}
/* error */
.message.error {
	border: 3px solid #e20a16;
	color: #e20a16;
	font-size: 100%;
	font-weight: bold;
	margin-bottom: 10px;
	padding: 18px 15px;
}
