@charset "utf-8";
/*------------------------------------------------------------
	書式設定
------------------------------------------------------------*/
/* テキストの位置 */
.taLeft { text-align: left !important; }
.taCenter { text-align: center !important; }
.taRight { text-align: right !important; }

/* フォントの大きさ（プラス） */
.fsP1 { font-size: 1.08em !important; }
.fsP2 { font-size: 1.16em !important; }
.fsP3 { font-size: 1.24em !important; }
.fsP4 { font-size: 1.32em !important; }
.fsP5 { font-size: 1.4em !important; }

/* フォントの大きさ（マイナス） */
.fsM1 { font-size: 0.92em !important; }
.fsM2 { font-size: 0.84em !important; }
.fsM3 { font-size: 0.76em !important; }
.fsM4 { font-size: 0.68em !important; }
.fsM5 { font-size: 0.6em !important; }

/* フォントの太さ */
.fwNormal { font-weight: normal !important; }
.fwBold { font-weight: bold !important; }

/* 221118以前のカラー #29b572 */
/*本文中テキストリンク*/
.teLink{
    color: #29b572 !important;
    font-weight: bold !important;
    text-decoration: underline !important;
}
.teLink:hover{
    text-decoration: none !important;
}


/*------------------------------------------------------------
	微調整用クラス（※多用しないこと）
------------------------------------------------------------*/
.mt0 { margin-top: 0 !important; }
.mt10 { margin-top: 10px !important; }
.mt15 { margin-top: 15px !important; }
.mt20 { margin-top: 20px !important; }
.mb0 { margin-bottom: 0 !important; }
.mb10 { margin-bottom: 10px !important; }
.mb15 { margin-bottom: 15px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb60 { margin-bottom: 60px !important; }
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
	* html .clearfix {
		zoom: 1;
	}

	*+html .clearfix {
		zoom: 1;
	}

.clearfix:after {
	height: 0;
	visibility: hidden;
	content: ".";
	display: block;
	clear: both;
}

*{
    box-sizing: border-box;
}

/*------------------------------------------------------------
	pageTitle
------------------------------------------------------------*/
.pageTitle {
	min-height: 300px;
	/* background: rgb(115,227,47);
	background: linear-gradient(60deg, rgba(115,227,47,1) 0%, rgba(8,219,186,1) 100%); */
	background-color: #a0f38f;
}

.pageTitle h2 {
	padding-top: 131px;
	color: #fff;
	font-size: 30px;
	text-align: center;
	letter-spacing: 4px;
	line-height: 1.25;
}

.pageTitle h2 span {
	display: inline-block;
	border-bottom: 2px solid #fff;
}

@media all and (min-width: 0) and (max-width: 767px) {

	.pageTitle {
		min-height: 126px;
	}

	.pageTitle h2 {
		padding-top: 55px;
		font-size: 18px;
		letter-spacing: 2px;
	}

	.pageTitle h2 span {
		border-bottom: 1px solid #fff;
	}

}

