.jurisystem .ax-container {
	width: 100%;
	max-width: calc(var(--ax-container-max) + 2 * var(--ax-sp-5));
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--ax-sp-5);
	padding-right: var(--ax-sp-5);
}

@media (max-width: 768px) {
	.jurisystem .ax-container {
		padding-left: var(--ax-sp-mobile-lr);
		padding-right: var(--ax-sp-mobile-lr);
	}
	
	.jurisystem .ax-section {
		padding-top: var(--ax-sp-mobile-tb);
		padding-bottom: var(--ax-sp-mobile-tb);
	}
	.jurisystem .ax-footer { padding: var(--ax-sp-6) 0 var(--ax-sp-5) 0; }
	.jurisystem .ax-footer__top { padding-bottom: var(--ax-sp-5); }
}

.jurisystem .ax-section {
	padding-top: var(--ax-sp-8);
	padding-bottom: var(--ax-sp-8);
}

.jurisystem .ax-section--soft    { background-color: var(--ax-primary-40); }
.jurisystem .ax-section--tinted  { background-color: var(--ax-primary-100); }
.jurisystem .ax-section--primary {
	background-color: var(--ax-primary-900);
	color: var(--ax-neutral-0);
}
.jurisystem .ax-section--primary .ax-t1,
.jurisystem .ax-section--primary .ax-t2,
.jurisystem .ax-section--primary .ax-t3,
.jurisystem .ax-section--primary .ax-t4 { color: var(--ax-neutral-0); }

.jurisystem .ax-grid {
	display: grid;
	gap: var(--ax-sp-2);
}
.jurisystem .ax-grid--2 { grid-template-columns: repeat(2, 1fr); }
.jurisystem .ax-grid--3 { grid-template-columns: repeat(3, 1fr); }
.jurisystem .ax-grid--4 { grid-template-columns: repeat(4, 1fr); }

.jurisystem .ax-flex {
	display: flex;
	gap: var(--ax-sp-4);
}
.jurisystem .ax-flex--center  { align-items: center; }
.jurisystem .ax-flex--between { justify-content: space-between; }
.jurisystem .ax-flex--wrap    { flex-wrap: wrap; }

.jurisystem .ax-header {
	background-color: var(--ax-neutral-0);
	border-bottom: 2px solid var(--ax-primary-200);
	position: sticky;
	top: 0px;
	z-index: 100;
}

.jurisystem .ax-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--ax-sp-4);
	min-height: 92px;
	padding-top: var(--ax-sp-4);
	padding-bottom: var(--ax-sp-4);
	max-width: none; 
	transition: min-height var(--ax-transition), padding var(--ax-transition);
	
	position: relative;
	z-index: 110;
}

.jurisystem .ax-header--sticky.is-scrolled { box-shadow: 0 2px 12px rgba(20, 20, 20, 0.08); }
.jurisystem .ax-header--sticky.is-scrolled .ax-header__inner {
	min-height: 60px;
	padding-top: var(--ax-sp-2);
	padding-bottom: var(--ax-sp-2);
}
.jurisystem .ax-header--sticky.is-scrolled .ax-header__baseline {
	opacity: 0;
	max-height: 0;
}
.jurisystem .ax-header--sticky.is-scrolled .ax-header__logo img { width: 95px; }

.jurisystem .ax-header--sticky { transition: box-shadow var(--ax-transition); }
.jurisystem .ax-header__logo img { transition: width var(--ax-transition); }
.jurisystem .ax-header__baseline {
	max-height: 18px;
	overflow: hidden;
	transition: opacity var(--ax-transition), max-height var(--ax-transition);
}

.jurisystem .ax-header__left {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
}

.jurisystem .ax-burger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 7px;
	width: 32px;
	height: 32px;
	padding: 0;
	background: none;
	border: 0;
	cursor: pointer;
}

.jurisystem .ax-burger__bar {
	display: block;
	width: 18px;
	height: 2px;
	margin: 0 auto;
	background-color: var(--ax-neutral-900);
	border-radius: 1px;
	transition: transform var(--ax-transition), opacity var(--ax-transition);
}

.jurisystem .ax-burger.is-open .ax-burger__bar:first-child { transform: translateY(4.5px) rotate(45deg); }
.jurisystem .ax-burger.is-open .ax-burger__bar:last-child  { transform: translateY(-4.5px) rotate(-45deg); }

.jurisystem .ax-header__backlink {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	color: var(--ax-neutral-900);
	text-decoration: none;
	font-size: 20px;
}

.jurisystem .ax-header__actions {
	flex: 1 1 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: var(--ax-sp-3);
}

.jurisystem .ax-header__actions .ax-btn {
	min-height: 38px;
	padding: 3px 10px;
	font-size: var(--ax-body-xs);
	font-weight: 500;
	border-radius: var(--ax-radius-sm);
	background-color: var(--ax-primary-900);
	color: var(--ax-color-bg);
}

.jurisystem .ax-header__actions .ax-btn.ax-btn--primary {
	background-color: var(--ax-secondary-900);
	color: var(--ax-neutral-0);
}

.jurisystem .ax-header__account--in .ax-icon { position: relative; }
.jurisystem .ax-header__account--in .ax-icon::after {
	content: "";
	position: absolute;
	right: -3px;
	bottom: -1px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background-color: var(--ax-primary-900);
	border: 2px solid var(--ax-neutral-0);
	box-sizing: content-box;
}

.jurisystem .ax-header__iconlink {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: var(--ax-body-xs);
	font-weight: 500;
	line-height: 1.2;
	color: var(--ax-neutral-900);
	text-decoration: none;
	white-space: nowrap;
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
	transition: color var(--ax-transition);
}
.jurisystem .ax-header__iconlink:hover { color: var(--ax-primary-900); }
.jurisystem .ax-header__iconlink .ax-icon { font-size: 16px; }

.jurisystem .ax-header__panel {
	display: none;
	position: fixed;
	inset: 0;
	flex-direction: column;
	background-color: var(--ax-neutral-0);
	z-index: 100050;
}

.jurisystem .ax-header__panel.is-open { display: flex; }

.jurisystem .ax-header__panel-bar {
	flex: 0 0 auto;
	width: 100%;
	
	justify-content: flex-start;
	border-bottom: 1px solid var(--ax-color-border);
}
.jurisystem .ax-header__panel-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.jurisystem .ax-header__panel-close .ax-icon { font-size: 24px; }
.jurisystem .ax-header__panel-bar .ax-header__account.ax-header__panel-baraccount { margin-left: auto; }

.jurisystem .ax-header__panel-inner {
	flex: 0 0 auto;
	width: 100%;
	margin: 0;
	padding: var(--ax-sp-4) var(--ax-sp-5) 0;
}

.jurisystem .ax-header__panel-scroll {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	padding: var(--ax-sp-2) var(--ax-sp-5) var(--ax-sp-5);
	scrollbar-width: thin;
	scrollbar-color: var(--ax-neutral-200) transparent;
}

.jurisystem .ax-header__panel-link {
	display: block;
	width: 100%;
	padding: 12px 0;
	font-family: var(--ax-font);
	font-size: var(--ax-body);
	font-weight: 400;
	line-height: 1.2;
	text-align: left;
	color: var(--ax-neutral-900);
	text-decoration: none;
	background: none;
	border: 0;
	cursor: pointer;
	transition: color var(--ax-transition);
}
.jurisystem .ax-header__panel-link:hover { color: var(--ax-primary-900); }

.jurisystem .ax-header__panel-form {
	display: flex;
	align-items: center;
	gap: var(--ax-sp-3);
	padding: var(--ax-sp-4) var(--ax-sp-5);
	border-top: 1px solid var(--ax-color-border);
}
.jurisystem .ax-header__panel-form .ax-icon {
	font-size: 22px;
	color: var(--ax-neutral-500);
}
.jurisystem .ax-header__panel-form-input {
	flex: 1;
	border: 0;
	background: none;
	font-family: var(--ax-font);
	font-size: var(--ax-body);
	color: var(--ax-neutral-900);
}

.jurisystem .ax-header__panel-tops {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: var(--ax-sp-3);
	margin-bottom: var(--ax-sp-3);
}
.jurisystem .ax-header__panel-tile {
	display: flex;
	align-items: center;
	gap: var(--ax-sp-3);
	padding: var(--ax-sp-3) var(--ax-sp-4);
	background-color: var(--ax-neutral-0);
	border: 1px solid var(--ax-neutral-100);
	border-radius: var(--ax-radius-sm);
	text-decoration: none;
	transition: background-color var(--ax-transition), border-color var(--ax-transition);
}
.jurisystem .ax-header__panel-tile:hover {
	background-color: var(--ax-primary-40);
	border-color: var(--ax-primary-200);
}
.jurisystem .ax-header__panel-tile-ico {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: var(--ax-primary-100);
	color: var(--ax-primary-900);
	font-size: 22px;
}
.jurisystem .ax-header__panel-tile-txt {
	display: flex;
	flex-direction: column;
	gap: var(--ax-sp-0);
	min-width: 0;
}
.jurisystem .ax-header__panel-tile-name {
	font-size: var(--ax-body);
	font-weight: 600;
	color: var(--ax-primary-900);
}
.jurisystem .ax-header__panel-tile-desc {
	font-size: var(--ax-body-xs);
	color: var(--ax-color-text-soft);
}

.jurisystem .ax-header__panel-doms {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--ax-sp-1) var(--ax-sp-5);
}

.jurisystem .ax-header__panel-dom {
	display: flex;
	align-items: center;
	gap: var(--ax-sp-3);
	padding: var(--ax-sp-2) var(--ax-sp-3);
	border-radius: var(--ax-radius-sm);
	transition: background-color var(--ax-transition);
}
.jurisystem .ax-header__panel-dom:hover { background-color: var(--ax-primary-40); }
.jurisystem .ax-header__panel-dom > .ax-icon {
	flex: 0 0 auto;
	font-size: 28px;
	color: var(--ax-primary-900);
}
.jurisystem .ax-header__panel-dom-txt {
	display: flex;
	flex-direction: column;
	gap: var(--ax-sp-0);
	min-width: 0;
}
.jurisystem .ax-header__panel-dom-name {
	font-weight: 600;
	color: var(--ax-primary-900);
}
.jurisystem .ax-header__panel-dom-desc {
	font-size: var(--ax-body-xs);
	color: var(--ax-color-text-soft);
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.jurisystem .ax-header__panel .ax-btn {
	display: none;
	width: 100%;
	margin-top: 15px;
	min-height: 44px;
	padding: 10px 15px;
	font-size: 15px;
}

.jurisystem .ax-header__panel .ax-btn.ax-btn--tertiary {
	background-color: var(--ax-primary-900);
	color: var(--ax-neutral-0);
}

.jurisystem .ax-header__search {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background-color: var(--ax-neutral-0);
	box-shadow: 0 12px 24px rgba(20, 20, 20, 0.08);
	z-index: 110;
}
.jurisystem .ax-header__search.is-open { display: block; }

.jurisystem .ax-header__search-inner {
	display: flex;
	gap: 0px;
	margin: auto;
	padding: 0px;
	padding-right: 20px;
	align-items: center;
	border-top: 1px solid var(--ax-color-border);
}

.jurisystem .ax-header__search-input,
.jurisystem .ax-header__search-input:focus {
	flex: 1 1 auto;
	min-width: 0;
	padding: 30px;
	background-color: var(--ax-neutral-0);
	border: 0px;
	font-family: var(--ax-font);
	font-size: var(--ax-body);
	color: var(--ax-neutral-900);
}

.jurisystem .ax-header__search-inner .ax-btn { min-height: auto; }

.jurisystem .ax-header__overlay {
	display: none;
	
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	height: 100vh;
	background-color: rgba(20, 20, 20, 0.25);
	z-index: -1;
}
.jurisystem .ax-header__overlay.is-open { display: block; }

body.jurisystem.ax-nav-open .ax-header__actions { display: none; }

body.jurisystem._body_Mesdevis .ax-header__actions .ax-btn--primary,
body.jurisystem._body_Mondashboard .ax-header__actions .ax-btn--primary { display: none; }

body.jurisystem.ax-nav-open { overflow: hidden; }

.jurisystem .ax-footer {
	content-visibility: auto;
	contain-intrinsic-size: auto 1732px;
	background-color: var(--ax-neutral-0);
	padding: var(--ax-sp-8) 0 var(--ax-sp-6) 0;
	font-size: var(--ax-body);
	color: var(--ax-neutral-900);
}

.jurisystem .ax-footer__top {
	display: flex;
	align-items: flex-start;
	gap: var(--ax-sp-9);
	padding-bottom: var(--ax-sp-7);
	margin-bottom: var(--ax-sp-7);
	border-bottom: 1px solid var(--ax-neutral-100);
}

.jurisystem .ax-footer__logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	flex: 0 0 auto;
	text-decoration: none;
}

.jurisystem .ax-footer__about {
	margin: 0;
	line-height: 1.5;
	display: flex;
	flex-direction: column;
	gap: var(--ax-sp-2);
}
.jurisystem .ax-footer__about p { margin: 0; }

.jurisystem .ax-footer__about .ax-link { font-weight: bold; }

.jurisystem .ax-footer__links {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: var(--ax-sp-6);
	flex-wrap: wrap;
}

.jurisystem .ax-footer__title {
	font-weight: 600;
	margin-bottom: var(--ax-sp-4);
}

.jurisystem .ax-footer__col-links {
	display: flex;
	flex-direction: column;
	gap: var(--ax-sp-3);
}

.jurisystem .ax-footer__col-links--two {
	display: block;
	columns: 2;
	column-gap: var(--ax-sp-6);
}
.jurisystem .ax-footer__col-links--two .ax-footer__link {
	display: block;
	break-inside: avoid;
	margin-bottom: var(--ax-sp-3);
}

.jurisystem .ax-footer__link {
	color: var(--ax-neutral-900);
	text-decoration: none;
	transition: color var(--ax-transition);
}
.jurisystem .ax-footer__link:hover { color: var(--ax-primary-900); text-decoration: underline; }

.jurisystem .ax-footer__link--single {
	display: block;
	margin-bottom: var(--ax-sp-3);
}

.jurisystem .ax-footer__socials {
	display: flex;
	align-items: center;
	gap: var(--ax-sp-3);
}
.jurisystem .ax-footer__socials a {
	color: var(--ax-neutral-900);
	text-decoration: none;
	transition: color var(--ax-transition);
}
.jurisystem .ax-footer__socials a:hover { color: var(--ax-primary-900); }

.jurisystem .ax-footer__socials svg {
	display: block;
	width: 22px;
	height: 22px;
}

.jurisystem .ax-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--ax-sp-4);
	flex-wrap: wrap;
	margin-top: var(--ax-sp-7);
	font-size: var(--ax-body-xs);
}

.jurisystem .ax-footer__legal {
	display: flex;
	align-items: center;
	gap: var(--ax-sp-6);
	flex-wrap: wrap;
}

.jurisystem .ax-footer__legal-link {
	color: var(--ax-neutral-900);
	text-decoration: none;
}
.jurisystem .ax-footer__legal-link:hover { text-decoration: underline; }

.jurisystem .ax-footer__tel-hidden { display: none; }

body._cc_op:has(.ax-cc:not(.isClosed)) { overflow: hidden; }

.jurisystem #bodyAll { display: block; }

.jurisystem._cc_op #bodyAll,
.jurisystem._PPopup_IsOpen #bodyAll,
.jurisystem.wOpenedBox #bodyAll { filter: blur(5px); }
.jurisystem .ax-cc {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100015;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--ax-sp-4);
	
	background-size: auto auto;
	background-image: var(--ax-veil);
}
.jurisystem .ax-cc.isClosed { display: none; }
.jurisystem .ax-cc__card {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 680px;
	max-height: min(86vh, 760px);
	background-color: var(--ax-neutral-0);
	border-radius: var(--ax-radius-md);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
	overflow: hidden;
}
.jurisystem .ax-cc__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--ax-sp-2);
	padding: var(--ax-sp-4) var(--ax-sp-5);
	border-bottom: 1px solid var(--ax-neutral-100);
	font-size: var(--ax-text-7);
	font-weight: 600;
	color: var(--ax-neutral-900);
}
.jurisystem .ax-cc__close {
	border: 0;
	background: none;
	padding: 0;
	cursor: pointer;
	color: var(--ax-neutral-600);
	font-size: var(--ax-text-6);
	line-height: 1;
}
.jurisystem .ax-cc__close:hover { color: var(--ax-neutral-900); }
.jurisystem .ax-cc__body {
	padding: var(--ax-sp-4) var(--ax-sp-5);
	overflow-y: auto;
	font-size: var(--ax-body-xs);
	color: var(--ax-neutral-900);
}
.jurisystem .ax-cc__body p {
	margin: 0 0 var(--ax-sp-2) 0;
	text-align: left;
}
.jurisystem .ax-cc__strong { font-weight: 600; }

.jurisystem .ax-cc__list {
	list-style: square;
	margin: 0 0 var(--ax-sp-3) 0;
	padding: 0 0 0 var(--ax-sp-4);
}
.jurisystem .ax-cc__list li {
	display: list-item;
	margin-bottom: var(--ax-sp-1);
}
.jurisystem .ax-cc__list li:last-child { margin-bottom: 0; }
.jurisystem .ax-cc__list li::marker { color: var(--ax-primary-900); }
.jurisystem .ax-cc__more { color: var(--ax-neutral-900); }
.jurisystem .ax-cc__lcb {
	color: var(--ax-primary-900);
	text-decoration: underline;
	cursor: pointer;
}
.jurisystem .ax-cc__lcb:hover { color: var(--ax-primary-900); }
.jurisystem .ax-cc__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--ax-sp-2);
	padding: var(--ax-sp-4) var(--ax-sp-5);
	border-top: 1px solid var(--ax-neutral-100);
}
.jurisystem .ax-cc__linkbtn {
	border: 0;
	background: none;
	padding: 0;
	margin-left: auto;
	cursor: pointer;
	font-family: inherit;
	font-size: var(--ax-body-xs);
	color: var(--ax-neutral-600);
	text-decoration: underline;
}
.jurisystem .ax-cc__linkbtn:hover { color: var(--ax-primary-900); }
.jurisystem .ax-cc__section {
	padding: var(--ax-sp-3) 0;
	border-top: 1px solid var(--ax-neutral-100);
}
.jurisystem .ax-cc__section:first-child {
	border-top: 0;
	padding-top: 0;
}
.jurisystem .ax-cc__section-title {
	font-size: var(--ax-body);
	font-weight: 600;
	color: var(--ax-neutral-900);
	margin-bottom: var(--ax-sp-1);
}
.jurisystem .ax-cc__section-note {
	font-weight: 400;
	color: var(--ax-neutral-600);
	text-transform: none;
}
.jurisystem .ax-cc__choices {
	display: flex;
	gap: var(--ax-sp-4);
	margin: var(--ax-sp-2) 0;
}
.jurisystem .ax-cc__choice {
	display: flex;
	align-items: center;
	gap: var(--ax-sp-2);
	cursor: pointer;
	user-select: none;
}

.jurisystem .ax-cc__choice input {
	appearance: none;
	-webkit-appearance: none;
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	margin: 0;
	padding: 0;
	background-color: var(--ax-neutral-0);
	border: 1.5px solid var(--ax-neutral-300);
	border-radius: 50%;
	cursor: pointer;
	transition: border-color var(--ax-transition), background-color var(--ax-transition);
}
.jurisystem .ax-cc__choice input:hover:not(:disabled) { border-color: var(--ax-primary-300); }
.jurisystem .ax-cc__choice input:checked {
	border-color: var(--ax-primary-900);
	background-color: var(--ax-primary-900);
	box-shadow: inset 0 0 0 3px var(--ax-neutral-0);
}

.jurisystem .ax-cc__choice input:focus-visible {
	outline: 2px solid var(--ax-primary-300);
	outline-offset: 2px;
}

.jurisystem .ax-cc__choice input:disabled {
	cursor: default;
	border-color: var(--ax-neutral-200);
	background-color: var(--ax-neutral-100);
}
.jurisystem .ax-cc__choice input:disabled:checked {
	border-color: var(--ax-neutral-400);
	background-color: var(--ax-neutral-400);
}
.jurisystem .ax-cc__dets {
	display: flex;
	flex-direction: column;
	gap: var(--ax-sp-2);
	margin-top: var(--ax-sp-2);
}
.jurisystem .ax-cc__dets-title { font-weight: 600; }

.jurisystem .ax-cc__det {
	padding: var(--ax-sp-3) var(--ax-sp-4);
	background-color: var(--ax-primary-40);
	border: 0;
	border-left: 3px solid var(--ax-primary-200);
	border-radius: 0 var(--ax-radius-sm) var(--ax-radius-sm) 0;
}
.jurisystem .ax-cc__det-head {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: var(--ax-sp-2);
	font-weight: 600;
	color: var(--ax-primary-900);
	margin-bottom: var(--ax-sp-2);
}

.jurisystem .ax-cc__det-head a {
	margin-left: auto;
	font-size: var(--ax-body-xs);
	font-weight: 400;
	white-space: nowrap;
}
.jurisystem .ax-cc__det-line {
	margin: 0 0 var(--ax-sp-2) 0;
	line-height: 1.5;
}
.jurisystem .ax-cc__det-line:last-child { margin-bottom: 0; }
.jurisystem .ax-cc__det-line b {
	font-weight: 600;
	color: var(--ax-color-text-soft);
}

.jurisystem nav.ax-breadcrumb-wrap {
	background: linear-gradient(var(--ax-primary-100), var(--ax-primary-100));
	align-items: center;
	text-align: center;
}

.jurisystem nav.ax-breadcrumb-wrap--onwhite { background: linear-gradient(var(--ax-neutral-0), var(--ax-neutral-0)); }
.jurisystem .ax-breadcrumb-wrap--onwhite .ax-breadcrumb { padding-bottom: 0; }

.jurisystem nav.ax-breadcrumb-wrap--onphoto {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 3;
	
	background: none;
}
.jurisystem .ax-breadcrumb-wrap--onphoto .ax-breadcrumb__item a { color: var(--ax-neutral-0); }
.jurisystem .ax-breadcrumb-wrap--onphoto .ax-breadcrumb__item:last-child a { color: var(--ax-primary-500); }

.jurisystem .ax-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--ax-sp-2);
	padding: var(--ax-sp-3) 0;
	font-size: var(--ax-body-xs);
	color: var(--ax-neutral-500);
	list-style: none;
	margin: auto;
	max-width: calc(var(--ax-container-max) + 2 * var(--ax-sp-5));
	padding-left: var(--ax-sp-5);
	padding-right: var(--ax-sp-5);
}

.jurisystem .ax-breadcrumb__item a {
	color: var(--ax-neutral-500);
	text-decoration: none;
}

.jurisystem .ax-breadcrumb__home-ico {
	display: none;
	font-size: var(--ax-body);
	line-height: 1;
	vertical-align: middle;
}
.jurisystem .ax-breadcrumb__item a:hover { color: var(--ax-primary-900); }
.jurisystem .ax-breadcrumb__item:last-child a {
	color: var(--ax-primary-900);
	font-weight: 500;
}
.jurisystem .ax-breadcrumb__item + .ax-breadcrumb__item::before {
	content: "\203A";
	margin-right: var(--ax-sp-2);
	color: var(--ax-neutral-300);
}

.jurisystem .ax-logo {
	display: block;
	height: auto;
	max-width: 100%;
}

.jurisystem .ax-logo-link {
	display: inline-block;
	line-height: 0;
}

body.jurisystem._body_popup .ax-header,
body.jurisystem._body_popup .ax-footer {
	display: none;
}

body.jurisystem._body_popup .ax-section {
	padding-top: 0;
	padding-bottom: 0;
}

@media (max-width: 768px) {
	.jurisystem .ax-footer__top {
		flex-direction: column;
		gap: var(--ax-sp-mobile-gap);
		padding-bottom: var(--ax-sp-mobile-gap);
		margin-bottom: var(--ax-sp-mobile-gap);
	}

	.jurisystem .ax-footer__title { margin-bottom: var(--ax-sp-mobile-gap); }

	.jurisystem .ax-footer__col-links { gap: var(--ax-sp-mobile-gap); }

	.jurisystem .ax-footer__links {
		flex-direction: column;
		gap: calc(var(--ax-sp-mobile-gap) * 2);
	}

	.jurisystem .ax-footer__bottom {
		flex-direction: column;
		gap: var(--ax-sp-mobile-gap);
		margin-top: calc(var(--ax-sp-mobile-gap) * 2);
	}
}

@media print {
	.jurisystem .ax-footer { content-visibility: visible; contain-intrinsic-size: none; }
}
