@charset "UTF-8";
/* =====================================================================
 * Fortune Shop 固定ページ・投稿・下層ページ共通
 * ===================================================================== */

/* -------------------- ページ見出し（下層FV） -------------------- */
.page-hero {
	position: relative;
	padding: 85px 0 85px;
	text-align: center;
	overflow: hidden;
	background: linear-gradient(180deg, var(--c-navy) 0%, var(--c-navy-2) 100%);
	color: #fff;
}

.page-hero__glow {
	position: absolute;
	top: -30%;
	left: 50%;
	width: 90%;
	height: 90%;
	transform: translateX(-50%);
	background: radial-gradient(ellipse at center, rgba(216, 183, 90, .18) 0%, rgba(216, 183, 90, 0) 68%);
	pointer-events: none;
}

.page-hero__en {
	position: relative;
	display: block;
	font-family: 'Antro Vectra', sans-serif;
	font-size: 20px;
	letter-spacing: 0em;
	color: var(--c-gold);
	margin-bottom: 16px;
	font-weight:600;
}

.page-hero__title {
	position: relative;
	font-size: clamp(1.7rem, 3.6vw, 2.6rem);
	letter-spacing: .1em;
	color: #fff;
	line-height: 1.5;
}

.page-hero__lead {
	position: relative;
	margin-top: 22px;
	color: rgba(255, 255, 255, .85);
	font-size: .96rem;
	line-height: 2;
}

.page-hero--simple {
	padding: 80px 0 60px;
}

/* 装飾罫線 */
.page-hero__title::after {
	content: "";
	display: block;
	width: 56px;
	height: 1px;
	margin: 22px auto 0;
	background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}

/* -------------------- 本文（エントリー） -------------------- */
.entry__content {
	font-size: 1rem;
	line-height: 2.1;
	color: var(--c-charcoal);
}

.entry__content h2 {
	font-size: 1.5rem;
	color: var(--c-navy);
	margin: 2em 0 .8em;
	padding-bottom: .5em;
	border-bottom: 1px solid var(--c-line-gold);
}

.entry__content h3 {
	font-size: 1.25rem;
	color: var(--c-navy);
	margin: 1.8em 0 .6em;
	padding-left: 14px;
	border-left: 3px solid var(--c-gold);
}

.entry__content h4 {
	font-size: 1.1rem;
	color: var(--c-navy);
	margin: 1.6em 0 .5em;
}

.entry__content p {
	margin: 0 0 1.4em;
}

.entry__content a {
	color: var(--c-gold-3);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.entry__content ul,
.entry__content ol {
	margin: 0 0 1.6em;
	padding-left: 1.4em;
}

.entry__content ul {
	list-style: none;
	padding-left: 0;
}

.entry__content ul li {
	position: relative;
	padding-left: 1.4em;
	margin-bottom: .6em;
}

.entry__content ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .85em;
	width: 8px;
	height: 8px;
	background: var(--c-gold);
	transform: rotate(45deg);
}

.entry__content ol {
	list-style: decimal;
}

.entry__content ol li {
	margin-bottom: .6em;
	padding-left: .3em;
}

.entry__content blockquote {
	margin: 1.6em 0;
	padding: 22px 26px;
	background: var(--c-ivory-2);
	border-left: 3px solid var(--c-gold);
	color: var(--c-gray);
}

.entry__content img {
	margin: 1em 0;
}

.entry__content table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.6em 0;
}

.entry__content th,
.entry__content td {
	border: 1px solid var(--c-line);
	padding: 12px 16px;
	text-align: left;
}

.entry__content th {
	background: var(--c-ivory);
	color: var(--c-navy);
	font-weight: 600;
	white-space: nowrap;
}

.entry__thumb {
	margin-bottom: 32px;
}

.entry__meta {
	margin-bottom: 20px;
	font-size: .82rem;
	letter-spacing: .1em;
	color: var(--c-gold-3);
}

.entry__back {
	margin-top: 48px;
	text-align: center;
}

.page-links {
	margin-top: 24px;
	font-size: .9rem;
}

/* -------------------- 口コミ単体 -------------------- */
.voice-single {
	background: var(--c-ivory-2);
	border: 1px solid var(--c-line-gold);
	padding: 44px 40px;
}

.voice-single__image {
	margin: -44px -40px 28px;
	overflow: hidden;
}

.voice-single .voice-card__stars {
	margin-bottom: 20px;
}

.voice-single__meta {
	margin-top: 24px;
	padding-top: 18px;
	border-top: 1px solid var(--c-line);
	display: flex;
	gap: 12px;
	align-items: baseline;
}

/* -------------------- 404 -------------------- */
.error-404 {
	text-align: center;
}

.error-404__text {
	color: var(--c-gray);
	line-height: 2.1;
	margin-bottom: 34px;
}

.error-404__links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 40px;
}

.error-404__search {
	max-width: 420px;
	margin: 0 auto 40px;
}

.error-404__nav ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 24px;
}

.error-404__nav a {
	font-size: .9rem;
	color: var(--c-gold-3);
	position: relative;
	padding-bottom: 3px;
	border-bottom: 1px solid transparent;
}

.error-404__nav a:hover {
	border-color: var(--c-gold);
}

/* -------------------- ページ別 hero 色調整 -------------------- */
.page-hero--goods,
.page-hero--courses,
.page-hero--voices,
.page-hero--shop,
.page-hero--404 {
	background: linear-gradient(180deg, var(--c-navy) 0%, var(--c-navy-3) 100%);
}

/* -------------------- レスポンシブ -------------------- */
@media screen and (max-width: 767px) {
	.page-hero {
		padding: 60px 0 60px;
	}

	.page-hero--simple {
		padding: 56px 0 44px;
	}

	.voice-single {
		padding: 32px 22px;
	}

	.voice-single__image {
		margin: -32px -22px 22px;
	}

	.entry__content h2 {
		font-size: 1.3rem;
	}
}
