* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	background: #fff;
	color: #111;
	line-height: 1.75;
}

h1, h2, h3 {
	font-family: 'Inter', sans-serif;
	font-weight: 700;
}

.site-header {
	border-bottom: 1px solid #eee;
	padding: 1.5rem 2rem;
	font-family: 'Noto Sans JP', sans-serif;
	background-color: white;
	position: relative;
	z-index: 100;
}

.container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	max-width: 960px;
	margin: 0 auto;
}

.logo-area {
	display: flex;
	flex-direction: column;
}

.logo {
	font-weight: bold;
	font-size: 1.5rem;
}

.powered {
	font-size: .75rem;
	color: #666;
	margin-top: .25rem;
}

.site-nav {
	display: flex;
	gap: 1.5rem;
}

.site-nav a {
	text-decoration: none;
	color: #111;
	font-weight: 500;
	transition: color .3s;
}

.site-nav a:hover {
	color: #0f62fe;
}

.menu-toggle {
	display: none;
	font-size: 1.5rem;
	cursor: pointer;
}

/* モバイル対応 */
@media (max-width: 768px) {
	.menu-toggle {
		display: block;
	}
	
	.site-nav {
		display: none;
		flex-direction: column;
		width: 100%;
		margin-top: 1rem;
		gap: 1rem;
	}
	
	.site-nav.active {
		display: flex;
	}
	
	.site-nav a {
		padding: .5rem 0;
		border-bottom: 1px solid #eee;
	}
}

.hero {
	background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
	border-bottom: 1px solid #eee;
	padding: 6rem 2rem;
	text-align: left;
	max-width: 960px;
	margin: 0 auto;
	position: relative;
}

.hero-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 2rem;
}

.hero-text {
	flex: 1;
	min-width: 280px;
	position: relative;
	z-index: 1;
}

.hero-image {
	flex: 1;
	min-width: 280px;
	text-align: right;
	position: relative;
	z-index: 1;
}

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

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	line-height: 1.4;
	position: relative;
	padding-bottom: .5rem;
}

.hero h1::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: #0f62fe;
}

.hero p {
	font-size: 1.125rem;
	margin-bottom: 2rem;
	color: #333;
}

.cta-group {
	margin-top: 2rem;
}

.cta-btn {
	padding: 1rem 2rem;
	font-size: 1rem;
	color: white;
	background-color: #111;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	text-decoration: none;
	font-weight: 700;
	margin-right: 1rem;
	display: inline-block;
}

.section {
	padding: 5rem 2rem;
	max-width: 960px;
	margin: 0 auto;
}

.section h2 {
	font-size: 1.75rem;
	margin-bottom: 1.5rem;
}

.section p, .section li {
	font-size: 1rem;
	color: #444;
}

.flex-cols {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 2rem;
}

.col {
	flex: 1;
	min-width: 280px;
}

.news-item {
	margin-bottom: 1rem;
}

.news-item time {
	display: block;
	font-size: .9rem;
	color: #888;
}

.news-item a {
	text-decoration: none;
	color: #111;
	font-weight: 500;
}

.flow-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin-top: 2rem;
	text-align: center;
}

.flow-step {
	background: #f4f4f4;
	padding: 1rem 1.5rem;
	border-radius: 8px;
	font-weight: 500;
	min-width: 120px;
}

.flow-arrow {
	font-size: 1.5rem;
	color: #888;
}

.employer-block {
	background: #f9f9f9;
	border-left: 4px solid #0f62fe;
	padding: 1.5rem;
	margin-bottom: 2rem;
	border-radius: 6px;
}

.employer-block h3 {
	margin-bottom: .5rem;
	font-size: 1.2rem;
}

.message {
	background-color: #f9fafc;
	padding: 4rem 2rem;
	text-align: center;
}

.message h2 {
	font-size: 1.8rem;
	margin-bottom: 1rem;
}

.message p {
	max-width: 720px;
	margin: 0 auto;
	color: #555;
}

footer {
	text-align: center;
	padding: 2rem;
	background-color: #111;
	color: white;
}

footer a {
	color: #ccc;
	margin: 0 .5rem;
	text-decoration: none;
}

@media (max-width: 768px) {
	.menu-toggle {
		display: block;
	}
	
	nav {
		display: none;
		flex-direction: column;
		width: 100%;
		margin-top: 1rem;
	}
	
	nav.active {
		display: flex;
	}
	
	.hero-inner {
		flex-direction: column;
	}
	
	.hero-image {
		position: absolute;
		top: 0;
		right: 0;
		opacity: .08;
		width: 100%;
		height: 100%;
		z-index: 0;
		pointer-events: none;
	}
	
	.hero-text {
		z-index: 1;
	}
	
	.hero h1 {
		font-size: 2.2rem;
	}
	
	.hero p {
		font-size: 1rem;
	}
	
	.flow-container {
		flex-direction: column;
		align-items: center;
	}
	
	.flow-arrow {
		transform: rotate(90deg);
		font-size: 2rem;
	}
}

@media (min-width: 769px) {
	nav {
		display: flex;
	}
	
	.hero-image {
		position: static;
		opacity: 1;
		z-index: auto;
		width: auto;
		height: auto;
		pointer-events: auto;
	}
}

@media (max-width: 768px) {
	.cta-group {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}
	
	.cta-btn {
		display: inline-block;
		width: 240px;
	/* 固定幅で揃える */
		max-width: 90%;
		margin-right: 0;
		text-align: center;
	}
}