/* ===== 見出し ===== */
h1 { font-family: var(--font-heading); font-size: var(--font-size-2xl); font-weight: 700; line-height: var(--line-height-tight); }
h2 { font-family: var(--font-heading); font-size: var(--font-size-xl);  font-weight: 700; line-height: var(--line-height-tight); }
h3 { font-family: var(--font-heading); font-size: var(--font-size-lg);  font-weight: 700; line-height: var(--line-height-tight); }
h4 { font-size: var(--font-size-base); font-weight: 600; }

@media (min-width: 768px) {
	h1 { font-size: var(--font-size-3xl); }
	h2 { font-size: var(--font-size-2xl); }
}

/* ===== 本文 ===== */
p {
	line-height: var(--line-height-base);
}

/* ===== セクションタイトル ===== */
.section-title {
	font-size: var(--font-size-xl);
	font-weight: 700;
	text-align: center;
	margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
	.section-title {
		font-size: var(--font-size-2xl);
	}
}

/* ===== ページタイトル ===== */
.page-title {
	font-size: var(--font-size-xl);
	font-weight: 700;
	margin-bottom: var(--space-xl);
	padding-bottom: var(--space-md);
	border-bottom: 2px solid var(--color-primary-yellow);
}

@media (min-width: 768px) {
	.page-title {
		font-size: var(--font-size-2xl);
	}
}

/* ===== リンク ===== */
.entry-content a {
	color: var(--color-primary-orange);
	text-decoration: underline;
}

.entry-content a:hover {
	opacity: 0.8;
}
