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

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

/* =========================================
   点数カテゴリナビ
========================================= */
.bt-count-nav {
	margin: 30px 0 40px;
	padding: 0;
	background: #f4f8fc;
	border: 1px solid #d8e5f2;
	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: #f4f8fc;
}

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

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

.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: #163a5f;
}

.bt-count-nav__lead {
	display: block;
	margin: 0;
	font-size: 14px;
	line-height: 1.8;
	color: #526579;
}

.bt-count-nav__toggle {
	position: absolute;
	top: 50%;
	right: 28px;
	width: 28px;
	height: 28px;
	margin-top: -14px;
	border-radius: 999px;
	border: 1px solid #c8dced;
	background: #f2f8fd;
}

.bt-count-nav__toggle:before,
.bt-count-nav__toggle:after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	background: #1f5d93;
	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 #d8e5f2;
	background: #f8fbfe;
}

.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: #fff;
	border: 1px solid #d7e3ef;
	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: #9ec0df;
	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: #183b61;
}

.bt-count-card__tag {
	display: inline-block;
	padding: 4px 8px;
	font-size: 11px;
	line-height: 1.2;
	font-weight: bold;
	color: #1f5d93;
	background: #edf6fd;
	border: 1px solid #cfe3f5;
	border-radius: 999px;
	white-space: nowrap;
}

.bt-count-card__text {
	display: block;
	min-height: 3.2em;
	font-size: 13px;
	line-height: 1.6;
	color: #526579;
}

.bt-count-card__cta {
	display: inline-block;
	margin-top: 12px;
	padding-top: 10px;
	font-size: 13px;
	line-height: 1.4;
	font-weight: bold;
	color: #1f5d93;
	border-top: 1px solid #e6eef6;
}

.bt-count-card.is-current {
	border: 2px solid #1d6fb8;
	background: #eaf5ff;
	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: #ffffff;
	background: #1d6fb8;
	border-radius: 12px 12px 0 0;
}

.bt-count-card.is-current .bt-count-card__count {
	color: #0f4d84;
}

.bt-count-card.is-current .bt-count-card__tag {
	color: #0f4d84;
	background: #dceefe;
	border-color: #a9cdef;
}

.bt-count-card.is-current .bt-count-card__text {
	color: #355a7c;
}

.bt-count-card.is-current .bt-count-card__cta {
	color: #0f4d84;
	border-top-color: #c9dff2;
	font-weight: bold;
}

.bt-count-card--accent {
	background: #fafdff;
}

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

.bt-budget-accordion__details {
	border: 1px solid #d7e8f7;
	border-radius: 16px;
	background: #f7fbff;
	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: #f7fbff;
}

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

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

.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: #17324d;
}

.bt-budget-accordion__lead {
	display: block;
	margin: 0;
	font-size: 14px;
	line-height: 1.8;
	color: #5f7388;
}

.bt-budget-accordion__toggle {
	position: absolute;
	top: 50%;
	right: 22px;
	width: 34px;
	height: 34px;
	margin-top: -17px;
	border-radius: 50%;
	background: #2f80c9;
}

.bt-budget-accordion__toggle:before,
.bt-budget-accordion__toggle:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: #ffffff;
	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 #d7e8f7;
	background: #f8fbfe;
}

.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: #ffffff;
	border: 1px solid #d6e3ef;
	border-radius: 14px;
	text-decoration: none;
	text-align: center;
	transition: all 0.25s ease;
}

.bt-budget-accordion__list li a:hover {
	border-color: #2f80c9;
	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: #17324d;
	font-weight: bold;
}

.bt-budget-accordion__sub {
	display: inline-block;
	margin-top: 6px;
	font-size: 12px;
	line-height: 1.4;
	color: #2f80c9;
	font-weight: bold;
}

.bt-budget-accordion__list li.is-current a {
	background: linear-gradient(180deg, #2f80c9 0%, #246cab 100%);
	border-color: #246cab;
	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: #ffffff;
}

/* =========================================
   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: #1f5d93;
	}

	.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, #f8fbfe 0%, rgba(248, 251, 254, 0) 100%);
	}

	.bt-count-nav__scroll-wrap:after {
		right: 0;
		background: linear-gradient(to left, #f8fbfe 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: #1f5d93;
	}

	.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, #f8fbfe 0%, rgba(248, 251, 254, 0) 100%);
	}

	.bt-budget-accordion__scroll-wrap:after {
		right: 0;
		background: linear-gradient(to left, #f8fbfe 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 #d7e8f7;
	border-radius: 16px;
	background: #f7fbff;
	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: #f7fbff;
}

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

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

.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: #17324d;
}

.bt-feature-nav__lead {
	display: block;
	margin: 0;
	font-size: 13px;
	line-height: 1.7;
	color: #5f7388;
}

.bt-feature-nav__toggle {
	position: absolute;
	top: 50%;
	right: 16px;
	width: 26px;
	height: 26px;
	margin-top: -13px;
	border-radius: 50%;
	background: #2f80c9;
}

.bt-feature-nav__toggle:before,
.bt-feature-nav__toggle:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: #ffffff;
	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 #d7e8f7;
	background: #f8fbfe;
}

.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: #ffffff;
	border: 1px solid #d6e3ef;
	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: #2f80c9;
	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: block;
	margin-bottom: 8px;
}

.bt-feature-card__img img {
	display: block;
	width: 100%;
	max-width: 120px;
	margin: 0 auto;
	border-radius: 8px;
}

.bt-feature-card__title {
	display: block;
	min-height: 3em;
	font-size: 13px;
	line-height: 1.5;
	font-weight: bold;
	color: #17324d;
	word-break: break-word;
}

/* 現在表示中 */
.bt-feature-nav__item.is-current .bt-feature-card {
	border: 2px solid #1d6fb8;
	background: #eaf5ff;
	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: #ffffff;
	background: #1d6fb8;
	border-radius: 10px 10px 0 0;
}

.bt-feature-nav__item.is-current .bt-feature-card__title {
	color: #0f4d84;
}

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

	.bt-feature-card__img img {
		max-width: 110px;
	}
}

/* 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: #1f5d93;
	}

	.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, #f8fbfe 0%, rgba(248, 251, 254, 0) 100%);
	}

	.bt-feature-nav__scroll-wrap:after {
		right: 0;
		background: linear-gradient(to left, #f8fbfe 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 img {
		max-width: 100px;
	}

	.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: 0 10px;
}

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