a {
  color: #113B55;
}

.contact-page-contact {
	color: #113B55;
	background: #DFEAEA;
	border-radius: 36px;
	padding: 40px;
}

/* PC時：縦 SP時：横の区切り線 */
.contact-item {
	position: relative;
	flex: 1;
}
@media (min-width: 768px) {
	.contact-item:not(:last-child)::after {
		content: "";
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 2px;
		height: 80%;
		background: #D9D9D9;
	}
}
@media (max-width: 767px) {
	.contact-item:not(:last-child)::after {
		content: "";
		position: absolute;
		left: 50%;
		bottom: 0;
		transform: translateX(-50%);
		height: 2px;
		width: 40%;
		background: #D9D9D9;
	}
}
.form-bf-text {
	max-width:720px;
}
@media (max-width: 768px) {
	.form-bf-text {
		font-size: 0.95rem;
	}
}
.form-control, .form-select {
	height: 2.5rem;
	border: 1px solid #999;
	border-radius: 0;
}
.message-area {
	height: 260px !important;
	padding-top: 12px;
	resize: vertical;
}

.confirm-top-line {
	border-top: 2px solid #E6E9DB;
	border-bottom: 2px solid #E6E9DB;
}