:root {
	--primary: #6d9408;
	--primary-light: #9dc92a;
	--primary-orange: #ff7e00;
	--primary-orange2: #ff4800;
	--accent: #f59e0b;
	--danger: #ff7300;
	--dark: #1f371f;
	--text: #333;
    --muted: #666;
	--bg: #f4f7f4;
	--bg-light: #f9fdf9;
	--white: #fff;
	--border: #e5ebe5;
	--shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

* {
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', 'メイリオ', Meiryo, sans-serif;
	margin: 0;
	padding: 0;
	color: var(--text);
	line-height: 1.7;
	background-color: var(--white);
}

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

a {
	color: inherit;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.eyebrow {
	display: inline-block;
	background: #e8efe5;
	color: var(--primary);
	font-weight: 700;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 0.95rem;
	margin-bottom: 14px;
}

.note {
	color: var(--muted);
	font-size: 0.95rem;
}

header {
	background-color: var(--white);
	border-bottom: 1px solid var(--border);
	padding: 14px 0;
	position: sticky;
	top: 0;
	z-index: 10;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}


.brand h1 {
	color: var(--primary);
	font-size: 1.6rem;
	margin: 0;
	line-height: 1.2;
}

.brand p {
	margin: 4px 0 0;
	color: var(--muted);
	font-size: 0.95rem;
}

.header-contact {
	text-align: right;
	color: var(--dark);
	font-weight: 700;
	white-space: nowrap;
}

.header-contact span {
	display: block;
	font-size: 0.85rem;
	color: var(--muted);
	font-weight: 400;
}

.hero {
	background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 100%);
	padding: 54px 0 70px;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 42px;
	align-items: center;
}

.hero h2 {
	font-size: clamp(2.1rem, 4vw, 3.4rem);
	line-height: 1.18;
	color: var(--primary);
	margin: 0 0 18px;
}

.hero .lead {
	font-size: 1.25rem;
	color: #3f4a59;
	margin: 0 0 26px;
}

.hero-image {
	border-radius: 16px;
	box-shadow: var(--shadow);
	display: block;
}

.cta-row {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	align-items: center;
	margin: 28px 0 18px;
}

.btn {
	display: inline-block;
	background-color: var(--primary-orange);
	color: var(--white);
	padding: 15px 28px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 1.08rem;
	font-weight: 700;
	transition: transform 0.2s ease, background-color 0.2s ease;
	box-shadow: 0 5px 12px rgba(0, 123, 255, 0.22);
}

.btn:hover {
	background-color: var(--primary-orange2);
	transform: translateY(-2px);
}

.btn-secondary {
	background: var(--white);
	color: var(--primary);
	border: 1px solid #b9d7ff;
	box-shadow: none;
}

.btn-secondary:hover {
	color: var(--white);
}

.trust-badges {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 26px;
}

.trust-badge {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 14px;
	font-weight: 700;
	color: var(--dark);
	box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.section {
	padding: 70px 0;
	border-bottom: 1px solid var(--border);
}

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

.section h2 {
	text-align: center;
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	color: var(--primary);
	margin: 0 0 18px;
	position: relative;
}

.section h2::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background-color: var(--primary-light);
	margin: 14px auto 0;
	border-radius: 999px;
}

.section-lead {
	text-align: center;
	color: var(--muted);
	max-width: 850px;
	margin: 0 auto 34px;
	font-size: 1.08rem;
}

.grid {
	display: grid;
	gap: 24px;
}

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

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

.grid-auto {
	grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.card {
	background-color: var(--white);
	border-radius: 14px;
	padding: 26px;
	box-shadow: var(--shadow);
	border: 1px solid rgba(229, 231, 235, 0.9);
}

.problem-card {
	border-left: 5px solid var(--danger);
}

.problem-card h3,
.service-card h3,
.support-card h3,
.strength-card h3,
.case-content h3 {
	margin: 0 0 10px;
	color: var(--primary);
	font-size: 1.35rem;
	line-height: 1.35;
}

.problem-card h3 {
	color: var(--danger);
}

.card p {
	margin: 0;
	color: var(--muted);
	
}

.target-box {
	background: linear-gradient(135deg, #6d9408 0%, #399408 100%);
	color: var(--white);
	border-radius: 18px;
	padding: 34px;
	box-shadow: var(--shadow);
}

.target-box h2 {
	color: var(--white);
	text-align: left;
	margin-bottom: 16px;
}

.target-box h2::after {
	margin-left: 0;
	background-color: var(--white);
}

.target-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.target-list li {
	background: rgba(255,255,255,0.14);
	padding: 14px;
	border-radius: 10px;
}

.service-card {
	text-align: center;
	transition: transform 0.2s ease;
}

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

.tag {
	display: inline-block;
	background: #fff8e6;
	color: #8a5a00;
	border: 1px solid #ffe1a6;
	border-radius: 999px;
	padding: 4px 10px;
	font-size: 0.82rem;
	font-weight: 700;
	margin-bottom: 12px;
}

.support-card {
	border-top: 4px solid var(--primary-light);
}

.strength-card {
	border-left: 5px solid var(--primary-light);
}

.case-study {
	display: flex;
	flex-direction: column;
	gap: 34px;
}

.case-item {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 28px;
	align-items: center;
	background-color: var(--white);
	border-radius: 16px;
	box-shadow: var(--shadow);
	padding: 28px;
	border: 1px solid var(--border);
}

.case-item:nth-child(even) {
	grid-template-columns: 1.1fr 0.9fr;
}

.case-item:nth-child(even) .case-image {
	order: 2;
}

.case-image {
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	width: 100%;
	object-fit: cover;
}

.case-meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin: 16px 0;
}

.case-meta div {
	background: #e8efe5;
	border-radius: 8px;
	padding: 10px;
	color: var(--dark);
	font-size: 0.95rem;
}

.case-content h4 {
	color: var(--primary-light);
	font-size: 1.05rem;
	margin: 14px 0 8px;
}

.voice-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
}

.voice-card {
	position: relative;
	padding-top: 46px;
}

.voice-card::before {
	content: "“";
	font-size: 4rem;
	color: #cbd5e1;
	position: absolute;
	top: 4px;
	left: 22px;
	line-height: 1;
}

.voice-card p {
	font-style: italic;
	margin-bottom: 14px;
}

.voice-card span {
	display: block;
	text-align: right;
	font-weight: 700;
	color: var(--primary);
}

.flow {
	counter-reset: flow;
}

.flow-card {
	position: relative;
	padding-left: 76px;
}

.flow-card::before {
	counter-increment: flow;
	content: counter(flow);
	position: absolute;
	left: 24px;
	top: 28px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--primary-light);
	color: var(--white);
	font-weight: 700;
}

.cta-section {
	background: linear-gradient(135deg, #6d9408 0%, #399408 100%);
	color: var(--white);
	text-align: center;
	padding: 70px 20px;
}

.cta-section h2 {
	color: var(--white);
	font-size: clamp(2rem, 4vw, 2.8rem);
	margin: 0 0 18px;
}

.cta-section p {
	font-size: 1.2rem;
	margin: 0 auto 28px;
	max-width: 850px;
}

.cta-points {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: 26px auto 30px;
	padding: 0;
	list-style: none;
}

.cta-points li {
	background: rgba(255,255,255,0.16);
	border: 1px solid rgba(255,255,255,0.28);
	border-radius: 999px;
	padding: 8px 14px;
	font-weight: 700;
}

.cta-section .btn {
	background-color: var(--white);
	color: var(--primary);
	box-shadow: none;
}

.cta-section .btn:hover {
	background-color: #e8f2ff;
}

footer {
	background-color: var(--dark);
	color: var(--white);
	text-align: center;
	padding: 30px 0;
	font-size: 0.9rem;
}

@media (max-width: 900px) {
	.hero-grid,
	.case-item,
	.case-item:nth-child(even) {
		grid-template-columns: 1fr;
	}

	.case-item:nth-child(even) .case-image {
		order: 0;
	}

	.grid-2,
	.grid-3,
	.target-list,
	.trust-badges {
		grid-template-columns: 1fr;
	}

	.header-inner {
		align-items: flex-start;
		/*flex-direction: column;*/
	}

	.header-<strong>contact</strong> {
		text-align: left;
	}
	

}

@media(min-width: 768px){
	a[href^="tel:"]{
		pointer-events: none;
	}
}

@media (max-width: 560px) {
	.container {
		padding: 0 16px;
	}

	.section,
	.hero {
		padding: 48px 0;
	}

	.card,
	.target-box,
	.case-item {
		padding: 22px;
	}

	.flow-card {
		padding-left: 22px;
		padding-top: 68px;
	}

	.flow-card::before {
		left: 22px;
		top: 22px;
	}
	.header-inner {
		align-items: flex-start;
		flex-direction: column;
	}	


}
