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

共通

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

/*________________________________________________________

HTML SELECTORS
________________________________________________________
*/

* {
	box-sizing: border-box;
}
body {
	color: #3b3b3b;
	margin: 0;
    font-family : 'Noto Sans JP', YuGothic, '游ゴシック', "メイリオ", Meiryo, sans-serif;
    font-weight: 500;
	line-height: 1.6;
}

img {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}
li {
	list-style: none;
}

/*________________________________________________________

LINK
________________________________________________________
*/

a {
	color: #00a651;
	text-decoration: none;
}

.btn {
	display: inline-block;
	padding: 4px 40px;
	text-align: center;
	background-color: #48483e;
	color: #fff;
	text-decoration: none;
}
.btn.green {
	background-color: #a6ce39;
	color: #212121;
}
.btn:before {
	display: inline-block;
	margin-right: .5em;
	content: '\f105';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	line-height: 1.8;
}
.linkOut {
	margin: 0px 4px;
}
.linkOut:before {
	display: inline-block;
	margin-right: .3em;
	content: '\f2d2';
	font-family: "Font Awesome 5 Free";
	line-height: 1.8;
}

/*________________________________________________________

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


/*________________________________________________________

UTILITY
________________________________________________________
*/

/* レイアウト
----------------------------- */
.imgL:after {
	content: "";
	clear: both;
	display: block;
}
.imgL img {
	float: left;
	margin: 0 32px 24px 0;
}
.imgR:after {
	content: "";
	clear: both;
	display: block;
}
.imgR img {
	float: right;
	margin: 0 0 24px 32px;
}
.imgL p,
.imgR p {
	overflow: hidden;
}
.grayBox {
	border: 1px solid #eee;
	background-color: #f3f3f3;
	padding: 16px;
}

/* 文字
----------------------------- */
.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;
}


/* テーブル
----------------------------- */
.tbl {
	width: 100%;
	margin: 16px 0px;
	border-collapse: collapse;
	background-color: #FFF;
	border: 1px solid #48483e;
}
.tbl th,.tbl td {
	padding: 16px 24px;
}
.tbl tr:last-child th, .tbl tr:last-child td {
	border: none;
}
.tbl th {
	background-color: #48483e;
	font-weight: normal;
	color: #FFF;
	white-space: nowrap;
	border-bottom: 1px solid #bcbcbc;
}
.tbl td {
	border-bottom: 1px solid #dfdfdf;
}
.tbl ul {
	margin: 0;
	padding-left: 24px;
}

/* 
	ページトップ
-------------------------------------*/
a.pagetop {
	position: fixed;
	display: block;
	right: 24px;
    bottom: 40px;
	width: 74px;
	height: 74px;
	padding: 8px;
    cursor: pointer;
	color: #FFF;
	font-size: 130%;
	line-height: 90%;
	text-align: center;
	text-decoration: none;
	border-radius: 100px;
	background-color: rgba(109,185,43,0.7);
    z-index: 10;
}
.pagetop:before {
	display: block;
	font-family: "Font Awesome 5 Free";
	line-height: 1.8;
	content: '\f062';
	font-weight: 900;
}

/*________________________________________________________

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