@charset "UTF-8";
#ss-preview {
	display: none;
}
#ss-query-string {
	margin-right: 30px;
	font-weight: normal;
}
#ss-navi {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.wrp-input {
	display: none;
}
.ss-search-button {
	display: block;
}
.ss-categories {
	display: none;
}
.results {
	margin-bottom: 50px;
}
.ttl-results {
	display: none;
}
.ss-navi-left {
	font-size: 20px;
	font-weight: bold;
	line-height: 29px;
	width: calc(100% - 430px);
}
.inner-navi {
	display: flex;
	justify-content: flex-end;
	column-gap: 8px;
}
.inner-navi > span {
	display: flex !important;
	border: 1px solid var(--color-text);
	height: 36px;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	align-items: center;
	justify-content: center;
	line-height: 1;
	font-size: 16px;
	font-weight: normal;
	width: 200px;
	cursor: pointer;
	transition-duration: .3s;
	transition-property: background-color, color;
	box-sizing: border-box;
}
.inner-navi > span.selected {
	background-color: var(--color-text);
	color: var(--color-white);
}
.ss-item {
	font-size: 16px;
	line-height: 28px;
	font-weight: normal;
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
}
.ss-item > .ss-page {
	width: calc(100% - 230px);
	display: flex;
	flex-wrap: wrap;
}
.ss-image {
	width: 200px;
	position: relative;
}
.ss-image > a {
	text-decoration: none;
	color: inherit;
	position: relative;
	display: block;
	padding-bottom: 75%;
	transition-duration: .3s;
	transition-property: opacity;
}
.ss-image > a > img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ss-image > a::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 1px solid var(--color-text);
	box-sizing: border-box;
	z-index: 1;
	pointer-events: none;
}
.ss-pagination .ss-page {
	min-width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--color-text);
	box-sizing: border-box;
	margin: 5px 5px;
	transition-duration: .3s;
	transition-property: opacity;
	cursor: pointer;
}
.ss-pagination .ss-select-page {
	background-color: var(--color-text);
	color: var(--color-white);
	pointer-events: none;
}
.ss-title {
	font-size: 18px;
	font-weight: 500;
	line-height: 27px;
	margin-bottom: 8px;
	width: 100%;
	font-weight: normal;
}
.ss-title > a {
	text-decoration: none;
	color: var(--color-steel-blue);
	font-weight: normal;
}
.ss-summary {
	width: 100%;
}
.ss-url {
	line-height: 24px;
	margin-bottom: 10px;
	margin-top: 8px;
	width: 100%;
}
.ss-url > a {
	text-decoration: none;
	color: var(--color-steel-blue);
	word-wrap: break-word;
}
.ss-content-length {
	font-size: 14px;
	line-height: 20px;
	display: inline-block;
}
.ss-last-modified {
	font-size: 14px;
	line-height: 20px;
	display: inline-block;
}
.ss-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 75px;
}
.ss-page-next {
	min-width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--color-text);
	box-sizing: border-box;
	margin: 5px 5px;
	transition-duration: .3s;
	transition-property: opacity;
	cursor: pointer;
	background-image: url(/assets/img/search/icn-next.svg);
	font-size: 0;
	background-repeat: no-repeat;
	background-size: 10px 10px;
	background-position: center center;
	margin-left: 15px;
}
.ss-page-prev {
	min-width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--color-text);
	box-sizing: border-box;
	margin: 5px 5px;
	transition-duration: .3s;
	transition-property: opacity;
	cursor: pointer;
	background-image: url(/assets/img/search/icn-prev.svg);
	font-size: 0;
	background-repeat: no-repeat;
	background-size: 10px 10px;
	background-position: center center;
	margin-right: 15px;
}
#ss-hint {
	margin-top: 20px;
}
#ss-hint-message {
	list-style: none;
}
#ss-hint-message > li {
	position: relative;
	padding-left: 10px;
}
#ss-hint-message > li::before {
	content: "";
	display: block;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background-color: currentColor;
	position: absolute;
	left: 0;
	top: 0.875em;
	transform: translateY(-50%);
}
#ss-total-hits {
	font-weight: normal;
}
#ss-show-counts {
	font-weight: normal;
}
#ss-query-string b {
	font-weight: normal;
}
#ss-total-hits b {
	font-weight: normal;
}
#ss-show-counts b {
	font-weight: normal;
}
@media screen and (min-width:1001px) and (hover:hover) {
	.ss-page-prev:hover {
		opacity: .6;
	}
	.inner-navi > span:hover {
		background-color: var(--color-text);
		color: var(--color-white);
	}
	.ss-image > a:hover {
		opacity: .7;
	}
	.ss-pagination .ss-page:hover {
		opacity: 0.6;
	}
	.ss-title > a:hover {
		text-decoration: underline;
	}
	.ss-url > a:hover {
		text-decoration: underline;
	}
	.ss-page-next:hover {
		opacity: .6;
	}
}
@media screen and (max-width: 1000px) {
	#ss-preview {}
	#ss-query-string {}
	#ss-navi {
		display: block;
	}
	.wrp-input {}
	.ss-search-button {}
	.ss-categories {}
	.results {}
	.ttl-results {}
	.ss-navi-left {
		width: auto;
		margin-bottom: 20px;
	}
	.inner-navi {}
	.inner-navi > span {}
	.inner-navi > span.selected {}
	.ss-item {}
	.ss-item > .ss-page {}
	.ss-image {}
	.ss-image > a {}
	.ss-image > a > img {}
	.ss-image > a::before {}
	.ss-pagination .ss-page {}
	.ss-pagination .ss-select-page {}
	.ss-title {}
	.ss-title > a {}
	.ss-summary {}
	.ss-url {}
	.ss-url > a {}
	.ss-content-length {}
	.ss-last-modified {}
	.ss-pagination {}
	.ss-page-next {}
	.ss-page-prev {}
}
@media screen and (max-width: 767px) {
	#ss-preview {}
	#ss-query-string {
		margin-right: 0;
		width: 100%;
		margin-bottom: 10px;
	}
	#ss-navi {}
	.wrp-input {}
	.ss-search-button {}
	.ss-categories {}
	.results {
		margin-bottom: 40px;
	}
	.ttl-results {}
	.ss-navi-left {
		font-size: 16px;
		display: flex;
		flex-wrap: wrap;
		line-height: 24px;
	}
	.inner-navi {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
	.inner-navi > span {
		width: auto;
	}
	.inner-navi > span.selected {}
	.ss-item {
		display: block;
		margin-bottom: 40px;
	}
	.ss-item > .ss-page {
		width: auto;
	}
	.ss-image {
		display: none;
	}
	.ss-image > a {}
	.ss-image > a > img {}
	.ss-image > a::before {}
	.ss-pagination .ss-page {
		min-width: 35px;
		height: 35px;
		margin: 2px 2px;
		font-size: 14px;
	}
	.ss-pagination .ss-select-page {}
	.ss-title {}
	.ss-title > a {}
	.ss-summary {}
	.ss-url {}
	.ss-url > a {}
	.ss-content-length {}
	.ss-last-modified {}
	.ss-pagination {
		margin-top: 38px;
	}
	.ss-page-next {
		min-width: 30px;
		height: 35px;
		margin: 2px 2px;
		margin-left: 5px;
	}
	.ss-page-prev {
		min-width: 30px;
		height: 35px;
		margin: 2px 2px;
		margin-right: 5px;
	}
	#ss-total-hits {
		margin-right: 0.5em;
	}
}
