/* =================================================
   一覧全体
================================================= */
.switch-list {
	padding: 0 10px 40px;
}

.page-title {
	font-size: 22px;
	margin-bottom: 24px;
	padding-bottom: 8px;
	border-bottom: 2px solid #003a8f;
}

/* =================================================
   カテゴリアンカー
================================================= */

.category-anchor {
	display: flex;
	gap: 10px;
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	flex-wrap: wrap;
}

.category-anchor li a {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	font-size: 13px;
	border-radius: 4px;
	background: #f2f4f7;
	color: #444;
	text-decoration: none;
	transition: background .2s ease, color .2s ease;
}

/* hover */
.category-anchor li a:hover {
	background: #e6ecf5;
	color: #003a8f;
}

/* 現在位置（任意） */
.category-anchor li a.is-active {
	background: #e6ecf5;
	color: #003a8f;
	font-weight: 500;
}

/* 押せない（未対応） */
.category-anchor li a.is-disabled {
	background: #f7f7f7;
	color: #aaa;
	pointer-events: none;
}


/* =========================
   セクション見出し（法人 / 個人）
========================= */
.section-title {
	font-size: 20px;
	margin: 48px 0 20px;
	padding-bottom: 6px;
	border-bottom: 2px solid #003a8f;
	color:#6C6C6C;
}


/* =================================================
   カテゴリ見出し
================================================= */
.category-title {
	font-size: 18px;
	margin: 48px 0 16px;
	padding-left: 10px;
	border-left: 4px solid #003a8f;
	color:#6C6C6C;
}

/* =================================================
   グリッド
================================================= */
.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0;
}

/* =================================================
   カード
================================================= */
.product-card {
	background: #fff;
	border: 1px solid #ddd;
	transition: box-shadow .2s ease, transform .2s ease;
}

.product-card a {
	display: block;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.product-card:hover {
	box-shadow: 0 6px 16px rgba(0,0,0,.12);
	transform: translateY(-2px);
}

/* =================================================
   画像
================================================= */
.product-image {
	padding: 1px 0;
	text-align: center;
	border-bottom: 1px solid #eee;
}

.product-image img {
	max-width: 100%;
	height: auto;
}

/* =================================================
   本文
================================================= */
.product-body {
	padding: 14px 16px 18px;
}

.product-name {
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 6px;
}

.product-desc {
	font-size: 13px;
	color: #555;
	line-height: 1.5;
	margin-bottom: 10px;
}

/* =================================================
   機能アイコン（デフォルト：グレー）
================================================= */
.feature-icons {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
	gap: 6px;
	list-style: none;
	padding: 0;
	margin: 8px 0 10px;
}

.feature-icons li {
	display: flex;
	align-items: center;
	justify-content: center;

	height: 27px;              /* 高さを固定 */
	padding: 0 6px;            /* 横だけ余白 */
	font-size: 11px;
	line-height: 1.0;          /* 2行でも潰れない */
	text-align: center;

	background: #f2f4f7;
	color: #333;
	border-radius: 4px;
	box-sizing: border-box;
	white-space: normal;       /* 2行OK */
}

/*先出しセンドバック保守*/
.feature-icons .icon-sendback {
	background-color: #d6e4ff;
	color: #002f6c;
}

/* 保証期間*/
.feature-icons .icon-warranty-3y {
	background-color:#E3E3E3;
	color: #333;
	font-weight: 500;
}

.feature-icons .icon-warranty-1y {
	background-color: #f0f0f0;
	color: #333;
}

/* PoE*/
.feature-icons .icon-poe {
  background-color:  #e6f0ff; 
  color: #003a8f;
}


/* =================================================
   レスポンシブ
================================================= */
@media screen and (max-width: 600px) {
	.page-title {
		font-size: 20px;
	}
	.category-title {
		font-size: 17px;
	}
}
