/* ◼︎更新情報*/
/*タイトル*/
.updates h2 {
	margin: 0 0 12px 0;
	height: auto; /* 行の高さ */
	display: flex;
	align-items: center;
	padding: 12px 16px; /* 左右余白 */
	border-bottom: 1px solid rgb(var(--line-rgb) / var(--line-a));
	letter-spacing: 0.04em;
}
/* 内容 */
.updatesList {
	margin: 0;
	padding: 8px 12px 14px;
	list-style: none;
	
	overflow: hidden;
	background: transparent;
}
.updatesList li {
	display: flex;
	padding: 10px 6px;
	color: var(--basic2);
	font-size: 16px;
	gap: 18px; /* 日付と本文の幅調整 */
	line-height: 1.8; /* 縦余白 */
	align-items: baseline; /*日付と本文の文字の基準線を揃える */
	border-bottom: 1px solid rgb(var(--line-rgb) / var(--line-weak));
}
.updatesList li:hover {
	background: rgba(0, 0, 0, 0.04); /* ホバー時に背景を変える*/
}
.updates-text {
	flex: 1 1 auto; /* 余ったスペース分伸びる 狭くなったら縮む 基本サイズは内容に従う */
	min-width: 0; /* 横にはみ出さないようにする */
}
.updatesList time {
	font-variant-numeric: tabular-nums; /* 対応フォントの数字を等幅にする */
	opacity: 0.8; /* 本文より透明度を薄くする */
	white-space: nowrap; /* 日付の途中折り返しを防ぐ */
	width: 5em; /* YYYY-MM-DD 固定幅にする */
	flex: 0 0 auto; /* 余ったスペース分伸びない 狭くなっても縮まない 基本サイズは内容に従う*/
}

/* ◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎
◼︎	インデックス
◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎ */
/*Pickup */
.homeTop {
	display: grid;
	grid-template-columns: 1fr 160px; /* 左は可変、右は不変 */
	gap: 16px;
	align-items: start;
}
/* Pickup：カードを横並び */
.pickupGrid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin: 12px;
	padding: 0 4px;
}
/* 1枚のカード：縦に積んで高さを確保 */
.pickupCard {
	display: flex;
	flex-direction: column;
	gap: 8px;

	padding: 14px 14px 12px;
	margin: 0;

	text-decoration: none;
	color: var(--basic2);

	background: rgba(255, 255, 255, 0.55);
	border: 1px solid rgb(var(--line-rgb) / var(--line-weak));
	border-radius: 0; /* 角丸嫌なら0で固定 */
	min-height: 120px; /* ←縦幅を伸ばす本体 */
}
.pickupCard:hover {
	background: rgba(0, 0, 0, 0.03);
}
.pickupKicker {
	font-weight: 700;
	letter-spacing: 0.14em;
	opacity: 0.85;
	border: 0;
}

.pickupMain {
	font-size: 16px;
	line-height: 1.35;
}
.pickupSub {
	font-size: 13px;
	opacity: 0.8;
	line-height: 1.35;
}
.pickupMeta {
	margin-top: auto; /* 最下段に押し下げる */
	font-size: 12px;
	letter-spacing: 0.06em;
	opacity: 0.7;
	padding-top: 10px;
	border-top: 1px solid rgb(var(--line-rgb) / var(--line-weak));
}

/* 幅が狭い時は縦積み */
@media (max-width: 900px) {
	.pickupGrid {
		grid-template-columns: 1fr;
	}
}

/* ◼︎リンクウインドウ：更新情報っぽく（箱感なし） */
.linkwindow {
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 0;
}

/* タイトルは更新情報の見出しと同じノリに */
.linkTitle {
	margin: 0 0 10px 0;
	padding: 10px 0;
	border-bottom: 1px solid rgb(var(--line-rgb) / var(--line-a));
	color: var(--basic2);
	letter-spacing: 0.14em;
	opacity: 0.9;
}

/* リストは“ただの縦並び” */
.stickyList {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* リンク1行＝更新情報の1行と同じ扱い */
.sticky {
	display: flex;
	align-items: center;
	justify-content: space-between;

	padding: 10px 2px;
	text-decoration: none;
	color: var(--basic2);
	line-height: 1.2;
	letter-spacing: 0.04em;

	border-bottom: 1px solid rgb(var(--line-rgb) / var(--line-weak));

	/* 案Cの“下線演出” */
	background-image: linear-gradient(currentColor, currentColor);
	background-repeat: no-repeat;
	background-position: 0 calc(100% - 8px);
	background-size: 0 1px;
	transition:
		background-size 0.18s ease,
		background-color 0.18s ease;
}

.sticky:hover {
	background-color: rgba(0, 0, 0, 0.03);
	background-size: 100% 1px;
}

.sticky::after {
	content: "→";
	opacity: 0.5;
}
