/*
Theme Name: まちの電気屋さん
Theme URI: https://example.com/themes/machi-no-denkiya
Author: ウォズ
Author URI: https://example.com
Description: 家族経営・地域密着型の電気工事店(個人宅対応中心)向けLPテーマ。ファーストビューの電話・LINE導線、対応エリア、よくあるお困りごと、料金目安、代表挨拶、お客様の声で構成し、親しみやすさ・即応性・安心感を伝える。コンテンツ差し替えのみでLPとして運用できる。
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: machi-no-denkiya
*/

/* ==========================================================================
   0. Reset / Base
   ========================================================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
}

:root {
	/* 配色方針: 白 + 青(信頼) をベース、オレンジを差し色(親近感・即応性) */
	--color-white: #ffffff;
	--color-bg: #f5f9fd;
	--color-bg-alt: #eef5fb;
	--color-blue: #1565c0;
	--color-blue-dark: #0d4392;
	--color-blue-darker: #0a2f66;
	--color-blue-light: #e5f0fb;
	--color-orange: #f57c00;
	--color-orange-dark: #d96500;
	--color-orange-light: #fff1e0;
	--color-text: #24313f;
	--color-text-light: #55636f;
	--color-border: #dbe6ef;
	--font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", "Yu Gothic", "Noto Sans JP", Meiryo, sans-serif;
	--container-width: 1120px;
	--radius: 12px;
	--shadow: 0 4px 16px rgba(13, 67, 146, 0.08);
	--header-height: 68px;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--font-family);
	color: var(--color-text);
	background: var(--color-white);
	line-height: 1.8;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	padding-top: var(--header-height);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--color-blue);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1, h2, h3, h4, p {
	margin: 0 0 1em;
}

button {
	font-family: inherit;
}

.container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 20px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.skip-link {
	position: absolute;
	top: -100px;
	left: 0;
	background: var(--color-blue-darker);
	color: #fff;
	padding: 10px 16px;
	z-index: 10000;
	transition: top 0.2s ease;
}

.skip-link:focus {
	top: 0;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
	outline: 3px solid var(--color-orange);
	outline-offset: 2px;
}

.section-title {
	font-size: 1.6rem;
	color: var(--color-blue-darker);
	text-align: center;
	position: relative;
	padding-bottom: 14px;
}

.section-title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 56px;
	height: 4px;
	background: var(--color-orange);
	border-radius: 2px;
}

.section-lead {
	text-align: center;
	color: var(--color-text-light);
	max-width: 640px;
	margin: 0 auto 2.2em;
}

.section {
	padding: 56px 0;
}

.section-alt {
	background: var(--color-bg);
}

/* ==========================================================================
   1. Buttons (電話 / LINE)
   ========================================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 28px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 1.05rem;
	line-height: 1.3;
	text-decoration: none;
	border: 2px solid transparent;
	transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-icon {
	font-size: 1.3em;
	line-height: 1;
}

.btn-call {
	background: var(--color-orange);
	color: #fff;
}

.btn-call:hover {
	background: var(--color-orange-dark);
	color: #fff;
}

.btn-call small,
.btn-call .btn-sub {
	display: block;
	font-size: 0.62em;
	font-weight: 500;
	opacity: 0.95;
}

.btn-line {
	background: #06c755;
	color: #fff;
}

.btn-line:hover {
	background: #05a948;
	color: #fff;
}

.btn-outline {
	background: transparent;
	border-color: var(--color-white);
	color: var(--color-white);
}

.btn-outline:hover {
	background: rgba(255, 255, 255, 0.15);
	color: var(--color-white);
}

.btn-block {
	width: 100%;
}

/* ==========================================================================
   2. Header
   ========================================================================== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: var(--header-height);
	background: var(--color-white);
	border-bottom: 1px solid var(--color-border);
	z-index: 900;
	box-shadow: 0 2px 8px rgba(13, 67, 146, 0.06);
}

.site-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-height);
	gap: 16px;
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.site-branding img {
	max-height: 40px;
	width: auto;
}

.site-title {
	margin: 0;
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--color-blue-darker);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.site-title a {
	color: inherit;
	text-decoration: none;
}

.site-description {
	display: none;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.header-phone {
	display: none;
	text-align: right;
	line-height: 1.3;
}

.header-phone .phone-label {
	display: block;
	font-size: 0.68rem;
	color: var(--color-text-light);
}

.header-phone .phone-number {
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--color-blue-darker);
	white-space: nowrap;
}

.header-cta {
	display: none;
}

.primary-navigation {
	display: none;
}

.primary-navigation ul {
	display: flex;
	gap: 22px;
}

.primary-navigation a {
	color: var(--color-text);
	font-weight: 600;
	text-decoration: none;
}

.primary-navigation a:hover {
	color: var(--color-blue);
}

/* モバイルメニュー(チェックボックスのみで開閉。JS不要) */
.nav-toggle-checkbox {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.nav-toggle-label {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	cursor: pointer;
	border-radius: 8px;
}

.nav-toggle-label span {
	display: block;
	height: 2px;
	background: var(--color-blue-darker);
	border-radius: 2px;
}

.mobile-nav {
	position: fixed;
	top: var(--header-height);
	left: 0;
	right: 0;
	background: var(--color-white);
	border-bottom: 1px solid var(--color-border);
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.25s ease;
	z-index: 899;
}

.nav-toggle-checkbox:checked ~ .mobile-nav {
	max-height: 480px;
}

.mobile-nav ul {
	padding: 8px 20px 20px;
}

.mobile-nav li {
	border-bottom: 1px solid var(--color-border);
}

.mobile-nav a {
	display: block;
	padding: 14px 4px;
	color: var(--color-text);
	font-weight: 600;
	text-decoration: none;
}

.mobile-nav-cta {
	display: flex;
	gap: 10px;
	padding: 16px 20px 20px;
}

.mobile-nav-cta .btn {
	flex: 1;
	padding: 12px 10px;
	font-size: 0.9rem;
}

/* ==========================================================================
   3. Hero (ファーストビュー)
   ========================================================================== */
.hero {
	background: linear-gradient(160deg, var(--color-blue-darker) 0%, var(--color-blue) 60%, var(--color-blue) 100%);
	color: #fff;
	padding: 52px 0 44px;
	position: relative;
	overflow: hidden;
}

.hero::after {
	content: "";
	position: absolute;
	right: -60px;
	bottom: -60px;
	width: 260px;
	height: 260px;
	background: var(--color-orange);
	opacity: 0.18;
	border-radius: 50%;
}

.hero-inner {
	position: relative;
	z-index: 1;
	text-align: center;
}

.hero-eyebrow {
	display: inline-block;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 999px;
	padding: 6px 16px;
	font-size: 0.85rem;
	font-weight: 700;
	margin-bottom: 18px;
}

.hero-title {
	font-size: 1.7rem;
	font-weight: 800;
	line-height: 1.5;
	margin-bottom: 14px;
}

.hero-title .accent {
	color: var(--color-orange);
}

.hero-sub {
	font-size: 0.98rem;
	color: rgba(255, 255, 255, 0.92);
	margin-bottom: 28px;
}

.hero-media {
	max-width: 640px;
	margin: 0 auto 28px;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.hero-media-placeholder {
	background: repeating-linear-gradient(
		45deg,
		rgba(255, 255, 255, 0.12),
		rgba(255, 255, 255, 0.12) 12px,
		rgba(255, 255, 255, 0.05) 12px,
		rgba(255, 255, 255, 0.05) 24px
	);
	border: 1px dashed rgba(255, 255, 255, 0.5);
	aspect-ratio: 16 / 9;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.85);
	text-align: center;
	padding: 16px;
}

.hero-cta {
	display: flex;
	flex-direction: column;
	gap: 14px;
	max-width: 420px;
	margin: 0 auto 20px;
}

.hero-cta .btn {
	width: 100%;
	padding: 18px 20px;
	font-size: 1.1rem;
}

.hero-cta .btn-call .btn-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1.25;
}

.hero-cta .btn-call .btn-text .btn-sub {
	font-size: 0.6em;
	font-weight: 500;
}

.hero-cta .btn-call .btn-text strong {
	font-size: 1.3em;
	letter-spacing: 0.02em;
}

.hero-hours {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.85);
}

.hero-badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 22px;
}

.hero-badge {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 999px;
	padding: 6px 14px;
	font-size: 0.8rem;
}

/* ==========================================================================
   4. 対応エリア
   ========================================================================== */
.area-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
	align-items: start;
}

.area-map-placeholder {
	background: var(--color-blue-light);
	border: 1px dashed var(--color-blue);
	border-radius: var(--radius);
	aspect-ratio: 4 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--color-blue-dark);
	font-weight: 600;
	padding: 20px;
}

.area-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.area-list li {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-left: 4px solid var(--color-orange);
	border-radius: 8px;
	padding: 12px 14px;
	font-weight: 700;
	color: var(--color-blue-darker);
}

.area-note {
	text-align: center;
	color: var(--color-text-light);
	font-size: 0.9rem;
	margin-top: 20px;
}

/* 固定ページ(lp-area)のリストブロック出力を area-list と同じ見た目に整える */
.area-content .wp-block-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.area-content .wp-block-list li {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-left: 4px solid var(--color-orange);
	border-radius: 8px;
	padding: 12px 14px;
	font-weight: 700;
	color: var(--color-blue-darker);
}

/* ==========================================================================
   5. よくあるお困りごと
   ========================================================================== */
.trouble-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.trouble-card {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform 0.15s ease;
}

.trouble-card:hover {
	transform: translateY(-4px);
}

.trouble-photo {
	aspect-ratio: 4 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.4rem;
	background: var(--color-blue-light);
	color: var(--color-blue);
}

.trouble-photo.is-alt {
	background: var(--color-orange-light);
	color: var(--color-orange-dark);
}

.trouble-body {
	padding: 18px 18px 20px;
}

.trouble-title {
	font-size: 1.05rem;
	color: var(--color-blue-darker);
	margin-bottom: 8px;
}

.trouble-desc {
	font-size: 0.92rem;
	color: var(--color-text-light);
	margin-bottom: 0;
}

/* 固定ページ(lp-troubles)の core/group + heading/paragraph ブロック出力を
   trouble-card 相当の見た目に整える(施工写真の代わりに絵文字見出しのみ)。 */
.trouble-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.trouble-content .trouble-item {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 20px 18px;
}

.trouble-content .wp-block-heading {
	font-size: 1.05rem;
	color: var(--color-blue-darker);
	margin: 0 0 8px;
}

.trouble-content p {
	font-size: 0.92rem;
	color: var(--color-text-light);
	margin-bottom: 0;
}

@media (min-width: 600px) {
	.trouble-content {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 900px) {
	.trouble-content {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ==========================================================================
   6. 料金の目安
   ========================================================================== */
.pricing-table-wrap {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.pricing-table {
	width: 100%;
	border-collapse: collapse;
}

.pricing-table caption {
	text-align: left;
	padding: 16px 20px 0;
	font-size: 0.85rem;
	color: var(--color-text-light);
}

.pricing-table thead th {
	background: var(--color-blue);
	color: #fff;
	text-align: left;
	padding: 14px 20px;
	font-size: 0.9rem;
}

.pricing-table tbody td {
	padding: 14px 20px;
	border-bottom: 1px solid var(--color-border);
	font-size: 0.95rem;
}

.pricing-table tbody tr:last-child td {
	border-bottom: none;
}

.pricing-table tbody tr:nth-child(even) {
	background: var(--color-bg);
}

.pricing-table .price-cell {
	color: var(--color-orange-dark);
	font-weight: 800;
	white-space: nowrap;
}

.pricing-note {
	text-align: center;
	color: var(--color-text-light);
	font-size: 0.85rem;
	margin-top: 18px;
}

.pricing-caption {
	text-align: left;
	padding: 0 4px;
	font-size: 0.85rem;
	color: var(--color-text-light);
	margin-bottom: 8px;
}

/* 固定ページ(lp-pricing)のテーブルブロック出力を pricing-table 相当の見た目に整える */
.pricing-table-wrap {
	overflow-x: auto;
}

.pricing-table-wrap .wp-block-table {
	margin: 0;
}

.pricing-table-wrap .wp-block-table table {
	width: 100%;
	border-collapse: collapse;
	min-width: 480px;
}

.pricing-table-wrap .wp-block-table thead th {
	background: var(--color-blue);
	color: #fff;
	text-align: left;
	padding: 14px 20px;
	font-size: 0.9rem;
}

.pricing-table-wrap .wp-block-table tbody td {
	padding: 14px 20px;
	border-bottom: 1px solid var(--color-border);
	font-size: 0.95rem;
}

.pricing-table-wrap .wp-block-table tbody tr:last-child td {
	border-bottom: none;
}

.pricing-table-wrap .wp-block-table tbody tr:nth-child(even) {
	background: var(--color-bg);
}

.pricing-table-wrap .wp-block-table tbody td:last-child {
	color: var(--color-orange-dark);
	font-weight: 800;
	white-space: nowrap;
}

/* モバイル: 料金表をカード化 */
@media (max-width: 599px) {
	.pricing-table thead {
		display: none;
	}

	.pricing-table,
	.pricing-table tbody,
	.pricing-table tr,
	.pricing-table td {
		display: block;
		width: 100%;
	}

	.pricing-table tr {
		padding: 14px 18px;
		border-bottom: 1px solid var(--color-border);
	}

	.pricing-table td {
		padding: 4px 0;
		border-bottom: none;
		display: flex;
		justify-content: space-between;
		gap: 12px;
	}

	.pricing-table td::before {
		content: attr(data-label);
		font-weight: 700;
		color: var(--color-text-light);
		flex-shrink: 0;
	}
}

/* ==========================================================================
   7. 代表挨拶
   ========================================================================== */
.greeting-inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	align-items: center;
}

.greeting-photo-placeholder {
	background: var(--color-blue-light);
	border: 1px dashed var(--color-blue);
	border-radius: var(--radius);
	aspect-ratio: 1 / 1;
	max-width: 280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--color-blue-dark);
	font-weight: 600;
	padding: 16px;
}

.greeting-text .section-title {
	text-align: left;
}

.greeting-text .section-title::after {
	left: 0;
	transform: none;
}

.greeting-name {
	font-weight: 800;
	color: var(--color-blue-darker);
	font-size: 1.05rem;
	margin-bottom: 14px;
}

.greeting-name .greeting-role {
	display: inline-block;
	background: var(--color-orange);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	border-radius: 999px;
	padding: 3px 10px;
	margin-right: 8px;
	vertical-align: middle;
}

.greeting-text p {
	color: var(--color-text);
	font-size: 0.96rem;
}

/* ==========================================================================
   8. お客様の声
   ========================================================================== */
.voice-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.voice-card {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-top: 4px solid var(--color-orange);
	border-radius: var(--radius);
	padding: 22px;
	box-shadow: var(--shadow);
}

.voice-stars {
	color: var(--color-orange);
	letter-spacing: 2px;
	margin-bottom: 10px;
	font-size: 1rem;
}

.voice-quote {
	color: var(--color-text);
	font-size: 0.95rem;
	margin-bottom: 14px;
}

.voice-meta {
	display: flex;
	justify-content: space-between;
	font-size: 0.82rem;
	color: var(--color-text-light);
	border-top: 1px dashed var(--color-border);
	padding-top: 10px;
}

/* ==========================================================================
   9. 最終CTA帯 / フッター
   ========================================================================== */
.footer-cta {
	background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
	color: #fff;
	padding: 40px 0;
	text-align: center;
}

.footer-cta p {
	font-size: 1.15rem;
	font-weight: 800;
	margin-bottom: 20px;
}

.footer-cta-buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 420px;
	margin: 0 auto;
}

.footer-cta-buttons .btn-call {
	background: var(--color-white);
	color: var(--color-orange-dark);
}

.footer-cta-buttons .btn-call:hover {
	background: #fff4e8;
	color: var(--color-orange-dark);
}

.site-footer {
	background: var(--color-blue-darker);
	color: rgba(255, 255, 255, 0.85);
}

.footer-main {
	padding: 40px 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
}

.footer-brand .site-title,
.footer-brand .footer-logo {
	color: #fff;
	font-size: 1.2rem;
	font-weight: 800;
	margin-bottom: 10px;
}

.footer-brand p {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.75);
}

.footer-nav-title,
.footer-hours-title {
	color: #fff;
	font-weight: 700;
	font-size: 0.92rem;
	margin-bottom: 12px;
}

.footer-nav ul li {
	margin-bottom: 8px;
}

.footer-nav a {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9rem;
	text-decoration: none;
}

.footer-nav a:hover {
	color: var(--color-orange);
}

.footer-hours p {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 6px;
}

.footer-hours .footer-phone {
	font-size: 1.25rem;
	font-weight: 800;
	color: #fff;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding: 16px 0;
	text-align: center;
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   10. モバイル固定CTAバー(即応性の演出)
   ========================================================================== */
.mobile-sticky-cta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	z-index: 950;
	box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.15);
}

.mobile-sticky-cta a {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 8px;
	font-weight: 800;
	font-size: 0.95rem;
	color: #fff;
	text-decoration: none;
}

.mobile-sticky-cta .msc-call {
	background: var(--color-orange);
}

.mobile-sticky-cta .msc-line {
	background: #06c755;
}

@media (min-width: 900px) {
	.mobile-sticky-cta {
		display: none;
	}
}

/* ==========================================================================
   11. 汎用ブログ/アーカイブ表示(index.php)
   ========================================================================== */
.page-header {
	padding: 40px 0 10px;
	text-align: center;
}

.page-header .page-title {
	font-size: 1.5rem;
	color: var(--color-blue-darker);
}

.post-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	padding: 30px 0 60px;
}

.post-card {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.post-card-thumb {
	aspect-ratio: 16 / 9;
	background: var(--color-blue-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-blue);
	font-size: 0.85rem;
}

.post-card-body {
	padding: 18px 20px 22px;
}

.post-card-title {
	font-size: 1.1rem;
	margin-bottom: 8px;
}

.post-card-title a {
	color: var(--color-blue-darker);
	text-decoration: none;
}

.post-card-meta {
	font-size: 0.8rem;
	color: var(--color-text-light);
	margin-bottom: 10px;
}

.post-card-excerpt {
	font-size: 0.92rem;
	color: var(--color-text);
}

.no-results {
	padding: 60px 20px;
	text-align: center;
	color: var(--color-text-light);
}

.pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	padding-bottom: 60px;
}

.pagination a,
.pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	border-radius: 8px;
	border: 1px solid var(--color-border);
	color: var(--color-text);
	text-decoration: none;
	font-size: 0.9rem;
}

.pagination .current {
	background: var(--color-blue);
	border-color: var(--color-blue);
	color: #fff;
}

/* ==========================================================================
   12. レスポンシブ: タブレット(600px〜)
   ========================================================================== */
@media (min-width: 600px) {
	.hero-title {
		font-size: 2.1rem;
	}

	.hero-cta {
		flex-direction: row;
	}

	.trouble-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.voice-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ==========================================================================
   13. レスポンシブ: PC(900px〜)
   ========================================================================== */
@media (min-width: 900px) {
	:root {
		--header-height: 84px;
	}

	body {
		font-size: 17px;
	}

	.site-description {
		display: block;
		font-size: 0.75rem;
		color: var(--color-text-light);
		margin-top: 2px;
	}

	.header-phone {
		display: block;
	}

	.header-cta {
		display: inline-flex;
	}

	.header-cta .btn {
		padding: 10px 18px;
		font-size: 0.9rem;
	}

	.primary-navigation {
		display: block;
	}

	.nav-toggle-label,
	.mobile-nav {
		display: none;
	}

	.hero {
		padding: 80px 0 70px;
	}

	.hero-inner {
		max-width: 760px;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-sub {
		font-size: 1.1rem;
	}

	.area-layout {
		grid-template-columns: 1.1fr 0.9fr;
	}

	.area-list,
	.area-content .wp-block-list {
		grid-template-columns: repeat(2, 1fr);
		align-content: start;
	}

	.trouble-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.greeting-inner {
		grid-template-columns: 280px 1fr;
	}

	.voice-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.footer-grid {
		grid-template-columns: 1.3fr 1fr 1fr;
	}

	.section {
		padding: 80px 0;
	}

	.post-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1200px) {
	.trouble-grid,
	.trouble-content {
		grid-template-columns: repeat(4, 1fr);
	}
}
