@charset "UTF-8";

/*************************************************
	すべて見るボタン
**************************************************/
#main .whiteBox {
	margin: 0 10px;
	background-color: #fff;
	padding: 15px 15px 12px;
}

.hidecontents-wrap {
	position: relative;
}
.hidecontents-wrap + .hidecontents-wrap {
	margin-top: 40px;
}
.hidecontents-btn {
	z-index: 2;
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	text-decoration: none;
	color: #C72417;
	font-weight: bold;
	display: inline-block;
	border: 1px solid #C72417;
	text-align: center;
	margin: 10px auto;
	padding: 10px 0;
	font-size: 1.0em;
	width: 200px;
	background: #fff;
}
.hidecontents-btn::after {
	content: "＋すべて見る"
}
.hidecontents-btn:hover {
	background: #fff;
	color: #C72417;
}
.hidecontents-btn .fa {
	margin-right: .5em;
}
.hidecontents-item {
	position: relative;
	overflow: hidden;
}
/*　お探しの地域から探す　*/
.arealinkItem {
	height: 300px;
}
/*　ポイント　*/
.pointItem {
	height: 150px;
}
.hidecontents-item p + p {
	margin-top: 1em;
}
.hidecontents-item::before {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100px; /*グラデーションで隠す範囲*/
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
	background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
}
.hidecontents-trigger {
	display: none;
}
.hidecontents-trigger:checked ~ .hidecontents-btn {
	bottom: -4em;
}
.hidecontents-trigger:checked ~ .hidecontents-btn::after {
	content: "－閉じる"
}
.hidecontents-trigger:checked ~ .hidecontents-btn .fa {
	transform: rotate(180deg);
}
.hidecontents-trigger:checked ~ .hidecontents-item {
	height: auto;
	margin-bottom: 50px;
}
.hidecontents-trigger:checked ~ .hidecontents-item::before {
	display: none;
}

.hidecontents-item p {
	margin-bottom: 5px;
	color: #C72417;
	text-align: left;
	font-weight: bold;
}

.hidecontents-item ul {
	margin-bottom: 20px;
	text-align: left;
}

.hidecontents-item li {
	display: inline-block;
}

.hidecontents-item li a {
	margin-right: 2px;
	font-size: 0.8em;
}
.hidecontents-item li a:hover {
	text-decoration: underline;
}
