
@charset "utf-8";

/* インターネットからのお問い合わせ */
.list-link {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.list-link > li {
	margin-bottom: 5px;
}
.list-link > li > a,
.list-link > li > a:hover {
	display: block;
	border: 2px solid #cbbc8c;
	border-radius: 8px;
	color: #534922;
	font-size: 16px;
	line-height: 20px;
	padding: 15px 10px;
	text-decoration: none;
	position: relative;
}
.list-link > li > a:after {
	content: "〉";
	color: #534922;
	position: absolute;
	right: 0;
}
.list-link > li > a small {
	font-size: 16px;
}
@media screen and (min-width: 768px) {
	.list-link {
		display: block;
		margin: 0 -10px;
	}
	.list-link > li {
		display: block;
		float: left;
		margin: 0 8px 8px 0;
		width: 250px;
	}
	.list-link > li:nth-child(3n) {
		margin-right: 0;
	}
	.list-link > li > a,
	.list-link > li > a:hover {
		display: table-cell;
		padding: 0 10px;
		vertical-align: middle;
		width: 250px;
		height: 60px;
	}
	.list-link > li > a:after {
		top: 20px;
	}
	.list-link > li > a small {
		font-size: 12px;
	}
}

/* お電話でのお問い合わせ */
.dl-tel > dt,
.dl-tel > dd,
.table-tel > tbody > tr > th,
.table-tel > tbody > tr > td {
	display: block;
	border: 1px solid #cbbc8c;
	font-size: 16px;
	font-weight: normal;
	padding: 10px;
}
.dl-tel > dt {
	background-color: #eadeb8;
}
.table-tel > tbody > tr > th {
	background-color: #fdf7e6;
}
.dl-tel > dd,
.table-tel > tbody > tr > td {
	background-color: #ffffff;
}
@media screen and (min-width: 768px) {
	.dl-tel {
		display: table;
		border-collapse: collapse;
		width: 100%;
	}
	.dl-tel > dt,
	.dl-tel > dd,
	.table-tel > tbody > tr > th,
	.table-tel > tbody > tr > td {
		display: table-cell;
	}
	.dl-tel > dt {
		width: 40%;
	}
	.table-tel > tbody > tr > th {
		width: 40%;
	}
	.dl-tel > dd,
	.table-tel > tbody > tr > td {
		width: 60%;
	}
}



