@charset "UTF-8";
/* CSS Document */
/* lead
-----------------------------------------------*/
#lead {
	position: relative;
	z-index: 2;
	padding: 100px 0 85px;
	text-align: center;
}
#lead h2 {
	font-size: 34px;
	line-height: 1.3;
	color: #218642;
}
#lead p {
	font-size: 20px;
	margin-top: 20px;
}
@media only screen and (max-width: 768px) {
	#lead {
		padding: 40px 20px 30px;
	}
	#lead h2 {
		font-size: 22px;
	}
	#lead p {
		font-size: 14px;
		margin-top: 10px;
	}
}
@media only screen and (max-width: 320px) {
	#lead h2 {
		font-size: 20px;
	}
}
/* keyword
-----------------------------------------------*/
#keyword {
	position: relative;
	z-index: 1;
	background-color: #e9f2ae;
	padding: 100px 40px 130px;
}
#keyword p {
	text-align: center;
	font-size: 26px;
}
#keyword h2 {
	text-align: center;
	font-size: 42px;
	color: #218642;
}
#keyword .all {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 90px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding-top: 28px;
	background-color: #cbe29d;
	max-width: none;
	text-align: center;
}
#keyword .all li {
	margin: 0;
}
#keyword ul {
	font-size: 0;
	max-width: 880px;
	margin: 20px auto 0;
}
#keyword ul li {
	display: inline-block;
	vertical-align: top;
	width: 32%;
	margin: 20px 2% 0 0;
}
#keyword ul li:nth-child(3n) {
	margin-right: 0;
}
#keyword ul li label {
	overflow: hidden;
	position: relative;
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
	min-height: 35px;
}
#keyword ul li label input[type="checkbox"] {
	position: absolute;
	left: 0;
	top: 0;
	width: 35px;
	height: 35px;
	z-index: 1;
	margin: 0;
	padding: 0;
	border: none;
	background: none;
	display: block;
	opacity: 0;
	cursor: pointer;
}
#keyword ul li label span {
	display: inline-block;
	padding: 5px 0 0 45px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 16px;
}
#keyword ul li label span::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 35px;
	height: 35px;
	background-color: #fff;
	border: 3px solid #218642;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
#keyword ul li label input[type="checkbox"] + span::after {
	content: "";
	display: block;
	position: absolute;
	top: 4px;
	left: 11px;
	width: 8px;
	height: 16px;
	-webkit-transform: rotate(40deg);
	-ms-transform: rotate(40deg);
	transform: rotate(40deg);
	border-bottom: 6px solid #218642;
	border-right: 6px solid #218642;
	opacity: 0;
	-webkit-transition: opacity 0.2s cubic-bezier(0.21, 0.6, 0.35, 1);
	-o-transition: opacity 0.2s cubic-bezier(0.21, 0.6, 0.35, 1);
	transition: opacity 0.2s cubic-bezier(0.21, 0.6, 0.35, 1);
}
#keyword ul li label input[type="checkbox"]:checked + span::after {
	opacity: 1;
}
@media only screen and (max-width: 768px) {
	#keyword {
		background-color: #e9f2ae;
		padding: 40px 20px 85px;
	}
	#keyword p {
		font-size: 16px;
	}
	#keyword h2 {
		font-size: 26px;
		margin-top: 10px;
	}
	#keyword .all {
		height: 65px;
		padding-top: 20px;
	}
	#keyword ul {
		max-width: 880px;
		margin: 10px auto 0;
	}
	#keyword ul li {
		width: 49%;
		margin: 10px 2% 0 0;
	}
	#keyword ul li:nth-child(3n) {
		width: 49%;
		margin: 10px 2% 0 0;
	}
	#keyword ul li:nth-child(2n) {
		margin-right: 0;
	}
	#keyword ul li label {
		min-height: 25px;
	}
	#keyword ul li label input[type="checkbox"] {
		width: 25px;
		height: 25px;
	}
	#keyword ul li label span {
		padding: 3px 0 0 32px;
		font-size: 13px;
	}
	#keyword ul li label span::before {
		width: 25px;
		height: 25px;
		border: 2px solid #218642;
	}
	#keyword ul li label input[type="checkbox"] + span::after {
		top: 4px;
		left: 8px;
		width: 5px;
		height: 10px;
		border-bottom: 4px solid #218642;
		border-right: 4px solid #218642;
	}
}
/* company
-----------------------------------------------*/
#company {
	padding: 0 25px 85px;
}
#company .inner {
	max-width: 1200px;
	margin: 0 auto;
	font-size: 0;
}
.list_item {
	display: inline-block;
	vertical-align: top;
	width: 50%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 15px;
}
.is_hide {
	display: none;
}
#company .list_item .box {
	display: table;
	background-color: #e9f2ae;
	border: 4px solid #218642;
	border-radius: 30px;
	overflow: hidden;
	width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
#company .list_item .box:hover {
	opacity: 1;
}
#company .list_item .box .img {
	display: table-cell;
	vertical-align: middle;
	background-color: #fff;
	width: 180px;
	padding: 20px;
	text-align: center;
	overflow: hidden;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
}
#company .list_item .box .txt {
	position: relative;
	display: table-cell;
	vertical-align: top;
	padding: 25px;
}
#company .list_item .box .txt ul li {
	display: inline-block;
	margin-right: 5px;
	font-size: 13px;
}
#company .list_item .box .txt ul li.active {
	background-color: #e4e4e4;
}
#company .list_item .box .txt .ttl {
	margin-top: 20px;
}
#company .list_item .box .txt .ttl p {
	font-size: 13px;
}
#company .list_item .box .txt .ttl h3 {
	font-size: 26px;
	line-height: 1.3;
}
#company .list_item .box .txt > p {
	font-size: 13px;
	margin-top: 10px;
	line-height: 1.8;
}
#company .list_item .box .btn {
	position: absolute;
	left: 50%;
	bottom: 25px;
	display: block;
	background-color: #218642;
	font-size: 14px;
	color: #fff;
	text-align: center;
	max-width: 200px;
	width: 100%;
	padding: 12px 0;
	border-radius: 30px;
	margin: 20px auto 0 -100px;
	background: url("https://pntc.sslcs.cdngc.net/cdn/greenponta/cmn/img/ico_win_01.png") #218642 right 15px center no-repeat;
	-webkit-transition: background-color 0.4s cubic-bezier(0.21, 0.6, 0.35, 1), -webkit-transform 0.4s cubic-bezier(0.21, 0.6, 0.35, 1);
	transition: background-color 0.4s cubic-bezier(0.21, 0.6, 0.35, 1), -webkit-transform 0.4s cubic-bezier(0.21, 0.6, 0.35, 1);
	-o-transition: transform 0.4s cubic-bezier(0.21, 0.6, 0.35, 1), background-color 0.4s cubic-bezier(0.21, 0.6, 0.35, 1);
	transition: transform 0.4s cubic-bezier(0.21, 0.6, 0.35, 1), background-color 0.4s cubic-bezier(0.21, 0.6, 0.35, 1);
	transition: transform 0.4s cubic-bezier(0.21, 0.6, 0.35, 1), background-color 0.4s cubic-bezier(0.21, 0.6, 0.35, 1), -webkit-transform 0.4s cubic-bezier(0.21, 0.6, 0.35, 1);
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
}
#company .list_item .box .btn:hover {
	-webkit-transform: scale(1.04);
	-ms-transform: scale(1.04);
	transform: scale(1.04);
	background-color: #1f9542;
	opacity: 1;
}
#company .list_item .box .link {
	text-align: center;
}
#company .list_item .box .link a {
	text-decoration: underline;
}
#company .list_item .box .link a::after {
	content: "";
	display: inline-block;
	width: 12px;
	height: 12px;
	background: url("https://pntc.sslcs.cdngc.net/cdn/greenponta/cmn/img/ico_win_02.png");
	margin: 0 5px;
}
#company .list_item .box .link a:hover {
	text-decoration: none;
	opacity: 1;
}
/* my_item */
.list_item.my_item {
	width: 100%;
}
#company .list_item.my_item .box {
	background-color: #ffddb5;
	border-color: #eb6c01;
	height: auto !important;
}
#company .list_item.my_item .box .txt {
	padding: 25px;
}
#company .list_item.my_item .box .btn {
	background-color: #eb6c01;
	position: relative;
	left: 0;
	bottom: 0;
	margin-left: auto;
}
#company .list_item.my_item .box .img {
	width: 340px;
}
@media only screen and (max-width: 1100px) {
	#company .list_item .box .img {
		display: block;
		width: auto;
		border-top-left-radius: 0;
		border-bottom-left-radius: 0;
	}
	#company .list_item .box .txt {
		display: block;
	}
	#company .list_item.my_item .box .img {
		display: table-cell;
		width: 280px;
	}
	#company .list_item.my_item .box .txt {
		display: table-cell;
	}
	/* my_item */
}
@media only screen and (max-width: 768px) {
	#company {
		padding: 0 10px 40px;
	}
	.list_item {
		width: 100%;
		padding: 10px;
	}
	#company .list_item .box {
		border: 2px solid #218642;
		border-radius: 20px;
		height: auto !important;
	}
	#company .list_item .box .img {
		padding: 15px;
	}
	#company .list_item .box .img img {
		width: 140px;
	}
	#company .list_item .box .txt {
		padding: 15px;
	}
	#company .list_item .box .txt ul li {
		font-size: 12px;
	}
	#company .list_item .box .txt .ttl {
		margin-top: 10px;
	}
	#company .list_item .box .txt .ttl p {
		font-size: 12px;
	}
	#company .list_item .box .txt .ttl h3 {
		font-size: 20px;
	}
	#company .list_item .box .txt > p {
		font-size: 12px;
		margin-top: 10px;
	}
	#company .list_item .box .btn {
		position: relative;
		left: 0;
		bottom: 0;
		background-color: #218642;
		font-size: 14px;
		color: #fff;
		text-align: center;
		max-width: 200px;
		padding: 12px 0;
		border-radius: 30px;
		margin: 20px auto 0;
		background: url("https://pntc.sslcs.cdngc.net/cdn/greenponta/cmn/img/ico_win_01.png") #218642 right 15px center no-repeat;
		margin: 10px auto 0;
	}
	#company .list_item.my_item .box .img {
		display: block;
		width: 100%;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	#company .list_item.my_item .box .img img {
		width: 240px;
		max-width: 220px;
	}
	#company .list_item.my_item .box .txt {
		display: block;
	}
	/* my_item */
}
/* ponta
-----------------------------------------------*/
.ponta {
	position: absolute;
	width: 220px;
	opacity: 0;
	-webkit-transform: translateY(80px);
	-ms-transform: translateY(80px);
	transform: translateY(80px);
	-webkit-transition: all 1s cubic-bezier(0.4, 1, 0.18, 1.2);
	-o-transition: all 1s cubic-bezier(0.4, 1, 0.18, 1.2);
	transition: all 1s cubic-bezier(0.4, 1, 0.18, 1.2);
}
.ponta.fade {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
}
.ponta1 {
	left: 60px;
	z-index: -1;
}
.ponta2 {
	right: 60px;
	z-index: -1;
}
.ponta1, .ponta2 {
	bottom: 8%;
}
@media only screen and (max-width: 1300px) {
	.ponta {
		width: 180px;
	}
	.ponta1 {
		left: -15px;
		bottom: 0;
	}
	.ponta2 {
		right: -15px;
		bottom: 0;
	}
}
@media only screen and (max-width: 1000px) {
	.ponta {
		width: 140px;
	}
}
@media only screen and (max-width: 768px) {
	.ponta {
		display: none;
	}
}
/* アプリバナー
-----------------------------------------------*/
.gpa-banner {
	background: #f4f8d6;
}
.gpa-banner__inner {
	width: 512px;
	height: auto;
	margin: 0 auto;
	padding: 80px 0 80px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.gpa-banner__inner img {
	width: 100%;
	height: auto;
}
@media only screen and (max-width: 768px) {
	.gpa-banner__inner {
		width: 100%;
		padding: 30px 20px 90px;
	}
}