/* result-page.inc.php */
.horoscope h2 {
}

.horoscope .horoscope_detail_sogo {
	margin-top: 2rem;
}

.horoscope .horoscope_detail_sogo_star {
}

.horoscope .horoscope_detail_sogo_star > img {
	width: auto;
	height: 2.5em;
}

.horoscope .horoscope_detail_sogo_col {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}

.horoscope .horoscope_detail_sogo_col > *:nth-child(1) {
	flex: 0 0 auto;
}

.horoscope .horoscope_detail_sogo_col > *:nth-child(2) {
	flex: 0 0 10rem;
}

.horoscope .horoscope_detail_sogo_col_item {
	text-align: center;
}

.horoscope .horoscope_detail_sogo_title {
	font-size: 200%;
	line-height: 2.5rem;
}

.horoscope .horoscope_detail_sogo_title b {
	font-weight: bold;
}

.horoscope .horoscope_detail_sogo_title small {
	font-size: 66%;
}

.horoscope .horoscope_detail_sogo_rank {
	font-size: 150%;
	font-weight: bold;
}

.horoscope .horoscope_detail_sogo_rank b {
	font-size: 200%;
	font-weight: bold;
	color: #c00;
}

.horoscope .horoscope_detail_sogo_image {
	width: auto;
	height: 100%;
}

.horoscope .horoscope_detail_sogo_text1 {
	margin-top: 2rem;
}

.horoscope .horoscope_detail {
	margin-top: 2rem;
}

.horoscope .horoscope_detail_star > img {
	width: auto;
	max-height: 2.5em;
}

@media (min-width: 768px) {
	.horoscope .horoscope_border {
		border: solid thin silver;
		padding: 2rem 4rem;
	}

	.horoscope .horoscope_detail_sogo_col {
		gap: 4rem;
	}

	.horoscope .horoscope_detail_sogo_col_item:nth-child(1) {
		order: 1;
	}

	.horoscope .horoscope_detail_sogo_col_item:nth-child(2) {
		order: 2;
	}

}

@media (max-width: 768px) {
	.horoscope .horoscope_border {
		border: none;
		padding: 2rem 0;
	}

	.horoscope .horoscope_detail_sogo_col {
		gap: 2rem;
	}

	.horoscope .horoscope_detail_sogo_col_item:nth-child(1) {
		order: 2;
	}

	.horoscope .horoscope_detail_sogo_col_item:nth-child(2) {
		order: 1;
	}

}



/* top-page.inc.php */
.horoscope .seiza_layout {
	display: flex;
	flex-flow: row wrap;
}

.horoscope .seiza_layout > * {
	flex: auto;
	max-width: calc(100% / 3);
}

.horoscope .seiza_item {
	padding: 1rem;
}

.horoscope .seiza_item * {
	line-height: 1;
	text-align: center;
}

.horoscope .seiza_item > a {
	display: block;
	text-decoration: none;
}

.horoscope .seiza_item > a:hover {
	filter: opacity(0.75);
	transition: filter 1s;
}

.horoscope .seiza_name_kana {
	white-space: nowrap;
	font-weight: bold;
	color: #555;
}

.horoscope .seiza_date_range {
	white-space: nowrap;
	font-size: 70%;
	color: #555;
}

