@charset "utf-8";
/* CSS Document */
body{
	background-color: #F5F5F5;
}

.more-line a{
	background-color: #00AD50;
	padding: 15px 35px;
	border-radius: 4px;
}
.more-line a p{
	color: #fff;
}
.cate1 .line_wrap{
	position: relative;
	background-color: #FFFFFF;
	border: #D0D0D0 1px solid;
	border-radius: 10px;
	padding: 50px 140px;
	flex-direction: column;
	gap: 30px;
}
.cate1 .line_wrap .line_label p{
	color: #fff;
	line-height: 1;
	white-space: nowrap;
}

.cate1 .line_wrap .line_label::after{
	content: "";
	position: absolute;
	left: 50%;
	bottom: -10px;
	transform: translateX(-50%);
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 10px solid #191E2B;
}
.cate1 .line_wrap .line_label{
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #1f2433;
	padding: 14px 28px;
}
.cate1 .line_wrap .icon{
	width: 36px;
}

.contact-form_a .form-box{
	padding: 80px 65px;
	background-color: #FFFFFF;
	border: #D0D0D0 1px solid;
	border-radius: 10px;
}


.contact-form_a .send .send-bt {
    position: relative;
    border-radius: 200px;
    border: 2px solid #131313;
    background-color: #fff;
    overflow: hidden;
    box-sizing: border-box;
    transition: ease 1.0s;
}
.contact-form_a .send .send-bt .fa-solid {
    font-size: 18px;
    color: #131313;
	transition: transform 0.3s ease, color 0.3s ease;
}
.contact-form_a .send .send-bt:hover{opacity: 1;background-color: #fff;}
.contact-form_a .send .send-bt:hover .fa-solid {
 	transform: translateX(5px);
 	color: #131313;
}

.contact-form_a .send .send-bt{
	position: relative;
	z-index: 2;
	min-width: 240px;
	height: 60px;
	padding: 0 20px;
	justify-content: space-between;
}
.contact-form_a .send .send-bt p{
	font-weight: 700;
	color: #333333;
	line-height: 1;
	transform: translateY(2px);
	transition: ease 0.3s;
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
	.cate1 .line_wrap {
		padding: 50px 30px;
		gap: 20px;
	}
	.contact-form_a .form-box {
		padding: 80px 30px;
	}
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){

}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.cate1 .line_wrap {
		padding: 40px 20px 30px 20px;
		gap: 10px;
	}
	.contact-form_a .form-box {
		padding: 50px 20px;
	}
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

