@charset "UTF-8";

/* ==============================
   Kiratt Sitemap (kbst- prefix)
   独立namespace / shine-arc CSSと衝突回避
   ============================== */

#sitemap-page.kbst {
	color: #333;
	line-height: 1.8;
}

/* ===== shine-arc 親テーマのリスト装飾を全力で打ち消し ===== */
#sitemap-page.kbst ul {
	list-style: none !important;
	padding: 0;
	margin: 0;
}

#sitemap-page.kbst ul li {
	list-style: none !important;
	padding-left: 0 !important;
	background: none !important;
}

#sitemap-page.kbst ul li::before,
#sitemap-page.kbst ul li::after {
	content: none !important;
	display: none !important;
	background: none !important;
	border: none !important;
}

/* ===== リード文 ===== */
.kbst-lead {
	margin: 0 0 48px;
	padding: 20px 24px;
	background: #f5fafd;
	border-left: 4px solid #129bb9;
	font-size: 15px;
	line-height: 1.9;
	color: #333;
	border-radius: 0 6px 6px 0;
}

/* ===== セクション ===== */
.kbst-section {
	margin: 0 0 56px;
}

.kbst-section:last-child {
	margin-bottom: 0;
}

/* ===== 見出し h2 (pタグで実装) ===== */
.kbst-h2 {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 12px;
	padding: 0 0 14px;
	border-bottom: 2px solid #129bb9;
	font-size: 22px;
	font-weight: 700;
	color: #0b1f3a;
	letter-spacing: 0.02em;
	background: none;
}

.kbst-h2__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	border-radius: 50%;
	background: #129bb9;
	color: #fff;
}

.kbst-h2__icon svg {
	width: 20px;
	height: 20px;
}

/* ===== セクション説明文 ===== */
.kbst-section-desc {
	margin: 0 0 20px;
	padding-left: 50px;
	font-size: 14px;
	color: #666;
	line-height: 1.7;
}

/* ===== カードグリッド ===== */
.kbst-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 14px;
}

.kbst-card {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 18px 20px;
	background: #fff;
	border: 1px solid #e3eaef;
	border-radius: 8px;
	color: #0b1f3a;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	position: relative;
}

.kbst-card::after {
	content: "";
	position: absolute;
	right: 16px;
	top: 50%;
	width: 8px;
	height: 8px;
	border-top: 2px solid #129bb9;
	border-right: 2px solid #129bb9;
	transform: translateY(-50%) rotate(45deg);
	transition: right 0.2s ease;
}

.kbst-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(18, 155, 185, 0.15);
	border-color: #129bb9;
	text-decoration: none;
}

.kbst-card:hover::after {
	right: 12px;
}

.kbst-card__ttl {
	display: block;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
	padding-right: 18px;
}

.kbst-card__desc {
	display: block;
	font-size: 12px;
	color: #888;
	line-height: 1.5;
}

/* アクセントカード（予約・問い合わせ用） */
.kbst-card--accent {
	background: linear-gradient(135deg, #129bb9 0%, #0e88a3 100%);
	border-color: #129bb9;
	color: #fff;
}

.kbst-card--accent .kbst-card__desc {
	color: rgba(255, 255, 255, 0.85);
}

.kbst-card--accent::after {
	border-top-color: #fff;
	border-right-color: #fff;
}

.kbst-card--accent:hover {
	color: #fff;
	box-shadow: 0 6px 18px rgba(18, 155, 185, 0.4);
}

/* ===== 店舗エリアブロック ===== */
.kbst-shop-area {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}

.kbst-shop-area__block {
	padding: 18px 20px;
	background: #fafcfd;
	border: 1px solid #e3eaef;
	border-radius: 8px;
}

.kbst-h3 {
	margin: 0 0 12px;
	padding: 0 0 8px;
	border-bottom: 1px dashed #129bb9;
	font-size: 16px;
	font-weight: 700;
	color: #0b1f3a;
	background: none;
}

.kbst-h3 a {
	color: #0b1f3a;
	text-decoration: none;
	transition: color 0.2s ease;
}

.kbst-h3 a:hover {
	color: #129bb9;
}

.kbst-shop-list {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
	display: flex !important;
	flex-wrap: wrap;
	gap: 6px 14px;
}

#sitemap-page.kbst .kbst-shop-list li {
	margin: 0 !important;
	padding: 0 !important;
	font-size: 14px;
	background: none !important;
	list-style: none !important;
}

#sitemap-page.kbst .kbst-shop-list li::before,
#sitemap-page.kbst .kbst-shop-list li::after {
	content: none !important;
	display: none !important;
	background: none !important;
}

.kbst-shop-list a {
	display: inline-flex;
	align-items: center;
	color: #1a4f6b;
	text-decoration: none;
	transition: color 0.2s ease;
	position: relative;
	padding-left: 12px;
}

.kbst-shop-list a::before {
	content: "" !important;
	display: block !important;
	position: absolute;
	left: 0;
	top: 50%;
	width: 5px;
	height: 5px;
	border-top: 1.5px solid #129bb9;
	border-right: 1.5px solid #129bb9;
	transform: translateY(-50%) rotate(45deg);
	background: none !important;
}

.kbst-shop-list a:hover {
	color: #129bb9;
	text-decoration: underline;
}

/* ===== details/summary ===== */
.kbst-details {
	margin-top: 20px;
	border: 1px solid #e3eaef;
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
}

.kbst-details > summary {
	padding: 14px 20px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	color: #0b1f3a;
	background: #fafcfd;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: background 0.2s ease;
}

.kbst-details > summary::-webkit-details-marker {
	display: none;
}

.kbst-details > summary::after {
	content: "+";
	font-size: 20px;
	font-weight: 400;
	color: #129bb9;
	transition: transform 0.2s ease;
}

.kbst-details[open] > summary::after {
	content: "−";
}

.kbst-details > summary:hover {
	background: #f0f7fa;
}

/* ===== リンクリスト (details内) ===== */
.kbst-link-list {
	list-style: none !important;
	padding: 16px 20px !important;
	margin: 0 !important;
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 8px 16px;
	border-top: 1px solid #e3eaef;
}

#sitemap-page.kbst .kbst-link-list li {
	margin: 0 !important;
	padding: 0 !important;
	font-size: 14px;
	background: none !important;
	list-style: none !important;
}

#sitemap-page.kbst .kbst-link-list li::before,
#sitemap-page.kbst .kbst-link-list li::after {
	content: none !important;
	display: none !important;
	background: none !important;
}

.kbst-link-list a {
	display: inline-block;
	padding: 4px 0 4px 14px;
	color: #1a4f6b;
	text-decoration: none;
	position: relative;
	transition: color 0.2s ease;
}

.kbst-link-list a::before {
	content: "" !important;
	display: block !important;
	position: absolute;
	left: 0;
	top: 50%;
	width: 5px;
	height: 5px;
	border-top: 1.5px solid #129bb9;
	border-right: 1.5px solid #129bb9;
	transform: translateY(-50%) rotate(45deg);
	background: none !important;
}

.kbst-link-list a:hover {
	color: #129bb9;
	text-decoration: underline;
}

/* ===== レスポンシブ ===== */
@media screen and (max-width: 768px) {
	.kbst-lead {
		margin-bottom: 32px;
		padding: 16px 18px;
		font-size: 14px;
	}

	.kbst-section {
		margin-bottom: 40px;
	}

	.kbst-h2 {
		font-size: 18px;
		gap: 10px;
	}

	.kbst-h2__icon {
		width: 30px;
		height: 30px;
	}

	.kbst-h2__icon svg {
		width: 16px;
		height: 16px;
	}

	.kbst-section-desc {
		padding-left: 40px;
		font-size: 13px;
	}

	.kbst-card-grid {
		grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
		gap: 10px;
	}

	.kbst-card {
		padding: 14px 16px;
	}

	.kbst-card__ttl {
		font-size: 14px;
	}

	.kbst-card__desc {
		font-size: 11px;
	}

	.kbst-shop-area {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.kbst-shop-area__block {
		padding: 14px 16px;
	}

	.kbst-link-list {
		grid-template-columns: 1fr;
		padding: 14px 16px !important;
	}
}