.hero-section {
	position: relative;
	width: 100%;
	height: 600px;
	background-image: url('../images/tools-hero-image.jpg'); /* ← 背景画像のパスに置き換えてください */
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-content {
	text-align: center;
}

.hero-text {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
}

.hero-button {
	display: inline-block;
	padding: 14px 50px;
	background-color: white;
	color: black;
	border: 1px solid #ccc;
	margin-top: 30px;
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	transition: 0.3s ease;
}

.hero-button:hover {
	background-color: #f2f2f2;
}

.benefits {
	padding: 40px 20px;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
}

.benefits h2 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 40px;
}

.benefit-cards {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}

.card {
	background: #fff;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.05);
	flex: 1 1 calc(33.333% - 20px);
	box-sizing: border-box;
	text-align: left;
}

.card img {
	width: 140px;
	height: 190px;
	object-fit: contain;
	display: block;
	margin: 0 auto 16px;
}

.card h3 {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 12px;
}

.card p {
	font-size: 14px;
	line-height: 1.6;
}


.tools-list {
	padding: 40px 20px;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.tools-list h2 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 24px;
}

.filter-buttons {
	margin-bottom: 32px;
}

.filter-buttons button {
	margin: 0 8px;
	padding: 10px 20px;
	font-weight: bold;
	border: none;
	background-color: #f1f1f1;
	border-radius: 20px;
	cursor: pointer;
}

.filter-buttons button:hover {
	background-color: #ccc;
}

.cards-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

.tool-card {
	background-color: #fff;
	border-radius: 10px;
	padding: 16px;
	width: calc(33.333% - 20px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.05);
	text-align: left;
	box-sizing: border-box;
}

.thumb {
	width: 100%;
	height: 120px;
	background-color: #ddd;
	border-radius: 8px;
	margin-bottom: 10px;
}

.tag {
	display: inline-block;
	font-size: 12px;
	background: #2c3e50;
	color: #fff;
	padding: 4px 8px;
	border-radius: 4px;
	margin-bottom: 8px;
}

@media screen and (max-width: 520px) {
	.tool-card {
		width: 100%;
	}
}
