/* =========================================================
   景品の虎カテゴリナビ用CSS
========================================================= */
:root {
	/* メイン・テーマカラー */
	--ktora-brown-dark: #421900;
	--ktora-brown-main: #745536;
	--ktora-gold-accent: #c5a437;
	--ktora-beige-bg: #f8f4e9;

	/* テキストカラー */
	--ktora-text-main: #333333;
	--ktora-text-sub: #745536;
	--ktora-text-white: #ffffff;

	/* 補助カラー */
	--ktora-border: #d2d2d2;
	--ktora-bg-white: #ffffff;
}

:root {
	/* 基本フォント（ゴシック体） */
	--font-sans: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;

	/* 見出し用フォント（明朝体：景品の虎の高級感を演出） */
	--font-serif: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

:root {
	/* PC用 */
	--fs-pc-body: 15px;
	/* 基本本文サイズ */
	--fs-pc-intro: 18px;
	/* 導入文（大きめ・行間広め） */
	--fs-pc-h2: 28px;
	/* セクション大見出し */
	--fs-pc-h3: 24px;
	/* ブロック見出し */
	--fs-pc-nav: 13px;
	/* フッターナビ等 */

	/* SP用（スマホ） */
	--fs-sp-body: 3.6vw;
	/* スマホ基本本文 */
	--fs-sp-h2: 5.6vw;
	/* スマホ大見出し */
}

:root {
	--radius-standard: 5px;
	/* 見出しボックス等の角丸 */
	--line-height-std: 1.5;
	/* 基本行間 */
	--line-height-loose: 1.75;
	/* 読み物・イントロ用行間 */

	/* セクション余白 */
	--space-section-m: 30px;
	/* 標準的な下方向余白 */
	--space-section-l: 45px;
	/* 見出し周りの余白 */
	--space-section-xl: 68px;
	/* 大きな区切り */
}



.bt-count-nav,
.bt-budget-accordion,
.bt-feature-nav {
	font-family: var(--font-sans);
	color: var(--ktora-text-main);
}

.bt-feature-nav__title,
.bt-count-nav__title,
.bt-budget-accordion__title {
	font-family: var(--font-serif);
	letter-spacing: .02em;
}

.bt-feature-card__img {
	aspect-ratio: 4 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 170px;
	max-width: 100%;
	margin: 0 auto 10px;
	background: #fffdf7;
	border: 1px solid #eee2c4;
	border-radius: 10px;
	padding: 8px;
}

.bt-feature-card__img img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

/* =========================================================
   点数カテゴリナビ / 予算別カテゴリナビ
   完成版CSS（不要部分整理済み）
   - PC：見出し右の＋で全体開閉
   - SP：2段表示 + 横スクロールヒント付き
   - 景品の虎カラー / 現在表示中を強調
========================================================= */

/* =========================================
   共通
========================================= */
.bt-count-nav *,
.bt-budget-accordion * {
	box-sizing: border-box;
}

/* =========================================
   点数カテゴリナビ
========================================= */
.bt-count-nav {
	margin: 30px 0 40px;
	padding: 0;
	background: var(--ktora-beige-bg);
	border: 1px solid var(--ktora-border);
	border-radius: 14px;
	overflow: hidden;
}

.bt-count-nav__details {
	display: block;
}

.bt-count-nav__summary {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 70px 20px 20px;
	cursor: pointer;
	list-style: none;
	background: var(--ktora-beige-bg);
}

.bt-count-nav__summary::-webkit-details-marker {
	display: none;
}

.bt-count-nav__summary:hover {
	background: #f3ead8;
}

.bt-count-nav__summary-text {
	display: block;
}

.bt-count-nav__title {
	display: block;
	margin: 0 0 6px;
	font-size: 26px;
	line-height: 1.4;
	font-weight: bold;
	color: var(--ktora-brown-dark);
}

.bt-count-nav__lead {
	display: block;
	margin: 0;
	font-size: 14px;
	line-height: 1.8;
	color: var(--ktora-text-main);
}

.bt-count-nav__toggle {
	position: absolute;
	top: 50%;
	right: 28px;
	width: 28px;
	height: 28px;
	margin-top: -14px;
	border-radius: 999px;
	border: 1px solid #d8c8a5;
	background: var(--ktora-bg-white)af0;
}

.bt-count-nav__toggle:before,
.bt-count-nav__toggle:after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	background: var(--ktora-brown-main);
	transform: translate(-50%, -50%);
}

.bt-count-nav__toggle:before {
	width: 12px;
	height: 2px;
}

.bt-count-nav__toggle:after {
	width: 2px;
	height: 12px;
}

.bt-count-nav__details[open] .bt-count-nav__toggle:after {
	display: none;
}

.bt-count-nav__panel {
	padding: 0 20px 20px;
	border-top: 1px solid var(--ktora-border);
	background: var(--ktora-bg-white)df7;
}

.bt-count-nav__scroll-wrap {
	position: relative;
}

.bt-count-nav__scroll {
	overflow: visible;
}

.bt-count-nav__scroll-hint {
	display: none;
}

.bt-count-nav__list {
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.bt-count-nav__item {
	width: calc((100% - 28px) / 3);
	margin: 0;
	padding: 0;
	list-style: none;
}

.bt-count-card {
	position: relative;
	display: block;
	height: 100%;
	padding: 16px 16px 14px;
	background: var(--ktora-bg-white);
	border: 1px solid var(--ktora-border);
	border-radius: 14px;
	box-shadow: 0 2px 8px rgba(21, 61, 102, 0.06);
	text-decoration: none;
	transition: all 0.2s ease;
}

.bt-count-card:hover {
	background: #f9fbfe;
	border-color: var(--ktora-gold-accent);
	box-shadow: 0 6px 16px rgba(21, 61, 102, 0.10);
	text-decoration: none;
}

.bt-count-card__current-label {
	display: none;
}

.bt-count-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 10px;
}

.bt-count-card__count {
	display: inline-block;
	font-size: 24px;
	line-height: 1.2;
	font-weight: bold;
	color: var(--ktora-brown-dark);
}

.bt-count-card__tag {
	display: inline-block;
	padding: 4px 8px;
	font-size: 11px;
	line-height: 1.2;
	font-weight: bold;
	color: var(--ktora-brown-main);
	background: #fbf4df;
	border: 1px solid #e3d4ad;
	border-radius: 999px;
	white-space: nowrap;
}

.bt-count-card__text {
	display: block;
	min-height: 3.2em;
	font-size: 13px;
	line-height: 1.6;
	color: var(--ktora-text-main);
}

.bt-count-card__cta {
	display: inline-block;
	margin-top: 12px;
	padding-top: 10px;
	font-size: 13px;
	line-height: 1.4;
	font-weight: bold;
	color: var(--ktora-brown-main);
	border-top: 1px solid #eee2c4;
}

.bt-count-card.is-current {
	border: 2px solid var(--ktora-brown-main);
	background: #fbf4df;
	box-shadow: 0 8px 18px rgba(17, 70, 118, 0.14);
}

.bt-count-card.is-current .bt-count-card__current-label {
	display: inline-block;
	margin: -16px -16px 12px;
	padding: 8px 12px;
	width: calc(100% + 32px);
	font-size: 12px;
	line-height: 1.4;
	font-weight: bold;
	color: var(--ktora-bg-white);
	background: var(--ktora-brown-main);
	border-radius: 12px 12px 0 0;
}

.bt-count-card.is-current .bt-count-card__count {
	color: var(--ktora-brown-dark);
}

.bt-count-card.is-current .bt-count-card__tag {
	color: var(--ktora-brown-dark);
	background: #f3ead8;
	border-color: #d2bd7a;
}

.bt-count-card.is-current .bt-count-card__text {
	color: var(--ktora-text-main);
}

.bt-count-card.is-current .bt-count-card__cta {
	color: var(--ktora-brown-dark);
	border-top-color: #e3d4ad;
	font-weight: bold;
}

.bt-count-card--accent {
	background: var(--ktora-bg-white)df7;
}

/* =========================================
   予算別カテゴリナビ
========================================= */
.bt-budget-accordion {
	margin: 40px 0 20px;
}

.bt-budget-accordion__details {
	border: 1px solid var(--ktora-border);
	border-radius: 16px;
	background: var(--ktora-beige-bg);
	overflow: hidden;
}

.bt-budget-accordion__summary {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 70px 20px 24px;
	cursor: pointer;
	list-style: none;
	background: var(--ktora-beige-bg);
}

.bt-budget-accordion__summary::-webkit-details-marker {
	display: none;
}

.bt-budget-accordion__summary:hover {
	background: #f3ead8;
}

.bt-budget-accordion__summary-text {
	display: block;
}

.bt-budget-accordion__title {
	display: block;
	margin: 0 0 6px;
	font-size: 28px;
	line-height: 1.4;
	font-weight: bold;
	color: var(--ktora-brown-dark);
}

.bt-budget-accordion__lead {
	display: block;
	margin: 0;
	font-size: 14px;
	line-height: 1.8;
	color: var(--ktora-text-main);
}

.bt-budget-accordion__toggle {
	position: absolute;
	top: 50%;
	right: 22px;
	width: 34px;
	height: 34px;
	margin-top: -17px;
	border-radius: 50%;
	background: var(--ktora-brown-main);
}

.bt-budget-accordion__toggle:before,
.bt-budget-accordion__toggle:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: var(--ktora-bg-white);
	transform: translate(-50%, -50%);
}

.bt-budget-accordion__toggle:before {
	width: 14px;
	height: 2px;
}

.bt-budget-accordion__toggle:after {
	width: 2px;
	height: 14px;
	transition: opacity 0.25s ease;
}

.bt-budget-accordion__details[open] .bt-budget-accordion__toggle:after {
	opacity: 0;
}

.bt-budget-accordion__body {
	padding: 0 24px 24px;
	border-top: 1px solid var(--ktora-border);
	background: var(--ktora-bg-white)df7;
}

.bt-budget-accordion__scroll-wrap {
	position: relative;
}

.bt-budget-accordion__scroll-hint {
	display: none;
}

.bt-budget-accordion__viewport {
	overflow: visible;
}

.bt-budget-accordion__list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.bt-budget-accordion__list li {
	width: calc((100% - 36px) / 4);
	margin: 0;
	padding: 0;
}

.bt-budget-accordion__list li a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 88px;
	padding: 16px 14px;
	background: var(--ktora-bg-white);
	border: 1px solid var(--ktora-border);
	border-radius: 14px;
	text-decoration: none;
	text-align: center;
	transition: all 0.25s ease;
}

.bt-budget-accordion__list li a:hover {
	border-color: var(--ktora-brown-main);
	box-shadow: 0 8px 18px rgba(47, 128, 201, 0.12);
	transform: translateY(-2px);
	text-decoration: none;
}

.bt-budget-accordion__label {
	display: block;
	font-size: 20px;
	line-height: 1.4;
	color: var(--ktora-brown-dark);
	font-weight: bold;
}

.bt-budget-accordion__sub {
	display: inline-block;
	margin-top: 6px;
	font-size: 12px;
	line-height: 1.4;
	color: var(--ktora-brown-main);
	font-weight: bold;
}

.bt-budget-accordion__list li.is-current a {
	background: linear-gradient(180deg, var(--ktora-brown-main) 0%, #5d3d22 100%);
	border-color: #5d3d22;
	box-shadow: 0 10px 20px rgba(36, 108, 171, 0.18);
}

.bt-budget-accordion__list li.is-current .bt-budget-accordion__label,
.bt-budget-accordion__list li.is-current .bt-budget-accordion__sub {
	color: var(--ktora-bg-white);
}

/* =========================================
   Tablet
========================================= */
@media screen and (max-width: 1024px) {
	.bt-count-nav__item {
		width: calc((100% - 14px) / 2);
	}

	.bt-count-card__count {
		font-size: 22px;
	}
}

/* =========================================
   SP
========================================= */
@media only screen and (max-width: 767px) {

	/* 点数カテゴリナビ */
	.bt-count-nav {
		margin: 24px 0 32px;
		border-radius: 12px;
	}

	.bt-count-nav__summary {
		padding: 16px 48px 16px 12px;
	}

	.bt-count-nav__title {
		font-size: 20px;
		line-height: 1.5;
		margin-bottom: 4px;
	}

	.bt-count-nav__lead {
		font-size: 12px;
		line-height: 1.7;
	}

	.bt-count-nav__toggle {
		right: 14px;
		width: 24px;
		height: 24px;
		margin-top: -12px;
	}

	.bt-count-nav__toggle:before {
		width: 10px;
		height: 2px;
	}

	.bt-count-nav__toggle:after {
		width: 2px;
		height: 10px;
	}

	.bt-count-nav__panel {
		padding: 0 12px 16px;
	}

	.bt-count-nav__scroll-wrap {
		position: relative;
	}

	.bt-count-nav__scroll-hint {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 6px;
		margin-top: 12px;
		padding-right: 2px;
		font-size: 11px;
		line-height: 1.4;
		font-weight: bold;
		color: var(--ktora-brown-main);
	}

	.bt-count-nav__scroll-hint-arrow {
		font-size: 14px;
		line-height: 1;
	}

	.bt-count-nav__scroll-wrap:before,
	.bt-count-nav__scroll-wrap:after {
		content: "";
		position: absolute;
		top: 32px;
		bottom: 0;
		width: 18px;
		z-index: 2;
		pointer-events: none;
	}

	.bt-count-nav__scroll-wrap:before {
		left: 0;
		background: linear-gradient(to right, var(--ktora-bg-white)df7 0%, rgba(248, 251, 254, 0) 100%);
	}

	.bt-count-nav__scroll-wrap:after {
		right: 0;
		background: linear-gradient(to left, var(--ktora-bg-white)df7 0%, rgba(248, 251, 254, 0) 100%);
	}

	.bt-count-nav__scroll {
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		padding: 4px 0 4px;
	}

	.bt-count-nav__list {
		margin-top: 10px;
		display: grid;
		grid-auto-flow: column;
		grid-template-rows: repeat(2, auto);
		grid-auto-columns: 170px;
		gap: 10px;
		width: max-content;
		flex-wrap: nowrap;
	}

	.bt-count-nav__item {
		width: auto;
		flex: none;
	}

	.bt-count-card {
		padding: 14px 12px 12px;
		border-radius: 12px;
	}

	.bt-count-card__count {
		font-size: 20px;
	}

	.bt-count-card__tag {
		font-size: 10px;
		padding: 3px 6px;
	}

	.bt-count-card__text {
		min-height: 3.8em;
		font-size: 12px;
		line-height: 1.6;
	}

	.bt-count-card__cta {
		margin-top: 10px;
		padding-top: 8px;
		font-size: 12px;
	}

	.bt-count-card.is-current .bt-count-card__current-label {
		margin: -14px -12px 10px;
		width: calc(100% + 24px);
		padding: 7px 10px;
		font-size: 11px;
		border-radius: 10px 10px 0 0;
	}

	/* 予算別カテゴリナビ */
	.bt-budget-accordion {
		margin: 24px 0 16px;
	}

	.bt-budget-accordion__details {
		border-radius: 12px;
	}

	.bt-budget-accordion__summary {
		padding: 16px 52px 16px 16px;
	}

	.bt-budget-accordion__title {
		margin-bottom: 4px;
		font-size: 20px;
		line-height: 1.4;
	}

	.bt-budget-accordion__lead {
		font-size: 12px;
		line-height: 1.7;
	}

	.bt-budget-accordion__toggle {
		right: 14px;
		width: 28px;
		height: 28px;
		margin-top: -14px;
	}

	.bt-budget-accordion__toggle:before {
		width: 12px;
	}

	.bt-budget-accordion__toggle:after {
		height: 12px;
	}

	.bt-budget-accordion__body {
		padding: 0 12px 16px;
	}

	.bt-budget-accordion__scroll-hint {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 4px;
		margin-top: 12px;
		padding-right: 2px;
		font-size: 11px;
		line-height: 1.4;
		font-weight: bold;
		color: var(--ktora-brown-main);
	}

	.bt-budget-accordion__scroll-hint span {
		font-size: 14px;
		line-height: 1;
	}

	.bt-budget-accordion__scroll-wrap:before,
	.bt-budget-accordion__scroll-wrap:after {
		content: "";
		position: absolute;
		top: 32px;
		bottom: 0;
		width: 18px;
		z-index: 2;
		pointer-events: none;
	}

	.bt-budget-accordion__scroll-wrap:before {
		left: 0;
		background: linear-gradient(to right, var(--ktora-bg-white)df7 0%, rgba(248, 251, 254, 0) 100%);
	}

	.bt-budget-accordion__scroll-wrap:after {
		right: 0;
		background: linear-gradient(to left, var(--ktora-bg-white)df7 0%, rgba(248, 251, 254, 0) 100%);
	}

	.bt-budget-accordion__viewport {
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		padding: 4px 0 4px;
	}

	.bt-budget-accordion__list {
		margin-top: 10px;
		display: grid;
		grid-auto-flow: column;
		grid-template-rows: repeat(2, auto);
		grid-auto-columns: 116px;
		gap: 10px;
		width: max-content;
		flex-wrap: nowrap;
	}

	.bt-budget-accordion__list li {
		width: auto;
	}

	.bt-budget-accordion__list li a {
		min-height: 78px;
		padding: 14px 10px;
		border-radius: 12px;
	}

	.bt-budget-accordion__label {
		font-size: 18px;
		line-height: 1.35;
	}

	.bt-budget-accordion__sub {
		margin-top: 4px;
		font-size: 11px;
	}

	.bt-budget-accordion__list li.is-current a {
		box-shadow: 0 6px 14px rgba(36, 108, 171, 0.18);
	}
}

/* =========================================
   目玉カテゴリナビ
   PC：全体表示
   SP：2段表示 + 横スクロールヒント付き
   現在表示中を強調
========================================= */
.bt-feature-nav {
	margin: 36px 0 20px;
}

.bt-feature-nav * {
	box-sizing: border-box;
}

.bt-feature-nav__details {
	border: 1px solid var(--ktora-border);
	border-radius: 16px;
	background: var(--ktora-beige-bg);
	overflow: hidden;
}

.bt-feature-nav__summary {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 60px 18px 20px;
	cursor: pointer;
	list-style: none;
	background: var(--ktora-beige-bg);
}

.bt-feature-nav__summary::-webkit-details-marker {
	display: none;
}

.bt-feature-nav__summary:hover {
	background: #f3ead8;
}

.bt-feature-nav__summary-text {
	display: block;
}

.bt-feature-nav__title {
	display: block;
	margin: 0 0 4px;
	font-size: 24px;
	line-height: 1.4;
	font-weight: bold;
	color: var(--ktora-brown-dark);
}

.bt-feature-nav__lead {
	display: block;
	margin: 0;
	font-size: 13px;
	line-height: 1.7;
	color: var(--ktora-text-main);
}

.bt-feature-nav__toggle {
	position: absolute;
	top: 50%;
	right: 16px;
	width: 26px;
	height: 26px;
	margin-top: -13px;
	border-radius: 50%;
	background: var(--ktora-brown-main);
}

.bt-feature-nav__toggle:before,
.bt-feature-nav__toggle:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: var(--ktora-bg-white);
	transform: translate(-50%, -50%);
}

.bt-feature-nav__toggle:before {
	width: 10px;
	height: 2px;
}

.bt-feature-nav__toggle:after {
	width: 2px;
	height: 10px;
}

.bt-feature-nav__details[open] .bt-feature-nav__toggle:after {
	display: none;
}

.bt-feature-nav__panel {
	padding: 0 20px 20px;
	border-top: 1px solid var(--ktora-border);
	background: var(--ktora-bg-white)df7;
}

.bt-feature-nav__scroll-wrap {
	position: relative;
}

.bt-feature-nav__scroll-hint {
	display: none;
}

.bt-feature-nav__scroll {
	overflow: visible;
}

.bt-feature-nav__list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.bt-feature-nav__item {
	width: calc((100% - 30px) / 4);
	margin: 0;
	padding: 0;
}

.bt-feature-card {
	display: block;
	position: relative;
	padding: 10px 10px 12px;
	background: var(--ktora-bg-white);
	border: 1px solid var(--ktora-border);
	border-radius: 12px;
	text-align: center;
	text-decoration: none;
	transition: all 0.2s ease;
	box-shadow: 0 2px 8px rgba(21, 61, 102, 0.05);
}

.bt-feature-card:hover {
	border-color: var(--ktora-brown-main);
	box-shadow: 0 6px 14px rgba(47, 128, 201, 0.10);
	transform: translateY(-2px);
	text-decoration: none;
}

.bt-feature-card__current-label {
	display: none;
}

.bt-feature-card__img {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 170px;
	max-width: 100%;
	aspect-ratio: 4 / 3;
	margin: 0 auto 10px;
	padding: 8px;
	background: #fffdf7;
	border: 1px solid #eee2c4;
	border-radius: 10px;
}

.bt-feature-card__img img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	border-radius: 6px;
}

.bt-feature-card__title {
	display: block;
	min-height: 3em;
	font-size: 13px;
	line-height: 1.5;
	font-weight: bold;
	color: var(--ktora-brown-dark);
	word-break: break-word;
}

/* 現在表示中 */
.bt-feature-nav__item.is-current .bt-feature-card {
	border: 2px solid var(--ktora-brown-main);
	background: #fbf4df;
	box-shadow: 0 8px 18px rgba(17, 70, 118, 0.14);
}

.bt-feature-nav__item.is-current .bt-feature-card__current-label {
	display: inline-block;
	margin: -10px -10px 10px;
	padding: 6px 10px;
	width: calc(100% + 20px);
	font-size: 10px;
	line-height: 1.4;
	font-weight: bold;
	color: var(--ktora-bg-white);
	background: var(--ktora-brown-main);
	border-radius: 10px 10px 0 0;
}

.bt-feature-nav__item.is-current .bt-feature-card__title {
	color: var(--ktora-brown-dark);
}

/* Tablet */
@media screen and (max-width: 1024px) {
	.bt-feature-nav__item {
		width: calc((100% - 20px) / 3);
	}

	.bt-feature-card__img {
		width: 150px;
	}
}

/* SP */
@media screen and (max-width: 767px) {
	.bt-feature-nav {
		margin: 24px 0 16px;
	}

	.bt-feature-nav__details {
		border-radius: 12px;
	}

	.bt-feature-nav__summary {
		padding: 16px 50px 16px 14px;
	}

	.bt-feature-nav__title {
		font-size: 20px;
		line-height: 1.4;
		margin-bottom: 4px;
	}

	.bt-feature-nav__lead {
		font-size: 12px;
		line-height: 1.7;
	}

	.bt-feature-nav__toggle {
		right: 14px;
		width: 26px;
		height: 26px;
		margin-top: -13px;
	}

	.bt-feature-nav__toggle:before {
		width: 10px;
	}

	.bt-feature-nav__toggle:after {
		height: 10px;
	}

	.bt-feature-nav__panel {
		padding: 0 12px 16px;
	}

	.bt-feature-nav__scroll-hint {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 4px;
		margin-top: 12px;
		padding-right: 2px;
		font-size: 11px;
		line-height: 1.4;
		font-weight: bold;
		color: var(--ktora-brown-main);
	}

	.bt-feature-nav__scroll-hint span {
		font-size: 14px;
		line-height: 1;
	}

	.bt-feature-nav__scroll-wrap:before,
	.bt-feature-nav__scroll-wrap:after {
		content: "";
		position: absolute;
		top: 32px;
		bottom: 0;
		width: 16px;
		z-index: 2;
		pointer-events: none;
	}

	.bt-feature-nav__scroll-wrap:before {
		left: 0;
		background: linear-gradient(to right, var(--ktora-bg-white)df7 0%, rgba(248, 251, 254, 0) 100%);
	}

	.bt-feature-nav__scroll-wrap:after {
		right: 0;
		background: linear-gradient(to left, var(--ktora-bg-white)df7 0%, rgba(248, 251, 254, 0) 100%);
	}

	.bt-feature-nav__scroll {
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		padding: 4px 0 4px;
	}

	.bt-feature-nav__list {
		margin-top: 10px;
		display: grid;
		grid-auto-flow: column;
		grid-template-rows: repeat(2, auto);
		grid-auto-columns: 132px;
		gap: 10px;
		width: max-content;
		flex-wrap: nowrap;
	}

	.bt-feature-nav__item {
		width: auto;
	}

	.bt-feature-card {
		padding: 10px 10px 12px;
		border-radius: 12px;
	}

	.bt-feature-card__img {
		width: 104px;
		margin-bottom: 8px;
		padding: 6px;
	}

	.bt-feature-card__title {
		min-height: 3em;
		font-size: 12px;
		line-height: 1.5;
	}

	.bt-feature-nav__item.is-current .bt-feature-card__current-label {
		margin: -10px -10px 8px;
		padding: 6px 8px;
		font-size: 10px;
	}
}

.bt-feature-nav__item.is-current .bt-feature-card {
	padding: 0 0 12px;
	overflow: hidden;
}

.bt-feature-nav__item.is-current .bt-feature-card__current-label {
	display: block;
	margin: 0 0 10px;
	width: 100%;
	padding: 6px 10px;
	border-radius: 0;
	box-sizing: border-box;
}

.bt-feature-nav__item.is-current .bt-feature-card__img {
	padding: 8px;
}

@media screen and (max-width: 767px) {
	.bt-feature-nav__item.is-current .bt-feature-card__img {
		padding: 6px;
	}
}

.bt-feature-nav__item.is-current .bt-feature-card__title {
	padding: 0 10px;
}

/* =========================================
gr44：明日間に合う景品セット リニューアル用
========================================= */
.fs-body-category .golf-tora-group-comment--gr44 {
	width: 970px;
	margin: 0 0 24px;
	background: var(--ktora-bg-white);
}

.fs-body-category .golf-tora-group-comment--gr44 .golf-tora-group-comment-box {
	padding: 24px 20px 32px;
}

/* ヒーロー */
.fs-body-category .golf-tora-group-comment--gr44 .gr44-hero {
	padding: 28px 28px 26px;
	border: 1px solid #e3d4ad;
	border-radius: 20px;
	background:
		radial-gradient(circle at top right, rgba(255, 215, 0, 0.25) 0%, rgba(255, 215, 0, 0) 50%),
		linear-gradient(135deg, var(--ktora-bg-white)df7 0%, #f8f4e9 100%);
	border: 1px solid #e3d4ad;
}

.fs-body-category .golf-tora-group-comment--gr44 .gr44-hero__badge {
	display: inline-block;
	margin: 0 0 12px;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--ktora-brown-main);
	font-size: 12px;
	font-weight: bold;
	line-height: 1;
	color: var(--ktora-bg-white);
}

.fs-body-category .golf-tora-group-comment--gr44 .gr44-hero__title {
	margin: 0 0 12px;
	font-size: 34px;
	line-height: 1.3;
	font-weight: bold;
	color: var(--ktora-text-main);
}

.fs-body-category .golf-tora-group-comment--gr44 .gr44-hero__lead {
	margin: 0;
	font-size: 16px;
	line-height: 1.95;
	color: var(--ktora-text-main);
}

.fs-body-category .golf-tora-group-comment--gr44 .gr44-hero__lead strong {
	color: #b10000;
	font-weight: bold;
}

.fs-body-category .golf-tora-group-comment--gr44 .gr44-hero__lead span {
	font-size: 13px;
	color: #666666;
}

.fs-body-category .golf-tora-group-comment--gr44 .gr44-hero__points {
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.fs-body-category .golf-tora-group-comment--gr44 .gr44-hero__points li {
	margin: 0;
	padding: 10px 14px;
	border: 1px solid #e3d4ad;
	border-radius: 999px;
	background: var(--ktora-bg-white);
	font-size: 14px;
	font-weight: bold;
	line-height: 1.5;
	color: var(--ktora-brown-dark);
	box-sizing: border-box;
}

/* 共通見出し */
.fs-body-category .golf-tora-group-comment--gr44 .gr44-nav,
.fs-body-category .golf-tora-group-comment--gr44 .gr44-guide,
.fs-body-category .golf-tora-group-comment--gr44 .gr44-notice {
	margin-top: 30px;
}

.fs-body-category .golf-tora-group-comment--gr44 .gr44-sec-title {
	margin: 0 0 10px;
	padding-left: 14px;
	border-left: 5px solid var(--ktora-brown-main);
	font-size: 26px;
	line-height: 1.4;
	font-weight: bold;
	color: var(--ktora-text-main);
}

.fs-body-category .golf-tora-group-comment--gr44 .gr44-sec-lead {
	margin: 0 0 18px;
	font-size: 15px;
	line-height: 1.85;
	color: #555555;
}

/* カード一覧 */
.fs-body-category .golf-tora-group-comment--gr44 .gr44-card-grid {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.fs-body-category .golf-tora-group-comment--gr44 .gr44-card-grid li {
	margin: 0;
	padding: 0;
	list-style: none;
	float: none;
}

.fs-body-category .golf-tora-group-comment--gr44 .gr44-card-grid li a {
	display: block;
	height: 100%;
	border: 1px solid var(--ktora-border);
	border-radius: 18px;
	background: var(--ktora-bg-white);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.fs-body-category .golf-tora-group-comment--gr44 .gr44-card-grid li a:hover {
	transform: translateY(-3px);
	border-color: var(--ktora-gold-accent);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.fs-body-category .golf-tora-group-comment--gr44 .gr44-card-thumb {
	display: block;
	aspect-ratio: 16 / 9;
	background: var(--ktora-bg-white)df7;
	overflow: hidden;
	padding: 6px;
}

.fs-body-category .golf-tora-group-comment--gr44 .gr44-card-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(0.92);
}

.fs-body-category .golf-tora-group-comment--gr44 .gr44-card-body {
	display: block;
	padding: 16px 16px 18px;
}

.fs-body-category .golf-tora-group-comment--gr44 .gr44-card-title {
	display: block;
	margin: 0 0 8px;
	font-size: 20px;
	line-height: 1.4;
	font-weight: bold;
	color: var(--ktora-text-main);
}

.fs-body-category .golf-tora-group-comment--gr44 .gr44-card-text {
	display: block;
	min-height: 4.8em;
	font-size: 14px;
	line-height: 1.75;
	color: #555555;
}

.fs-body-category .golf-tora-group-comment--gr44 .gr44-card-link {
	display: inline-block;
	margin-top: 12px;
	padding-right: 18px;
	position: relative;
	font-size: 14px;
	font-weight: bold;
	color: var(--ktora-brown-main);
}

.fs-body-category .golf-tora-group-comment--gr44 .gr44-card-link:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	border-top: 2px solid var(--ktora-brown-main);
	border-right: 2px solid var(--ktora-brown-main);
	transform: rotate(45deg);
}

/* おすすめ導線 */
.fs-body-category .golf-tora-group-comment--gr44 .gr44-guide-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.fs-body-category .golf-tora-group-comment--gr44 .gr44-guide-item {
	padding: 20px 18px;
	border: 1px solid var(--ktora-border);
	border-radius: 18px;
	background: var(--ktora-bg-white);
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
}

.fs-body-category .golf-tora-group-comment--gr44 .gr44-guide-item h4 {
	margin: 0 0 8px;
	font-size: 18px;
	line-height: 1.5;
	font-weight: bold;
	color: var(--ktora-text-main);
}

.fs-body-category .golf-tora-group-comment--gr44 .gr44-guide-item p {
	margin: 0;
	font-size: 14px;
	line-height: 1.8;
	color: #555555;
}

/* 注意 */
.fs-body-category .golf-tora-group-comment--gr44 .gr44-notice {
	padding: 22px 24px;
	border: 1px solid #d2bd7a;
	border-radius: 18px;
	background: var(--ktora-bg-white)af0;
}

.fs-body-category .golf-tora-group-comment--gr44 .gr44-notice-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.fs-body-category .golf-tora-group-comment--gr44 .gr44-notice-list li {
	position: relative;
	margin: 0 0 10px;
	padding-left: 22px;
	font-size: 14px;
	line-height: 1.85;
	color: #555555;
}

.fs-body-category .golf-tora-group-comment--gr44 .gr44-notice-list li:last-child {
	margin-bottom: 0;
}

.fs-body-category .golf-tora-group-comment--gr44 .gr44-notice-list li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--ktora-gold-accent);
}

/* 既存float等の影響を受けにくくする */
.fs-body-category .golf-tora-group-comment--gr44 * {
	box-sizing: border-box;
}