@charset "utf-8";
/* CSS Document */
.footer_contact{display: none;}
.linebox{
	position: relative;
	max-width: 740px;
	border-radius: 10px;
	padding: 60px 20px 50px;
	background-color: #fff;
	box-shadow: 0 3px 20px rgba(0,0,0,0.05);
	margin-left: auto;
	margin-right: auto;
	gap: 20px;
}
.linebox .comment_txt{
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,-50%);
	padding: 10px 20px;
	background-color: #191E2B;
	color: #fff;
	white-space: nowrap;
}
.linebox .comment_txt::after{
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate(-50%,-1px);
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 6px solid transparent;
	border-left: 6px solid transparent;
	border-top: 8px solid #191e2b;
	border-bottom: 0;
}
.linebox img{
	width: 36px;
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.linebox{
		padding: 50px 20px 30px;
		gap: 15px;
	}
	.linebox img{
		width: 32px;
	}
}

/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

