/* ==========================================================
   2026 岡山県デジタル化補助金 LP
   prefix: hojo-
   ========================================================== */

.hojo-lp {
	--hojo-blue: #1e88e5;
	--hojo-blue-light: #7cb9eb;
	--hojo-blue-bg: #e8f4fd;
	--hojo-navy: #0d3b66;
	--hojo-ink: #0f1f33;
	--hojo-text: #333;
	--hojo-sub: #6b6b6b;
	--hojo-line: #dbe6f0;
	--hojo-bg-soft: #f3f9ff;
	--hojo-radius: 2px;

	color: var(--hojo-text);
	font-family: "Hiragino Sans", "Yu Gothic UI", "Meiryo", system-ui, sans-serif;
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
}

.hojo-lp *,
.hojo-lp *::before,
.hojo-lp *::after {
	box-sizing: border-box;
}

.hojo-lp img {
	max-width: 100%;
	height: auto;
}

.hojo-container {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 24px;
}

.hojo-container-narrow {
	max-width: 820px;
}

.hojo-pc-br { display: inline; }
@media (max-width: 768px) {
	.hojo-pc-br { display: none; }
}

.hojo-accent {
	color: var(--hojo-blue);
}

/* ===== Section common ===== */
.hojo-section {
	padding: 80px 0;
}

.hojo-section-bg {
	background: var(--hojo-bg-soft);
}

.hojo-section-header {
	text-align: center;
	margin-bottom: 48px;
}

.hojo-sub-label {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 0.2em;
	color: var(--hojo-blue);
	font-weight: 700;
	margin-bottom: 12px;
}

.hojo-section-title {
	font-size: 30px;
	font-weight: 800;
	color: var(--hojo-ink);
	line-height: 1.5;
	margin: 0 0 16px;
}

.hojo-section-desc {
	font-size: 16px;
	color: var(--hojo-sub);
	margin: 0;
}

@media (max-width: 768px) {
	.hojo-section { padding: 56px 0; }
	.hojo-section-title { font-size: 22px; }
	.hojo-section-desc { font-size: 14px; text-align: left; }
}

/* ===== Hero (FV image) ===== */
.hojo-hero {
	margin: 0;
	padding-top: 60px;
	padding-bottom: 0;
	background: #fff;
}

.hojo-hero-pic {
	display: block;
	width: 100%;
}

.hojo-hero-pic img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
}

@media (max-width: 768px) {
	.hojo-hero { padding-top: 32px; }
}

/* ===== Works (実績) section overrides for LP scope ===== */
.hojo-works {
	padding: 0;
}

.hojo-works .swiper {
	overflow: hidden;
	padding: 0 24px;
}

.hojo-works .entry {
	display: block;
}

.hojo-works .entry__link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.hojo-works .entry__thumb {
	width: 100%;
	overflow: hidden;
	margin: 0;
}

.hojo-works .entry__thumb-img {
	width: 100%;
	padding-top: 66.7%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	transition: transform 0.3s ease;
}

.hojo-works .entry__link:hover { opacity: 0.7; }
.hojo-works .entry__link:hover .entry__thumb-img { transform: scale(1.04); }

.hojo-works .entry__body {
	padding-top: 16px;
	word-break: break-all;
}

.hojo-works .entry__title {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6;
	color: var(--hojo-ink);
	margin: 0;
}

.hojo-works .entry__cates {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 8px;
	margin: 12px 0 0;
	padding: 0;
}

.hojo-works .entry__cate { margin: 0; }

.hojo-works .entry__cate-link {
	display: block;
	padding: 4px 10px;
	border: 1px solid var(--hojo-line);
	font-size: 11px;
	color: var(--hojo-sub);
	text-decoration: none;
	background: #fff;
}

.hojo-works .swiper-footer {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-content: center;
	margin-top: 32px;
	padding: 0 24px;
	position: relative;
}

.hojo-works .swiper-button-prev,
.hojo-works .swiper-button-next {
	position: static;
	width: 44px;
	height: 44px;
	margin: 0;
	background: var(--hojo-blue);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hojo-works .swiper-button-prev::after,
.hojo-works .swiper-button-next::after {
	font-size: 14px;
	font-weight: 800;
	color: #fff;
}

.hojo-works .swiper-button-disabled {
	opacity: 0.35;
}

.hojo-works-pagination {
	display: flex;
	gap: 6px;
	align-items: center;
	justify-content: center;
}

.hojo-works-pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: var(--hojo-blue-light);
	opacity: 0.6;
}

.hojo-works-pagination .swiper-pagination-bullet-active {
	background: var(--hojo-blue);
	opacity: 1;
}

.hojo-works .link-btn {
	display: inline-flex;
	align-items: center;
	padding: 12px 24px;
	background: var(--hojo-ink);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	margin-left: auto;
}

.hojo-works .link-btn:hover {
	background: var(--hojo-blue);
	color: #fff;
}

@media (max-width: 768px) {
	.hojo-works .swiper-footer {
		flex-wrap: wrap;
		gap: 12px;
	}
	.hojo-works .link-btn {
		margin-left: 0;
		width: 100%;
		justify-content: center;
	}
}

/* ===== Button ===== */
.hojo-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	border: 2px solid transparent;
}

.hojo-btn i { width: 18px; height: 18px; }

.hojo-btn-lg {
	padding: 18px 36px;
	font-size: 16px;
}

.hojo-btn-primary {
	background: var(--hojo-blue);
	color: #fff;
	box-shadow: 0 4px 14px rgba(30,136,229,0.3);
}

.hojo-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(30,136,229,0.4);
	color: #fff;
}

.hojo-btn-ghost {
	background: transparent;
	color: var(--hojo-ink);
	border-color: var(--hojo-ink);
}

.hojo-btn-ghost:hover {
	background: var(--hojo-ink);
	color: #fff;
}

.hojo-btn-outline {
	background: #fff;
	color: var(--hojo-blue);
	border-color: var(--hojo-blue);
}

.hojo-btn-outline:hover {
	background: var(--hojo-blue);
	color: #fff;
}

/* ===== Alert (締切煽り：オレンジ／赤で目立たせる) ===== */
.hojo-alert {
	background: #fff;
	padding: 32px 0;
}

.hojo-alert-box {
	display: flex;
	gap: 18px;
	align-items: center;
	background: linear-gradient(135deg, #e53935 0%, #ff6f00 100%);
	border: 0;
	padding: 24px 28px;
	color: #fff;
	box-shadow: 0 6px 18px rgba(229,57,53,0.25);
}

.hojo-alert-icon {
	width: 36px;
	height: 36px;
	color: #fff;
	flex-shrink: 0;
}

.hojo-alert-title {
	font-size: 20px;
	font-weight: 800;
	margin: 0 0 4px;
	color: #fff;
	line-height: 1.5;
}

.hojo-alert-title strong {
	background: #fff;
	color: #c62828;
	padding: 2px 8px;
	margin: 0 2px;
	font-weight: 800;
}

.hojo-alert-text {
	font-size: 14px;
	color: rgba(255,255,255,0.95);
	margin: 0;
	line-height: 1.7;
}

@media (max-width: 640px) {
	.hojo-alert-box {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
		padding: 20px;
	}
	.hojo-alert-title { font-size: 17px; }
}

/* ===== Overview Table ===== */
.hojo-overview-table {
	background: #fff;
	border: 1px solid var(--hojo-line);
	overflow: hidden;
}

.hojo-dl {
	display: grid;
	grid-template-columns: 200px 1fr;
	border-bottom: 1px solid var(--hojo-line);
	margin: 0;
}

.hojo-dl:last-child { border-bottom: 0; }

.hojo-dl dt {
	background: var(--hojo-blue-bg);
	padding: 18px 24px;
	font-weight: 700;
	color: var(--hojo-ink);
	font-size: 14px;
}

.hojo-dl dd {
	padding: 18px 24px;
	margin: 0;
	font-size: 15px;
}

@media (max-width: 640px) {
	.hojo-dl {
		grid-template-columns: 1fr;
	}
	.hojo-dl dt {
		padding: 12px 16px;
		font-size: 13px;
	}
	.hojo-dl dd {
		padding: 14px 16px;
		font-size: 14px;
	}
}

/* ===== Points ===== */
.hojo-points {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.hojo-point-card {
	background: #fff;
	padding: 36px 28px 28px;
	text-align: center;
	position: relative;
	box-shadow: 0 4px 16px rgba(0,0,0,0.04);
	border: 1px solid var(--hojo-line);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hojo-point-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.hojo-point-num {
	position: absolute;
	top: -16px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--hojo-blue);
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	padding: 6px 18px;
	letter-spacing: 0.1em;
}

.hojo-point-icon {
	width: 64px;
	height: 64px;
	margin: 8px auto 16px;
	background: var(--hojo-blue-bg);
	color: var(--hojo-blue);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hojo-point-icon i {
	width: 30px;
	height: 30px;
}

.hojo-point-title {
	font-size: 18px;
	font-weight: 800;
	color: var(--hojo-ink);
	margin: 0 0 12px;
	line-height: 1.5;
}

.hojo-point-desc {
	font-size: 14px;
	color: var(--hojo-text);
	margin: 0;
	text-align: left;
}

@media (max-width: 768px) {
	.hojo-points {
		grid-template-columns: 1fr;
		gap: 36px;
	}
}

/* ===== Cost Grid ===== */
.hojo-cost-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.hojo-cost-card {
	background: #fff;
	border: 1px solid var(--hojo-line);
	padding: 28px 24px;
	transition: border-color 0.2s ease;
}

.hojo-cost-card:hover {
	border-color: var(--hojo-blue);
}

.hojo-cost-icon {
	width: 36px;
	height: 36px;
	color: var(--hojo-blue);
	margin-bottom: 12px;
}

.hojo-cost-card h4 {
	font-size: 16px;
	font-weight: 700;
	color: var(--hojo-ink);
	margin: 0 0 8px;
}

.hojo-cost-card p {
	font-size: 14px;
	color: var(--hojo-sub);
	margin: 0;
	line-height: 1.7;
}

.hojo-note {
	margin-top: 32px;
	font-size: 13px;
	color: var(--hojo-sub);
	text-align: center;
}

@media (max-width: 768px) {
	.hojo-cost-grid {
		grid-template-columns: 1fr;
	}
}

/* ===== Support ===== */
.hojo-support {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.hojo-support-card {
	background: #fff;
	padding: 28px;
	border: 1px solid var(--hojo-line);
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.hojo-support-icon {
	width: 32px;
	height: 32px;
	color: var(--hojo-navy);
	margin-bottom: 4px;
}

.hojo-support-card h3 {
	font-size: 17px;
	font-weight: 700;
	color: var(--hojo-ink);
	margin: 0;
}

.hojo-support-card p {
	font-size: 14px;
	color: var(--hojo-text);
	margin: 0;
}

@media (max-width: 768px) {
	.hojo-support {
		grid-template-columns: 1fr;
	}
}

/* ===== Flow ===== */
.hojo-flow {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hojo-flow-step {
	background: #fff;
	border: 1px solid var(--hojo-line);
	border-left: 5px solid var(--hojo-blue);
	padding: 24px 28px;
	position: relative;
}

.hojo-flow-num {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 0.15em;
	font-weight: 800;
	color: var(--hojo-blue);
	margin-bottom: 6px;
}

.hojo-flow-step h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--hojo-ink);
	margin: 0 0 6px;
}

.hojo-flow-step p {
	font-size: 14px;
	color: var(--hojo-text);
	margin: 0;
}

/* ===== FAQ ===== */
.hojo-faq {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 820px;
	margin: 0 auto;
}

.hojo-faq-item {
	background: #fff;
	border: 1px solid var(--hojo-line);
	padding: 0;
	overflow: hidden;
}

.hojo-faq-item summary {
	cursor: pointer;
	list-style: none;
	padding: 18px 56px 18px 24px;
	font-weight: 700;
	color: var(--hojo-ink);
	font-size: 15px;
	position: relative;
}

.hojo-faq-item summary::-webkit-details-marker { display: none; }

.hojo-faq-item summary::before {
	content: "Q";
	color: var(--hojo-blue);
	font-weight: 800;
	margin-right: 12px;
}

.hojo-faq-item summary::after {
	content: "";
	position: absolute;
	right: 24px;
	top: 50%;
	width: 12px;
	height: 12px;
	border-right: 2px solid var(--hojo-blue);
	border-bottom: 2px solid var(--hojo-blue);
	transform: translateY(-70%) rotate(45deg);
	transition: transform 0.2s ease;
}

.hojo-faq-item[open] summary::after {
	transform: translateY(-30%) rotate(-135deg);
}

.hojo-faq-item p {
	padding: 0 24px 20px;
	margin: 0;
	color: var(--hojo-text);
	font-size: 14px;
}

/* ===== Notes ===== */
.hojo-notes {
	background: #fafafa;
	border: 1px solid var(--hojo-line);
	padding: 28px 32px;
}

.hojo-notes-title {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 12px;
	color: var(--hojo-ink);
	display: flex;
	align-items: center;
	gap: 8px;
}

.hojo-notes-title i {
	width: 18px;
	height: 18px;
	color: var(--hojo-blue);
}

.hojo-notes ul {
	margin: 0;
	padding-left: 22px;
	font-size: 13px;
	color: var(--hojo-sub);
}

.hojo-notes li {
	margin-bottom: 6px;
}

/* ===== CTA ===== */
.hojo-cta {
	background: linear-gradient(135deg, var(--hojo-blue) 0%, #0d62cc 100%);
	padding: 72px 0;
	color: #fff;
	text-align: center;
}

.hojo-cta-inner {
	max-width: 760px;
	margin: 0 auto;
}

.hojo-cta-title {
	font-size: 28px;
	font-weight: 800;
	margin: 0 0 12px;
	line-height: 1.5;
}

.hojo-cta-lead {
	font-size: 16px;
	margin: 0 0 32px;
	opacity: 0.95;
}

.hojo-cta-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center;
}

.hojo-cta .hojo-btn-primary {
	background: #fff;
	color: var(--hojo-blue);
	box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.hojo-cta .hojo-btn-primary:hover {
	background: #fff;
	color: var(--hojo-blue);
	transform: translateY(-2px);
}

.hojo-cta .hojo-btn-outline {
	background: transparent;
	color: #fff;
	border-color: #fff;
}

.hojo-cta .hojo-btn-outline:hover {
	background: #fff;
	color: var(--hojo-blue);
}

@media (max-width: 768px) {
	.hojo-cta { padding: 56px 0; }
	.hojo-cta-title { font-size: 20px; }
	.hojo-cta-lead { font-size: 14px; }
	.hojo-cta-buttons .hojo-btn { width: 100%; justify-content: center; }
}
