@charset "utf-8";

/*-----------------------------------------------------
styles.css 追加CSS
-----------------------------------------------------*/

#sf-form .content-half .txt {
	line-height: 2.0;
}
#sf-form textarea {
	font-family: 'Noto Sans JP',sans-serif;
	line-height: 1.5;
}
#sf-form .item-text {
	line-height: 1.8;
	padding-top: 0.2em;
	padding-left:1em;
}
#sf-form .button-area > p {
	position: relative;
	background-color: #dcff48;
	border: 1px solid #dcff48;
	border-radius: 0 50px 50px 0;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
	-webkit-transition-timing-function: cubic-bezier(.075,.82,.165,1);
	transition-timing-function: cubic-bezier(.075,.82,.165,1);
	overflow: hidden;
	flex-basis: 300px;
	max-width: 300px;
	margin: 0 auto;
}
#sf-form .button-area > p:before, #sf-form .button-area > p:after  {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	height: 100%;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
	-webkit-transition-timing-function: cubic-bezier(.075,.82,.165,1);
	transition-timing-function: cubic-bezier(.075,.82,.165,1);
	pointer-events: none;
}
#sf-form .button-area > p:after  {
	background-color: #fff;
	z-index: 6;
	width: 0;
}
#sf-form .button-area > p > span {
	display: block;
	position: relative;
	z-index: 33;
}
#sf-form .button-area > p > span:after {
	content: "";
	display: block;
	position: absolute;
	top: 16px;
	right: 20px;
	background-image: url(../../assets/img/icon-morearrow.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-color: transparent;
	width: 16px;
	height: 16px;
}
#sf-form .button-area > p > span > input {
	display: block;
	z-index: 33;
	border: none;
	padding: 0;
	line-height: 50px;
	font-weight: 600;
	color: #000;
}
#sf-form .button-area > p:hover {
	border-color: #000;
}
#sf-form .button-area > p:hover:after {
	width: 100%;
	right: auto;
	left: 0;
}
#sf-form .button-area > p > span > input:hover {
	cursor: pointer;
}


@media screen and (max-width:480px) {
	
	#sf-form .button-area > p {
		width: 190px;
	}
	#sf-form .button-area > p > span:after {
		width: 12px;
		height: 12px;
		top: 12px;
		right: 12px;
	}
	#sf-form .button-area > p > span > input {
		line-height: 35px;
		font-size: 12px;
	}
	
}

