@charset "UTF-8";
/* =============================================================================

共通

============================================================================= */

/*________________________________________________________

HTML SELECTORS
________________________________________________________
*/

* {
	box-sizing: border-box;
}

html,body {
}

body {
	background: #fff;
	color: #3c3c3c;
	margin: 0;
    font-family : YuGothic, '游ゴシック', "メイリオ", Meiryo, sans-serif;
    font-weight: 500;
	line-height: 1.6;
}
ul {
	margin: 32px 0;
	padding: 0;
}
img {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}
body a {
	text-decoration: none;
}

ul {
	margin: 0;
	padding: 0;
}
ul li {
	list-style: none;
}
ul li::last-child {
	margin-bottom: 0px;
}
ul.list {
	margin-top: 8px;
	padding-left: 24px;
}
ul.list li {
	margin: 8px 0;
	list-style: disc;
}

ul.note {
	margin-top: 8px;
	font-size: 90%;
}
ul.note li:before {
	display: inline-block;
	margin-right: 8px;
	content: '※';
}

/*________________________________________________________

LINK
________________________________________________________
*/

a {
	color: #077e51;
}

.linkBtn {
	display: inline-block;
	padding: 0 1rem;
	background: #0073c4;
	border: 1px solid #fff;
	color: #fff;
	text-decoration: none;
	font-size: .75rem;
}
.linkBtn:before {
	display: inline-block;
	margin-right: .5em;
	content: '\f105';
	font-family: "Font Awesome 5 Free";
	line-height: 1.8;
	font-weight: 900;
}
.linkOut {
	margin: 0px 4px;
}
.linkOut:before {
	display: inline-block;
	margin-right: .3em;
	content: '\f2d2';
	font-family: "Font Awesome 5 Free";
	line-height: 1.8;
	font-weight: 900;
}

/*________________________________________________________

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


/*________________________________________________________

UTILITY
________________________________________________________
*/
.grayBox {
	border: 1px solid #eee;
	background-color: #f3f3f3;
	padding: 16px 32px;
}
.grayBox.big {
	font-size: 180%;
}

/* 文字
----------------------------- */
.small {
	font-size: 80%;
}
.big {
	font-size: 120%;
}
.bold {
	font-weight: bold;
}
.normal {
	font-weight: normal;
}
.txtR {
	text-align: right;
}
.txtC {
	text-align: center;
}
.red {
	color: #e60012;
}


/*________________________________________________________

	TABLE
	________________________________________________________
*/
.tbl {
	width: 94%;
	margin: 0 auto 32px auto;
	border-collapse: collapse;
	border: 1px solid #dadada;
}
.tbl dt {
	padding: 7px 10px 7px 15px;
	font-weight: bold;
	letter-spacing: .2em;
}
.tbl dd {
	margin: 0;
	padding: 7px 10px 7px 0px;
	border-bottom: solid #dadada 1px;
}
.tbl dd:last-child {
	border-bottom: none;
}
.tbl dd ul {
	margin: 0;
}
.tbl dd ul.history {
	padding-top: 16px;
}
.tbl dd ul.history li:last-child {
	border-bottom: none;
}
.tbl dd ul.history li {
	padding-left: 16px;
	margin-bottom: 8px;
	padding-bottom: 8px;
	border-bottom: 1px dotted #999999;
}
ul.list {
	padding-left: 24px;
}
ul.list li {
	list-style: disc;
}


/*________________________________________________________

HTML5
________________________________________________________
*/
article,aside,canvas,details,figcaption,figure,
footer,header,hgroup,menu,nav,section,summary {
	display:block;
}