@charset "UTF-8";


/* ブラウザスタイルの初期化 */

html,body,div,ul,ol,li,dl,dt,dd,h1,h2,h3,h4,h5,h6,pre,form,p,blockquote,fieldset {
	margin: 0;
	padding: 0;
}
pre,code,address,caption,cite,code,em,strong,th {
	font-size: 1em;
	font-weight: normal;
	font-style: normal;
}
h1,h2,h3,h4,h5,h6 {
	font-size: 1em;
}
ul,ol {
	list-style: none;
}
fieldset,img {
	border: none;
}
caption,th {
	text-align: left;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
	font-size: inherit;
	font: 100%;
}
th,td {
	vertical-align: top;
}

/* デフォルトのフォントスタイル */
body {
	font-size: 13px; /* For modern browsers */
	*font-size: small;	/* For IE7 */
	font-family:"Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-weight: normal;
	font-style: normal;
	line-height:1.4;
	letter-spacing: 0;
	background-color: #fff;
	color: #2b2927;
}
/* デフォルトのフォームスタイル */
select,input,textarea,button {
	font-size: 99%;
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

textarea {
	font-family: inherit;
}

/* 送信ボタンスタイル */
button.submit-button {
	padding: 0;
	font-weight: bold;
	cursor: pointer;
	height: 25px;
	color: #fff;
	-moz-border-radius: 3px;	/* Firefox */
	-webkit-border-radius: 3px;	/* Safari, Chrome */
	-o-border-radius: 3px;	/* Opera */
	-ms-border-radius: 3px;		/* Internet Explorer */
	border-radius:3px;	/* CSS3 */
	background-color: #5e5b56;
	border-style: none;
}

button.submit-button:hover,
button.submit-button:active {
	background-color: #363431;
}

/* For IE7 */
*:first-child+html button {
	font-size: 100%;
	line-height: 1.1;
}

/* リンクテキスト (a) */
a:link {
	color: #2b2927;
	text-decoration:none;
}
a:visited {
	color: #2b2927;
	text-decoration:none;
}
a:hover,a:active{
	color: #ff5649;
	text-decoration:underline;
}

/* 外部リンク */
a.external {
	padding-right: 15px;
	color: #2772a9;
	background: url("../images/icon_external_20160926.png")  right 1px no-repeat;
}
a.external:hover,
a.external:active {
	color: #ff5649;
	background-position: right -17px;
}

/* 注釈 */
.notes {
	font-size: 85%;
	color: #a92731;
}
/* 補助テキスト */
.sup {
	color: #79756e;
	font-size: 85%;
}
/* 強調項目 */
.emphasis {
}

/* クリアフィックス */
/* For modern browsers */
.clearfix:before,
.clearfix:after {
	content:"";
	display:table;
	line-height: 0;
}
.clearfix:after {
	clear:both;
}
/* For IE7 */
.clearfix {
	*zoom:1;
}
