@charset "UTF-8";

/*  
Theme Name: broadkids
Theme URI:
Description:
Version: 2.0
Author: Access Inc.
Author URI:
Tags:
License: GNU General Public License v2.0
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* グリッドレイアウトのコンテナ */
.works-list-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin: 40px auto;
	max-width: 1200px;
}

/* 各制作実績アイテムのスタイル */
.work-item {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	text-align: center;
	padding-bottom: 20px;
	width: calc(33.33% - 14px);
	/* 3列表示の幅を計算 */
	box-sizing: border-box;
}

/* 画像のラッパーとホバーエフェクト */
.work-image-wrapper {
	overflow: hidden;
	position: relative;
	padding-bottom: 66.66%;
	/* アスペクト比3:2 */
	height: 0;
}

.work-image-wrapper img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.work-image-wrapper a:hover img {
	transform: scale(1.05);
}

/* サイトタイトルと所有者のスタイル */
.work-item .work-title {
	font-size: 14px;
	line-height: 1.5;
	color: #333;
}


/* ボタンのグループ */
.button-group {
	display: flex;
	gap: 10px;
		margin-top: 15px;
	margin-bottom: 15px;
}

/* Web制作ボタンのデザイン */
p.btn-web {
	display: inline-block;
	border-radius: 13px;
	padding: .1em 1.5em;
	background-color: rgb(15, 204, 62);
	color: #fff;
	text-decoration: none;
	/* リンクの下線を削除 */
	white-space: nowrap;
	/* テキストの折り返しを防ぐ */
	font-size: 13px;
	margin-bottom: 0;
}

/* 業種ボタンのデザイン */
.btn-industry {
	display: inline-block;
	border-radius: 13px;
	padding: .1em 2em;
	background-color: rgb(245, 162, 19);
	color: #fff;
	text-decoration: none;
	/* リンクの下線を削除 */
	white-space: nowrap;
	/* テキストの折り返しを防ぐ */
	font-size: 13px;
	transition: .4s;
}

a.btn-industry:hover {
	background-color: rgb(0, 0, 0);
}

/* サイトオーナー名のスタイル */
.work-item .work-owner-name {
	font-size: 12px;
	color: #666;
	margin-bottom: 5px;
	font-weight: normal;
	text-align: left;
}

/* サイトタイトルのスタイル */
.work-item .work-site-title {
	font-size: 15px;
	font-weight: bold;
	color: #333;
	margin-top: 0;
	margin-bottom: 0;
	text-align: left;
}

.work-item .work-title {
	padding: 10px;
}