/* EXPLORE: 全ページ共通の「次の公園を探す」 */
.home-section--explore {
	padding-block: clamp(82px, 10vw, 132px);
	background: var(--okt-green-dark);
	color: #fff;
}
.home-section--explore .section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: clamp(30px, 4.5vw, 48px);
}
.home-section--explore .section-heading__main { min-width: 0; }
.home-section--explore .section-heading__label {
	margin: 0;
	color: #b8dfc5;
	font-family: Georgia, "Times New Roman", serif;
	font-size: .7rem;
	font-weight: 800;
	letter-spacing: .2em;
	line-height: 1;
}
.home-section--explore .section-heading__label::after {
	content: "";
	display: block;
	width: 52px;
	height: 3px;
	margin: 16px 0 18px;
	border-radius: 999px;
	background: rgba(255,255,255,.72);
}
.home-section--explore .section-heading h2 {
	margin: 0;
	font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
	font-size: clamp(2rem, 5vw, 3.7rem);
	line-height: 1.2;
	letter-spacing: -.04em;
}
.home-section--explore .section-heading__note {
	max-width: 24rem;
	margin: 0 0 .35rem;
	color: rgba(255,255,255,.7);
	font-size: .86rem;
	font-weight: 700;
	letter-spacing: .04em;
	text-align: right;
}
.explore-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.explore-card {
	position: relative;
	display: flex;
	min-height: 220px;
	flex-direction: column;
	justify-content: flex-end;
	padding: 30px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 20px;
	background: rgba(255,255,255,.07);
	color: #fff;
	font: inherit;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
	transition: background .2s ease, transform .2s ease;
}
.explore-card::after { content: "→"; position: absolute; right: 24px; top: 22px; color: rgba(255,255,255,.42); font-size: 1.3rem; transition: transform .2s ease; }
.explore-card:hover { background: rgba(255,255,255,.13); color: #fff; transform: translateY(-4px); }
.explore-card:hover::after { transform: translateX(5px); }
.explore-card span { color: #b8dfc5; font-size: .72rem; font-weight: 800; letter-spacing: .18em; }
.explore-card strong { margin-top: 12px; font-size: clamp(1.25rem, 2vw, 1.7rem); }
.explore-card small { margin-top: 8px; color: rgba(255,255,255,.72); font-size: .86rem; line-height: 1.6; }
.explore-card--button[aria-expanded="true"] { background: rgba(255,255,255,.16); }
.explore-card--button[aria-expanded="true"]::after { content: "×"; transform: none; }
.area-category-panel {
	margin-top: 18px;
	padding: clamp(24px, 4vw, 40px);
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 20px;
	background: rgba(255,255,255,.075);
}
.area-category-panel[hidden] { display: none; }
.area-category-panel__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.area-category-panel__header p { margin: 0 0 7px; color: #b8dfc5; font-size: .68rem; font-weight: 800; letter-spacing: .18em; }
.area-category-panel__header h3 { margin: 0; font-size: clamp(1.4rem, 3vw, 2.2rem); }
.area-category-panel__close { display: grid; width: 42px; height: 42px; flex: 0 0 auto; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: transparent; color: #fff; font-size: 1.5rem; cursor: pointer; }
.area-category-panel__close:hover, .area-category-panel__close:focus-visible { background: rgba(255,255,255,.12); }
.area-category-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin: 0; padding: 0; list-style: none; }
.area-category-list a { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 58px; padding: 13px 16px; border: 1px solid rgba(255,255,255,.14); border-radius: 12px; color: #fff; text-decoration: none; }
.area-category-list a:hover { background: rgba(255,255,255,.1); color: #fff; }
.area-category-list span { font-weight: 800; }
.area-category-list small { flex: 0 0 auto; color: #b8dfc5; font-size: .72rem; }
.area-category-panel__empty { margin: 0; color: rgba(255,255,255,.72); }
.feature-tag-panel { background: rgba(255,255,255,.095); }
.explore-card--today small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.explore-home-link {
	text-align: center;
	margin-top: 40px;
}
.explore-home-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
	height: 52px;
	padding: 0 32px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(90deg, #e8f3eb, #cfe5d5);
	box-shadow: inset 0 0 0 1px rgba(7, 92, 52, .10);
	color: var(--okt-green-dark);
	font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: .08em;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
}
.explore-home-button:hover,
.explore-home-button:focus-visible {
	color: var(--okt-green-dark);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(7, 92, 52, .16);
	filter: brightness(1.02);
}

.secret-pick { display: grid; grid-template-columns: minmax(220px,.75fr) minmax(0,1.25fr); margin-top: clamp(24px,4vw,40px); overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 20px; background: #fff; }
.secret-pick__intro { padding: clamp(24px,4vw,36px); background: var(--okt-green-pale); color: var(--okt-ink); }
.secret-pick__intro p { margin: 0 0 8px; color: var(--okt-green); font-family: Georgia,"Times New Roman",serif; font-size: .68rem; font-weight: 800; letter-spacing: .16em; }
.secret-pick__intro h3 { margin: 0; color: var(--okt-green-dark); font-family: "Hiragino Mincho ProN","Yu Mincho",serif; font-size: clamp(1.35rem,3vw,2rem); }
.secret-pick__intro span { display:block; margin-top:12px; color:#536158; font-size:.84rem; line-height:1.8; }
.secret-pick__park { display:flex; min-width:0; align-items:center; gap:18px; padding:clamp(24px,4vw,38px); color:var(--okt-ink); text-decoration:none; }
.secret-pick__park:hover { background:#fbfdfb; }
.secret-pick__marker { position:relative; width:32px; height:32px; flex:0 0 auto; border:8px solid var(--okt-green); border-radius:50% 50% 50% 0; transform:rotate(-45deg); }
.secret-pick__marker::after { content:""; position:absolute; inset:4px; border-radius:50%; background:var(--okt-green); }
.secret-pick__copy { display:grid; min-width:0; gap:4px; }
.secret-pick__copy small { color:var(--okt-green); font-size:.72rem; font-weight:800; letter-spacing:.1em; }
.secret-pick__copy strong { overflow-wrap:anywhere; color:var(--okt-green-dark); font-family:"Hiragino Mincho ProN","Yu Mincho",serif; font-size:clamp(1.2rem,3vw,1.8rem); }
.secret-pick__arrow { display:grid; width:38px; height:38px; flex:0 0 auto; margin-left:auto; place-items:center; border:1px solid var(--okt-line); border-radius:50%; color:var(--okt-green); }
@media (max-width: 1000px) { .explore-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width: 760px) { .area-category-list { grid-template-columns: 1fr 1fr; } .secret-pick { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
	.home-section--explore { padding-block: 64px; }
	.home-section--explore .section-heading { display:block; margin-bottom:28px; }
	.home-section--explore .section-heading__note { margin-top:12px; text-align:left; }
	.explore-grid, .area-category-list { grid-template-columns:1fr; }
	.explore-card { min-height:170px; padding:24px; }
	.explore-home-button { min-width: 220px; height: 52px; padding: 0 28px; }
}
