@charset "utf-8";

@font-face {
	font-family: 'SUIT';
	src: url('../../fonts/SUIT-Variable.woff2') format('woff2');
	font-style: normal;
}
@font-face {
	font-family: 'Oswald';
	src: url('../../fonts/Oswald-Bold.ttf') format('ttf');
	font-style: normal;
}

body.public-site {
	margin: 0;
	background: #f5f6f8;
	color: #1d2733;
	font-family: 'SUIT', var(--font-family-base);
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 999;
	padding: 10px 14px;
	border-radius: 6px;
	background: #111827;
	color: #fff;
	text-decoration: none;
	transform: translateY(-140%);
	transition: transform .16s ease;
}

.skip-link:focus {
	transform: translateY(0);
}

.public-site__page {
	min-height: 100vh;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(245, 246, 248, .96) 360px),
		#f5f6f8;
}

.public-shell {
	min-height: 100vh;
	padding-bottom: 0;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid rgba(214, 220, 228, .82);
	background: rgba(255, 255, 255, .92);
	backdrop-filter: blur(14px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: min(100% - 40px, 1280px);
	min-height: 46px;
	margin: 0 auto;
}

.site-header__brand,
.site-header__link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.site-header__brand {
	gap: 8px;
	min-width: 0;
	color: #121926;
	font-weight: 800;
}

.site-header__mark {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	overflow: hidden;
}

.site-header__mark img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.site-header__name {
	overflow: hidden;
	color: #0068ff;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.site-header__nav {
	display: flex;
	align-items: center;
	gap: 6px;
}

.site-header__link {
	gap: 7px;
	min-height: 32px;
	padding: 0 10px;
	border-radius: 8px;
	color: #4b5565;
	font-size: 13px;
	font-weight: 700;
}

.site-header__link:hover,
.site-header__link.is-active {
	background: #eef2f7;
	color: #182230;
}

.site-header__link--cta {
	background: #1f3b73;
	color: #fff;
}

.site-header__link--cta:hover,
.site-header__link--cta.is-active {
	background: #182f5d;
	color: #fff;
}

.site-header__search {
	width: min(100% - 40px, 760px);
	margin: 0 auto 8px;
}

.site-header__search input {
	display: block;
	width: 100%;
	height: 40px;
	padding: 0 14px;
	border: 1px solid #d6dce5;
	border-radius: 8px;
	background: #fff;
	color: #182230;
}

.site-header__search button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-width: 86px;
	height: 44px;
	border: 0;
	border-radius: 8px;
	background: #1f3b73;
	color: #fff;
	font-weight: 800;
}

.search-home-shell {
	display: grid;
	grid-template-rows: auto minmax(0, 1fr) auto;
	min-height: 100vh;
	min-height: 100dvh;
	overflow-x: hidden;
}

.search-home {
	display: grid;
	grid-template-rows: auto auto;
	align-content: center;
	place-items: center;
	gap: 20px;
	min-height: 0;
	padding: 32px 20px;
}

.search-home__wordmark {
	display: inline-flex;
	align-items: flex-end;
	justify-content: center;
	gap: .02em;
	color: #0068ff;
	font-size: clamp(48px, 8vw, 82px);
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0;
}

.search-home__wordmark::first-letter {
	color: #005be0;
}

.search-home__wordmark-icon {
	display: block;
	width: .78em;
	height: 1em;
	margin-left: -.04em;
	fill: currentColor;
}

.search-home__form {
	position: relative;
	display: grid;
	grid-template-columns: 24px minmax(0, 1fr) auto;
	align-items: center;
	gap: 10px;
	width: min(100%, 640px);
	min-height: 58px;
	padding: 0 10px 0 18px;
	border: 1px solid #d8dee8;
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(17, 24, 39, .08);
}

.search-home__form:focus-within {
	border-color: #b8c2d2;
	box-shadow: 0 14px 36px rgba(17, 24, 39, .12);
}

.search-home__icon {
	color: #8a94a6;
	font-size: 18px;
}

.search-home__input {
	width: 100%;
	min-width: 0;
	height: 56px;
	border: 0;
	background: transparent;
	color: #182230;
	font-size: 17px;
	line-height: 1.4;
	outline: none;
}

.search-home__input::placeholder {
	color: #98a2b3;
}

.search-home__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 72px;
	height: 42px;
	padding: 0 18px;
	border: 0;
	border-radius: 999px;
	background: #1f3b73;
	color: #fff;
	font-size: 14px;
	font-weight: 900;
}

.search-home__button:hover,
.search-home__button:focus-visible {
	background: #182f5d;
}

.search-home__message {
	margin: 0;
	color: #697586;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.5;
}

.search-home__footer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 44px;
	padding: 0 20px;
	border-top: 1px solid #e4e8ef;
	background: rgba(255, 255, 255, .72);
	color: #697586;
	font-size: 12px;
	line-height: 1.4;
}

.search-home__footer span + span::before {
	content: "";
	display: inline-block;
	width: 3px;
	height: 3px;
	margin-right: 10px;
	border-radius: 50%;
	background: #98a2b3;
	vertical-align: middle;
}

.site-footer {
	border-top: 1px solid #d9dee7;
	background: #fff;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 20px 32px;
	width: min(100% - 40px, 1280px);
	margin: 0 auto;
	padding: 30px 0 96px;
}

.site-footer__brand strong {
	display: block;
	margin-bottom: 6px;
	color: #121926;
	font-size: 16px;
}

.site-footer__brand p,
.site-footer__meta,
.site-footer__links a {
	color: #697586;
	font-size: 13px;
	line-height: 1.6;
}

.site-footer__meta,
.site-footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
}

.site-footer__links {
	grid-column: 1 / -1;
}

.site-footer__links a {
	text-decoration: none;
}

.site-footer__links a:hover {
	color: #1f3b73;
}

body.public-site .mobile-nav {
	position: fixed;
	left: 50%;
	bottom: 0;
	z-index: 60;
	display: none;
	justify-content: center;
	gap: 6px;
	width: min(100%, 520px);
	padding: 8px 14px calc(8px + env(safe-area-inset-bottom));
	border: 1px solid rgba(216, 222, 232, .9);
	border-bottom: 0;
	border-radius: 12px 12px 0 0;
	background: rgba(255, 255, 255, .96);
	box-shadow: 0 -12px 30px rgba(15, 23, 42, .10);
	transform: translateX(-50%);
	backdrop-filter: blur(12px);
}

body.public-site .mobile-nav a {
	display: grid;
	place-items: center;
	gap: 3px;
	min-width: 74px;
	min-height: 50px;
	padding: 6px 10px;
	border-radius: 8px;
	color: #667085;
	font-size: 12px;
	font-weight: 800;
	text-decoration: none;
}

body.public-site .mobile-nav__icon {
	font-size: 18px;
	line-height: 1;
}

.error-page {
	display: grid;
	place-items: center;
	width: min(100% - 40px, 1040px);
	min-height: calc(100vh - 64px);
	margin: 0 auto;
	padding: 56px 0 72px;
}

.error-page__panel {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	gap: 36px;
	align-items: center;
	width: 100%;
	padding: 42px;
	border: 1px solid #dbe1ea;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 50px rgba(17, 24, 39, .06);
}

.error-page__visual {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 270px;
	border: 1px solid #e1e7f0;
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(31, 59, 115, .08), rgba(255, 255, 255, 0) 58%),
		#f8fafc;
	overflow: hidden;
}

.error-page__visual::before,
.error-page__visual::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	background: rgba(31, 59, 115, .08);
}

.error-page__visual::before {
	top: -44px;
	right: -36px;
	width: 130px;
	height: 130px;
}

.error-page__visual::after {
	left: -42px;
	bottom: -54px;
	width: 150px;
	height: 150px;
}

.error-page__code {
	position: relative;
	z-index: 1;
	color: #1f3b73;
	font-family: 'Oswald', var(--font-family-base);
	font-size: 88px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0;
}

.error-page__icon {
	position: absolute;
	right: 32px;
	bottom: 30px;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border: 1px solid #d8dee8;
	border-radius: 8px;
	background: #fff;
	color: #1f3b73;
	font-size: 26px;
	box-shadow: 0 14px 32px rgba(15, 23, 42, .08);
}

.error-page__content {
	min-width: 0;
}

.error-page__eyebrow {
	margin: 0 0 10px;
	color: #1f3b73;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.4;
}

.error-page h1 {
	margin: 0;
	color: #111827;
	font-size: 38px;
	font-weight: 900;
	line-height: 1.22;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

.error-page__lead {
	max-width: 620px;
	margin: 16px 0 0;
	color: #475467;
	font-size: 16px;
	line-height: 1.75;
}

.error-page__message {
	margin: 16px 0 0;
	padding: 13px 14px;
	border: 1px solid #e6eaf0;
	border-radius: 8px;
	background: #f8fafc;
	color: #697586;
	font-size: 14px;
	line-height: 1.6;
	overflow-wrap: anywhere;
}

.cs-read {
	width: min(100% - 40px, 1280px);
	margin: 0 auto;
	padding: 28px 0 72px;
}

.cs-read__breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 20px;
	color: #697586;
	font-size: 13px;
	line-height: 1.45;
}

.cs-read__hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	grid-template-areas:
		"title title"
		"intro info";
	gap: 28px;
	align-items: start;
	padding: 34px;
	border: 1px solid #dbe1ea;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 50px rgba(17, 24, 39, .06);
}

.cs-read__hero-main {
	grid-area: title;
	min-width: 0;
}

.cs-read__intro {
	grid-area: intro;
	min-width: 0;
}

.cs-read__eyebrow {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
}

.cs-read__eyebrow span {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 10px;
	border: 1px solid #d8dee8;
	border-radius: 999px;
	background: #f8fafc;
	color: #475467;
	font-size: 12px;
	font-weight: 800;
}

.cs-read__hero h1 {
	margin: 0;
	color: #111827;
	font-size: 42px;
	font-weight: 900;
	line-height: 1.18;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

.cs-read__lead {
	max-width: 760px;
	margin: 0;
	color: #475467;
	font-size: 17px;
	line-height: 1.75;
}

.cs-read__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
	margin-top: 22px;
	color: #667085;
	font-size: 13px;
}

.cs-read__meta span {
	position: relative;
}

.cs-read__meta span + span::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -9px;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #98a2b3;
	transform: translateY(-50%);
}

.cs-read__info {
	grid-area: info;
	border: 1px solid #d9dee7;
	border-radius: 8px;
	background: #f8fafc;
}

.cs-read__info h2 {
	margin: 0;
	padding: 16px 18px;
	border-bottom: 1px solid #e4e8ef;
	color: #182230;
	font-size: 16px;
	font-weight: 900;
}

.cs-read__info dl {
	display: grid;
	gap: 0;
	margin: 0;
}

.cs-read__info dl div {
	display: grid;
	grid-template-columns: 86px minmax(0, 1fr);
	gap: 12px;
	padding: 13px 18px;
	border-bottom: 1px solid #e8ecf2;
}

.cs-read__info dl div:last-child {
	border-bottom: 0;
}

.cs-read__info dt {
	color: #697586;
	font-size: 12px;
	font-weight: 800;
}

.cs-read__info dd {
	min-width: 0;
	margin: 0;
	color: #182230;
	font-size: 13px;
	font-weight: 800;
	overflow-wrap: anywhere;
}

.cs-read__stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin: 0 0 6px;
}

.cs-read__stat {
	padding: 18px;
	border: 1px solid #dde3eb;
	border-radius: 8px;
	background: #fff;
}

.cs-read__stat span {
	display: block;
	margin-bottom: 8px;
	color: #697586;
	font-size: 12px;
	font-weight: 900;
}

.cs-read__stat strong {
	display: block;
	color: #111827;
	font-size: 28px;
	font-weight: 900;
	line-height: 1.1;
}

.cs-read__stat p {
	margin: 8px 0 0;
	color: #697586;
	font-size: 13px;
	line-height: 1.5;
}

.cs-read__layout {
	display: grid;
	grid-template-columns: 180px minmax(0, 1fr);
	gap: 28px;
	align-items: start;
	margin-top: 30px;
}

.cs-read__toc {
	position: sticky;
	top: 94px;
	display: grid;
	gap: 4px;
	padding: 14px;
	border: 1px solid #dfe4ec;
	border-radius: 8px;
	background: #fff;
}

.cs-read__toc strong {
	margin-bottom: 6px;
	color: #121926;
	font-size: 13px;
}

.cs-read__toc a {
	padding: 8px 10px;
	border-radius: 6px;
	color: #526071;
	font-size: 13px;
	text-decoration: none;
}

.cs-read__toc a:hover {
	background: #eef2f7;
	color: #1f3b73;
}

.cs-read__article {
	min-width: 0;
	padding: 4px 0 0;
}

.cs-read__section {
	padding: 28px 0;
	border-bottom: 1px solid #dfe4ec;
	scroll-margin-top: 96px;
}

.cs-read__section:first-child {
	padding-top: 0;
}

.cs-read__section h2 {
	margin: 0 0 16px;
	color: #111827;
	font-size: 25px;
	font-weight: 900;
	letter-spacing: 0;
}

.cs-read__section-card {
	padding: 22px;
	border: 1px solid #dde3eb;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 30px rgba(15, 23, 42, .035);
}

.cs-read__section-card h2 {
	margin-bottom: 18px;
}

.cs-read__section-card .cs-read__content-card,
.cs-read__section-card .cs-read__insight-list li,
.cs-read__section-card .cs-read__faq-item {
	background: #f8fafc;
	box-shadow: none;
}

.cs-read__section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
}

.cs-read__section-head h2 {
	margin: 0;
}

.cs-read__section-head span,
.cs-read__note,
.cs-read__empty {
	color: #697586;
	font-size: 13px;
	line-height: 1.6;
}

.cs-read__summary-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.cs-read__summary-card {
	padding: 20px;
	border: 1px solid #dde3eb;
	border-radius: 8px;
	background: #fff;
}

.cs-read__summary-card h3 {
	margin: 0 0 10px;
	color: #111827;
	font-size: 17px;
	font-weight: 900;
}

.cs-read__summary-card p {
	margin: 0;
	color: #344054;
	font-size: 15px;
	line-height: 1.75;
}

.cs-read__content-card {
	padding: 20px 22px;
	border: 1px solid #dde3eb;
	border-radius: 8px;
	background: #fff;
}

.cs-read__content-card p {
	margin: 0;
	color: #344054;
	font-size: 15px;
	line-height: 1.8;
}

.cs-read__insight-list {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.cs-read__insight-list li {
	position: relative;
	padding: 15px 18px 15px 44px;
	border: 1px solid #dde3eb;
	border-radius: 8px;
	background: #fff;
	color: #344054;
	font-size: 15px;
	line-height: 1.65;
}

.cs-read__insight-list li::before {
	content: "";
	position: absolute;
	top: 20px;
	left: 20px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #1f3b73;
}

.cs-read__insight-list--point li::before {
	background: #047857;
}

.cs-read__chart {
	display: grid;
	gap: 10px;
	padding: 18px;
	border: 1px solid #dde3eb;
	border-radius: 8px;
	background: #fff;
}

.cs-read__bar-row {
	display: grid;
	grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
	gap: 14px;
	align-items: center;
}

.cs-read__bar-label {
	min-width: 0;
}

.cs-read__bar-label strong,
.cs-read__district strong,
.cs-read__store-main strong {
	display: block;
	color: #182230;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.cs-read__bar-label span,
.cs-read__district span,
.cs-read__store-main span,
.cs-read__store-meta span {
	display: block;
	color: #697586;
	font-size: 12px;
	line-height: 1.55;
}

.cs-read__bar-track,
.cs-read__mini-track {
	height: 14px;
	border-radius: 999px;
	background: #eef2f7;
	overflow: hidden;
}

.cs-read__bar-track span,
.cs-read__mini-track span {
	display: block;
	width: 0;
	height: 100%;
	border-radius: inherit;
	background: #1f3b73;
}

.cs-read__bar-row.is-target .cs-read__bar-label strong {
	color: #1f3b73;
}

.cs-read__bar-row.is-target .cs-read__bar-track span {
	background: #047857;
}

.cs-read__note {
	margin: 12px 0 0;
}

.cs-read__empty {
	margin: 0;
	padding: 18px 20px;
	border: 1px solid #dde3eb;
	border-radius: 8px;
	background: #fff;
}

.cs-read__district-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.cs-read__district {
	display: grid;
	gap: 12px;
	padding: 16px;
	border: 1px solid #dde3eb;
	border-radius: 8px;
	background: #fff;
}

.cs-read__mini-track {
	height: 8px;
}

.cs-read__store-list {
	display: grid;
	gap: 10px;
}

.cs-read__store {
	display: grid;
	grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
	gap: 16px;
	padding: 16px 18px;
	border: 1px solid #dde3eb;
	border-radius: 8px;
	background: #fff;
	color: inherit;
	text-decoration: none;
}

.cs-read__store--map {
	cursor: pointer;
}

.cs-read__store--map:hover,
.cs-read__store--map:focus {
	border-color: #1f3b73;
	color: inherit;
	text-decoration: none;
	box-shadow: 0 12px 30px rgba(31, 59, 115, .10);
	outline: none;
}

.cs-read__store--map:focus-visible {
	box-shadow: 0 0 0 4px rgba(31, 59, 115, .16);
}

.cs-read__store-meta {
	display: grid;
	gap: 5px;
	min-width: 0;
}

.cs-read__store-meta span {
	display: flex;
	align-items: flex-start;
	gap: 7px;
	overflow-wrap: anywhere;
}

.cs-read__store-meta i {
	flex: 0 0 auto;
	margin-top: 1px;
	color: #1f3b73;
}

.cs-read__map-hint {
	font-weight: 900;
}

.cs-read__store--map .cs-read__map-hint {
	color: #1f3b73;
}

.cs-read__store--no-map .cs-read__map-hint {
	color: #98a2b3;
}

.cs-read__redirect-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.cs-read__redirect {
	display: grid;
	gap: 8px;
	min-width: 0;
	padding: 16px 18px;
	border: 1px solid #dde3eb;
	border-radius: 8px;
	background: #fff;
	color: inherit;
	text-decoration: none;
}

.cs-read__redirect:hover,
.cs-read__redirect:focus {
	border-color: #1f3b73;
	color: inherit;
	text-decoration: none;
	box-shadow: 0 12px 30px rgba(31, 59, 115, .10);
	outline: none;
}

.cs-read__redirect:focus-visible {
	box-shadow: 0 0 0 4px rgba(31, 59, 115, .16);
}

.cs-read__redirect strong {
	color: #121926;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.cs-read__redirect span {
	color: #697586;
	font-size: 13px;
	line-height: 1.55;
	overflow-wrap: anywhere;
}

.cs-read__topic-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.cs-read__topic-list span {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 0 12px;
	border: 1px solid #d8dee8;
	border-radius: 999px;
	background: #fff;
	color: #475467;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.3;
}

.cs-read__faq-list {
	display: grid;
	gap: 14px;
}

.cs-read__faq-item {
	display: grid;
	gap: 12px;
	padding: 18px 20px;
	border: 1px solid #dde3eb;
	border-radius: 8px;
	background: #fff;
}

.cs-read__faq-item h3,
.cs-read__faq-item p {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	gap: 10px;
	margin: 0;
}

.cs-read__faq-item h3 {
	color: #111827;
	font-size: 17px;
	font-weight: 900;
	line-height: 1.55;
	letter-spacing: 0;
}

.cs-read__faq-item p {
	color: #344054;
	font-size: 15px;
	line-height: 1.8;
}

.cs-read__faq-item span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
}

.cs-read__faq-item h3 span {
	background: #1f3b73;
	color: #fff;
}

.cs-read__faq-item p span {
	background: #eef2f7;
	color: #344054;
}

.default-read__layout {
	display: grid;
	grid-template-columns: 180px minmax(0, 1fr) 180px;
	gap: 28px;
	align-items: start;
	margin-top: 30px;
}

.default-read__side {
	position: sticky;
	top: 94px;
	display: grid;
	gap: 14px;
	min-width: 0;
}

.default-read__side .jp-read__toc {
	position: static;
}

.common-banner {
	display: grid;
	gap: 10px;
	min-width: 0;
}

.common-banner--top {
	width: 100%;
	height: 200px;
	margin: 20px 0 0;
	overflow: hidden;
}

.common-banner__viewport {
	width: 100%;
	height: 100%;
	min-width: 0;
	overflow: hidden;
}

.common-banner__viewport--desktop {
	display: grid;
}

.common-banner__viewport--mobile {
	display: none;
}

.common-banner--top .common-banner__viewport--mobile {
	display: none;
}

.common-banner--middle {
	justify-content: center;
	margin: 28px 0;
}

.common-banner--middle .common-banner__item {
	width: 420px;
	max-width: 100%;
	height: 300px;
}

.common-banner--middle .common-banner__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.common-banner--middle .common-banner__text {
	align-content: center;
	min-height: 100%;
}

.common-banner--slideshow {
	position: relative;
	display: grid;
	overflow: hidden;
}

.common-banner--slideshow .common-banner__slide {
	grid-area: 1 / 1;
	opacity: 0;
	pointer-events: none;
	transition: opacity .28s ease;
}

.common-banner--slideshow .common-banner__slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

.common-banner__item {
	display: block;
	min-width: 0;
	border: 1px solid #dde3eb;
	border-radius: 8px;
	background: #fff;
	color: inherit;
	text-decoration: none;
	overflow: hidden;
}

.common-banner--top .common-banner__item,
.common-banner--top .common-banner__image {
	width: 100%;
	height: 100%;
}

.common-banner--top .common-banner__image {
	object-fit: cover;
}

.common-banner--top .common-banner__text {
	align-content: center;
	min-height: 100%;
}

.common-banner__item:hover,
.common-banner__item:focus {
	border-color: #b8c2d2;
	color: inherit;
	text-decoration: none;
	outline: none;
	box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
}

.common-banner__image {
	display: block;
	width: 100%;
	height: auto;
}

.common-banner__text {
	display: grid;
	gap: 6px;
	padding: 16px;
}

.common-banner__text strong {
	color: #111827;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.common-banner__text span {
	color: #697586;
	font-size: 13px;
	line-height: 1.6;
	overflow-wrap: anywhere;
}

.jp-read {
	width: min(100% - 40px, 1280px);
	margin: 0 auto;
	padding: 28px 0 72px;
}

.jp-read__breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 20px;
	color: #697586;
	font-size: 13px;
	line-height: 1.45;
}

.jp-read__breadcrumb a {
	color: #526071;
	text-decoration: none;
}

.jp-read__breadcrumb a:hover {
	color: #1f3b73;
}

.jp-read__hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	grid-template-areas:
		"title title"
		"intro info";
	gap: 28px;
	align-items: start;
	padding: 34px;
	border: 1px solid #dbe1ea;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 50px rgba(17, 24, 39, .06);
}

.jp-read__hero-main {
	grid-area: title;
	min-width: 0;
}

.jp-read__intro {
	grid-area: intro;
	min-width: 0;
}

.jp-read__eyebrow {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
}

.jp-read__eyebrow span,
.jp-read__chips span,
.jp-read__statutes span {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 10px;
	border: 1px solid #d8dee8;
	border-radius: 999px;
	background: #f8fafc;
	color: #475467;
	font-size: 12px;
	font-weight: 700;
}

.jp-read__hero h1 {
	margin: 0;
	color: #111827;
	font-size: 42px;
	font-weight: 900;
	line-height: 1.18;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

.jp-read__lead {
	max-width: 760px;
	margin: 0;
	color: #475467;
	font-size: 17px;
	line-height: 1.75;
}

.jp-read__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
	margin-top: 22px;
	color: #667085;
	font-size: 13px;
}

.jp-read__meta span {
	position: relative;
}

.jp-read__meta span + span::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -9px;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #98a2b3;
	transform: translateY(-50%);
}

.jp-read__info {
	grid-area: info;
	border: 1px solid #d9dee7;
	border-radius: 8px;
	background: #f8fafc;
}

.jp-read__info h2 {
	margin: 0;
	padding: 16px 18px;
	border-bottom: 1px solid #e4e8ef;
	color: #182230;
	font-size: 16px;
	font-weight: 900;
}

.jp-read__info dl {
	display: grid;
	gap: 0;
	margin: 0;
}

.jp-read__info dl div {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr);
	gap: 12px;
	padding: 13px 18px;
	border-bottom: 1px solid #e8ecf2;
}

.jp-read__info dl div:last-child {
	border-bottom: 0;
}

.jp-read__info dt {
	color: #697586;
	font-size: 12px;
	font-weight: 800;
}

.jp-read__info dd {
	min-width: 0;
	margin: 0;
	color: #182230;
	font-size: 13px;
	font-weight: 700;
	overflow-wrap: anywhere;
}

.jp-read__layout {
	display: grid;
	grid-template-columns: 180px minmax(0, 1fr);
	gap: 28px;
	align-items: start;
	margin-top: 30px;
}

.jp-read__toc {
	position: sticky;
	top: 94px;
}

.jp-read__toc {
	display: grid;
	gap: 4px;
	padding: 14px;
	border: 1px solid #dfe4ec;
	border-radius: 8px;
	background: #fff;
}

.jp-read__toc strong {
	margin-bottom: 6px;
	color: #121926;
	font-size: 13px;
}

.jp-read__toc a {
	padding: 8px 10px;
	border-radius: 6px;
	color: #526071;
	font-size: 13px;
	text-decoration: none;
}

.jp-read__toc a:hover {
	background: #eef2f7;
	color: #1f3b73;
}

.jp-read__article {
	min-width: 0;
	padding: 4px 0 0;
}

.jp-read__section {
	padding: 28px 0;
	border-bottom: 1px solid #dfe4ec;
	scroll-margin-top: 96px;
}

.jp-read__section:first-child {
	padding-top: 0;
}

.jp-read__section h2 {
	margin: 0 0 16px;
	color: #111827;
	font-size: 25px;
	font-weight: 900;
	letter-spacing: 0;
}

.jp-read__section p,
.jp-read__list,
.jp-read__fulltext {
	color: #263241;
	font-size: 16px;
	line-height: 1.85;
}

.jp-read__section > p {
	margin: 0;
	max-width: 760px;
}

.jp-read__content-card {
	padding: 20px 22px;
	border: 1px solid #dde3eb;
	border-radius: 8px;
	background: #fff;
}

.jp-read__content-card > p {
	margin: 0;
}

.jp-read__chips,
.jp-read__statutes {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}

.jp-read__list {
	display: grid;
	gap: 10px;
	margin: 0;
	padding-left: 20px;
}

.jp-read__list li::marker {
	color: #1f3b73;
}

.jp-read__empty {
	margin: 0;
	color: #697586;
}

.jp-read__faq-list {
	display: grid;
	gap: 14px;
}

.jp-read__faq-item {
	display: grid;
	gap: 12px;
	padding: 18px 20px;
	border: 1px solid #dde3eb;
	border-radius: 8px;
	background: #fff;
}

.jp-read__faq-item h3,
.jp-read__faq-item p {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	gap: 10px;
	margin: 0;
}

.jp-read__faq-item h3 {
	color: #111827;
	font-size: 17px;
	font-weight: 900;
	line-height: 1.55;
	letter-spacing: 0;
}

.jp-read__faq-item p {
	color: #344054;
	font-size: 15px;
	line-height: 1.8;
}

.jp-read__faq-item span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
}

.jp-read__faq-item h3 span {
	background: #1f3b73;
	color: #fff;
}

.jp-read__faq-item p span {
	background: #eef2f7;
	color: #344054;
}

.jp-read__fulltext {
	max-height: none;
	padding: 24px;
	border: 1px solid #dde3eb;
	border-radius: 8px;
	background: #fff;
	white-space: normal;
	overflow-wrap: anywhere;
}

.jp-read__fulltext p,
.jp-read__fulltext div,
.jp-read__fulltext li {
	max-width: 760px;
}

.jp-read__fulltext h1,
.jp-read__fulltext h2,
.jp-read__fulltext h3,
.jp-read__fulltext h4 {
	margin: 28px 0 12px;
	color: #111827;
	font-weight: 900;
	line-height: 1.35;
	letter-spacing: 0;
}

.jp-read__fulltext h1 {
	font-size: 24px;
}

.jp-read__fulltext h2 {
	font-size: 22px;
}

.jp-read__fulltext h3,
.jp-read__fulltext h4 {
	font-size: 18px;
}

.jp-read__fulltext p {
	margin: 0 0 14px;
}

.jp-read__fulltext table {
	display: block;
	width: 100%;
	overflow-x: auto;
	border-collapse: collapse;
}

.jp-read__fulltext th,
.jp-read__fulltext td {
	padding: 10px 12px;
	border: 1px solid #dfe4ec;
	vertical-align: top;
}

.jp-read__related {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.jp-read__related a {
	display: grid;
	gap: 5px;
	padding: 14px 18px;
	border-bottom: 1px solid #eef1f5;
	color: #182230;
	text-decoration: none;
}

.jp-read__related li:last-child a {
	border-bottom: 0;
}

.jp-read__related strong {
	font-size: 14px;
	line-height: 1.45;
}

.jp-read__related span {
	color: #697586;
	font-size: 12px;
}

.jp-read__redirect-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.jp-read__redirect {
	display: grid;
	gap: 8px;
	min-width: 0;
	padding: 16px 18px;
	border: 1px solid #dde3eb;
	border-radius: 8px;
	background: #fff;
	color: inherit;
	text-decoration: none;
}

.jp-read__redirect:hover,
.jp-read__redirect:focus {
	border-color: #1f3b73;
	color: inherit;
	text-decoration: none;
	box-shadow: 0 12px 30px rgba(31, 59, 115, .10);
	outline: none;
}

.jp-read__redirect:focus-visible {
	box-shadow: 0 0 0 4px rgba(31, 59, 115, .16);
}

.jp-read__redirect strong {
	color: #121926;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.jp-read__redirect span {
	min-height: 20px;
	color: #697586;
	font-size: 13px;
	line-height: 1.55;
	overflow-wrap: anywhere;
}

.cca-read__article {
	min-width: 0;
}

.cca-read__stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 28px;
}

.cca-read__stat,
.cca-read__summary-card,
.cca-read__object-card,
.cca-read__timeline-item,
.cca-read__detail,
.cca-read__appraisal,
.cca-read__location {
	border: 1px solid #dde3eb;
	border-radius: 8px;
	background: #fff;
}

.cca-read__stat {
	display: grid;
	gap: 8px;
	padding: 18px;
}

.cca-read__stat--emphasis {
	border-color: #9fb5df;
	background: #f5f8ff;
}

.cca-read__stat span,
.cca-read__section-head span,
.cca-read__photo-counts span {
	color: #667085;
	font-size: 12px;
	font-weight: 800;
}

.cca-read__stat strong {
	color: #111827;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.cca-read__stat p {
	margin: 0;
	color: #667085;
	font-size: 13px;
	line-height: 1.5;
}

.cca-read__section {
	padding: 28px 0;
	border-bottom: 1px solid #dfe4ec;
	scroll-margin-top: 96px;
}

.cca-read__section h2 {
	margin: 0 0 16px;
	color: #111827;
	font-size: 25px;
	font-weight: 900;
	letter-spacing: 0;
}

.cca-read__section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 16px;
}

.cca-read__section-head h2 {
	margin: 0;
}

.cca-read__summary-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.cca-read__summary-card {
	padding: 20px;
}

.cca-read__summary-card h3,
.cca-read__timeline-body h3,
.cca-read__detail h3 {
	margin: 0 0 12px;
	color: #182230;
	font-size: 17px;
	font-weight: 900;
	line-height: 1.45;
}

.cca-read__definition {
	display: grid;
	gap: 0;
	margin: 0;
}

.cca-read__definition div {
	display: grid;
	grid-template-columns: 128px minmax(0, 1fr);
	gap: 12px;
	padding: 11px 0;
	border-bottom: 1px solid #edf1f6;
}

.cca-read__definition div:last-child {
	border-bottom: 0;
}

.cca-read__definition--compact div {
	grid-template-columns: 96px minmax(0, 1fr);
}

.cca-read__definition dt,
.cca-read__timeline-body dt {
	color: #667085;
	font-size: 12px;
	font-weight: 800;
}

.cca-read__definition dd,
.cca-read__timeline-body dd {
	min-width: 0;
	margin: 0;
	color: #263241;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.55;
	overflow-wrap: anywhere;
}

.cca-read__timeline {
	display: grid;
	gap: 14px;
}

.cca-read__timeline-item {
	display: grid;
	grid-template-columns: 168px minmax(0, 1fr);
	gap: 18px;
	padding: 18px;
}

.cca-read__timeline-item.is-current {
	border-color: #9fb5df;
	box-shadow: inset 4px 0 0 #1f3b73;
}

.cca-read__timeline-date {
	display: grid;
	align-content: start;
	gap: 4px;
}

.cca-read__timeline-date strong {
	color: #111827;
	font-size: 16px;
	font-weight: 900;
}

.cca-read__timeline-date span,
.cca-read__timeline-body p {
	margin: 0;
	color: #667085;
	font-size: 13px;
	line-height: 1.55;
}

.cca-read__timeline-body dl {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin: 14px 0 0;
}

.cca-read__timeline-body dl div {
	padding: 12px;
	border-radius: 8px;
	background: #f8fafc;
}

.cca-read__object-card {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
	gap: 22px;
	padding: 22px;
}

.cca-read__object-main strong {
	display: block;
	margin-bottom: 10px;
	color: #111827;
	font-size: 22px;
	font-weight: 900;
}

.cca-read__object-main p,
.cca-read__detail p,
.cca-read__appraisal p {
	margin: 0;
	color: #344054;
	font-size: 15px;
	line-height: 1.8;
}

.cca-read__object-main p + p {
	margin-top: 12px;
}

.cca-read__location-list,
.cca-read__detail-list,
.cca-read__appraisal-list {
	display: grid;
	gap: 12px;
	margin-top: 14px;
}

.cca-read__location {
	display: grid;
	gap: 6px;
	padding: 16px 18px;
}

.cca-read__location strong {
	color: #182230;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.5;
}

.cca-read__location span {
	color: #667085;
	font-size: 13px;
	line-height: 1.55;
}

.cca-read__table-wrap {
	overflow-x: auto;
	border: 1px solid #dde3eb;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 1px 2px rgba(16, 24, 40, .04);
}

.cca-read__table {
	width: 100%;
	min-width: 680px;
	border-collapse: collapse;
}

.cca-read__table caption.setcaption {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.cca-read__table th,
.cca-read__table td {
	padding: 14px 16px;
	border-bottom: 1px solid #edf1f6;
	text-align: left;
	vertical-align: top;
	overflow-wrap: anywhere;
}

.cca-read__table th {
	background: #f8fafc;
	color: #475467;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.45;
	white-space: nowrap;
}

.cca-read__table td {
	color: #263241;
	font-size: 14px;
	line-height: 1.75;
	word-break: keep-all;
}

.cca-read__table tbody th {
	width: 136px;
	border-bottom: 1px solid #edf1f6;
}

.cca-read__table tbody tr:last-child td {
	border-bottom: 0;
}

.cca-read__table tbody tr:last-child th {
	border-bottom: 0;
}

.cca-read__table thead th {
	text-align: center;
}

.cca-read__table thead + tbody td {
	text-align: center;
}

.cca-read__section-card,
.cca-read__insight-card {
	padding: 20px 22px;
	border: 1px solid #dde3eb;
	border-radius: 8px;
	background: #fff;
}

.cca-read__section-card .cca-read__section-head {
	margin-bottom: 18px;
}

.cca-read__insight-card + .cca-read__insight-card,
.cca-read__insight-card + .cca-read__insight-block,
.cca-read__insight-block + .cca-read__tag-list,
.cca-read__insight-card + .cca-read__tag-list {
	margin-top: 14px;
}

.cca-read__insight-card h3,
.cca-read__insight-block h3 {
	margin: 0 0 10px;
	color: #182230;
	font-size: 17px;
	font-weight: 900;
	line-height: 1.45;
}

.cca-read__insight-card p {
	margin: 0;
	color: #344054;
	font-size: 15px;
	line-height: 1.8;
}

.cca-read__insight-block {
	padding-top: 2px;
}

.cca-read__insight-list {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.cca-read__insight-list li {
	position: relative;
	padding: 14px 16px 14px 38px;
	border: 1px solid #ead7a2;
	border-radius: 8px;
	background: #fff;
	color: #344054;
	font-size: 15px;
	line-height: 1.65;
}

.cca-read__insight-list li::before {
	content: "";
	position: absolute;
	top: 20px;
	left: 18px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #b7791f;
}

.cca-read__tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 14px;
}

.cca-read__tag-list span {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 10px;
	border: 1px solid #d8dee8;
	border-radius: 999px;
	background: #f8fafc;
	color: #667085;
	font-size: 12px;
	font-weight: 800;
}

.cca-read__detail {
	padding: 18px 20px;
}

.cca-read__appraisal {
	display: grid;
	grid-template-columns: 32px minmax(0, 1fr);
	gap: 14px;
	padding: 18px 20px;
}

.cca-read__appraisal > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #1f3b73;
	color: #fff;
	font-size: 13px;
	font-weight: 900;
}

.cca-read__photo-counts {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 16px;
}

.cca-read__photo-counts span {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 10px;
	border: 1px solid #d8dee8;
	border-radius: 999px;
	background: #f8fafc;
}

.cca-read__photo-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.cca-read__photo {
	display: grid;
	gap: 8px;
	color: #263241;
	text-decoration: none;
}

.cca-read__photo img {
	width: 100%;
	aspect-ratio: 4 / 3;
	border: 1px solid #dde3eb;
	border-radius: 8px;
	background: #f3f5f8;
	object-fit: cover;
}

.cca-read__photo span {
	color: #667085;
	font-size: 12px;
	font-weight: 800;
}

.cca-read__photo:hover span,
.cca-read__photo:focus span {
	color: #1f3b73;
}

.cca-read__photo:focus-visible {
	outline: 3px solid rgba(31, 59, 115, .25);
	outline-offset: 3px;
	border-radius: 8px;
}

.cca-read__redirect-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.cca-read__redirect {
	display: grid;
	gap: 8px;
	min-width: 0;
	padding: 16px 18px;
	border: 1px solid #dde3eb;
	border-radius: 8px;
	background: #fff;
	color: inherit;
	text-decoration: none;
}

.cca-read__redirect:hover,
.cca-read__redirect:focus {
	border-color: #1f3b73;
	color: inherit;
	text-decoration: none;
	box-shadow: 0 12px 30px rgba(31, 59, 115, .10);
	outline: none;
}

.cca-read__redirect:focus-visible {
	box-shadow: 0 0 0 4px rgba(31, 59, 115, .16);
}

.cca-read__redirect strong {
	color: #121926;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.cca-read__redirect span {
	min-height: 20px;
	color: #697586;
	font-size: 13px;
	line-height: 1.55;
	overflow-wrap: anywhere;
}

.cca-read__official {
	display: grid;
	justify-items: center;
	gap: 12px;
	margin-top: 30px;
	padding: 22px;
	border: 1px solid #dde3eb;
	border-radius: 8px;
	background: #f8fafc;
	text-align: center;
}

.cca-read__official a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: min(100%, 320px);
	border-radius: 8px;
}

.cca-read__official a:focus-visible {
	outline: 3px solid rgba(31, 59, 115, .25);
	outline-offset: 4px;
}

.cca-read__official img {
	display: block;
	max-width: 100%;
	height: auto;
}

.cca-read__official p {
	margin: 0;
	color: #475467;
	font-size: 14px;
	line-height: 1.65;
}

@media (max-width: 1100px) {
	.error-page__panel {
		grid-template-columns: 240px minmax(0, 1fr);
		padding: 34px;
	}

	.error-page__visual {
		min-height: 240px;
	}

	.error-page__code {
		font-size: 76px;
	}

	.cs-read__layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.cs-read__hero {
		grid-template-columns: minmax(0, 1fr);
		grid-template-areas:
			"title"
			"intro"
			"info";
	}

	.cs-read__toc {
		position: static;
		display: flex;
		flex-wrap: wrap;
	}

	.cs-read__toc strong {
		width: 100%;
	}

	.default-read__layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.default-read__side {
		position: static;
	}

	.default-read__side .jp-read__toc {
		display: flex;
		flex-wrap: wrap;
	}

	.default-read__side .jp-read__toc strong {
		width: 100%;
	}

	.jp-read__layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.jp-read__hero {
		grid-template-columns: minmax(0, 1fr);
		grid-template-areas:
			"title"
			"intro"
			"info";
	}

	.jp-read__toc {
		position: static;
	}

	.jp-read__toc {
		display: flex;
		flex-wrap: wrap;
	}

	.jp-read__toc strong {
		width: 100%;
	}

	.cca-read__stats,
	.cca-read__summary-grid,
	.cca-read__photo-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cca-read__object-card {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 760px) {
	.site-header__inner,
	.site-footer__inner,
	.jp-read,
	.cs-read,
	.error-page {
		width: min(100% - 32px, 1280px);
	}

	.site-header__nav {
		display: none;
	}

	.site-header__inner {
		min-height: 44px;
	}

	.site-header__mark {
		width: 26px;
		height: 26px;
	}

	.site-header__search {
		width: min(100% - 32px, 760px);
		margin-bottom: 8px;
	}

	body.public-site .public-shell {
		padding-bottom: calc(74px + env(safe-area-inset-bottom));
	}

	body.public-site .search-home-shell {
		padding-bottom: 0;
	}

	body.public-site .mobile-nav {
		display: flex;
	}

	.search-home {
		align-items: start;
		align-content: start;
		padding-top: 18vh;
	}

	.search-home__wordmark {
		font-size: 48px;
	}

	.search-home__form {
		grid-template-columns: 22px minmax(0, 1fr) auto;
		min-height: 54px;
		padding-left: 16px;
	}

	.search-home__input {
		height: 52px;
		font-size: 16px;
	}

	.search-home__button {
		min-width: 58px;
		height: 38px;
		padding: 0 14px;
	}

	.search-home__footer {
		flex-wrap: wrap;
		gap: 4px 10px;
		min-height: 46px;
		padding: 7px 16px;
		text-align: center;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
		padding-bottom: 120px;
	}

	.error-page {
		min-height: auto;
		padding-top: 22px;
		padding-bottom: 44px;
	}

	.error-page__panel {
		grid-template-columns: minmax(0, 1fr);
		gap: 24px;
		padding: 22px;
	}

	.error-page__visual {
		min-height: 180px;
	}

	.error-page__code {
		font-size: 60px;
	}

	.error-page__icon {
		right: 22px;
		bottom: 20px;
		width: 48px;
		height: 48px;
		font-size: 22px;
	}

	.error-page h1 {
		font-size: 29px;
	}

	.error-page__lead {
		font-size: 15px;
	}

	.cs-read {
		padding-top: 18px;
		padding-bottom: 44px;
	}

	.cs-read__hero {
		padding: 22px;
	}

	.cs-read__hero h1 {
		font-size: 30px;
	}

	.cs-read__lead {
		font-size: 16px;
	}

	.cs-read__info dl div,
	.cs-read__bar-row,
	.cs-read__store {
		grid-template-columns: 1fr;
	}

	.cs-read__stats,
	.cs-read__summary-grid,
	.cs-read__district-grid,
	.cs-read__redirect-list,
	.jp-read__redirect-list,
	.cca-read__redirect-list,
	.cca-read__stats,
	.cca-read__summary-grid,
	.cca-read__photo-grid {
		grid-template-columns: 1fr;
	}

	.cca-read__stat,
	.cca-read__summary-card,
	.cca-read__object-card,
	.cca-read__timeline-item,
	.cca-read__detail,
	.cca-read__appraisal,
	.cca-read__location {
		padding: 16px;
	}

	.cca-read__section h2 {
		font-size: 22px;
	}

	.cca-read__section-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.cca-read__definition div,
	.cca-read__definition--compact div,
	.cca-read__timeline-item,
	.cca-read__timeline-body dl {
		grid-template-columns: 1fr;
	}

	.cca-read__timeline-item.is-current {
		box-shadow: inset 3px 0 0 #1f3b73;
	}

	.cs-read__section h2 {
		font-size: 22px;
	}

	.cs-read__chart,
	.cs-read__content-card,
	.cs-read__section-card,
	.cs-read__summary-card,
	.cs-read__store,
	.cs-read__faq-item {
		padding: 16px;
	}

	.cs-read__insight-list li {
		padding: 14px 16px 14px 38px;
	}

	.cs-read__insight-list li::before {
		left: 17px;
	}

	.cs-read__faq-item h3,
	.cs-read__faq-item p {
		grid-template-columns: 26px minmax(0, 1fr);
		gap: 8px;
	}

	.cs-read__faq-item span {
		width: 26px;
		height: 26px;
	}

	.cs-read__section-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.common-banner--top {
		height: 200px;
		margin-top: 16px;
	}

	.common-banner__viewport--desktop {
		display: none;
	}

	.common-banner--top .common-banner__viewport--desktop {
		display: none;
	}

	.common-banner__viewport--mobile {
		display: grid;
	}

	.common-banner--top .common-banner__viewport--mobile {
		display: grid;
	}

	.common-banner--middle {
		margin: 22px 0;
	}

	.common-banner--left,
	.common-banner--right {
		display: none;
	}

	.common-banner__text {
		padding: 14px;
	}

	.jp-read {
		padding-top: 18px;
		padding-bottom: 44px;
	}

	.jp-read__hero {
		padding: 22px;
	}

	.jp-read__hero h1 {
		font-size: 30px;
	}

	.jp-read__lead {
		font-size: 16px;
	}

	.jp-read__info dl div {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.jp-read__section h2 {
		font-size: 22px;
	}

	.jp-read__fulltext {
		padding: 18px;
		font-size: 15px;
	}

	.jp-read__content-card {
		padding: 16px;
	}

	.jp-read__faq-item {
		padding: 16px;
	}

	.jp-read__faq-item h3,
	.jp-read__faq-item p {
		grid-template-columns: 26px minmax(0, 1fr);
		gap: 8px;
	}

	.jp-read__faq-item span {
		width: 26px;
		height: 26px;
	}

	.mobile-nav a.is-active {
		background: #eef2f7;
		color: #182230;
	}
}
