/* CSS Document */
@import url('//fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;500;700&display=swap');
/* Noto JP
font-family: 'Noto Serif JP', serif;
font-weight: 500, 600, 700;

Zen Kaku Gothic New
font-family: zen-kaku-gothic-new, sans-serif;
font-weight: 700, 500;
font-style: normal;

IBM Plex Sans JP
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 700, 500, 400;
  font-style: normal;
*/

[src="[url]"]{
	display: block;
	background: var(--dummy);
}
[src*="src"]{
	display: block;
	/* background: url('https://as1.ftcdn.net/v2/jpg/04/84/90/42/1000_F_484904229_b8Hf3f2oWxe0ihyAR5iH0S20FPrxkmMc.jpg') no-repeat center / cover; */
	background: #f2f2f2;
}
[lsc-lt]{
	display: contents;
}

:root{
	--color: #292929;
	--color-rgb: 41, 41, 41;
	--color-theme: #28a0a0;
	--color-theme-rgb: 40,160,160;
	--color-theme-bg: #f0f0f0;
	--color-gr: linear-gradient(40deg,rgba(224, 236, 249, 1) 0%, rgba(212, 236, 236, 1) 100%);
	--color-variable: #005a8c;
	--color-variable-rgb: 0,90,140;
	--bg-texture: url("/common/images/bgTexture.webp");
	--color-border: #7f7f7f;
	--font: "IBM Plex Sans JP", sans-serif;
	--wrap-space: 24px;
	--wrap-fit: calc(100% - (var(--wrap-space) * 2));
	--wrap-max: 1140px;
	--wrap: min(var(--wrap-fit), var(--wrap-max));
	--dummy: #f2f2f2 url('/common/images/logoType.svg') no-repeat center / auto 30%;
	--area1-color: #70a731;
	--area2-color: #82609f;
	--area3-color: #349970;
	--area4-color: #585da1;
	--area5-color: #d0566c;
	--area6-color: #e69b18;
}

html{
	min-width: 375px;
	scroll-behavior: smooth;
	scroll-padding-top: 56px;
}

body{
	color: var(--color);
	font: 500 16px var(--font);
	line-height: 1.65;
	overflow-wrap: anywhere;
}
::selection{
	background: var(--color-theme);
	color: #fff;
}
::-moz-selection{
	background: var(--color-theme);
	color: #fff;
}
_::content, _:future, body:not(*:root) {
	/* Chromeのハック */
	/*フォント細いって言われたとき
	font-weight: 500;
	*/
}
_::-webkit-full-page-media, _:future, :root body{
	/* safariのハック */
}
@-moz-document url-prefix(){
	/* Firefoxのハック */
	.xxx{

	}
}

main{
	min-height: 50vh;
	& a{
		color: var(--color-theme);
		text-decoration: underline;
	}
}

:where(a, button):focus-visible{
	outline: var(--color-theme) auto 2px;
	outline-offset: 2px;
}

:where(input, textarea, select){
	background-color: transparent;
	accent-color: var(--color-theme);
	caret-color: var(--color-theme);
	&:focus {
		outline: var(--color-theme) auto 2px;
	}
}

:is(input[type="checkbox"], input[type="radio"]){
	&:checked{
		background-color: #fff;
		border: 1px solid var(--color-theme);
	}
	&:focus {
		outline: none;
	}
}

input[type="checkbox"] {
	border-radius: 0;
	background-size: 14px;
	&:checked{
		background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><polyline points="2.5 7.76 5 10.25 11.5 3.75" style="fill: none; stroke: white; stroke-miterlimit: 10; stroke-width: 1.5px;"/></svg>');
	}
}

input[type="radio"] {
	&:checked{
		position: relative;
		&:before{
			content: "";
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translateY(-50%) translateX(-50%);
			width: 10px;
			height: 10px;
			border: 1px solid var(--color-theme);
			border-radius: 100%;
		}
	}
}

button{
	display: grid;
	align-items: center;
	min-height: 48px;
	padding: 8px 16px;
	background: black;
	color: white;
	text-align: center;
}

a{
	color: inherit;
	.done &{
		transition-property: color, text-decoration, background, background-color, background-size, border, border-color, box-shadow, filter, opacity;
		transition-duration: 0.2s;
		transition-timing-function: ease-out;
	}
}

wbr{
	.translated-ltr &:not(:lang(ja)){
		display: none;
	}
}

#wrapper {
	display: grid;
	grid-template-rows: auto 1fr;
	min-height: 100vh;
	& > * {
		grid-column: 1;
	}
	#header {
		position: sticky;
		top: 0;
		z-index: 110;
	}
	#nav {
		z-index: 120;
	}
	#floatingNav {
		position: sticky;
		bottom: 0;
		z-index: 110;
		order: 12;
	}
	#footer {
		order: 11;
	}
	#pageTop {
		order: 10;
		z-index: 10;
	}
}
@media (min-width: 1200px) {
	#wrapper #header {
		top: -34px;
	}
}

#header {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	grid-gap: 8px;
	padding: 12px;
	background: #fff;
	transition: all 0.2s ease-out;
	& #siteName {
		margin-right: 8px;
	}
	& #navButton {
		order: 1;
		grid-column: 3;
	}
	& #hNav {
		justify-self: end;
	}
/*	& #hNavFavorite {
		justify-self: end;
	}*/
	@media (min-width: 992px) {
		padding: 16px 24px;
	}
	@media (min-width: 1200px) {
		grid-row-gap: 4px;
		& #siteName {
			grid-row: 1 / 3;
			align-self: start;
			position: sticky;
			top: 0;
		}
		& #navButton {
			grid-row: 1 / 3;
		}
		& #hNav {
			grid-column: 2;
			margin-right: 8px;
		}
		& #hNavAdd {
			grid-column: 2;
			grid-row: 1;
		}
	}
}
body:not(.scrollTop) #header {
	box-shadow: 0 0 3px rgba(0, 0, 0, 20%);
	@media (min-width: 1200px) {
		padding: 8px 24px;
		& #siteName {
			grid-row: 2;
			& a {
				height: 72px;
			}
		}
		& #navButton {
			grid-row: 2;
		}
	}
}

#siteName {}
	#siteName a {
		display: block;
		aspect-ratio: 300 / 92;
		height: 56px;
		background: url('/common/images/logoType.svg') center no-repeat;
		background-size: contain;
		font-size: 0;
		transition: none;
		}
	@media (min-width: 576px) {
		#siteName a {
			height: 56px;
			}
		}
	@media (min-width: 768px) and (max-width: 1339.98px) {
		#siteName a {
			height: 72px;
			}
		}
	@media (min-width: 1340px) {
		#siteName a {
			height: 90px;
			}
		}

#hNavGlobal,
#navGlobal,
#floatingNav{
	& a{
		&:before{
			-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><path d="M3,0h7v7c0,1.66-1.34,3-3,3H0V3C0,1.34,1.34,0,3,0Z"/></svg>') center no-repeat;
			-webkit-mask-size: 10px;
		}
		&[href="/feature/index.html"]{
			&:before{
				-webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M17.45,3.94c-.45-.37-1.03-.52-1.6-.4l-2.62.64c-1.21.22-2.09,1.27-2.09,2.5v9.41l-.64.12-.64-.12V6.68c0-1.22-.86-2.26-2.05-2.49l-2.69-.65c-1.04-.19-2.03.5-2.22,1.54-.02.11-.03.23-.03.34v10.7l7.63,1.39,7.63-1.39V5.41c0-.57-.25-1.1-.69-1.46Z"/></svg>');
				-webkit-mask-size: contain;
			}
		}
		&[href="/food-index"]{
			&:before{
				-webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M4.67,11.67h5.25v5.83h-5.25v-5.83ZM11.08,17.5h5.25v-5.83h-5.25v5.83ZM17.5,9.33v1.17h-6.42v-1.78c-.19.02-.38.03-.58.03s-.39-.01-.58-.03v1.78H3.5v-1.17c0-.97.78-1.75,1.75-1.75h1.83c-.82-.75-1.27-1.81-1.24-2.92h1.17c0,1.68,1.15,2.51,2.42,2.8-.38-.68-.61-1.44-.67-2.22,0-.97.78-1.75,1.75-1.75s1.75.78,1.75,1.75c-.06.78-.29,1.54-.67,2.22,1.27-.29,2.42-1.12,2.42-2.8h1.17c.03,1.11-.43,2.17-1.24,2.92h1.83c.97,0,1.75.78,1.75,1.75ZM9.92,5.25c.07.62.27,1.22.58,1.76.31-.54.51-1.14.58-1.76,0-.32-.26-.58-.58-.58s-.58.26-.58.58Z"/></svg>');
				-webkit-mask-size: contain;
			}
		}
		&[href="/spot/index.html"]{
			&:before{
				-webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M16.12,8.12c0-3.11-2.52-5.62-5.62-5.62s-5.62,2.52-5.62,5.62,5.62,10.38,5.62,10.38c0,0,5.62-7.27,5.62-10.38ZM7.97,7.79c0-1.4,1.13-2.53,2.53-2.53s2.53,1.13,2.53,2.53-1.13,2.53-2.53,2.53-2.53-1.13-2.53-2.53Z"/></svg>');
				-webkit-mask-size: contain;
			}
		}
		&[href="/event/index.html"]{
			&:before{
				-webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M14.56,4.25h-.31v-.31c0-.52-.42-.94-.94-.94s-.94.42-.94.94v.31h-3.75v-.31c0-.52-.42-.94-.94-.94s-.94.42-.94.94v.31h-.31c-1.9,0-3.44,1.54-3.44,3.44v6.88c0,1.9,1.54,3.44,3.44,3.44h8.12c1.89,0,3.44-1.54,3.44-3.44v-6.88c0-1.9-1.54-3.44-3.44-3.44ZM14.56,16.12H6.44c-.86,0-1.56-.7-1.56-1.56v-5.94h11.25v5.94c0,.86-.7,1.56-1.56,1.56ZM9.25,10.81v1.25c0,.52-.42.94-.94.94h-1.25c-.52,0-.94-.42-.94-.94v-1.25c0-.52.42-.94.94-.94h1.25c.52,0,.94.42.94.94Z"/></svg>');
				-webkit-mask-size: contain;
			}
		}
		&[href="/course/index.html"]{
			&:before{
				-webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M17.47,3.5H5.28c-.96,0-1.75.79-1.75,1.75v12.25h1.17v-5.25h12.78l-3.3-4.38,3.3-4.38Z"/></svg>');
				-webkit-mask-size: contain;
			}
		}
		&[href*="/stay/index.html"]{
			&:before{
				-webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M8.62,8.94c0,.86-.7,1.56-1.56,1.56s-1.56-.7-1.56-1.56.7-1.56,1.56-1.56,1.56.7,1.56,1.56ZM18,10.5v-1.25c0-1.38-1.12-2.5-2.5-2.5h-3.12c-1.38,0-2.5,1.12-2.5,2.5v1.25h8.12ZM4.25,11.75v-6.88c0-.35-.28-.62-.62-.62s-.62.28-.62.62v11.25c0,.35.28.62.62.62s.62-.28.62-.62v-1.25h12.5v1.25c0,.35.28.62.62.62s.62-.28.62-.62v-4.38H4.25Z"/></svg>');
				-webkit-mask-size: contain;
			}
		}
		&[href="/access/index.html"]{
			&:before{
				-webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M14.58,17.5h-1.17c-.32,0-.58-.26-.58-.58s.26-.58.58-.58h1.17c.32,0,.58.26.58.58s-.26.58-.58.58ZM11.08,17.5h-1.17c-.32,0-.58-.26-.58-.58s.26-.58.58-.58h1.17c.32,0,.58.26.58.58s-.26.58-.58.58ZM16.59,16.56c-.11,0-.22-.03-.32-.09-.27-.17-.35-.54-.17-.81.15-.23.23-.51.23-.79,0-.32.26-.58.58-.58h0c.32,0,.58.26.58.58,0,.51-.14,1-.42,1.42-.11.17-.3.27-.49.27h0ZM15.72,13.6c-.08,0-.16-.02-.24-.05-.19-.09-.39-.13-.61-.13h-.29c-.32,0-.58-.26-.58-.58s.26-.58.58-.58h.29c.38,0,.75.08,1.09.24.29.13.42.48.29.77-.1.21-.31.34-.53.34h0ZM12.25,13.42c-.52,0-1.03-.18-1.44-.5-.25-.2-.3-.57-.1-.82.2-.25.57-.3.82-.1.21.16.46.25.72.25.32,0,.58.26.58.58s-.26.58-.58.58h0ZM10.66,10.94c-.08,0-.16-.02-.24-.05-.29-.13-.42-.48-.29-.77.12-.27.3-.51.51-.72.23-.22.6-.21.82.02.22.23.21.6-.02.82-.11.1-.19.22-.26.36-.1.21-.31.34-.53.34h0ZM16.65,4.35h0c-.55-.55-1.28-.85-2.06-.85s-1.51.3-2.06.85c-1.14,1.14-1.14,2.99,0,4.13l1.05,1.03c.28.27.64.41,1.01.41s.73-.14,1.01-.41l1.06-1.03c1.14-1.14,1.14-2.99,0-4.13ZM14.58,7.29c-.48,0-.88-.39-.88-.88s.39-.88.88-.88.88.39.88.88-.39.88-.88.88ZM8.48,11.94c-.55-.55-1.28-.85-2.06-.85s-1.51.3-2.06.85c-1.14,1.14-1.14,2.99,0,4.13l1.05,1.03c.28.27.64.41,1.01.41s.73-.14,1.01-.41l1.05-1.03c1.14-1.14,1.14-2.99,0-4.13ZM6.42,14.87c-.48,0-.88-.39-.88-.88s.39-.88.88-.88.88.39.88.88-.39.88-.88.88Z"/></svg>');
				-webkit-mask-size: contain;
			}
		}
	}
}

#hNav{
	display: none;
	@media (min-width: 1200px) {
		display: grid;
		grid-gap: 8px;
		font-weight: 700;
	}
	&:has(#hNavPickup):after{
		content: "";
		grid-row: 2;
		border-bottom: 1px solid var(--color-theme);
	}
	& dl{
		justify-content: end;
		display: grid;
		grid-gap: 16px;
		@media (min-width: 992px) {
			&:nth-child(1){
				justify-content: space-between;
			}
		}
		@media (min-width: 1200px) {
			grid-gap: 32px;
			&:has(dd:nth-of-type(8)){
				& a{
					font-size: min(0.97vw, 15px);
				}
			}
		}
	}
	& dt{
		display: none;
	}
	& dd{
		display: contents;
	}
	& a{
		grid-row: 1;
		display: grid;
		grid-template-columns: 20px 1fr;
		grid-gap: 6px;
		font-size: 14px;
		color: inherit;
		letter-spacing: 0.05em;
		&:before{
			content: "";
			aspect-ratio: 1;
			background: var(--color-theme);
			/* transform: translateY(0.15em); */
		}
		@media (min-width: 1200px) and (max-width: 1399.98px){
			font-size: 12px;
			&:before{
				 transform: translateY(-0.2em); 
			}
		}
	}
	& wbr{
		display: none;
	}
}

#hNavPickup {}
	#hNavPickup a:before {
		-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><circle cx="10.5" cy="10.5" r="5"/></svg>') center no-repeat;
		-webkit-mask-size: 16px;
	}

#hNavAdd{
	display: none;
	}
	.scrollTop #hNavAdd{
		visibility: visible;
		}
	@media (min-width: 1200px) {
		#hNavAdd{
			display: flex;
			align-content: center;
			justify-content: end;
			grid-gap: 4px;
			visibility: hidden;
			}
		}

#hNavMice{
	& a{
		display: grid;
		grid-template-columns: 1fr auto;
		align-items: center;
		justify-content: center;
		grid-gap: 16px;
		min-height: 28px;
		background: var(--color-theme);
		padding: 2px 8px 2px 16px;
		border-radius: 14px;
		color: #fff;
		font-size: 13px;
		text-align: center;
		cursor: pointer;
		&:after{
			content: "\25BC";
			font-size: 8px;
			transform: rotate(-90deg);
			}
		}
	}

#hNavFavorite,
#hNavLanguage{
	& a{
		display: grid;
		grid-template-columns: 18px 1fr 10px;
		align-items: center;
		justify-content: center;
		grid-gap: 6px;
		min-height: 28px;
		padding: 2px 8px 2px 16px;
		border-radius: 14px;
		font-size: 13px;
		text-align: center;
		color: var(--color-theme);
		cursor: pointer;
		&:after{
			content: "\25BC";
			font-size: 8px;
			transform: rotate(-90deg);
			}
		}
}

#hNavFavorite {}
	#hNavFavorite a:before {
		content: "";
		aspect-ratio: 1;
		background: currentColor;
		-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M10.5,2.17C5.9,2.17,2.17,5.9,2.17,10.5s3.73,8.33,8.33,8.33,8.33-3.73,8.33-8.33S15.1,2.17,10.5,2.17ZM10.61,14.09c-.31-.35-4.58-2.46-3.7-4.82.79-2.11,3.36-1.26,3.7-.11.24-1.08,2.89-2.04,3.7.11.88,2.32-3.4,4.54-3.7,4.82Z"/></svg>') center no-repeat;
		-webkit-mask-size: contain;
	}

#hNavLanguage {}
		#hNavLanguage a:before {
			content: "";
			aspect-ratio: 1;
			background: currentColor;
			-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M6.42,8.77s-.05.02-.05.04l-.54,2.29h1.17l-.52-2.29s-.03-.04-.05-.04h0Z"/><path d="M15.17,5.17h-4v10.67h4c1.84,0,3.33-1.5,3.33-3.33v-4c0-1.84-1.5-3.33-3.33-3.33ZM17.17,8.92c0,.23-.18.41-.41.41h-.21c-.08.85-.41,1.82-1.07,2.58.36.22.79.38,1.32.43.21.02.37.2.37.41h0c0,.26-.21.45-.45.42-.76-.07-1.37-.33-1.87-.68-.5.36-1.12.61-1.89.68-.24.02-.45-.17-.45-.41h0c0-.23.17-.4.38-.42.53-.05.96-.2,1.32-.42-.22-.25-.4-.53-.56-.82-.14-.27.06-.6.37-.6h0c.15,0,.29.08.36.22.12.23.28.46.46.67.55-.61.79-1.41.87-2.05h-2.79c-.23,0-.41-.18-.41-.41h0c0-.24.18-.42.41-.42h1.5v-.26c0-.23.18-.41.41-.41h.01c.23,0,.41.18.41.41v.26h1.5c.23,0,.41.18.41.41h0s0,.01,0,.01Z"/><path d="M9.83,5.17h-4c-1.84,0-3.33,1.49-3.33,3.33v4c0,1.84,1.49,3.33,3.33,3.33h4V5.17ZM7.84,13.17h0c-.22,0-.41-.15-.45-.36l-.18-.77h-1.61l-.18.77c-.05.21-.24.36-.45.36-.3,0-.52-.28-.45-.57l.94-4c.13-.58.76-.94,1.37-.68.29.12.49.4.56.71l.91,3.97c.07.29-.15.57-.45.57h0Z"/></svg>') center no-repeat;
			-webkit-mask-size: contain;
			}

#hNavSearch{
	& dl{
		position: relative;
		}
	& dt{
		display: grid;
		grid-template-columns: 24px 1fr;
		align-items: center;
		justify-content: center;
		grid-gap: 8px;
		min-height: 28px;
		font-size: 15px;
		letter-spacing: 0.05em;
		text-align: center;
		cursor: pointer;
		&:before{
			content: "";
			aspect-ratio: 1;
			background: currentColor;
			-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.41,0C10.66,0,6.82,3.85,6.82,8.59c0,2.19.82,4.18,2.17,5.7,0,0,0,0-.01,0l-7.93,7.93c-.3.3-.3.8,0,1.1.15.15.35.23.55.23s.4-.08.55-.23l7.93-7.93s.02-.04.03-.05c1.46,1.15,3.3,1.84,5.3,1.84,4.74,0,8.59-3.85,8.59-8.59S20.15,0,15.41,0ZM15.41,15.62c-3.88,0-7.03-3.15-7.03-7.03S11.53,1.56,15.41,1.56s7.03,3.15,7.03,7.03-3.15,7.03-7.03,7.03Z"/></svg>') center no-repeat;
			-webkit-mask-size: contain;
			}
		&.open:before{
			-webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" style="fill: none; stroke: black; stroke-linecap: round; stroke-miterlimit: 10; stroke-width: 1.6px;"><line x1="2" y1="22" x2="22" y2="2"/><line x1="22" y1="22" x2="2" y2="2"/></svg>');
			}
		}
	& form{
		all: unset;
		display: grid;
		grid-template-columns: 1fr auto auto;
		align-items: center;
		padding: 8px 16px;
		overflow: hidden;
		}
	& input{
		all: unset;
		padding: 0 8px 0 0;
		border: none;
		}
	& button{
		all: unset;
		grid-column: 3;
		aspect-ratio: 1;
		width: 20px;
		background: var(--color-theme);
		font-size: 0;
		cursor: pointer;
		-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M19.44,18.21l-6.6-6.6s-.03-.02-.04-.03c.96-1.22,1.53-2.75,1.53-4.41,0-3.95-3.21-7.16-7.16-7.16S0,3.21,0,7.16s3.21,7.16,7.16,7.16c1.82,0,3.48-.69,4.75-1.81,0,0,0,0,0,.01l6.6,6.6c.25.25.67.25.92,0,.13-.13.19-.29.19-.46s-.06-.33-.19-.46ZM7.16,13.02c-3.23,0-5.86-2.63-5.86-5.86S3.93,1.3,7.16,1.3s5.86,2.63,5.86,5.86-2.63,5.86-5.86,5.86Z"/></svg>') center no-repeat;
		-webkit-mask-size: contain;
		}
	& dt+span{
		position: absolute;
		top: 100%;
		right: 0;
		display: grid;
		width: 400px;
		margin-top: 8px;
		background: #fff;
		border-radius: 24px;
		box-shadow: 0 0 3px rgba(0, 0, 0, 20%);
		}
	}

#navButton{
	all: unset;
	display: grid;
	grid-gap: 5px;
	justify-items: center;
	align-self: center;
	place-content: center;
	aspect-ratio: 1;
	padding-top: 4px;
	width: 48px;
	font-size: 7.5px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.12em;
	background: var(--color-theme);
	text-transform: uppercase;
	color: #fff;
	border-radius: 100%;
	box-sizing: border-box;
	overflow: hidden;
	pointer-events: all;
	cursor: pointer;
	& i {
		width: 24px;
		height: 2px;
		background: #fff;
		border-radius: 1px;
		transition: transform 0.75s;
		}
	@media (min-width: 768px) {
		width: 56px;
	}
	@media (min-width: 1400px) {
		width: 64px;
	}
}

#nav {
	position: fixed;
	top: 0;
	right: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-content: start;
	grid-gap: 24px 8px;
	width: min(100%, 376px);
	height: max(100%, 100vh);
	padding: 12px 20px 72px 20px;
	background: #fff;
	overflow-y: auto;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.2s ease-out;
	}
	#nav h2 {
		grid-column: 1 / 3;
		position: relative;
		top: 0;
		left: -8px;
		justify-self: start;
		display: block;
		aspect-ratio: 300 / 92;
		height: 56px;
		background: url('/common/images/logoType.svg') center no-repeat;
		background-size: contain;
		font-size: 0;
		transition: none;
		}
	:has(#navTourist) #nav h2 {
		background-image: url('/common/images/logoTypeFc.svg');
		}
	#nav > div:not(#navFavorite, #navLanguage) {
		grid-column: 1 / 3;
		}
	#nav ul {
		list-style: none;
		}
	#nav #navGlobal,
	#nav #navPickup {
		margin-bottom: 16px;
		}
	#nav #navFavorite {
		align-self: center;
		}
	#nav #navSns {
		padding-top: 12px;
		align-self: center;
		justify-self: center;
		}
	#nav #navClose {
		position: absolute;
		top: 16px;
		right: 16px;
		}
	.nav #nav {
		filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.2));
		pointer-events: all;
		opacity: 1;
		}
	@media (min-width: 576px) {
		#nav {
			opacity: 1;
			transform: translateX(100%);
			transition: transform 0.2s ease-out;
			}
		.nav #nav {
			opacity: 1;
			transform: translateX(0);
			}
		}

#navClose {
	all: unset;
	display: grid;
	align-content: center;
	justify-content: center;
	aspect-ratio: 1;
	width: 48px;
	line-height: 1;
	background: var(--color-theme);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border-radius: 100%;
	box-sizing: border-box;
	overflow: hidden;
	cursor: pointer;
	}
	#navClose i {
		grid-column: 1;
		grid-row: 1;
		height: 2px;
		width: 30px;
		background: #fff;
		border-radius: 1px;
		}
		#navClose i:nth-child(1) {
			transform: rotate(45deg);
			}
		#navClose i:nth-child(2) {
			transform: rotate(-45deg);
			}
	@media (min-width: 768px) {
		#navClose {
			width: 56px;
			}
		}

#navSearch {}
	#navSearch dt {
		display: none;
		}
	#navSearch form {
		all: unset;
		display: grid;
		align-items: center;
		background: #fff;
		}
		#navSearch form input {
			all: unset;
			width: 100%;
			padding: 0;
			border: none;
			}
		#navSearch form button {
			all: unset;
			display: grid;
			aspect-ratio: 1;
			width: 40px;
			height: 40px;
			background: var(--color-theme) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='white' d='M19.17,17.37l-3.97-3.97c.84-1.24,1.28-2.68,1.28-4.18,0-4.13-3.36-7.49-7.49-7.49S1.5,5.09,1.5,9.22s3.36,7.49,7.49,7.49c1.71,0,3.37-.59,4.7-1.67l3.9,3.9c.21.21.49.33.79.33s.58-.12.79-.33c.21-.21.33-.49.33-.79s-.12-.58-.33-.79ZM14.25,9.22c0,2.9-2.36,5.26-5.26,5.26s-5.26-2.36-5.26-5.26,2.36-5.26,5.26-5.26,5.26,2.36,5.26,5.26Z'/></svg>") center center no-repeat;
			background-size: 50%;
			border-radius: 6px;
			font-size: 0;
			cursor: pointer;
			}
		#navSearch form .gsc-input {
			padding-right: 4px;
			}
		#navSearch form .gsc-input-box {
			padding-top: 2px;
			border: 1px solid var(--color-border);
			border-radius: 6px;
			height: 40px;
			}
		#navSearch form .gsc-search-button-v2 svg {
			display: none;
			}

:where(#navGlobal, #navPickup) {}
	:where(#navGlobal, #navPickup) dl {
		display: grid;
		grid-gap: 16px 24px;
		}
	:where(#navGlobal, #navPickup) dt {
		display: grid;
		align-items: center;
		font-weight: 700;
		grid-gap: 4px;
		color: var(--color-theme);
		letter-spacing: 0.1em;
		}
		:where(#navGlobal, #navPickup) dt:after {
			content: "";
			border-bottom: 1px solid currentColor;
			}
	:where(#navGlobal, #navPickup) a {
		display: grid;
		grid-template-columns: 20px 1fr;
		grid-gap: 8px;
		font-size: 15px;
		letter-spacing: 0.05em;
		}
		:where(#navGlobal, #navPickup) a:before {
			content: "";
			aspect-ratio: 1;
			background: var(--color-theme);
			/* transform: translateY(0.15em); */
			}
	@-moz-document url-prefix() {
		:where(#navGlobal, #navPickup) wbr {
			display: none;
			}
		}

#navGlobal {}
	#navGlobal dl {
/*		grid-template-columns: repeat(2, auto);*/
		}

#navPickup {}
	#navPickup a {}
		#navPickup a:before {
			-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><circle cx="10.5" cy="10.5" r="5"/></svg>') center no-repeat;
			-webkit-mask-size: 16px;
			}

#navFavorite,
#navLanguage{
	& a{
		display: grid;
		grid-template-columns: 18px 1fr 10px;
		align-items: center;
		justify-content: center;
		grid-gap: 8px;
		padding: 4px 12px;
		min-height: 28px;
		font-size: 13px;
		text-align: center;
		color: var(--color-theme);
		border: 1px solid var(--color-theme);
		border-radius: 6px;
		cursor: pointer;
		&:after{
			content: "\25BC";
			font-size: 8px;
			transform: rotate(-90deg);
			}
		}
}

#navFavorite {}
	#navFavorite a:before {
		content: "";
		aspect-ratio: 1;
		background: currentColor;
		-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M10.5,2.17C5.9,2.17,2.17,5.9,2.17,10.5s3.73,8.33,8.33,8.33,8.33-3.73,8.33-8.33S15.1,2.17,10.5,2.17ZM10.61,14.09c-.31-.35-4.58-2.46-3.7-4.82.79-2.11,3.36-1.26,3.7-.11.24-1.08,2.89-2.04,3.7.11.88,2.32-3.4,4.54-3.7,4.82Z"/></svg>') center no-repeat;
		-webkit-mask-size: contain;
	}

#navLanguage {}
	#navLanguage a:before {
		content: "";
		aspect-ratio: 1;
		background: currentColor;
		-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M6.42,8.77s-.05.02-.05.04l-.54,2.29h1.17l-.52-2.29s-.03-.04-.05-.04h0Z"/><path d="M15.17,5.17h-4v10.67h4c1.84,0,3.33-1.5,3.33-3.33v-4c0-1.84-1.5-3.33-3.33-3.33ZM17.17,8.92c0,.23-.18.41-.41.41h-.21c-.08.85-.41,1.82-1.07,2.58.36.22.79.38,1.32.43.21.02.37.2.37.41h0c0,.26-.21.45-.45.42-.76-.07-1.37-.33-1.87-.68-.5.36-1.12.61-1.89.68-.24.02-.45-.17-.45-.41h0c0-.23.17-.4.38-.42.53-.05.96-.2,1.32-.42-.22-.25-.4-.53-.56-.82-.14-.27.06-.6.37-.6h0c.15,0,.29.08.36.22.12.23.28.46.46.67.55-.61.79-1.41.87-2.05h-2.79c-.23,0-.41-.18-.41-.41h0c0-.24.18-.42.41-.42h1.5v-.26c0-.23.18-.41.41-.41h.01c.23,0,.41.18.41.41v.26h1.5c.23,0,.41.18.41.41h0s0,.01,0,.01Z"/><path d="M9.83,5.17h-4c-1.84,0-3.33,1.49-3.33,3.33v4c0,1.84,1.49,3.33,3.33,3.33h4V5.17ZM7.84,13.17h0c-.22,0-.41-.15-.45-.36l-.18-.77h-1.61l-.18.77c-.05.21-.24.36-.45.36-.3,0-.52-.28-.45-.57l.94-4c.13-.58.76-.94,1.37-.68.29.12.49.4.56.71l.91,3.97c.07.29-.15.57-.45.57h0Z"/></svg>') center no-repeat;
		-webkit-mask-size: contain;
	}

#navSns {}
	#navSns ul {
		display: flex;
		grid-gap: 16px;
		}
	#navSns li {
		border-radius: 100%;
		box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
		overflow: hidden;
		&:has(a[href*="tiktok.com"]) {
			background: #ccc;
			}
		}
	#navSns a {
		display: grid;
		aspect-ratio: 1;
		width: 48px;
		background: currentColor;
		font-size: 0;
		-webkit-mask-position: center;
		-webkit-mask-repeat: no-repeat;
		}
		#navSns a[href*="instagram.com"] {
			position: relative;
			background: -webkit-linear-gradient(-65deg, #7638fa 25%, #ff0069 50%) no-repeat;
			-webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28"><path d="M14,2.52c3.74,0,4.18.01,5.66.08,1.37.06,2.11.29,2.6.48.65.25,1.12.56,1.61,1.05.49.49.79.96,1.05,1.61.19.49.42,1.23.48,2.6.07,1.48.08,1.92.08,5.66s-.01,4.18-.08,5.66c-.06,1.37-.29,2.11-.48,2.6-.25.65-.56,1.12-1.05,1.61-.49.49-.96.79-1.61,1.05-.49.19-1.23.42-2.6.48-1.48.07-1.92.08-5.66.08s-4.18-.01-5.66-.08c-1.37-.06-2.11-.29-2.6-.48-.65-.25-1.12-.56-1.61-1.05-.49-.49-.79-.96-1.05-1.61-.19-.49-.42-1.23-.48-2.6-.07-1.48-.08-1.92-.08-5.66s.01-4.18.08-5.66c.06-1.37.29-2.11.48-2.6.25-.65.56-1.12,1.05-1.61.49-.49.96-.79,1.61-1.05.49-.19,1.23-.42,2.6-.48,1.48-.07,1.92-.08,5.66-.08ZM14,0c-3.8,0-4.28.02-5.77.08-1.49.07-2.51.3-3.4.65-.92.36-1.7.84-2.48,1.61-.78.78-1.26,1.56-1.61,2.48-.35.89-.58,1.91-.65,3.4-.07,1.49-.08,1.97-.08,5.77s.02,4.28.08,5.77c.07,1.49.3,2.51.65,3.4.36.92.84,1.7,1.61,2.48.78.78,1.56,1.26,2.48,1.61.89.35,1.91.58,3.4.65,1.49.07,1.97.08,5.77.08s4.28-.02,5.77-.08c1.49-.07,2.51-.3,3.4-.65.92-.36,1.7-.84,2.48-1.61.78-.78,1.26-1.56,1.61-2.48.35-.89.58-1.91.65-3.4.07-1.49.08-1.97.08-5.77s-.02-4.28-.08-5.77c-.07-1.49-.3-2.51-.65-3.4-.36-.92-.84-1.7-1.61-2.48-.78-.78-1.56-1.26-2.48-1.61-.89-.35-1.91-.58-3.4-.65-1.49-.07-1.97-.08-5.77-.08ZM14,6.81c-3.97,0-7.19,3.22-7.19,7.19s3.22,7.19,7.19,7.19,7.19-3.22,7.19-7.19-3.22-7.19-7.19-7.19ZM14,18.67c-2.58,0-4.67-2.09-4.67-4.67s2.09-4.67,4.67-4.67,4.67,2.09,4.67,4.67-2.09,4.67-4.67,4.67ZM21.47,4.85c-.93,0-1.68.75-1.68,1.68s.75,1.68,1.68,1.68,1.68-.75,1.68-1.68-.75-1.68-1.68-1.68Z"/></svg>');
			-webkit-mask-size: 28px;
			}
			#navSns a[href*="instagram.com"]:before ,
			#navSns a[href*="instagram.com"]:after {
				position: absolute;
				content: "";
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				}
			#navSns a[href*="instagram.com"]:before {
				background: -webkit-linear-gradient(45deg, transparent 50%, #d300c5) no-repeat;
				}
			#navSns a[href*="instagram.com"]:after {
				background: -webkit-linear-gradient(-135deg, transparent 55%, #ff7a00 65%, #ffd600) no-repeat;
				}
		#navSns a[href*="facebook.com"] {
			background: #3b5996;
			-webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28"><path d="M16.24,28v-9.81c.94,0,3.3-.07,3.3-.07l.53-3.97h-3.82s.03-2.12.03-3.24c.09-.93.68-1.41,1.57-1.5.68-.06,2.29-.16,2.29-.16v-3.61s-3.63-.39-5.32.3c-2.02.82-2.86,2.49-2.97,4.58-.05,1.01,0,2.02-.02,3.04v.58c-1.01,0-2.9,0-2.9,0h-.66l.02,4.08h3.53v9.79C6.64,27.47.27,22.49,0,14.48-.24,6.93,5.77.37,13.26.02c7.94-.38,14.18,5.7,14.7,12.94.61,8.68-5.89,14.29-11.72,15.04Z"/></svg>');
			}
		#navSns a[href*="x.com"] {
			background: #000;
			-webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28"><path d="M16.23,12.16L24.98,2h-2.07l-7.59,8.82L9.25,2H2.26l9.17,13.34L2.26,26h2.07l8.02-9.32,6.4,9.32h6.99l-9.51-13.84h0ZM13.4,15.46l-.93-1.33L5.08,3.56h3.18l5.96,8.53.93,1.33,7.75,11.09h-3.18l-6.33-9.05h0Z"/></svg>');
			-webkit-mask-size: 28px;
			}
		#navSns a[href*="youtube.com"] {
			background: #ff0000;
			-webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28"><path d="M27.41,7.22c-.32-1.21-1.27-2.17-2.48-2.49-2.18-.59-10.94-.59-10.94-.59,0,0-8.76,0-10.94.59-1.2.32-2.15,1.28-2.48,2.49-.59,2.2-.59,6.78-.59,6.78,0,0,0,4.59.59,6.78.32,1.21,1.27,2.17,2.48,2.49,2.18.59,10.94.59,10.94.59,0,0,8.76,0,10.94-.59,1.2-.32,2.15-1.28,2.48-2.49.59-2.2.59-6.78.59-6.78,0,0,0-4.59-.59-6.78ZM11.14,18.16v-8.33l7.32,4.16-7.32,4.16Z"/></svg>');
			-webkit-mask-size: 28px;
			}
		#navSns a[href*="tiktok.com"] {
			position: relative;
			background: #000 url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28" fill="white"><path d="M23.45,8.38v-.88c-1.1,0-2.13-.33-3-.89-.84-.97-1.35-2.23-1.35-3.61h-1.06c-.06-.33-.09-.66-.09-1h-3.95v15.84c-.07,1.77-1.53,3.2-3.32,3.2-.56,0-1.08-.14-1.54-.38-.39-.55-.63-1.21-.63-1.94,0-1.83,1.49-3.32,3.32-3.32.34,0,.67.06.98.15v-4.04c-.32-.04-.65-.07-.98-.07-.06,0-.11,0-.17,0v-.94c-.32-.04-.65-.07-.98-.07-4.01,0-7.28,3.26-7.28,7.28,0,2.46,1.23,4.64,3.11,5.96,1.33,1.43,3.22,2.32,5.32,2.32,4.01,0,7.28-3.26,7.28-7.28v-8.03c1.55,1.11,3.45,1.77,5.5,1.77v-3.95c-.4,0-.78-.04-1.15-.12Z"/></svg>') no-repeat center;
			background-size: 32px;
			}
			#navSns a[href*="tiktok.com"]:before,
			#navSns a[href*="tiktok.com"]:after {
				position: absolute;
				content: "";
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				z-index: 1;
				}
			#navSns a[href*="tiktok.com"]:before {
				background: #25f4ee;
				-webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28"><path d="M11.65,11.47v-.96c-.32-.04-.65-.07-.98-.07-4.01,0-7.28,3.26-7.28,7.28,0,2.46,1.23,4.64,3.11,5.96-1.21-1.3-1.93-3.04-1.93-4.95,0-3.95,3.15-7.16,7.08-7.25Z"/><path d="M11.83,22.07c1.79,0,3.27-1.44,3.34-3.22l.02-15.82h2.87s0-.02,0-.02c-.06-.33-.09-.66-.09-1h-3.95v15.84c-.07,1.77-1.53,3.2-3.32,3.2-.56,0-1.08-.14-1.54-.38.6.84,1.59,1.41,2.69,1.41Z"/><path d="M23.45,8.43v-.93c-1.1,0-2.13-.33-3-.89.77.88,1.81,1.57,3,1.82Z"/></svg>');
				-webkit-mask-size: 32px;
				-webkit-mask-position: center;
				-webkit-mask-repeat: no-repeat;
				}
			#navSns a[href*="tiktok.com"]:after {
				background: #fe2c55;
				-webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28"><path d="M20.46,6.61c-.84-.97-1.35-2.23-1.35-3.61h-1.08c.28,1.51,1.19,2.8,2.43,3.61Z"/><path d="M10.67,14.37c-1.83,0-3.35,1.52-3.35,3.35,0,1.28.75,2.38,1.8,2.94-.39-.55-.63-1.21-.63-1.94,0-1.83,1.49-3.32,3.32-3.32.34,0,.67.06.98.15v-4.04c-.32-.04-.65-.07-.98-.07-.06,0-.11,0-.17,0h-.02s-.01,3.06-.01,3.06c-.31-.1-.61-.14-.95-.14Z"/><path d="M23.45,8.38h-.02s0,3.05,0,3.05c-2.05,0-3.95-.67-5.51-1.79v8.08c0,4.01-3.24,7.26-7.25,7.26-1.55,0-2.99-.47-4.17-1.3,1.33,1.43,3.22,2.32,5.32,2.32,4.01,0,7.28-3.26,7.28-7.28v-8.03c1.55,1.11,3.45,1.77,5.5,1.77v-3.95c-.4,0-.78-.04-1.15-.12Z"/></svg>');
				-webkit-mask-size: 32px;
				-webkit-mask-position: center;
				-webkit-mask-repeat: no-repeat;
				}

#navExtra ul {
	display: grid;
}

#navExtra a {
	display: grid;
	grid-template-columns: 1fr 10px;
	align-items: center;
	justify-content: center;
	grid-gap: 4px;
	min-height: 48px;
	padding: 4px 0;
	border-bottom: 1px solid var(--color-theme);
	letter-spacing: 0.02em;
}

#navExtra a:after {
	content: "\25BC";
	font-size: 8px;
	color: var(--color-theme);
	transform: rotate(-90deg);
}

#floatingNav {
	background: #fff;
	box-shadow: 0 0 3px rgba(0, 0, 0, 20%);
	overflow-x: auto;
	}
	#floatingNav dl {
		display: flex;
		justify-content: space-around;
		min-width: auto;
		}
	#floatingNav dt {
		display: none;
		}
	#floatingNav a {
		grid-row: 1;
		display: grid;
		grid-template-rows: 28px 2.4em;
		align-content: center;
		justify-items: center;
		align-items: center;
		grid-gap: 4px;
		width: 102px;
		padding: 8px 4px;
		color: inherit;
		font-weight: 700;
		font-size: 12px;
		line-height: 1.2;
		letter-spacing: 0.1em;
		text-align: center;
		word-break: keep-all;
		}
		#floatingNav a:before {
			content: "";
			aspect-ratio: 1;
			background: var(--color-theme);
			align-self: stretch;
			-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><path d="M3,0h7v7c0,1.66-1.34,3-3,3H0V3C0,1.34,1.34,0,3,0Z"/></svg>') center no-repeat;
			-webkit-mask-size: 10px;
			}
	@media (max-width: 639.98px) {
		#floatingNav:has(dd:nth-of-type(5)) {
			display: flex;
			justify-items: start;
			}
		}
	@media (min-width: 992px) {
		#floatingNav {
			display: none;
			}
		}


#pagePath{
	display: grid;
	grid-template-columns: 1fr var(--wrap) 1fr;
	padding: 8px 0;
	background: rgba(var(--color-theme-rgb), .1);
	overflow-x: auto;
	& ul{
		grid-column: 2;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		grid-gap: 8px 16px;
		font-size: 14px;
	}
	& li{
		&:has(a){
			display: contents;
			&:after{
				content: "";
				aspect-ratio: 1;
				width: 10px;
				-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14" style="fill: none; stroke: black; stroke-miterlimit: 10; stroke-width: 2px;"><polyline points="4 1 10 7 4 13"/></svg>') center no-repeat;
				-webkit-mask-size: contain;
				background: currentColor;
			}
		}
	}
	& a{
		display: block;
		color: inherit;
		text-decoration: underline;
	}
}

#footer{
	display: grid;
	grid-template-columns: 1fr var(--wrap) 1fr;
	grid-row-gap: clamp(40px, calc(48 / 1200 * 100vw), 48px);
	padding-bottom: 32px;
	background: var(--color-variable);
	color: #fff;
	&>*{
		grid-column: 2;
	}
	@media (min-width: 576px) {
		padding-bottom: 24px;
	}
	#fNav{
/*		margin-top: clamp(40px, calc(48 / 1200 * 100vw), 48px);*/
	}
	#fBanner{
		grid-column: 1 / 4;
		grid-row: 1;
	}
	#copyright{
/*		margin-top: clamp(56px, calc(72 / 1200 * 100vw), 72px);*/
	}
}

#fBanner{
	display: grid;
	grid-template-columns: 1fr var(--wrap) 1fr;
	padding: 56px 0 clamp(64px, calc(120 / 1200 * 100vw), 120px) 0;
	background: url("/images/bgTexture.webp");
	display: none;
	&>*{
		grid-column: 2;
	}
	& h3{
		display: grid;
		grid-template-columns: 56px auto 56px;
		justify-content: center;
		align-items: center;
		column-gap: 24px;
		font-size: 24px;
		letter-spacing: 0.3em;
		&:before,
		&:after{
			content: "";
			display: block;
			border-bottom: 1px solid currentColor;
		}
	}
	& h3+div{
		display: flex;
		justify-content: center;
		margin-top: clamp(32px, calc(48 / 1200 * 100vw), 48px);
	}
	& ul{
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(min(calc(50% - 8px), 188px), 1fr));
		grid-gap: clamp(16px, calc(32 / 1200 * 100vw), 32px);
		width: min(100%, 1056px);
	}
	& a{
		display: grid;
	}
	& img{
		aspect-ratio: 240 / 96;
		object-fit: contain;
	}
}

#fNav{
	justify-self: center;
	& ul{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	& li{
		display: block;
		padding: 0 8px;
		position: relative;
		&:after{
			content: "";
			position: absolute;
			top: 50%;
			right: 0;
			transform: translateY(-50%);
			height: 18px;
			border-right: 1px solid #fff;
		}
		&:last-child:after{
			border-right: none;
		}
	}
}

#fNavExtra {
	display: flex;
	justify-content: center;
	margin-top: clamp(40px, calc(48 / 1200 * 100vw), 48px);
	& ul{
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(min(100%, 196px), 1fr));
		grid-gap: 16px clamp(32px, calc(40 / 1200 * 100vw), 40px);
		width: 280px;
		@media (min-width: 576px) {
			width: min(100%, 880px);
		}
	}
	& li{
		display: contents;
	}
	& a{
		display: grid;
		grid-template-columns: 1fr 20px;
		align-items: center;
		justify-content: center;
		grid-gap: 4px;
		min-height: 48px;
		padding: 4px 16px;
		font-size: 16px;
		letter-spacing: 0.025em;
		text-align: center;
		color: var(--color-variable);
		border-radius: 24px;
		background: #fff;
		&:after{
			content: "";
			aspect-ratio: 1;
			background: var(--color-variable) url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill="white" d="M17.94,9.8s-.01-.02-.02-.03c-.05-.08-.12-.13-.21-.16l-8.93-4.4c-.06-.03-.12-.04-.19-.04-.08,0-.15.02-.22.06-.12.08-.2.21-.2.36v3.94s0,.04.01.05H2.42c-.23,0-.42.19-.42.42,0,.23.19.42.42.42h13.36s-6.77,3.32-6.77,3.32v-1.91c0-.23-.19-.42-.42-.42s-.42.19-.42.42v2.59c0,.15.08.28.2.36.12.08.28.08.41.02l8.98-4.41c.1-.05.16-.13.2-.22,0,0,0,0,0,0,.02-.05.03-.1.03-.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0-.01,0-.02,0-.04,0-.07-.02-.11,0-.03-.02-.05-.03-.07ZM9.02,9.52v-3.26s6.73,3.32,6.73,3.32h-6.74s.01-.04.01-.05Z"/></svg>') center no-repeat;
			background-size: 16px;
			border-radius: 100%;
		}
	}
}

#fAddress {
	justify-self: center;
	display: grid;
	grid-row-gap: 12px;
	padding-top: 16px;
	width: 100%;
	position: relative;
	&:before{
		content: "";
		justify-self: center;
		aspect-ratio: 300 / 92;
		width: clamp(300px, calc(400 / 576 * 100vw), 400px);
		background: url('/common/images/logoType-wh.svg') no-repeat center / contain;
	}
	&:after{
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 1px;
		background: #fff;
	}
	& h4 {
		font-size: 20px;
	}
	& dl {
		display: grid;
		grid-template-columns: auto 8em auto 1fr;
		grid-gap: 0 8px;
		font-size: 14px;
	}
	& dt {
		&:nth-of-type(1) {
			display: none;
		}
		&:nth-of-type(2) {
			grid-column: 1;
			grid-row: 2;
		}
		&:nth-of-type(3) {
			grid-column: 3;
			grid-row: 2;
		}
	}
	& dd {
		&:nth-of-type(1) {
			grid-column: 1 / 5;
		}
		&:nth-of-type(2) {
			grid-column: 2;
			grid-row: 2;
		}
		&:nth-of-type(3) {
			grid-column: 4;
			grid-row: 2;
		}
	}
	@media (min-width: 768px) and (max-width: 991.98px) {
		& h4 {
			justify-self: center;
		}
		& dl {
			justify-self: center;
		}
	}
	@media (min-width: 992px) {
		grid-template-columns: 1fr auto 460px 1fr;
		grid-column-gap: 60px;
		&:before{
			grid-column: 2 / 3;
			grid-row: 1 / 3;
		}
		& h4 {
			grid-column: 3 / 4;
			grid-row: 1;
			align-self: end;
		}
		& dl {
			grid-column: 3 / 4;
			grid-row: 2;
		}
	}
}

#copyright{
	display: grid;
	grid-row-gap: clamp(32px, calc(40 / 1200 * 100vw), 40px);
	& p{
		font-size: clamp(11px, calc(12 / 576 * 100vw), 12px);
		text-align: center;
		letter-spacing: 0.1em;
		&:nth-child(2){
			letter-spacing: 0.025em;
		}
	}
}

#pageTop{
	display: none;
	
	position: sticky;
	bottom: 0;
	font-size: 0;
	cursor: pointer;
	opacity: 0;
	transition: opacity 0.2s ease-out 1s;
	z-index: 100;
	.done:not(.scrollTop) &{
		opacity: 1;
	}
	&:hover:before{
		opacity: .7;
	}
	&:before,
	&:after{
		content: "";
		position: absolute;
		right: 0;
		bottom: 0;
		aspect-ratio: 1;
		width: 48px;
	}
	&:before{
		background: var(--color-theme);
		border-radius: 100%;
	}
	&:after{
		-webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M2.582 13.891c-0.272 0.268-0.709 0.268-0.979 0s-0.271-0.701 0-0.969l7.908-7.83c0.27-0.268 0.707-0.268 0.979 0l7.908 7.83c0.27 0.268 0.27 0.701 0 0.969s-0.709 0.268-0.978 0l-7.42-7.141-7.418 7.141z" /></svg>');
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		-webkit-mask-size: 32px;
		background: #fff;
	}
}

#pagenation{
	overflow: hidden;
	[lsc-lb^="lscListPgn"]{
		display: none;
	}
/*
	&:not(:has(ol)){
		display: none;
		}
*/
	& ul,
	& ol{
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		grid-gap: 8px;
		width: var(--wrap);
		margin: auto;
		list-style: none;
	}
	& a{
		display: grid;
		color: #333;
		font-weight: 700;
		font-size: clamp(14px, calc(16 / 1200 * 100vw), 16px);
		text-decoration: none;
		&:not([rel]){
			aspect-ratio: 1;
			width: 48px;
			place-items: center;
			border: 1px solid #999;
			border-radius: 24px;
			background: #ebebeb;
			white-space: nowrap;
			overflow: hidden;
			&.lsc-current-page{
				background: var(--color-theme);
				border-color: transparent;
				color: #fff;
				pointer-events: none;
				}
		}
		&[rel]{
			align-items: center;
			column-gap: 8px;
			color: inherit;
			&:before{
				aspect-ratio: 1;
				background: currentColor;
				-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" style="fill: none; stroke: black; stroke-width: 1px;"><polyline points="2 2 12 12 2 22"/></svg>') center no-repeat;
			}
			&[rel="prev"]{
				grid-template-columns: 24px auto;
				margin-right: 8px;
				&:before{
					content: "";
					transform: scale(-1, 1);
				}
			}
			&[rel="next"]{
				grid-template-columns: auto 24px;
				margin-left: 8px;
				&:before{
					content: "";
					order: 1;
				}
			}
			&[rel="list"]{
				margin: 0 24px;
			}
		}
	}
}

/*
.wrap{
	width: var(--wrap);
	margin: 0 auto;
	}

.subject{
	margin: 0;
	padding: 0;
	color: var(--color-theme);
	font-weight: bold;
	font-size: clamp(24px, 4.8vw, 32px);
	text-align: center;
	}

.headline{
	position: relative;
	margin: 0;
	padding: 16px;
	background: rgba(var(--color-theme-rgb), 0.1);
	font-weight: bold;
	font-size: min(5vw, 32px);
	text-align: center;
	line-height: 1.5;
	}
	.headline:after{
		content: "";
		position: absolute;
		top: 100%;
		left: 50%;
		border: 16px solid transparent;
		border-top-color: rgba(var(--color-theme-rgb), 0.1);
		transform: translateX(-50%) scaleX(0.6);
		}

.title{
	margin: 0 0 -16px 0;
	padding: 0;
	color: var(--color-theme);
	font-size: clamp(20px, 3.6vw, 24px);
	font-weight: bold;
	line-height: 1.5;
	}

.subTitle{
	margin: 0 0 8px 0;
	padding: 8px 0;
	border-bottom: 1px solid var(--color-border);
	border-top: 3px solid var(--color-border);
	font-size: clamp(16px, 2.7vw, 18px);
	font-weight: bold;
	line-height: 1.5;
	}

.buttonSet{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	grid-gap: 16px;
	}
	@media (max-width: 575.98px) {
	.buttonSet{
		flex-direction: column;
		padding: 0 10%;
		}
	}
*/

/*
.button{
	display: grid;
	grid-template-columns: 1fr 16px;
	align-items: center;
	grid-gap: 8px;
	min-height: 48px;
	padding: 8px 16px;
	background: var(--color-theme);
	border: none;
	color: #fff;
	font-family: inherit;
	font-size:  inherit;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	line-height: 1.5;
	}
	.button:before{
		content: "";
		order: 1;
		aspect-ratio: 1;
		-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path d="M9.163 4.516c0.418 0.408 4.502 4.695 4.502 4.695 0.223 0.219 0.335 0.504 0.335 0.789s-0.112 0.57-0.335 0.787c0 0-4.084 4.289-4.502 4.695-0.418 0.408-1.17 0.436-1.615 0-0.446-0.434-0.481-1.041 0-1.574l3.747-3.908-3.747-3.908c-0.481-0.533-0.446-1.141 0-1.576s1.197-0.409 1.615 0z" /></svg>') center no-repeat;
		-webkit-mask-size: contain;
		background: currentColor;
		}
	.button:hover{
		background: #e50012;
		}
	.button:focus{
		background: #e50012;
		}
*/

/*
.list{
	display: grid;
	grid-gap: 8px;
	list-style: none;
	line-height: 1.5;
	}
	.list:where(.point, .count){}
		.list:where(.point,.count) > li{
			position: relative;
			padding-left: 1em;
			}
			.list:where(.point,.count) > li:before{
				position: absolute;
				top: 0;
				left: 0;
				}
	.list.point{}
		.list.point > li{}
			.list.point > li:before{
				content: "●";
				color: #0068b7;
				transform: scale(0.7);
				}
	.list.notes{}
		.list.notes > li{
			display: block;
			grid-column: 1 / 3;
			padding-left: 16px;
			text-indent: -16px;
			}
	.list.count{
		counter-reset: count;
		grid-column-gap: 0;
		}
		.list.count > li{
			padding-left: 1em;
			}
			.list.count > li:before{
				counter-increment: count;
				content: counter(count)".";
				}
			.list.count:has(li:nth-child(10)) > li{
				padding-left: 1.5em;
				}
				.list.count:has(li:nth-child(10)) > li:nth-child(-n+9):before{
					content: "0"counter(count)".";
					}
		.list.count .list.count{}
			.list.count .list.count > li{}
				.list.count .list.count > li:before{
					content: "（"counter(count)"）";
					}
*/

/*
.table{}
	.table :where(th, td, dt, dd){
		padding: 0.8em;
		line-height: 1.5;
		}
	.table :where(th,td){
		border: 1px solid #ccc;
		vertical-align: middle;
		}
	.table:is(table){
		width: 100%;
		border-collapse: collapse;
		}
	.table thead{
		background: rgba(0, 104, 182, 0.1);
		}
	.table th{
		background: rgba(0, 0, 0, 0.05);
		}
	.table{}
		.table > dt{
			background: rgba(0, 104, 182, 0.1);
			}
		.table > dd{
			background: rgba(0, 0, 0, 0.05);
			}
	@media (max-width: 575.98px) {
		.table{}
			.table > dd+dt{
				margin-top: 1px;
				}
		}
	@media (min-width: 576px) {
		.table{}
			.table:is(dl){
				display: grid;
				grid-template-columns: clamp(132px, 30%, 20em) auto;
				grid-gap: 1px 0;
				}
		}
*/

.infoWin{
	&[LSC-LT],
	[LSC-LB] &{
		position: relative;
		justify-self: center;
		margin: 16px;
		padding: 16px;
		background: #fff;
		border-radius: 8px;
		filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.25));
		z-index: 1;
	}
	& dl{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		grid-gap: 16px 8px;
		max-width: 240px;
	}
	& dt{
		width: 100%;
		font-weight: 700;
		font-size: 14px;
		white-space: nowrap;
		text-overflow: ellipsis;
		overflow: hidden;
	}
	& dd{
		&:empty{
			display: none;
		}
		&:has(img){
			width: 100%;
		}
		&:has(a){
			display: contents;
		}
		& img{
			aspect-ratio: 1 / 0.667;
			object-fit: cover;
			border-radius: 4px;
		}
		& a{
			display: grid;
			align-items: center;
			width: calc(50% - 4px);
			min-height: 32px;
			padding: 4px 8px;
			border: 1px solid var(--color-theme);
			border-radius: 4px;
			color: var(--color-theme);
			font-weight: 700;
			font-size: clamp(10px, calc(12 / 576 * 100vw), 12px);
			text-align: center;
			text-decoration: none;
			line-height: 1;
			letter-spacing: 0.05em;
			outline: none;
			&[href*="google.co.jp"]{
				order: 1;
				border: 1px solid var(--color);
				color: currentColor;
			}
		}
	}
}
/*.gsc-control-cse{
	all: unset;
	display: contents;
	}
.gsc-search-box-tools {
	display: contents;
}
.gsc-search-box-tools :where(div, table, tbody, tr, td) {
	display: contents;
}
.gsc-search-box-tools input {
	padding: 0;
	border: none;
}
.gsc-search-box-tools button svg {
	display: none;
}
.gsc-search-box-tools a {
	aspect-ratio: 1;
	width: 16px;
	padding: 0;
	margin-right: 4px;
	background: #ccc;
	-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="2 2 14 14" /><polyline points="14 2 2 14" /></svg>') center no-repeat;
	-webkit-mask-size: 50%;
}
.gsc-search-box-tools span {
	display: none;
}*/

.googlemap{}
	.googlemap iframe{
		width: 100%;
		height: 100%;
		aspect-ratio: 1;
		}
	@media (min-width: 576px) {
		.googlemap iframe{
			aspect-ratio: 16 / 9;
			}
		}

.youtube{}
	.youtube iframe{
		width: 100%;
		height: 100%;
		aspect-ratio: 16 / 9;
		}

:root{
	--pickup-title: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 170 75"><path d="M92.01,10.17c-.98-.36-5.43-1.17-23.37,1.86-.46.08-.79.52-.7.98.1.51.02,1.07-.28,1.55-.2.31-.52.83-.95,1.51-19.7,31.22-25.03,42.08-26.39,45.85-.11.3,0,.61.22.84.56.56.83,1.46.49,2.57-.06.18-.18.33-.34.44-.95.61-1.74.82-2.38.82-1.04,0-1.69-.56-1.97-.88-1.55-1.76-3.49-3.94,26.78-51.91.22-.34.41-.64.56-.9-9.9,1.81-18.51,3.76-18.6,3.79-.16.04-.32.05-.47.05-.97,0-1.85-.67-2.07-1.66-.26-1.14.46-2.28,1.6-2.54.11-.03,11.61-2.63,23.38-4.63,27.54-4.69,27.08-1.12,28.29.02.2.19.32.45.28.72-.34,2.44-2.6,2.87-3.77,1.72-.09-.08-.18-.16-.3-.2ZM64.04,46.75c-.44.1-.85.14-1.21.14-2.04,0-2.96-1.31-3.22-1.77-1.74-3.09,1.34-8.04,4.5-11.34.31-.33.71-.53,1.12-.61.2-.04.35-.19.4-.38.13-.52.47-1.04,1.07-1.51.08-.06.19-.1.29-.11,3.45-.32,3.41,3.39,3.4,4.5-.05,3.91-1.78,10.09-6.35,11.1ZM65.81,38.28c-1.5,1.87-2.15,3.36-2.37,4.21.59-.28,1.05-.91,1.35-1.44.47-.83.8-1.81,1.02-2.77ZM92.47,33.92c.67,3.99-5.35,13.31-10.6,14.99-.63.2-1.25.3-1.84.3-1.69,0-3.19-.81-4.29-2.33-.23-.32-.71-.3-.9.04-4.36,7.43-7.66,13.64-8.39,16.19-.04.15,0,.31.08.44.46.76.46,1.83-.39,2.82-.06.07-.14.12-.22.16-1.44.59-2.87.08-3.51-1.1-.74-1.35-1.65-3.04,9.24-21.46,5.1-8.63,10.49-16.98,10.54-17.07.98-1.52,3.57-1.37,4.09,1.23.03.14,0,.28-.08.4-.64.99-1.29,1.99-1.93,3-.29.46.2,1.02.69.78,1.37-.68,2.78-1.12,4.15-1.16,1.75-.05,3.08,1.04,3.37,2.76ZM87.72,36.75c.21-.46-.27-.93-.72-.72-2.85,1.36-6.21,4.68-8.43,7.37.11.13.2.27.28.43.66,1.36,1.18,1.2,1.69,1.04,2.69-.81,5.9-5.24,7.19-8.13ZM100.34,35.14c-1.74,2.92-3.6,6.54-4.23,8.34-.05.14-.02.29.05.42.33.6.37,1.38-.04,2.2-.04.07-.09.14-.15.19-.77.62-1.15.73-1.55.76-.96.07-1.83-.35-2.34-1.13-.44-.67-1.16-1.8,1.42-7.13-.05-.22-.07-.46-.05-.69.05-.51.15-1.59,3.9-5.95.08-.09.2-.17.32-.19,2.42-.42,3.53,1.72,2.66,3.2ZM103.77,28.17l-.06.11c-.34.7-1.02,1.12-1.74,1.18-.36.03-.74-.04-1.09-.21-1.05-.51-1.49-1.78-.98-2.83,0,0,.14-.3.52-.96.07-.12.18-.21.3-.25,2.51-.8,3.89,1.37,3.05,2.97ZM105.85,41.5c-.19.38.13.82.55.77.96-.13,2.56-.51,5.15-1.52,1.68-.66,3.69.96,2.6,3.38-.06.12-.17.22-.3.28-3.54,1.45-6.23,2.17-8.23,2.17-1.62,0-2.78-.47-3.57-1.41-.9-1.07-1.55-3.06.52-6.53,1.95-3.27,4.98-7.19,8.27-7.27,1.73-.05,3.2.96,4.02,2.78.05.11.06.23.04.34-.5,2.32-2.73,2.61-3.82,1.44-.17-.18-.45-.22-.66-.09-.78.47-2.28,1.78-4.19,4.98-.15.25-.27.48-.37.69ZM122.59,49.01c-.11,0-.24,0-.38,0-1.11,0-3.15-.15-3.88-1.83-.24-.57-.67-2.19,1.5-3.74.09-.07.21-.11.33-.11,1.15,0,1.92.52,2.29,1.18.1.17.29.26.48.25,1.86-.12,4.69-.77,6.26-1.51.34-.16.41-.61.15-.87-.89-.9-1.6-1.74-2.17-2.52-.2-.27-.6-.29-.83-.04l-1.69,1.82c-1.23,1.33-3.75.73-3.81-1.92,0-.14.05-.27.15-.38l4.07-4.39c.09-.09.13-.22.14-.35.03-.72.21-1.33.45-1.85.87-1.84,2.74-2.63,4.13-2.45,1.58.21,2.65,1.59,2.24,3.28-.02.09-.07.18-.13.25l-1.81,1.96c-.16.17-.19.42-.08.63.48.87,1.38,2.07,3.06,3.64,1.78,1.67,1.38,3.4,1.13,4.07-1.48,3.85-9.65,4.84-11.59,4.88Z"/></svg>');
	--ranking-title: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 170 75"><path d="M48.97,30.6c-2.73,2.69-6.4,5.09-10.45,7.18-.9.46-.47,1.82.53,1.71,15.41-1.75,15.19.88,16.2,1.81.21.19.29.49.25.76-.35,2.37-2.59,2.8-3.75,1.67-.09-.09-.2-.17-.32-.21-1.03-.37-5.71-1.19-24.72,2.09-4.1.71-8.14,1.48-11.62,2.18-.26.05-.49.22-.62.46-2.98,5.39-4.01,8.14-4.34,9.51-.09.36.05.74.36.95,1.01.68,1.41,2.19.19,3.54-.12.14-.3.23-.48.27-1.76.33-3.26-.32-3.99-1.66-1.01-1.85-.28-5.08,2.18-10.16.33-.69-.27-1.45-1.01-1.29-1.79.39-2.86.63-2.89.64-.16.04-.32.05-.47.05-.97,0-1.85-.67-2.07-1.65-.05-.21-.05-.43-.04-.64-.03-.11-.05-.21-.07-.32-.23-1.92,1.18-2.26,3.73-2.89,2.36-.58,4.63-1.17,6.8-1.76.23-.06.42-.21.54-.41,2.91-4.93,6.7-10.92,11.39-18.17,2.23-3.45,4.67-7.21,6.07-9.57.12-.21.16-.45.1-.68-.22-.77,0-1.62.65-2.18.56-.49,2.26-1.98,3.83-.62,1.66,1.44.49,3.37-1.46,6.56-1.38,2.26-3.34,5.29-5.61,8.8-2.43,3.74-5.22,8.06-7.86,12.32-.45.72.25,1.61,1.06,1.35,11.95-3.89,20.3-8.13,24.9-12.67,5.3-5.23,7.57-10.76,6.07-14.8-1.41-3.78-6.1-6.2-12.88-6.64-11.15-.73-19.4,4.02-21.06,7.73-.58,1.3-.14,1.98.37,2.49,1.25,1.23.66,3.63-1.81,3.75-.21.01-.42-.07-.58-.2-2.48-2-3.15-4.89-1.86-7.78C16.78,6.44,26.91,1.07,39.45,1.89c8.65.56,14.54,3.9,16.59,9.4,2.14,5.74-.44,12.77-7.07,19.31ZM74.1,36.99c2.61.79,2.47,3.42.84,4.23-.7.35-1.41.52-2.1.52s-1.36-.17-1.97-.52c-.89-.51-1.55-1.33-2.04-2.25-.19-.35-.66-.4-.91-.09-1.33,1.69-2.38,2.76-4.34,3.32-.3.08-.59.12-.87.12-1.15,0-2.15-.67-2.57-1.82-1.21-3.31,3.33-12.1,7.15-13.83,2.41-1.09,4.75.01,5.89,2.89.04.11.05.24.02.36-.38,1.33-1.29,1.93-2.19,1.96.04.04.06.08.1.11.04.04.08.08.11.13.05.06.09.13.13.2.03.05.06.1.08.15.04.07.06.15.09.22.02.05.04.1.05.16.02.09.04.18.05.26,0,.04.02.07.02.11.11,1.34.49,2.83.89,3.67.17.36.63.48.96.25.02-.02.05-.03.07-.05.16-.11.36-.16.55-.1ZM69.44,31.27c-.14-.14-.27-.31-.37-.5-.05-.09-.09-.15-.12-.2-.92.4-2.25,2.29-3.28,4.26.59-.77,1.31-1.7,2.22-2.79,0,0,0,0,.01-.01.09-.11.2-.21.31-.3.03-.02.06-.04.09-.06.09-.06.18-.12.28-.17.05-.03.11-.04.16-.06.08-.03.16-.07.24-.09.07-.02.13-.03.2-.04.06,0,.12-.03.19-.03.01,0,.03,0,.04,0,.01,0,.03,0,.04,0ZM94.55,40.27c-.81,1.56-3.3,1.69-4.12-.66-.09-.25-.07-.52.06-.76,1.71-3.11,2.99-7.12,2.72-8.33-.05,0-.1,0-.17,0-3.38.27-7.72,6.99-9.3,10.2-.37.75-1.12,1.19-1.91,1.19-.31,0-.63-.07-.93-.22-1.05-.52-1.49-1.79-.97-2.84.6-1.23,6.08-12.03,12.78-12.57,2.36-.19,3.52,1.01,4,1.73,2.13,3.21-.8,9.63-2.16,12.24ZM121.67,24.12c.13.08.25.2.32.33,1.04,2.01-.45,3.66-2.05,3.45-.07,0-.14-.02-.21,0-1.21.18-3.89,2.04-6.7,4.34-.32.26-.4.71-.2,1.07.93,1.71,2.01,3.21,2.7,3.72.13.1.29.14.45.15,1.03.09,1.86.91,1.94,1.97.08,1.17-.81,2.19-1.98,2.26-.08,0-.16,0-.24,0-2.43,0-4.53-2.54-5.98-4.95-.28-.47-.92-.56-1.32-.18-1.65,1.55-3.04,2.98-3.8,3.94-.09.12-.14.26-.17.4-.12.65-.54,1.24-1.2,1.54-.63.29-1.18.4-1.65.4-1.07,0-1.72-.57-2-.9-1.34-1.53-1.66-3.72,6.48-17.96,4.29-7.5,9.39-15.6,11.57-19.06l.77-1.23c.62-1,1.93-1.3,2.93-.68,1,.62,1.3,1.93.68,2.93l-.78,1.24c-6.26,9.95-10.38,16.9-13.09,21.75-.46.82.57,1.67,1.29,1.06,1.47-1.24,2.76-2.27,3.56-2.84,4.32-3.14,6.76-3.88,8.68-2.77ZM128.89,30.28c-1.74,2.92-3.6,6.54-4.23,8.34-.05.14-.02.29.05.42.33.6.38,1.38-.04,2.2-.04.07-.09.14-.15.19-.77.62-1.15.73-1.55.76-.96.07-1.83-.35-2.34-1.13-.44-.67-1.16-1.8,1.42-7.13-.05-.22-.07-.46-.05-.69.05-.51.15-1.59,3.9-5.95.08-.09.2-.17.32-.19,2.42-.42,3.53,1.72,2.66,3.2ZM132.32,23.3l-.06.11c-.34.7-1.02,1.12-1.74,1.18-.36.03-.74-.04-1.09-.21-1.05-.51-1.49-1.78-.98-2.83,0,0,.14-.3.52-.96.07-.12.18-.21.3-.25,2.51-.8,3.89,1.38,3.05,2.97ZM144.58,40.27c-.81,1.56-3.3,1.69-4.12-.66-.09-.25-.07-.52.06-.76,1.71-3.11,2.99-7.12,2.72-8.33-.05,0-.1,0-.17,0-3.38.27-7.72,6.99-9.3,10.2-.37.75-1.12,1.19-1.91,1.19-.31,0-.63-.07-.93-.22-1.05-.52-1.49-1.79-.97-2.84.6-1.23,6.08-12.03,12.78-12.57,2.36-.19,3.52,1.01,4,1.73,2.13,3.21-.8,9.63-2.16,12.24ZM163.19,43.37c-.24.48.22,1.02.74.84.19-.06.38-.13.57-.19,1.72-.56,3.63,1.18,2.4,3.52-.07.14-.2.24-.35.29-2.46.76-4.78,1.7-6.94,2.76-.12.06-.21.15-.27.26-.49.92-.99,1.83-1.47,2.71-10.88,19.66-14.76,20.5-16.04,20.78-.64.14-1.22.2-1.75.2-2.54,0-3.89-1.45-4.31-3.01-1.46-5.37,7.02-16.88,20.39-23.96.11-.06.19-.15.25-.25,1.45-2.74,2.74-5.31,3.83-7.56.28-.58-.42-1.13-.92-.74-2.5,1.95-3.97,2.76-5.47,3.22-.29.09-.57.13-.85.13-1.05,0-1.98-.61-2.37-1.63-.82-2.15,1.45-6.71,3.51-10.15,1.66-2.79,4.93-7.69,8.09-9.15,2.41-1.11,4.76-.13,5.67,2.53.04.12.05.26,0,.39-.65,2.07-2.61,2.31-3.68,1.33-.22-.2-.53-.23-.77-.06-.99.73-2.74,2.52-4.9,5.9-.49.76-.93,1.5-1.32,2.2-.33.58.4,1.19.92.76,1.76-1.45,4.04-3.43,7.09-6.14.12-.11.28-.17.44-.16,1.94.13,2.7,1.48,2.47,2.67.04.22.06.45.04.71-.13,1.46-2.26,6.29-4.97,11.77ZM149.51,57.16c-4.53,3.79-7.58,7.73-8.88,10.41-.4.83-.61,1.48-.71,1.94-.09.42.26.8.68.73.09-.02.2-.04.31-.06.95-.22,4.02-3.18,9.51-12.25.35-.58-.39-1.22-.91-.79Z"/></svg>');
	--blog-title: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 170 75"><path d="M63.79,30.67c.12.18.18.41.15.62-.37,2.15-2.31,2.63-3.5,1.77-.05.12-.1.23-.16.34-3.39,7.46-6.89,15.17-9.33,21.49-2.74,7.06-3.19,9.97-3.19,11.12,0,.25.08.51.27.68.65.6.87,1.56.5,2.42-.35.79-1.13,1.27-1.95,1.27-.29,0-.58-.06-.86-.18-.6-.26-1.4-.82-1.85-2.01-1.65-4.32,3.17-15.8,11.45-34.12.29-.64-.22-1.35-.92-1.29-5.19.51-12.93,1.88-20.33,3.53-.2.04-.37.15-.5.3-3.31,3.9-6.17,7.79-8.13,11.41-2.35,4.32-3.18,7.88-2.42,10.3.53,1.68-1.12,3.52-3.37,2.46-.19-.09-.34-.26-.42-.46-2.06-5.09.13-11.92,6.71-20.91.66-.9,1.34-1.79,2.05-2.68.21-.26.23-.62.11-.93-.03-.08-.06-.17-.08-.26-.27-1.14.44-2.29,1.58-2.56.02,0,.6-.14,1.6-.37.19-.04.36-.14.48-.29,6.57-7.47,13.97-14.16,18.43-17.97,3.39-2.91,14.71-12.39,17.93-12.39,1.02,0,1.91.48,2.45,1.32,1.64,2.55-.2,7.92-7.92,25.1-.17.37-.07.82.24,1.07.46.37.73.8,1,1.21ZM41.44,30.47c1.03-.2,2.08-.39,3.14-.58,6.01-1.05,10.02-1.49,12.74-1.53.35,0,.66-.21.81-.53,2.97-6.57,6.18-13.84,7.72-18.4.28-.83-.66-1.54-1.38-1.04-5.42,3.74-15.14,11.7-23.85,20.54-.63.64-.06,1.7.82,1.54ZM82.3,32.63c-3.64,2.35-6.44,1.31-8.3.63-1.79-.66-2.27-.84-3.74.82-.01.01-.02.02-.04.03-1.47,2.43-2.74,4.64-3.33,5.86-.07.15-.09.32-.08.49.04.84-.42,1.66-1.23,2.04-.33.15-.67.23-1.01.23-.63,0-1.24-.26-1.67-.75-1.19-1.36-.75-2.62,3.07-9.02,1.82-3.05,3.74-6.06,3.76-6.09.63-.99,1.95-1.28,2.94-.65.64.41.98,1.09.98,1.8,0,.4.26.75.65.87.43.13.82.27,1.19.41,1.73.64,2.82,1.05,4.97-.53.22-.16.51-.23.78-.16,2.44.6,2.55,3.09,1.07,4.05ZM120.1,17.23c-.38,2.21-2.41,2.67-3.6,1.71-.09-.08-.19-.14-.31-.18-1.84-.51-7.86.14-15.07,1.36-.26.04-.48.19-.62.41-2.91,4.6-6.24,10-9.2,15.16-4.96,8.65-6.74,12.97-7.36,15.09-.13.45.11.95.56,1.1,1.13.37,1.92,1.67,1.18,3.33-.09.19-.26.35-.45.43-.96.41-1.77.57-2.44.57-1.43,0-2.24-.72-2.64-1.24-2.09-2.72-.36-9.02,13.82-31.97.42-.68-.17-1.53-.95-1.38-2.47.49-4.95,1.02-7.34,1.57-.16.04-.32.05-.47.05-.97,0-1.85-.67-2.07-1.66-.26-1.14.46-2.28,1.6-2.54.07-.01,6.15-1.39,13.01-2.64.25-.04.47-.19.61-.41.98-1.54,1.99-3.13,3.06-4.8.96-1.49,1.72-2.69,2.22-3.48.93-1.49,3.39-1.43,4.05.95.07.25.04.51-.1.73-.44.73-1.36,2.16-2.6,4.09-.05.07-.09.14-.14.22-.42.65.12,1.5.89,1.4,12.52-1.73,13.19,0,14.21,1.5.12.18.18.41.15.62ZM104.41,30.47c-1.74,2.92-3.6,6.54-4.23,8.34-.05.14-.02.29.05.42.33.6.38,1.38-.04,2.2-.04.07-.09.14-.15.19-.77.62-1.15.73-1.55.76-.96.07-1.83-.35-2.34-1.13-.44-.67-1.16-1.8,1.42-7.13-.05-.22-.07-.46-.05-.69.05-.51.15-1.59,3.9-5.95.08-.09.2-.17.32-.19,2.42-.42,3.53,1.72,2.66,3.2ZM107.84,23.49l-.06.11c-.35.7-1.02,1.12-1.74,1.18-.36.03-.74-.04-1.09-.21-1.05-.51-1.49-1.78-.98-2.83,0,0,.14-.3.52-.96.07-.12.18-.21.3-.25,2.51-.8,3.89,1.38,3.05,2.97ZM109.91,36.83c-.19.38.13.82.55.77.96-.13,2.56-.51,5.15-1.52,1.68-.66,3.69.96,2.6,3.38-.06.12-.17.22-.3.28-3.54,1.45-6.23,2.17-8.23,2.17-1.62,0-2.78-.47-3.57-1.41-.9-1.07-1.55-3.06.52-6.53,1.95-3.27,4.98-7.19,8.27-7.27,1.73-.05,3.2.96,4.02,2.78.05.11.06.23.04.34-.5,2.32-2.73,2.61-3.82,1.44-.17-.18-.45-.22-.66-.09-.78.47-2.28,1.78-4.19,4.98-.15.25-.27.48-.37.69ZM142.76,7.02c-.17.27-.41.65-.72,1.14-11.33,17.88-14.3,25.13-15.01,28-.12.5.39.9.85.69.61-.29,1.43-.73,2.51-1.42,1.51-.97,3.79.22,3.22,2.78-.03.15-.13.28-.26.37-2.18,1.44-4.87,3.05-7.11,3.05-.95,0-1.82-.29-2.54-1.01-2.15-2.14-2.97-6.77,14.75-34.73.3-.47.54-.85.7-1.11.62-.99,1.93-1.3,2.93-.68,1,.62,1.3,1.93.68,2.93ZM150.24,39.12c-3.9,1.68-6.71,2.5-8.74,2.5-1.46,0-2.5-.42-3.26-1.26-1.3-1.43-1.18-3.57.36-6.33,2.95-5.33,5.86-6.67,7.33-7,1.13-.25,2.19-.08,2.98.49.84.61,1.29,1.61,1.2,2.68-.11,1.27-.96,2.39-2.33,3.07-1.54.76-3.74.9-4.17.92-.04,0-.08,0-.11,0-.38.54-.77,1.16-1.18,1.89-.07.13-.14.25-.2.37-.2.4.15.86.58.77,1.2-.24,3.24-.84,6.58-2.32.13-.06.28-.07.41-.02,2.49.95,2.2,3.53.54,4.24Z"/></svg>');
	--location-title: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 170 75"><path d="M43.42,7.63c-.21.34-.61.95-1.17,1.8C14.48,51.73,17.68,61.4,19.32,63.35c1.25,1.5,5.33,3.15,18.52-2.53,1.82-.78,4.08.89,3.08,3.55-.09.23-.28.41-.5.51-7.03,3.09-12.64,4.64-16.91,4.64-3.5,0-6.09-1.04-7.83-3.11-6.24-7.43,1.15-26.92,22.6-59.58.53-.81.92-1.39,1.12-1.71.69-1.11,2.16-1.45,3.27-.75,1.11.69,1.45,2.16.75,3.27ZM46.26,48.14c-.49.11-.95.16-1.36.16-2.27,0-3.3-1.46-3.59-1.98-1.94-3.45,1.49-8.98,5.02-12.66.35-.37.79-.59,1.25-.69.22-.04.39-.21.45-.43.15-.58.52-1.16,1.2-1.68.09-.07.21-.12.33-.13,3.86-.36,3.81,3.79,3.79,5.02-.05,4.36-1.99,11.26-7.09,12.39ZM48.23,38.68c-1.67,2.09-2.4,3.75-2.64,4.7.66-.31,1.17-1.02,1.51-1.61.53-.92.89-2.02,1.14-3.09ZM61.67,42.29c-.21.43.15.92.62.86,1.07-.14,2.86-.57,5.75-1.7,1.87-.73,4.12,1.08,2.91,3.77-.06.14-.19.25-.33.31-3.95,1.61-6.96,2.42-9.19,2.42-1.8,0-3.1-.53-3.99-1.57-1.01-1.19-1.73-3.42.58-7.29,2.18-3.65,5.56-8.03,9.23-8.12,1.93-.06,3.58,1.07,4.49,3.11.05.12.07.26.04.38-.56,2.59-3.04,2.91-4.27,1.61-.19-.21-.5-.25-.74-.11-.87.52-2.54,1.99-4.68,5.56-.17.28-.31.54-.42.77ZM91.63,42.68c2.91.88,2.76,3.82.93,4.72-.78.39-1.57.58-2.34.58s-1.52-.2-2.2-.58c-.99-.57-1.73-1.48-2.28-2.51-.21-.39-.74-.44-1.01-.1-1.48,1.89-2.65,3.08-4.84,3.7-.33.09-.66.14-.97.14-1.29,0-2.4-.75-2.87-2.03-1.35-3.7,3.72-13.51,7.98-15.44,2.69-1.22,5.31.01,6.58,3.22.05.12.06.27.02.4-.42,1.48-1.45,2.15-2.44,2.19.04.04.07.09.11.13.04.05.08.09.12.15.05.07.1.14.14.22.03.05.06.11.09.16.04.08.07.16.1.25.02.06.04.12.06.18.03.1.04.2.05.3,0,.04.02.08.02.13.12,1.49.54,3.16.99,4.1.19.41.7.54,1.07.28.03-.02.05-.04.08-.06.17-.13.4-.18.61-.12ZM86.43,36.29c-.16-.16-.3-.34-.42-.55-.05-.1-.1-.17-.14-.22-1.03.44-2.52,2.56-3.66,4.75.66-.86,1.46-1.89,2.47-3.12,0,0,.01,0,.01-.01.1-.12.22-.24.35-.34.03-.02.07-.04.1-.06.1-.07.2-.14.31-.19.06-.03.12-.05.18-.07.09-.04.18-.07.27-.1.07-.02.15-.03.22-.04.07-.01.14-.03.21-.04.02,0,.03,0,.05,0,.02,0,.03,0,.05,0ZM137.67,20.4c-.42,2.46-2.7,2.98-4.01,1.91-.1-.08-.21-.16-.34-.2-2.05-.57-8.77.16-16.82,1.51-.29.05-.54.21-.69.46-3.24,5.14-6.97,11.16-10.27,16.92-5.53,9.65-7.52,14.48-8.21,16.85-.15.51.12,1.06.62,1.22,1.26.42,2.14,1.87,1.31,3.71-.1.22-.29.39-.51.49-1.08.46-1.98.64-2.72.64-1.59,0-2.5-.8-2.95-1.39-2.34-3.03-.4-10.07,15.43-35.7.47-.76-.19-1.71-1.06-1.54-2.75.55-5.52,1.14-8.19,1.75-.18.04-.35.06-.53.06-1.08,0-2.06-.75-2.31-1.85-.29-1.28.51-2.55,1.79-2.84.08-.02,6.86-1.55,14.53-2.94.28-.05.52-.21.68-.45,1.09-1.72,2.23-3.5,3.42-5.36,1.07-1.67,1.92-3,2.48-3.88,1.04-1.66,3.79-1.6,4.52,1.06.08.28.04.57-.11.82-.49.81-1.52,2.42-2.9,4.57-.05.08-.1.16-.16.24-.47.73.13,1.68.99,1.56,13.98-1.93,14.73,0,15.86,1.67.14.2.21.45.17.7ZM120.15,35.19c-1.94,3.26-4.02,7.3-4.72,9.31-.05.16-.02.32.06.47.36.67.42,1.54-.04,2.45-.04.08-.1.15-.17.21-.85.69-1.29.81-1.73.84-1.08.08-2.05-.39-2.62-1.27-.49-.75-1.29-2.01,1.59-7.96-.06-.25-.08-.51-.06-.77.05-.57.16-1.77,4.36-6.65.09-.11.22-.19.36-.21,2.7-.47,3.95,1.92,2.97,3.57ZM123.98,27.4l-.06.13c-.39.78-1.14,1.25-1.95,1.31-.41.03-.83-.04-1.22-.23-1.17-.57-1.66-1.99-1.1-3.16,0,0,.16-.33.58-1.07.07-.13.2-.23.34-.28,2.8-.89,4.34,1.54,3.41,3.31ZM126.42,48.14c-.49.11-.95.16-1.36.16-2.27,0-3.3-1.46-3.59-1.98-1.94-3.45,1.49-8.98,5.02-12.66.35-.37.79-.59,1.25-.69.22-.04.39-.21.45-.43.15-.58.52-1.16,1.2-1.68.09-.07.21-.12.33-.13,3.86-.36,3.81,3.79,3.79,5.02-.05,4.36-1.99,11.26-7.09,12.39ZM128.38,38.68c-1.67,2.09-2.4,3.75-2.64,4.7.66-.31,1.17-1.02,1.51-1.61.53-.92.89-2.02,1.14-3.09ZM153.2,46.35c-.91,1.74-3.68,1.89-4.6-.74-.1-.28-.08-.58.07-.84,1.91-3.47,3.34-7.95,3.04-9.3-.05,0-.11,0-.18,0-3.78.3-8.62,7.8-10.38,11.39-.41.84-1.26,1.33-2.13,1.33-.35,0-.71-.08-1.04-.24-1.18-.58-1.66-2-1.09-3.17.67-1.37,6.79-13.43,14.27-14.03,2.64-.21,3.93,1.12,4.47,1.94,2.38,3.59-.89,10.75-2.41,13.67Z"/></svg>');
	--access-title: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 170 75"><path d="M59.77,36.61c.15.23.23.51.18.78-.47,2.69-2.89,3.29-4.38,2.22-.07.14-.13.28-.19.43-4.23,9.32-1.99,3.67-5.05,11.57-3.42,8.82-3.99,12.46-3.99,13.9,0,.32.1.64.33.85.81.75,1.09,1.96.62,3.02-.44.99-1.41,1.58-2.43,1.58-.36,0-.72-.07-1.07-.23-.75-.33-1.75-1.03-2.32-2.51-2.06-5.4-.73-9.22,7.7-27.36.36-.8-.27-1.69-1.15-1.61-6.49.63-16.17,2.36-25.41,4.41-.24.05-.46.19-.63.38-4.14,4.88-7.71,9.74-10.17,14.26-2.94,5.4-3.98,9.86-3.02,12.88.67,2.1-1.41,4.41-4.21,3.07-.24-.12-.43-.33-.53-.58-2.57-6.37.16-14.9,8.39-26.14.82-1.12,1.68-2.24,2.56-3.35.26-.33.29-.77.14-1.16-.04-.11-.08-.22-.1-.33-.34-1.43.54-2.86,1.97-3.2.03,0,.76-.18,2-.46.23-.05.45-.18.6-.36,8.21-9.34,17.47-17.7,23.04-22.47,4.24-3.63,18.39-15.49,22.41-15.49,1.27,0,2.39.6,3.06,1.64,2.05,3.18-.25,9.9-9.9,31.38-.21.46-.09,1.02.3,1.34.58.47.91,1,1.25,1.52ZM31.83,36.36c1.29-.25,2.61-.49,3.93-.72,7.52-1.31,12.53-1.86,15.93-1.91.44,0,.83-.27,1.01-.67,3.71-8.21,7.72-17.3,9.65-23,.35-1.04-.82-1.92-1.73-1.3-6.78,4.67-18.93,14.62-29.82,25.68-.78.79-.07,2.13,1.02,1.92ZM64.45,44.31c-.24.48.16,1.03.69.96,1.2-.16,3.2-.63,6.44-1.9,2.1-.82,4.61,1.21,3.25,4.22-.07.16-.21.28-.37.35-4.43,1.81-7.79,2.71-10.29,2.71-2.02,0-3.47-.59-4.47-1.76-1.13-1.33-1.93-3.83.65-8.16,2.44-4.09,6.22-8.99,10.33-9.09,2.16-.06,4,1.2,5.03,3.48.06.13.08.29.05.43-.63,2.9-3.41,3.26-4.78,1.8-.22-.23-.56-.28-.83-.12-.98.58-2.85,2.23-5.24,6.23-.19.32-.34.6-.47.86ZM86.1,44.31c-.24.48.16,1.03.69.96,1.2-.16,3.2-.63,6.44-1.9,2.1-.82,4.61,1.21,3.25,4.22-.07.16-.21.28-.37.35-4.43,1.81-7.79,2.71-10.29,2.71-2.02,0-3.47-.59-4.47-1.76-1.13-1.33-1.93-3.83.65-8.16,2.44-4.09,6.22-8.99,10.33-9.09,2.16-.06,4,1.2,5.03,3.48.06.13.08.29.05.43-.63,2.9-3.41,3.26-4.78,1.8-.22-.23-.56-.28-.83-.12-.98.58-2.85,2.23-5.24,6.23-.19.32-.34.6-.47.86ZM118.06,47.17c-4.88,2.1-8.39,3.12-10.92,3.12-1.82,0-3.13-.53-4.08-1.58-1.62-1.79-1.47-4.46.45-7.92,3.69-6.66,7.32-8.34,9.16-8.74,1.42-.32,2.74-.1,3.72.62,1.05.76,1.62,2.02,1.5,3.35-.13,1.59-1.2,2.98-2.92,3.84-1.93.96-4.68,1.13-5.21,1.15-.05,0-.09,0-.14,0-.47.67-.97,1.45-1.47,2.36-.09.16-.17.32-.24.46-.25.5.18,1.07.73.96,1.5-.29,4.05-1.05,8.23-2.9.16-.07.35-.08.51-.02,3.11,1.18,2.75,4.41.68,5.3ZM128.33,53.69c-.13,0-.3,0-.48,0-1.39,0-3.94-.19-4.85-2.29-.3-.71-.84-2.74,1.88-4.68.12-.08.27-.13.41-.13,1.44.01,2.4.64,2.87,1.48.12.21.36.33.6.32,2.33-.15,5.86-.96,7.83-1.89.43-.2.51-.76.18-1.09-1.11-1.12-2-2.17-2.72-3.16-.25-.34-.75-.36-1.03-.05l-2.11,2.28c-1.54,1.66-4.69.91-4.76-2.41,0-.17.07-.34.18-.47l5.08-5.49c.11-.12.17-.27.17-.43.04-.9.26-1.66.56-2.31,1.09-2.31,3.43-3.29,5.16-3.06,1.97.25,3.31,1.99,2.8,4.1-.03.11-.09.22-.17.31l-2.27,2.44c-.2.21-.24.53-.1.79.6,1.08,1.73,2.59,3.83,4.56,2.23,2.09,1.73,4.25,1.41,5.09-1.85,4.81-12.06,6.05-14.49,6.1ZM152.11,53.69c-.13,0-.3,0-.48,0-1.39,0-3.94-.19-4.85-2.29-.3-.71-.84-2.74,1.88-4.68.12-.08.27-.13.41-.13,1.44.01,2.4.64,2.87,1.48.12.21.36.33.6.32,2.33-.15,5.86-.96,7.83-1.89.43-.2.51-.76.18-1.09-1.11-1.12-2-2.17-2.72-3.16-.25-.34-.75-.36-1.03-.05l-2.11,2.28c-1.54,1.66-4.69.91-4.76-2.41,0-.17.07-.34.18-.47l5.08-5.49c.11-.12.17-.27.17-.43.04-.9.26-1.66.56-2.31,1.09-2.31,3.43-3.29,5.16-3.06,1.97.25,3.31,1.99,2.8,4.1-.03.11-.09.22-.17.31l-2.27,2.44c-.2.21-.24.53-.1.79.6,1.08,1.73,2.59,3.83,4.56,2.23,2.09,1.73,4.25,1.41,5.09-1.85,4.81-12.06,6.05-14.49,6.1Z"/></svg>');
	--news-title: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 170 75"><path d="M76.16,35.82c-1.79,6.82-4.51,17.14-2.26,19.82.16.19.58.7,2.07.58,1.74-.14,3.15,1.83,1.7,3.78-.15.2-.36.34-.6.37-3.5.53-5.43-.82-6.42-1.99-3.66-4.37-1.09-14.16,1.4-23.63,1.01-3.83,2.34-8.88,2.31-11.01-.07.03-.14.07-.21.11-4.41,2.43-12.84,11.02-22.01,22.42-1.09,1.36-2.12,2.66-3.09,3.92-.04.06-.08.12-.11.18-9.05,20.04-11.59,20.16-12.98,20.23-.04,0-.09,0-.13,0-1.19,0-2.2-.74-2.52-1.88-.33-1.18-.29-2.9,4.17-9.72,2.06-3.15,4.75-6.91,7.78-10.85.04-.06.08-.12.11-.18.89-1.99,1.83-4.15,2.82-6.49,4.87-11.53,7.59-19.64,8.6-23.78.09-.38-.07-.8-.42-.99-.17-.09-.33-.2-.47-.34-.85-.81-.88-2.16-.06-3,.57-.59,2.29-2.4,4.2-1.37,1.98,1.06,1.54,3.81.97,6.29-.77,3.39-2.38,8.21-4.33,13.42-.35.94.85,1.67,1.52.93,4.72-5.17,10.01-10.37,13.91-12.52,2.05-1.13,3.73-1.2,5-.21,2.58,2.01,1.51,6.58-.94,15.92ZM93.55,48.88c-3.9,1.68-6.71,2.5-8.74,2.5-1.46,0-2.5-.42-3.26-1.26-1.3-1.43-1.18-3.57.36-6.33,2.95-5.33,5.86-6.67,7.33-7,1.13-.25,2.19-.08,2.98.49.84.61,1.29,1.61,1.2,2.68-.11,1.27-.96,2.39-2.33,3.07-1.54.76-3.74.9-4.17.92-.04,0-.08,0-.11,0-.38.54-.77,1.16-1.18,1.89-.07.13-.14.25-.2.37-.2.4.15.86.58.77,1.2-.24,3.24-.84,6.58-2.32.13-.06.28-.07.41-.02,2.49.95,2.2,3.53.54,4.24ZM117.03,44.51c-1.11,2.26-4.07,7.49-7.81,7.49h-.05c-1.46-.02-2.68-.64-3.43-1.75-.33-.48-.54-1.03-.67-1.61-.09-.39-.56-.55-.87-.29-1.28,1.06-2.42,1.98-2.89,2.29-.46.3-.93.43-1.36.43-.65,0-1.22-.28-1.6-.68-1.27-1.33-.6-2.93,1.5-6.85,1.17-2.18,2.58-4.57,3.28-5.55.68-.96,2.01-1.18,2.96-.5.96.68,1.18,2.01.5,2.96-.14.19-.3.44-.48.72.07-.06.15-.13.22-.19.8-.69,1.97-.67,2.75,0,.82.54,1.18,1.58.82,2.53-.41,1.09-.7,2.4-.76,3.32-.03.48.53.77.89.45,1.48-1.33,3.61-5.04,4.2-7.09.04-.16,0-.31-.08-.45-.39-.62-.47-1.49,0-2.43.04-.08.1-.15.17-.21,1.28-.98,2.87-.76,3.72.3.42.52,1.53,1.92-1.02,7.12ZM125,54.1c-.11,0-.24,0-.38,0-1.11,0-3.15-.15-3.88-1.83-.24-.57-.67-2.19,1.5-3.74.09-.07.21-.11.33-.11,1.15,0,1.92.52,2.29,1.18.1.17.29.26.48.25,1.86-.12,4.69-.77,6.26-1.51.34-.16.41-.61.15-.87-.89-.9-1.6-1.74-2.17-2.52-.2-.27-.6-.29-.83-.04l-1.69,1.82c-1.23,1.33-3.75.73-3.81-1.92,0-.14.05-.27.15-.38l4.07-4.39c.09-.09.13-.22.14-.35.03-.72.21-1.33.45-1.85.87-1.84,2.74-2.63,4.13-2.45,1.58.21,2.65,1.59,2.24,3.28-.02.09-.07.18-.13.25l-1.81,1.96c-.16.17-.19.42-.08.63.48.87,1.38,2.07,3.06,3.64,1.78,1.67,1.38,3.4,1.13,4.07-1.48,3.85-9.65,4.84-11.59,4.88Z"/></svg>');
	--feature-title: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 180 75"><path d="M50.38,37.37c-.32,2.72-2.68,3.37-4.13,2.36-.11-.08-.23-.15-.37-.17-2.9-.54-14.32,1.29-24.49,3.51-.27.06-.5.23-.65.47-8.65,14.33-11.94,20.98-13.12,24.07-.15.39-.08.84.22,1.12.7.65,1.06,1.74.63,3.11-.06.18-.25.42-.41.52-1.15.73-2.11.98-2.88.98-1.25,0-2.02-.67-2.35-1.05-1.51-1.72-1.03-4.35,1.89-10.44,1.79-3.74,4.56-8.79,8.21-15.03,1.1-1.88,2.23-3.78,3.38-5.67.08-.13.12-.27.13-.41.09-.69.47-1.32,1.04-1.72.12-.08.23-.19.3-.31,5.12-8.41,10.18-16.35,12.97-20.72.83-1.29,1.44-2.25,1.76-2.77.73-1.17,2.28-1.53,3.45-.8,1.17.73,1.53,2.28.8,3.45-.33.53-.95,1.5-1.79,2.81-3.48,5.45-6.53,10.29-9.2,14.61-.46.75.19,1.68,1.05,1.5,23.04-4.57,22.17-.93,23.16-.29.25.16.41.58.38.87ZM72.44,5.06c-.43,2.64-2.89,3.18-4.28,2.01-.1-.08-.2-.16-.33-.2-3.7-1.12-22.25,1.89-37.91,5.45-.19.04-.37.06-.56.06-1.14,0-2.18-.79-2.44-1.95-.31-1.35.54-2.69,1.89-3,.09-.02,9.55-2.17,19.25-3.82,21.99-3.74,22.82-1.31,24.22.75.12.17.2.48.16.69ZM69.62,46.44c-4.6,1.98-7.91,2.95-10.3,2.95-1.72,0-2.95-.5-3.85-1.49-1.53-1.69-1.39-4.2.42-7.47,3.48-6.28,6.91-7.86,8.64-8.25,1.34-.3,2.58-.09,3.51.58.99.72,1.53,1.9,1.42,3.16-.13,1.5-1.13,2.81-2.75,3.62-1.82.9-4.41,1.06-4.91,1.09-.05,0-.09,0-.13,0-.45.63-.91,1.37-1.39,2.23-.08.15-.16.3-.23.43-.24.47.17,1.01.69.91,1.41-.28,3.82-.99,7.76-2.74.15-.07.33-.08.48-.02,2.93,1.12,2.6,4.16.64,5ZM91.21,44.16c3.08.93,2.92,4.03.99,4.98-.82.41-1.66.61-2.47.61s-1.6-.21-2.33-.62c-1.05-.6-1.83-1.56-2.41-2.65-.22-.41-.78-.47-1.07-.1-1.56,1.99-2.8,3.25-5.12,3.91-.35.1-.69.15-1.03.15-1.36,0-2.53-.79-3.03-2.14-1.43-3.9,3.93-14.26,8.43-16.3,2.84-1.29,5.61.01,6.95,3.4.05.13.06.29.02.42-.45,1.57-1.53,2.27-2.58,2.31.04.04.07.09.11.13.05.05.09.1.13.15.06.08.1.15.15.23.03.06.07.11.1.17.04.08.07.17.1.26.02.06.05.12.06.19.03.1.04.21.06.31,0,.05.02.09.02.13.13,1.58.57,3.34,1.05,4.33.21.43.74.57,1.13.29.03-.02.05-.04.08-.06.18-.14.43-.19.65-.12ZM85.71,37.41c-.17-.17-.32-.36-.44-.58-.06-.1-.1-.18-.15-.24-1.09.47-2.66,2.71-3.86,5.02.7-.91,1.55-2,2.61-3.29,0,0,.01,0,.02-.02.11-.13.23-.25.37-.36.03-.03.07-.04.1-.07.1-.07.21-.15.33-.2.06-.03.13-.05.19-.07.09-.04.19-.08.29-.1.08-.02.16-.03.23-.04.07-.01.14-.03.22-.04.02,0,.03,0,.05,0s.03,0,.05,0ZM139.82,20.63c-.44,2.6-2.85,3.14-4.24,2.02-.11-.09-.23-.17-.36-.21-2.17-.6-9.26.17-17.77,1.6-.3.05-.57.22-.73.48-3.43,5.43-7.36,11.79-10.84,17.87-5.84,10.2-7.94,15.29-8.67,17.79-.16.53.13,1.12.65,1.29,1.33.44,2.26,1.97,1.39,3.92-.1.23-.3.41-.54.51-1.14.49-2.09.67-2.88.67-1.68,0-2.64-.85-3.11-1.46-2.47-3.2-.43-10.63,16.29-37.69.49-.8-.2-1.81-1.12-1.62-2.91.58-5.83,1.2-8.65,1.85-.19.04-.37.06-.56.06-1.14,0-2.18-.79-2.44-1.95-.31-1.35.54-2.69,1.89-3,.08-.02,7.25-1.64,15.34-3.11.29-.05.55-.22.71-.48,1.15-1.81,2.35-3.7,3.61-5.66,1.13-1.76,2.03-3.17,2.62-4.1,1.1-1.75,4-1.68,4.78,1.12.08.29.04.61-.11.87-.52.86-1.6,2.55-3.06,4.82-.05.08-.11.17-.16.26-.49.77.14,1.77,1.05,1.65,14.76-2.04,15.55,0,16.75,1.77.15.22.22.48.17.74ZM128.57,47.71c-.05.17-.02.34.06.5.45.87.4,2.05-.52,3.15-.06.07-.15.14-.24.18-1.63.74-3.3.18-4.06-1.16-.23-.41-.56-.98-.37-2.41.08-.56-.55-.95-1.01-.61-1.82,1.36-3.38,2.3-4.29,2.51-2.73.65-4.07-.59-4.61-1.38-1.74-2.53.01-7.65,5.2-15.25,1.2-1.76,4.27-1.5,4.78,1.6.03.16-.02.33-.11.47-1.62,2.29-3,4.61-3.97,6.52-.31.61.43,1.22.96.79,3.65-2.9,8.86-7.77,10.69-11.09.08-.15.22-.27.38-.31,3.01-.8,4.51,1.83,3.45,3.65-2.7,4.64-5.59,10.36-6.34,12.83ZM158.73,38.79c-4.29,2.78-7.6,1.55-9.78.74-2.11-.78-2.68-.99-4.4.96-.01.01-.03.02-.04.04-1.73,2.87-3.23,5.47-3.93,6.91-.09.18-.11.37-.1.57.05.99-.5,1.96-1.45,2.4-.39.18-.79.27-1.19.27-.75,0-1.46-.31-1.97-.89-1.4-1.6-.89-3.09,3.61-10.64,2.15-3.6,4.41-7.14,4.43-7.18.74-1.17,2.29-1.51,3.46-.77.75.48,1.16,1.29,1.15,2.12,0,.47.31.89.77,1.02.5.15.97.32,1.4.48,2.04.76,3.33,1.24,5.86-.62.26-.19.6-.27.92-.19,2.87.7,3,3.64,1.26,4.78ZM176.48,46.44c-4.6,1.98-7.91,2.95-10.3,2.95-1.72,0-2.95-.5-3.85-1.49-1.53-1.69-1.39-4.2.42-7.47,3.48-6.28,6.91-7.86,8.64-8.25,1.34-.3,2.58-.09,3.51.58.99.72,1.53,1.9,1.42,3.16-.13,1.5-1.13,2.81-2.75,3.62-1.82.9-4.41,1.06-4.91,1.09-.04,0-.09,0-.13,0-.45.63-.91,1.37-1.39,2.23-.08.15-.16.3-.23.43-.24.47.17,1.01.69.91,1.41-.28,3.82-.99,7.76-2.74.15-.07.33-.08.48-.02,2.93,1.12,2.6,4.16.64,5Z"/></svg>');
	--spot-title: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 395 75"><path d="M66.25,9.37c-1.77,1.3-3.56.47-4.07-.94-.14-.38-.44-.68-.85-.73-4.37-.57-19.36,3.11-30.82,10.06-5.91,3.58-9.26,7.21-8.97,9.71.25,2.16,3.4,4.3,8.85,6.05,14.01,4.48,15.74,10.74,14.73,15.2-2.66,11.71-29.28,22.99-38.21,22.99-.39,0-.75-.02-1.07-.07-3.64-.5-5.03-2.43-5.55-3.95-2.23-6.49,8.21-17.9,11.47-21.24,1.38-1.42,4.08-.76,4.23,2.03.02.29-.09.58-.3.79-5.88,5.91-11.77,14.28-10.88,16.87.17.49,1.12.69,1.68.76,5.71.79,31.84-9.93,33.96-19.25,1.03-4.55-5.7-7.72-11.52-9.59-11.53-3.69-12.87-8.97-11.97-12.75C19.82,13.35,52.21,1.45,62.27,3.05c4.32.68,5.05,3.82,4.31,5.88-.06.17-.18.33-.33.44ZM74.41,35.11c.76,4.49-6.02,14.98-11.93,16.87-.71.23-1.41.34-2.08.34-1.91,0-3.59-.92-4.82-2.62-.26-.35-.79-.33-1.02.04-4.9,8.36-8.62,15.35-9.44,18.22-.05.17,0,.35.09.5.52.85.52,2.06-.44,3.18-.06.08-.15.14-.25.18-1.62.67-3.23.09-3.95-1.24-.83-1.52-1.86-3.42,10.4-24.15,5.74-9.71,11.8-19.11,11.86-19.2,1.1-1.71,4.01-1.54,4.6,1.38.03.15,0,.31-.09.45-.72,1.11-1.45,2.24-2.17,3.38-.33.52.23,1.15.77.87,1.54-.77,3.12-1.26,4.67-1.3,1.97-.05,3.46,1.17,3.79,3.11ZM69.06,38.29c.23-.52-.3-1.05-.81-.81-3.2,1.52-6.99,5.27-9.49,8.29.12.15.23.31.31.49.74,1.52,1.33,1.35,1.9,1.17,3.03-.91,6.64-5.9,8.09-9.15ZM80.57,49.54c-.5.11-.95.16-1.37.16-2.29,0-3.33-1.48-3.62-1.99-1.96-3.48,1.5-9.05,5.06-12.76.35-.37.8-.6,1.26-.69.22-.04.39-.21.45-.43.15-.59.53-1.17,1.21-1.7.09-.07.21-.12.33-.13,3.89-.36,3.84,3.81,3.82,5.06-.05,4.4-2,11.35-7.14,12.49ZM82.55,40.01c-1.68,2.11-2.42,3.78-2.66,4.74.66-.31,1.18-1.03,1.52-1.62.53-.93.9-2.04,1.14-3.12ZM130.95,21.58c-.42,2.48-2.72,3-4.04,1.92-.11-.08-.22-.16-.35-.2-2.07-.57-8.84.16-16.96,1.53-.29.05-.54.21-.7.46-3.27,5.18-7.02,11.25-10.35,17.06-5.58,9.73-7.58,14.59-8.28,16.98-.15.51.12,1.07.62,1.23,1.27.42,2.16,1.88,1.32,3.74-.1.22-.29.39-.51.49-1.08.46-1.99.64-2.75.64-1.6,0-2.52-.81-2.97-1.4-2.36-3.06-.41-10.15,15.55-35.98.47-.76-.19-1.72-1.07-1.55-2.78.55-5.57,1.15-8.26,1.76-.18.04-.36.06-.53.06-1.09,0-2.08-.75-2.33-1.86-.29-1.29.51-2.57,1.8-2.86.08-.02,6.92-1.57,14.64-2.97.28-.05.53-.21.68-.46,1.1-1.73,2.24-3.53,3.44-5.4,1.08-1.68,1.94-3.02,2.5-3.92,1.04-1.67,3.82-1.61,4.56,1.07.08.28.04.58-.11.83-.49.82-1.53,2.43-2.92,4.6-.05.08-.1.16-.16.24-.47.74.13,1.69,1,1.57,14.09-1.95,14.84,0,15.99,1.69.14.21.21.46.17.7ZM109.82,52.08c-.12,0-.27,0-.43,0-1.25,0-3.55-.17-4.36-2.06-.27-.64-.76-2.47,1.69-4.21.1-.07.24-.12.37-.12,1.3,0,2.16.58,2.58,1.33.11.19.32.3.54.28,2.09-.13,5.28-.86,7.05-1.7.38-.18.46-.68.16-.98-1-1.01-1.8-1.96-2.45-2.84-.22-.31-.67-.33-.93-.05l-1.9,2.05c-1.38,1.49-4.22.82-4.29-2.17,0-.16.06-.31.17-.42l4.58-4.94c.1-.11.15-.25.16-.39.03-.81.23-1.5.51-2.08.98-2.08,3.08-2.96,4.65-2.75,1.77.23,2.98,1.79,2.52,3.69-.02.1-.08.2-.15.28l-2.04,2.2c-.18.19-.22.48-.09.71.54.97,1.56,2.33,3.44,4.1,2.01,1.89,1.55,3.83,1.27,4.58-1.66,4.33-10.85,5.44-13.04,5.49ZM144.36,41.26c0,1.79-1.45,3.24-3.24,3.24s-3.24-1.45-3.24-3.24,1.45-3.24,3.24-3.24,3.24,1.51,3.24,3.24ZM171.13,70.34c-1.73.4-3.31.6-4.74.6-3.07,0-5.44-.92-7.05-2.76-2.91-3.32-2.87-9.08.13-17.13,3.29-8.84,9.88-19.73,17.63-29.14,4.91-5.96,14.3-16.11,22.06-17.18,3.05-.42,4.53.99,5.14,1.88,2.61,3.76-1.04,11.41-2.72,14.52-.95,1.75-3.76,1.84-4.64-.85-.09-.26-.06-.55.08-.79,2.19-3.81,3.8-8.7,3.39-10.04-.11-.01-.3-.01-.59.03-6.35.88-17.52,12.18-26.14,25.01-.5.74.2,1.71,1.06,1.46,11.3-3.28,11.67.12,12.22.37.32.14.47.54.43.89-.3,2.61-2.57,3.24-3.96,2.26-.16-.11-.34-.2-.54-.21-2.09-.11-8.26,1.55-14.19,3.84-.21.08-.39.24-.5.45-1.69,3.13-3.14,6.24-4.24,9.19-2.24,6.01-2.61,10.5-1.02,12.31,1.39,1.58,4.64,1.23,7.12.66,5.64-1.3,13.38-5.22,21.73-11.01.2-.14.45-.21.69-.16,2.82.57,3.04,3.41,1.38,4.54-6.08,4.16-14.95,9.49-22.73,11.29ZM217.31,31.37c.29-.2,2.04-1.3,3.46.08,1.54,1.51-.16,3.37-.16,3.37,0,0-4.34,4.22-8.93,8.69-.22.21-.25.56-.06.8.61.82,1.27,1.31,1.96,1.25,2-.18,3.63,2.13,1.85,4.37-.08.11-.21.18-.34.21-.58.14-1.16.21-1.7.21-2.15,0-3.83-1.06-5.14-2.61-.23-.26-.63-.28-.88-.03-2.31,2.25-4.33,4.21-5.41,5.27-.46.45-1.07.68-1.67.68-1.28,0-2.56-1.02-2.51-3.06,0-.16.07-.3.19-.41.8-.78,3.85-3.75,7.3-7.11.17-.17.23-.42.15-.64-1.08-3.07-1.48-6.02-1.56-6.7-.24-2.03,2.12-3.76,4.45-1.85.12.1.2.25.21.42.09,1.12.3,2.42.61,3.74.11.46.68.63,1.02.3,3.65-3.55,6.76-6.58,7.11-6.92.03-.02.04-.04.08-.06ZM243.29,35.11c.76,4.49-6.02,14.98-11.93,16.87-.71.23-1.41.34-2.08.34-1.91,0-3.59-.92-4.82-2.62-.26-.35-.79-.33-1.02.04-4.9,8.36-8.62,15.35-9.44,18.22-.05.17,0,.35.09.5.52.85.52,2.06-.44,3.18-.06.08-.15.14-.25.18-1.62.67-3.23.09-3.95-1.24-.83-1.52-1.86-3.42,10.4-24.15,5.74-9.71,11.8-19.11,11.86-19.2,1.1-1.71,4.01-1.54,4.6,1.38.03.15,0,.31-.09.45-.72,1.11-1.45,2.24-2.17,3.38-.33.52.23,1.15.77.87,1.54-.77,3.12-1.26,4.67-1.3,1.97-.05,3.46,1.17,3.79,3.11ZM237.94,38.29c.23-.52-.3-1.05-.81-.81-3.2,1.52-6.99,5.27-9.49,8.29.12.15.23.31.31.49.74,1.52,1.33,1.35,1.9,1.17,3.03-.91,6.64-5.9,8.09-9.15ZM258.59,46.22c-4.39,1.89-7.55,2.81-9.83,2.81-1.64,0-2.82-.48-3.67-1.42-1.46-1.62-1.32-4.01.4-7.13,3.32-5.99,6.59-7.5,8.24-7.87,1.28-.28,2.46-.09,3.35.56.95.69,1.46,1.82,1.35,3.02-.12,1.43-1.08,2.69-2.62,3.45-1.74.86-4.21,1.02-4.69,1.04-.04,0-.08,0-.13,0-.43.6-.87,1.31-1.33,2.12-.08.15-.15.28-.22.41-.23.45.16.96.66.87,1.35-.26,3.64-.94,7.41-2.61.14-.06.32-.08.46-.02,2.8,1.06,2.48,3.97.61,4.77ZM285.1,38.92c-4.1,2.65-7.25,1.48-9.34.71-2.01-.75-2.56-.95-4.2.92-.01.01-.03.02-.04.04-1.65,2.74-3.08,5.22-3.75,6.59-.08.17-.1.36-.09.55.05.95-.47,1.87-1.38,2.29-.37.17-.76.25-1.14.25-.71,0-1.4-.29-1.88-.85-1.33-1.53-.85-2.95,3.45-10.15,2.05-3.43,4.21-6.82,4.23-6.85.71-1.11,2.19-1.44,3.3-.73.72.46,1.1,1.23,1.1,2.02,0,.45.3.85.73.98.48.14.93.31,1.34.46,1.94.72,3.18,1.18,5.59-.6.25-.18.58-.26.88-.18,2.74.67,2.87,3.48,1.2,4.56ZM295.59,36.49c-1.95,3.29-4.05,7.36-4.75,9.38-.05.16-.02.33.06.47.37.67.42,1.55-.04,2.47-.04.08-.1.15-.17.21-.86.7-1.3.82-1.74.85-1.08.08-2.06-.39-2.64-1.28-.49-.76-1.3-2.02,1.6-8.02-.06-.25-.08-.51-.06-.78.05-.57.16-1.79,4.39-6.7.09-.11.22-.19.36-.21,2.73-.47,3.98,1.94,2.99,3.6ZM299.45,28.63l-.07.13c-.39.78-1.15,1.26-1.96,1.32-.41.03-.83-.04-1.23-.24-1.18-.58-1.67-2-1.11-3.19,0,0,.16-.33.59-1.08.07-.13.2-.24.34-.28,2.82-.9,4.38,1.55,3.43,3.34ZM311.05,46.22c-4.39,1.89-7.55,2.81-9.83,2.81-1.64,0-2.82-.48-3.67-1.42-1.46-1.62-1.32-4.01.4-7.13,3.32-5.99,6.59-7.5,8.24-7.87,1.28-.28,2.46-.09,3.35.56.95.69,1.46,1.82,1.35,3.02-.12,1.43-1.08,2.69-2.62,3.45-1.74.86-4.21,1.02-4.69,1.04-.04,0-.08,0-.13,0-.43.6-.87,1.31-1.33,2.12-.08.15-.15.28-.22.41-.23.45.16.96.66.87,1.35-.26,3.64-.94,7.41-2.61.14-.06.32-.08.46-.02,2.8,1.06,2.48,3.97.61,4.77ZM332.42,47.73c-.91,1.76-3.71,1.9-4.64-.74-.1-.28-.08-.59.07-.85,1.93-3.5,3.36-8.01,3.06-9.37-.05,0-.11,0-.19,0-3.81.3-8.69,7.86-10.46,11.48-.42.85-1.27,1.34-2.15,1.34-.35,0-.71-.08-1.05-.24-1.19-.58-1.68-2.01-1.1-3.2.68-1.38,6.84-13.54,14.38-14.14,2.66-.21,3.96,1.13,4.5,1.95,2.4,3.62-.9,10.84-2.43,13.77ZM343.57,43.64c-.21.43.15.93.62.86,1.08-.14,2.88-.57,5.79-1.71,1.89-.74,4.15,1.08,2.93,3.8-.06.14-.19.25-.33.31-3.98,1.63-7.01,2.44-9.26,2.44-1.82,0-3.13-.53-4.02-1.58-1.02-1.2-1.74-3.45.59-7.34,2.2-3.68,5.6-8.09,9.3-8.18,1.95-.06,3.6,1.08,4.52,3.13.05.12.07.26.04.39-.57,2.61-3.07,2.94-4.3,1.62-.19-.21-.5-.25-.75-.11-.88.52-2.56,2.01-4.71,5.6-.17.29-.31.54-.42.77ZM372.33,46.22c-4.39,1.89-7.55,2.81-9.83,2.81-1.64,0-2.82-.48-3.67-1.42-1.46-1.62-1.32-4.01.4-7.13,3.32-5.99,6.59-7.5,8.24-7.87,1.28-.28,2.46-.09,3.35.56.95.69,1.46,1.82,1.35,3.02-.12,1.43-1.08,2.69-2.62,3.45-1.74.86-4.21,1.02-4.69,1.04-.04,0-.08,0-.13,0-.43.6-.87,1.31-1.33,2.12-.08.15-.15.28-.22.41-.23.45.16.96.66.87,1.35-.26,3.64-.94,7.41-2.61.14-.06.32-.08.46-.02,2.8,1.06,2.48,3.97.61,4.77ZM381.58,52.08c-.12,0-.27,0-.43,0-1.25,0-3.55-.17-4.36-2.06-.27-.64-.76-2.47,1.69-4.21.11-.07.24-.12.37-.12,1.3,0,2.16.58,2.58,1.33.11.19.32.3.54.28,2.09-.13,5.28-.86,7.05-1.7.38-.18.46-.68.16-.98-1-1.01-1.8-1.96-2.45-2.84-.22-.31-.67-.33-.93-.05l-1.9,2.05c-1.38,1.49-4.22.82-4.29-2.17,0-.16.06-.31.17-.42l4.58-4.94c.1-.11.15-.25.16-.39.03-.81.23-1.5.51-2.08.98-2.08,3.08-2.96,4.65-2.75,1.78.23,2.98,1.79,2.52,3.69-.03.1-.08.2-.15.28l-2.04,2.2c-.18.19-.22.48-.09.71.54.97,1.56,2.33,3.44,4.1,2.01,1.89,1.55,3.83,1.27,4.58-1.66,4.33-10.85,5.44-13.04,5.49Z"/></svg>');
	--food-title: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 254 75"><path d="M73.81,35.56c-.41,2.65-2.76,3.28-4.22,2.26-.13-.09-.26-.17-.41-.19-.63-.11-1.65-.12-2.96-.04-.38.02-.72.23-.9.56-6.72,11.77-13.41,25.23-14.83,30.74-.11.45.07.93.46,1.17,1.06.64,1.67,2.04.92,3.75-.1.22-.29.41-.51.52-1,.49-1.85.67-2.56.67-1.54,0-2.44-.85-2.81-1.3-1.33-1.63-2.06-4.36,3.75-16.87.5-1.08-.82-2.08-1.72-1.3-.18.15-.36.31-.53.46-10.85,9.33-19.01,13.92-24.8,13.92-1.08,0-2.08-.16-3-.48-3.03-1.06-7.84-4.39-5.97-14.82,1.7-9.51,8.53-22.76,17.83-34.58C36.27,13.98,48.38,0,58.72,0c.07,0,.14,0,.21,0,2.28.04,4.11,1,5.15,2.71,1.74,2.85,1.11,7.35-1.85,13.37-.94,1.92-3.95,2.14-5.02-.68-.11-.3-.1-.64.05-.93,2.68-5.19,2.89-8.28,2.41-9.07-.12-.19-.57-.23-.84-.23h-.12c-11.61,0-36.54,31.38-39.94,50.35-.91,5.08-.04,8.12,2.59,9.04,6.1,2.13,22.58-11.34,34.65-23.6.75-.77.08-2.05-.98-1.87-4.2.73-8.79,1.65-13.05,2.61-.19.04-.38.07-.57.07-1.88,0-3.46-2.06-2.03-4.45.15-.24.41-.41.68-.47,33.25-7.63,32.24-3.15,33.34-2.36.3.21.45.73.4,1.09ZM81.69,48.31c-.54.12-1.03.17-1.47.17-2.47,0-3.59-1.59-3.91-2.15-2.11-3.75,1.62-9.77,5.46-13.78.38-.4.86-.65,1.36-.75.24-.05.43-.23.48-.46.16-.63.57-1.27,1.3-1.83.1-.08.23-.13.36-.14,4.2-.39,4.14,4.12,4.12,5.46-.06,4.75-2.16,12.25-7.71,13.48ZM83.83,38.03c-1.82,2.27-2.62,4.08-2.87,5.11.71-.34,1.27-1.11,1.64-1.75.57-1.01.97-2.2,1.24-3.36ZM108.97,46.04c-.05.17-.02.35.07.51.47.9.42,2.11-.54,3.24-.07.08-.15.14-.25.19-1.68.76-3.39.19-4.19-1.19-.24-.42-.58-1.01-.38-2.48.08-.58-.57-.98-1.04-.63-1.88,1.4-3.48,2.37-4.42,2.59-2.82.67-4.19-.6-4.75-1.42-1.79-2.6.01-7.88,5.36-15.71,1.24-1.82,4.4-1.55,4.92,1.65.03.17-.02.34-.12.48-1.67,2.36-3.09,4.74-4.09,6.72-.32.63.44,1.25.99.81,3.76-2.99,9.13-8,11.01-11.42.09-.15.22-.27.4-.32,3.1-.82,4.65,1.88,3.56,3.76-2.78,4.78-5.75,10.67-6.54,13.22ZM140.04,36.85c-4.42,2.86-7.83,1.6-10.08.76-2.17-.81-2.76-1.02-4.54.99-.01.01-.03.02-.04.04-1.79,2.96-3.33,5.64-4.04,7.12-.09.18-.11.39-.1.59.05,1.02-.51,2.02-1.5,2.47-.4.19-.82.27-1.23.27-.77,0-1.51-.32-2.03-.91-1.44-1.65-.92-3.18,3.72-10.96,2.21-3.71,4.54-7.36,4.56-7.4.77-1.2,2.36-1.55,3.57-.79.77.49,1.19,1.33,1.19,2.18,0,.49.32.91.79,1.05.52.15,1,.33,1.44.49,2.1.78,3.43,1.27,6.04-.64.27-.2.62-.28.95-.2,2.96.72,3.09,3.75,1.29,4.92ZM173.42,32.36c.49.82,1.97,3.32-3.84,14.05-1.02,1.88-4.02,1.99-4.99-.87-.1-.3-.08-.63.08-.91.6-1.07,1.18-2.2,1.71-3.31.52-1.09-.82-2.1-1.73-1.31-1.7,1.47-3.54,3.21-5.28,4.99-1.33,1.37-3.87.99-4.53-1.5-.06-.21-.03-.44.05-.65,1.06-2.76,1.93-5.8,2.43-8.22.23-1.14-1.22-1.83-1.95-.92-2.31,2.91-5.22,7.65-7.58,12.57-.44.93-1.37,1.47-2.33,1.47-1.05,0-2.14-.64-2.72-2.12-.11-.27-.08-.57.04-.83,2.22-4.74,9.08-18.34,15.16-19.1,1.52-.19,2.91.35,3.81,1.49.95,1.2,1.22,3.1,1.08,5.26-.06.93,1,1.5,1.76.95,2.2-1.59,4.3-2.7,5.85-2.7,1.26,0,2.35.6,2.97,1.65ZM192.4,44.73c-4.74,2.04-8.15,3.03-10.61,3.03-1.77,0-3.04-.52-3.96-1.53-1.57-1.74-1.43-4.33.44-7.69,3.59-6.47,7.12-8.1,8.9-8.49,1.38-.31,2.66-.09,3.61.6,1.02.74,1.57,1.96,1.46,3.26-.13,1.54-1.16,2.9-2.83,3.73-1.88.93-4.54,1.1-5.06,1.12-.05,0-.09,0-.14,0-.46.65-.94,1.41-1.43,2.29-.09.16-.17.31-.24.44-.25.48.18,1.04.71.93,1.46-.29,3.93-1.02,7.99-2.82.15-.07.34-.08.5-.02,3.02,1.15,2.67,4.28.66,5.15ZM240.71,18.14c-.46,2.68-2.93,3.24-4.37,2.08-.11-.09-.23-.17-.37-.21-2.23-.62-9.54.17-18.3,1.65-.31.05-.59.23-.75.5-3.53,5.59-7.58,12.15-11.17,18.41-6.02,10.5-8.18,15.75-8.93,18.33-.16.55.13,1.15.67,1.33,1.37.45,2.33,2.03,1.43,4.04-.11.24-.31.43-.55.53-1.17.5-2.15.69-2.96.69-1.73,0-2.72-.87-3.21-1.51-2.54-3.3-.44-10.95,16.78-38.83.51-.82-.21-1.86-1.16-1.67-3,.6-6.01,1.24-8.91,1.9-.19.04-.39.06-.57.06-1.18,0-2.24-.81-2.52-2.01-.32-1.39.56-2.77,1.94-3.09.08-.02,7.46-1.69,15.8-3.2.3-.06.57-.23.74-.49,1.18-1.87,2.42-3.81,3.72-5.83,1.16-1.81,2.09-3.26,2.69-4.23,1.13-1.81,4.12-1.74,4.92,1.15.08.3.05.62-.12.89-.53.88-1.65,2.63-3.16,4.97-.06.09-.11.17-.17.26-.51.79.15,1.83,1.08,1.7,15.21-2.1,16.02,0,17.25,1.82.15.22.22.49.18.76Z"/></svg>');
	--course-title: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 170 75"><path d="M84.97,11.7c2.63,7.08-.54,15.76-8.72,23.82-10.76,10.6-27.08,18.13-38.04,18.13-.28,0-.55,0-.82-.02-.44-.02-.85.21-1.05.59-.21.39-.42.78-.61,1.17-4.13,7.96-5.37,11.79-5.7,13.58-.08.45.1.91.49,1.14,1.34.79,1.92,2.72.37,4.44-.15.17-.37.29-.6.33-2.15.4-4.01-.39-4.94-2.03-1.73-3.04.15-9.09,5.59-19.59.27-.53.09-1.17-.41-1.48-2.27-1.36-3.77-3.43-4.38-6.12-.48-2.13,1.78-4.25,4.46-2.64.31.18.5.51.54.86.18,1.4.72,2.43,1.7,3.15.54.4,1.31.22,1.64-.37,2.87-5.17,6.37-11.17,10.5-18.13,2.72-4.58,5.69-9.59,7.35-12.69.15-.28.18-.62.06-.91-.42-1.01-.17-2.22.7-2.98.69-.6,2.78-2.42,4.73-.79,2.11,1.76.65,4.42-1.57,8.44-1.66,3.01-4.03,7-6.77,11.61-2.88,4.86-6,10.12-8.91,15.26-.46.81.22,1.8,1.14,1.67,9.35-1.37,22.34-8,30.85-16.39,6.54-6.45,9.34-13.27,7.49-18.25-1.73-4.66-7.53-7.65-15.89-8.2-13.75-.9-23.93,4.96-25.98,9.53-.72,1.6-.17,2.45.46,3.07,1.54,1.52.81,4.48-2.24,4.62-.26.01-.51-.08-.72-.24-3.06-2.47-3.89-6.03-2.29-9.6C36.54,5.72,49.03-.91,64.51.1c10.67.7,17.94,4.82,20.46,11.6ZM105.67,6.19c-.21.33-.51.81-.88,1.4-13.97,22.05-17.64,31-18.51,34.54-.15.61.48,1.12,1.05.85.76-.35,1.77-.9,3.1-1.75,1.87-1.2,4.68.28,3.97,3.43-.04.19-.16.35-.32.45-2.68,1.77-6,3.76-8.78,3.76-1.17,0-2.25-.36-3.14-1.24-2.66-2.64-3.66-8.35,18.2-42.85.37-.58.66-1.05.87-1.37.77-1.23,2.38-1.6,3.61-.83,1.23.77,1.6,2.39.83,3.61ZM116.46,43.41c3.22.97,3.05,4.22,1.03,5.21-.86.43-1.74.64-2.59.64s-1.68-.21-2.43-.65c-1.1-.62-1.91-1.64-2.52-2.78-.23-.43-.82-.49-1.12-.11-1.64,2.08-2.93,3.4-5.35,4.09-.36.1-.73.15-1.07.15-1.42,0-2.65-.83-3.17-2.24-1.49-4.08,4.11-14.92,8.82-17.06,2.98-1.35,5.87.01,7.27,3.56.05.14.07.3.02.44-.47,1.64-1.6,2.38-2.7,2.42.04.04.08.09.12.14.05.05.09.11.14.16.06.08.11.16.16.24.03.06.07.12.1.18.04.09.08.18.11.27.02.06.05.13.07.2.03.11.04.22.06.33,0,.05.02.09.03.14.13,1.65.6,3.49,1.1,4.53.21.45.78.6,1.18.31.03-.02.06-.04.09-.06.19-.14.45-.2.68-.13ZM110.71,36.35c-.18-.18-.33-.38-.46-.61-.06-.11-.11-.19-.15-.25-1.14.49-2.78,2.83-4.04,5.25.73-.96,1.62-2.09,2.73-3.44,0,0,.01,0,.02-.02.12-.14.24-.26.39-.37.03-.03.07-.05.11-.07.11-.08.22-.15.34-.21.06-.03.13-.05.2-.08.1-.04.2-.08.3-.11.08-.02.16-.03.25-.04.08-.01.15-.03.23-.04.02,0,.03,0,.05,0s.03,0,.05,0ZM141.69,47.46c-1,1.93-4.07,2.09-5.09-.81-.11-.31-.08-.65.07-.93,2.11-3.84,3.69-8.78,3.35-10.27-.06,0-.12,0-.2,0-4.17.33-9.53,8.62-11.47,12.58-.45.93-1.39,1.47-2.36,1.47-.39,0-.78-.09-1.15-.27-1.3-.64-1.84-2.21-1.2-3.51.74-1.52,7.5-14.84,15.76-15.5,2.91-.24,4.34,1.24,4.94,2.14,2.63,3.96-.98,11.88-2.66,15.1Z"/></svg>');
	--event-title: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 170 75"><path d="M19.5,74.32c-1.96.45-3.75.68-5.36.68-3.48,0-6.15-1.04-7.98-3.13-3.29-3.75-3.24-10.27.15-19.38,3.72-10,11.18-22.32,19.94-32.96C31.8,12.79,42.42,1.3,51.2.09c3.45-.48,5.12,1.12,5.81,2.12,2.95,4.26-1.17,12.9-3.08,16.42-1.07,1.98-4.26,2.08-5.24-.96-.1-.3-.07-.62.09-.89,2.47-4.31,4.3-9.84,3.84-11.36-.12-.01-.34-.02-.67.03-7.19,1-19.83,13.78-29.58,28.3-.56.84.23,1.93,1.2,1.65,12.78-3.71,13.2.14,13.82.41.36.16.53.61.48,1.01-.34,2.96-2.91,3.67-4.47,2.56-.18-.13-.38-.22-.61-.23-2.37-.12-9.35,1.75-16.05,4.34-.24.09-.45.27-.57.5-1.91,3.55-3.56,7.06-4.8,10.4-2.53,6.8-2.95,11.87-1.15,13.92,1.57,1.79,5.25,1.4,8.06.75,6.38-1.47,15.14-5.91,24.59-12.45.23-.16.51-.24.79-.18,3.19.64,3.43,3.85,1.57,5.13-6.88,4.71-16.92,10.74-25.72,12.77ZM73.53,30.63c.07.02.15.05.21.08,2.14,1.24,1.89,3.88.14,4.85-.81.55-3.96,4.23-6.05,6.66-5.67,6.61-7.29,8.33-8.94,8.7-.29.06-.57.1-.85.1-1.16,0-2.22-.56-2.86-1.56-2.49-3.86,3.23-16.43,3.89-17.31.9-1.19,2.6-1.43,3.79-.53,1.17.88,1.42,2.53.58,3.71-.3.5-.81,1.74-1.37,3.24-.27.72.67,1.27,1.17.69l.49-.57c6.89-8.03,7.57-8.62,9.81-8.08ZM90.04,47.03c-4.97,2.13-8.55,3.18-11.12,3.18-1.85,0-3.19-.54-4.15-1.61-1.65-1.83-1.5-4.54.46-8.06,3.76-6.78,7.46-8.49,9.33-8.9,1.44-.32,2.79-.1,3.79.63,1.07.78,1.65,2.05,1.53,3.41-.14,1.62-1.22,3.04-2.97,3.91-1.97.97-4.76,1.15-5.3,1.18-.05,0-.1,0-.15,0-.48.68-.99,1.48-1.5,2.4-.09.17-.17.32-.25.47-.26.51.19,1.09.74.98,1.53-.3,4.12-1.07,8.38-2.96.16-.07.36-.08.52-.02,3.17,1.21,2.8,4.49.69,5.4ZM114.21,48.75c-1.03,1.99-4.2,2.15-5.25-.84-.11-.32-.09-.67.08-.96,2.18-3.96,3.8-9.06,3.46-10.6-.06,0-.13,0-.21,0-4.31.34-9.83,8.89-11.83,12.98-.47.96-1.43,1.52-2.43,1.52-.4,0-.81-.09-1.19-.28-1.34-.66-1.9-2.28-1.24-3.62.77-1.57,7.74-15.32,16.27-16,3.01-.24,4.48,1.28,5.1,2.21,2.71,4.09-1.02,12.26-2.74,15.58ZM166.27,19.17c-.48,2.81-3.07,3.39-4.58,2.18-.12-.1-.24-.18-.39-.22-2.34-.65-10,.18-19.18,1.73-.33.05-.61.24-.79.52-3.7,5.86-7.94,12.73-11.71,19.3-6.31,11.01-8.58,16.51-9.36,19.21-.17.58.14,1.21.71,1.4,1.44.48,2.44,2.13,1.5,4.23-.11.25-.33.45-.58.55-1.23.53-2.25.73-3.1.73-1.81,0-2.85-.91-3.36-1.58-2.66-3.46-.46-11.48,17.59-40.7.53-.86-.22-1.95-1.21-1.75-3.14.63-6.3,1.3-9.34,1.99-.2.04-.4.07-.6.07-1.24,0-2.35-.85-2.64-2.11-.33-1.46.58-2.91,2.04-3.24.09-.02,7.82-1.77,16.56-3.36.32-.06.6-.24.77-.52,1.24-1.96,2.54-3.99,3.9-6.11,1.22-1.9,2.19-3.42,2.83-4.43,1.18-1.89,4.32-1.82,5.16,1.21.09.32.05.65-.12.93-.56.93-1.73,2.75-3.31,5.21-.06.09-.12.18-.18.28-.53.83.15,1.91,1.13,1.78,15.94-2.2,16.79,0,18.08,1.91.16.23.23.52.19.8Z"/></svg>');
	--stay-title: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 75"><path d="M55.63,31.47c.13.2.2.45.16.68-.41,2.36-2.54,2.89-3.84,1.94-.06.13-.11.25-.17.38-3.71,8.18-7.55,16.63-10.23,23.55-3,7.74-3.5,10.93-3.5,12.19,0,.28.09.56.29.75.71.66.96,1.72.55,2.65-.39.87-1.24,1.39-2.13,1.39-.31,0-.63-.06-.94-.2-.65-.29-1.54-.9-2.03-2.21-1.81-4.73,3.47-17.32,12.55-37.4.32-.7-.24-1.48-1-1.41-5.69.55-14.18,2.07-22.28,3.87-.21.05-.41.17-.55.33-3.63,4.28-6.76,8.54-8.92,12.5-2.57,4.74-3.49,8.64-2.65,11.29.58,1.84-1.23,3.86-3.7,2.7-.21-.1-.38-.29-.46-.51-2.25-5.58.14-13.07,7.36-22.92.72-.98,1.47-1.96,2.25-2.93.23-.29.26-.67.12-1.02-.04-.09-.07-.19-.09-.29-.3-1.25.48-2.51,1.73-2.81.02,0,.66-.16,1.75-.4.2-.05.39-.16.53-.31,7.2-8.19,15.32-15.52,20.2-19.7,3.72-3.19,16.13-13.58,19.65-13.58,1.11,0,2.09.53,2.68,1.44,1.8,2.79-.22,8.68-8.68,27.52-.18.41-.08.89.26,1.17.51.41.8.88,1.1,1.33ZM31.13,31.25c1.13-.21,2.29-.43,3.45-.63,6.59-1.15,10.98-1.63,13.97-1.68.38,0,.73-.24.88-.58,3.25-7.2,6.77-15.17,8.46-20.17.31-.91-.72-1.68-1.51-1.14-5.94,4.1-16.6,12.82-26.15,22.52-.69.7-.06,1.87.9,1.68ZM59.74,38.22c-.21.42.14.9.61.84,1.05-.14,2.81-.56,5.64-1.67,1.84-.72,4.05,1.06,2.85,3.7-.06.14-.18.25-.32.3-3.88,1.59-6.83,2.38-9.02,2.38-1.77,0-3.05-.52-3.92-1.54-.99-1.17-1.7-3.36.57-7.15,2.14-3.59,5.45-7.88,9.06-7.97,1.9-.05,3.51,1.05,4.41,3.05.05.12.07.25.04.38-.55,2.55-2.99,2.86-4.19,1.58-.19-.2-.49-.25-.73-.1-.86.51-2.5,1.96-4.59,5.46-.17.28-.3.53-.41.75ZM78.72,38.22c-.21.42.14.9.61.84,1.05-.14,2.81-.56,5.64-1.67,1.84-.72,4.05,1.06,2.85,3.7-.06.14-.18.25-.32.3-3.88,1.59-6.83,2.38-9.02,2.38-1.77,0-3.05-.52-3.92-1.54-.99-1.17-1.7-3.36.57-7.15,2.14-3.59,5.45-7.88,9.06-7.97,1.9-.05,3.51,1.05,4.41,3.05.05.12.07.25.04.38-.55,2.55-2.99,2.86-4.19,1.58-.19-.2-.49-.25-.73-.1-.86.51-2.5,1.96-4.59,5.46-.17.28-.3.53-.41.75ZM97.83,43.97c-.48.11-.93.15-1.33.15-2.23,0-3.24-1.44-3.52-1.94-1.91-3.39,1.47-8.81,4.93-12.43.34-.36.77-.58,1.23-.67.21-.04.38-.21.44-.42.14-.57.51-1.14,1.18-1.65.09-.07.21-.11.32-.13,3.79-.35,3.74,3.72,3.72,4.93-.05,4.28-1.95,11.06-6.96,12.17ZM99.77,34.68c-1.64,2.05-2.36,3.69-2.59,4.61.64-.3,1.15-1,1.48-1.58.52-.91.88-1.99,1.11-3.03ZM135.62,29.56c.44.74,1.78,2.99-3.47,12.68-.92,1.7-3.63,1.79-4.51-.78-.09-.27-.07-.57.07-.82.54-.97,1.07-1.99,1.54-2.98.47-.98-.74-1.9-1.56-1.18-1.53,1.33-3.2,2.89-4.76,4.51-1.2,1.23-3.49.89-4.09-1.35-.05-.19-.03-.4.04-.59.96-2.49,1.74-5.23,2.19-7.42.21-1.03-1.1-1.65-1.76-.83-2.08,2.62-4.71,6.91-6.84,11.35-.4.84-1.23,1.33-2.1,1.33-.95,0-1.93-.58-2.46-1.91-.1-.24-.07-.51.04-.75,2-4.28,8.19-16.56,13.69-17.24,1.37-.17,2.63.32,3.44,1.34.86,1.08,1.1,2.8.97,4.75-.05.84.9,1.35,1.59.86,1.99-1.43,3.88-2.44,5.28-2.44,1.14,0,2.12.54,2.68,1.49ZM166.37,29.56c.44.74,1.78,2.99-3.47,12.68-.92,1.7-3.63,1.79-4.51-.78-.09-.27-.07-.57.07-.82.54-.97,1.07-1.99,1.54-2.98.47-.98-.74-1.9-1.56-1.18-1.53,1.33-3.2,2.89-4.76,4.51-1.2,1.23-3.49.89-4.09-1.35-.05-.19-.03-.4.04-.59.96-2.49,1.74-5.23,2.19-7.42.21-1.03-1.1-1.65-1.76-.83-2.08,2.62-4.71,6.91-6.84,11.35-.4.84-1.23,1.33-2.1,1.33-.95,0-1.93-.58-2.46-1.91-.1-.24-.07-.51.04-.75,2-4.28,8.19-16.56,13.69-17.24,1.37-.17,2.63.32,3.44,1.34.86,1.08,1.1,2.8.97,4.75-.05.84.9,1.35,1.59.86,1.99-1.43,3.88-2.44,5.28-2.44,1.14,0,2.12.54,2.68,1.49ZM174.6,43.97c-.48.11-.93.15-1.33.15-2.23,0-3.24-1.44-3.52-1.94-1.91-3.39,1.47-8.81,4.93-12.43.34-.36.77-.58,1.23-.67.21-.04.38-.21.44-.42.14-.57.51-1.14,1.18-1.65.09-.07.21-.11.32-.13,3.79-.35,3.74,3.72,3.72,4.93-.05,4.28-1.95,11.06-6.96,12.17ZM176.53,34.68c-1.64,2.05-2.36,3.69-2.59,4.61.64-.3,1.15-1,1.48-1.58.52-.91.88-1.99,1.11-3.03ZM226.31,8.12c-1.49,2.68-3.61,6.34-6.07,10.59-4.76,8.22-10.68,18.45-15.35,27.26-5.58,10.53-7.11,14.81-7.5,16.53-.04.2,0,.41.14.56.76.84.92,2.23-.2,3.5-.08.09-.19.16-.31.2-1.66.52-3.16-.04-3.91-1.34-1.87-3.25,2.02-12.2,17.77-39.77.4-.69-.54-1.37-1.07-.78-2.44,2.72-4.86,5.41-7.11,7.86-.11.12-.16.27-.17.43-.07,1.01-.8,1.9-1.84,2.12-.13.03-.26.04-.38.05-3.95,4.25-7.04,7.4-8.15,8.09-1.6,1.01-2.88,1.36-3.88,1.36-1.37,0-2.23-.66-2.71-1.23-2.6-3.05.76-9.05,4.43-13.27,2.71-3.11,5.32-4.37,7.76-3.73.89.23,1.62.68,2.22,1.24.27.26.7.25.95-.03,7.37-8.12,16.8-18.83,23.66-26.74,0,0,0,0,0,0,0,0,.01-.01.02-.02,0,0,.02-.01.02-.02.08-.09.18-.18.27-.26.03-.02.06-.05.09-.07.09-.07.19-.13.3-.18.02-.01.04-.02.06-.03,0,0,0,0,0,0,.13-.06.27-.11.41-.15,0,0,0,0,.01,0,.86-.24,1.77,0,2.39.66,1.34,1.45.61,2.78-1.84,7.18ZM197.24,31.79c-.23-.39-.48-.67-.67-.72-.02,0-.04,0-.07,0-.34,0-1.34.39-3,2.29-2.31,2.65-3.45,4.83-3.92,6.18.03-.02.06-.04.09-.06.86-.56,3.71-3.5,7.57-7.69ZM230.41,38.61c2.86.86,2.71,3.75.92,4.63-.77.38-1.55.57-2.3.57s-1.49-.19-2.16-.57c-.97-.55-1.7-1.45-2.24-2.47-.2-.38-.73-.44-.99-.1-1.45,1.85-2.6,3.02-4.76,3.63-.32.09-.64.14-.95.14-1.26,0-2.36-.74-2.81-1.99-1.33-3.63,3.65-13.26,7.84-15.16,2.65-1.2,5.21.01,6.46,3.16.05.12.06.27.02.39-.42,1.46-1.42,2.12-2.4,2.15.04.04.07.08.11.13.04.05.08.09.12.14.05.07.1.14.14.22.03.05.06.1.09.16.04.08.07.16.1.24.02.06.04.11.06.17.02.1.04.19.05.29,0,.04.02.08.02.13.12,1.47.53,3.1.97,4.02.19.4.69.53,1.05.27.02-.02.05-.04.08-.05.17-.13.4-.17.6-.11ZM225.3,32.34c-.16-.16-.3-.34-.41-.54-.05-.09-.1-.17-.14-.22-1.01.43-2.47,2.52-3.59,4.67.65-.85,1.44-1.86,2.43-3.06,0,0,0,0,.01-.01.1-.12.22-.23.34-.33.03-.02.06-.04.1-.06.1-.07.2-.14.3-.19.06-.03.12-.05.17-.07.09-.04.17-.07.27-.1.07-.02.14-.03.22-.04.07-.01.13-.03.2-.04.02,0,.03,0,.05,0s.03,0,.04,0ZM275.61,16.73c-.41,2.42-2.65,2.92-3.94,1.87-.1-.08-.21-.16-.34-.19-2.02-.56-8.61.16-16.52,1.49-.28.05-.53.21-.68.45-3.19,5.05-6.84,10.96-10.08,16.62-5.43,9.48-7.39,14.22-8.06,16.54-.14.5.12,1.04.61,1.2,1.24.41,2.1,1.83,1.29,3.65-.1.21-.28.38-.5.48-1.06.45-1.94.63-2.67.63-1.56,0-2.45-.79-2.9-1.36-2.29-2.98-.4-9.89,15.15-35.05.46-.74-.19-1.68-1.04-1.51-2.7.54-5.42,1.12-8.05,1.72-.17.04-.35.06-.52.06-1.06,0-2.02-.73-2.27-1.81-.29-1.26.5-2.5,1.76-2.79.07-.02,6.74-1.53,14.26-2.89.27-.05.52-.21.66-.44,1.07-1.69,2.19-3.44,3.36-5.26,1.05-1.64,1.89-2.94,2.43-3.81,1.02-1.63,3.72-1.57,4.44,1.04.08.27.04.56-.1.8-.48.8-1.49,2.37-2.85,4.49-.05.08-.1.16-.15.24-.46.72.13,1.65.98,1.53,13.73-1.9,14.46,0,15.57,1.64.14.2.2.45.16.69ZM258.4,31.25c-1.9,3.2-3.95,7.17-4.63,9.14-.05.15-.02.32.06.46.36.66.41,1.51-.04,2.41-.04.08-.1.15-.17.2-.84.68-1.26.8-1.7.83-1.06.08-2.01-.38-2.57-1.24-.48-.74-1.27-1.97,1.56-7.81-.06-.24-.08-.5-.05-.76.05-.56.16-1.74,4.28-6.52.09-.1.22-.18.35-.21,2.66-.46,3.87,1.89,2.91,3.51ZM262.17,23.6l-.06.12c-.38.76-1.12,1.23-1.91,1.29-.4.03-.81-.04-1.2-.23-1.15-.56-1.63-1.95-1.08-3.11,0,0,.16-.33.57-1.05.07-.13.19-.23.33-.28,2.75-.87,4.27,1.51,3.35,3.25ZM264.56,43.97c-.48.11-.93.15-1.33.15-2.23,0-3.24-1.44-3.52-1.94-1.91-3.39,1.47-8.81,4.93-12.43.34-.36.77-.58,1.23-.67.21-.04.38-.21.44-.42.14-.57.51-1.14,1.18-1.65.09-.07.21-.11.32-.13,3.79-.35,3.74,3.72,3.72,4.93-.05,4.28-1.95,11.06-6.96,12.17ZM266.49,34.68c-1.64,2.05-2.36,3.69-2.59,4.61.64-.3,1.15-1,1.48-1.58.52-.91.88-1.99,1.11-3.03ZM290.86,42.21c-.89,1.71-3.61,1.85-4.52-.72-.1-.27-.08-.57.07-.83,1.88-3.41,3.27-7.8,2.98-9.13-.05,0-.11,0-.18,0-3.71.29-8.47,7.66-10.19,11.18-.4.83-1.23,1.31-2.09,1.31-.34,0-.69-.08-1.02-.24-1.16-.57-1.63-1.96-1.07-3.12.66-1.35,6.66-13.19,14.01-13.78,2.59-.21,3.86,1.1,4.39,1.9,2.33,3.52-.87,10.56-2.36,13.42Z"/></svg>');
	--favorite-title: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 254 75"><path d="M79.93,37.37c-.34,2.85-2.81,3.53-4.33,2.47-.12-.08-.24-.16-.39-.18-3.03-.57-14.99,1.35-25.63,3.68-.28.06-.53.24-.68.49-9.05,15-12.5,21.96-13.73,25.19-.16.4-.08.88.24,1.17.73.68,1.11,1.82.66,3.25-.06.19-.26.44-.43.54-1.21.76-2.21,1.03-3.01,1.03-1.31,0-2.11-.7-2.46-1.1-1.58-1.8-1.08-4.56,1.97-10.93,1.88-3.91,4.77-9.2,8.59-15.73,1.15-1.96,2.34-3.96,3.53-5.94.08-.13.12-.28.14-.43.1-.73.49-1.38,1.09-1.8.13-.09.24-.19.32-.32,5.36-8.8,10.66-17.11,13.58-21.68.87-1.36,1.5-2.35,1.84-2.9.77-1.23,2.38-1.6,3.61-.83,1.23.77,1.6,2.39.83,3.61-.35.56-.99,1.57-1.87,2.94-3.64,5.7-6.83,10.77-9.63,15.29-.48.78.2,1.75,1.1,1.58,24.12-4.78,23.2-.98,24.24-.31.26.17.43.61.4.91ZM103.02,3.54c-.45,2.77-3.02,3.33-4.48,2.11-.1-.09-.21-.17-.34-.21-3.87-1.17-23.29,1.98-39.68,5.71-.2.04-.39.07-.58.07-1.2,0-2.28-.83-2.56-2.04-.32-1.41.56-2.82,1.98-3.14.1-.02,10-2.27,20.15-3.99,23.01-3.92,23.89-1.37,25.35.78.12.18.21.51.17.72ZM101.64,44.47c3.22.97,3.05,4.22,1.03,5.22-.86.43-1.74.64-2.59.64s-1.68-.21-2.44-.65c-1.1-.62-1.91-1.64-2.52-2.78-.23-.43-.82-.49-1.12-.11-1.64,2.08-2.93,3.4-5.35,4.09-.37.1-.73.15-1.07.15-1.42,0-2.65-.83-3.17-2.24-1.5-4.08,4.11-14.93,8.82-17.06,2.98-1.35,5.87.01,7.27,3.56.05.14.06.3.02.44-.47,1.64-1.6,2.38-2.7,2.42.04.04.08.09.12.14.05.05.09.11.13.16.06.08.11.16.16.24.04.06.07.12.1.18.04.09.08.18.11.27.02.06.05.13.07.2.03.11.04.22.06.33,0,.05.02.09.03.14.13,1.65.6,3.49,1.1,4.53.22.45.78.6,1.18.31.03-.02.06-.04.09-.06.19-.14.45-.2.67-.13ZM95.89,37.4c-.18-.18-.33-.38-.46-.61-.06-.11-.11-.19-.15-.25-1.14.49-2.78,2.83-4.04,5.26.73-.96,1.62-2.09,2.73-3.44,0,0,.01,0,.02-.02.11-.14.24-.26.38-.37.03-.03.07-.05.11-.07.11-.08.22-.15.34-.21.06-.03.13-.05.2-.08.1-.04.2-.08.3-.11.08-.02.16-.03.25-.04.08-.01.15-.03.23-.04.02,0,.03,0,.05,0s.03,0,.05,0ZM126.95,30.95c.07.02.14.04.2.08,2.07,1.2,1.83,3.76.13,4.71-.78.54-3.84,4.1-5.87,6.46-5.49,6.41-7.06,8.07-8.67,8.44-.28.06-.56.09-.83.09-1.13,0-2.15-.54-2.78-1.51-2.42-3.74,3.13-15.93,3.77-16.78.87-1.15,2.52-1.38,3.67-.51,1.13.86,1.37,2.45.56,3.6-.29.49-.79,1.69-1.33,3.14-.26.7.64,1.23,1.13.67l.47-.55c6.68-7.78,7.34-8.35,9.51-7.83ZM132.93,50.5c-.55.12-1.04.17-1.5.17-2.51,0-3.65-1.62-3.97-2.19-2.15-3.81,1.65-9.92,5.55-14,.39-.4.87-.66,1.38-.76.24-.05.43-.23.49-.47.16-.64.58-1.29,1.32-1.86.1-.08.23-.13.36-.14,4.26-.4,4.21,4.18,4.19,5.55-.06,4.82-2.2,12.45-7.83,13.7ZM135.1,40.05c-1.84,2.31-2.66,4.15-2.92,5.19.73-.34,1.29-1.13,1.66-1.78.58-1.02.99-2.24,1.26-3.42ZM168.17,38.85c-4.49,2.91-7.95,1.62-10.24.77-2.21-.82-2.8-1.04-4.61,1.01-.01.01-.03.03-.04.04-1.81,3-3.38,5.73-4.11,7.23-.09.19-.11.39-.1.6.05,1.04-.52,2.05-1.52,2.51-.41.19-.83.28-1.25.28-.78,0-1.53-.32-2.06-.93-1.46-1.67-.93-3.23,3.78-11.13,2.25-3.77,4.61-7.48,4.64-7.52.78-1.22,2.4-1.58,3.62-.8.79.5,1.21,1.35,1.21,2.22,0,.49.33.93.8,1.07.53.16,1.02.34,1.47.5,2.13.79,3.48,1.29,6.13-.65.28-.2.63-.28.97-.2,3.01.74,3.14,3.81,1.31,5ZM179.68,36.18c-2.14,3.61-4.45,8.07-5.21,10.29-.06.17-.03.36.06.52.4.74.46,1.7-.05,2.71-.04.09-.11.17-.19.23-.94.77-1.42.9-1.91.93-1.19.09-2.26-.43-2.89-1.4-.54-.83-1.43-2.22,1.75-8.79-.07-.27-.09-.56-.06-.86.06-.63.18-1.96,4.82-7.34.1-.12.25-.21.4-.23,2.99-.52,4.36,2.12,3.28,3.95ZM183.92,27.57l-.07.14c-.43.86-1.26,1.38-2.15,1.45-.45.03-.91-.05-1.35-.26-1.3-.63-1.84-2.2-1.21-3.5,0,0,.18-.37.64-1.19.08-.14.22-.26.37-.31,3.09-.98,4.8,1.7,3.77,3.66ZM224.7,19.84c-.46,2.72-2.98,3.29-4.44,2.11-.12-.09-.24-.18-.38-.22-2.27-.63-9.69.18-18.6,1.67-.32.05-.59.24-.77.51-3.59,5.68-7.7,12.34-11.35,18.7-6.11,10.67-8.31,16.01-9.08,18.62-.16.56.13,1.17.69,1.35,1.39.46,2.37,2.06,1.45,4.1-.11.24-.32.43-.56.54-1.19.51-2.18.71-3.01.71-1.76,0-2.76-.89-3.26-1.53-2.58-3.35-.45-11.13,17.05-39.45.52-.84-.21-1.89-1.18-1.7-3.04.61-6.1,1.26-9.06,1.93-.2.04-.39.07-.58.07-1.2,0-2.28-.83-2.56-2.04-.32-1.41.56-2.82,1.98-3.14.08-.02,7.58-1.72,16.06-3.25.31-.06.58-.24.75-.5,1.2-1.9,2.46-3.87,3.78-5.92,1.18-1.84,2.13-3.31,2.74-4.29,1.15-1.83,4.19-1.76,5,1.17.08.31.05.63-.12.91-.54.9-1.68,2.67-3.21,5.05-.06.09-.11.18-.17.27-.52.81.15,1.86,1.1,1.72,15.45-2.14,16.28,0,17.53,1.85.15.23.23.5.18.77ZM212.41,46.85c-4.82,2.07-8.28,3.08-10.78,3.08-1.8,0-3.09-.52-4.03-1.56-1.6-1.77-1.45-4.4.44-7.82,3.65-6.57,7.23-8.23,9.04-8.63,1.4-.31,2.7-.09,3.67.61,1.04.75,1.6,1.99,1.49,3.31-.13,1.57-1.18,2.95-2.88,3.79-1.91.94-4.62,1.11-5.14,1.14-.05,0-.09,0-.14,0-.47.66-.96,1.43-1.45,2.33-.09.16-.17.31-.24.45-.25.49.18,1.06.72.95,1.48-.29,3.99-1.04,8.12-2.86.16-.07.35-.08.51-.02,3.07,1.17,2.72,4.35.67,5.23Z"/></svg>');
	--pamphlet-title: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 254 75"><path d="M61.54,11.7c2.63,7.08-.54,15.76-8.72,23.82-10.76,10.6-27.08,18.13-38.04,18.13-.28,0-.55,0-.82-.02-.44-.02-.85.21-1.05.59-.21.39-.42.78-.61,1.17-4.13,7.96-5.37,11.79-5.7,13.58-.08.45.1.91.49,1.14,1.34.79,1.92,2.72.37,4.44-.15.17-.37.29-.6.33-2.15.4-4.01-.39-4.94-2.03-1.73-3.04.15-9.09,5.59-19.59.27-.53.09-1.17-.41-1.48-2.27-1.36-3.77-3.43-4.38-6.12-.48-2.13,1.78-4.25,4.46-2.64.31.18.5.51.54.86.18,1.4.72,2.43,1.7,3.15.54.4,1.31.22,1.64-.37,2.87-5.17,6.37-11.17,10.5-18.13,2.72-4.58,5.69-9.59,7.35-12.69.15-.28.18-.62.06-.91-.42-1.01-.17-2.22.7-2.98.69-.6,2.78-2.42,4.73-.79,2.11,1.76.65,4.42-1.57,8.44-1.66,3.01-4.03,7-6.77,11.61-2.88,4.86-6,10.12-8.91,15.26-.46.81.22,1.8,1.14,1.67,9.35-1.37,22.34-8,30.85-16.39,6.54-6.45,9.34-13.27,7.49-18.25-1.73-4.66-7.53-7.65-15.89-8.2-13.75-.9-23.93,4.96-25.98,9.53-.72,1.6-.17,2.45.46,3.07,1.54,1.52.81,4.48-2.24,4.62-.26.01-.51-.08-.72-.24-3.06-2.47-3.89-6.03-2.29-9.6C13.1,5.72,25.59-.91,41.07.1c10.67.7,17.94,4.82,20.46,11.6ZM74.81,43.41c3.22.97,3.05,4.22,1.03,5.21-.86.43-1.74.64-2.59.64s-1.68-.21-2.44-.65c-1.1-.62-1.91-1.64-2.52-2.78-.23-.43-.82-.49-1.12-.11-1.64,2.08-2.93,3.4-5.35,4.09-.37.1-.73.15-1.07.15-1.42,0-2.65-.83-3.17-2.24-1.49-4.08,4.11-14.92,8.82-17.06,2.98-1.35,5.87.01,7.27,3.56.05.14.06.3.02.44-.47,1.64-1.6,2.38-2.7,2.42.04.04.08.09.12.14.05.05.09.11.13.16.06.08.11.16.16.24.04.06.07.12.1.18.04.09.08.18.11.27.02.06.05.13.07.2.03.11.04.22.06.33,0,.05.02.09.03.14.13,1.65.6,3.49,1.09,4.53.22.45.78.6,1.18.31.03-.02.06-.04.09-.06.19-.14.45-.2.67-.13ZM69.06,36.35c-.18-.18-.33-.38-.46-.61-.06-.11-.11-.19-.15-.25-1.14.49-2.78,2.83-4.04,5.25.73-.96,1.62-2.09,2.73-3.44,0,0,.01,0,.02-.02.11-.14.24-.26.38-.37.03-.03.07-.05.11-.07.11-.08.22-.15.34-.21.06-.03.13-.05.2-.08.1-.04.2-.08.3-.11.08-.02.16-.03.25-.04.08-.01.15-.03.23-.04.02,0,.03,0,.05,0s.03,0,.05,0ZM112.95,33.23c.5.83,2.01,3.37-3.9,14.27-1.03,1.91-4.09,2.02-5.07-.88-.1-.31-.08-.64.08-.93.61-1.09,1.2-2.24,1.74-3.36.53-1.1-.83-2.13-1.76-1.33-1.72,1.49-3.6,3.26-5.36,5.07-1.35,1.39-3.93,1-4.6-1.52-.06-.22-.03-.45.05-.66,1.08-2.81,1.96-5.89,2.47-8.35.24-1.16-1.24-1.85-1.98-.93-2.35,2.95-5.3,7.77-7.69,12.77-.45.94-1.39,1.49-2.37,1.49-1.06,0-2.17-.65-2.76-2.15-.11-.27-.08-.58.04-.84,2.25-4.82,9.22-18.63,15.4-19.41,1.54-.19,2.96.36,3.87,1.51.97,1.22,1.24,3.15,1.1,5.35-.06.95,1.01,1.52,1.78.97,2.23-1.61,4.36-2.74,5.95-2.74t0,0c1.28,0,2.38.61,3.02,1.68ZM140.12,33.62c.83,4.92-6.6,16.42-13.08,18.49-.78.25-1.54.37-2.28.37-2.09,0-3.93-1-5.29-2.87-.28-.39-.87-.37-1.11.05-5.38,9.16-9.45,16.83-10.35,19.98-.05.19,0,.38.1.55.57.94.57,2.26-.48,3.48-.07.08-.17.15-.27.2-1.78.73-3.54.1-4.33-1.36-.91-1.67-2.04-3.75,11.4-26.48,6.29-10.65,12.94-20.95,13-21.05,1.21-1.87,4.4-1.69,5.05,1.52.03.17,0,.35-.1.49-.79,1.22-1.59,2.46-2.38,3.7-.36.57.25,1.26.85.96,1.69-.84,3.42-1.38,5.11-1.43,2.16-.06,3.8,1.28,4.15,3.41ZM134.25,37.1c.25-.57-.33-1.15-.89-.89-3.51,1.67-7.67,5.78-10.41,9.09.13.16.25.34.34.53.81,1.67,1.46,1.48,2.09,1.29,3.32-1,7.28-6.47,8.87-10.03ZM169.41,4.78l-.55.88c-8.29,13.25-13.55,22.13-16.89,28.08-.59,1.05.68,2.17,1.65,1.45,4.84-3.57,9.52-6.48,11.98-6.48.99,0,1.88.5,2.37,1.35,1.06,1.8.28,3.22-4.08,11.1-2.11,3.82-5.78,10.46-6.8,13.57-.1.31-.06.65.12.93.27.43.42.95.4,1.5-.06,1.41-1.22,2.51-2.62,2.51-.04,0-.07,0-.11,0-1.21-.05-2.24-.67-2.82-1.7-1.5-2.67.39-6.96,7.25-19.35.3-.54.42-.79.26-.9-.28-.19-.68.17-1.4.69-3.75,2.71-8.27,6.31-12.25,9.73-.04.03-.08.05-.12.08-.08.06-.15.11-.24.16-.07.04-.14.08-.22.12-.08.04-.16.07-.24.1-.09.03-.17.06-.26.08-.05.01-.09.03-.14.04-.03,0-.06,0-.1,0-.08.01-.15.02-.23.02-.1.01-.2.03-.3.03-1,0-1.92-.47-2.49-1.29-1.31-1.91-2.67-3.89,22.84-44.62l.97-1.56c.17-.27.45-.46.77-.52,3-.57,4.4,2.14,3.26,3.98ZM194.4,6.19c-.21.33-.51.81-.88,1.4-13.97,22.05-17.64,31-18.51,34.54-.15.61.48,1.12,1.05.85.76-.35,1.77-.9,3.1-1.75,1.87-1.2,4.68.28,3.97,3.43-.04.19-.16.35-.32.45-2.68,1.77-6,3.76-8.78,3.76-1.17,0-2.25-.36-3.14-1.24-2.66-2.64-3.66-8.35,18.2-42.85.37-.58.66-1.05.87-1.37.77-1.23,2.38-1.6,3.61-.83,1.23.77,1.6,2.39.83,3.61ZM203.63,45.79c-4.82,2.07-8.28,3.08-10.78,3.08-1.8,0-3.09-.52-4.03-1.56-1.6-1.77-1.45-4.4.44-7.81,3.64-6.57,7.23-8.23,9.04-8.63,1.4-.31,2.7-.09,3.67.61,1.04.75,1.6,1.99,1.49,3.31-.13,1.57-1.18,2.95-2.88,3.79-1.91.94-4.62,1.11-5.14,1.14-.05,0-.09,0-.14,0-.47.66-.96,1.43-1.45,2.33-.09.16-.17.31-.24.45-.25.49.18,1.06.72.95,1.48-.29,3.99-1.04,8.12-2.86.16-.07.35-.08.51-.02,3.07,1.17,2.72,4.35.67,5.23ZM252.7,18.79c-.46,2.72-2.98,3.29-4.44,2.11-.11-.09-.24-.18-.38-.22-2.27-.63-9.69.18-18.59,1.67-.32.05-.59.24-.77.51-3.58,5.68-7.7,12.34-11.34,18.7-6.11,10.67-8.31,16-9.07,18.61-.16.56.13,1.17.69,1.35,1.39.46,2.37,2.06,1.45,4.1-.11.24-.32.43-.56.54-1.19.51-2.18.71-3.01.71-1.76,0-2.76-.89-3.26-1.53-2.58-3.35-.45-11.13,17.05-39.44.52-.84-.21-1.89-1.17-1.7-3.04.61-6.1,1.26-9.06,1.93-.2.04-.39.07-.58.07-1.2,0-2.28-.82-2.55-2.04-.32-1.41.56-2.82,1.98-3.14.08-.02,7.58-1.72,16.05-3.25.31-.06.58-.24.75-.5,1.2-1.9,2.46-3.87,3.78-5.92,1.18-1.84,2.13-3.31,2.74-4.29,1.15-1.83,4.19-1.76,5,1.17.08.31.05.63-.12.91-.54.9-1.68,2.67-3.2,5.05-.06.09-.11.18-.17.27-.52.81.15,1.86,1.1,1.72,15.45-2.14,16.28,0,17.53,1.85.15.23.23.5.18.77Z"/></svg>');
	--photo-title: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 170 75"><path d="M72.4,11.7c2.64,7.08-.54,15.76-8.72,23.82-10.76,10.6-27.08,18.13-38.04,18.13-.28,0-.55,0-.82-.02-.44-.02-.85.21-1.06.59-.21.39-.42.78-.61,1.17-4.13,7.96-5.37,11.79-5.7,13.58-.08.45.1.91.5,1.14,1.33.79,1.92,2.72.37,4.44-.16.17-.37.29-.6.33-2.15.4-4.01-.39-4.94-2.03-1.73-3.04.15-9.09,5.59-19.59.27-.53.09-1.17-.41-1.48-2.27-1.36-3.77-3.43-4.38-6.12-.48-2.13,1.78-4.25,4.46-2.64.31.18.5.51.54.86.18,1.4.72,2.43,1.7,3.15.54.4,1.31.22,1.64-.37,2.87-5.17,6.37-11.17,10.49-18.13,2.72-4.58,5.69-9.59,7.35-12.69.15-.28.18-.62.06-.91-.42-1.01-.17-2.22.7-2.98.69-.6,2.78-2.42,4.74-.79,2.11,1.76.65,4.42-1.57,8.44-1.66,3.01-4.03,7-6.77,11.61-2.88,4.86-6,10.12-8.91,15.26-.46.81.22,1.8,1.14,1.67,9.35-1.37,22.33-8,30.85-16.39,6.54-6.45,9.34-13.27,7.49-18.25-1.74-4.66-7.53-7.65-15.89-8.2-13.75-.9-23.93,4.96-25.98,9.53-.72,1.6-.17,2.45.46,3.07,1.54,1.52.81,4.48-2.24,4.62-.26.01-.52-.08-.72-.24-3.06-2.47-3.89-6.03-2.29-9.6C23.96,5.72,36.46-.91,51.94.1c10.67.7,17.94,4.82,20.46,11.6ZM96.62,4.78l-.55.88c-8.29,13.25-13.55,22.13-16.89,28.08-.59,1.05.68,2.17,1.65,1.45,4.84-3.57,9.52-6.48,11.98-6.48.99,0,1.88.5,2.37,1.35,1.06,1.8.28,3.22-4.08,11.1-2.11,3.82-5.78,10.46-6.8,13.57-.1.31-.06.65.12.93.27.43.42.95.4,1.5-.06,1.41-1.22,2.51-2.62,2.51-.04,0-.07,0-.11,0-1.21-.05-2.24-.67-2.82-1.7-1.5-2.67.39-6.96,7.25-19.35.3-.54.42-.79.26-.9-.28-.19-.68.17-1.4.69-3.75,2.71-8.27,6.31-12.25,9.73-.04.03-.08.05-.12.08-.08.06-.15.11-.24.16-.07.04-.14.08-.22.12-.08.04-.16.07-.24.1-.09.03-.17.06-.26.08-.05.01-.09.03-.14.04-.03,0-.06,0-.1,0-.08.01-.15.02-.23.02-.1.01-.2.03-.3.03-1,0-1.92-.47-2.49-1.29-1.31-1.91-2.67-3.89,22.84-44.62l.97-1.56c.17-.27.45-.46.77-.52,3-.57,4.4,2.14,3.26,3.98ZM102.59,49.44c-.55.12-1.04.17-1.5.17-2.51,0-3.65-1.62-3.97-2.19-2.15-3.81,1.65-9.92,5.55-13.99.39-.4.87-.66,1.38-.76.24-.05.43-.23.49-.47.16-.64.58-1.29,1.32-1.86.1-.08.23-.13.36-.14,4.26-.4,4.21,4.18,4.19,5.54-.06,4.82-2.2,12.45-7.83,13.69ZM104.77,38.99c-1.84,2.31-2.66,4.15-2.92,5.19.73-.34,1.29-1.13,1.66-1.78.58-1.02.99-2.23,1.25-3.42ZM157.84,18.79c-.46,2.72-2.98,3.29-4.44,2.11-.11-.09-.24-.18-.38-.22-2.27-.63-9.69.18-18.59,1.67-.32.05-.59.24-.77.51-3.58,5.68-7.7,12.34-11.34,18.7-6.11,10.67-8.31,16-9.07,18.61-.16.56.13,1.17.69,1.35,1.39.46,2.37,2.06,1.45,4.1-.11.24-.32.43-.56.54-1.19.51-2.18.71-3.01.71-1.76,0-2.76-.89-3.26-1.53-2.58-3.35-.45-11.13,17.05-39.44.52-.84-.21-1.89-1.17-1.7-3.04.61-6.1,1.26-9.06,1.93-.2.04-.39.07-.58.07-1.2,0-2.28-.82-2.55-2.04-.32-1.41.56-2.82,1.98-3.14.08-.02,7.58-1.72,16.05-3.25.31-.06.58-.24.75-.5,1.2-1.9,2.46-3.87,3.78-5.92,1.18-1.84,2.13-3.31,2.74-4.29,1.15-1.83,4.19-1.76,5,1.17.08.31.05.63-.12.91-.54.9-1.68,2.67-3.2,5.05-.06.09-.11.18-.17.27-.52.81.15,1.86,1.1,1.72,15.45-2.14,16.28,0,17.53,1.85.15.23.23.5.18.77ZM135.52,49.44c-.55.12-1.05.17-1.5.17-2.51,0-3.65-1.62-3.97-2.19-2.14-3.81,1.65-9.92,5.55-13.99.39-.4.87-.66,1.38-.76.24-.05.43-.23.49-.47.16-.64.58-1.29,1.32-1.86.1-.08.23-.13.36-.14,4.26-.4,4.21,4.18,4.19,5.54-.06,4.82-2.2,12.45-7.83,13.69ZM137.7,38.99c-1.84,2.31-2.66,4.15-2.92,5.19.72-.34,1.29-1.13,1.66-1.78.58-1.02.99-2.23,1.26-3.42Z"/></svg>');
	--inquiry-title: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 170 75"><path d="M70.41,37.37c-.34,2.85-2.81,3.53-4.33,2.47-.12-.08-.24-.16-.39-.18-3.03-.57-14.99,1.35-25.63,3.68-.28.06-.53.24-.68.49-9.05,15-12.5,21.96-13.73,25.19-.15.4-.08.88.24,1.17.73.68,1.11,1.82.66,3.25-.06.19-.26.44-.43.54-1.21.76-2.21,1.03-3.01,1.03-1.31,0-2.11-.7-2.46-1.1-1.58-1.8-1.08-4.56,1.97-10.93,1.88-3.91,4.77-9.2,8.59-15.73,1.15-1.96,2.34-3.96,3.53-5.94.08-.13.12-.28.14-.43.1-.73.49-1.38,1.09-1.8.13-.09.24-.19.32-.32,5.36-8.8,10.66-17.11,13.58-21.68.86-1.36,1.5-2.35,1.84-2.9.77-1.23,2.38-1.6,3.61-.83,1.23.77,1.6,2.39.83,3.61-.35.56-1,1.57-1.87,2.94-3.64,5.7-6.83,10.77-9.63,15.29-.48.78.2,1.75,1.1,1.58,24.12-4.78,23.2-.98,24.24-.31.26.17.43.61.4.91ZM93.5,3.54c-.45,2.77-3.02,3.33-4.48,2.11-.1-.09-.21-.17-.34-.21-3.87-1.17-23.29,1.98-39.68,5.71-.2.04-.39.07-.58.07-1.2,0-2.28-.83-2.56-2.04-.32-1.41.56-2.82,1.98-3.14.1-.02,10-2.27,20.15-3.99,23.01-3.92,23.89-1.37,25.35.78.12.18.21.51.17.72ZM80.52,50.5c-.55.12-1.05.17-1.5.17-2.51,0-3.65-1.62-3.97-2.19-2.14-3.81,1.65-9.92,5.55-14,.39-.4.87-.66,1.38-.76.24-.05.43-.23.49-.47.16-.64.58-1.29,1.32-1.86.1-.08.23-.13.36-.14,4.26-.4,4.21,4.18,4.19,5.55-.06,4.82-2.2,12.45-7.83,13.7ZM82.7,40.05c-1.84,2.31-2.66,4.15-2.92,5.19.72-.34,1.29-1.13,1.66-1.78.58-1.02.99-2.24,1.26-3.42ZM115.76,38.85c-4.49,2.91-7.95,1.62-10.24.77-2.21-.82-2.8-1.04-4.61,1.01-.01.01-.03.03-.04.04-1.81,3-3.38,5.73-4.11,7.23-.09.19-.11.39-.1.6.05,1.04-.52,2.05-1.52,2.51-.41.19-.83.28-1.25.28-.78,0-1.53-.32-2.06-.93-1.46-1.67-.93-3.23,3.78-11.13,2.25-3.77,4.61-7.48,4.64-7.52.78-1.22,2.4-1.58,3.62-.8.79.5,1.21,1.35,1.21,2.22,0,.49.33.93.8,1.07.53.16,1.02.34,1.47.5,2.13.79,3.48,1.29,6.13-.65.28-.2.63-.28.96-.2,3.01.74,3.14,3.81,1.31,5ZM149.68,34.28c.5.83,2.01,3.37-3.9,14.27-1.03,1.91-4.09,2.02-5.07-.88-.1-.31-.08-.64.08-.93.61-1.09,1.2-2.24,1.74-3.36.53-1.1-.83-2.13-1.76-1.33-1.72,1.49-3.6,3.26-5.36,5.07-1.35,1.39-3.93,1-4.6-1.52-.06-.22-.03-.45.05-.66,1.08-2.81,1.96-5.89,2.47-8.36.24-1.16-1.24-1.85-1.98-.93-2.35,2.95-5.3,7.77-7.7,12.78-.45.94-1.39,1.49-2.37,1.49-1.07,0-2.17-.65-2.77-2.16-.11-.27-.08-.58.04-.84,2.25-4.82,9.22-18.64,15.41-19.41,1.55-.19,2.96.36,3.87,1.51.97,1.22,1.24,3.15,1.1,5.35-.06.95,1.02,1.52,1.79.97,2.24-1.61,4.36-2.74,5.95-2.74t0,0c1.28,0,2.38.61,3.02,1.68Z"/></svg>');
	--link-title: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 254 75"><path d="M97.98,58.07c-.14.16-.34.27-.55.32-1.92.4-3.67-.19-4.79-1.54-2.42-2.93-1.29-8.85.03-15.7.62-3.24,1.62-8.44,1.29-10.4-.09.03-.2.08-.32.13-4.57,2.02-12.56,11.3-18.99,18.77-9.72,11.29-13.25,15.13-16.66,13.92-.88-.31-2.36-1.24-2.44-3.96-.11-4.04,3.05-12.15,6.71-21.53,2.79-7.15,7.3-18.72,7.29-22.56-.21.09-.46.21-.77.38-5.51,3.04-16.06,13.78-27.52,28.02-1.37,1.7-2.66,3.33-3.87,4.9-.05.07-.09.14-.13.21-11.32,25.07-14.5,25.21-16.23,25.29-.06,0-.11,0-.17,0-1.49,0-2.75-.93-3.15-2.35-.42-1.47-.36-3.63,5.21-12.16,2.57-3.94,5.95-8.64,9.73-13.57.05-.07.09-.13.13-.21,1.12-2.49,2.29-5.19,3.53-8.12,6.11-14.45,9.51-24.6,10.76-29.77.11-.46-.08-.96-.49-1.17-.23-.11-.44-.26-.63-.45-1.06-1.01-1.1-2.7-.08-3.76.71-.74,2.87-2.99,5.25-1.71,2.47,1.33,1.92,4.76,1.21,7.87-.98,4.32-3.05,10.5-5.55,17.15-.41,1.1.99,1.96,1.78,1.09,5.96-6.55,12.7-13.21,17.66-15.94,2.96-1.63,5.3-1.72,6.96-.26,3.63,3.18,1.11,10.89-5.96,29.02-1.6,4.11-3.32,8.51-4.56,12.17-.37,1.09,1.02,1.91,1.79,1.06,2.04-2.24,4.27-4.83,6.18-7.05,7.47-8.68,15.2-17.66,20.87-20.16,2.92-1.29,4.76-.58,5.8.24,3.16,2.52,2.03,8.42.6,15.89-.6,3.13-1.54,8.02-1.37,10.33.03.42.32.75.71.9,1.61.63,2.46,2.79.75,4.69ZM120.44,47.2c-4.88,2.1-8.39,3.12-10.92,3.12-1.82,0-3.13-.53-4.08-1.58-1.62-1.79-1.47-4.46.45-7.92,3.69-6.66,7.32-8.34,9.16-8.74,1.42-.32,2.74-.1,3.72.62,1.05.76,1.62,2.02,1.5,3.35-.13,1.59-1.2,2.98-2.91,3.84-1.93.96-4.68,1.13-5.21,1.15-.05,0-.09,0-.14,0-.47.67-.97,1.45-1.47,2.36-.09.16-.17.32-.24.46-.25.5.18,1.07.73.96,1.5-.29,4.05-1.05,8.23-2.9.16-.07.35-.08.51-.02,3.11,1.18,2.75,4.41.68,5.3ZM157.27,34.47c.5.84,2.03,3.41-3.95,14.46-1.05,1.93-4.14,2.05-5.14-.89-.11-.31-.08-.65.08-.94.62-1.1,1.22-2.27,1.76-3.4.53-1.12-.84-2.16-1.78-1.35-1.75,1.51-3.64,3.3-5.43,5.14-1.37,1.41-3.98,1.02-4.66-1.54-.06-.22-.03-.46.05-.67,1.09-2.84,1.99-5.97,2.5-8.47.24-1.17-1.26-1.88-2-.94-2.38,2.99-5.37,7.88-7.8,12.94-.46.95-1.41,1.51-2.4,1.51-1.08,0-2.2-.66-2.8-2.18-.11-.28-.08-.59.05-.85,2.28-4.88,9.34-18.88,15.61-19.67,1.57-.19,3,.36,3.92,1.53.98,1.24,1.25,3.19,1.11,5.42-.06.96,1.03,1.54,1.81.98,2.26-1.63,4.42-2.78,6.03-2.78,1.3,0,2.41.62,3.06,1.7ZM170.69,37.37c-.36.67.49,1.33,1.05.81,5.02-4.59,10.53-9.21,13.16-9.98,1.65-.49,3.26.31,3.83,1.9,1.48,4.12-7.23,18.96-13.9,21.8-.99.42-1.96.63-2.89.63-1.56,0-2.98-.59-4.19-1.72-.26-.24-.65-.21-.92.03-.19.17-.4.31-.65.42-.79.36-1.48.5-2.07.5-1.34,0-2.15-.71-2.51-1.12-1.67-1.91-2.07-4.65,8.11-22.45,5.36-9.38,11.74-19.51,14.46-23.83l.96-1.53c.78-1.24,2.42-1.62,3.66-.84,1.24.78,1.62,2.42.84,3.66l-.97,1.55c-9.22,14.63-14.72,24.08-17.99,30.18ZM171.26,46.84c.43.44.75.37.96.33,2.03-.42,4.66-3.37,6.88-6.65.45-.66-.41-1.41-1.01-.89-2.13,1.88-4.47,4.04-6.81,6.26-.27.26-.29.69-.03.96ZM205.78,47.2c-4.88,2.1-8.39,3.12-10.92,3.12-1.82,0-3.13-.53-4.08-1.58-1.62-1.79-1.47-4.46.45-7.92,3.69-6.66,7.32-8.34,9.16-8.74,1.42-.32,2.74-.1,3.72.62,1.05.76,1.62,2.02,1.5,3.35-.13,1.59-1.2,2.98-2.91,3.84-1.93.96-4.68,1.13-5.21,1.15-.05,0-.09,0-.14,0-.47.67-.97,1.45-1.47,2.36-.09.16-.17.32-.24.46-.25.5.18,1.07.73.96,1.5-.29,4.05-1.05,8.23-2.9.16-.07.35-.08.51-.02,3.11,1.18,2.75,4.41.68,5.3ZM235.22,39.09c-4.55,2.94-8.06,1.64-10.37.78-2.24-.83-2.84-1.05-4.67,1.02-.01.01-.03.03-.04.04-1.84,3.04-3.42,5.8-4.16,7.33-.09.19-.11.4-.1.61.05,1.05-.53,2.08-1.54,2.54-.41.19-.84.28-1.26.28-.79,0-1.55-.33-2.09-.94-1.48-1.7-.94-3.28,3.83-11.28,2.28-3.81,4.67-7.58,4.7-7.61.79-1.24,2.43-1.6,3.67-.81.8.51,1.23,1.37,1.22,2.25,0,.5.33.94.81,1.08.53.16,1.03.34,1.48.51,2.16.8,3.53,1.31,6.21-.66.28-.21.64-.28.98-.2,3.05.75,3.18,3.86,1.33,5.06Z"/></svg>');
}
