@charset "UTF-8";
/*
 * gajet.take566.com 刷新レイヤ
 * ------------------------------------------------------------------
 * 賢威8 の base.css / advanced.css / default-style.css の後に、独立した
 * <link> として最後に読まれる（inc/assets.php を参照）。親CSSは1バイトも触らない。
 *
 * 設計方針:
 *   - 色は「ブランド色」と「行動色」の2ロールに分ける。
 *     ブランド色 = 賢威由来のティール。罫・見出し・アクティブ表示など「構造」だけに使う。
 *     行動色     = cs-shop のオレンジ。「買う」導線だけに使う。
 *     クリックで購買に向かわない要素にオレンジを使わない。逆も同じ。
 *   - Webフォントを使わない（日本語システムフォントのみ）。
 *   - **サイズは rem ではなく px で書く。** 賢威は base.css:84 で
 *     `html { font-size: 62.5% }`（＝ルート10px）にしているので、rem で書くと
 *     すべてが意図の 62.5% になる。実測で本文が 10px、広告表記が 7.5px になっていた。
 *     親の設定に依存しないよう px に統一する（要素基準で伸びてほしい箇所だけ em）。
 *   - モーションは transform / opacity / color 系のみ、160ms。
 *     prefers-reduced-motion で全停止する。
 *   - ダークモードは今回出さない。cs-shop の商品カードと楽天の商品画像が
 *     白背景前提のため、中途半端なダークは無対応より体験が悪い。
 *     トークンを1箇所に集めてあるので、将来ここに足せる。
 */

/* ==================================================================
   1. トークン
   ================================================================== */

:root {
	/* ブランド色（構造）。#05a5ab は白背景でコントラスト約2.6:1しかないため、
	   文字に使う場合は必ず --g-brand-ink（約5.2:1、WCAG AA適合）を使う。 */
	--g-brand: #05a5ab;
	--g-brand-ink: #00767c;
	--g-brand-wash: #e8f7f7;

	/* 行動色。cs-shop のボタンと同系。CTA以外では使わない。 */
	--g-action: #e8620d;

	/* インク */
	--g-ink: #16181d;
	--g-ink-2: #454b54;
	--g-muted: #6b7280;

	/* 面と罫 */
	--g-surface: #ffffff;
	--g-bg: #f1f3f5;
	--g-line: #e5e7eb;
	--g-line-strong: #d5d8dc;

	/* 形。角丸は1つのスケールに統一する（賢威は箇所ごとにバラバラ）。 */
	--g-radius: 10px;
	--g-radius-sm: 6px;

	/* 動き */
	--g-ease: cubic-bezier(0.16, 1, 0.3, 1);
	--g-dur: 160ms;

	/* 日本語システムフォント。Webフォントは読まない。 */
	--g-font: -apple-system, BlinkMacSystemFont, "Hiragino Sans",
		"Hiragino Kaku Gothic ProN", "BIZ UDPGothic", "Noto Sans JP",
		"Yu Gothic Medium", "游ゴシック Medium", YuGothic, Meiryo, sans-serif;
}

/* ==================================================================
   2. ベース / タイポグラフィ
   ================================================================== */

body,
.keni-section,
.keni-main_wrap,
.keni-sub {
	font-family: var(--g-font);
	color: var(--g-ink);
}

body {
	background: var(--g-bg);
	font-size: 16px;
	line-height: 1.9;
	letter-spacing: 0.02em;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

/* 数字は等幅に。価格・日付・型番が縦に揃う。 */
time,
.entry_date,
.csshop-item .price,
.widget_recent_entries_ranking .rank {
	font-variant-numeric: tabular-nums;
	font-feature-settings: "tnum" 1;
}

a {
	color: var(--g-brand-ink);
	text-underline-offset: 0.18em;
	text-decoration-thickness: 1px;
}

a:hover,
a:active,
a:focus {
	color: var(--g-brand-ink);
}

:focus-visible {
	outline: 3px solid var(--g-brand);
	outline-offset: 2px;
	border-radius: 2px;
}

img {
	max-width: 100%;
	height: auto;
}

/* ==================================================================
   3. レイアウト
   ================================================================== */

.keni-container,
.keni-header_inner,
.keni-gnav_inner,
.keni-main_inner {
	max-width: 1180px;
	margin-inline: auto;
}

.keni-section_wrap {
	background: var(--g-surface);
	border: 1px solid var(--g-line);
	border-radius: var(--g-radius);
	box-shadow: none;
}

.keni-main_wrap {
	background: var(--g-bg);
}

/* ==================================================================
   4. ヘッダー
   ================================================================== */

/*
 * 既定はシアンの斜めストライプ（default-style.css が linear-gradient で描く）。
 * 装飾のためだけに視線を奪うので、ブランド色の実線1本に置き換える。
 */
.keni-header_wrap {
	background-image: none;
	background-color: var(--g-surface);
	border-top: 3px solid var(--g-brand);
	border-bottom: 1px solid var(--g-line);
}

.keni-header_inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	padding-block: 18px;
}

.keni-header .site-title {
	margin: 0;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.01em;
}

.keni-header .site-title > a,
.keni-header .site-title > a span {
	color: var(--g-ink);
	text-decoration: none;
}

/*
 * タグラインは既定だとヘッダー右上に単独で浮いていて、どこにも属して見えない。
 * サイト名の直下に小さく置き直す。
 */
.keni-header_cont {
	margin: 0;
	padding: 0;
	text-align: left;
	float: none;
	width: auto;
}

.keni-header .site-description {
	margin: 0;
	font-size: 13px;
	line-height: 1.6;
	color: var(--g-muted);
	letter-spacing: 0.04em;
}

/* ==================================================================
   5. グローバルナビ
   ================================================================== */

.keni-gnav_wrap {
	background: var(--g-surface);
	border-bottom: 1px solid var(--g-line);
}

.keni-gnav_cont {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow-x: auto;
	scrollbar-width: none;
}

.keni-gnav_cont::-webkit-scrollbar {
	display: none;
}

.keni-gnav_cont > li {
	flex: 0 0 auto;
	margin: 0;
	border: 0;
	background: none;
}

.keni-gnav_cont > li > a {
	display: flex;
	align-items: center;
	height: 56px;
	padding-inline: 16px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--g-ink-2);
	text-decoration: none;
	white-space: nowrap;
	border-bottom: 2px solid transparent;
	background: none;
	transition: color var(--g-dur) var(--g-ease),
		border-color var(--g-dur) var(--g-ease);
}

.keni-gnav_cont > li > a:hover,
.keni-gnav_cont > li > a:focus-visible {
	color: var(--g-brand-ink);
	border-bottom-color: var(--g-brand);
}

.keni-gnav_cont > li.current-menu-item > a,
.keni-gnav_cont > li.current_page_item > a {
	color: var(--g-brand-ink);
	border-bottom-color: var(--g-brand);
}

/* ==================================================================
   6. 一覧カード
   ================================================================== */

/*
 * 一覧は「白いカードを白い箱の中に並べる」入れ子を避ける。
 * 賢威は entry-list を .keni-section_wrap（＝白い面）で包むので、
 * 面はそちらに任せ、各記事は罫線で区切るだけにする。
 */
.keni-main .entry-list {
	margin: 0;
	padding: 0;
}

.entry-list_item {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
}

.entry-list_item + .entry-list_item {
	border-top: 1px solid var(--g-line);
}

.gajet-card {
	position: relative;
	display: grid;
	grid-template-columns: 180px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
	padding: 18px 4px;
	background: none;
	border: 0;
	border-radius: var(--g-radius-sm);
	transition: background-color var(--g-dur) var(--g-ease);
}

.gajet-card:hover {
	background-color: var(--g-bg);
}

/* SNSボタンは既定で非表示（賢威の「投稿一覧のSNSボタン」設定）。
   もし有効に戻された場合でもグリッドが崩れないよう横1行で敷き直す。 */
.gajet-card .sns-btn_wrap {
	grid-column: 1 / -1;
	position: relative;
	z-index: 1;
	display: flex;
	gap: 8px;
	margin: 0;
	padding: 0;
}

/*
 * サムネイル枠。商品写真は白背景で撮られているので cover ではなく contain。
 * 切れて何の商品か分からなくなるのを避ける。
 */
.gajet-card_thumb {
	margin: 0;
	aspect-ratio: 4 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: var(--g-bg);
	border: 1px solid var(--g-line);
	border-radius: var(--g-radius-sm);
}

.gajet-card_thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	mix-blend-mode: multiply;
}

/* 商品画像も無い記事。画像リクエストを発生させずCSSだけで枠を埋める。 */
.gajet-card_thumb-empty {
	background-image: linear-gradient(
			135deg,
			var(--g-line) 25%,
			transparent 25%
		),
		linear-gradient(-135deg, var(--g-line) 25%, transparent 25%);
	background-size: 14px 14px;
	background-position: 0 0;
	opacity: 0.45;
}

.gajet-card_body {
	min-width: 0;
}

.gajet-card .entry_title {
	margin: 0 0 8px;
	padding: 0;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.55;
	letter-spacing: 0.01em;
	background: none;
	border: 0;
}

.gajet-card .entry_title a {
	color: var(--g-ink);
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.gajet-card .entry_title a:hover {
	color: var(--g-brand-ink);
	text-decoration: underline;
}

/*
 * stretched link: タイトルの <a> をカード全面に広げる。
 * カード全体を <a> で包めないのは、中のカテゴリリンクが入れ子の <a> になり
 * 不正なHTMLになるため。カテゴリは下で前面に戻す。
 */
.gajet-card_titlelink::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
}

.gajet-card .entry_status {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 12px;
	margin: 0 0 8px;
	padding: 0;
	border: 0;
	background: none;
	font-size: 12px;
	line-height: 1.5;
	color: var(--g-muted);
	pointer-events: none;
}

.gajet-card .entry_date,
.gajet-card .entry_category {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gajet-card .entry_date_item {
	margin: 0;
	padding: 0;
	background: none;
	color: var(--g-muted);
}

.gajet-card .entry_category_item {
	margin: 0;
	padding: 0;
	background: none;
	pointer-events: auto;
}

.gajet-card .entry_category_item a {
	display: inline-block;
	padding: 1px 8px;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.7;
	color: var(--g-brand-ink);
	background: var(--g-brand-wash);
	border-radius: 999px;
	text-decoration: none;
}

.gajet-card .entry_category_item a:hover {
	background: var(--g-brand);
	color: #fff;
}

.gajet-card .entry_description {
	margin: 0;
	font-size: 14px;
	line-height: 1.8;
	color: var(--g-ink-2);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media (max-width: 640px) {
	.gajet-card {
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 14px;
	}

	.gajet-card_thumb {
		aspect-ratio: 16 / 9;
	}

	.gajet-card .entry_title {
		font-size: 16px;
	}
}

/* ==================================================================
   7. 記事本文
   ================================================================== */

.article_wrap .keni-section {
	padding: 28px 28px 36px;
}

.article-header {
	margin-bottom: 22px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--g-line);
}

.article-header .entry_title,
.keni-section h1.entry_title {
	margin: 0 0 12px;
	padding: 0;
	font-size: clamp(24px, 18.4px + 1.6vw, 32px);
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: 0.01em;
	color: var(--g-ink);
	background: none;
	border: 0;
}

.article-header .entry_status {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 12px;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	font-size: 12px;
	color: var(--g-muted);
}

.article-header .entry_date,
.article-header .entry_category {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.article-header .entry_date_item {
	margin: 0;
	padding: 0;
	background: none;
}

.article-header .entry_category_item {
	margin: 0;
	padding: 0;
	background: none;
}

.article-header .entry_category_item a {
	display: inline-block;
	padding: 1px 8px;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.7;
	color: var(--g-brand-ink);
	background: var(--g-brand-wash);
	border-radius: 999px;
	text-decoration: none;
}

.article-body {
	font-size: 16px;
	line-height: 1.95;
	color: var(--g-ink);
}

.article-body > p {
	margin: 0 0 24px;
	max-width: 40em;
}

/*
 * 見出し。既定の H2 はティールのベタ塗り帯で、記事のどこを見ても同じ塊が並ぶ。
 * 帯をやめて左の罫と余白で階層を作る。H3 は太さと色だけで差をつける。
 */
.article-body h2,
.keni-section .article-body h2 {
	margin: 48px 0 16px;
	padding: 0 0 0 14px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--g-ink);
	background: none;
	border: 0;
	border-left: 4px solid var(--g-brand);
	border-radius: 0;
}

.article-body h3,
.keni-section .article-body h3 {
	margin: 32px 0 12px;
	padding: 0 0 6px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
	color: var(--g-ink);
	background: none;
	border: 0;
	border-bottom: 1px solid var(--g-line);
	border-radius: 0;
}

.article-body h4,
.keni-section .article-body h4 {
	margin: 28px 0 8px;
	padding: 0;
	font-size: 16px;
	font-weight: 700;
	color: var(--g-ink);
	background: none;
	border: 0;
}

/* gajet-seo が出す見出し。上の H2 と同じ言語に揃える。 */
.article-body h2.gajet-seo-section-title,
.keni-section .article-body h2.gajet-seo-section-title {
	margin: 48px 0 16px;
	padding: 0 0 0 14px;
	font-size: 22px;
	line-height: 1.5;
	color: var(--g-ink);
	border: 0;
	border-left: 4px solid var(--g-brand);
}

.article-body ul,
.article-body ol {
	margin: 0 0 24px;
	padding-left: 1.5em;
	max-width: 40em;
}

.article-body li {
	margin-bottom: 6.4px;
	line-height: 1.85;
}

/* 広告表記。本文と地続きに見えていたので注記として区別する。 */
.article-body .gajet-seo-disclosure,
.keni-section .gajet-seo-disclosure {
	margin: 0 0 28px;
	padding: 8px 12px;
	font-size: 12px;
	line-height: 1.7;
	color: var(--g-muted);
	background: var(--g-bg);
	border: 1px solid var(--g-line);
	border-left: 3px solid var(--g-line-strong);
	border-radius: var(--g-radius-sm);
}

@media (max-width: 640px) {
	.article_wrap .keni-section {
		padding: 20px 16px 28px;
	}

	.article-body h2,
	.keni-section .article-body h2,
	.article-body h2.gajet-seo-section-title,
	.keni-section .article-body h2.gajet-seo-section-title {
		margin-top: 36px;
		font-size: 19px;
	}
}

/* ==================================================================
   8. cs-shop 商品ブロック
   ================================================================== */

.article-body .csshop-item {
	margin: 0 0 18px;
	padding: 18px;
	background: var(--g-surface);
	border: 1px solid var(--g-line);
	border-radius: var(--g-radius);
}

/*
 * 商品名。gajet-seo の inline CSS がホバー色に青(#4299e1)を当てていて、
 * ティール/オレンジと合わせて3色目になっていた。ブランド色に寄せる。
 * gajet-seo の <style> は wp_head で本ファイルより後に出るため、
 * .article-body を足して詳細度で上回っておく。
 */
.article-body div.csshop-item p.csshop-item-name a,
.article-body div.csshop-item p.csshop-item-name a:hover {
	color: var(--g-ink);
}

.article-body div.csshop-item p.csshop-item-name a:hover {
	color: var(--g-brand-ink);
	text-decoration: underline;
}

.article-body .csshop-item .price {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
}

.article-body .csshop-item .shop a {
	font-size: 13px;
	color: var(--g-ink-2);
}

/*
 * 楽天の生説明文。対応機種の型番が数百字続くことがあり、記事の読み筋を分断する。
 * 折り畳んで下端をフェードさせる。DOMからは消さない（クローラは読めるまま）。
 */
.article-body .csshop-item .description {
	position: relative;
	max-height: 11.5em;
	overflow: hidden;
	font-size: 13px;
	line-height: 1.75;
	color: var(--g-ink-2);
	background: var(--g-bg);
	border: 1px solid var(--g-line);
	border-radius: var(--g-radius-sm);
	padding: 10px 12px;
}

.article-body .csshop-item .description::after {
	content: "";
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	height: 3.5em;
	background: linear-gradient(to bottom, rgba(241, 243, 245, 0), var(--g-bg));
	pointer-events: none;
}

/*
 * ページャ。1〜100 が格子状に並んで記事の途中に大きな塊を作っていた。
 * リンクは1つも消さず（?pagenum=2 の可視性を e2e が見ている）、
 * 高さを固定した横スクロールの帯にする。
 */
.article-body .csshop-page-navi {
	display: flex;
	flex-wrap: nowrap;
	gap: 6px;
	align-items: center;
	margin: 16px 0;
	padding: 8px 2px;
	overflow-x: auto;
	overscroll-behavior-x: contain;
	scrollbar-width: thin;
	-webkit-overflow-scrolling: touch;
}

.article-body .csshop-page-navi > a,
.article-body .csshop-page-navi > span {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	/* タップ領域は 44x44 以上（WCAG 2.5.8 / e2e の mobile.spec が見ている閾値）。 */
	min-width: 44px;
	height: 44px;
	padding-inline: 10px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	border-radius: var(--g-radius-sm);
	text-decoration: none;
}

.article-body .csshop-page-navi > a {
	color: var(--g-ink-2);
	background: var(--g-surface);
	border: 1px solid var(--g-line);
	transition: border-color var(--g-dur) var(--g-ease),
		color var(--g-dur) var(--g-ease);
}

.article-body .csshop-page-navi > a:hover {
	color: var(--g-brand-ink);
	border-color: var(--g-brand);
}

.article-body .csshop-page-navi > span.current {
	color: #fff;
	background: var(--g-brand-ink);
	border: 1px solid var(--g-brand-ink);
}

.article-body .csshop-search-form {
	margin: 16px 0;
	padding: 12px;
	background: var(--g-bg);
	border: 1px solid var(--g-line);
	border-radius: var(--g-radius-sm);
	font-size: 14px;
}

.article-body .csshop-service-credits {
	font-size: 12px;
	color: var(--g-muted);
}

/* ==================================================================
   8b. 記事下（関連記事・コメント）
   ================================================================== */

/*
 * 「関連記事」「コメントを残す」の見出しは既定でティールのベタ塗り帯。
 * 本文の H2 と同じ言語（左罫）に揃える。
 */
.keni-related-title,
.comment-reply-title,
.keni-section .keni-related-title,
.keni-section .comment-reply-title {
	margin: 0 0 16px;
	padding: 0 0 0 14px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--g-ink);
	background: none;
	border: 0;
	border-left: 4px solid var(--g-brand);
	border-radius: 0;
}

.related-entry-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.related-entry-list_item {
	border-bottom: 1px solid var(--g-line);
}

/*
 * 関連記事のサムネイル。サイドバーのランキングと同じく、枠は固定・画像は contain。
 * 画像が 404 のとき alt テキストが枠から溢れてタイトルに重なるので視覚的に潰す
 * （スクリーンリーダーは alt を読む）。
 */
.related-entry_thumb {
	background: var(--g-bg);
	font-size: 0;
}

.related-entry_thumb img,
img.relation-image {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	mix-blend-mode: multiply;
}

.related-entry_title {
	font-size: 13px;
	line-height: 1.6;
}

.related-entry_title a {
	color: var(--g-ink-2);
	text-decoration: none;
}

.related-entry_title a:hover {
	color: var(--g-brand-ink);
	text-decoration: underline;
}

/* ==================================================================
   9. サイドバー
   ================================================================== */

/*
 * 賢威のウィジェット見出しは .keni-section の padding を負マージンで打ち消して
 * 端まで伸ばす作りになっている（base.css:1349, 1363）。その仕組みは壊さず、
 * 色と文字サイズだけ差し替える。padding を 0 にすると見出しが箱の外へ出る。
 */
.keni-sub .keni-section_wrap {
	margin-bottom: 14px;
	overflow: hidden;
}

.keni-sub .widget > .keni-section .sub-section_title,
.keni-section .sub-section_title {
	padding: 12px 20px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.02em;
	color: var(--g-ink);
	background: var(--g-bg);
	border-bottom: 1px solid var(--g-line);
	border-radius: 0;
}

.keni-section .sub-section_title a {
	color: var(--g-ink);
}

/*
 * ランキングのサムネイル。親CSSは 90x90 の枠に画像を絶対配置で中央寄せし、
 * width:100% で埋めている（＝実質 cover）。商品写真は切れると何か分からなく
 * なるので contain に寄せる。絶対配置と transform は親のものをそのまま使う。
 */
.widget_recent_entries_img .list_widget_recent_entries_img .widget_recent_entries_thumb {
	background: var(--g-bg);
	/* 楽天の画像が 404 になったとき、alt テキストが 90x90 の枠から溢れて
	   隣のタイトルに重なる。視覚的にだけ潰す（スクリーンリーダーは alt を読む）。 */
	font-size: 0;
}

.widget_recent_entries_img .list_widget_recent_entries_img .widget_recent_entries_thumb img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	mix-blend-mode: multiply;
}

/* 固定 height:70px で切り落とすのをやめ、3行までのクランプにする。 */
.widget_recent_entries_img .list_widget_recent_entries_img .widget_recent_entries_img_entry_title {
	padding: 10px 14px;
	font-size: 13px;
	line-height: 1.6;
}

.widget_recent_entries_img .list_widget_recent_entries_img .widget_recent_entries_img_entry_title a {
	height: auto;
	max-height: 4.8em;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: var(--g-ink-2);
}

.widget_recent_entries_img .list_widget_recent_entries_img li {
	border-bottom: 1px solid var(--g-line);
}

.keni-sub li {
	border-color: var(--g-line);
	font-size: 13px;
	line-height: 1.7;
}

.keni-sub a {
	color: var(--g-ink-2);
	text-decoration: none;
}

.keni-sub a:hover {
	color: var(--g-brand-ink);
	text-decoration: underline;
}

/*
 * 一覧ページ先頭に単独で置かれているSNSボタン群。カウントは全て0で、
 * 記事に入る前の視線を奪うだけなので出さない。
 * （記事内のSNSは賢威の設定で個別に制御できるのでここでは触らない。）
 */
.keni-main_inner > header > .sns-btn_wrap {
	display: none;
}

/* ==================================================================
   10. フッター
   ================================================================== */

.keni-footer_wrap,
.keni-footer-panel_wrap {
	background: var(--g-surface);
	border-top: 1px solid var(--g-line);
}

.keni-copyright_wrap {
	background: var(--g-surface);
	color: var(--g-muted);
	font-size: 12px;
}

/* ==================================================================
   11. モーション
   ================================================================== */

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	.gajet-card:hover,
	.gajet-card:active {
		transform: none;
	}
}
