@charset "utf-8";

.searchResult .result{
	background: #f3f6f8;
	text-align: center;
	font-size: 2.0rem;
	font-weight: 600;
	padding: 70px 0;
	margin: 0 0 90px;
}
.searchResult .number{
	width: 96%;
	max-width: 1380px;
	border-bottom: 2px solid #0081cc;
	margin: 0 auto 1em;
	padding: 0 0 1em;
}
.searchResult .number span{
	font-weight: 600;
	font-size: 1.6rem;
}
.searchResult .resultPost{
	width: 96%;
	max-width: 1380px;
	margin: 0 auto;
}
.searchResult .resultPost li{
	border-bottom: 1px solid #e2e7ea;
	padding: 0 0 1em;
}
.searchResult .resultPost li .ttl{
	font-weight: 600;
	color: #0081cc;
}
.searchResult .resultPost li+li{
	margin: 1em 0 0 0;
}
.searchResult .resultPost li a{
	display: block;
	transition: 0.3s;
}
.searchResult .resultPost li a:hover{
	opacity: 0.7;
	text-decoration: none;
}
.searchResult .highlight{
	background: #e4eff6;
	font-weight: 600;
}
.more{
	width: 280px;
	font-size: 1.4rem;
	text-align: center;
	margin: 80px auto 0;
}
.more a{
	position: relative;
	display: block;
	background: #fff;
	line-height: 1.0;
	color: #0081cc;
	font-weight: 600;
	border: 1px solid #0081cc;
	padding: 22px 0;
	transition: 0.3s;
	cursor: pointer;
}
.more a::after{
	content: '';
	position: absolute;
	top: 50%;
	right: 22px;
	width: 6px;
	height: 6px;
	border-bottom: 2px solid #0081cc;
	border-right: 2px solid #0081cc;
	transform: rotate(45deg);
	margin-top: -4px;
}
.more a:hover{
	text-decoration: none;
	opacity: 0.7;
}

.searchResult b {
	background: #e4eff6;
	font-weight: 600;
}

.is-hidden {
	display: none;
}

.searchMessage {
	width: 96%;
	max-width: 1380px;
	margin: 0 auto 1em;
	padding: 0 0 1em;
}

#app {
	margin-bottom: 80px;
}
#app[v-cloak] {
	display: none;
}

@media screen and (max-width: 1000px) and (min-width: 768px) {
	.searchResult .result{
		padding: 5% 0;
		margin: 0 0 5%;
	}
	.searchResult .number span{
		font-size: 1.8vw;
	}
	.more{
		font-size:1.4vw;
		margin: 5% auto 0;
	}
	.more a{
		padding:1.5em 0;
	}

	#app {
		margin-bottom: 5%;
	}
}

@media screen and (max-width: 767px) {
	
	.searchResult .result{
		font-size: 4.6vw;
		line-height: 1.4;
		padding: 5% 0;
		margin: 0 0 5%;
	}
	.searchResult .number{
		width: 100%;
		font-size: 4.0vw;
		box-sizing: border-box;
		padding: 0 7.5% 0.5em;
	}
	.searchResult .number span{
		font-size: 4.6vw;
	}
	.searchResult .resultPost{
		width: 100%;
	}
	.searchResult .resultPost li{
		padding: 0 7.5% 1.5em;
	}
	.searchResult .resultPost li+li{
		margin-top: 1.5em;
	}
	.more{
		width: 85%;
		margin: 8% auto 0;
	}
	.more a{
		padding: 1.5em 0;
	}

	#app {
		margin-bottom: 15%;
	}
}