@charset "UTF-8";
/*------------------------------------------------------------
ログイン画面
------------------------------------------------------------*/
.contentHeading {
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	padding-bottom: 10px;
	border-bottom: 2px solid #9AC841;
}

.serviceSection {
	margin-top: 20px;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 0 3px rgba(51, 51, 51, .15);
	display: flex;
	overflow: hidden;
}

.serviceBox:first-child {
	width: 40%;
}

.serviceBox:last-child {
	width: 60%;
}

.serviceTitle {
	padding: 7px 0;
	background: #eaeaea;
	font-size: 1.4rem;
	text-align: center;
}

.serviceBox:last-child .serviceTitle {
	border-left: 2px solid #fff;
}

.serviceBox .serviceList {
	padding: 13px 10px;
	height: calc(100% - 34px);
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.serviceBox:last-child .serviceList {
	border-left: 2px solid #f8f8f8;
}

.serviceBox .serviceList .serviceItem {
	text-align: center;
}

.serviceBox .serviceList .serviceItem + .serviceItem {
	margin-top: 20px;
}

.serviceBox .serviceList .serviceItem .serviceName {
	margin: 8px -5px 0;
	display: block;
	font-size: 1.2rem;
	line-height: 1.4;
	text-align: center;
}

.contentSubheading {
	margin-top: 40px;
	font-size: 1.4rem;
	text-align: center;
}

.button {
	margin: 10px 15px 0;
	box-sizing: border-box;
	padding: 11px 0;
	width: calc(100% - 30px);
	border: 2px solid #eda03a;
	border-radius: 100px;
	display: inline-block;
	color: #8ab339;
	font-size: 1.6rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
}

.button.buttonLogin {
	background: #eda03a;
	color: #fff;
}

.button.buttonRegister {
	color: #eda03a;
}