/*!
 * around.css ─ 周辺散策ページ（/around/）
 *   ・グループ別に生活インフラを並べる
 *   ・タップで Google Maps（現在地周辺）に遷移
 */

.around-list {
	max-width: 880px;
	margin: 0 auto;
	padding: 24px 16px 80px;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", system-ui, sans-serif;
	color: var(--ink, #2a2a2a);
}

/* パンくず */
.ar-crumb {
	font-size: 12px;
	color: var(--ink2, #777);
	margin-bottom: 16px;
}
.ar-crumb a { color: var(--ink2, #777); text-decoration: none; }
.ar-crumb a:hover { text-decoration: underline; }
.ar-crumb__sep { margin: 0 6px; color: var(--ink3, #aaa); }

/* ============ ヘッダー ============ */
.ar-head {
	text-align: center;
	margin-bottom: 28px;
	padding: 24px 16px;
	background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
	border-radius: 16px;
	border: 1.5px solid #f9a8d4;
}
.ar-head__title {
	font-size: 26px;
	font-weight: 800;
	margin: 0 0 8px;
	color: #9d174d;
	letter-spacing: .02em;
}
.ar-head__lead {
	margin: 0;
	font-size: 13px;
	color: #831843;
	line-height: 1.7;
}

/* ============ グループ ============ */
.ar-groups {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 24px;
}
.ar-group {
	background: #fff;
	border: 1.5px solid #e8e0d0;
	border-radius: 14px;
	padding: 20px;
	transition: border-color .15s;
}
.ar-group:hover { border-color: #f9a8d4; }
.ar-group__head {
	margin-bottom: 14px;
}
.ar-group__title {
	margin: 0 0 4px;
	font-size: 17px;
	font-weight: 800;
	color: #2a2a2a;
}
.ar-group__desc {
	margin: 0;
	font-size: 12px;
	color: #6b7280;
	line-height: 1.6;
}

/* ============ アイテム（カード横並びで Maps に飛ぶ） ============ */
.ar-group__items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}
.ar-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 16px 8px 12px;
	background: linear-gradient(180deg, #fff 60%, #fdf2f8 100%);
	border: 1.5px solid #fbcfe8;
	border-radius: 12px;
	text-decoration: none;
	color: inherit;
	transition: all .15s;
	position: relative;
	overflow: hidden;
}
.ar-item:hover {
	background: linear-gradient(180deg, #fff 40%, #fce7f3 100%);
	border-color: #ec4899;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(236, 72, 153, .15);
	text-decoration: none;
}
.ar-item__icon {
	font-size: 32px;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fdf2f8;
	border-radius: 14px;
	transition: transform .2s;
}
.ar-item:hover .ar-item__icon { transform: scale(1.1); }
.ar-item__title {
	font-size: 13.5px;
	font-weight: 800;
	color: #2a2a2a;
	text-align: center;
	line-height: 1.4;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
	margin-top: 2px;
}

/* ─── Mapsで探す ボタン（控えめ：白地に細枠 / 影なし） ─── */
.ar-item__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 8px;
	padding: 5px 12px;
	background: #fff;
	color: #be185d;
	font-size: 11px;
	font-weight: 700;
	border: 1px solid #f9a8d4;
	border-radius: 999px;
	letter-spacing: .02em;
	white-space: nowrap;
	transition: all .15s;
}
.ar-item:hover .ar-item__btn {
	background: #fdf2f8;
	border-color: #ec4899;
	color: #9d174d;
}

/* ============ フッター ============ */
.ar-foot {
	margin-top: 28px;
	padding-top: 18px;
	border-top: 1px dashed #d8d0c0;
	text-align: center;
}
.ar-foot__note {
	font-size: 11px;
	color: #999;
	margin: 0;
	line-height: 1.6;
}

/* ============ PC（901px以上）：横幅拡張・アイテム5列に ============ */
@media (min-width: 901px) {
	.around-list { max-width: 1120px; padding: 36px 24px 100px; }
	.ar-head { padding: 36px 24px; }
	.ar-head__title { font-size: 32px; }
	.ar-group { padding: 24px 28px; }
	.ar-group__title { font-size: 19px; }
	.ar-group__items { gap: 12px; }
	.ar-item { padding: 20px 12px 16px; }
	.ar-item__icon { width: 64px; height: 64px; font-size: 36px; }
}

/* ============ スマホ（〜480px） ============ */
@media (max-width: 480px) {
	.around-list { padding: 16px 12px 60px; }
	.ar-head { padding: 20px 12px; }
	.ar-head__title { font-size: 22px; }
	.ar-group { padding: 16px; }
	.ar-group__title { font-size: 15px; }
	.ar-group__desc { font-size: 11px; }
	.ar-group__items { gap: 8px; }
	.ar-item { padding: 12px 6px 10px; }
	.ar-item__icon { width: 46px; height: 46px; font-size: 26px; border-radius: 12px; }
	.ar-item__title { font-size: 12px; }
	.ar-item__btn { font-size: 9.5px; padding: 3px 8px; margin-top: 6px; border-width: 1px; }
}
