@charset "UTF-8";
/*
	HTML5 Reset :: style.css
	----------------------------------------------------------
	We have learned much from/been inspired by/taken code where offered from:

	Eric Meyer					:: http://meyerweb.com
	HTML5 Doctor				:: http://html5doctor.com
	and the HTML5 Boilerplate	:: http://html5boilerplate.com

-------------------------------------------------------------------------------*/
/* Let's default this puppy out
-------------------------------------------------------------------------------*/
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

article, aside, figure, footer, header, nav, section, details, summary {
  display: block;
}

/* Handle box-sizing while better addressing child elements:
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects */
/* if you don't have full control over `img` tags (if you have to overcome attributes), consider adding height: auto */
img,
object,
embed {
  max-width: 100%;
}

/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
	In fact, it *will* cause problems with Google Maps' controls at small size.
	If this is the case for you, try uncommenting the following:

#map img {
		max-width: none;
}
*/
/* force a vertical scrollbar to prevent a jumpy page */
html {
  overflow-y: scroll;
}

/* we use a lot of ULs that aren't bulleted.
	you'll have to restore the bullets within content,
	which is fine because they're probably customized anyway */
ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: bold;
  vertical-align: bottom;
}

td {
  font-weight: normal;
  vertical-align: top;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

pre {
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}

input[type=radio] {
  vertical-align: text-bottom;
}

input[type=checkbox] {
  vertical-align: bottom;
}

.ie7 input[type=checkbox] {
  vertical-align: baseline;
}

.ie6 input {
  vertical-align: text-bottom;
}

select, input, textarea {
  font: 99% sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

small {
  font-size: 85%;
}

strong {
  font-weight: bold;
}

td, td img {
  vertical-align: top;
}

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* standardize any monospaced elements */
pre, code, kbd, samp {
  font-family: monospace, sans-serif;
}

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
  margin: 0;
}

/* make buttons play nice in IE */
button,
input[type=button] {
  width: auto;
  overflow: visible;
}

/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/* let's clear some floats */
.clearfix:before, .clearfix:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

:root {
  --header-height: 80px;
  --frame-border-width: 8px;
}
@media (max-width: 1024px) {
  :root {
    --header-height: 88px;
  }
}

html {
  font-size: 62.5%;
  height: 100%;
  overflow-y: auto;
}

body {
  color: #000;
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-size: 1.6rem;
  height: 100%;
  line-height: 1;
  position: relative;
  word-break: break-word;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.1s ease-out;
}
a:hover {
  opacity: 0.4;
}

button {
  font-size: inherit;
  transition: opacity 0.1s ease-out;
}
button:hover {
  opacity: 0.4;
}

picture {
  display: block;
}

main {
  display: block;
  padding: calc(var(--frame-border-width) + var(--header-height)) var(--frame-border-width) 0;
}

img {
  height: auto;
  vertical-align: bottom;
  width: 100%;
}

svg {
  display: block;
  height: auto;
  width: 100%;
}

input,
select,
button,
textarea {
  color: inherit;
  font: inherit;
  outline: none;
}

input[type=number] {
  -moz-appearance: textfield !important;
}
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

button {
  cursor: pointer;
}

*::-webkit-input-placeholder {
  color: #999;
}

*::-moz-placeholder {
  color: #999;
}

*::placeholder {
  color: #999;
}

.container {
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

[data-mv-other-animation] {
  transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}
[data-mv-other-animation]:not([data-mv-other-animation=done]) {
  opacity: 0;
  visibility: hidden;
}

.animation {
  --animation-order: 1;
}
.animation.jsAnimation {
  transition-delay: calc(0.2s * (var(--animation-order, 1) - 1));
  transition-duration: 0.6s;
  transition-property: opacity, visibility;
  transition-timing-function: ease-in-out;
}
.animation:not(.has_reached) {
  opacity: 0;
  visibility: hidden;
}

@-webkit-keyframes updown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(1.7777777778%);
            transform: translateY(1.7777777778%);
  }
}

@keyframes updown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(1.7777777778%);
            transform: translateY(1.7777777778%);
  }
}
@-webkit-keyframes text-scroll {
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes text-scroll {
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes cloud {
  to {
    -webkit-transform: translateX(25%);
            transform: translateX(25%);
  }
}
@keyframes cloud {
  to {
    -webkit-transform: translateX(25%);
            transform: translateX(25%);
  }
}
@-webkit-keyframes insect-hunting-move {
  to {
    -webkit-transform: translateX(-84.2528735632%);
            transform: translateX(-84.2528735632%);
  }
}
@keyframes insect-hunting-move {
  to {
    -webkit-transform: translateX(-84.2528735632%);
            transform: translateX(-84.2528735632%);
  }
}
@-webkit-keyframes dog-move-x {
  to {
    -webkit-transform: translateX(351.1290322581%);
            transform: translateX(351.1290322581%);
  }
}
@keyframes dog-move-x {
  to {
    -webkit-transform: translateX(351.1290322581%);
            transform: translateX(351.1290322581%);
  }
}
@-webkit-keyframes dog-move-y {
  50% {
    -webkit-transform: translateY(27.2727272727%);
            transform: translateY(27.2727272727%);
  }
}
@keyframes dog-move-y {
  50% {
    -webkit-transform: translateY(27.2727272727%);
            transform: translateY(27.2727272727%);
  }
}
@-webkit-keyframes turn {
  49.9% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50% {
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
  }
  99.9% {
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
  }
}
@keyframes turn {
  49.9% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50% {
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
  }
  99.9% {
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
  }
}
@-webkit-keyframes page_cloud {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(64px);
            transform: translateX(64px);
  }
}
@keyframes page_cloud {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(64px);
            transform: translateX(64px);
  }
}
@media (max-width: 768px) {
  @-webkit-keyframes page_cloud {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(32px);
              transform: translateX(32px);
    }
  }
  @keyframes page_cloud {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(32px);
              transform: translateX(32px);
    }
  }
}
@-webkit-keyframes illust_slide_to_edge {
  0% {
    right: -10%;
  }
  100% {
    right: 110%;
  }
}
@keyframes illust_slide_to_edge {
  0% {
    right: -10%;
  }
  100% {
    right: 110%;
  }
}
@-webkit-keyframes bicycle-move-linear {
  to {
    -webkit-transform: translateX(calc(-100cqw + 100%));
            transform: translateX(calc(-100cqw + 100%));
  }
}
@keyframes bicycle-move-linear {
  to {
    -webkit-transform: translateX(calc(-100cqw + 100%));
            transform: translateX(calc(-100cqw + 100%));
  }
}
@-webkit-keyframes bicycle-opacity {
  0% {
    opacity: 0;
  }
  1% {
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes bicycle-opacity {
  0% {
    opacity: 0;
  }
  1% {
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.bordered {
  border: 1px solid #22a720;
  border-radius: 8px;
}

.button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #ff8100 url(../images/common/texture_button.png) no-repeat center/cover;
  border: 1px solid #000;
  border-radius: 1000px;
  display: grid;
  font-weight: 500;
  grid-auto-columns: minmax(0, 1fr);
  line-height: 1.6;
  min-height: 58px;
  min-width: min(312px, 100%);
  padding: 6px;
  place-items: center;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.button_size_small {
  min-height: 48px;
  min-width: min(140px, 100%);
  padding: 8px 16px;
}
.button_color_secondary {
  background: #fff;
  border-color: #a3a29d;
}
.button_type_disabled {
  background: #f2f2f2;
  border-color: #a3a29d;
  color: #a3a29d;
  cursor: not-allowed;
}
.button_type_disabled:hover {
  opacity: 1;
}
.button__text {
  font-size: inherit;
  font-weight: inherit;
}

.pageHeading {
  position: relative;
}
.pageHeading::before {
  background: url("../images/common/page_bg_top_img_01.png") no-repeat bottom left/100% auto;
  bottom: -2px;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: -2;
}
.pageHeading__container {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: start;
          justify-content: start;
  position: relative;
}
@media (max-width: 768px) {
  .pageHeading__container {
    padding: 0 24px;
  }
}
.pageHeading__txtWrap {
  gap: 16px;
  padding: 40px 0 89px 48px;
  position: relative;
}
@media (max-width: 768px) {
  .pageHeading__txtWrap {
    padding: 0 0 69px 48px;
  }
}
.pageHeading__navIcon {
  left: 0;
  position: absolute;
  top: 49px;
}
@media (max-width: 768px) {
  .pageHeading__navIcon {
    top: 8px;
  }
}
.pageHeading__txt {
  background: linear-gradient(to top, rgba(245, 199, 29, 0.2) 43%, transparent 43%);
  display: inline;
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
}
.pageHeading__illustWrap {
  aspect-ratio: 400/136;
  bottom: 0;
  display: grid;
  margin-bottom: 38px;
  margin-right: 8.3333333333%;
  position: absolute;
  right: 0;
  width: 37.3134328358%;
  z-index: -1;
}
@media (max-width: 768px) {
  .pageHeading__illustWrap {
    margin-bottom: 12px;
    min-width: 150px;
  }
}
.pageHeading__illust_type_left {
  -webkit-animation: page_cloud 3s linear infinite alternate;
          animation: page_cloud 3s linear infinite alternate;
  grid-column: 1/2;
  grid-row: 1/2;
  width: 48.25%;
}
.pageHeading__illust_type_left::before {
  aspect-ratio: 193/80;
  background: url("../images/common/ornament_cloud_01.png") no-repeat center/cover;
  content: "";
  display: block;
  width: 96.5%;
}
@media (max-width: 768px) {
  .pageHeading__illust_type_left::before {
    min-width: 68px;
  }
}
.pageHeading__illust_type_right {
  -webkit-align-items: end;
          align-items: end;
  align-self: end;
  aspect-ratio: 200/113;
  display: -webkit-flex;
  display: flex;
  grid-column: 1/2;
  grid-row: 1/2;
  justify-self: end;
  width: 50%;
}
.pageHeading__illust_type_right::before {
  aspect-ratio: 1;
  background: url("../images/common/ornament_tree_01.png") no-repeat center/cover;
  bottom: -6px;
  content: "";
  display: block;
  position: relative;
  width: 29%;
}
@media (max-width: 768px) {
  .pageHeading__illust_type_right::before {
    bottom: -2px;
    min-width: 20px;
  }
}
.pageHeading__illust_type_right::after {
  aspect-ratio: 142/107;
  background: url("../images/common/ornament_seesaw.gif") no-repeat center/cover;
  content: "";
  display: block;
  width: 71%;
}
@media (max-width: 768px) {
  .pageHeading__illust_type_right::after {
    min-width: 50px;
  }
}
.pageHeading__navIcon {
  --header-nav-icon: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="16" fill="none" viewBox="0 0 18 16"><g clip-path="url(%23a)"><path fill="%23FC7B74" d="M2.2806 7.39056C2.2473 7.817 2.2428 8.24608 2.3004 8.66989C2.3022 8.68132 2.3121 8.69099 2.3139 8.70154C2.3121 8.69011 2.3022 8.68044 2.3004 8.66989C2.151 8.72089 1.8369 8.76309 1.7073 8.82991C1.4517 8.9618 1.4787 9.09106 1.1673 9.18162C1.0449 9.21767 0.0512981 9.3988 0.00629813 9.36187C-0.0162019 8.89762 0.0233981 8.43161 0.0359981 7.96648C0.567898 8.03858 0.107098 7.62796 0.675898 7.4864C0.858598 7.44067 1.0512 7.4398 1.2654 7.39056C1.2708 7.38968 1.2897 7.47145 1.3473 7.45474C1.3851 7.44331 1.4868 7.24899 1.6416 7.19888C2.2437 7.00632 1.8081 7.47936 2.2797 7.39056H2.2806Z" /><path fill="%23FDBB00" d="M0.862997 6.55263C0.774797 6.92192 1.0898 6.92544 1.2005 7.05381C1.2239 7.08107 1.1456 7.11976 1.1681 7.14965C1.1798 7.16548 1.2617 7.18834 1.2662 7.19801C1.2905 7.25253 1.3049 7.33694 1.2662 7.38969C1.052 7.43981 0.859397 7.43981 0.676697 7.48553C0.470597 7.30089 0.378797 7.14086 0.0646973 7.19274C0.0781973 6.94303 0.0619973 6.68804 0.111497 6.44184C0.149297 6.41371 0.759497 6.53065 0.863897 6.55175L0.862997 6.55263Z" /><path fill="%23FBE77E" d="M1.26547 7.19616C1.26097 7.18649 1.17907 7.16363 1.16737 7.1478C1.14577 7.11791 1.22407 7.07922 1.19977 7.05196C1.08997 6.92359 0.774967 6.92007 0.862267 6.55078C0.939667 6.56661 1.37887 6.62024 1.39417 6.64222C1.41667 6.67476 1.37797 6.81368 1.39597 6.86028C1.40947 6.89633 1.50127 6.92623 1.49407 6.98866C1.49137 7.01679 1.29877 7.16099 1.26457 7.19616H1.26547Z" /><path fill="%23F3CE16" d="M16.7461 9.47702C16.7479 9.448 16.7551 9.41899 16.7569 9.38997C16.7902 8.87033 16.9414 8.31551 16.9477 7.79762C16.9549 7.15664 16.783 6.3908 16.7434 5.73047C16.9009 5.76564 16.9738 5.90193 17.08 5.99777C18.2572 7.04849 18.3904 8.41663 16.9702 9.3337C16.8946 9.38294 16.8136 9.41811 16.7452 9.47702H16.7461Z" /><path fill="%23FC7B74" d="M7.73275 6.52822C7.74715 7.41892 7.82635 9.69973 7.63285 10.4585C7.61755 10.5175 7.60315 10.5597 7.57345 10.6107C7.32865 10.535 7.15225 10.535 6.91645 10.4867C6.90475 10.484 6.89305 10.484 6.88225 10.4823C6.24145 10.3513 5.58715 10.2546 4.94365 10.1279C5.11375 9.57576 4.26595 9.81228 4.21285 9.70765C4.20385 9.69094 4.32265 9.44211 4.29475 9.40342C4.01215 9.53267 3.47305 9.24691 3.36145 9.00336C3.34705 8.97258 3.28495 8.58922 3.32905 8.55581C3.38755 8.51009 3.55405 8.56988 3.59095 8.52416L3.49285 8.39578L3.54235 8.31577C3.75205 8.22608 4.19395 8.51448 4.22995 8.50745C4.27405 8.49954 4.14895 8.3316 4.26235 8.28324C4.49365 8.53471 4.83565 8.27269 4.88425 8.28324C4.89955 8.28675 4.90855 8.36853 4.94995 8.37908C5.26135 8.45821 5.06785 8.28324 5.14615 8.21905C5.18215 8.19004 5.50975 8.45469 5.60425 8.44326C5.67715 8.43535 5.77615 8.29291 5.68615 8.23576L5.80045 8.1874C5.88145 8.42392 6.02455 8.41864 6.19375 8.60329C6.34135 8.21905 6.10645 8.2762 6.04615 8.20322C6.02005 8.17157 6.02365 7.9878 5.99665 7.96318C5.97955 7.94648 5.72665 7.94208 5.68525 7.91483C5.64925 7.89108 5.43055 7.16393 5.40715 7.73897C5.10655 7.59213 4.88605 7.81547 4.62145 7.77063C4.21195 7.70116 4.59625 7.48311 4.32715 7.25889C3.96085 7.28439 3.70165 7.16833 3.32815 7.22724C3.35155 7.03644 3.86365 7.01358 4.04815 6.97137C4.84105 6.78936 5.93905 6.59505 6.74995 6.61967C6.86425 6.62318 7.05955 6.7498 7.07755 6.74804C7.09285 6.7454 7.20175 6.59417 7.32325 6.55636C7.41505 6.52734 7.62835 6.5291 7.73275 6.52734V6.52822Z" /><path fill="%232B5E49" d="M5.87888 11.2969C5.88968 11.2969 5.90138 11.2969 5.91218 11.2969C5.90228 11.3558 5.92388 11.4068 5.93738 11.4604C6.20828 12.5041 6.93818 13.7149 7.32968 14.748C7.01918 14.7445 6.86798 14.9001 6.63578 15.0522C6.60608 15.0716 6.68978 15.1146 6.65198 15.1322C6.58988 15.1612 6.28658 15.0127 6.45578 14.9406C6.65468 15.2017 6.58628 14.8394 6.57008 14.8289C6.52958 14.8016 6.39908 14.8746 6.32438 14.8447C6.28748 14.8298 6.17048 14.5563 6.17678 14.5405C6.18488 14.522 6.42518 14.2829 6.47108 14.253C6.10298 14.2767 6.27578 13.9399 6.24158 13.8371C6.21548 13.7579 5.89598 13.7421 5.84828 13.6129C5.84468 13.6041 5.94548 13.4625 5.94638 13.4528C5.98418 12.9701 5.94638 13.1512 5.66828 12.7969C5.51528 13.0167 5.47208 12.6852 5.43878 12.6685C5.30468 12.6008 4.63058 12.8119 4.42358 12.7327C4.55138 13.0827 4.93028 12.8277 5.19308 12.9728L5.14358 13.0528C5.22818 13.0686 5.41268 12.9974 5.38928 13.1328C5.35418 13.2418 4.90508 13.1108 4.83218 13.2612L5.01218 13.5328L4.36058 13.6612C4.10588 13.015 3.78368 12.155 3.61808 11.4903C3.60458 11.434 3.57758 11.383 3.59018 11.3233C4.21568 11.3848 5.22008 11.3215 5.87618 11.2969H5.87888Z" /><path fill="%23FE0000" d="M4.94374 10.1306C4.32004 10.0084 3.64324 9.90638 3.03124 9.75427C2.88094 9.71646 2.57764 9.69975 2.48134 9.58193C2.43724 9.52742 2.33104 8.83192 2.31304 8.70354C2.31124 8.69211 2.30134 8.68244 2.29954 8.67189C2.24284 8.24721 2.24644 7.819 2.27974 7.39256C2.28244 7.36091 2.28964 7.32925 2.29324 7.29672C2.52994 7.17978 2.61364 7.49455 2.68924 7.4884C2.70904 7.48664 2.79364 7.36794 2.82064 7.36003C2.92504 7.33189 3.25444 7.24396 3.32824 7.23165C3.70174 7.17274 3.96094 7.28968 4.32724 7.26331C4.59724 7.48752 4.21294 7.70558 4.62154 7.77504C4.88704 7.81988 5.10664 7.59567 5.40724 7.74339C5.43154 7.16835 5.64934 7.8955 5.68534 7.91924C5.72584 7.9465 5.97874 7.95089 5.99674 7.9676C6.02284 7.99222 6.02014 8.17599 6.04624 8.20764C6.10564 8.28062 6.34144 8.22347 6.19384 8.6077C6.02464 8.42306 5.88244 8.42833 5.80054 8.19181L5.68624 8.24017C5.77624 8.2982 5.67724 8.44064 5.60434 8.44768C5.50984 8.45999 5.18134 8.19445 5.14624 8.22347C5.06794 8.28765 5.26144 8.46263 4.95004 8.38349C4.90864 8.37294 4.89964 8.29117 4.88434 8.28765C4.83574 8.2771 4.49374 8.53912 4.26244 8.28765C4.14904 8.33601 4.27414 8.50395 4.23004 8.51186C4.19404 8.51802 3.75214 8.22962 3.54244 8.32018L3.49294 8.4002L3.59104 8.52857C3.55414 8.57517 3.38764 8.51538 3.32914 8.56022C3.28504 8.59364 3.34804 8.977 3.36154 9.00777C3.47314 9.25133 4.01224 9.53621 4.29484 9.40784C4.32274 9.44564 4.20484 9.69536 4.21294 9.71206C4.26694 9.81582 5.11384 9.57929 4.94374 10.1324V10.1306Z" /><path fill="%23FDBB00" d="M7.72394 5.58738C7.76354 5.81687 7.73024 6.07185 7.73654 6.30486C7.62854 6.3031 7.45574 6.30222 7.35674 6.27145C7.34234 6.26705 7.28474 6.11142 7.11104 6.14308C7.02554 6.1589 6.98954 6.26969 6.97964 6.27145C6.72854 6.30926 6.36854 6.24683 6.12824 6.27145C6.08504 6.27584 5.87084 6.38927 5.76824 6.39982C5.44154 6.43235 4.91234 6.3541 4.62254 6.43147C4.51454 6.46049 4.66214 6.51676 4.62254 6.52731C4.32374 6.60733 3.56954 6.48071 3.21494 6.49566C3.18524 6.49654 3.21224 6.58974 3.18254 6.5915C2.91974 6.60557 2.66864 6.55457 2.40674 6.55985C2.52914 6.04987 2.42024 5.98481 2.97014 5.81159C3.84134 5.53638 5.49824 5.31393 6.44144 5.20402C6.70784 5.17325 7.33784 5.04575 7.55474 5.18468C7.56374 5.18995 7.58174 5.18028 7.58714 5.18468C7.65104 5.23391 7.70954 5.49857 7.72484 5.58826L7.72394 5.58738Z" /><path fill="%236CB496" d="M4.94392 10.1302C5.58742 10.256 6.24172 10.3536 6.88252 10.4846C6.89422 10.4872 6.90592 10.4872 6.91672 10.489L6.90052 10.6217C6.97342 11.4526 6.48382 11.2742 5.91232 11.297C5.90152 11.297 5.88982 11.297 5.87902 11.297C5.22292 11.3216 4.21852 11.3849 3.59302 11.3234C2.72632 11.2381 3.16552 10.5391 3.03052 9.91833L3.03232 9.75391C3.64342 9.9069 4.32022 10.008 4.94482 10.1302H4.94392Z" /><path fill="%2350A77D" d="M7.34924 14.7815C7.37714 14.8554 7.41944 14.931 7.44104 15.0057C7.03064 14.9205 7.20164 15.1895 7.14314 15.23C7.00004 15.3284 6.23324 15.0137 6.40604 15.6907C6.12254 15.7065 5.44574 15.7672 5.24054 15.5817C5.01014 15.3733 4.50884 14.0315 4.36304 13.6622L5.01464 13.5339L4.83464 13.2622C4.90664 13.1118 5.35574 13.2437 5.39174 13.1338C5.41514 12.9984 5.23064 13.0696 5.14604 13.0538L5.19554 12.9738C4.93274 12.8287 4.55384 13.0837 4.42604 12.7337C4.63304 12.8137 5.30714 12.6027 5.44124 12.6695C5.47364 12.6862 5.51684 13.0177 5.67074 12.7979C5.94884 13.1523 5.98754 12.9711 5.94884 13.4538C5.94884 13.4635 5.84714 13.6051 5.85074 13.6139C5.89844 13.7431 6.21794 13.7589 6.24404 13.8381C6.27824 13.941 6.10454 14.2777 6.47354 14.254C6.42764 14.2848 6.18644 14.523 6.17924 14.5415C6.17294 14.5573 6.28994 14.8308 6.32684 14.8457C6.40064 14.8756 6.53204 14.8018 6.57254 14.8299C6.58874 14.8404 6.65624 15.2027 6.45824 14.9416C6.28904 15.0137 6.59234 15.1623 6.65444 15.1332C6.69224 15.1157 6.60854 15.0726 6.63824 15.0532C6.87044 14.9011 7.02164 14.7455 7.33214 14.749C7.33664 14.7604 7.34744 14.7692 7.35194 14.7807L7.34924 14.7815Z" /><path fill="%23FBE77E" d="M7.35666 6.27112L7.32426 6.55863C7.20276 6.59644 7.09386 6.74856 7.07856 6.75031C7.06146 6.75295 6.86526 6.62546 6.75096 6.62194C5.94006 6.59732 4.84296 6.79164 4.04917 6.97365C3.91327 6.77581 3.55056 7.00091 3.44346 7.0053C3.05646 7.02377 2.69286 6.89451 2.31396 6.84528C2.33196 6.74592 2.38146 6.65623 2.40576 6.55776C2.66766 6.55248 2.91966 6.60348 3.18156 6.58941C3.21126 6.58765 3.18426 6.49445 3.21396 6.49357C3.56856 6.47862 4.32366 6.60524 4.62156 6.52522C4.66116 6.51467 4.51356 6.4584 4.62156 6.42938C4.91226 6.35201 5.44146 6.42938 5.76726 6.39773C5.86986 6.38718 6.08406 6.27375 6.12726 6.26936C6.36756 6.24474 6.72756 6.30716 6.97866 6.26936C6.98766 6.2676 7.02456 6.15681 7.11006 6.14098C7.28376 6.10933 7.34137 6.26408 7.35577 6.26936L7.35666 6.27112Z" /><path fill="%236CB496" d="M7.4411 15.0049C7.6616 15.7778 7.0136 15.6564 6.4061 15.6898C6.2333 15.0128 6.9992 15.3285 7.1432 15.2291C7.2017 15.1887 7.0307 14.9196 7.4411 15.0049Z" /><path fill="%23FDB7A6" d="M7.73634 6.30597C7.73814 6.38071 7.73184 6.45632 7.73274 6.53194C7.62834 6.5337 7.41504 6.53194 7.32324 6.56096L7.35564 6.27344C7.45464 6.30509 7.62744 6.30509 7.73544 6.30685L7.73634 6.30597Z" /><path fill="%23FC7B74" d="M16.6889 1.43922C16.4207 1.52451 16.2029 1.12445 16.0013 1.48758C15.9509 1.57815 15.6746 3.15203 15.6737 3.31118C15.6737 3.33492 15.608 3.31909 15.608 3.34284C15.608 3.40966 15.698 3.61101 15.7061 3.79038C15.7079 3.83522 15.6071 3.94074 15.608 3.95041C15.6224 4.14033 15.8042 4.50435 15.8375 4.65382C15.8411 4.66877 15.7349 4.83231 15.8213 4.92551C16.0733 4.85253 15.8564 4.60546 15.8708 4.58963C15.8951 4.5615 16.0112 4.57557 16.0508 4.54127C16.0904 4.50698 16.0472 4.44983 16.0832 4.4129C16.0904 4.40587 16.2029 4.43488 16.2308 4.36454C16.2551 4.30211 16.0436 4.03746 16.067 3.94865C16.0706 3.93458 16.1597 3.92051 16.1651 3.88446C16.1795 3.78862 16.1714 3.51517 16.1975 3.40438C16.2236 3.2936 16.3631 3.13269 16.3613 3.11686C16.3568 3.08169 16.2425 3.06147 16.2299 3.02102C16.1516 2.75373 16.3343 2.75285 16.3613 2.66932C16.4423 2.41169 16.1309 1.40493 16.6889 1.53331C16.6952 2.96739 16.6583 4.28717 16.7438 5.73092C16.3316 5.63772 16.148 5.76082 16.067 6.13978C15.8735 6.13187 16.0598 5.84874 15.8708 5.93227C15.8348 5.96744 15.8168 6.32618 15.8051 6.34817C15.7007 6.54424 15.5153 6.31915 15.5432 6.77989H15.347C15.3497 5.13126 15.3371 3.52308 15.2534 1.88325C15.2516 1.84105 15.239 1.79797 15.2363 1.75488C15.2246 1.53243 15.2093 1.31437 15.2102 1.09104C15.2129 0.517754 15.2039 -0.194452 16.0346 0.0491051C16.886 0.297937 16.6835 0.742846 16.6898 1.43747L16.6889 1.43922Z" /><path fill="%23FE0000" d="M16.669 12.0597C16.6519 12.9566 16.6816 13.8508 16.6627 14.7468C16.2388 14.6369 16.5457 15.1178 16.345 15.2585C16.0966 15.4326 16.0921 14.9068 15.7393 15.5144C15.6574 15.6559 15.5908 15.7509 15.6079 15.9241C15.3838 15.8221 15.2929 15.5715 15.1408 15.4027C15.1318 15.3922 15.1255 15.379 15.1165 15.3693C15.2317 15.3359 15.2155 15.1961 15.2362 15.0976C15.391 14.3669 15.2713 13.0199 15.2812 12.2189C15.8293 12.3455 15.5296 12.2462 15.6745 11.9472C15.7024 11.89 15.769 11.9032 15.7726 11.8988C15.8986 12.0369 15.9571 12.0404 16.0345 11.8672C16.0588 11.8813 16.228 11.8892 16.2469 11.8988C16.3783 11.9665 16.3981 12.1336 16.669 12.0589V12.0597Z" /><path fill="%23FDB7A6" d="M16.6888 1.4409C16.6888 1.47255 16.6888 1.50509 16.6888 1.53674C16.1308 1.40837 16.4422 2.41425 16.3612 2.67275C16.3351 2.75628 16.1515 2.75804 16.2298 3.02446C16.2415 3.0649 16.3567 3.08513 16.3612 3.1203C16.363 3.137 16.2235 3.30055 16.1974 3.40782C16.1713 3.51509 16.1794 3.79206 16.165 3.8879C16.1596 3.92395 16.0705 3.93802 16.0669 3.95208C16.0435 4.04001 16.255 4.30555 16.2307 4.36798C16.2028 4.43832 16.0903 4.4093 16.0831 4.41634C16.0471 4.45239 16.0876 4.51218 16.0507 4.54471C16.0111 4.579 15.895 4.56493 15.8707 4.59307C15.8572 4.6089 16.0732 4.85597 15.8212 4.92895C15.7357 4.83575 15.841 4.67132 15.8374 4.65725C15.8041 4.50778 15.6223 4.14376 15.6079 3.95384C15.6079 3.94417 15.7087 3.83954 15.706 3.79382C15.6979 3.61445 15.6079 3.41221 15.6079 3.34627C15.6079 3.32253 15.6736 3.33836 15.6736 3.31462C15.6736 3.15547 15.9508 1.58158 16.0012 1.49102C16.2028 1.12788 16.4206 1.52795 16.6888 1.44266V1.4409Z" /><path fill="%23FCF600" d="M16.757 9.39062C16.7552 9.41964 16.748 9.44866 16.7462 9.47767C16.6985 10.2382 16.6868 11.0067 16.6697 11.7708L16.2962 11.755C16.2026 11.6433 16.6805 11.2617 16.1 11.6433C15.8354 11.4305 15.9443 11.1113 15.9686 10.8115C16.1468 10.7763 16.4546 10.9012 16.3943 10.604C16.3718 10.5697 15.9074 10.4765 15.8867 10.4598C15.8651 10.4422 15.8498 10.1925 15.6743 10.2356C15.6842 10.1653 15.8345 9.78278 15.9362 9.69133C16.01 9.62539 15.9524 9.62363 16.1324 9.62715C16.262 9.62978 16.2692 9.67287 16.3781 9.69133C16.3853 9.34842 16.4519 9.40997 16.757 9.39062Z" /><path fill="%23F9AB01" d="M10.763 12.055C10.272 11.775 9.772 11.519 9.256 11.287L9.305 10.941 9.927 11.037C10.199 11.298 10.456 11.513 10.795 11.693L10.763 12.055ZM16.663 14.747C16.658 14.975 16.743 15.421 16.643 15.61 16.452 15.682 16.333 15.482 16.181 15.515 15.98 15.558 16.105 15.649 16.099 15.659 16.003 15.836 15.872 15.471 15.739 15.515 16.092 14.907 16.097 15.433 16.345 15.259 16.546 15.117 16.239 14.636 16.663 14.747Z" /><path fill="%23FCF600" d="M16.6427 15.6113C16.4465 15.9841 15.9821 16.094 15.6077 15.9252C15.5906 15.7519 15.6563 15.6579 15.7391 15.5154C15.8714 15.4715 16.0028 15.8372 16.0991 15.6596C16.1045 15.6499 15.9794 15.5585 16.181 15.5154C16.3331 15.4829 16.4519 15.6834 16.6427 15.6113Z" /><path fill="%23FDBB00" d="M16.669 11.7707C16.6672 11.8656 16.6708 11.9615 16.669 12.0582C16.3981 12.1338 16.3783 11.9659 16.2469 11.8982C16.2271 11.8885 16.0579 11.8806 16.0345 11.8665C16.0237 11.8604 15.9868 11.7645 15.9688 11.7381C15.9832 11.7267 16.0849 11.652 16.1002 11.6423C16.6807 11.2607 16.2028 11.6423 16.2964 11.754L16.6699 11.7698L16.669 11.7707Z" /><path fill="%23F6A759" d="M15.543 6.78125C15.5799 7.39586 15.7707 6.7918 16.0668 6.84544C16.0677 7.02744 16.137 7.22 16.1325 7.40553C16.1325 7.41608 16.0353 7.43806 16.0344 7.46972C16.0254 7.88473 15.9831 8.57935 16.0344 8.95743C15.9885 9.11834 15.903 9.29067 15.8706 9.45334C15.8652 9.47972 15.8094 9.73734 15.9363 9.69338C15.8346 9.78394 15.6843 10.1664 15.6744 10.2376C15.6195 10.6245 15.7122 11.0729 15.642 11.4695C16.173 11.4616 15.4107 10.9244 15.9696 10.8136C15.9453 11.1134 15.8364 11.4326 16.101 11.6453C16.0866 11.655 15.984 11.7298 15.9696 11.7412C15.8886 11.8063 15.8598 11.7975 15.7734 11.9012C15.7698 11.9056 15.7032 11.8915 15.6753 11.9496C15.5304 12.2494 15.831 12.3479 15.282 12.2213C15.3009 10.7388 15.3351 9.25638 15.3405 7.77482C15.3414 7.44422 15.3468 7.11361 15.3468 6.78301H15.543V6.78125Z" /><path fill="%23E1DDCE" d="M15.2352 1.75503C15.2379 1.79811 15.2505 1.8412 15.2523 1.8834C14.9058 1.81746 15.1092 2.12608 15.0516 2.28523C15.0057 2.41184 13.9122 2.74772 13.725 2.84532C13.4415 2.99216 13.3299 3.22956 13.1355 3.35705C12.0357 4.07805 10.8927 4.83773 9.72986 5.46817C9.67406 5.49894 9.47786 5.61676 9.41846 5.54818C10.0089 5.1657 10.6236 4.81048 11.2032 4.41217C12.1788 3.74129 13.8834 2.21576 14.8707 1.82097C14.9895 1.77349 15.1011 1.73744 15.2352 1.75415V1.75503Z" /><path fill="%23FCF600" d="M15.2354 1.75847C15.1013 1.74177 14.9906 1.77782 14.8709 1.8253C13.8836 2.22009 12.179 3.74562 11.2034 4.4165C10.6238 4.8148 10.0091 5.17003 9.41865 5.55251C9.47805 5.62109 9.67335 5.50327 9.73005 5.47249C10.8929 4.84118 12.0359 4.0815 13.1357 3.36138C13.3301 3.23388 13.4417 2.99648 13.7252 2.84964C13.9124 2.75292 15.0059 2.41705 15.0518 2.28955C15.1094 2.12953 14.9069 1.82178 15.2525 1.88773C15.3362 3.52756 15.3488 5.13574 15.3461 6.78436C15.3461 7.11496 15.3407 7.44557 15.3398 7.77617C15.0356 7.68912 15.1166 8.01973 15.0518 8.20789C15.0428 8.23339 14.9393 8.34506 14.9204 8.39957C14.8997 8.46288 14.9429 8.63961 14.9204 8.68709C14.9105 8.70731 14.69 8.7759 14.5928 8.87877C14.5622 8.91218 14.0906 9.5136 14.069 9.55053C13.9862 9.68769 13.9133 10.0939 13.889 10.1106C13.8197 10.1572 12.9089 10.0596 12.7433 10.1106C12.6875 10.1282 12.7181 10.2856 12.6776 10.3023C12.647 10.3146 12.0962 10.3102 12.0224 10.3023C11.9198 10.2909 11.8091 10.1933 11.7281 10.1739C11.612 10.1476 11.2871 10.166 11.171 10.0781C11.1107 10.0324 11.1089 9.79409 11.0072 9.75804C10.9613 9.74133 10.0991 9.74397 10.0244 9.75804C9.80655 9.80024 9.64275 10.0825 9.53295 10.1097C9.34305 10.1581 8.95695 10.0174 8.82915 10.2856C8.77335 10.4025 8.83635 10.6092 8.82915 10.6373C8.81205 10.7094 8.60235 10.8483 8.69775 11.0567C8.37375 10.9239 7.88865 10.7103 7.57275 10.6127C7.60245 10.5617 7.61685 10.5195 7.63215 10.4606C7.82565 9.70176 7.74645 7.42095 7.73205 6.53025C7.73115 6.45551 7.73745 6.3799 7.73565 6.30428C7.72935 6.07127 7.76265 5.81629 7.72305 5.5868C7.79235 5.57361 7.85895 5.54899 7.92375 5.52261C10.9649 4.29604 12.2951 2.96483 14.8979 1.27312C14.9942 1.21069 15.0977 1.12277 15.2093 1.09375C15.2084 1.31708 15.2237 1.53514 15.2354 1.7576V1.75847Z" /><path fill="%23FBE77E" d="M8.94415 5.78994C9.03775 5.82599 8.79115 5.97547 8.78035 5.98162C8.73895 6.00712 8.23135 6.27266 8.24035 6.18913L8.94415 5.78906V5.78994Z" /><path fill="%23FDBB00" d="M15.34 7.77431C15.3346 9.25675 15.3004 10.7392 15.2815 12.2208C15.2716 13.0218 15.3913 14.3688 15.2365 15.0995C15.2158 15.1979 15.2329 15.3378 15.1168 15.3712C15.1258 15.3817 15.1321 15.3949 15.1411 15.4046C15.1321 15.394 15.1258 15.3808 15.1168 15.3712C13.9711 14.1156 12.2548 12.9066 10.7626 12.0546L10.795 11.6932C10.4548 11.5129 10.1992 11.2975 9.92742 11.0373L9.30552 10.9414L9.25602 11.287C9.07332 11.2043 8.88522 11.1322 8.69892 11.0566C8.60352 10.8491 8.81232 10.7093 8.83032 10.6372C8.83752 10.6082 8.77452 10.4024 8.83032 10.2855C8.95812 10.0173 9.34422 10.1571 9.53412 10.1096C9.64392 10.0815 9.80772 9.80014 10.0255 9.75793C10.0993 9.74386 10.9615 9.74123 11.0083 9.75793C11.11 9.79398 11.1118 10.0323 11.1721 10.078C11.2873 10.1659 11.6122 10.1474 11.7292 10.1738C11.8102 10.1923 11.9209 10.2899 12.0235 10.3022C12.0964 10.3101 12.6481 10.3145 12.6787 10.3022C12.7192 10.2855 12.6877 10.1272 12.7444 10.1105C12.9109 10.0595 13.8208 10.1571 13.8901 10.1105C13.9144 10.0938 13.9873 9.68847 14.0701 9.55042C14.0926 9.5135 14.5633 8.9112 14.5939 8.87867C14.6911 8.77579 14.9116 8.70721 14.9215 8.68699C14.944 8.63863 14.9008 8.46189 14.9215 8.39947C14.9395 8.34407 15.0439 8.23241 15.0529 8.20779C15.1177 8.01874 15.0367 7.68902 15.3409 7.77607L15.34 7.77431Z" /><path fill="%23F3CE16" d="M14.3147 13.2424C14.4758 13.2327 14.4749 13.5756 14.3804 13.5624L14.3147 13.2424Z" /><path fill="%23FBE43C" d="M16.7438 5.73295C16.7834 6.3924 16.9553 7.15912 16.9481 7.80011C16.9418 8.318 16.7906 8.87281 16.7573 9.39246C16.4522 9.4118 16.3856 9.35025 16.3784 9.69317C16.2695 9.6747 16.2632 9.63162 16.1327 9.62898C16.175 9.5604 16.175 9.46544 16.1651 9.38894C16.1507 9.28167 16.0436 9.0258 16.0337 8.95722C15.9824 8.57914 16.0247 7.88452 16.0337 7.4695C16.0337 7.43785 16.1318 7.41587 16.1318 7.40532C16.1363 7.21979 16.0679 7.02811 16.0661 6.84523C16.0643 6.61222 16.013 6.38713 16.0661 6.14181C16.148 5.76197 16.3307 5.63975 16.7429 5.73295H16.7438Z" /><path fill="%23F29F6C" d="M16.0669 6.14176C16.0138 6.38795 16.0651 6.61216 16.0669 6.84517C15.7708 6.79153 15.58 7.39647 15.5431 6.78098C15.5152 6.32025 15.7006 6.54534 15.805 6.34926C15.8167 6.32728 15.8347 5.96854 15.8707 5.93337C16.0606 5.84984 15.8734 6.13296 16.0669 6.14088V6.14176Z" /><path fill="%23D17504" d="M16.0336 11.8667C15.9562 12.0407 15.8977 12.0364 15.7717 11.8983C15.8581 11.7946 15.8869 11.8033 15.9679 11.7383C15.985 11.7647 16.0219 11.8596 16.0336 11.8667Z" /><path fill="%23E1DDCE" d="M15.969 10.812C15.41 10.922 16.172 11.46 15.641 11.468 15.711 11.071 15.619 10.623 15.674 10.236 15.849 10.192 15.864 10.442 15.886 10.46 15.907 10.477 16.371 10.569 16.394 10.604 16.454 10.901 16.146 10.776 15.968 10.812H15.969ZM16.132 9.629C15.952 9.625 16.009 9.627 15.936 9.693 15.809 9.737 15.865 9.479 15.87 9.453 15.902 9.29 15.988 9.118 16.034 8.957 16.043 9.026 16.151 9.281 16.165 9.389 16.175 9.465 16.175 9.56 16.133 9.629H16.132Z" /></g><defs><clipPath id="a"><rect width="18" height="16" fill="%23fff" /></clipPath></defs></svg>');
  --header-nav-icon-aspect: 15 /16;
  aspect-ratio: var(--header-nav-icon-aspect);
  background: var(--header-nav-icon) no-repeat center/contain;
  display: block;
}
.pageHeading__navIcon_icon_info {
  --header-nav-icon: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="16" fill="none" viewBox="0 0 18 16"><g clip-path="url(%23a)"><path fill="%23FC7B74" d="M2.2806 7.39056C2.2473 7.817 2.2428 8.24608 2.3004 8.66989C2.3022 8.68132 2.3121 8.69099 2.3139 8.70154C2.3121 8.69011 2.3022 8.68044 2.3004 8.66989C2.151 8.72089 1.8369 8.76309 1.7073 8.82991C1.4517 8.9618 1.4787 9.09106 1.1673 9.18162C1.0449 9.21767 0.0512981 9.3988 0.00629813 9.36187C-0.0162019 8.89762 0.0233981 8.43161 0.0359981 7.96648C0.567898 8.03858 0.107098 7.62796 0.675898 7.4864C0.858598 7.44067 1.0512 7.4398 1.2654 7.39056C1.2708 7.38968 1.2897 7.47145 1.3473 7.45474C1.3851 7.44331 1.4868 7.24899 1.6416 7.19888C2.2437 7.00632 1.8081 7.47936 2.2797 7.39056H2.2806Z" /><path fill="%23FDBB00" d="M0.862997 6.55263C0.774797 6.92192 1.0898 6.92544 1.2005 7.05381C1.2239 7.08107 1.1456 7.11976 1.1681 7.14965C1.1798 7.16548 1.2617 7.18834 1.2662 7.19801C1.2905 7.25253 1.3049 7.33694 1.2662 7.38969C1.052 7.43981 0.859397 7.43981 0.676697 7.48553C0.470597 7.30089 0.378797 7.14086 0.0646973 7.19274C0.0781973 6.94303 0.0619973 6.68804 0.111497 6.44184C0.149297 6.41371 0.759497 6.53065 0.863897 6.55175L0.862997 6.55263Z" /><path fill="%23FBE77E" d="M1.26547 7.19616C1.26097 7.18649 1.17907 7.16363 1.16737 7.1478C1.14577 7.11791 1.22407 7.07922 1.19977 7.05196C1.08997 6.92359 0.774967 6.92007 0.862267 6.55078C0.939667 6.56661 1.37887 6.62024 1.39417 6.64222C1.41667 6.67476 1.37797 6.81368 1.39597 6.86028C1.40947 6.89633 1.50127 6.92623 1.49407 6.98866C1.49137 7.01679 1.29877 7.16099 1.26457 7.19616H1.26547Z" /><path fill="%23F3CE16" d="M16.7461 9.47702C16.7479 9.448 16.7551 9.41899 16.7569 9.38997C16.7902 8.87033 16.9414 8.31551 16.9477 7.79762C16.9549 7.15664 16.783 6.3908 16.7434 5.73047C16.9009 5.76564 16.9738 5.90193 17.08 5.99777C18.2572 7.04849 18.3904 8.41663 16.9702 9.3337C16.8946 9.38294 16.8136 9.41811 16.7452 9.47702H16.7461Z" /><path fill="%23FC7B74" d="M7.73275 6.52822C7.74715 7.41892 7.82635 9.69973 7.63285 10.4585C7.61755 10.5175 7.60315 10.5597 7.57345 10.6107C7.32865 10.535 7.15225 10.535 6.91645 10.4867C6.90475 10.484 6.89305 10.484 6.88225 10.4823C6.24145 10.3513 5.58715 10.2546 4.94365 10.1279C5.11375 9.57576 4.26595 9.81228 4.21285 9.70765C4.20385 9.69094 4.32265 9.44211 4.29475 9.40342C4.01215 9.53267 3.47305 9.24691 3.36145 9.00336C3.34705 8.97258 3.28495 8.58922 3.32905 8.55581C3.38755 8.51009 3.55405 8.56988 3.59095 8.52416L3.49285 8.39578L3.54235 8.31577C3.75205 8.22608 4.19395 8.51448 4.22995 8.50745C4.27405 8.49954 4.14895 8.3316 4.26235 8.28324C4.49365 8.53471 4.83565 8.27269 4.88425 8.28324C4.89955 8.28675 4.90855 8.36853 4.94995 8.37908C5.26135 8.45821 5.06785 8.28324 5.14615 8.21905C5.18215 8.19004 5.50975 8.45469 5.60425 8.44326C5.67715 8.43535 5.77615 8.29291 5.68615 8.23576L5.80045 8.1874C5.88145 8.42392 6.02455 8.41864 6.19375 8.60329C6.34135 8.21905 6.10645 8.2762 6.04615 8.20322C6.02005 8.17157 6.02365 7.9878 5.99665 7.96318C5.97955 7.94648 5.72665 7.94208 5.68525 7.91483C5.64925 7.89108 5.43055 7.16393 5.40715 7.73897C5.10655 7.59213 4.88605 7.81547 4.62145 7.77063C4.21195 7.70116 4.59625 7.48311 4.32715 7.25889C3.96085 7.28439 3.70165 7.16833 3.32815 7.22724C3.35155 7.03644 3.86365 7.01358 4.04815 6.97137C4.84105 6.78936 5.93905 6.59505 6.74995 6.61967C6.86425 6.62318 7.05955 6.7498 7.07755 6.74804C7.09285 6.7454 7.20175 6.59417 7.32325 6.55636C7.41505 6.52734 7.62835 6.5291 7.73275 6.52734V6.52822Z" /><path fill="%232B5E49" d="M5.87888 11.2969C5.88968 11.2969 5.90138 11.2969 5.91218 11.2969C5.90228 11.3558 5.92388 11.4068 5.93738 11.4604C6.20828 12.5041 6.93818 13.7149 7.32968 14.748C7.01918 14.7445 6.86798 14.9001 6.63578 15.0522C6.60608 15.0716 6.68978 15.1146 6.65198 15.1322C6.58988 15.1612 6.28658 15.0127 6.45578 14.9406C6.65468 15.2017 6.58628 14.8394 6.57008 14.8289C6.52958 14.8016 6.39908 14.8746 6.32438 14.8447C6.28748 14.8298 6.17048 14.5563 6.17678 14.5405C6.18488 14.522 6.42518 14.2829 6.47108 14.253C6.10298 14.2767 6.27578 13.9399 6.24158 13.8371C6.21548 13.7579 5.89598 13.7421 5.84828 13.6129C5.84468 13.6041 5.94548 13.4625 5.94638 13.4528C5.98418 12.9701 5.94638 13.1512 5.66828 12.7969C5.51528 13.0167 5.47208 12.6852 5.43878 12.6685C5.30468 12.6008 4.63058 12.8119 4.42358 12.7327C4.55138 13.0827 4.93028 12.8277 5.19308 12.9728L5.14358 13.0528C5.22818 13.0686 5.41268 12.9974 5.38928 13.1328C5.35418 13.2418 4.90508 13.1108 4.83218 13.2612L5.01218 13.5328L4.36058 13.6612C4.10588 13.015 3.78368 12.155 3.61808 11.4903C3.60458 11.434 3.57758 11.383 3.59018 11.3233C4.21568 11.3848 5.22008 11.3215 5.87618 11.2969H5.87888Z" /><path fill="%23FE0000" d="M4.94374 10.1306C4.32004 10.0084 3.64324 9.90638 3.03124 9.75427C2.88094 9.71646 2.57764 9.69975 2.48134 9.58193C2.43724 9.52742 2.33104 8.83192 2.31304 8.70354C2.31124 8.69211 2.30134 8.68244 2.29954 8.67189C2.24284 8.24721 2.24644 7.819 2.27974 7.39256C2.28244 7.36091 2.28964 7.32925 2.29324 7.29672C2.52994 7.17978 2.61364 7.49455 2.68924 7.4884C2.70904 7.48664 2.79364 7.36794 2.82064 7.36003C2.92504 7.33189 3.25444 7.24396 3.32824 7.23165C3.70174 7.17274 3.96094 7.28968 4.32724 7.26331C4.59724 7.48752 4.21294 7.70558 4.62154 7.77504C4.88704 7.81988 5.10664 7.59567 5.40724 7.74339C5.43154 7.16835 5.64934 7.8955 5.68534 7.91924C5.72584 7.9465 5.97874 7.95089 5.99674 7.9676C6.02284 7.99222 6.02014 8.17599 6.04624 8.20764C6.10564 8.28062 6.34144 8.22347 6.19384 8.6077C6.02464 8.42306 5.88244 8.42833 5.80054 8.19181L5.68624 8.24017C5.77624 8.2982 5.67724 8.44064 5.60434 8.44768C5.50984 8.45999 5.18134 8.19445 5.14624 8.22347C5.06794 8.28765 5.26144 8.46263 4.95004 8.38349C4.90864 8.37294 4.89964 8.29117 4.88434 8.28765C4.83574 8.2771 4.49374 8.53912 4.26244 8.28765C4.14904 8.33601 4.27414 8.50395 4.23004 8.51186C4.19404 8.51802 3.75214 8.22962 3.54244 8.32018L3.49294 8.4002L3.59104 8.52857C3.55414 8.57517 3.38764 8.51538 3.32914 8.56022C3.28504 8.59364 3.34804 8.977 3.36154 9.00777C3.47314 9.25133 4.01224 9.53621 4.29484 9.40784C4.32274 9.44564 4.20484 9.69536 4.21294 9.71206C4.26694 9.81582 5.11384 9.57929 4.94374 10.1324V10.1306Z" /><path fill="%23FDBB00" d="M7.72394 5.58738C7.76354 5.81687 7.73024 6.07185 7.73654 6.30486C7.62854 6.3031 7.45574 6.30222 7.35674 6.27145C7.34234 6.26705 7.28474 6.11142 7.11104 6.14308C7.02554 6.1589 6.98954 6.26969 6.97964 6.27145C6.72854 6.30926 6.36854 6.24683 6.12824 6.27145C6.08504 6.27584 5.87084 6.38927 5.76824 6.39982C5.44154 6.43235 4.91234 6.3541 4.62254 6.43147C4.51454 6.46049 4.66214 6.51676 4.62254 6.52731C4.32374 6.60733 3.56954 6.48071 3.21494 6.49566C3.18524 6.49654 3.21224 6.58974 3.18254 6.5915C2.91974 6.60557 2.66864 6.55457 2.40674 6.55985C2.52914 6.04987 2.42024 5.98481 2.97014 5.81159C3.84134 5.53638 5.49824 5.31393 6.44144 5.20402C6.70784 5.17325 7.33784 5.04575 7.55474 5.18468C7.56374 5.18995 7.58174 5.18028 7.58714 5.18468C7.65104 5.23391 7.70954 5.49857 7.72484 5.58826L7.72394 5.58738Z" /><path fill="%236CB496" d="M4.94392 10.1302C5.58742 10.256 6.24172 10.3536 6.88252 10.4846C6.89422 10.4872 6.90592 10.4872 6.91672 10.489L6.90052 10.6217C6.97342 11.4526 6.48382 11.2742 5.91232 11.297C5.90152 11.297 5.88982 11.297 5.87902 11.297C5.22292 11.3216 4.21852 11.3849 3.59302 11.3234C2.72632 11.2381 3.16552 10.5391 3.03052 9.91833L3.03232 9.75391C3.64342 9.9069 4.32022 10.008 4.94482 10.1302H4.94392Z" /><path fill="%2350A77D" d="M7.34924 14.7815C7.37714 14.8554 7.41944 14.931 7.44104 15.0057C7.03064 14.9205 7.20164 15.1895 7.14314 15.23C7.00004 15.3284 6.23324 15.0137 6.40604 15.6907C6.12254 15.7065 5.44574 15.7672 5.24054 15.5817C5.01014 15.3733 4.50884 14.0315 4.36304 13.6622L5.01464 13.5339L4.83464 13.2622C4.90664 13.1118 5.35574 13.2437 5.39174 13.1338C5.41514 12.9984 5.23064 13.0696 5.14604 13.0538L5.19554 12.9738C4.93274 12.8287 4.55384 13.0837 4.42604 12.7337C4.63304 12.8137 5.30714 12.6027 5.44124 12.6695C5.47364 12.6862 5.51684 13.0177 5.67074 12.7979C5.94884 13.1523 5.98754 12.9711 5.94884 13.4538C5.94884 13.4635 5.84714 13.6051 5.85074 13.6139C5.89844 13.7431 6.21794 13.7589 6.24404 13.8381C6.27824 13.941 6.10454 14.2777 6.47354 14.254C6.42764 14.2848 6.18644 14.523 6.17924 14.5415C6.17294 14.5573 6.28994 14.8308 6.32684 14.8457C6.40064 14.8756 6.53204 14.8018 6.57254 14.8299C6.58874 14.8404 6.65624 15.2027 6.45824 14.9416C6.28904 15.0137 6.59234 15.1623 6.65444 15.1332C6.69224 15.1157 6.60854 15.0726 6.63824 15.0532C6.87044 14.9011 7.02164 14.7455 7.33214 14.749C7.33664 14.7604 7.34744 14.7692 7.35194 14.7807L7.34924 14.7815Z" /><path fill="%23FBE77E" d="M7.35666 6.27112L7.32426 6.55863C7.20276 6.59644 7.09386 6.74856 7.07856 6.75031C7.06146 6.75295 6.86526 6.62546 6.75096 6.62194C5.94006 6.59732 4.84296 6.79164 4.04917 6.97365C3.91327 6.77581 3.55056 7.00091 3.44346 7.0053C3.05646 7.02377 2.69286 6.89451 2.31396 6.84528C2.33196 6.74592 2.38146 6.65623 2.40576 6.55776C2.66766 6.55248 2.91966 6.60348 3.18156 6.58941C3.21126 6.58765 3.18426 6.49445 3.21396 6.49357C3.56856 6.47862 4.32366 6.60524 4.62156 6.52522C4.66116 6.51467 4.51356 6.4584 4.62156 6.42938C4.91226 6.35201 5.44146 6.42938 5.76726 6.39773C5.86986 6.38718 6.08406 6.27375 6.12726 6.26936C6.36756 6.24474 6.72756 6.30716 6.97866 6.26936C6.98766 6.2676 7.02456 6.15681 7.11006 6.14098C7.28376 6.10933 7.34137 6.26408 7.35577 6.26936L7.35666 6.27112Z" /><path fill="%236CB496" d="M7.4411 15.0049C7.6616 15.7778 7.0136 15.6564 6.4061 15.6898C6.2333 15.0128 6.9992 15.3285 7.1432 15.2291C7.2017 15.1887 7.0307 14.9196 7.4411 15.0049Z" /><path fill="%23FDB7A6" d="M7.73634 6.30597C7.73814 6.38071 7.73184 6.45632 7.73274 6.53194C7.62834 6.5337 7.41504 6.53194 7.32324 6.56096L7.35564 6.27344C7.45464 6.30509 7.62744 6.30509 7.73544 6.30685L7.73634 6.30597Z" /><path fill="%23FC7B74" d="M16.6889 1.43922C16.4207 1.52451 16.2029 1.12445 16.0013 1.48758C15.9509 1.57815 15.6746 3.15203 15.6737 3.31118C15.6737 3.33492 15.608 3.31909 15.608 3.34284C15.608 3.40966 15.698 3.61101 15.7061 3.79038C15.7079 3.83522 15.6071 3.94074 15.608 3.95041C15.6224 4.14033 15.8042 4.50435 15.8375 4.65382C15.8411 4.66877 15.7349 4.83231 15.8213 4.92551C16.0733 4.85253 15.8564 4.60546 15.8708 4.58963C15.8951 4.5615 16.0112 4.57557 16.0508 4.54127C16.0904 4.50698 16.0472 4.44983 16.0832 4.4129C16.0904 4.40587 16.2029 4.43488 16.2308 4.36454C16.2551 4.30211 16.0436 4.03746 16.067 3.94865C16.0706 3.93458 16.1597 3.92051 16.1651 3.88446C16.1795 3.78862 16.1714 3.51517 16.1975 3.40438C16.2236 3.2936 16.3631 3.13269 16.3613 3.11686C16.3568 3.08169 16.2425 3.06147 16.2299 3.02102C16.1516 2.75373 16.3343 2.75285 16.3613 2.66932C16.4423 2.41169 16.1309 1.40493 16.6889 1.53331C16.6952 2.96739 16.6583 4.28717 16.7438 5.73092C16.3316 5.63772 16.148 5.76082 16.067 6.13978C15.8735 6.13187 16.0598 5.84874 15.8708 5.93227C15.8348 5.96744 15.8168 6.32618 15.8051 6.34817C15.7007 6.54424 15.5153 6.31915 15.5432 6.77989H15.347C15.3497 5.13126 15.3371 3.52308 15.2534 1.88325C15.2516 1.84105 15.239 1.79797 15.2363 1.75488C15.2246 1.53243 15.2093 1.31437 15.2102 1.09104C15.2129 0.517754 15.2039 -0.194452 16.0346 0.0491051C16.886 0.297937 16.6835 0.742846 16.6898 1.43747L16.6889 1.43922Z" /><path fill="%23FE0000" d="M16.669 12.0597C16.6519 12.9566 16.6816 13.8508 16.6627 14.7468C16.2388 14.6369 16.5457 15.1178 16.345 15.2585C16.0966 15.4326 16.0921 14.9068 15.7393 15.5144C15.6574 15.6559 15.5908 15.7509 15.6079 15.9241C15.3838 15.8221 15.2929 15.5715 15.1408 15.4027C15.1318 15.3922 15.1255 15.379 15.1165 15.3693C15.2317 15.3359 15.2155 15.1961 15.2362 15.0976C15.391 14.3669 15.2713 13.0199 15.2812 12.2189C15.8293 12.3455 15.5296 12.2462 15.6745 11.9472C15.7024 11.89 15.769 11.9032 15.7726 11.8988C15.8986 12.0369 15.9571 12.0404 16.0345 11.8672C16.0588 11.8813 16.228 11.8892 16.2469 11.8988C16.3783 11.9665 16.3981 12.1336 16.669 12.0589V12.0597Z" /><path fill="%23FDB7A6" d="M16.6888 1.4409C16.6888 1.47255 16.6888 1.50509 16.6888 1.53674C16.1308 1.40837 16.4422 2.41425 16.3612 2.67275C16.3351 2.75628 16.1515 2.75804 16.2298 3.02446C16.2415 3.0649 16.3567 3.08513 16.3612 3.1203C16.363 3.137 16.2235 3.30055 16.1974 3.40782C16.1713 3.51509 16.1794 3.79206 16.165 3.8879C16.1596 3.92395 16.0705 3.93802 16.0669 3.95208C16.0435 4.04001 16.255 4.30555 16.2307 4.36798C16.2028 4.43832 16.0903 4.4093 16.0831 4.41634C16.0471 4.45239 16.0876 4.51218 16.0507 4.54471C16.0111 4.579 15.895 4.56493 15.8707 4.59307C15.8572 4.6089 16.0732 4.85597 15.8212 4.92895C15.7357 4.83575 15.841 4.67132 15.8374 4.65725C15.8041 4.50778 15.6223 4.14376 15.6079 3.95384C15.6079 3.94417 15.7087 3.83954 15.706 3.79382C15.6979 3.61445 15.6079 3.41221 15.6079 3.34627C15.6079 3.32253 15.6736 3.33836 15.6736 3.31462C15.6736 3.15547 15.9508 1.58158 16.0012 1.49102C16.2028 1.12788 16.4206 1.52795 16.6888 1.44266V1.4409Z" /><path fill="%23FCF600" d="M16.757 9.39062C16.7552 9.41964 16.748 9.44866 16.7462 9.47767C16.6985 10.2382 16.6868 11.0067 16.6697 11.7708L16.2962 11.755C16.2026 11.6433 16.6805 11.2617 16.1 11.6433C15.8354 11.4305 15.9443 11.1113 15.9686 10.8115C16.1468 10.7763 16.4546 10.9012 16.3943 10.604C16.3718 10.5697 15.9074 10.4765 15.8867 10.4598C15.8651 10.4422 15.8498 10.1925 15.6743 10.2356C15.6842 10.1653 15.8345 9.78278 15.9362 9.69133C16.01 9.62539 15.9524 9.62363 16.1324 9.62715C16.262 9.62978 16.2692 9.67287 16.3781 9.69133C16.3853 9.34842 16.4519 9.40997 16.757 9.39062Z" /><path fill="%23F9AB01" d="M10.763 12.055C10.272 11.775 9.772 11.519 9.256 11.287L9.305 10.941 9.927 11.037C10.199 11.298 10.456 11.513 10.795 11.693L10.763 12.055ZM16.663 14.747C16.658 14.975 16.743 15.421 16.643 15.61 16.452 15.682 16.333 15.482 16.181 15.515 15.98 15.558 16.105 15.649 16.099 15.659 16.003 15.836 15.872 15.471 15.739 15.515 16.092 14.907 16.097 15.433 16.345 15.259 16.546 15.117 16.239 14.636 16.663 14.747Z" /><path fill="%23FCF600" d="M16.6427 15.6113C16.4465 15.9841 15.9821 16.094 15.6077 15.9252C15.5906 15.7519 15.6563 15.6579 15.7391 15.5154C15.8714 15.4715 16.0028 15.8372 16.0991 15.6596C16.1045 15.6499 15.9794 15.5585 16.181 15.5154C16.3331 15.4829 16.4519 15.6834 16.6427 15.6113Z" /><path fill="%23FDBB00" d="M16.669 11.7707C16.6672 11.8656 16.6708 11.9615 16.669 12.0582C16.3981 12.1338 16.3783 11.9659 16.2469 11.8982C16.2271 11.8885 16.0579 11.8806 16.0345 11.8665C16.0237 11.8604 15.9868 11.7645 15.9688 11.7381C15.9832 11.7267 16.0849 11.652 16.1002 11.6423C16.6807 11.2607 16.2028 11.6423 16.2964 11.754L16.6699 11.7698L16.669 11.7707Z" /><path fill="%23F6A759" d="M15.543 6.78125C15.5799 7.39586 15.7707 6.7918 16.0668 6.84544C16.0677 7.02744 16.137 7.22 16.1325 7.40553C16.1325 7.41608 16.0353 7.43806 16.0344 7.46972C16.0254 7.88473 15.9831 8.57935 16.0344 8.95743C15.9885 9.11834 15.903 9.29067 15.8706 9.45334C15.8652 9.47972 15.8094 9.73734 15.9363 9.69338C15.8346 9.78394 15.6843 10.1664 15.6744 10.2376C15.6195 10.6245 15.7122 11.0729 15.642 11.4695C16.173 11.4616 15.4107 10.9244 15.9696 10.8136C15.9453 11.1134 15.8364 11.4326 16.101 11.6453C16.0866 11.655 15.984 11.7298 15.9696 11.7412C15.8886 11.8063 15.8598 11.7975 15.7734 11.9012C15.7698 11.9056 15.7032 11.8915 15.6753 11.9496C15.5304 12.2494 15.831 12.3479 15.282 12.2213C15.3009 10.7388 15.3351 9.25638 15.3405 7.77482C15.3414 7.44422 15.3468 7.11361 15.3468 6.78301H15.543V6.78125Z" /><path fill="%23E1DDCE" d="M15.2352 1.75503C15.2379 1.79811 15.2505 1.8412 15.2523 1.8834C14.9058 1.81746 15.1092 2.12608 15.0516 2.28523C15.0057 2.41184 13.9122 2.74772 13.725 2.84532C13.4415 2.99216 13.3299 3.22956 13.1355 3.35705C12.0357 4.07805 10.8927 4.83773 9.72986 5.46817C9.67406 5.49894 9.47786 5.61676 9.41846 5.54818C10.0089 5.1657 10.6236 4.81048 11.2032 4.41217C12.1788 3.74129 13.8834 2.21576 14.8707 1.82097C14.9895 1.77349 15.1011 1.73744 15.2352 1.75415V1.75503Z" /><path fill="%23FCF600" d="M15.2354 1.75847C15.1013 1.74177 14.9906 1.77782 14.8709 1.8253C13.8836 2.22009 12.179 3.74562 11.2034 4.4165C10.6238 4.8148 10.0091 5.17003 9.41865 5.55251C9.47805 5.62109 9.67335 5.50327 9.73005 5.47249C10.8929 4.84118 12.0359 4.0815 13.1357 3.36138C13.3301 3.23388 13.4417 2.99648 13.7252 2.84964C13.9124 2.75292 15.0059 2.41705 15.0518 2.28955C15.1094 2.12953 14.9069 1.82178 15.2525 1.88773C15.3362 3.52756 15.3488 5.13574 15.3461 6.78436C15.3461 7.11496 15.3407 7.44557 15.3398 7.77617C15.0356 7.68912 15.1166 8.01973 15.0518 8.20789C15.0428 8.23339 14.9393 8.34506 14.9204 8.39957C14.8997 8.46288 14.9429 8.63961 14.9204 8.68709C14.9105 8.70731 14.69 8.7759 14.5928 8.87877C14.5622 8.91218 14.0906 9.5136 14.069 9.55053C13.9862 9.68769 13.9133 10.0939 13.889 10.1106C13.8197 10.1572 12.9089 10.0596 12.7433 10.1106C12.6875 10.1282 12.7181 10.2856 12.6776 10.3023C12.647 10.3146 12.0962 10.3102 12.0224 10.3023C11.9198 10.2909 11.8091 10.1933 11.7281 10.1739C11.612 10.1476 11.2871 10.166 11.171 10.0781C11.1107 10.0324 11.1089 9.79409 11.0072 9.75804C10.9613 9.74133 10.0991 9.74397 10.0244 9.75804C9.80655 9.80024 9.64275 10.0825 9.53295 10.1097C9.34305 10.1581 8.95695 10.0174 8.82915 10.2856C8.77335 10.4025 8.83635 10.6092 8.82915 10.6373C8.81205 10.7094 8.60235 10.8483 8.69775 11.0567C8.37375 10.9239 7.88865 10.7103 7.57275 10.6127C7.60245 10.5617 7.61685 10.5195 7.63215 10.4606C7.82565 9.70176 7.74645 7.42095 7.73205 6.53025C7.73115 6.45551 7.73745 6.3799 7.73565 6.30428C7.72935 6.07127 7.76265 5.81629 7.72305 5.5868C7.79235 5.57361 7.85895 5.54899 7.92375 5.52261C10.9649 4.29604 12.2951 2.96483 14.8979 1.27312C14.9942 1.21069 15.0977 1.12277 15.2093 1.09375C15.2084 1.31708 15.2237 1.53514 15.2354 1.7576V1.75847Z" /><path fill="%23FBE77E" d="M8.94415 5.78994C9.03775 5.82599 8.79115 5.97547 8.78035 5.98162C8.73895 6.00712 8.23135 6.27266 8.24035 6.18913L8.94415 5.78906V5.78994Z" /><path fill="%23FDBB00" d="M15.34 7.77431C15.3346 9.25675 15.3004 10.7392 15.2815 12.2208C15.2716 13.0218 15.3913 14.3688 15.2365 15.0995C15.2158 15.1979 15.2329 15.3378 15.1168 15.3712C15.1258 15.3817 15.1321 15.3949 15.1411 15.4046C15.1321 15.394 15.1258 15.3808 15.1168 15.3712C13.9711 14.1156 12.2548 12.9066 10.7626 12.0546L10.795 11.6932C10.4548 11.5129 10.1992 11.2975 9.92742 11.0373L9.30552 10.9414L9.25602 11.287C9.07332 11.2043 8.88522 11.1322 8.69892 11.0566C8.60352 10.8491 8.81232 10.7093 8.83032 10.6372C8.83752 10.6082 8.77452 10.4024 8.83032 10.2855C8.95812 10.0173 9.34422 10.1571 9.53412 10.1096C9.64392 10.0815 9.80772 9.80014 10.0255 9.75793C10.0993 9.74386 10.9615 9.74123 11.0083 9.75793C11.11 9.79398 11.1118 10.0323 11.1721 10.078C11.2873 10.1659 11.6122 10.1474 11.7292 10.1738C11.8102 10.1923 11.9209 10.2899 12.0235 10.3022C12.0964 10.3101 12.6481 10.3145 12.6787 10.3022C12.7192 10.2855 12.6877 10.1272 12.7444 10.1105C12.9109 10.0595 13.8208 10.1571 13.8901 10.1105C13.9144 10.0938 13.9873 9.68847 14.0701 9.55042C14.0926 9.5135 14.5633 8.9112 14.5939 8.87867C14.6911 8.77579 14.9116 8.70721 14.9215 8.68699C14.944 8.63863 14.9008 8.46189 14.9215 8.39947C14.9395 8.34407 15.0439 8.23241 15.0529 8.20779C15.1177 8.01874 15.0367 7.68902 15.3409 7.77607L15.34 7.77431Z" /><path fill="%23F3CE16" d="M14.3147 13.2424C14.4758 13.2327 14.4749 13.5756 14.3804 13.5624L14.3147 13.2424Z" /><path fill="%23FBE43C" d="M16.7438 5.73295C16.7834 6.3924 16.9553 7.15912 16.9481 7.80011C16.9418 8.318 16.7906 8.87281 16.7573 9.39246C16.4522 9.4118 16.3856 9.35025 16.3784 9.69317C16.2695 9.6747 16.2632 9.63162 16.1327 9.62898C16.175 9.5604 16.175 9.46544 16.1651 9.38894C16.1507 9.28167 16.0436 9.0258 16.0337 8.95722C15.9824 8.57914 16.0247 7.88452 16.0337 7.4695C16.0337 7.43785 16.1318 7.41587 16.1318 7.40532C16.1363 7.21979 16.0679 7.02811 16.0661 6.84523C16.0643 6.61222 16.013 6.38713 16.0661 6.14181C16.148 5.76197 16.3307 5.63975 16.7429 5.73295H16.7438Z" /><path fill="%23F29F6C" d="M16.0669 6.14176C16.0138 6.38795 16.0651 6.61216 16.0669 6.84517C15.7708 6.79153 15.58 7.39647 15.5431 6.78098C15.5152 6.32025 15.7006 6.54534 15.805 6.34926C15.8167 6.32728 15.8347 5.96854 15.8707 5.93337C16.0606 5.84984 15.8734 6.13296 16.0669 6.14088V6.14176Z" /><path fill="%23D17504" d="M16.0336 11.8667C15.9562 12.0407 15.8977 12.0364 15.7717 11.8983C15.8581 11.7946 15.8869 11.8033 15.9679 11.7383C15.985 11.7647 16.0219 11.8596 16.0336 11.8667Z" /><path fill="%23E1DDCE" d="M15.969 10.812C15.41 10.922 16.172 11.46 15.641 11.468 15.711 11.071 15.619 10.623 15.674 10.236 15.849 10.192 15.864 10.442 15.886 10.46 15.907 10.477 16.371 10.569 16.394 10.604 16.454 10.901 16.146 10.776 15.968 10.812H15.969ZM16.132 9.629C15.952 9.625 16.009 9.627 15.936 9.693 15.809 9.737 15.865 9.479 15.87 9.453 15.902 9.29 15.988 9.118 16.034 8.957 16.043 9.026 16.151 9.281 16.165 9.389 16.175 9.465 16.175 9.56 16.133 9.629H16.132Z" /></g><defs><clipPath id="a"><rect width="18" height="16" fill="%23fff" /></clipPath></defs></svg>');
  height: 29px;
  width: 32px;
}
.pageHeading__navIcon_icon_home {
  --header-nav-icon: url('data:image/svg+xml;utf8,<svg width="15" height="16" viewBox="0 0 15 16" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_1988_16566)"><path d="M10.9541 10.1523H4.14624V15.3596H10.9541V10.1523Z" fill="%23FE0000"/><path d="M9.27682 11.989C9.1831 11.9998 9.08939 12.054 8.98694 12.0656C8.96867 12.0679 8.9504 12.0695 8.93214 12.071C8.58666 12.1105 8.23801 12.1368 7.89015 12.177C7.6511 12.2049 7.40648 12.2498 7.16664 12.2776C7.34057 12.0416 6.97126 11.7461 6.78622 11.6718C6.60037 11.5975 6.52334 11.7391 6.48125 11.7368C6.24696 11.7205 6.33511 11.3809 5.8443 11.9364L6.3089 12.3581C6.18898 12.372 6.07303 12.4076 5.95549 12.4208C5.93484 12.4231 5.91498 12.4316 5.89433 12.4339C5.23356 12.5105 4.57358 12.6668 3.90566 12.697C3.88501 12.6978 3.86516 12.7094 3.84451 12.7101C3.67694 12.7171 3.54828 12.7063 3.38626 12.7024C2.7517 12.6885 2.90736 12.1956 2.42766 11.743C2.63495 11.5503 2.13699 11.7971 2.42766 11.743C2.30456 11.2517 2.67466 11.0667 2.06869 10.7565C2.05836 10.7681 2.05598 10.7866 2.04565 10.799C2.05598 10.7866 2.05836 10.7673 2.06869 10.7565C2.21958 10.5909 2.47293 10.4988 2.68737 10.4508C4.08436 10.1352 6.32479 10.1978 7.84329 10.0617C7.86633 10.0593 7.88936 10.057 7.91159 10.0547L8.43735 10.5917L8.33808 10.6358C8.42385 10.8864 8.65417 10.7394 8.70261 10.8013C8.73994 10.8493 8.67561 10.9422 8.68594 10.9716C8.74153 11.1209 8.99885 11.0087 8.6224 11.3491C8.92102 11.3762 8.98217 11.784 9.27682 11.9882V11.989Z" fill="%23F86866"/><path d="M9.86608 11.9285C9.66991 11.9502 9.47295 11.9657 9.27679 11.9889C8.98214 11.7846 8.92099 11.3769 8.62237 11.3498C8.99882 11.0086 8.7415 11.1215 8.6859 10.9722C8.67479 10.9428 8.73991 10.8499 8.70258 10.802C8.65493 10.7401 8.42382 10.8871 8.33805 10.6364L8.43732 10.5923L7.91156 10.0553C7.88853 10.0576 7.8655 10.06 7.84326 10.0623C7.86629 10.06 7.88933 10.0576 7.91156 10.0553C8.38252 10.0128 8.84236 9.92069 9.31332 9.87891C9.13224 10.347 8.62872 10.477 9.26487 10.8801C9.31094 10.9095 9.32762 10.7261 9.47057 10.8592C9.48169 10.8701 9.51902 11.1285 9.53728 11.1563C9.58096 11.2237 9.76919 11.3041 9.80255 11.366C9.82319 11.4039 9.6993 11.8256 9.86608 11.9301V11.9285Z" fill="%23FE8D83"/><path d="M5.20729 15.2545H5.83153L6.42797 15.0565L6.88622 14.5713C7.38418 14.6595 7.57479 14.5713 7.57479 14.5713C7.57479 14.5713 7.71377 14.9017 8.02351 14.9133L8.33404 14.9242L8.81056 14.9133L9.25134 14.5713L9.67147 14.3555H10.3346V15.4271L4.14624 15.3605L5.20729 15.2545Z" fill="%23FE8D83"/><path d="M12.0597 7.91093C12.2964 7.97515 12.3655 8.19876 12.4775 8.30166C12.5378 8.3566 12.7165 8.40921 12.7785 8.46415C12.8063 8.48968 12.6506 8.64907 12.8952 8.59413C13.0159 10.301 13.0914 12.7088 12.9953 14.4072C12.9858 14.5704 12.9143 15.2753 12.8118 15.3349C12.4052 15.5732 10.3427 15.2552 9.77005 15.3674C9.70811 15.3419 9.69143 15.1848 9.68666 15.1229C9.58262 13.9097 9.9281 12.404 9.82009 11.1823C9.81056 11.0739 9.72399 10.5014 9.68666 10.4333C9.66601 10.3962 9.50956 10.2638 9.46905 10.2546C8.48187 10.3025 7.48038 10.1849 6.49399 10.2221C6.33594 10.2283 5.46233 10.2662 5.35749 10.2871C4.98025 10.3629 5.23916 10.9997 5.24075 11.313C5.24392 12.0767 5.26934 12.8381 5.2741 13.5924C5.27807 14.1511 5.22248 14.6966 5.20739 15.2529L5.124 15.3341C4.40843 15.3457 3.68333 15.3983 2.96775 15.3991C2.87483 15.2606 2.58892 15.362 2.44994 15.3341C2.33955 15.3117 2.18785 15.1391 2.06555 15.1384C2.02107 14.9372 2.1672 14.5596 1.95039 14.5124C1.93768 14.3979 1.92339 14.2834 1.91306 14.1689L2.03219 14.1457L1.89877 14.0319C1.89718 14.0103 1.89321 13.9886 1.89162 13.9669C1.84635 13.2118 2.01631 12.4814 1.96548 11.7363C1.93848 11.3378 1.78758 10.937 1.73119 10.6128C1.71451 10.5161 1.68672 10.318 1.6883 10.2213C1.69227 10.0155 1.7574 9.73462 1.78837 9.52029L1.61206 9.43286L1.74866 8.01074C2.15291 8.02389 2.54762 7.93878 2.95108 7.94265C3.75878 7.95116 4.56647 8.04324 5.37417 8.04014C5.69662 8.0386 6.02065 8.04324 6.34389 8.04014C8.18086 8.02467 10.1616 7.91557 12.0597 7.91016V7.91093Z" fill="%23FDBB00"/><path d="M12.8953 8.59488C12.6499 8.64904 12.8064 8.48965 12.7786 8.46489C12.7166 8.40918 12.5379 8.35734 12.4776 8.30241C12.3656 8.1995 12.2965 7.97589 12.0598 7.91167C12.3155 7.91167 12.5872 7.82037 12.8453 7.91167C12.9779 7.9844 12.8842 8.43858 12.8953 8.59565V8.59488Z" fill="%23FDF500"/><path d="M9.55258 2.13189C9.50096 2.2642 9.23729 2.15201 9.28494 2.37639C9.31909 2.53655 9.46284 2.52881 9.60262 2.55512C9.41439 2.65725 9.66695 2.63481 9.7694 2.7176C9.86629 2.79575 9.96795 2.9915 10.1204 3.05959C9.95762 3.32885 10.3746 3.40468 10.5048 3.46658C10.5509 3.48824 10.6343 3.61668 10.6716 3.62906C10.7193 3.64453 11.1036 3.56252 11.1179 3.44878C11.4388 3.75286 11.7525 4.0639 12.0726 4.36797L11.6238 4.42678C11.8843 4.62408 11.816 4.92738 11.8915 5.14325C11.9368 5.27401 12.6166 5.10766 12.839 5.10611L12.8612 5.127C12.8612 5.127 12.8652 5.13087 12.8668 5.13242C12.9216 5.18426 12.9732 5.23765 13.028 5.28949C12.4713 5.3715 12.9216 5.63689 12.9279 5.69647C12.9414 5.83342 12.8255 5.73516 12.8279 5.82646C12.8279 5.8458 13.0796 6.07792 13.0955 6.1197C13.0979 6.12667 12.9875 6.20094 13.0288 6.24969C13.0574 6.28373 13.3226 6.23963 13.3965 6.34718C13.0764 6.7031 13.4243 6.58085 13.4299 6.67292C13.4314 6.69691 13.1725 6.75726 13.4465 6.91742C13.5267 6.96462 13.6578 6.93676 13.6808 6.94992C13.8119 7.02497 13.6443 7.38398 13.6641 7.45439C13.7205 7.65633 13.9961 7.55962 14.0152 7.56813C14.0326 7.57587 14.1422 7.84745 14.2661 7.84512C14.0692 7.97356 13.8246 7.84977 13.6641 7.74763C13.6578 7.74377 13.6554 7.62306 13.6141 7.6014C13.5387 7.56117 13.4251 7.68264 13.4132 7.5689L13.3631 7.99213C13.2742 7.92404 13.1908 7.87917 13.0955 7.79638C12.5173 7.29655 12.0543 6.68143 11.5246 6.13595C11.7819 5.42799 10.9512 5.0388 10.5723 4.54052L10.3349 4.86626C9.92109 4.44535 9.48587 4.09407 9.06177 3.69405C8.70994 3.36212 8.0039 2.38877 7.47973 2.42359C6.9913 2.45686 6.20584 3.3304 5.8556 3.65537C5.84686 3.6631 5.83971 3.67239 5.83098 3.68013C5.57127 3.9223 5.2933 4.16216 5.03996 4.40898L4.67224 4.39273C4.78422 4.20626 4.66351 4.06544 4.83902 3.90451C4.25132 4.01593 4.569 3.77529 4.43795 3.64376C4.38395 3.5896 4.25449 3.60353 4.23702 3.57877C4.2259 3.56329 4.35377 3.35671 4.23702 3.23678C4.97324 2.54738 5.68961 1.82317 6.4433 1.15234C6.5124 1.39916 6.49492 1.57944 6.42662 1.83632C6.61247 1.64676 6.89917 1.93691 6.92776 1.93381C7.02704 1.92453 7.20017 1.57867 7.11122 1.46184C7.20335 1.30322 7.20414 1.52296 7.26132 1.54308C7.2788 1.54927 7.52182 1.42083 7.62904 1.47808C7.65445 1.49201 7.67192 1.65063 7.67907 1.65682C7.88318 1.8487 7.91415 1.61658 7.93004 1.60807C8.03964 1.54849 8.14368 1.7574 8.29775 1.70556C8.31364 1.70015 8.37002 1.52064 8.49868 1.57558C8.39385 1.6514 8.44071 1.71098 8.46533 1.83632L8.63211 1.67384C8.70517 2.2023 8.79333 1.70401 8.83304 1.70634C8.9617 1.97714 9.23093 2.22087 9.55179 2.12957L9.55258 2.13189Z" fill="%23FE0000"/><path d="M4.38562 5.09871C4.34035 5.14359 4.31414 5.21245 4.2649 5.2612C4.25616 5.26971 4.24663 5.27822 4.2379 5.2875C4.07112 5.45385 3.89719 5.61479 3.72961 5.78269C3.61445 5.89798 3.50406 6.02487 3.3889 6.14093C3.37699 5.94208 3.04898 5.93976 2.91794 5.97844C2.7869 6.01713 2.80755 6.12545 2.78452 6.14093C2.65268 6.23068 2.54864 6.01249 2.53355 6.51541L2.96798 6.54482C2.91 6.60285 2.86394 6.67016 2.80755 6.72742C2.79802 6.73748 2.79087 6.74986 2.78055 6.75991C2.46287 7.07869 2.18013 7.43925 1.83783 7.73714C1.82751 7.74642 1.82195 7.76035 1.81083 7.76963C1.72426 7.84391 1.6512 7.89188 1.56384 7.95842C1.21995 8.21763 0.974542 8.42731 0.518672 8.38862C0.544087 8.19906 0.497229 8.00253 0.628272 7.85165C0.344743 7.64197 0.459902 7.38741 6.15998e-05 7.47716C6.15998e-05 7.488 0.00641518 7.49883 0.00641518 7.50966C0.00641518 7.49883 -0.000732597 7.48722 6.15998e-05 7.47716C0.00720937 7.32551 0.101719 7.16999 0.193846 7.05393C0.797436 6.298 2.01891 5.38886 2.76784 4.67703C2.77896 4.6662 2.79008 4.65536 2.80119 4.64453L3.31901 4.70952L3.28566 4.77452C3.44291 4.87201 3.50009 4.69637 3.5533 4.70952C3.5946 4.71958 3.60095 4.79618 3.62001 4.80701C3.71611 4.8635 3.80268 4.69482 3.75344 5.03527C3.92419 4.92462 4.13783 5.11573 4.38482 5.10026L4.38562 5.09871Z" fill="%23FDB7A6"/><path d="M11.0964 1.20669C11.0964 1.37459 11.1194 1.39084 10.9574 1.46666C11.171 1.44191 11.0717 1.65313 11.1408 1.67867C11.2036 1.70111 11.3179 1.65391 11.4085 1.71116C11.4498 1.73747 11.5149 1.99512 11.6595 2.02066C11.395 2.28527 11.6158 2.29224 11.7262 2.50888C11.7365 2.529 11.7325 2.68529 11.7595 2.73713C11.7786 2.77427 11.8747 2.73249 11.8929 2.76963C11.97 2.92592 11.8111 3.2594 12.1606 3.06287C12.0041 3.32285 12.4814 3.65942 12.5617 3.5186C12.6093 3.43504 12.5196 2.56691 12.5617 2.50888C12.5903 2.46942 12.8039 2.50501 12.8658 2.49263C12.8492 3.34838 12.8928 4.20954 12.8627 5.06452L12.815 5.08463C12.5664 4.84865 12.3226 4.60802 12.0748 4.37203C11.7548 4.06718 11.4411 3.75614 11.1202 3.45283C11.1123 3.4451 11.1043 3.43736 11.0964 3.42962C10.9121 3.25476 10.731 3.07603 10.5476 2.90116C10.5396 2.89343 10.5317 2.88569 10.5238 2.87795C10.6532 2.81992 10.6063 2.71315 10.6191 2.62339C10.6548 2.36574 10.6588 1.69801 10.5913 1.46125C10.5285 1.24151 10.4531 1.2949 10.3816 1.18735C10.4443 1.13319 10.542 1.17574 10.6246 1.18116C10.7819 1.19276 10.9399 1.19818 11.098 1.20746L11.0964 1.20669Z" fill="%23DBD77C"/><path d="M13.2703 0.70031C13.1599 0.704179 12.5603 0.688704 12.5119 0.732807C12.4634 0.77691 12.5158 1.19008 12.4928 1.2837L11.9138 1.25121C11.6414 1.23573 11.369 1.22103 11.0966 1.20556C10.9386 1.19627 10.7805 1.19008 10.6233 1.17925C10.5407 1.17306 10.443 1.13128 10.3802 1.18544C10.2365 0.968795 10.1269 0.947904 10.0951 0.635317C10.0824 0.514615 10.1118 0.270889 10.1952 0.179589C10.2492 0.120785 10.3167 0.0913833 10.389 0.0619815C10.5049 0.0155575 12.7525 -0.023129 12.8963 0.0163313C13.2592 0.115369 13.3354 0.341299 13.2703 0.70031Z" fill="%23DBD77C"/><path d="M13.0629 5.32547C13.3972 5.64115 13.7649 5.92279 14.0993 6.23692C13.6895 6.25549 13.5052 6.34757 13.6815 6.75764C13.9595 6.67253 14.5567 7.09112 14.467 6.58201C14.6004 6.71664 14.7672 6.82805 14.8744 6.98589C14.8816 6.99673 14.8879 7.00756 14.8943 7.01839C14.8871 7.00756 14.8816 6.99595 14.8744 6.98589C14.8228 7.05785 14.4988 7.00679 14.4837 7.01839C14.4567 7.03928 14.4479 7.17623 14.417 7.21415C14.4058 7.2273 14.2947 7.19248 14.2669 7.23039C14.2494 7.25438 14.4043 7.50816 14.4003 7.55613C14.3979 7.58167 14.1453 7.67838 14.4003 7.80063C14.2192 8.03507 14.7164 7.94996 14.8284 7.96312C14.4733 8.51479 14.104 8.51943 13.5981 8.19137C13.5148 8.13721 13.4441 8.05751 13.3639 7.99561L13.4139 7.57238C13.425 7.68612 13.5394 7.56465 13.6148 7.60488C13.6561 7.62732 13.6585 7.74725 13.6649 7.75112C13.8253 7.85325 14.0691 7.97704 14.2669 7.8486C14.1438 7.85093 14.0334 7.57935 14.0159 7.57161C13.9968 7.5631 13.7212 7.65981 13.6649 7.45787C13.645 7.38669 13.8126 7.02768 13.6815 6.9534C13.6593 6.94024 13.5283 6.9681 13.4472 6.9209C13.1732 6.76074 13.4322 6.70039 13.4306 6.6764C13.425 6.58433 13.0771 6.70658 13.3972 6.35066C13.3234 6.24311 13.0581 6.28644 13.0295 6.25317C12.9882 6.20443 13.0986 6.13015 13.0962 6.12318C13.0803 6.0814 12.8294 5.85006 12.8286 5.82994C12.8262 5.73864 12.9421 5.8369 12.9286 5.69995C12.9231 5.64037 12.4728 5.37498 13.0287 5.29297C13.0398 5.3038 13.0509 5.31463 13.0621 5.32547H13.0629Z" fill="%23FE8D83"/><path d="M8.14925 0.596641C8.15481 0.813286 7.8951 0.812513 7.99914 1.02684L8.51696 0.929346C8.52808 0.940178 8.5392 0.95101 8.55032 0.961843C8.9085 1.29532 9.23015 1.66671 9.58674 2.00406C9.53115 2.03578 9.5661 2.10155 9.55339 2.13405C9.23253 2.22535 8.9633 1.98162 8.83464 1.71082C8.79572 1.70849 8.70757 2.20678 8.63371 1.67832L8.46693 1.8408C8.44231 1.71546 8.39545 1.65588 8.50028 1.58005C8.37242 1.52589 8.31523 1.70463 8.29935 1.71004C8.14528 1.76188 8.04124 1.55297 7.93164 1.61255C7.91655 1.62106 7.88478 1.85318 7.68067 1.6613C7.67352 1.65511 7.65605 1.49572 7.63064 1.48256C7.52342 1.42608 7.2804 1.55375 7.26292 1.54756C7.20574 1.52667 7.20415 1.3077 7.11282 1.46632C7.20177 1.58315 7.02864 1.92901 6.92936 1.93829C6.90077 1.94139 6.61327 1.65124 6.42822 1.8408C6.49732 1.58392 6.514 1.40364 6.4449 1.15682C6.67284 0.954105 6.92142 0.676336 7.18033 0.525458C7.26769 0.741329 7.15094 0.855842 7.2804 1.07558C7.44559 1.0338 7.41779 1.33246 7.56472 1.25431C7.58696 1.24271 7.57743 0.999756 7.94911 1.07558C7.94911 1.04386 7.28357 1.09492 7.63143 0.798585C7.68544 0.834177 7.5679 1.01059 7.79821 0.961069C7.72594 0.776921 8.05394 0.834177 7.94832 0.492188C8.01662 0.522363 8.08651 0.55486 8.14925 0.596641Z" fill="%23F86866"/><path d="M11.9138 1.24955C11.9154 1.34627 11.9479 1.50411 11.9265 1.59386C11.8884 1.7517 11.6684 1.58071 11.9765 1.93585C12.0464 1.65034 12.3506 1.96989 12.3776 1.96835C12.43 1.96602 12.4634 1.78033 12.4777 1.77259C12.5309 1.74551 12.7826 1.7989 12.866 1.76408C12.8517 2.00394 12.87 2.24921 12.8652 2.48907C12.8033 2.50145 12.5897 2.46586 12.5611 2.50532C12.519 2.56335 12.6087 3.43147 12.5611 3.51504C12.4809 3.65586 12.0035 3.31928 12.16 3.05931C11.8105 3.25584 11.9694 2.92236 11.8924 2.76606C11.8741 2.72892 11.778 2.77071 11.7589 2.73357C11.7319 2.68173 11.7359 2.52543 11.7256 2.50532C11.6152 2.28867 11.3944 2.28093 11.6589 2.01709C11.5143 1.99156 11.4492 1.73391 11.4079 1.7076C11.3174 1.65034 11.203 1.69754 11.1402 1.6751C11.0712 1.65034 11.1704 1.43834 10.9568 1.4631C11.1188 1.38805 11.0958 1.37102 11.0958 1.20312C11.3682 1.2186 11.6406 1.2333 11.913 1.24878L11.9138 1.24955Z" fill="%23BAD26B"/><path d="M5.04065 4.41439C4.92231 4.52968 4.8008 4.69139 4.67294 4.81828C4.53713 4.83298 4.41641 4.55598 4.38861 4.54438C4.34414 4.52581 4.20754 4.56217 4.15432 4.54438C4.13209 4.53741 3.99787 4.41516 3.98754 4.41439C3.85253 4.40356 3.9248 4.50801 3.88747 4.51188C3.37045 4.5645 3.58012 4.28363 3.46973 3.95866C3.72308 3.71803 3.98278 3.48204 4.23851 3.24219C4.35526 3.36212 4.22739 3.5687 4.23851 3.58418C4.25598 3.60894 4.38544 3.59501 4.43944 3.64917C4.57048 3.77993 4.25281 4.02134 4.84051 3.90992C4.6642 4.07085 4.78571 4.21167 4.67373 4.39814L5.04144 4.41439H5.04065Z" fill="%23FE8D83"/><path d="M9.62012 2.03486C9.91953 2.31882 10.2253 2.59272 10.5223 2.8759C10.5303 2.88364 10.5382 2.89138 10.5462 2.89911C10.7304 3.07398 10.9107 3.25348 11.0949 3.42757C11.1029 3.43531 11.1108 3.44305 11.1188 3.45078C11.1037 3.56452 10.7193 3.64654 10.6724 3.63106C10.6351 3.61868 10.5517 3.49025 10.5056 3.46858C10.3754 3.40668 9.95845 3.33086 10.1213 3.0616C9.96877 2.99351 9.86711 2.79776 9.77022 2.71961C9.66697 2.63682 9.41442 2.65926 9.60344 2.55712C9.46366 2.53082 9.31991 2.53855 9.28576 2.37839C9.23811 2.15401 9.50178 2.2662 9.5534 2.13389C9.56611 2.1014 9.53117 2.03563 9.58676 2.00391C9.59788 2.01474 9.609 2.02557 9.62012 2.0364V2.03486Z" fill="%23FE8D83"/><path d="M4.67304 4.81665C4.57853 4.91104 4.48005 5.00234 4.38554 5.09674C4.13854 5.11221 3.92491 4.92033 3.75415 5.03174C3.80339 4.69208 3.71683 4.85998 3.62073 4.80349C3.60167 4.79266 3.59531 4.71606 3.55402 4.706C3.5008 4.69285 3.44362 4.86849 3.28637 4.771L3.31973 4.706L2.80191 4.64101C3.03382 4.4205 3.23793 4.17754 3.47062 3.95703C3.58181 4.28277 3.37135 4.56364 3.88837 4.51025C3.92649 4.50638 3.85343 4.40193 3.98844 4.41276C3.99877 4.41353 4.13378 4.53578 4.15522 4.54275C4.20843 4.56054 4.34424 4.52418 4.38951 4.54275C4.41731 4.55435 4.53803 4.83135 4.67383 4.81665H4.67304Z" fill="%23FE8D83"/><path d="M12.4918 1.28563C12.6165 1.29259 12.7412 1.29956 12.8666 1.30652C12.8627 1.31503 12.8706 1.32896 12.8666 1.33979C12.8436 1.39937 12.8722 1.67017 12.8666 1.76844C12.7833 1.80326 12.5315 1.74987 12.4783 1.77695C12.464 1.78391 12.4298 1.97038 12.3782 1.9727C12.3512 1.97348 12.047 1.65393 11.9771 1.94021C11.669 1.58506 11.889 1.75606 11.9271 1.59822C11.9486 1.50846 11.916 1.35062 11.9144 1.25391L12.4934 1.2864L12.4918 1.28563Z" fill="%232D8700"/><path d="M12.8142 5.08447C12.823 5.09299 12.8317 5.1015 12.8396 5.10923C12.8468 5.1162 12.8539 5.12316 12.8619 5.13012L12.8396 5.10923C12.6173 5.11078 11.9382 5.27791 11.8922 5.14637C11.8175 4.9305 11.885 4.6272 11.6245 4.4299L12.0732 4.37109C12.321 4.60708 12.5648 4.84771 12.8134 5.0837L12.8142 5.08447Z" fill="%23FC7D4B"/><path d="M14.8943 7.01765C15.0532 7.26447 15.0167 7.57628 14.8943 7.83161C14.7458 7.81768 14.5354 7.86411 14.3996 7.79912C14.1446 7.67687 14.3972 7.58092 14.3996 7.55462C14.4035 7.50664 14.2479 7.25286 14.2661 7.22887C14.2947 7.19096 14.4051 7.22578 14.4162 7.21263C14.4472 7.17549 14.456 7.03776 14.483 7.01687C14.498 7.00527 14.8229 7.05633 14.8737 6.98438C14.8808 6.99521 14.8872 7.00604 14.8936 7.01687L14.8943 7.01765Z" fill="%23FDB7A6"/><path d="M7.94816 0.492173C8.05379 0.834162 7.72499 0.776906 7.79806 0.961054C7.56774 1.01057 7.68449 0.834162 7.63128 0.798571C7.28263 1.09491 7.94896 1.04307 7.94896 1.07557C7.57727 0.999741 7.5868 1.24269 7.56457 1.2543C7.41843 1.33167 7.44544 1.03301 7.28024 1.07557C7.15079 0.855827 7.26754 0.741314 7.18018 0.525443C7.4502 0.367602 7.66225 0.366828 7.94896 0.492946L7.94816 0.492173Z" fill="%23FE8D83"/><path d="M14.1319 6.27078C14.2415 6.37446 14.3606 6.47659 14.4663 6.58337C14.556 7.09248 13.9588 6.67389 13.6808 6.759C13.5045 6.34893 13.6887 6.25685 14.0985 6.23828C14.1097 6.24911 14.1208 6.25995 14.1319 6.27078Z" fill="%23FDB7A6"/><path d="M13.2702 0.699992C13.1964 1.10698 13.0177 1.06133 12.8954 1.27797C12.889 1.2888 12.8724 1.29422 12.8676 1.3035C12.7429 1.29654 12.6182 1.28958 12.4927 1.28261C12.515 1.18976 12.4633 0.775818 12.5118 0.731715C12.5602 0.687613 13.1599 0.703087 13.2702 0.699219V0.699992Z" fill="%23E2E4D1"/><path d="M0.518672 8.38701C0.467844 8.38237 0.287561 8.39629 0.277236 8.38701C0.242292 8.35606 0.00720937 7.57614 0.00641518 7.50805C0.00641518 7.49722 -0.000732597 7.48561 6.15998e-05 7.47555C0.459902 7.3858 0.345537 7.64036 0.628272 7.85004C0.497229 8.00092 0.544087 8.19744 0.518672 8.38701Z" fill="%23F5CEC5"/><path d="M8.5504 0.958951C8.53928 0.948119 8.52816 0.937287 8.51705 0.926455L7.99923 1.02394C7.89519 0.809621 8.15489 0.811169 8.14933 0.59375C8.32326 0.710584 8.38044 0.800336 8.51705 0.925681C8.52816 0.936513 8.53928 0.947345 8.5504 0.958178V0.958951Z" fill="%23FE8D83"/><path d="M14.8944 7.83328C14.8746 7.87506 14.8523 7.92458 14.8277 7.96326C14.7157 7.95011 14.2186 8.03522 14.3996 7.80078C14.5355 7.86577 14.7459 7.81935 14.8944 7.83328Z" fill="%23FE0000"/><path d="M10.4818 5.06435C10.8304 5.4195 11.1767 5.78083 11.5246 6.13907C12.0543 6.68455 12.5173 7.29966 13.0955 7.79949C13.1217 8.22427 12.3799 8.12137 12.0424 8.12524C11.9709 8.12601 11.6977 8.02697 11.6747 8.02775C10.8265 8.03626 9.6979 8.05405 8.81714 8.12524C8.75757 8.12988 8.59555 8.14767 8.54949 8.15773C8.07297 8.14458 7.53292 8.21421 7.06196 8.19023C6.92456 8.18327 6.70378 8.10512 6.51079 8.09274C6.15737 8.0703 5.81348 8.04864 5.45768 8.06024C5.39653 8.06256 5.29249 8.02775 5.30758 8.12524C4.50782 8.11518 3.71521 8.13065 2.93452 8.19023C2.9234 8.191 2.91228 8.18946 2.90116 8.19023C2.83445 8.19565 2.76853 8.18791 2.70023 8.19642C2.68911 8.19797 2.67799 8.19487 2.66687 8.19642C2.52233 8.21499 2.37699 8.23588 2.23245 8.25522C2.21498 8.0881 1.91477 8.18713 1.89809 8.17398C1.8425 8.1291 1.90842 7.8258 1.81152 7.767C1.82185 7.75771 1.82741 7.74379 1.83853 7.7345C2.18083 7.43739 2.46277 7.07683 2.78124 6.75728C2.79077 6.74722 2.79792 6.73484 2.80824 6.72478C3.09574 6.73639 3.29905 7.01416 3.41977 6.62729C3.48569 6.67217 3.53493 6.81221 3.6207 6.82304C3.77875 6.84316 4.27036 6.36654 4.42284 6.23656C4.43714 6.22418 4.69049 6.10734 4.72384 6.07407C4.82312 5.97271 4.89618 5.69494 4.92478 5.68334C5.00975 5.64775 5.44656 5.74137 5.47595 5.43884C5.48151 5.3839 5.38462 5.31349 5.40924 5.21059C5.41877 5.16958 5.57125 4.78194 5.5927 4.77111C5.62685 4.75331 5.9755 4.8067 6.04698 4.75718C6.09066 5.13321 6.08907 6.49885 6.31144 6.69228C6.47743 6.83697 7.93796 6.75728 8.24055 6.72865C8.32553 6.72091 8.53043 6.75186 8.57808 6.68068C8.62653 6.36345 8.62812 6.0408 8.66703 5.7228C8.7123 5.3545 8.74645 4.9893 8.81078 4.62333C9.16658 4.54286 8.9998 4.9715 9.10146 4.99858C9.13084 5.00632 9.19359 4.86937 9.20153 4.8686C9.48029 4.83069 9.7932 4.95216 9.83688 5.25933C10.0902 4.9924 10.0982 5.08602 10.4556 5.03108C10.4651 5.04114 10.4722 5.05352 10.4826 5.06358L10.4818 5.06435Z" fill="%23BAD26B"/><path d="M6.04626 4.75808C5.97478 4.8076 5.62613 4.75421 5.59198 4.77201C5.57053 4.78284 5.41805 5.17125 5.40852 5.21149C5.3839 5.31439 5.48079 5.38403 5.47523 5.43974C5.44505 5.74227 5.00824 5.64787 4.92406 5.68424C4.89546 5.69662 4.8224 5.97361 4.72312 6.07497C4.68977 6.10902 4.43721 6.22508 4.42212 6.23746C4.26964 6.36667 3.77724 6.84329 3.61998 6.82395C3.53421 6.81311 3.48497 6.67307 3.41905 6.62819C3.29754 7.01583 3.09423 6.73729 2.80752 6.72568C2.79799 6.73574 2.79084 6.74812 2.78052 6.75818C2.79005 6.74812 2.7972 6.73574 2.80752 6.72568C2.86391 6.66843 2.90997 6.60111 2.96795 6.54308C3.10534 6.40458 3.25306 6.27614 3.38887 6.13919C3.50403 6.02313 3.61442 5.89624 3.72958 5.78095H4.02026C3.94163 5.80649 4.07188 6.02004 4.12033 6.00921C4.16877 5.99837 4.2061 5.69352 4.2204 5.68346C4.29426 5.63317 4.92167 5.82893 4.26408 5.26023C4.25534 5.26874 4.24581 5.27726 4.23708 5.28654C4.24581 5.27803 4.25534 5.26952 4.26408 5.26023C4.31332 5.21071 4.33953 5.14263 4.3848 5.09775C4.47931 5.00335 4.57779 4.91205 4.6723 4.81766C4.80016 4.69077 4.92167 4.52906 5.04001 4.41377C5.29336 4.16618 5.57133 3.92632 5.83103 3.68492C5.94142 3.73057 5.89933 3.80871 5.91521 3.89537C5.96843 4.18243 6.01211 4.46948 6.04546 4.75886L6.04626 4.75808Z" fill="%238C9C78"/><path d="M10.3349 4.86752C10.3746 4.90775 10.4063 4.98048 10.4556 5.03C10.4651 5.04006 10.4723 5.05244 10.4826 5.0625C10.473 5.05244 10.4659 5.04006 10.4556 5.03C10.099 5.08493 10.0902 4.99131 9.83689 5.25825C9.79321 4.95108 9.4803 4.8296 9.20154 4.86752C9.19359 4.86829 9.13085 5.00601 9.10147 4.9975C8.99981 4.97042 9.16659 4.54178 8.81079 4.62224C8.837 4.47291 8.83859 4.23073 8.86956 4.11235C8.89815 4.00171 9.04984 3.85083 9.06255 3.69531C9.48665 4.09533 9.92187 4.44661 10.3356 4.86752H10.3349Z" fill="%23458973"/><path d="M11.5255 6.1384C11.1776 5.78017 10.8313 5.41883 10.4827 5.06369C10.4732 5.05363 10.466 5.04125 10.4557 5.03119C10.4064 4.98167 10.3747 4.90894 10.335 4.86871L10.5724 4.54297C10.9513 5.04125 11.782 5.43121 11.5247 6.1384H11.5255Z" fill="%23FE8D83"/><path d="M3.38953 6.13872C3.25372 6.27567 3.106 6.40411 2.96861 6.54261L2.53418 6.51321C2.54927 6.01028 2.65252 6.22847 2.78515 6.13872C2.80897 6.12247 2.78673 6.01415 2.91857 5.97624C3.05041 5.93832 3.37841 5.93987 3.38953 6.13872Z" fill="%23FDB7A6"/><path d="M3.73022 5.77931C3.8978 5.61141 4.07173 5.45047 4.23851 5.28412C4.24725 5.27561 4.25678 5.2671 4.26551 5.25781C4.92311 5.82651 4.29569 5.63075 4.22183 5.68104C4.20754 5.6911 4.17259 5.99518 4.12176 6.00678C4.07094 6.01839 3.94307 5.80484 4.02169 5.77853H3.73102L3.73022 5.77931Z" fill="%231C5843"/><path d="M8.66714 5.72247C8.62823 6.04047 8.62664 6.36312 8.5782 6.68035C8.53054 6.75076 8.32485 6.72058 8.24066 6.72832C8.19619 6.53179 8.28593 6.19058 8.25019 6.02422C8.24622 6.00565 8.04688 5.84781 8.10962 5.70312C8.23431 5.70777 8.35979 5.7186 8.48448 5.71937C8.54563 5.71937 8.60679 5.70777 8.66794 5.72247H8.66714Z" fill="%23DEE7B1"/><path d="M9.06258 3.69643C9.05067 3.85195 8.89818 4.00282 8.86959 4.11347C8.83862 4.23262 8.83703 4.47403 8.81082 4.62336C8.7457 4.98933 8.71234 5.35531 8.66707 5.72283C8.60592 5.70735 8.54476 5.71973 8.48361 5.71973C8.35892 5.71973 8.23344 5.70813 8.10875 5.70349C8.04601 5.84895 8.24535 6.00679 8.24932 6.02458C8.28506 6.19094 8.19532 6.53215 8.23979 6.72868C7.9372 6.75731 6.47668 6.837 6.31069 6.69231C6.08831 6.49888 6.0899 5.13325 6.04622 4.75721C6.01286 4.46784 5.96918 4.18078 5.91597 3.89373C5.90009 3.80707 5.94218 3.72892 5.83179 3.68327C5.84052 3.67553 5.84767 3.66625 5.85641 3.65851C6.20744 3.33277 6.99211 2.45923 7.48054 2.42673C8.00471 2.39114 8.70996 3.36527 9.06258 3.6972V3.69643Z" fill="%23FDF500"/><path d="M7.56402 4.05498C7.65058 4.04879 7.95476 4.14009 7.88487 4.27395C7.6617 4.31418 7.43774 4.3637 7.21298 4.3962C7.12324 4.04802 7.24872 4.20354 7.39644 4.15247C7.41788 4.14474 7.51398 4.05885 7.56322 4.05498H7.56402Z" fill="%23DBD77C"/></g><defs><clipPath id="clip0_1988_16566"><rect width="15" height="16" fill="white"/></clipPath></defs></svg>');
  height: 33px;
  width: 32px;
}

.pageTitle {
  -webkit-align-items: center;
          align-items: center;
  display: grid;
  font-size: 3.2rem;
  font-weight: 700;
  gap: 0.5em;
  grid-auto-flow: column;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  line-height: 1.6;
}
.pageTitle__icon {
  background: transparent no-repeat center/contain;
  height: 100%;
  width: 1em;
}
.pageTitle__icon_type_info {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="16" fill="none" viewBox="0 0 18 16"><g clip-path="url(%23a)"><path fill="%23FC7B74" d="M2.2806 7.39056C2.2473 7.817 2.2428 8.24608 2.3004 8.66989C2.3022 8.68132 2.3121 8.69099 2.3139 8.70154C2.3121 8.69011 2.3022 8.68044 2.3004 8.66989C2.151 8.72089 1.8369 8.76309 1.7073 8.82991C1.4517 8.9618 1.4787 9.09106 1.1673 9.18162C1.0449 9.21767 0.0512981 9.3988 0.00629813 9.36187C-0.0162019 8.89762 0.0233981 8.43161 0.0359981 7.96648C0.567898 8.03858 0.107098 7.62796 0.675898 7.4864C0.858598 7.44067 1.0512 7.4398 1.2654 7.39056C1.2708 7.38968 1.2897 7.47145 1.3473 7.45474C1.3851 7.44331 1.4868 7.24899 1.6416 7.19888C2.2437 7.00632 1.8081 7.47936 2.2797 7.39056H2.2806Z" /><path fill="%23FDBB00" d="M0.862997 6.55263C0.774797 6.92192 1.0898 6.92544 1.2005 7.05381C1.2239 7.08107 1.1456 7.11976 1.1681 7.14965C1.1798 7.16548 1.2617 7.18834 1.2662 7.19801C1.2905 7.25253 1.3049 7.33694 1.2662 7.38969C1.052 7.43981 0.859397 7.43981 0.676697 7.48553C0.470597 7.30089 0.378797 7.14086 0.0646973 7.19274C0.0781973 6.94303 0.0619973 6.68804 0.111497 6.44184C0.149297 6.41371 0.759497 6.53065 0.863897 6.55175L0.862997 6.55263Z" /><path fill="%23FBE77E" d="M1.26547 7.19616C1.26097 7.18649 1.17907 7.16363 1.16737 7.1478C1.14577 7.11791 1.22407 7.07922 1.19977 7.05196C1.08997 6.92359 0.774967 6.92007 0.862267 6.55078C0.939667 6.56661 1.37887 6.62024 1.39417 6.64222C1.41667 6.67476 1.37797 6.81368 1.39597 6.86028C1.40947 6.89633 1.50127 6.92623 1.49407 6.98866C1.49137 7.01679 1.29877 7.16099 1.26457 7.19616H1.26547Z" /><path fill="%23F3CE16" d="M16.7461 9.47702C16.7479 9.448 16.7551 9.41899 16.7569 9.38997C16.7902 8.87033 16.9414 8.31551 16.9477 7.79762C16.9549 7.15664 16.783 6.3908 16.7434 5.73047C16.9009 5.76564 16.9738 5.90193 17.08 5.99777C18.2572 7.04849 18.3904 8.41663 16.9702 9.3337C16.8946 9.38294 16.8136 9.41811 16.7452 9.47702H16.7461Z" /><path fill="%23FC7B74" d="M7.73275 6.52822C7.74715 7.41892 7.82635 9.69973 7.63285 10.4585C7.61755 10.5175 7.60315 10.5597 7.57345 10.6107C7.32865 10.535 7.15225 10.535 6.91645 10.4867C6.90475 10.484 6.89305 10.484 6.88225 10.4823C6.24145 10.3513 5.58715 10.2546 4.94365 10.1279C5.11375 9.57576 4.26595 9.81228 4.21285 9.70765C4.20385 9.69094 4.32265 9.44211 4.29475 9.40342C4.01215 9.53267 3.47305 9.24691 3.36145 9.00336C3.34705 8.97258 3.28495 8.58922 3.32905 8.55581C3.38755 8.51009 3.55405 8.56988 3.59095 8.52416L3.49285 8.39578L3.54235 8.31577C3.75205 8.22608 4.19395 8.51448 4.22995 8.50745C4.27405 8.49954 4.14895 8.3316 4.26235 8.28324C4.49365 8.53471 4.83565 8.27269 4.88425 8.28324C4.89955 8.28675 4.90855 8.36853 4.94995 8.37908C5.26135 8.45821 5.06785 8.28324 5.14615 8.21905C5.18215 8.19004 5.50975 8.45469 5.60425 8.44326C5.67715 8.43535 5.77615 8.29291 5.68615 8.23576L5.80045 8.1874C5.88145 8.42392 6.02455 8.41864 6.19375 8.60329C6.34135 8.21905 6.10645 8.2762 6.04615 8.20322C6.02005 8.17157 6.02365 7.9878 5.99665 7.96318C5.97955 7.94648 5.72665 7.94208 5.68525 7.91483C5.64925 7.89108 5.43055 7.16393 5.40715 7.73897C5.10655 7.59213 4.88605 7.81547 4.62145 7.77063C4.21195 7.70116 4.59625 7.48311 4.32715 7.25889C3.96085 7.28439 3.70165 7.16833 3.32815 7.22724C3.35155 7.03644 3.86365 7.01358 4.04815 6.97137C4.84105 6.78936 5.93905 6.59505 6.74995 6.61967C6.86425 6.62318 7.05955 6.7498 7.07755 6.74804C7.09285 6.7454 7.20175 6.59417 7.32325 6.55636C7.41505 6.52734 7.62835 6.5291 7.73275 6.52734V6.52822Z" /><path fill="%232B5E49" d="M5.87888 11.2969C5.88968 11.2969 5.90138 11.2969 5.91218 11.2969C5.90228 11.3558 5.92388 11.4068 5.93738 11.4604C6.20828 12.5041 6.93818 13.7149 7.32968 14.748C7.01918 14.7445 6.86798 14.9001 6.63578 15.0522C6.60608 15.0716 6.68978 15.1146 6.65198 15.1322C6.58988 15.1612 6.28658 15.0127 6.45578 14.9406C6.65468 15.2017 6.58628 14.8394 6.57008 14.8289C6.52958 14.8016 6.39908 14.8746 6.32438 14.8447C6.28748 14.8298 6.17048 14.5563 6.17678 14.5405C6.18488 14.522 6.42518 14.2829 6.47108 14.253C6.10298 14.2767 6.27578 13.9399 6.24158 13.8371C6.21548 13.7579 5.89598 13.7421 5.84828 13.6129C5.84468 13.6041 5.94548 13.4625 5.94638 13.4528C5.98418 12.9701 5.94638 13.1512 5.66828 12.7969C5.51528 13.0167 5.47208 12.6852 5.43878 12.6685C5.30468 12.6008 4.63058 12.8119 4.42358 12.7327C4.55138 13.0827 4.93028 12.8277 5.19308 12.9728L5.14358 13.0528C5.22818 13.0686 5.41268 12.9974 5.38928 13.1328C5.35418 13.2418 4.90508 13.1108 4.83218 13.2612L5.01218 13.5328L4.36058 13.6612C4.10588 13.015 3.78368 12.155 3.61808 11.4903C3.60458 11.434 3.57758 11.383 3.59018 11.3233C4.21568 11.3848 5.22008 11.3215 5.87618 11.2969H5.87888Z" /><path fill="%23FE0000" d="M4.94374 10.1306C4.32004 10.0084 3.64324 9.90638 3.03124 9.75427C2.88094 9.71646 2.57764 9.69975 2.48134 9.58193C2.43724 9.52742 2.33104 8.83192 2.31304 8.70354C2.31124 8.69211 2.30134 8.68244 2.29954 8.67189C2.24284 8.24721 2.24644 7.819 2.27974 7.39256C2.28244 7.36091 2.28964 7.32925 2.29324 7.29672C2.52994 7.17978 2.61364 7.49455 2.68924 7.4884C2.70904 7.48664 2.79364 7.36794 2.82064 7.36003C2.92504 7.33189 3.25444 7.24396 3.32824 7.23165C3.70174 7.17274 3.96094 7.28968 4.32724 7.26331C4.59724 7.48752 4.21294 7.70558 4.62154 7.77504C4.88704 7.81988 5.10664 7.59567 5.40724 7.74339C5.43154 7.16835 5.64934 7.8955 5.68534 7.91924C5.72584 7.9465 5.97874 7.95089 5.99674 7.9676C6.02284 7.99222 6.02014 8.17599 6.04624 8.20764C6.10564 8.28062 6.34144 8.22347 6.19384 8.6077C6.02464 8.42306 5.88244 8.42833 5.80054 8.19181L5.68624 8.24017C5.77624 8.2982 5.67724 8.44064 5.60434 8.44768C5.50984 8.45999 5.18134 8.19445 5.14624 8.22347C5.06794 8.28765 5.26144 8.46263 4.95004 8.38349C4.90864 8.37294 4.89964 8.29117 4.88434 8.28765C4.83574 8.2771 4.49374 8.53912 4.26244 8.28765C4.14904 8.33601 4.27414 8.50395 4.23004 8.51186C4.19404 8.51802 3.75214 8.22962 3.54244 8.32018L3.49294 8.4002L3.59104 8.52857C3.55414 8.57517 3.38764 8.51538 3.32914 8.56022C3.28504 8.59364 3.34804 8.977 3.36154 9.00777C3.47314 9.25133 4.01224 9.53621 4.29484 9.40784C4.32274 9.44564 4.20484 9.69536 4.21294 9.71206C4.26694 9.81582 5.11384 9.57929 4.94374 10.1324V10.1306Z" /><path fill="%23FDBB00" d="M7.72394 5.58738C7.76354 5.81687 7.73024 6.07185 7.73654 6.30486C7.62854 6.3031 7.45574 6.30222 7.35674 6.27145C7.34234 6.26705 7.28474 6.11142 7.11104 6.14308C7.02554 6.1589 6.98954 6.26969 6.97964 6.27145C6.72854 6.30926 6.36854 6.24683 6.12824 6.27145C6.08504 6.27584 5.87084 6.38927 5.76824 6.39982C5.44154 6.43235 4.91234 6.3541 4.62254 6.43147C4.51454 6.46049 4.66214 6.51676 4.62254 6.52731C4.32374 6.60733 3.56954 6.48071 3.21494 6.49566C3.18524 6.49654 3.21224 6.58974 3.18254 6.5915C2.91974 6.60557 2.66864 6.55457 2.40674 6.55985C2.52914 6.04987 2.42024 5.98481 2.97014 5.81159C3.84134 5.53638 5.49824 5.31393 6.44144 5.20402C6.70784 5.17325 7.33784 5.04575 7.55474 5.18468C7.56374 5.18995 7.58174 5.18028 7.58714 5.18468C7.65104 5.23391 7.70954 5.49857 7.72484 5.58826L7.72394 5.58738Z" /><path fill="%236CB496" d="M4.94392 10.1302C5.58742 10.256 6.24172 10.3536 6.88252 10.4846C6.89422 10.4872 6.90592 10.4872 6.91672 10.489L6.90052 10.6217C6.97342 11.4526 6.48382 11.2742 5.91232 11.297C5.90152 11.297 5.88982 11.297 5.87902 11.297C5.22292 11.3216 4.21852 11.3849 3.59302 11.3234C2.72632 11.2381 3.16552 10.5391 3.03052 9.91833L3.03232 9.75391C3.64342 9.9069 4.32022 10.008 4.94482 10.1302H4.94392Z" /><path fill="%2350A77D" d="M7.34924 14.7815C7.37714 14.8554 7.41944 14.931 7.44104 15.0057C7.03064 14.9205 7.20164 15.1895 7.14314 15.23C7.00004 15.3284 6.23324 15.0137 6.40604 15.6907C6.12254 15.7065 5.44574 15.7672 5.24054 15.5817C5.01014 15.3733 4.50884 14.0315 4.36304 13.6622L5.01464 13.5339L4.83464 13.2622C4.90664 13.1118 5.35574 13.2437 5.39174 13.1338C5.41514 12.9984 5.23064 13.0696 5.14604 13.0538L5.19554 12.9738C4.93274 12.8287 4.55384 13.0837 4.42604 12.7337C4.63304 12.8137 5.30714 12.6027 5.44124 12.6695C5.47364 12.6862 5.51684 13.0177 5.67074 12.7979C5.94884 13.1523 5.98754 12.9711 5.94884 13.4538C5.94884 13.4635 5.84714 13.6051 5.85074 13.6139C5.89844 13.7431 6.21794 13.7589 6.24404 13.8381C6.27824 13.941 6.10454 14.2777 6.47354 14.254C6.42764 14.2848 6.18644 14.523 6.17924 14.5415C6.17294 14.5573 6.28994 14.8308 6.32684 14.8457C6.40064 14.8756 6.53204 14.8018 6.57254 14.8299C6.58874 14.8404 6.65624 15.2027 6.45824 14.9416C6.28904 15.0137 6.59234 15.1623 6.65444 15.1332C6.69224 15.1157 6.60854 15.0726 6.63824 15.0532C6.87044 14.9011 7.02164 14.7455 7.33214 14.749C7.33664 14.7604 7.34744 14.7692 7.35194 14.7807L7.34924 14.7815Z" /><path fill="%23FBE77E" d="M7.35666 6.27112L7.32426 6.55863C7.20276 6.59644 7.09386 6.74856 7.07856 6.75031C7.06146 6.75295 6.86526 6.62546 6.75096 6.62194C5.94006 6.59732 4.84296 6.79164 4.04917 6.97365C3.91327 6.77581 3.55056 7.00091 3.44346 7.0053C3.05646 7.02377 2.69286 6.89451 2.31396 6.84528C2.33196 6.74592 2.38146 6.65623 2.40576 6.55776C2.66766 6.55248 2.91966 6.60348 3.18156 6.58941C3.21126 6.58765 3.18426 6.49445 3.21396 6.49357C3.56856 6.47862 4.32366 6.60524 4.62156 6.52522C4.66116 6.51467 4.51356 6.4584 4.62156 6.42938C4.91226 6.35201 5.44146 6.42938 5.76726 6.39773C5.86986 6.38718 6.08406 6.27375 6.12726 6.26936C6.36756 6.24474 6.72756 6.30716 6.97866 6.26936C6.98766 6.2676 7.02456 6.15681 7.11006 6.14098C7.28376 6.10933 7.34137 6.26408 7.35577 6.26936L7.35666 6.27112Z" /><path fill="%236CB496" d="M7.4411 15.0049C7.6616 15.7778 7.0136 15.6564 6.4061 15.6898C6.2333 15.0128 6.9992 15.3285 7.1432 15.2291C7.2017 15.1887 7.0307 14.9196 7.4411 15.0049Z" /><path fill="%23FDB7A6" d="M7.73634 6.30597C7.73814 6.38071 7.73184 6.45632 7.73274 6.53194C7.62834 6.5337 7.41504 6.53194 7.32324 6.56096L7.35564 6.27344C7.45464 6.30509 7.62744 6.30509 7.73544 6.30685L7.73634 6.30597Z" /><path fill="%23FC7B74" d="M16.6889 1.43922C16.4207 1.52451 16.2029 1.12445 16.0013 1.48758C15.9509 1.57815 15.6746 3.15203 15.6737 3.31118C15.6737 3.33492 15.608 3.31909 15.608 3.34284C15.608 3.40966 15.698 3.61101 15.7061 3.79038C15.7079 3.83522 15.6071 3.94074 15.608 3.95041C15.6224 4.14033 15.8042 4.50435 15.8375 4.65382C15.8411 4.66877 15.7349 4.83231 15.8213 4.92551C16.0733 4.85253 15.8564 4.60546 15.8708 4.58963C15.8951 4.5615 16.0112 4.57557 16.0508 4.54127C16.0904 4.50698 16.0472 4.44983 16.0832 4.4129C16.0904 4.40587 16.2029 4.43488 16.2308 4.36454C16.2551 4.30211 16.0436 4.03746 16.067 3.94865C16.0706 3.93458 16.1597 3.92051 16.1651 3.88446C16.1795 3.78862 16.1714 3.51517 16.1975 3.40438C16.2236 3.2936 16.3631 3.13269 16.3613 3.11686C16.3568 3.08169 16.2425 3.06147 16.2299 3.02102C16.1516 2.75373 16.3343 2.75285 16.3613 2.66932C16.4423 2.41169 16.1309 1.40493 16.6889 1.53331C16.6952 2.96739 16.6583 4.28717 16.7438 5.73092C16.3316 5.63772 16.148 5.76082 16.067 6.13978C15.8735 6.13187 16.0598 5.84874 15.8708 5.93227C15.8348 5.96744 15.8168 6.32618 15.8051 6.34817C15.7007 6.54424 15.5153 6.31915 15.5432 6.77989H15.347C15.3497 5.13126 15.3371 3.52308 15.2534 1.88325C15.2516 1.84105 15.239 1.79797 15.2363 1.75488C15.2246 1.53243 15.2093 1.31437 15.2102 1.09104C15.2129 0.517754 15.2039 -0.194452 16.0346 0.0491051C16.886 0.297937 16.6835 0.742846 16.6898 1.43747L16.6889 1.43922Z" /><path fill="%23FE0000" d="M16.669 12.0597C16.6519 12.9566 16.6816 13.8508 16.6627 14.7468C16.2388 14.6369 16.5457 15.1178 16.345 15.2585C16.0966 15.4326 16.0921 14.9068 15.7393 15.5144C15.6574 15.6559 15.5908 15.7509 15.6079 15.9241C15.3838 15.8221 15.2929 15.5715 15.1408 15.4027C15.1318 15.3922 15.1255 15.379 15.1165 15.3693C15.2317 15.3359 15.2155 15.1961 15.2362 15.0976C15.391 14.3669 15.2713 13.0199 15.2812 12.2189C15.8293 12.3455 15.5296 12.2462 15.6745 11.9472C15.7024 11.89 15.769 11.9032 15.7726 11.8988C15.8986 12.0369 15.9571 12.0404 16.0345 11.8672C16.0588 11.8813 16.228 11.8892 16.2469 11.8988C16.3783 11.9665 16.3981 12.1336 16.669 12.0589V12.0597Z" /><path fill="%23FDB7A6" d="M16.6888 1.4409C16.6888 1.47255 16.6888 1.50509 16.6888 1.53674C16.1308 1.40837 16.4422 2.41425 16.3612 2.67275C16.3351 2.75628 16.1515 2.75804 16.2298 3.02446C16.2415 3.0649 16.3567 3.08513 16.3612 3.1203C16.363 3.137 16.2235 3.30055 16.1974 3.40782C16.1713 3.51509 16.1794 3.79206 16.165 3.8879C16.1596 3.92395 16.0705 3.93802 16.0669 3.95208C16.0435 4.04001 16.255 4.30555 16.2307 4.36798C16.2028 4.43832 16.0903 4.4093 16.0831 4.41634C16.0471 4.45239 16.0876 4.51218 16.0507 4.54471C16.0111 4.579 15.895 4.56493 15.8707 4.59307C15.8572 4.6089 16.0732 4.85597 15.8212 4.92895C15.7357 4.83575 15.841 4.67132 15.8374 4.65725C15.8041 4.50778 15.6223 4.14376 15.6079 3.95384C15.6079 3.94417 15.7087 3.83954 15.706 3.79382C15.6979 3.61445 15.6079 3.41221 15.6079 3.34627C15.6079 3.32253 15.6736 3.33836 15.6736 3.31462C15.6736 3.15547 15.9508 1.58158 16.0012 1.49102C16.2028 1.12788 16.4206 1.52795 16.6888 1.44266V1.4409Z" /><path fill="%23FCF600" d="M16.757 9.39062C16.7552 9.41964 16.748 9.44866 16.7462 9.47767C16.6985 10.2382 16.6868 11.0067 16.6697 11.7708L16.2962 11.755C16.2026 11.6433 16.6805 11.2617 16.1 11.6433C15.8354 11.4305 15.9443 11.1113 15.9686 10.8115C16.1468 10.7763 16.4546 10.9012 16.3943 10.604C16.3718 10.5697 15.9074 10.4765 15.8867 10.4598C15.8651 10.4422 15.8498 10.1925 15.6743 10.2356C15.6842 10.1653 15.8345 9.78278 15.9362 9.69133C16.01 9.62539 15.9524 9.62363 16.1324 9.62715C16.262 9.62978 16.2692 9.67287 16.3781 9.69133C16.3853 9.34842 16.4519 9.40997 16.757 9.39062Z" /><path fill="%23F9AB01" d="M10.763 12.055C10.272 11.775 9.772 11.519 9.256 11.287L9.305 10.941 9.927 11.037C10.199 11.298 10.456 11.513 10.795 11.693L10.763 12.055ZM16.663 14.747C16.658 14.975 16.743 15.421 16.643 15.61 16.452 15.682 16.333 15.482 16.181 15.515 15.98 15.558 16.105 15.649 16.099 15.659 16.003 15.836 15.872 15.471 15.739 15.515 16.092 14.907 16.097 15.433 16.345 15.259 16.546 15.117 16.239 14.636 16.663 14.747Z" /><path fill="%23FCF600" d="M16.6427 15.6113C16.4465 15.9841 15.9821 16.094 15.6077 15.9252C15.5906 15.7519 15.6563 15.6579 15.7391 15.5154C15.8714 15.4715 16.0028 15.8372 16.0991 15.6596C16.1045 15.6499 15.9794 15.5585 16.181 15.5154C16.3331 15.4829 16.4519 15.6834 16.6427 15.6113Z" /><path fill="%23FDBB00" d="M16.669 11.7707C16.6672 11.8656 16.6708 11.9615 16.669 12.0582C16.3981 12.1338 16.3783 11.9659 16.2469 11.8982C16.2271 11.8885 16.0579 11.8806 16.0345 11.8665C16.0237 11.8604 15.9868 11.7645 15.9688 11.7381C15.9832 11.7267 16.0849 11.652 16.1002 11.6423C16.6807 11.2607 16.2028 11.6423 16.2964 11.754L16.6699 11.7698L16.669 11.7707Z" /><path fill="%23F6A759" d="M15.543 6.78125C15.5799 7.39586 15.7707 6.7918 16.0668 6.84544C16.0677 7.02744 16.137 7.22 16.1325 7.40553C16.1325 7.41608 16.0353 7.43806 16.0344 7.46972C16.0254 7.88473 15.9831 8.57935 16.0344 8.95743C15.9885 9.11834 15.903 9.29067 15.8706 9.45334C15.8652 9.47972 15.8094 9.73734 15.9363 9.69338C15.8346 9.78394 15.6843 10.1664 15.6744 10.2376C15.6195 10.6245 15.7122 11.0729 15.642 11.4695C16.173 11.4616 15.4107 10.9244 15.9696 10.8136C15.9453 11.1134 15.8364 11.4326 16.101 11.6453C16.0866 11.655 15.984 11.7298 15.9696 11.7412C15.8886 11.8063 15.8598 11.7975 15.7734 11.9012C15.7698 11.9056 15.7032 11.8915 15.6753 11.9496C15.5304 12.2494 15.831 12.3479 15.282 12.2213C15.3009 10.7388 15.3351 9.25638 15.3405 7.77482C15.3414 7.44422 15.3468 7.11361 15.3468 6.78301H15.543V6.78125Z" /><path fill="%23E1DDCE" d="M15.2352 1.75503C15.2379 1.79811 15.2505 1.8412 15.2523 1.8834C14.9058 1.81746 15.1092 2.12608 15.0516 2.28523C15.0057 2.41184 13.9122 2.74772 13.725 2.84532C13.4415 2.99216 13.3299 3.22956 13.1355 3.35705C12.0357 4.07805 10.8927 4.83773 9.72986 5.46817C9.67406 5.49894 9.47786 5.61676 9.41846 5.54818C10.0089 5.1657 10.6236 4.81048 11.2032 4.41217C12.1788 3.74129 13.8834 2.21576 14.8707 1.82097C14.9895 1.77349 15.1011 1.73744 15.2352 1.75415V1.75503Z" /><path fill="%23FCF600" d="M15.2354 1.75847C15.1013 1.74177 14.9906 1.77782 14.8709 1.8253C13.8836 2.22009 12.179 3.74562 11.2034 4.4165C10.6238 4.8148 10.0091 5.17003 9.41865 5.55251C9.47805 5.62109 9.67335 5.50327 9.73005 5.47249C10.8929 4.84118 12.0359 4.0815 13.1357 3.36138C13.3301 3.23388 13.4417 2.99648 13.7252 2.84964C13.9124 2.75292 15.0059 2.41705 15.0518 2.28955C15.1094 2.12953 14.9069 1.82178 15.2525 1.88773C15.3362 3.52756 15.3488 5.13574 15.3461 6.78436C15.3461 7.11496 15.3407 7.44557 15.3398 7.77617C15.0356 7.68912 15.1166 8.01973 15.0518 8.20789C15.0428 8.23339 14.9393 8.34506 14.9204 8.39957C14.8997 8.46288 14.9429 8.63961 14.9204 8.68709C14.9105 8.70731 14.69 8.7759 14.5928 8.87877C14.5622 8.91218 14.0906 9.5136 14.069 9.55053C13.9862 9.68769 13.9133 10.0939 13.889 10.1106C13.8197 10.1572 12.9089 10.0596 12.7433 10.1106C12.6875 10.1282 12.7181 10.2856 12.6776 10.3023C12.647 10.3146 12.0962 10.3102 12.0224 10.3023C11.9198 10.2909 11.8091 10.1933 11.7281 10.1739C11.612 10.1476 11.2871 10.166 11.171 10.0781C11.1107 10.0324 11.1089 9.79409 11.0072 9.75804C10.9613 9.74133 10.0991 9.74397 10.0244 9.75804C9.80655 9.80024 9.64275 10.0825 9.53295 10.1097C9.34305 10.1581 8.95695 10.0174 8.82915 10.2856C8.77335 10.4025 8.83635 10.6092 8.82915 10.6373C8.81205 10.7094 8.60235 10.8483 8.69775 11.0567C8.37375 10.9239 7.88865 10.7103 7.57275 10.6127C7.60245 10.5617 7.61685 10.5195 7.63215 10.4606C7.82565 9.70176 7.74645 7.42095 7.73205 6.53025C7.73115 6.45551 7.73745 6.3799 7.73565 6.30428C7.72935 6.07127 7.76265 5.81629 7.72305 5.5868C7.79235 5.57361 7.85895 5.54899 7.92375 5.52261C10.9649 4.29604 12.2951 2.96483 14.8979 1.27312C14.9942 1.21069 15.0977 1.12277 15.2093 1.09375C15.2084 1.31708 15.2237 1.53514 15.2354 1.7576V1.75847Z" /><path fill="%23FBE77E" d="M8.94415 5.78994C9.03775 5.82599 8.79115 5.97547 8.78035 5.98162C8.73895 6.00712 8.23135 6.27266 8.24035 6.18913L8.94415 5.78906V5.78994Z" /><path fill="%23FDBB00" d="M15.34 7.77431C15.3346 9.25675 15.3004 10.7392 15.2815 12.2208C15.2716 13.0218 15.3913 14.3688 15.2365 15.0995C15.2158 15.1979 15.2329 15.3378 15.1168 15.3712C15.1258 15.3817 15.1321 15.3949 15.1411 15.4046C15.1321 15.394 15.1258 15.3808 15.1168 15.3712C13.9711 14.1156 12.2548 12.9066 10.7626 12.0546L10.795 11.6932C10.4548 11.5129 10.1992 11.2975 9.92742 11.0373L9.30552 10.9414L9.25602 11.287C9.07332 11.2043 8.88522 11.1322 8.69892 11.0566C8.60352 10.8491 8.81232 10.7093 8.83032 10.6372C8.83752 10.6082 8.77452 10.4024 8.83032 10.2855C8.95812 10.0173 9.34422 10.1571 9.53412 10.1096C9.64392 10.0815 9.80772 9.80014 10.0255 9.75793C10.0993 9.74386 10.9615 9.74123 11.0083 9.75793C11.11 9.79398 11.1118 10.0323 11.1721 10.078C11.2873 10.1659 11.6122 10.1474 11.7292 10.1738C11.8102 10.1923 11.9209 10.2899 12.0235 10.3022C12.0964 10.3101 12.6481 10.3145 12.6787 10.3022C12.7192 10.2855 12.6877 10.1272 12.7444 10.1105C12.9109 10.0595 13.8208 10.1571 13.8901 10.1105C13.9144 10.0938 13.9873 9.68847 14.0701 9.55042C14.0926 9.5135 14.5633 8.9112 14.5939 8.87867C14.6911 8.77579 14.9116 8.70721 14.9215 8.68699C14.944 8.63863 14.9008 8.46189 14.9215 8.39947C14.9395 8.34407 15.0439 8.23241 15.0529 8.20779C15.1177 8.01874 15.0367 7.68902 15.3409 7.77607L15.34 7.77431Z" /><path fill="%23F3CE16" d="M14.3147 13.2424C14.4758 13.2327 14.4749 13.5756 14.3804 13.5624L14.3147 13.2424Z" /><path fill="%23FBE43C" d="M16.7438 5.73295C16.7834 6.3924 16.9553 7.15912 16.9481 7.80011C16.9418 8.318 16.7906 8.87281 16.7573 9.39246C16.4522 9.4118 16.3856 9.35025 16.3784 9.69317C16.2695 9.6747 16.2632 9.63162 16.1327 9.62898C16.175 9.5604 16.175 9.46544 16.1651 9.38894C16.1507 9.28167 16.0436 9.0258 16.0337 8.95722C15.9824 8.57914 16.0247 7.88452 16.0337 7.4695C16.0337 7.43785 16.1318 7.41587 16.1318 7.40532C16.1363 7.21979 16.0679 7.02811 16.0661 6.84523C16.0643 6.61222 16.013 6.38713 16.0661 6.14181C16.148 5.76197 16.3307 5.63975 16.7429 5.73295H16.7438Z" /><path fill="%23F29F6C" d="M16.0669 6.14176C16.0138 6.38795 16.0651 6.61216 16.0669 6.84517C15.7708 6.79153 15.58 7.39647 15.5431 6.78098C15.5152 6.32025 15.7006 6.54534 15.805 6.34926C15.8167 6.32728 15.8347 5.96854 15.8707 5.93337C16.0606 5.84984 15.8734 6.13296 16.0669 6.14088V6.14176Z" /><path fill="%23D17504" d="M16.0336 11.8667C15.9562 12.0407 15.8977 12.0364 15.7717 11.8983C15.8581 11.7946 15.8869 11.8033 15.9679 11.7383C15.985 11.7647 16.0219 11.8596 16.0336 11.8667Z" /><path fill="%23E1DDCE" d="M15.969 10.812C15.41 10.922 16.172 11.46 15.641 11.468 15.711 11.071 15.619 10.623 15.674 10.236 15.849 10.192 15.864 10.442 15.886 10.46 15.907 10.477 16.371 10.569 16.394 10.604 16.454 10.901 16.146 10.776 15.968 10.812H15.969ZM16.132 9.629C15.952 9.625 16.009 9.627 15.936 9.693 15.809 9.737 15.865 9.479 15.87 9.453 15.902 9.29 15.988 9.118 16.034 8.957 16.043 9.026 16.151 9.281 16.165 9.389 16.175 9.465 16.175 9.56 16.133 9.629H16.132Z" /></g><defs><clipPath id="a"><rect width="18" height="16" fill="%23fff" /></clipPath></defs></svg>');
}
.pageTitle__icon_type_home {
  background-image: url('data:image/svg+xml;utf8,<svg width="15" height="16" viewBox="0 0 15 16" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_1988_16566)"><path d="M10.9541 10.1523H4.14624V15.3596H10.9541V10.1523Z" fill="%23FE0000"/><path d="M9.27682 11.989C9.1831 11.9998 9.08939 12.054 8.98694 12.0656C8.96867 12.0679 8.9504 12.0695 8.93214 12.071C8.58666 12.1105 8.23801 12.1368 7.89015 12.177C7.6511 12.2049 7.40648 12.2498 7.16664 12.2776C7.34057 12.0416 6.97126 11.7461 6.78622 11.6718C6.60037 11.5975 6.52334 11.7391 6.48125 11.7368C6.24696 11.7205 6.33511 11.3809 5.8443 11.9364L6.3089 12.3581C6.18898 12.372 6.07303 12.4076 5.95549 12.4208C5.93484 12.4231 5.91498 12.4316 5.89433 12.4339C5.23356 12.5105 4.57358 12.6668 3.90566 12.697C3.88501 12.6978 3.86516 12.7094 3.84451 12.7101C3.67694 12.7171 3.54828 12.7063 3.38626 12.7024C2.7517 12.6885 2.90736 12.1956 2.42766 11.743C2.63495 11.5503 2.13699 11.7971 2.42766 11.743C2.30456 11.2517 2.67466 11.0667 2.06869 10.7565C2.05836 10.7681 2.05598 10.7866 2.04565 10.799C2.05598 10.7866 2.05836 10.7673 2.06869 10.7565C2.21958 10.5909 2.47293 10.4988 2.68737 10.4508C4.08436 10.1352 6.32479 10.1978 7.84329 10.0617C7.86633 10.0593 7.88936 10.057 7.91159 10.0547L8.43735 10.5917L8.33808 10.6358C8.42385 10.8864 8.65417 10.7394 8.70261 10.8013C8.73994 10.8493 8.67561 10.9422 8.68594 10.9716C8.74153 11.1209 8.99885 11.0087 8.6224 11.3491C8.92102 11.3762 8.98217 11.784 9.27682 11.9882V11.989Z" fill="%23F86866"/><path d="M9.86608 11.9285C9.66991 11.9502 9.47295 11.9657 9.27679 11.9889C8.98214 11.7846 8.92099 11.3769 8.62237 11.3498C8.99882 11.0086 8.7415 11.1215 8.6859 10.9722C8.67479 10.9428 8.73991 10.8499 8.70258 10.802C8.65493 10.7401 8.42382 10.8871 8.33805 10.6364L8.43732 10.5923L7.91156 10.0553C7.88853 10.0576 7.8655 10.06 7.84326 10.0623C7.86629 10.06 7.88933 10.0576 7.91156 10.0553C8.38252 10.0128 8.84236 9.92069 9.31332 9.87891C9.13224 10.347 8.62872 10.477 9.26487 10.8801C9.31094 10.9095 9.32762 10.7261 9.47057 10.8592C9.48169 10.8701 9.51902 11.1285 9.53728 11.1563C9.58096 11.2237 9.76919 11.3041 9.80255 11.366C9.82319 11.4039 9.6993 11.8256 9.86608 11.9301V11.9285Z" fill="%23FE8D83"/><path d="M5.20729 15.2545H5.83153L6.42797 15.0565L6.88622 14.5713C7.38418 14.6595 7.57479 14.5713 7.57479 14.5713C7.57479 14.5713 7.71377 14.9017 8.02351 14.9133L8.33404 14.9242L8.81056 14.9133L9.25134 14.5713L9.67147 14.3555H10.3346V15.4271L4.14624 15.3605L5.20729 15.2545Z" fill="%23FE8D83"/><path d="M12.0597 7.91093C12.2964 7.97515 12.3655 8.19876 12.4775 8.30166C12.5378 8.3566 12.7165 8.40921 12.7785 8.46415C12.8063 8.48968 12.6506 8.64907 12.8952 8.59413C13.0159 10.301 13.0914 12.7088 12.9953 14.4072C12.9858 14.5704 12.9143 15.2753 12.8118 15.3349C12.4052 15.5732 10.3427 15.2552 9.77005 15.3674C9.70811 15.3419 9.69143 15.1848 9.68666 15.1229C9.58262 13.9097 9.9281 12.404 9.82009 11.1823C9.81056 11.0739 9.72399 10.5014 9.68666 10.4333C9.66601 10.3962 9.50956 10.2638 9.46905 10.2546C8.48187 10.3025 7.48038 10.1849 6.49399 10.2221C6.33594 10.2283 5.46233 10.2662 5.35749 10.2871C4.98025 10.3629 5.23916 10.9997 5.24075 11.313C5.24392 12.0767 5.26934 12.8381 5.2741 13.5924C5.27807 14.1511 5.22248 14.6966 5.20739 15.2529L5.124 15.3341C4.40843 15.3457 3.68333 15.3983 2.96775 15.3991C2.87483 15.2606 2.58892 15.362 2.44994 15.3341C2.33955 15.3117 2.18785 15.1391 2.06555 15.1384C2.02107 14.9372 2.1672 14.5596 1.95039 14.5124C1.93768 14.3979 1.92339 14.2834 1.91306 14.1689L2.03219 14.1457L1.89877 14.0319C1.89718 14.0103 1.89321 13.9886 1.89162 13.9669C1.84635 13.2118 2.01631 12.4814 1.96548 11.7363C1.93848 11.3378 1.78758 10.937 1.73119 10.6128C1.71451 10.5161 1.68672 10.318 1.6883 10.2213C1.69227 10.0155 1.7574 9.73462 1.78837 9.52029L1.61206 9.43286L1.74866 8.01074C2.15291 8.02389 2.54762 7.93878 2.95108 7.94265C3.75878 7.95116 4.56647 8.04324 5.37417 8.04014C5.69662 8.0386 6.02065 8.04324 6.34389 8.04014C8.18086 8.02467 10.1616 7.91557 12.0597 7.91016V7.91093Z" fill="%23FDBB00"/><path d="M12.8953 8.59488C12.6499 8.64904 12.8064 8.48965 12.7786 8.46489C12.7166 8.40918 12.5379 8.35734 12.4776 8.30241C12.3656 8.1995 12.2965 7.97589 12.0598 7.91167C12.3155 7.91167 12.5872 7.82037 12.8453 7.91167C12.9779 7.9844 12.8842 8.43858 12.8953 8.59565V8.59488Z" fill="%23FDF500"/><path d="M9.55258 2.13189C9.50096 2.2642 9.23729 2.15201 9.28494 2.37639C9.31909 2.53655 9.46284 2.52881 9.60262 2.55512C9.41439 2.65725 9.66695 2.63481 9.7694 2.7176C9.86629 2.79575 9.96795 2.9915 10.1204 3.05959C9.95762 3.32885 10.3746 3.40468 10.5048 3.46658C10.5509 3.48824 10.6343 3.61668 10.6716 3.62906C10.7193 3.64453 11.1036 3.56252 11.1179 3.44878C11.4388 3.75286 11.7525 4.0639 12.0726 4.36797L11.6238 4.42678C11.8843 4.62408 11.816 4.92738 11.8915 5.14325C11.9368 5.27401 12.6166 5.10766 12.839 5.10611L12.8612 5.127C12.8612 5.127 12.8652 5.13087 12.8668 5.13242C12.9216 5.18426 12.9732 5.23765 13.028 5.28949C12.4713 5.3715 12.9216 5.63689 12.9279 5.69647C12.9414 5.83342 12.8255 5.73516 12.8279 5.82646C12.8279 5.8458 13.0796 6.07792 13.0955 6.1197C13.0979 6.12667 12.9875 6.20094 13.0288 6.24969C13.0574 6.28373 13.3226 6.23963 13.3965 6.34718C13.0764 6.7031 13.4243 6.58085 13.4299 6.67292C13.4314 6.69691 13.1725 6.75726 13.4465 6.91742C13.5267 6.96462 13.6578 6.93676 13.6808 6.94992C13.8119 7.02497 13.6443 7.38398 13.6641 7.45439C13.7205 7.65633 13.9961 7.55962 14.0152 7.56813C14.0326 7.57587 14.1422 7.84745 14.2661 7.84512C14.0692 7.97356 13.8246 7.84977 13.6641 7.74763C13.6578 7.74377 13.6554 7.62306 13.6141 7.6014C13.5387 7.56117 13.4251 7.68264 13.4132 7.5689L13.3631 7.99213C13.2742 7.92404 13.1908 7.87917 13.0955 7.79638C12.5173 7.29655 12.0543 6.68143 11.5246 6.13595C11.7819 5.42799 10.9512 5.0388 10.5723 4.54052L10.3349 4.86626C9.92109 4.44535 9.48587 4.09407 9.06177 3.69405C8.70994 3.36212 8.0039 2.38877 7.47973 2.42359C6.9913 2.45686 6.20584 3.3304 5.8556 3.65537C5.84686 3.6631 5.83971 3.67239 5.83098 3.68013C5.57127 3.9223 5.2933 4.16216 5.03996 4.40898L4.67224 4.39273C4.78422 4.20626 4.66351 4.06544 4.83902 3.90451C4.25132 4.01593 4.569 3.77529 4.43795 3.64376C4.38395 3.5896 4.25449 3.60353 4.23702 3.57877C4.2259 3.56329 4.35377 3.35671 4.23702 3.23678C4.97324 2.54738 5.68961 1.82317 6.4433 1.15234C6.5124 1.39916 6.49492 1.57944 6.42662 1.83632C6.61247 1.64676 6.89917 1.93691 6.92776 1.93381C7.02704 1.92453 7.20017 1.57867 7.11122 1.46184C7.20335 1.30322 7.20414 1.52296 7.26132 1.54308C7.2788 1.54927 7.52182 1.42083 7.62904 1.47808C7.65445 1.49201 7.67192 1.65063 7.67907 1.65682C7.88318 1.8487 7.91415 1.61658 7.93004 1.60807C8.03964 1.54849 8.14368 1.7574 8.29775 1.70556C8.31364 1.70015 8.37002 1.52064 8.49868 1.57558C8.39385 1.6514 8.44071 1.71098 8.46533 1.83632L8.63211 1.67384C8.70517 2.2023 8.79333 1.70401 8.83304 1.70634C8.9617 1.97714 9.23093 2.22087 9.55179 2.12957L9.55258 2.13189Z" fill="%23FE0000"/><path d="M4.38562 5.09871C4.34035 5.14359 4.31414 5.21245 4.2649 5.2612C4.25616 5.26971 4.24663 5.27822 4.2379 5.2875C4.07112 5.45385 3.89719 5.61479 3.72961 5.78269C3.61445 5.89798 3.50406 6.02487 3.3889 6.14093C3.37699 5.94208 3.04898 5.93976 2.91794 5.97844C2.7869 6.01713 2.80755 6.12545 2.78452 6.14093C2.65268 6.23068 2.54864 6.01249 2.53355 6.51541L2.96798 6.54482C2.91 6.60285 2.86394 6.67016 2.80755 6.72742C2.79802 6.73748 2.79087 6.74986 2.78055 6.75991C2.46287 7.07869 2.18013 7.43925 1.83783 7.73714C1.82751 7.74642 1.82195 7.76035 1.81083 7.76963C1.72426 7.84391 1.6512 7.89188 1.56384 7.95842C1.21995 8.21763 0.974542 8.42731 0.518672 8.38862C0.544087 8.19906 0.497229 8.00253 0.628272 7.85165C0.344743 7.64197 0.459902 7.38741 6.15998e-05 7.47716C6.15998e-05 7.488 0.00641518 7.49883 0.00641518 7.50966C0.00641518 7.49883 -0.000732597 7.48722 6.15998e-05 7.47716C0.00720937 7.32551 0.101719 7.16999 0.193846 7.05393C0.797436 6.298 2.01891 5.38886 2.76784 4.67703C2.77896 4.6662 2.79008 4.65536 2.80119 4.64453L3.31901 4.70952L3.28566 4.77452C3.44291 4.87201 3.50009 4.69637 3.5533 4.70952C3.5946 4.71958 3.60095 4.79618 3.62001 4.80701C3.71611 4.8635 3.80268 4.69482 3.75344 5.03527C3.92419 4.92462 4.13783 5.11573 4.38482 5.10026L4.38562 5.09871Z" fill="%23FDB7A6"/><path d="M11.0964 1.20669C11.0964 1.37459 11.1194 1.39084 10.9574 1.46666C11.171 1.44191 11.0717 1.65313 11.1408 1.67867C11.2036 1.70111 11.3179 1.65391 11.4085 1.71116C11.4498 1.73747 11.5149 1.99512 11.6595 2.02066C11.395 2.28527 11.6158 2.29224 11.7262 2.50888C11.7365 2.529 11.7325 2.68529 11.7595 2.73713C11.7786 2.77427 11.8747 2.73249 11.8929 2.76963C11.97 2.92592 11.8111 3.2594 12.1606 3.06287C12.0041 3.32285 12.4814 3.65942 12.5617 3.5186C12.6093 3.43504 12.5196 2.56691 12.5617 2.50888C12.5903 2.46942 12.8039 2.50501 12.8658 2.49263C12.8492 3.34838 12.8928 4.20954 12.8627 5.06452L12.815 5.08463C12.5664 4.84865 12.3226 4.60802 12.0748 4.37203C11.7548 4.06718 11.4411 3.75614 11.1202 3.45283C11.1123 3.4451 11.1043 3.43736 11.0964 3.42962C10.9121 3.25476 10.731 3.07603 10.5476 2.90116C10.5396 2.89343 10.5317 2.88569 10.5238 2.87795C10.6532 2.81992 10.6063 2.71315 10.6191 2.62339C10.6548 2.36574 10.6588 1.69801 10.5913 1.46125C10.5285 1.24151 10.4531 1.2949 10.3816 1.18735C10.4443 1.13319 10.542 1.17574 10.6246 1.18116C10.7819 1.19276 10.9399 1.19818 11.098 1.20746L11.0964 1.20669Z" fill="%23DBD77C"/><path d="M13.2703 0.70031C13.1599 0.704179 12.5603 0.688704 12.5119 0.732807C12.4634 0.77691 12.5158 1.19008 12.4928 1.2837L11.9138 1.25121C11.6414 1.23573 11.369 1.22103 11.0966 1.20556C10.9386 1.19627 10.7805 1.19008 10.6233 1.17925C10.5407 1.17306 10.443 1.13128 10.3802 1.18544C10.2365 0.968795 10.1269 0.947904 10.0951 0.635317C10.0824 0.514615 10.1118 0.270889 10.1952 0.179589C10.2492 0.120785 10.3167 0.0913833 10.389 0.0619815C10.5049 0.0155575 12.7525 -0.023129 12.8963 0.0163313C13.2592 0.115369 13.3354 0.341299 13.2703 0.70031Z" fill="%23DBD77C"/><path d="M13.0629 5.32547C13.3972 5.64115 13.7649 5.92279 14.0993 6.23692C13.6895 6.25549 13.5052 6.34757 13.6815 6.75764C13.9595 6.67253 14.5567 7.09112 14.467 6.58201C14.6004 6.71664 14.7672 6.82805 14.8744 6.98589C14.8816 6.99673 14.8879 7.00756 14.8943 7.01839C14.8871 7.00756 14.8816 6.99595 14.8744 6.98589C14.8228 7.05785 14.4988 7.00679 14.4837 7.01839C14.4567 7.03928 14.4479 7.17623 14.417 7.21415C14.4058 7.2273 14.2947 7.19248 14.2669 7.23039C14.2494 7.25438 14.4043 7.50816 14.4003 7.55613C14.3979 7.58167 14.1453 7.67838 14.4003 7.80063C14.2192 8.03507 14.7164 7.94996 14.8284 7.96312C14.4733 8.51479 14.104 8.51943 13.5981 8.19137C13.5148 8.13721 13.4441 8.05751 13.3639 7.99561L13.4139 7.57238C13.425 7.68612 13.5394 7.56465 13.6148 7.60488C13.6561 7.62732 13.6585 7.74725 13.6649 7.75112C13.8253 7.85325 14.0691 7.97704 14.2669 7.8486C14.1438 7.85093 14.0334 7.57935 14.0159 7.57161C13.9968 7.5631 13.7212 7.65981 13.6649 7.45787C13.645 7.38669 13.8126 7.02768 13.6815 6.9534C13.6593 6.94024 13.5283 6.9681 13.4472 6.9209C13.1732 6.76074 13.4322 6.70039 13.4306 6.6764C13.425 6.58433 13.0771 6.70658 13.3972 6.35066C13.3234 6.24311 13.0581 6.28644 13.0295 6.25317C12.9882 6.20443 13.0986 6.13015 13.0962 6.12318C13.0803 6.0814 12.8294 5.85006 12.8286 5.82994C12.8262 5.73864 12.9421 5.8369 12.9286 5.69995C12.9231 5.64037 12.4728 5.37498 13.0287 5.29297C13.0398 5.3038 13.0509 5.31463 13.0621 5.32547H13.0629Z" fill="%23FE8D83"/><path d="M8.14925 0.596641C8.15481 0.813286 7.8951 0.812513 7.99914 1.02684L8.51696 0.929346C8.52808 0.940178 8.5392 0.95101 8.55032 0.961843C8.9085 1.29532 9.23015 1.66671 9.58674 2.00406C9.53115 2.03578 9.5661 2.10155 9.55339 2.13405C9.23253 2.22535 8.9633 1.98162 8.83464 1.71082C8.79572 1.70849 8.70757 2.20678 8.63371 1.67832L8.46693 1.8408C8.44231 1.71546 8.39545 1.65588 8.50028 1.58005C8.37242 1.52589 8.31523 1.70463 8.29935 1.71004C8.14528 1.76188 8.04124 1.55297 7.93164 1.61255C7.91655 1.62106 7.88478 1.85318 7.68067 1.6613C7.67352 1.65511 7.65605 1.49572 7.63064 1.48256C7.52342 1.42608 7.2804 1.55375 7.26292 1.54756C7.20574 1.52667 7.20415 1.3077 7.11282 1.46632C7.20177 1.58315 7.02864 1.92901 6.92936 1.93829C6.90077 1.94139 6.61327 1.65124 6.42822 1.8408C6.49732 1.58392 6.514 1.40364 6.4449 1.15682C6.67284 0.954105 6.92142 0.676336 7.18033 0.525458C7.26769 0.741329 7.15094 0.855842 7.2804 1.07558C7.44559 1.0338 7.41779 1.33246 7.56472 1.25431C7.58696 1.24271 7.57743 0.999756 7.94911 1.07558C7.94911 1.04386 7.28357 1.09492 7.63143 0.798585C7.68544 0.834177 7.5679 1.01059 7.79821 0.961069C7.72594 0.776921 8.05394 0.834177 7.94832 0.492188C8.01662 0.522363 8.08651 0.55486 8.14925 0.596641Z" fill="%23F86866"/><path d="M11.9138 1.24955C11.9154 1.34627 11.9479 1.50411 11.9265 1.59386C11.8884 1.7517 11.6684 1.58071 11.9765 1.93585C12.0464 1.65034 12.3506 1.96989 12.3776 1.96835C12.43 1.96602 12.4634 1.78033 12.4777 1.77259C12.5309 1.74551 12.7826 1.7989 12.866 1.76408C12.8517 2.00394 12.87 2.24921 12.8652 2.48907C12.8033 2.50145 12.5897 2.46586 12.5611 2.50532C12.519 2.56335 12.6087 3.43147 12.5611 3.51504C12.4809 3.65586 12.0035 3.31928 12.16 3.05931C11.8105 3.25584 11.9694 2.92236 11.8924 2.76606C11.8741 2.72892 11.778 2.77071 11.7589 2.73357C11.7319 2.68173 11.7359 2.52543 11.7256 2.50532C11.6152 2.28867 11.3944 2.28093 11.6589 2.01709C11.5143 1.99156 11.4492 1.73391 11.4079 1.7076C11.3174 1.65034 11.203 1.69754 11.1402 1.6751C11.0712 1.65034 11.1704 1.43834 10.9568 1.4631C11.1188 1.38805 11.0958 1.37102 11.0958 1.20312C11.3682 1.2186 11.6406 1.2333 11.913 1.24878L11.9138 1.24955Z" fill="%23BAD26B"/><path d="M5.04065 4.41439C4.92231 4.52968 4.8008 4.69139 4.67294 4.81828C4.53713 4.83298 4.41641 4.55598 4.38861 4.54438C4.34414 4.52581 4.20754 4.56217 4.15432 4.54438C4.13209 4.53741 3.99787 4.41516 3.98754 4.41439C3.85253 4.40356 3.9248 4.50801 3.88747 4.51188C3.37045 4.5645 3.58012 4.28363 3.46973 3.95866C3.72308 3.71803 3.98278 3.48204 4.23851 3.24219C4.35526 3.36212 4.22739 3.5687 4.23851 3.58418C4.25598 3.60894 4.38544 3.59501 4.43944 3.64917C4.57048 3.77993 4.25281 4.02134 4.84051 3.90992C4.6642 4.07085 4.78571 4.21167 4.67373 4.39814L5.04144 4.41439H5.04065Z" fill="%23FE8D83"/><path d="M9.62012 2.03486C9.91953 2.31882 10.2253 2.59272 10.5223 2.8759C10.5303 2.88364 10.5382 2.89138 10.5462 2.89911C10.7304 3.07398 10.9107 3.25348 11.0949 3.42757C11.1029 3.43531 11.1108 3.44305 11.1188 3.45078C11.1037 3.56452 10.7193 3.64654 10.6724 3.63106C10.6351 3.61868 10.5517 3.49025 10.5056 3.46858C10.3754 3.40668 9.95845 3.33086 10.1213 3.0616C9.96877 2.99351 9.86711 2.79776 9.77022 2.71961C9.66697 2.63682 9.41442 2.65926 9.60344 2.55712C9.46366 2.53082 9.31991 2.53855 9.28576 2.37839C9.23811 2.15401 9.50178 2.2662 9.5534 2.13389C9.56611 2.1014 9.53117 2.03563 9.58676 2.00391C9.59788 2.01474 9.609 2.02557 9.62012 2.0364V2.03486Z" fill="%23FE8D83"/><path d="M4.67304 4.81665C4.57853 4.91104 4.48005 5.00234 4.38554 5.09674C4.13854 5.11221 3.92491 4.92033 3.75415 5.03174C3.80339 4.69208 3.71683 4.85998 3.62073 4.80349C3.60167 4.79266 3.59531 4.71606 3.55402 4.706C3.5008 4.69285 3.44362 4.86849 3.28637 4.771L3.31973 4.706L2.80191 4.64101C3.03382 4.4205 3.23793 4.17754 3.47062 3.95703C3.58181 4.28277 3.37135 4.56364 3.88837 4.51025C3.92649 4.50638 3.85343 4.40193 3.98844 4.41276C3.99877 4.41353 4.13378 4.53578 4.15522 4.54275C4.20843 4.56054 4.34424 4.52418 4.38951 4.54275C4.41731 4.55435 4.53803 4.83135 4.67383 4.81665H4.67304Z" fill="%23FE8D83"/><path d="M12.4918 1.28563C12.6165 1.29259 12.7412 1.29956 12.8666 1.30652C12.8627 1.31503 12.8706 1.32896 12.8666 1.33979C12.8436 1.39937 12.8722 1.67017 12.8666 1.76844C12.7833 1.80326 12.5315 1.74987 12.4783 1.77695C12.464 1.78391 12.4298 1.97038 12.3782 1.9727C12.3512 1.97348 12.047 1.65393 11.9771 1.94021C11.669 1.58506 11.889 1.75606 11.9271 1.59822C11.9486 1.50846 11.916 1.35062 11.9144 1.25391L12.4934 1.2864L12.4918 1.28563Z" fill="%232D8700"/><path d="M12.8142 5.08447C12.823 5.09299 12.8317 5.1015 12.8396 5.10923C12.8468 5.1162 12.8539 5.12316 12.8619 5.13012L12.8396 5.10923C12.6173 5.11078 11.9382 5.27791 11.8922 5.14637C11.8175 4.9305 11.885 4.6272 11.6245 4.4299L12.0732 4.37109C12.321 4.60708 12.5648 4.84771 12.8134 5.0837L12.8142 5.08447Z" fill="%23FC7D4B"/><path d="M14.8943 7.01765C15.0532 7.26447 15.0167 7.57628 14.8943 7.83161C14.7458 7.81768 14.5354 7.86411 14.3996 7.79912C14.1446 7.67687 14.3972 7.58092 14.3996 7.55462C14.4035 7.50664 14.2479 7.25286 14.2661 7.22887C14.2947 7.19096 14.4051 7.22578 14.4162 7.21263C14.4472 7.17549 14.456 7.03776 14.483 7.01687C14.498 7.00527 14.8229 7.05633 14.8737 6.98438C14.8808 6.99521 14.8872 7.00604 14.8936 7.01687L14.8943 7.01765Z" fill="%23FDB7A6"/><path d="M7.94816 0.492173C8.05379 0.834162 7.72499 0.776906 7.79806 0.961054C7.56774 1.01057 7.68449 0.834162 7.63128 0.798571C7.28263 1.09491 7.94896 1.04307 7.94896 1.07557C7.57727 0.999741 7.5868 1.24269 7.56457 1.2543C7.41843 1.33167 7.44544 1.03301 7.28024 1.07557C7.15079 0.855827 7.26754 0.741314 7.18018 0.525443C7.4502 0.367602 7.66225 0.366828 7.94896 0.492946L7.94816 0.492173Z" fill="%23FE8D83"/><path d="M14.1319 6.27078C14.2415 6.37446 14.3606 6.47659 14.4663 6.58337C14.556 7.09248 13.9588 6.67389 13.6808 6.759C13.5045 6.34893 13.6887 6.25685 14.0985 6.23828C14.1097 6.24911 14.1208 6.25995 14.1319 6.27078Z" fill="%23FDB7A6"/><path d="M13.2702 0.699992C13.1964 1.10698 13.0177 1.06133 12.8954 1.27797C12.889 1.2888 12.8724 1.29422 12.8676 1.3035C12.7429 1.29654 12.6182 1.28958 12.4927 1.28261C12.515 1.18976 12.4633 0.775818 12.5118 0.731715C12.5602 0.687613 13.1599 0.703087 13.2702 0.699219V0.699992Z" fill="%23E2E4D1"/><path d="M0.518672 8.38701C0.467844 8.38237 0.287561 8.39629 0.277236 8.38701C0.242292 8.35606 0.00720937 7.57614 0.00641518 7.50805C0.00641518 7.49722 -0.000732597 7.48561 6.15998e-05 7.47555C0.459902 7.3858 0.345537 7.64036 0.628272 7.85004C0.497229 8.00092 0.544087 8.19744 0.518672 8.38701Z" fill="%23F5CEC5"/><path d="M8.5504 0.958951C8.53928 0.948119 8.52816 0.937287 8.51705 0.926455L7.99923 1.02394C7.89519 0.809621 8.15489 0.811169 8.14933 0.59375C8.32326 0.710584 8.38044 0.800336 8.51705 0.925681C8.52816 0.936513 8.53928 0.947345 8.5504 0.958178V0.958951Z" fill="%23FE8D83"/><path d="M14.8944 7.83328C14.8746 7.87506 14.8523 7.92458 14.8277 7.96326C14.7157 7.95011 14.2186 8.03522 14.3996 7.80078C14.5355 7.86577 14.7459 7.81935 14.8944 7.83328Z" fill="%23FE0000"/><path d="M10.4818 5.06435C10.8304 5.4195 11.1767 5.78083 11.5246 6.13907C12.0543 6.68455 12.5173 7.29966 13.0955 7.79949C13.1217 8.22427 12.3799 8.12137 12.0424 8.12524C11.9709 8.12601 11.6977 8.02697 11.6747 8.02775C10.8265 8.03626 9.6979 8.05405 8.81714 8.12524C8.75757 8.12988 8.59555 8.14767 8.54949 8.15773C8.07297 8.14458 7.53292 8.21421 7.06196 8.19023C6.92456 8.18327 6.70378 8.10512 6.51079 8.09274C6.15737 8.0703 5.81348 8.04864 5.45768 8.06024C5.39653 8.06256 5.29249 8.02775 5.30758 8.12524C4.50782 8.11518 3.71521 8.13065 2.93452 8.19023C2.9234 8.191 2.91228 8.18946 2.90116 8.19023C2.83445 8.19565 2.76853 8.18791 2.70023 8.19642C2.68911 8.19797 2.67799 8.19487 2.66687 8.19642C2.52233 8.21499 2.37699 8.23588 2.23245 8.25522C2.21498 8.0881 1.91477 8.18713 1.89809 8.17398C1.8425 8.1291 1.90842 7.8258 1.81152 7.767C1.82185 7.75771 1.82741 7.74379 1.83853 7.7345C2.18083 7.43739 2.46277 7.07683 2.78124 6.75728C2.79077 6.74722 2.79792 6.73484 2.80824 6.72478C3.09574 6.73639 3.29905 7.01416 3.41977 6.62729C3.48569 6.67217 3.53493 6.81221 3.6207 6.82304C3.77875 6.84316 4.27036 6.36654 4.42284 6.23656C4.43714 6.22418 4.69049 6.10734 4.72384 6.07407C4.82312 5.97271 4.89618 5.69494 4.92478 5.68334C5.00975 5.64775 5.44656 5.74137 5.47595 5.43884C5.48151 5.3839 5.38462 5.31349 5.40924 5.21059C5.41877 5.16958 5.57125 4.78194 5.5927 4.77111C5.62685 4.75331 5.9755 4.8067 6.04698 4.75718C6.09066 5.13321 6.08907 6.49885 6.31144 6.69228C6.47743 6.83697 7.93796 6.75728 8.24055 6.72865C8.32553 6.72091 8.53043 6.75186 8.57808 6.68068C8.62653 6.36345 8.62812 6.0408 8.66703 5.7228C8.7123 5.3545 8.74645 4.9893 8.81078 4.62333C9.16658 4.54286 8.9998 4.9715 9.10146 4.99858C9.13084 5.00632 9.19359 4.86937 9.20153 4.8686C9.48029 4.83069 9.7932 4.95216 9.83688 5.25933C10.0902 4.9924 10.0982 5.08602 10.4556 5.03108C10.4651 5.04114 10.4722 5.05352 10.4826 5.06358L10.4818 5.06435Z" fill="%23BAD26B"/><path d="M6.04626 4.75808C5.97478 4.8076 5.62613 4.75421 5.59198 4.77201C5.57053 4.78284 5.41805 5.17125 5.40852 5.21149C5.3839 5.31439 5.48079 5.38403 5.47523 5.43974C5.44505 5.74227 5.00824 5.64787 4.92406 5.68424C4.89546 5.69662 4.8224 5.97361 4.72312 6.07497C4.68977 6.10902 4.43721 6.22508 4.42212 6.23746C4.26964 6.36667 3.77724 6.84329 3.61998 6.82395C3.53421 6.81311 3.48497 6.67307 3.41905 6.62819C3.29754 7.01583 3.09423 6.73729 2.80752 6.72568C2.79799 6.73574 2.79084 6.74812 2.78052 6.75818C2.79005 6.74812 2.7972 6.73574 2.80752 6.72568C2.86391 6.66843 2.90997 6.60111 2.96795 6.54308C3.10534 6.40458 3.25306 6.27614 3.38887 6.13919C3.50403 6.02313 3.61442 5.89624 3.72958 5.78095H4.02026C3.94163 5.80649 4.07188 6.02004 4.12033 6.00921C4.16877 5.99837 4.2061 5.69352 4.2204 5.68346C4.29426 5.63317 4.92167 5.82893 4.26408 5.26023C4.25534 5.26874 4.24581 5.27726 4.23708 5.28654C4.24581 5.27803 4.25534 5.26952 4.26408 5.26023C4.31332 5.21071 4.33953 5.14263 4.3848 5.09775C4.47931 5.00335 4.57779 4.91205 4.6723 4.81766C4.80016 4.69077 4.92167 4.52906 5.04001 4.41377C5.29336 4.16618 5.57133 3.92632 5.83103 3.68492C5.94142 3.73057 5.89933 3.80871 5.91521 3.89537C5.96843 4.18243 6.01211 4.46948 6.04546 4.75886L6.04626 4.75808Z" fill="%238C9C78"/><path d="M10.3349 4.86752C10.3746 4.90775 10.4063 4.98048 10.4556 5.03C10.4651 5.04006 10.4723 5.05244 10.4826 5.0625C10.473 5.05244 10.4659 5.04006 10.4556 5.03C10.099 5.08493 10.0902 4.99131 9.83689 5.25825C9.79321 4.95108 9.4803 4.8296 9.20154 4.86752C9.19359 4.86829 9.13085 5.00601 9.10147 4.9975C8.99981 4.97042 9.16659 4.54178 8.81079 4.62224C8.837 4.47291 8.83859 4.23073 8.86956 4.11235C8.89815 4.00171 9.04984 3.85083 9.06255 3.69531C9.48665 4.09533 9.92187 4.44661 10.3356 4.86752H10.3349Z" fill="%23458973"/><path d="M11.5255 6.1384C11.1776 5.78017 10.8313 5.41883 10.4827 5.06369C10.4732 5.05363 10.466 5.04125 10.4557 5.03119C10.4064 4.98167 10.3747 4.90894 10.335 4.86871L10.5724 4.54297C10.9513 5.04125 11.782 5.43121 11.5247 6.1384H11.5255Z" fill="%23FE8D83"/><path d="M3.38953 6.13872C3.25372 6.27567 3.106 6.40411 2.96861 6.54261L2.53418 6.51321C2.54927 6.01028 2.65252 6.22847 2.78515 6.13872C2.80897 6.12247 2.78673 6.01415 2.91857 5.97624C3.05041 5.93832 3.37841 5.93987 3.38953 6.13872Z" fill="%23FDB7A6"/><path d="M3.73022 5.77931C3.8978 5.61141 4.07173 5.45047 4.23851 5.28412C4.24725 5.27561 4.25678 5.2671 4.26551 5.25781C4.92311 5.82651 4.29569 5.63075 4.22183 5.68104C4.20754 5.6911 4.17259 5.99518 4.12176 6.00678C4.07094 6.01839 3.94307 5.80484 4.02169 5.77853H3.73102L3.73022 5.77931Z" fill="%231C5843"/><path d="M8.66714 5.72247C8.62823 6.04047 8.62664 6.36312 8.5782 6.68035C8.53054 6.75076 8.32485 6.72058 8.24066 6.72832C8.19619 6.53179 8.28593 6.19058 8.25019 6.02422C8.24622 6.00565 8.04688 5.84781 8.10962 5.70312C8.23431 5.70777 8.35979 5.7186 8.48448 5.71937C8.54563 5.71937 8.60679 5.70777 8.66794 5.72247H8.66714Z" fill="%23DEE7B1"/><path d="M9.06258 3.69643C9.05067 3.85195 8.89818 4.00282 8.86959 4.11347C8.83862 4.23262 8.83703 4.47403 8.81082 4.62336C8.7457 4.98933 8.71234 5.35531 8.66707 5.72283C8.60592 5.70735 8.54476 5.71973 8.48361 5.71973C8.35892 5.71973 8.23344 5.70813 8.10875 5.70349C8.04601 5.84895 8.24535 6.00679 8.24932 6.02458C8.28506 6.19094 8.19532 6.53215 8.23979 6.72868C7.9372 6.75731 6.47668 6.837 6.31069 6.69231C6.08831 6.49888 6.0899 5.13325 6.04622 4.75721C6.01286 4.46784 5.96918 4.18078 5.91597 3.89373C5.90009 3.80707 5.94218 3.72892 5.83179 3.68327C5.84052 3.67553 5.84767 3.66625 5.85641 3.65851C6.20744 3.33277 6.99211 2.45923 7.48054 2.42673C8.00471 2.39114 8.70996 3.36527 9.06258 3.6972V3.69643Z" fill="%23FDF500"/><path d="M7.56402 4.05498C7.65058 4.04879 7.95476 4.14009 7.88487 4.27395C7.6617 4.31418 7.43774 4.3637 7.21298 4.3962C7.12324 4.04802 7.24872 4.20354 7.39644 4.15247C7.41788 4.14474 7.51398 4.05885 7.56322 4.05498H7.56402Z" fill="%23DBD77C"/></g><defs><clipPath id="clip0_1988_16566"><rect width="15" height="16" fill="white"/></clipPath></defs></svg>');
}
.pageTitle__icon_type_signboard {
  background-image: url('data:image/svg+xml;utf8,<svg width="15" height="16" viewBox="0 0 15 16" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_1988_16632)"><path d="M6.99313 1.73982C7.01655 1.74142 7.03996 1.73822 7.06338 1.73982C7.26496 1.75502 7.63046 1.81582 7.88389 1.80702C8.03612 1.80142 8.29958 1.67102 8.42504 1.67342C8.61407 1.67742 8.70524 1.83662 8.72197 1.84062C9.11173 1.92222 9.69972 1.77822 10.0142 1.77342C10.1673 1.77102 10.1413 1.84062 10.1539 1.84062C10.5294 1.83902 10.9393 1.84142 11.2713 1.84062C12.2482 1.83822 14.514 1.39022 14.8519 2.50862C14.9473 2.82302 14.9247 2.90942 14.9431 3.21022C14.4956 3.18942 14.8335 2.52622 14.2581 2.55902C14.3903 3.08622 13.8675 2.70062 13.6643 2.94302C13.4384 2.86942 13.3849 2.83422 13.1055 2.77582C11.2496 2.38942 9.94562 2.59102 8.11056 2.65742C7.39962 2.68302 6.23618 2.73982 5.56037 2.66702C5.4508 2.65502 5.06522 2.49742 4.84441 2.47502C4.1778 2.40702 1.73384 2.55982 1.1768 2.84222C0.756927 3.05582 0.955154 3.35022 0.915007 3.69422C0.784528 4.80142 0.858131 7.28382 1.26462 8.33822C1.29808 8.42542 1.39594 8.47582 1.43943 8.55502C1.26044 8.50542 1.19102 8.34462 1.05552 8.47182C1.14334 8.56382 1.19436 8.67102 1.33488 8.67262C1.28135 8.80542 1.20273 8.73982 1.26462 8.92302C1.12578 8.94942 1.01119 8.90942 0.9677 8.92302C0.916679 8.93902 0.906643 9.05422 0.845585 9.09022C0.489279 9.12782 0.529426 8.72062 0.426549 8.53902C0.392257 8.47822 0.231668 8.45662 0.216613 8.40542C0.190684 8.31662 0.299416 8.29502 0.28687 8.23822C0.259269 8.11502 0.133809 7.80062 0.00751248 7.72062C-0.00586992 7.56622 0.0142037 7.44222 0.00751248 7.31982C0.231668 7.13902 0.0142037 7.13422 0.00751248 7.06942C0.000821281 7.00462 -0.00419712 6.59022 0.00751248 6.56862C0.0376229 6.51262 0.102862 6.60622 0.129627 6.58542C0.429058 6.34942 0.137991 6.33502 0.112063 6.23422C0.0100217 5.83902 0.321999 5.35502 0.00751248 5.11502C0.0275861 4.70302 0.189848 2.23662 0.357128 2.07422L0.496807 2.19102C0.139664 2.30302 0.409821 2.55742 0.618921 2.67582C0.691688 2.66702 0.863986 2.29822 0.898279 2.27502C0.921698 2.25982 1.23618 2.36782 1.16007 2.00782C1.27382 2.01502 1.38255 2.05742 1.52725 2.04142C1.56573 2.03742 1.58245 1.94382 1.59751 1.94142C1.68282 1.92542 1.74388 1.98222 1.77232 1.97502C1.90781 1.93902 2.1236 1.82062 2.24405 1.74142C3.38155 1.76622 4.92387 1.81182 6.03378 1.74142C6.11491 1.73662 6.24789 1.61342 6.33153 1.60782C6.41768 1.60222 6.53143 1.69422 6.64518 1.70782L6.71544 1.71422C6.80828 1.72462 6.90196 1.73342 6.9948 1.74062L6.99313 1.73982Z" fill="%232B5E49"/><path d="M14.8184 8.65743C14.7648 9.03823 14.6929 9.73342 14.2245 9.86062H11.4652C11.0939 9.85342 10.7326 9.80143 10.3821 9.79343C9.93463 9.78303 9.31235 9.71583 8.87993 9.75983C8.73356 9.77503 8.51861 9.82303 8.47344 9.97103C8.31955 9.93423 8.15478 9.95103 7.99753 9.95023C7.64206 9.94863 6.92778 10.011 6.63085 9.96863C6.48281 9.94703 6.46525 9.87663 6.36571 9.82703C6.3607 9.82463 6.37241 9.74463 6.31302 9.72703C6.03952 9.64623 4.83176 9.74863 4.42694 9.72703C3.7896 9.69343 1.01694 9.53983 0.619645 9.29263C0.588699 9.27343 0.501713 9.20223 0.549388 9.15903C0.645574 9.21743 0.748451 9.14943 0.84631 9.09183C0.907367 9.05583 0.917404 8.94063 0.968424 8.92463C1.01192 8.91103 1.1265 8.95103 1.26535 8.92463C1.36488 8.90543 1.54721 8.81903 1.56227 8.82463C1.5974 8.83743 1.5631 8.92063 1.5974 8.92463C1.671 8.93343 1.69693 8.88303 1.7722 8.89103C1.87759 8.90303 2.20211 8.99263 2.2615 8.99103C2.27404 8.99103 2.29412 8.89423 2.33176 8.89103C2.45387 8.87983 2.56846 8.95023 2.68137 8.92463C2.73072 8.91343 2.77756 8.79183 2.78592 8.79103C2.81352 8.78703 3.14725 9.09503 3.24009 9.05823C3.29947 9.03423 3.21834 8.97663 3.22252 8.97503C3.32289 8.93023 3.49352 9.15583 3.69425 9.19183C4.1158 9.26783 4.80499 9.11503 5.1613 9.12463C5.29763 9.12863 5.44651 9.22383 5.47578 9.22463C5.62968 9.23103 5.66983 9.15583 5.91322 9.17983C5.98264 9.18703 6.05206 9.20623 6.12149 9.21423C6.20847 9.38223 6.36906 9.44143 6.4711 9.27183C6.97211 9.32943 7.2891 9.47183 7.79847 9.39183C8.05608 9.35183 7.86454 9.43983 7.99084 9.49183C8.17318 9.56783 8.42577 9.30943 8.58468 9.29103C8.71349 9.38303 8.91339 9.33903 9.07398 9.35823C9.09322 9.36063 9.15762 9.45423 9.17853 9.45823C9.20111 9.46223 9.39014 9.34863 9.56244 9.35823C9.57415 9.35823 9.59673 9.45663 9.63269 9.45823C9.65695 9.45903 9.83678 9.20543 10.0517 9.29103C10.0726 9.29903 10.0961 9.43103 10.1914 9.45823C10.3453 9.50143 10.4231 9.39103 10.4356 9.39103C10.5787 9.39663 10.8179 9.47903 10.9592 9.45823C11.1181 9.43423 11.2311 9.22783 11.4828 9.32463C11.5514 9.21983 11.3557 9.27583 11.3607 9.24143C11.3624 9.22783 11.6083 9.12623 11.6225 9.12463C11.7806 9.10863 11.8475 9.22223 12.0415 9.19183C12.0557 9.18943 12.2071 9.06863 12.2858 9.05823C12.4547 9.03583 12.7767 9.09343 12.9499 9.02463C13.0193 8.99743 12.9825 8.89263 13.0544 8.85743C13.184 8.79423 13.3915 8.89183 13.491 8.79023C13.501 8.79823 13.5429 8.81903 13.5613 8.82383C13.5052 8.97423 13.5512 8.95583 13.5964 9.02463C13.7001 9.18143 13.9619 9.23103 14.1375 9.19183C14.1936 9.17903 14.1058 9.10703 14.1375 9.09183C14.2454 9.03903 14.3525 9.18623 14.4169 9.15903C14.4428 9.14783 14.7607 8.77503 14.6787 8.70783L14.3993 8.64062L14.8184 8.65743Z" fill="%2381C49F"/><path d="M14.6085 3.88051C14.56 3.98451 14.5181 4.29331 14.5382 4.39811C14.5742 4.58051 14.8711 4.36611 14.4337 4.68211C14.3057 4.77491 14.3525 4.77811 14.3116 4.81571C14.2957 4.83011 14.1886 4.79331 14.1543 4.83251C14.1409 4.84851 14.1986 5.09011 14.1894 5.09971C14.1485 5.14131 14.0447 5.09171 14.0146 5.13331C13.9678 5.19731 13.9996 5.53811 14.1894 5.48451C14.1853 5.48611 14.2037 5.53731 14.1719 5.55171C14.1133 5.57811 13.9695 5.36931 14.0146 5.80211C14.0238 5.82291 14.4228 5.54131 14.2589 5.86931C14.2806 5.90451 14.5048 5.77331 14.4688 5.98611C14.4496 5.99811 14.3626 6.03011 14.3643 6.03651C14.4061 6.17171 14.7222 6.16691 14.8009 6.11971C14.8795 6.07251 14.8494 5.80131 14.9581 5.85251C14.8728 6.78291 14.9497 7.72931 14.8184 8.65891L14.3994 8.64211L14.6787 8.70931C14.7607 8.77651 14.4429 9.14931 14.4169 9.16051C14.3517 9.18771 14.2446 9.04131 14.1376 9.09331C14.1058 9.10851 14.1936 9.18131 14.1376 9.19331C13.9611 9.23251 13.6993 9.18291 13.5964 9.02611C13.6667 8.92931 13.8616 8.78931 13.6316 8.79251C13.7202 8.49571 13.8156 8.12931 13.8415 7.82371C13.9377 7.60611 14.059 7.15971 13.8415 6.98851C13.8892 5.85651 13.8156 4.83731 13.7712 3.71411C13.7662 3.58051 13.8122 3.20291 13.6316 3.14611C13.6357 3.07571 13.6148 3.00771 13.6667 2.94531C13.9134 3.02531 14.3902 3.09651 14.5048 3.29651C14.5441 3.36531 14.3266 3.49731 14.749 3.49731L14.6093 3.88131L14.6085 3.88051Z" fill="%23123A2A"/><path d="M14.9297 3.61059C14.9514 4.13939 15.0275 4.87139 14.9573 5.38179C14.8929 5.85059 14.7883 5.78339 14.468 5.98339C14.5048 5.76979 14.2798 5.90179 14.258 5.86659C14.4211 5.53939 14.0222 5.82099 14.0138 5.79939C13.9686 5.36579 14.1117 5.57459 14.171 5.54899C14.2028 5.53459 14.1844 5.48419 14.1886 5.48179C14.2396 5.46339 14.478 5.46179 14.5031 5.43139C14.3551 5.16899 14.6486 4.94179 14.4328 4.67939C14.8703 4.36339 14.5734 4.57779 14.5374 4.39539C14.5165 4.28979 14.5583 3.98099 14.6076 3.87779C14.611 3.87059 14.6904 3.89459 14.7122 3.86099C14.7256 3.84099 14.7565 3.53139 14.9288 3.61059H14.9297Z" fill="%2381C49F"/><path d="M0.845501 9.09306C0.747642 9.15066 0.644765 9.21866 0.548579 9.16026C0.500904 9.20346 0.587054 9.27466 0.618837 9.29386C1.01613 9.54106 3.78879 9.69466 4.42613 9.72826C4.83095 9.74986 6.03955 9.64746 6.31221 9.72826C6.3716 9.74586 6.35905 9.82586 6.36491 9.82826C5.64058 9.80826 4.90706 9.82986 4.1819 9.79466C3.38063 9.75626 1.15162 9.65546 0.514287 9.32666C0.084377 9.10586 0.046739 8.16746 0.0065918 7.72266C0.132888 7.80346 0.258348 8.11706 0.285949 8.24026C0.298495 8.29706 0.1906 8.31866 0.215692 8.40746C0.230747 8.45866 0.390499 8.48026 0.425628 8.54106C0.528506 8.72266 0.488358 9.13066 0.844665 9.09226L0.845501 9.09306Z" fill="%232E8F6C"/><path d="M14.944 3.21172C14.9524 3.35572 14.9248 3.48532 14.9298 3.61252C14.7575 3.53332 14.7266 3.84292 14.7132 3.86292C14.6914 3.89652 14.612 3.87252 14.6086 3.87972L14.7483 3.49572C14.3259 3.49572 14.5434 3.36372 14.5041 3.29492C14.3887 3.09492 13.9119 3.02372 13.666 2.94372C13.8693 2.70052 14.392 3.08692 14.2599 2.55972C14.8353 2.52772 14.4974 3.19092 14.9449 3.21092L14.944 3.21172Z" fill="%23227F5F"/><path d="M8.46775 10.8895C8.3607 13.0887 8.37241 13.7135 8.27538 15.9135C7.82456 15.9231 7.3704 15.9735 6.91874 15.9783C6.74728 15.4791 7.61463 15.8191 7.7267 15.4775C7.83878 15.1359 7.33527 14.7183 7.65645 15.4439C7.63721 15.5751 7.27338 15.4639 7.27254 15.4439C7.27003 15.3831 7.34447 15.3551 7.3428 15.3439C7.33443 15.2959 7.25247 15.1039 7.23825 15.0095C7.23657 14.9991 7.32356 14.9671 7.3085 14.8759C7.30767 14.8687 7.22068 14.8391 7.20395 14.7759C7.18472 14.7063 7.23992 14.6807 7.23908 14.6759C7.22737 14.6327 7.06428 14.6519 7.0994 14.4423C7.13453 14.2327 7.38796 14.2199 7.37876 13.9415C7.3085 13.8087 7.18974 14.1671 7.11697 14.1583L6.97729 13.9247C6.98231 14.0983 6.82674 14.1007 6.78492 14.1415C6.73473 14.1911 6.86187 14.3591 6.4353 14.2959C6.45621 13.3247 6.49218 13.9351 6.52145 12.9631C7.18221 13.0991 6.8259 12.4991 7.01242 12.2991C7.11697 12.1871 7.20814 12.2487 7.25665 12.3663C7.26418 11.8103 7.82289 12.4343 7.51844 11.9151C7.87642 11.8127 7.5979 11.8015 7.65812 11.5807C7.66314 11.5623 7.87307 11.3639 7.90235 11.2799C7.93162 11.1959 7.853 11.1047 7.86722 11.0463C7.89064 10.9471 7.99603 10.9663 8.0069 10.9463C8.0345 10.8919 7.92995 10.8927 7.93664 10.8791C8.00941 10.7319 8.23189 10.9855 8.46775 10.8895Z" fill="%23F3D01D"/><path d="M7.99665 9.94923C8.05854 10.3956 7.83355 10.586 8.47842 10.5204C8.47089 10.6428 8.4734 10.7668 8.46754 10.8892C8.23168 10.9852 8.00836 10.7316 7.93643 10.8788C7.92974 10.8924 8.03429 10.8916 8.00669 10.946C7.99581 10.9668 7.89043 10.9468 7.86701 11.046C7.85279 11.1052 7.93225 11.1932 7.90214 11.2796C7.87203 11.366 7.66293 11.562 7.65791 11.5804C7.59769 11.8004 7.87621 11.8124 7.51823 11.9148C7.82268 12.434 7.26396 11.81 7.25644 12.366C7.20792 12.2484 7.11592 12.1868 7.01221 12.2988C6.82653 12.4988 7.182 13.0988 6.52124 12.9628C6.55051 11.9644 6.56222 10.9644 6.63081 9.96763C6.92773 10.01 7.64285 9.94843 7.99749 9.94923H7.99665Z" fill="%23FDA501"/><path d="M7.832 0.123858C7.9056 0.239058 7.7609 0.374258 7.76174 0.387858C7.76174 0.395858 7.86378 0.491858 7.86629 0.521458C7.87884 0.651858 7.94909 1.28546 7.90142 1.35666C7.832 1.45986 7.74752 1.33666 7.67475 1.37346C7.55348 1.43506 7.53591 1.53826 7.46482 1.57426C7.27997 1.66866 7.04829 1.56786 6.99309 1.74146C6.90025 1.73346 6.80657 1.72546 6.71373 1.71506L6.64347 1.70866C6.52972 1.69426 6.41514 1.60306 6.32982 1.60866C6.32982 1.59746 6.32982 1.58626 6.32982 1.57506C6.27378 0.731058 6.78733 -0.374542 7.832 0.124658V0.123858Z" fill="%23FDA501"/><path d="M6.91951 15.9773C6.82583 15.9781 6.43523 16.0309 6.39258 15.9621C6.39258 15.4061 6.42269 14.8501 6.4344 14.2941C6.86096 14.3581 6.73383 14.1893 6.78401 14.1397C6.82583 14.0981 6.9814 14.0957 6.97639 13.9229L7.11606 14.1565C7.18883 14.1653 7.30844 13.8069 7.37786 13.9397C7.38706 14.2181 7.13447 14.2245 7.0985 14.4405C7.06253 14.6565 7.22647 14.6317 7.23818 14.6741C7.23985 14.6789 7.18465 14.7045 7.20305 14.7741C7.22061 14.8373 7.30676 14.8677 7.3076 14.8741C7.32266 14.9653 7.23651 14.9973 7.23734 15.0077C7.25156 15.1021 7.33353 15.2941 7.34189 15.3421C7.34356 15.3533 7.26913 15.3813 7.27163 15.4421C7.27247 15.4621 7.63714 15.5733 7.65554 15.4421C7.33436 14.7157 7.83955 15.1261 7.7258 15.4757C7.61205 15.8253 6.74638 15.4773 6.91784 15.9765L6.91951 15.9773Z" fill="%23FDA501"/><path d="M8.42581 1.6762C8.29952 1.6738 8.03689 1.8042 7.88466 1.8098C7.63123 1.8194 7.26489 1.7578 7.06415 1.7426C7.04073 1.741 7.01732 1.7442 6.9939 1.7426C7.0491 1.569 7.27995 1.6698 7.46563 1.5754C7.53672 1.5394 7.55345 1.4362 7.67556 1.3746C7.74917 1.3378 7.83281 1.461 7.90223 1.3578C7.9499 1.2866 7.87964 0.653 7.8671 0.5226C7.86459 0.493 7.76255 0.397 7.76255 0.389C7.76171 0.3754 7.90641 0.2402 7.83281 0.125C8.49105 0.4402 8.42665 1.0746 8.42665 1.6754L8.42581 1.6762Z" fill="%23FFF800"/><path d="M8.47357 9.96957C8.46354 10.0024 8.48528 10.4184 8.47859 10.52C7.83456 10.5864 8.05872 10.396 7.99683 9.94877C8.15407 9.94877 8.31884 9.93277 8.47274 9.96957H8.47357Z" fill="%23F3D01D"/><path d="M14.2246 9.85938C13.8599 9.95777 11.9906 9.86897 11.4653 9.85938H14.2246Z" fill="%232B5E49"/><path d="M14.9581 5.38281C15.0459 5.53641 14.9723 5.69961 14.9581 5.85081C14.8494 5.80041 14.8803 6.07081 14.8009 6.11801C14.7214 6.16521 14.4061 6.16921 14.3643 6.03481C14.3634 6.02841 14.4496 5.99641 14.4688 5.98441C14.7892 5.78521 14.8937 5.85161 14.9581 5.38281Z" fill="%235A9174"/><path d="M1.43933 8.55596C1.51962 8.57836 1.60243 8.60876 1.68356 8.62316C2.15027 8.70316 2.97161 8.70236 3.48265 8.72316C6.69108 8.85756 10.158 8.87596 13.3681 8.79036C13.4275 8.78876 13.3564 8.68316 13.4902 8.79036C13.3906 8.89116 13.1832 8.79436 13.0536 8.85756C12.9817 8.89276 13.0185 8.99676 12.949 9.02476C12.7767 9.09276 12.4547 9.03516 12.2849 9.05836C12.2063 9.06876 12.0541 9.18956 12.0407 9.19196C11.8467 9.22236 11.7797 9.10956 11.6217 9.12476C11.6074 9.12636 11.3615 9.22796 11.3599 9.24156C11.3549 9.27596 11.5506 9.21996 11.482 9.32476C11.2294 9.22796 11.1173 9.43436 10.9584 9.45836C10.8162 9.47996 10.577 9.39676 10.4348 9.39116C10.4223 9.39116 10.3445 9.50156 10.1906 9.45836C10.0952 9.43116 10.0718 9.29996 10.0509 9.29116C9.83511 9.20556 9.65612 9.45916 9.63187 9.45836C9.59674 9.45676 9.57416 9.35836 9.56161 9.35836C9.38931 9.34956 9.19945 9.46316 9.1777 9.45836C9.15596 9.45356 9.09239 9.36076 9.07315 9.35836C8.91256 9.33916 8.71266 9.38396 8.58386 9.29116C8.42494 9.30956 8.17235 9.56796 7.99001 9.49196C7.86372 9.43916 8.05525 9.35116 7.79764 9.39196C7.28827 9.47196 6.97128 9.32956 6.47027 9.27196C6.36823 9.44156 6.20765 9.38236 6.12066 9.21436C6.05124 9.20636 5.98182 9.18716 5.9124 9.17996C5.669 9.15596 5.62886 9.23116 5.47496 9.22476C5.44568 9.22396 5.29681 9.12876 5.16047 9.12476C4.80417 9.11436 4.11414 9.26796 3.69343 9.19196C3.49269 9.15596 3.32206 8.93036 3.2217 8.97516C3.21751 8.97676 3.29865 9.03516 3.23926 9.05836C3.14642 9.09516 2.8127 8.78716 2.7851 8.79116C2.77673 8.79196 2.72906 8.91356 2.68055 8.92476C2.56847 8.95116 2.45304 8.88076 2.33093 8.89116C2.29413 8.89436 2.27322 8.99116 2.26067 8.99116C2.20212 8.99276 1.87676 8.90316 1.77138 8.89116C1.69694 8.88236 1.67101 8.93356 1.59657 8.92476C1.56311 8.92076 1.59657 8.83756 1.56144 8.82476C1.54639 8.81916 1.36405 8.90556 1.26452 8.92476C1.20263 8.74156 1.28041 8.80716 1.33478 8.67436C1.19426 8.67276 1.14324 8.56556 1.05542 8.47356C1.19092 8.34636 1.26117 8.50796 1.43933 8.55676V8.55596Z" fill="%232B5E49"/><path d="M14.4336 4.67969C14.6485 4.94129 14.3558 5.16929 14.5039 5.43169C14.4788 5.46209 14.2404 5.46289 14.1894 5.48209C13.9995 5.53569 13.9677 5.19489 14.0146 5.13089C14.0447 5.08929 14.1484 5.13889 14.1894 5.09729C14.1994 5.08769 14.1409 4.84609 14.1542 4.83009C14.1877 4.79089 14.2956 4.82849 14.3115 4.81329C14.3525 4.77569 14.3056 4.77169 14.4336 4.67969Z" fill="%232E8F6C"/><path d="M13.1064 2.77785C13.0888 2.81545 12.9274 2.94265 12.914 2.94505C12.4623 3.02345 11.6627 2.85705 11.2027 2.87785C10.5654 2.90745 9.85946 3.03065 9.24638 3.11145C9.00048 3.14425 8.66592 3.10105 8.40831 3.14505C8.37485 3.15065 8.40664 3.23945 8.37318 3.24505C8.19754 3.27465 7.9416 3.28105 7.77934 3.31225C7.73752 3.32025 7.72497 3.40985 7.70908 3.41225C7.10687 3.51065 6.34324 3.41225 5.71761 3.54585C5.96686 4.21385 6.48543 4.02585 7.08011 4.04665C7.36866 4.05705 7.68315 4.08825 8.006 4.11385C8.21426 4.12985 8.51286 4.10505 8.70439 4.14745C8.67847 4.23305 8.61406 4.21065 8.54715 4.21465C7.39376 4.27385 6.10486 4.11945 4.93139 4.14745L4.91383 4.01385C4.55418 4.02665 4.19034 3.99625 3.83069 4.01385C3.6609 4.02265 2.86047 4.08345 2.74755 4.11385C2.60453 4.15305 2.48827 4.36425 2.31095 4.36425C2.2524 4.90425 2.22731 4.96985 2.52089 5.40025C2.53929 5.42745 2.55518 5.59384 2.59115 5.63384C2.73333 5.79544 2.8889 5.59785 2.90563 5.93464C2.92069 6.24744 2.77515 6.10344 2.73082 6.20184C2.66809 6.34264 2.85043 6.64985 2.83537 6.66985C2.80025 6.71625 2.64384 6.65704 2.59115 6.70344C2.57442 6.71784 2.54598 7.11864 2.55602 7.13784C2.6062 7.23624 2.81363 7.16184 2.85294 7.18824C2.87385 7.20184 2.90563 7.53624 3.09717 7.58904C5.31363 7.53384 7.52507 7.56104 9.734 7.42184C10.0535 7.78984 9.98911 7.49544 10.153 7.48904C10.3429 7.48104 10.68 7.75304 10.7118 7.75624C10.8138 7.76584 10.8381 7.68904 10.8514 7.68904C10.9468 7.69064 11.1475 7.73784 11.201 7.72264C11.2588 7.70584 11.2972 7.57304 11.3407 7.55544C11.6209 7.44424 11.9622 7.56824 12.1612 7.30504C12.5125 6.29304 12.3185 5.25145 12.1964 4.21465C12.285 4.24665 12.4565 4.24425 12.4757 4.26505C12.4833 4.27225 12.4657 4.41145 12.5109 4.46585C12.5736 4.54025 12.6798 4.55705 12.6857 4.56585C12.7509 4.66985 12.863 5.09704 12.9299 5.26744C12.9332 5.27544 13.0545 5.32024 13.0696 5.36744C13.0846 5.41464 12.996 5.72504 12.9993 5.76824C13.0018 5.79864 13.1022 5.77064 13.1039 5.80184C13.1072 5.86984 13.0336 6.01145 13.0336 6.03545C13.0386 6.39865 12.9759 6.54104 12.9633 6.83704C12.9633 6.84984 13.0319 6.87384 13.0336 6.93704C13.0336 6.94904 12.9625 6.99225 12.9633 7.00425C12.9642 7.01945 13.1089 7.24744 13.103 7.27144C13.0729 7.38824 12.7409 7.29864 12.7191 7.47224C12.9165 7.62104 12.7342 7.72824 12.7542 8.00664C12.7551 8.02104 12.8212 8.05704 12.8245 8.07384C12.8379 8.14104 12.7459 8.12184 12.7542 8.14104C12.7977 8.23544 13.1047 8.34264 13.0512 8.55864C12.5543 8.68024 12.6572 8.48344 12.4222 8.29144C12.4004 8.27384 12.2926 8.33144 12.1955 8.24104C12.1696 8.21704 12.2323 8.17704 12.2307 8.17384C12.1286 8.03704 12.055 7.88904 11.8635 7.85624C11.7807 7.84184 10.9928 7.96424 10.9551 7.98984C10.9359 8.00264 10.9292 8.28664 10.6758 8.25704C10.5595 8.24344 10.7126 8.16264 10.6758 8.15704C10.6189 8.14824 10.2894 8.26584 10.2216 8.25704C10.1029 8.24104 9.61774 7.95144 9.41784 7.92264C9.25391 7.89944 8.82233 8.02424 8.78887 8.02264C8.77967 8.02264 8.62326 7.95624 8.61406 7.95544C7.0684 7.90104 5.6047 8.09624 4.03812 8.02264C3.33303 7.98904 3.56806 7.77064 2.78017 8.12264C2.7417 8.13944 2.61122 8.10584 2.57024 8.12264C2.52507 8.14184 2.51922 8.32824 2.46569 8.35624C2.38706 8.39704 2.14618 8.36904 2.08178 8.38984C2.06087 8.39624 2.12025 8.53704 2.04665 8.55704C1.95548 8.58184 1.70874 8.48984 1.67947 8.62424C1.5975 8.61064 1.51553 8.57944 1.43524 8.55704C1.39175 8.47704 1.29389 8.42664 1.26043 8.34024C0.853942 7.28504 0.781176 4.80265 0.910818 3.69625C0.950965 3.35225 0.752738 3.05785 1.17261 2.84425C1.72965 2.56105 4.17445 2.40905 4.84023 2.47705C5.06104 2.49945 5.44745 2.65705 5.55618 2.66905C6.232 2.74185 7.39543 2.68505 8.10637 2.65945C9.94143 2.59305 11.2454 2.39145 13.1013 2.77785H13.1064Z" fill="%23FDBB00"/><path d="M13.6651 2.94374C13.6133 3.00534 13.6342 3.07414 13.63 3.14454C13.6225 3.27014 13.6668 3.61494 13.7697 3.71254C13.8132 4.83574 13.8868 5.85494 13.8399 6.98694C13.8282 7.25974 13.8625 7.55494 13.8399 7.82214C13.814 8.12774 13.7195 8.49414 13.63 8.79094C13.6292 8.79414 13.5614 8.82054 13.5597 8.82454C13.5422 8.82054 13.5004 8.79894 13.4895 8.79094C13.3557 8.68374 13.4268 8.78934 13.3674 8.79094C10.1564 8.87734 6.69039 8.85894 3.48196 8.72374C2.97092 8.70214 2.15041 8.70294 1.68286 8.62374C1.7113 8.48934 1.95804 8.58214 2.05004 8.55654C2.12281 8.53654 2.06426 8.39574 2.08517 8.38934C2.14957 8.36854 2.39046 8.39734 2.46908 8.35574C2.52261 8.32774 2.52846 8.14134 2.57363 8.12214C2.61377 8.10534 2.74509 8.13894 2.78356 8.12214C3.57145 7.77014 3.33559 7.98854 4.04151 8.02214C5.60809 8.09654 7.07179 7.90054 8.61746 7.95494C8.62666 7.95494 8.78306 8.02134 8.79226 8.02214C8.82572 8.02294 9.2573 7.89894 9.42124 7.92214C9.6203 7.95014 10.1062 8.24054 10.225 8.25654C10.2928 8.26534 10.6223 8.14774 10.6792 8.15654C10.716 8.16214 10.5629 8.24294 10.6792 8.25654C10.9326 8.28614 10.9401 8.00214 10.9585 7.98934C10.9962 7.96374 11.7841 7.84134 11.8669 7.85574C12.0576 7.88854 12.132 8.03654 12.2341 8.17334C12.2366 8.17654 12.173 8.21574 12.1989 8.24054C12.2959 8.33014 12.4038 8.27254 12.4256 8.29094C12.6598 8.48294 12.5569 8.67974 13.0546 8.55814C13.1081 8.34214 12.8011 8.23494 12.7576 8.14054C12.7493 8.12214 12.8404 8.14054 12.8279 8.07334C12.8245 8.05654 12.7593 8.02054 12.7576 8.00614C12.7376 7.72774 12.9199 7.62054 12.7225 7.47174C12.7443 7.29894 13.0771 7.38774 13.1064 7.27094C13.1123 7.24694 12.9676 7.01894 12.9667 7.00374C12.9659 6.99254 13.037 6.94854 13.037 6.93654C13.0353 6.87254 12.9667 6.84934 12.9667 6.83654C12.9793 6.54054 13.042 6.39814 13.037 6.03494C13.037 6.01014 13.1106 5.86854 13.1073 5.80134C13.1056 5.77094 13.0052 5.79894 13.0027 5.76774C12.9994 5.72454 13.088 5.41574 13.073 5.36694C13.0579 5.31814 12.9366 5.27414 12.9333 5.26694C12.8655 5.09654 12.7535 4.66934 12.6891 4.56534C12.6832 4.55654 12.577 4.53974 12.5142 4.46534C12.4691 4.41174 12.4866 4.27254 12.4791 4.26454C12.459 4.24374 12.2884 4.24614 12.1998 4.21414C12.1546 4.19814 12.1011 4.15654 12.0601 4.14694C12.0701 4.03094 11.8426 4.02374 11.7632 4.01334C10.956 3.90454 10.1447 4.02534 9.49233 4.04694C9.08835 4.06054 8.73288 3.97734 8.3749 4.01334C8.26617 4.02454 8.10391 4.05334 8.00772 4.11334C7.68487 4.08854 7.37038 4.05654 7.08182 4.04614C6.48714 4.02454 5.96858 4.21334 5.71933 3.54534C6.34496 3.41174 7.10775 3.50934 7.7108 3.41174C7.72585 3.40934 7.73924 3.31974 7.78106 3.31174C7.94332 3.28134 8.19926 3.27414 8.3749 3.24454C8.40836 3.23894 8.37657 3.15014 8.41003 3.14454C8.66848 3.10054 9.0022 3.14454 9.2481 3.11094C9.86118 3.02934 10.5671 2.90694 11.2044 2.87734C11.6653 2.85574 12.4649 3.02294 12.9157 2.94454C12.9283 2.94214 13.0905 2.81494 13.1081 2.77734C13.3883 2.83574 13.441 2.87094 13.6668 2.94454L13.6651 2.94374Z" fill="%23FFF800"/><path d="M13.5958 9.02742C13.5506 8.95942 13.5054 8.97702 13.5606 8.82662C13.5623 8.82342 13.6292 8.79702 13.6309 8.79302C13.8617 8.78982 13.666 8.93062 13.5958 9.02662V9.02742Z" fill="%23227F5F"/><path d="M13.8399 7.82348C13.8625 7.55628 13.8282 7.26028 13.8399 6.98828C14.0574 7.15948 13.9361 7.60588 13.8399 7.82348Z" fill="%23123A2A"/><path d="M13.7704 3.71253C13.6675 3.61493 13.6232 3.27013 13.6307 3.14453C13.8114 3.20133 13.7654 3.57893 13.7704 3.71253Z" fill="%23719000"/><path d="M12.0584 4.14796C11.4177 3.99836 10.1187 4.01836 9.45632 4.11436C9.43206 4.11756 9.18198 4.14636 9.24638 4.21436L10.3814 4.31436C9.86281 4.28876 9.33002 4.29516 8.80978 4.28076C8.80309 4.20636 8.79222 4.16636 8.70523 4.14716C8.51286 4.10476 8.2151 4.13036 8.00684 4.11356C8.10219 4.05276 8.26445 4.02476 8.37402 4.01356C8.73199 3.97676 9.0883 4.05996 9.49145 4.04716C10.1438 4.02556 10.9551 3.90476 11.7623 4.01356C11.8417 4.02396 12.0692 4.03116 12.0592 4.14716L12.0584 4.14796Z" fill="%23F3D01D"/><path d="M3.60479 4.34846L3.16819 4.51566C2.99338 4.62286 2.90639 5.04366 3.02851 5.18366C3.10378 5.27006 3.49522 5.31166 3.56966 5.41726C3.38899 5.40926 3.10462 5.49646 2.92312 5.31726C2.74162 5.13806 2.81188 4.55326 3.02767 4.41486C3.17822 4.31806 3.44838 4.37406 3.60395 4.34766L3.60479 4.34846Z" fill="%23A92905"/><path d="M4.93225 4.14796C6.10489 4.11996 7.39462 4.27436 8.54801 4.21516C8.61492 4.21196 8.67933 4.23356 8.70526 4.14796C8.79224 4.16716 8.80311 4.20716 8.80981 4.28156C7.35698 4.24076 5.63148 4.16076 4.19873 4.24796C4.37521 4.13436 4.72483 4.15276 4.93225 4.14796Z" fill="%23E0DCBD"/><path d="M4.19865 4.24616C5.6314 4.15896 7.35689 4.23896 8.80972 4.27976C9.32996 4.29416 9.86359 4.28776 10.3813 4.31336C10.6682 4.32696 11.8015 4.34536 11.8835 4.59736C11.8107 4.91816 12.0098 5.29496 11.7262 5.54936C10.4549 5.55176 9.18777 5.53976 7.91895 5.51576C6.49289 5.48856 5.0041 5.48136 3.56967 5.41576C3.49523 5.30936 3.10296 5.26856 3.02852 5.18216C2.90724 5.04216 2.99339 4.62136 3.1682 4.51416L3.6048 4.34696C3.80972 4.31336 3.98536 4.25976 4.19865 4.24696V4.24616Z" fill="%23FE0000"/><path d="M4.53074 4.31612C4.61856 4.31292 5.13211 4.30092 5.15971 4.31612C5.19986 4.33852 5.15386 4.41852 5.19484 4.44972C5.21408 4.46492 5.3203 4.42652 5.35208 4.46652C5.35543 4.47052 5.28099 4.52732 5.28183 4.53372C5.28517 4.54972 5.35459 4.59132 5.35208 4.60092C5.32699 4.68412 5.13127 4.81292 5.09029 4.91852C4.90043 4.79052 4.0105 4.93852 3.95529 4.76812C3.94944 4.75052 3.97453 4.46972 3.92017 4.40092C3.94359 4.35452 4.44877 4.32012 4.53157 4.31772L4.53074 4.31612Z" fill="%23FCA697"/><path d="M9.03716 4.34766C9.0497 4.34766 9.09487 4.41486 9.10741 4.41486C9.26967 4.40926 10.188 4.29166 10.1379 4.53166C10.1287 4.57566 10.0124 4.61406 9.99818 4.63166C9.99567 4.63486 10.0684 4.67086 10.0157 4.71486C9.96305 4.75886 9.78406 4.77406 9.77152 4.78206C9.70042 4.82526 9.7297 4.93086 9.66697 4.94926C9.61093 4.96526 9.54987 4.85086 9.52729 4.84926C9.33073 4.83646 9.10658 4.97406 8.89831 4.91646C8.79878 4.88926 8.70176 4.61886 8.70594 4.59886C8.72434 4.52286 8.97777 4.63006 8.70594 4.39806C8.79878 4.40206 8.96941 4.35006 9.03799 4.34766H9.03716Z" fill="%23F86866"/><path d="M4.93233 4.15016C4.72491 4.15496 4.37529 4.13656 4.19881 4.25016C3.98553 4.26296 3.80988 4.31656 3.60497 4.35016C3.44856 4.37576 3.17924 4.32056 3.02869 4.41736C2.81289 4.55576 2.74515 5.14136 2.92414 5.31976C3.10313 5.49816 3.39001 5.41176 3.57067 5.41976C5.00426 5.48616 6.49306 5.49256 7.91995 5.51976C9.18877 5.54376 10.4568 5.55576 11.7272 5.55336C12.0108 5.29896 11.8117 4.92216 11.8845 4.60136C11.8025 4.34936 10.6692 4.33096 10.3823 4.31736L9.24732 4.21736C9.18292 4.14936 9.433 4.12056 9.45726 4.11736C10.1197 4.02056 11.4195 4.00136 12.0593 4.15096C12.1003 4.16056 12.1538 4.20136 12.199 4.21816C12.3211 5.25576 12.5151 6.29736 12.1638 7.30856C11.9639 7.57256 11.6235 7.44856 11.3433 7.55896C11.2998 7.57656 11.2614 7.70936 11.2037 7.72616C11.1501 7.74136 10.9502 7.69496 10.854 7.69256C10.8407 7.69256 10.8164 7.76856 10.7144 7.75976C10.6826 7.75656 10.3455 7.48456 10.1557 7.49256C9.99088 7.49896 10.0561 7.79336 9.73662 7.42536C7.52768 7.56456 5.31624 7.53736 3.09978 7.59256C2.90824 7.53976 2.87646 7.20536 2.85555 7.19176C2.81624 7.16536 2.60881 7.23976 2.55863 7.14136C2.54859 7.12216 2.57703 6.72136 2.59376 6.70696C2.64729 6.66056 2.80369 6.72056 2.83799 6.67336C2.85221 6.65416 2.67071 6.34616 2.73344 6.20536C2.77693 6.10696 2.9233 6.25096 2.90824 5.93816C2.89152 5.60136 2.73595 5.79896 2.59376 5.63736C2.55863 5.59736 2.5419 5.43016 2.5235 5.40376C2.22992 4.97336 2.25502 4.90776 2.31356 4.36776C2.49088 4.36776 2.60714 4.15656 2.75016 4.11736C2.86224 4.08696 3.66351 4.02536 3.8333 4.01736C4.19212 3.99976 4.55679 4.03016 4.91644 4.01736L4.93401 4.15096L4.93233 4.15016Z" fill="%23FFF800"/><path d="M5.05437 5.65298C5.92255 5.62498 11.3458 5.72258 11.7615 6.05378C12.0341 6.27058 12.0166 7.15938 11.5515 7.28978C10.4726 7.59218 7.96337 7.14818 6.76564 7.08898C5.72432 7.03778 4.36601 7.19138 3.34226 7.05538C2.86635 6.99218 2.99013 6.24098 3.02777 5.88578C3.69104 5.73138 4.3727 5.67378 5.05353 5.65218L5.05437 5.65298Z" fill="%23FE0000"/><path d="M5.26436 5.75247C6.37343 5.72287 7.48918 5.80607 8.60076 5.80287L8.28627 5.83647C8.62418 6.19407 8.36239 6.04927 8.3214 6.13727C8.3122 6.15647 8.25533 6.55007 8.23442 6.55487C8.16165 6.57247 7.76854 6.44607 7.74512 6.45487C7.67737 6.47887 7.70414 6.57567 7.67487 6.58847C7.6481 6.60047 7.12619 6.59407 7.08102 6.58847C7.0484 6.58447 7.07935 6.49167 7.04589 6.48847C6.76486 6.45887 6.4487 6.48687 6.17269 6.45487C6.08403 6.44447 5.9753 6.32207 5.96275 6.32127C5.89668 6.31567 5.83228 6.45167 5.82308 6.45487C5.72438 6.48847 5.58387 6.40447 5.49103 6.57167C5.67922 6.70287 5.90253 6.76447 6.13756 6.75567C6.17269 6.77247 6.05894 6.97567 6.03301 6.98927C5.91173 7.05327 3.39919 6.97807 3.27373 6.92207C3.03368 6.81647 3.22438 6.71887 3.22104 6.70527C3.21769 6.69327 3.12234 6.55807 3.11648 6.47167C3.11147 6.39887 3.10394 5.99247 3.11648 5.97087C3.19427 5.83327 5.00759 5.76047 5.2652 5.75407L5.26436 5.75247Z" fill="%23F86866"/></g><defs><clipPath id="clip0_1988_16632"><rect width="15" height="16" fill="white"/></clipPath></defs></svg>');
}
.pageTitle__text {
  font-size: inherit;
  font-weight: inherit;
}
.pageTitle__textMarker {
  background: linear-gradient(180deg, transparent 0%, transparent 57.03125%, rgba(245, 199, 29, 0.2) 57.03125%, rgba(245, 199, 29, 0.2) 100%);
  display: inline;
  font-size: inherit;
  font-weight: inherit;
}

.secHeading {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="87" height="25" viewBox="0 0 87 25"><path d="M1.75,23h84.5L67.75,1" transform="translate(-0.75 0.409)" fill="none" stroke="%2322a720" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></svg>'), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="87" height="25" viewBox="0 0 87 25"><path d="M86.25,23H1.75L20.25,1" transform="translate(-0.75 0.409)" fill="none" stroke="%2322a720" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></svg>'), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="87" height="25" viewBox="0 0 87 25"><path d="M1.75,23h84.5L67.75,1" transform="translate(-0.75 0.409)" fill="none" stroke="%2322a720" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></svg>'), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="87" height="25" viewBox="0 0 87 25"><path d="M86.25,23H1.75L20.25,1" transform="translate(-0.75 0.409)" fill="none" stroke="%2322a720" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></svg>');
  background-position: left top, right top, left bottom, right bottom;
  background-repeat: no-repeat;
  background-size: 87px auto;
  color: #22a720;
  display: grid;
  grid-template-areas: "... ... ..." "... text ..." "... subText ..." "... ... ..." "... ... ...";
  grid-template-columns: 87px 1fr 87px;
  grid-template-rows: minmax(8px, 1fr) auto auto minmax(8px, 1fr) 23px;
  margin: 0 auto 48px;
  max-width: 695px;
  position: relative;
  text-align: center;
  z-index: 1;
}
@media (max-width: 768px) {
  .secHeading {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="42" height="13" viewBox="0 0 42 13"><path d="M1,11.358H40.786L32.076,1" transform="translate(0 0.409)" fill="none" stroke="%2322a720" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></svg>'), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="42" height="13" viewBox="0 0 42 13"><path d="M40.786,11.358H1L9.711,1" transform="translate(0 0.409)" fill="none" stroke="%2322a720" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></svg>'), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="42" height="13" viewBox="0 0 42 13"><path d="M1,11.358H40.786L32.076,1" transform="translate(0 0.409)" fill="none" stroke="%2322a720" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></svg>'), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="42" height="13" viewBox="0 0 42 13"><path d="M40.786,11.358H1L9.711,1" transform="translate(0 0.409)" fill="none" stroke="%2322a720" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></svg>');
    background-size: 42px auto;
    grid-template-areas: "... ... ..." "text text text" "subText subText subText" "... ... ..." "... ... ...";
    grid-template-columns: 42px 1fr 42px;
    grid-template-rows: minmax(8px, 1fr) auto auto minmax(8px, 1fr) 11px;
  }
}
.secHeading::before {
  border-bottom: 1px solid;
  border-top: 1px solid;
  content: "";
  display: block;
  grid-area: 1/1/-2/-1;
  justify-self: center;
  min-height: 77px;
  width: calc(100% - 134px);
}
@media (max-width: 768px) {
  .secHeading::before {
    width: calc(100% - 64px);
  }
}
.secHeading::after {
  border-left: 1px solid;
  border-right: 1px solid;
  content: "";
  display: block;
  grid-area: -1/2/-2/-2;
  height: 22px;
  justify-self: center;
  width: calc(100% + 4px);
}
@media (max-width: 768px) {
  .secHeading::after {
    height: 10px;
  }
}
.secHeading_noRibbon {
  background: none;
  grid-template-areas: "text" "subText";
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, auto);
}
.secHeading_noRibbon::before, .secHeading_noRibbon::after {
  display: none;
}
.secHeading__txt {
  display: block;
  grid-area: text;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
}
.secHeading__subTxt {
  color: #f3cc00;
  display: block;
  grid-area: subText;
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
}

.sectionTitle {
  -webkit-align-items: center;
          align-items: center;
  display: grid;
  font-size: 2rem;
  font-weight: 700;
  gap: 0.8em;
  grid-auto-flow: column;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  line-height: 1.6;
}
.sectionTitle::before {
  aspect-ratio: 32/26;
  background: url('data:image/svg+xml;utf8,<svg width="32" height="26" viewBox="0 0 32 26" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.90097 4.84624C1.69294 6.81919 0.279521 9.64366 0.0334028 12.5796C-0.0386746 13.4424 -0.0114258 14.3305 0.28919 15.1437C0.529155 15.7924 0.931733 16.3679 1.34398 16.926C2.77146 18.858 4.40024 20.71 6.49136 21.9089C8.58336 23.1078 11.2159 23.5745 13.4477 22.6568C14.5983 22.1831 15.574 21.3821 16.5725 20.6429C18.632 19.1192 20.8893 17.7941 22.5497 15.8507C24.2101 13.9074 25.1761 11.109 24.1327 8.78169C23.8189 8.0808 23.3434 7.46523 22.86 6.86621C21.2277 4.84101 19.3923 2.87416 17.0252 1.7684C12.9027 -0.159278 7.8872 1.28604 3.90097 4.84624Z" fill="%2322A720"/><path d="M28.4657 19.205C29.6574 17.3836 30.1196 15.1063 29.7295 12.9702C29.6146 12.3424 29.4243 11.7155 29.0537 11.1934C28.758 10.7771 28.3607 10.4435 27.9598 10.1242C26.5718 9.01872 25.056 8.0083 23.3368 7.55C21.617 7.09187 19.6534 7.25702 18.2417 8.33179C17.5139 8.88626 16.9737 9.6407 16.4053 10.3555C15.2328 11.829 13.8814 13.1986 13.0737 14.8954C12.2661 16.5923 12.1173 18.7665 13.308 20.2258C13.6663 20.6654 14.1233 21.0137 14.5827 21.3488C16.1344 22.4818 17.8194 23.535 19.7171 23.8749C23.0224 24.4681 26.3139 22.4919 28.4657 19.205Z" fill="%23F3CC00"/></svg>') no-repeat center/contain;
  content: "";
  width: 1.6em;
}
.sectionTitle__text {
  font-size: inherit;
  font-weight: inherit;
}

.textLink {
  -webkit-align-items: center;
          align-items: center;
  color: #22a720;
  display: inline-grid;
  font-size: 1.4rem;
  font-weight: 500;
  gap: 4px;
  grid-auto-flow: column;
  line-height: 1.6;
  text-decoration: underline;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.textLink__text {
  font-size: inherit;
  font-weight: inherit;
}
.textLink__icon {
  --textLink-icon: url('data:image/svg+xml;utf8,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.78125 3.30885L5.6736 2.32812L10.534 7.67307C10.6124 7.75872 10.6745 7.86056 10.717 7.97275C10.7594 8.08493 10.7813 8.20523 10.7813 8.32674C10.7813 8.44824 10.7594 8.56855 10.717 8.68073C10.6745 8.79291 10.6124 8.89475 10.534 8.9804L5.6736 14.3281L4.78209 13.3474L9.34394 8.32812L4.78125 3.30885Z" fill="%23A3A29D"/></svg>');
  aspect-ratio: 1;
  background: #a3a29d;
  -webkit-mask: var(--textLink-icon) no-repeat center/contain;
          mask: var(--textLink-icon) no-repeat center/contain;
  width: 1.1428571429em;
}
.textLink__icon_type_external {
  --textLink-icon: url('data:image/svg+xml;utf8,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14 2H10M14 2L8 8M14 2V6" stroke="%23A3A29D" stroke-linecap="round" stroke-linejoin="round"/><path d="M14 8.66667V12.6667C14 13.0203 13.8595 13.3594 13.6095 13.6095C13.3594 13.8595 13.0203 14 12.6667 14H3.33333C2.97971 14 2.64057 13.8595 2.39052 13.6095C2.14048 13.3594 2 13.0203 2 12.6667V3.33333C2 2.97971 2.14048 2.64057 2.39052 2.39052C2.64057 2.14048 2.97971 2 3.33333 2H7.33333" stroke="%23A3A29D" stroke-linecap="round"/></svg>');
}

.mwForm {
  --input-c: #ff8100;
  --input-bdc: #f3cc00;
  --input-bgc: #ffeec1;
}
.mw_wp_form_input .mwForm [data-input-none], .mw_wp_form_confirm .mwForm [data-confirm-none] {
  display: none;
}
.mwForm__section {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.mwForm__section_type_modelHouse::after {
  aspect-ratio: 1280/390;
  background: #fffbf2 url(../images/common/texture_bg.png) repeat 0 0/auto;
  bottom: 0;
  content: "";
  display: block;
  left: calc(var(--frame-border-width) * -1);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg width="1280" height="390" viewBox="0 0 1280 390" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M625.609 293.607C201.467 319.57 31.8106 108.687 0 0V390H1280V389.447C1238.6 346.682 1049.75 267.644 625.609 293.607Z" fill="black"/></svg>') no-repeat center bottom/cover;
          mask: url('data:image/svg+xml;utf8,<svg width="1280" height="390" viewBox="0 0 1280 390" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M625.609 293.607C201.467 319.57 31.8106 108.687 0 0V390H1280V389.447C1238.6 346.682 1049.75 267.644 625.609 293.607Z" fill="black"/></svg>') no-repeat center bottom/cover;
  position: absolute;
  width: calc(100% + var(--frame-border-width) * 2);
  z-index: 0;
}
@media (max-width: 768px) {
  .mwForm__section_type_customerInfo .mwForm__container {
    padding: 0 24px;
  }
}
.mwForm__section_type_customerInfo .mwForm__fields {
  padding: 16px 0;
}
.mwForm__section:has(+ .mwForm__section) {
  padding-bottom: 9.4936708861%;
}
@media (max-width: 768px) {
  .mwForm__section:has(+ .mwForm__section) {
    padding-bottom: 120px;
  }
}
.mwForm__section:nth-child(2) {
  background: #fffbf2 url(../images/common/texture_bg.png) repeat 0 0/auto;
}
.mwForm__bottom {
  background: #fffbf2 url(../images/common/texture_bg.png) repeat 0 0/auto;
  padding-top: 32px;
}
@media (max-width: 768px) {
  .mwForm__bottom {
    padding-top: 8px;
  }
}
.mwForm__container {
  max-width: 1120px;
  position: relative;
  width: 100%;
  z-index: 1;
}
.mwForm__sectionTitle {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 16px;
  padding: 0 0 0 48px;
  position: relative;
}
.mwForm__sectionTitle::before {
  background: url('data:image/svg+xml;utf8,<svg width="32" height="26" viewBox="0 0 32 26" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.81115 4.55333C1.65396 6.49926 0.273085 9.28506 0.0326337 12.1808C-0.0377841 13.0318 -0.0111627 13.9077 0.282531 14.7098C0.516971 15.3496 0.91028 15.9172 1.31304 16.4677C2.70765 18.3732 4.29892 20.1998 6.3419 21.3823C8.38573 22.5648 10.9577 23.0251 13.1381 22.12C14.2622 21.6528 15.2154 20.8628 16.1909 20.1337C18.203 18.6309 20.4083 17.3238 22.0305 15.4071C23.6526 13.4904 24.5964 10.7303 23.5771 8.43489C23.2705 7.74359 22.8059 7.13646 22.3336 6.54563C20.7389 4.54817 18.9458 2.60825 16.6332 1.51763C12.6056 -0.383648 7.7056 1.04188 3.81115 4.55333Z" fill="%2322A720"/><path d="M27.8107 18.7155C28.975 16.9191 29.4265 14.673 29.0454 12.5661C28.9332 11.947 28.7472 11.3286 28.3852 10.8137C28.0964 10.4031 27.7082 10.0741 27.3165 9.7591C25.9605 8.66878 24.4796 7.6722 22.8 7.22017C21.1198 6.76831 19.2014 6.93121 17.8221 7.99125C17.1111 8.53814 16.5834 9.28225 16.0281 9.98722C14.8826 11.4406 13.5622 12.7914 12.7732 14.465C11.9842 16.1386 11.8388 18.2831 13.0021 19.7224C13.3521 20.156 13.7986 20.4995 14.2474 20.83C15.7634 21.9475 17.4096 22.9863 19.2636 23.3215C22.4928 23.9066 25.7085 21.9575 27.8107 18.7155Z" fill="%23FFBF38"/></svg>') no-repeat center center/contain;
  content: "";
  display: block;
  height: 26px;
  left: 0;
  position: absolute;
  top: 4px;
  width: 32px;
}
.mwForm__sectionTitle span {
  font-weight: inherit;
}
.mwForm hr {
  border: none;
  border-bottom: 1px dashed #a3a29d;
  height: 0;
  margin: 15px 0;
}
.mwForm hr:last-child {
  margin-bottom: 0;
}
.mwForm__fields {
  position: relative;
}
.mwForm__fields dl {
  -webkit-align-items: center;
          align-items: center;
  display: grid;
  gap: 0 8px;
  grid-template-areas: "label title data" "... ... data";
  grid-template-columns: auto 200px 1fr;
  grid-template-rows: minmax(54px, -webkit-max-content) 1fr;
  grid-template-rows: minmax(54px, max-content) 1fr;
}
@media (max-width: 768px) {
  .mwForm__fields dl {
    gap: 16px 8px;
    grid-template-rows: auto 1fr;
  }
}
@media (max-width: 768px) {
  .mwForm__fields dl {
    grid-template-areas: "label title" "data data";
    grid-template-columns: auto 1fr;
    grid-template-rows: repeat(2, auto);
  }
}
.mwForm__fields dl::before {
  -webkit-align-items: center;
          align-items: center;
  border-radius: 4px;
  color: #fff;
  display: -webkit-flex;
  display: flex;
  font-size: 1.6rem;
  font-weight: 700;
  grid-area: label;
  height: 26px;
  -webkit-justify-content: center;
          justify-content: center;
  line-height: 1.6;
  min-width: 48px;
  padding: 0 4px;
}
.mwForm__fields dl.is_required::before {
  background: #ef2e2e;
  content: "必須";
}
.mwForm__fields dl:not(.is_required)::before {
  background: #a3a29d;
  content: "任意";
}
.mwForm__fields dl:nth-child(n+2) {
  margin-top: 24px;
}
.mwForm__fields dt {
  font-size: 1.6rem;
  font-weight: 500;
  grid-area: title;
  line-height: 1.6;
}
.mwForm__fields dd {
  font-size: 1.4rem;
  font-weight: 500;
  grid-area: data;
  line-height: 1.6;
}
.mwForm__fields dd * {
  font-weight: inherit;
}
.mwForm__fields dd:has(.error) {
  --input-c: #ef2e2e;
  --input-bdc: #ef2e2e;
  --input-bgc: #ffebeb;
}
.mwForm__fields_main {
  padding: 16px 0 0;
}
.mwForm__units {
  display: grid;
  gap: 12px 24px;
  grid-template-columns: repeat(auto-fit, minmax(min(140px, 100%), 1fr));
}
.mwForm__unit {
  -webkit-align-items: center;
          align-items: center;
  display: grid;
  gap: 0 8px;
  grid-template-columns: auto minmax(0, 1fr) auto;
}
.mwForm__unit span:nth-child(1) {
  min-width: 48px;
}
.mw_wp_form_input .mwForm__unit {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}
.mw_wp_form_input .mwForm__unit span:has(input) {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media (max-width: 768px) {
  .mw_wp_form_input .mwForm__unit span:has(input) input {
    min-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    width: 48px;
  }
}
.mwForm__choices {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 16px;
}
.mwForm__choices .horizontal-item:nth-child(n) {
  margin: unset;
}
.mwForm__note {
  color: #ef2e2e;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 8px 0 0;
}
.mwForm__agreement {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}
@media (max-width: 768px) {
  .mwForm__agreement {
    margin: 24px 0 0;
  }
}
.mwForm__agreement:has(.error) {
  --input-c: #ef2e2e;
  --input-bdc: #ef2e2e;
  --input-bgc: #ffebeb;
}
.mwForm__agreement a {
  color: #22a720;
  font-weight: inherit;
}
.mwForm__agreement a:not(:last-child) {
  margin-right: 0.5714285714em;
}
@media (max-width: 768px) {
  .mwForm__agreement a:not(:last-child) {
    margin-right: 0;
  }
}
.mwForm__msg {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .mwForm__msg {
    margin: 24px 0 0;
    text-align: left;
  }
}
.mwForm__msg em {
  color: #ef2e2e;
  display: inline-block;
  font-style: normal;
  font-weight: 700;
  margin: 24px 0 0;
}
.mwForm__btnWrap {
  display: -webkit-flex;
  display: flex;
  gap: 10px;
  -webkit-justify-content: center;
          justify-content: center;
  margin: 48px 0 0;
}
.mw_wp_form_confirm .mwForm__btnWrap {
  gap: 24px;
  margin-top: 24px;
}
.mw_wp_form_complete .mwForm__btnWrap {
  /* for 完了画面 */
}
@media (min-width: 767px) {
  .mw_wp_form_complete .mwForm__btnWrap {
    margin: 48px 0 0;
  }
}
@media (max-width: 768px) {
  .mwForm__btnWrap {
    -webkit-align-items: center;
            align-items: center;
    -webkit-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 24px;
  }
}
.mwForm__btnWrap_confirm {
  margin: 24px 0 0;
}
.mwForm input[type=text],
.mwForm input[type=email],
.mwForm input[type=number],
.mwForm textarea,
.mwForm select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: var(--input-bgc);
  border: 1px solid var(--input-bdc);
  border-radius: 4px;
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  height: 54px;
  line-height: 1.6;
  padding: 16px 24px;
  width: 100%;
}
.mwForm input[type=text]::-webkit-input-placeholder, .mwForm input[type=email]::-webkit-input-placeholder, .mwForm input[type=number]::-webkit-input-placeholder, .mwForm textarea::-webkit-input-placeholder, .mwForm select::-webkit-input-placeholder {
  color: #ff8100;
}
.mwForm input[type=text]::-moz-placeholder, .mwForm input[type=email]::-moz-placeholder, .mwForm input[type=number]::-moz-placeholder, .mwForm textarea::-moz-placeholder, .mwForm select::-moz-placeholder {
  color: #ff8100;
}
.mwForm input[type=text]::placeholder,
.mwForm input[type=email]::placeholder,
.mwForm input[type=number]::placeholder,
.mwForm textarea::placeholder,
.mwForm select::placeholder {
  color: #ff8100;
}
.mwForm input.hasDatepicker {
  background: var(--input-bgc) url('data:image/svg+xml;utf8,<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15 1.52407L10.9965 1.52409V0.527588C10.9965 0.251338 10.7727 0.0275879 10.4965 0.0275879C10.2203 0.0275879 9.9965 0.251338 9.9965 0.527588V1.52384H5.9965V0.527588C5.9965 0.251338 5.77275 0.0275879 5.4965 0.0275879C5.22025 0.0275879 4.9965 0.251338 4.9965 0.527588V1.52384H1C0.44775 1.52384 0 1.97159 0 2.52384V15.0238C0 15.5761 0.44775 16.0238 1 16.0238H15C15.5522 16.0238 16 15.5761 16 15.0238V2.52384C16 1.97182 15.5522 1.52407 15 1.52407ZM15 15.0238H1V2.52384H4.9965V3.02759C4.9965 3.30382 5.22025 3.52759 5.4965 3.52759C5.77275 3.52759 5.9965 3.30382 5.9965 3.02759V2.52409H9.9965V3.02784C9.9965 3.30409 10.2203 3.52784 10.4965 3.52784C10.7727 3.52784 10.9965 3.30409 10.9965 3.02784V2.52409H15V15.0238ZM11.5 8.02407H12.5C12.776 8.02407 13 7.80007 13 7.52407V6.52407C13 6.24807 12.776 6.02407 12.5 6.02407H11.5C11.224 6.02407 11 6.24807 11 6.52407V7.52407C11 7.80007 11.224 8.02407 11.5 8.02407ZM11.5 12.0238H12.5C12.776 12.0238 13 11.8001 13 11.5238V10.5238C13 10.2478 12.776 10.0238 12.5 10.0238H11.5C11.224 10.0238 11 10.2478 11 10.5238V11.5238C11 11.8003 11.224 12.0238 11.5 12.0238ZM8.5 10.0238H7.5C7.224 10.0238 7 10.2478 7 10.5238V11.5238C7 11.8001 7.224 12.0238 7.5 12.0238H8.5C8.776 12.0238 9 11.8001 9 11.5238V10.5238C9 10.2481 8.776 10.0238 8.5 10.0238ZM8.5 6.02407H7.5C7.224 6.02407 7 6.24807 7 6.52407V7.52407C7 7.80007 7.224 8.02407 7.5 8.02407H8.5C8.776 8.02407 9 7.80007 9 7.52407V6.52407C9 6.24782 8.776 6.02407 8.5 6.02407ZM4.5 6.02407H3.5C3.224 6.02407 3 6.24807 3 6.52407V7.52407C3 7.80007 3.224 8.02407 3.5 8.02407H4.5C4.776 8.02407 5 7.80007 5 7.52407V6.52407C5 6.24782 4.776 6.02407 4.5 6.02407ZM4.5 10.0238H3.5C3.224 10.0238 3 10.2478 3 10.5238V11.5238C3 11.8001 3.224 12.0238 3.5 12.0238H4.5C4.776 12.0238 5 11.8001 5 11.5238V10.5238C5 10.2481 4.776 10.0238 4.5 10.0238Z" fill="%23FF8100"/></svg>') no-repeat right 24px bottom 50%/16px auto;
  cursor: default;
  padding-right: 60px;
}
.mwForm textarea {
  min-height: 96px;
  resize: vertical;
}
.mwForm select {
  background: var(--input-bgc) url('data:image/svg+xml;utf8,<svg width="10" height="8" viewBox="0 0 10 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.8426 0.681893L8.1576 0.681893C8.40691 0.681532 8.65123 0.751782 8.86227 0.884512C9.07331 1.01724 9.24244 1.20702 9.3501 1.43189C9.47613 1.6987 9.52466 1.99554 9.49019 2.28859C9.45571 2.58165 9.33961 2.85912 9.1551 3.08939L5.9976 6.91439C5.87369 7.05736 5.72049 7.17203 5.54839 7.25062C5.37628 7.3292 5.1893 7.36987 5.0001 7.36987C4.8109 7.36987 4.62392 7.3292 4.45181 7.25062C4.27971 7.17203 4.12651 7.05736 4.0026 6.91439L0.845099 3.08939C0.660595 2.85912 0.544488 2.58165 0.510012 2.28859C0.475535 1.99554 0.524076 1.6987 0.650101 1.43189C0.757756 1.20702 0.926894 1.01724 1.13793 0.884512C1.34898 0.751782 1.59329 0.681532 1.8426 0.681893Z" fill="%23FF8100"/></svg>') no-repeat right 26px bottom 50%/10px auto;
  overflow: hidden;
  padding-right: 60px;
}
.mwForm select::-ms-expand {
  display: none;
}
.mwForm select.is_default {
  color: #ff8100;
}
.mwForm .mwform-radio-field label {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.mwForm .mwform-radio-field input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  inset: 0;
  opacity: 0;
  position: absolute;
  z-index: -1;
}
.mwForm .mwform-radio-field .mwform-radio-field-text {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 0;
  position: relative;
  text-indent: 1.8571428571em;
  line-height: 1.6;
}
.mwForm .mwform-radio-field .mwform-radio-field-text::before {
  background: var(--input-bgc);
  border: 1px solid var(--input-bdc);
  content: "";
  display: block;
  height: 18px;
  left: 0;
  position: absolute;
  top: 0.1428571429em;
  width: 18px;
  border-radius: 50%;
}
.mwForm .mwform-radio-field .mwform-radio-field-text::after {
  content: "";
  display: block;
  left: 9px;
  position: absolute;
  top: 0.7857142857em;
  background: var(--input-c);
  border-radius: 50%;
  height: 9px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 9px;
}
.mwForm .mwform-radio-field input[type=radio]:checked + .mwform-radio-field-text::before {
  border-color: var(--input-c);
}
.mwForm .mwform-radio-field input[type=radio]:not(:checked) + .mwform-radio-field-text::after {
  display: none;
}
.mwForm .mwform-checkbox-field label {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.mwForm .mwform-checkbox-field input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  inset: 0;
  opacity: 0;
  position: absolute;
  z-index: -1;
}
.mwForm .mwform-checkbox-field .mwform-checkbox-field-text {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 0;
  position: relative;
  text-indent: 1.8571428571em;
  line-height: 1.8;
}
.mwForm .mwform-checkbox-field .mwform-checkbox-field-text::before {
  background: var(--input-bgc);
  border: 1px solid var(--input-bdc);
  content: "";
  display: block;
  height: 18px;
  left: 0;
  position: absolute;
  top: 0.1428571429em;
  width: 18px;
  border-radius: 4px;
}
.mwForm .mwform-checkbox-field .mwform-checkbox-field-text::after {
  content: "";
  display: block;
  left: 9px;
  position: absolute;
  top: 0.7857142857em;
  border-bottom: 2px solid var(--input-c);
  border-left: 2px solid var(--input-c);
  height: 7px;
  -webkit-transform: translate(-50%, -75%) rotate(-45deg);
          transform: translate(-50%, -75%) rotate(-45deg);
  width: 12px;
}
.mwForm .mwform-checkbox-field input[type=checkbox]:checked + .mwform-checkbox-field-text::before {
  border-color: var(--input-c);
}
.mwForm .mwform-checkbox-field input[type=checkbox]:not(:checked) + .mwform-checkbox-field-text::after {
  display: none;
}
.mwForm .error {
  border: 1px solid currentColor;
  border-radius: 4px;
  color: #ef2e2e;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 8px 0 0;
  padding: 8px 24px;
  text-align: left;
}
.mwForm__cloudflare .mwForm__inner {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  margin: 24px 0;
}

.mwFormSelect {
  position: relative;
}
.mwFormSelect__box {
  background: #fff;
  border: 1px solid #22a720;
  border-radius: 8px;
  padding: 47px;
  position: relative;
}
.mwFormSelect__box:nth-child(n+2) {
  margin-top: 24px;
}
.mwFormSelect__box:not(.is_enabled) {
  display: none;
  pointer-events: none;
}
@media (max-width: 768px) {
  .mwFormSelect__box {
    padding: 24px;
  }
}
.mwFormSelect__delete {
  -webkit-align-items: center;
          align-items: center;
  background: #a3a29d;
  border-radius: 50%;
  display: -webkit-flex;
  display: flex;
  height: 40px;
  -webkit-justify-content: center;
          justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  width: 40px;
}
.mwFormSelect__delete::before {
  background: #fff;
  content: "";
  display: block;
  height: 2px;
  width: 12px;
}
.mwFormSelect__addBtnWrap {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  position: relative;
  z-index: 1;
}
.mwFormSelect__addBtn {
  display: -webkit-flex;
  display: flex;
  gap: 6px;
  -webkit-justify-content: center;
          justify-content: center;
  margin: 48px auto 0;
}
.mwFormSelect__addBtn.is_hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.mwFormSelect__addBtn::after {
  aspect-ratio: 1;
  background: currentColor;
  content: "";
  display: block;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 9.02588H9H1ZM17 9.02588H9H17ZM9 9.02588V1.02588V9.02588ZM9 9.02588V17.0259V9.02588Z" fill="%23000"/><path d="M1 9.02588H9M9 9.02588H17M9 9.02588V1.02588M9 9.02588V17.0259" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center center/contain;
          mask: url('data:image/svg+xml;utf8,<svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 9.02588H9H1ZM17 9.02588H9H17ZM9 9.02588V1.02588V9.02588ZM9 9.02588V17.0259V9.02588Z" fill="%23000"/><path d="M1 9.02588H9M9 9.02588H17M9 9.02588V1.02588M9 9.02588V17.0259" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center center/contain;
  -webkit-order: -1;
          order: -1;
  width: 0.875em;
}
.mwFormSelect__ornament {
  bottom: -14px;
  display: grid;
  pointer-events: none;
  position: absolute;
  width: 100%;
}
@media (max-width: 768px) {
  .mwFormSelect__ornament {
    bottom: -83px;
  }
}
.mwFormSelect__ornamentCloud {
  display: grid;
  grid-area: 1/-1;
  width: 27.9850746269%;
}
@media (max-width: 768px) {
  .mwFormSelect__ornamentCloud {
    max-width: 300px;
    width: 50.1529051988%;
  }
}
.mwFormSelect__ornamentCloud_pos_left {
  aspect-ratio: 300/100;
  container: ornament-cloud-left/inline-size;
  place-self: flex-start;
}
.mwFormSelect__ornamentCloud_pos_left::before {
  -webkit-animation: cloud 3s 0.5s linear infinite alternate;
          animation: cloud 3s 0.5s linear infinite alternate;
  aspect-ratio: 240/100;
  background: url(../images/common/ornament_cloud_01.png) no-repeat center/contain;
  content: "";
  place-self: flex-start;
  width: 80%;
}
.mwFormSelect__ornamentCloud_pos_right {
  aspect-ratio: 300/70;
  container: ornament-cloud-right/inline-size;
  place-self: flex-end;
  translate: 0 56%;
}
@media (max-width: 768px) {
  .mwFormSelect__ornamentCloud_pos_right {
    translate: 0 56%;
  }
}
.mwFormSelect__ornamentCloud_pos_right::before {
  -webkit-animation: cloud 3s 0.5s linear infinite alternate;
          animation: cloud 3s 0.5s linear infinite alternate;
  aspect-ratio: 242/70;
  background: url(../images/common/ornament_cloud_02.png) no-repeat center/contain;
  content: "";
  place-self: flex-start;
  width: 80%;
}
.mwFormSelect .error {
  margin: 24px 0 0;
  text-align: center;
}
.mw_wp_form_confirm .mwFormSelect .mwForm__fields dd {
  -webkit-align-items: center;
          align-items: center;
  border: 1px solid #a3a29d;
  border-radius: 4px;
  display: -webkit-flex;
  display: flex;
  min-height: 54px;
  padding: 8px 24px;
}

.mw_wp_form_confirm .mwForm__section_type_customerInfo .mwForm__fields dl {
  grid-template-rows: minmax(auto, -webkit-max-content) 1fr;
  grid-template-rows: minmax(auto, max-content) 1fr;
}
.mw_wp_form_confirm .mwForm__section_type_customerInfo .mwForm__fields dl:nth-child(n+2) {
  margin-top: 32px;
}
@media (max-width: 768px) {
  .mw_wp_form_confirm .mwForm__section_type_customerInfo .mwForm__fields dl:nth-child(n+2) {
    margin-top: 24px;
  }
}
.mw_wp_form_confirm .mwForm__units {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}
.mw_wp_form_confirm .mwForm__unit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.mw_wp_form_confirm .mwForm__unit span:nth-child(1) {
  min-width: auto;
}
@media (max-width: 768px) {
  .mw_wp_form_confirm .mwForm__bottom .mwForm__container {
    padding: 0 24px;
  }
}
.mw_wp_form_confirm .mwFormSelect__boxes {
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .mw_wp_form_confirm .mwFormSelect__boxes {
    padding-bottom: 0;
  }
}
.mw_wp_form_confirm .mwFormSelect__ornament {
  bottom: -36px;
  z-index: 0;
}
@media (max-width: 768px) {
  .mw_wp_form_confirm .mwFormSelect__ornament {
    bottom: -83px;
  }
}

.mwFormOrnament__cloud {
  -webkit-animation: illust_slide 3s linear infinite alternate;
          animation: illust_slide 3s linear infinite alternate;
  bottom: -100px;
  position: absolute;
}
.mwFormOrnament__cloud_pos_left {
  background: url("../images/common/deco_cloud_01.png") no-repeat top left/cover;
  height: 100px;
  left: 28px;
  width: 240px;
}
@media (max-width: 768px) {
  .mwFormOrnament__cloud_pos_left {
    bottom: -84px;
    height: 55px;
    width: 132px;
  }
}
.mwFormOrnament__cloud_pos_right {
  background: url("../images/common/deco_cloud_02.png") no-repeat top left/cover;
  bottom: -136px;
  height: 70px;
  right: 84px;
  width: 242px;
}
@media (max-width: 768px) {
  .mwFormOrnament__cloud_pos_right {
    bottom: -104px;
    height: 38px;
    right: 56px;
    width: 132px;
  }
}

.newsArticle {
  --newsArticle-border-color: #d3d3d3;
}
.newsArticle_type_pinned .newsArticle__pic::before {
  aspect-ratio: 4/5;
  background: url(../images/common/icon_pin.png) no-repeat center/contain;
  content: "";
  display: block;
  grid-area: 1/-1;
  margin-right: 7px;
  margin-top: 7px;
  min-width: min(13px, 100%);
  place-self: flex-start flex-end;
  transition: opacity 0.1s ease-out;
  width: 6.4516129032%;
  z-index: 1;
}
.newsArticle__link {
  display: block;
}
.newsArticle__link:hover {
  --newsArticle-border-color: #ff8100;
  opacity: 1;
}
.newsArticle__link:hover .newsArticle__pic::before, .newsArticle__link:hover .newsArticle__img, .newsArticle__link:hover .newsArticle__body {
  opacity: 0.4;
}
.newsArticle__inner {
  display: grid;
  gap: 8px 16px;
  grid-auto-columns: minmax(0, 1fr);
}
@media (max-width: 768px) {
  .newsArticle__inner {
    grid-template-columns: 48.9296636086% minmax(0, 1fr);
  }
}
.newsArticle__pic {
  aspect-ratio: 4/5;
  background: #fff;
  border: 1px solid var(--newsArticle-border-color);
  border-radius: 8px;
  display: grid;
  overflow: hidden;
  transition: border-color 0.1s ease-out;
  width: 100%;
}
.newsArticle__img {
  grid-area: 1/-1;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
     object-fit: contain;
  transition: opacity 0.1s ease-out;
  width: 100%;
}
.newsArticle__body {
  transition: opacity 0.1s ease-out;
}
.newsArticle__date {
  color: #a3a29d;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
}
.newsArticle__title {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}
.newsArticle__title:not(:last-child) {
  margin-bottom: 9px;
}
.newsArticle__cat {
  background: #fff;
  border: 1px solid #22a720;
  border-radius: 4px;
  color: #22a720;
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  padding: 3px 7px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.newsCatList {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 8px;
  -webkit-justify-content: center;
          justify-content: center;
}
.newsCatList__item_type_current .newsCatList__link {
  background: #22a720 url(../images/common/texture_button.png) no-repeat center/cover;
  border-color: transparent;
  color: #fff;
  pointer-events: none;
}
.newsCatList__link {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff;
  border: 1px solid #22a720;
  border-radius: 1000px;
  display: block;
  padding: 7px 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.pagination {
  margin: 24px 0 0;
}
.pagination__container {
  display: -webkit-flex;
  display: flex;
  gap: 8px;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .pagination__container {
    display: grid;
    gap: 16px 0;
    grid-template-areas: "number number number" "prev ... next";
    grid-template-columns: 88px 16px 88px;
    grid-template-rows: repeat(2, 1fr);
    margin: auto;
    max-width: 192px;
  }
}
@media (max-width: 768px) {
  .pagination__dir {
    display: contents;
  }
}
.pagination__list {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .pagination__list {
    grid-area: number;
  }
}
.pagination__prevLink, .pagination__nextLink {
  -webkit-align-items: center;
          align-items: center;
  background: #fff;
  border: 1px solid #d3d3d3;
  border-radius: 50px;
  display: -webkit-flex;
  display: flex;
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  gap: 8px;
  line-height: 1.6;
  max-width: 88px;
  padding: 8px 16px;
}
.pagination__prevLink_disabled, .pagination__nextLink_disabled {
  background-color: #f2f2f2;
  color: #a3a29d;
  cursor: default;
  pointer-events: none;
}
@media (max-width: 768px) {
  .pagination__prevLink {
    grid-area: prev;
  }
}
.pagination__prevLink:before {
  background: url("../images/common/icon_arrow.svg") no-repeat center center/cover;
  content: "";
  display: block;
  height: 12px;
  position: relative;
  width: 12px;
  z-index: 1;
}
@media (max-width: 768px) {
  .pagination__nextLink {
    grid-area: next;
  }
}
.pagination__nextLink:after {
  background: url("../images/common/icon_arrow.svg") no-repeat center center/cover;
  content: "";
  display: block;
  height: 12px;
  position: relative;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  width: 12px;
  z-index: 1;
}
.pagination__list {
  display: -webkit-flex;
  display: flex;
  gap: 4px;
}
.pagination__link {
  -webkit-align-items: center;
          align-items: center;
  background: #fff;
  border: 1px solid #d3d3d3;
  border-radius: 50%;
  display: -webkit-flex;
  display: flex;
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  height: 42px;
  -webkit-justify-content: center;
          justify-content: center;
  line-height: 1.6;
  width: 42px;
}
.pagination__link_current {
  background: #666464;
  border-color: #666464;
  color: #fff;
  pointer-events: none;
}

.breadcrumb {
  padding: 8px 0 24px;
}
@media (max-width: 768px) {
  .breadcrumb {
    padding: 0 0 24px;
  }
}
.breadcrumb__list {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 8px;
  padding: 8px 0;
}
.breadcrumb__item {
  -webkit-align-items: center;
          align-items: center;
  color: #22a720;
  display: -webkit-flex;
  display: flex;
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  gap: 8px;
  line-height: 1.6;
}
.breadcrumb__item:last-of-type {
  color: #a3a29d;
}
.breadcrumb__item:not(:last-of-type):after {
  background: url("../images/common/icon_breadcrumb_arrow.svg") repeat center center/cover;
  content: "";
  display: block;
  height: 8px;
  position: relative;
  width: 6px;
  z-index: 1;
}
.breadcrumb__link {
  background: #f1f6ea;
  border-radius: 23px;
  padding: 2px 8px;
}
.breadcrumb__term {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
}

#cc-main {
  background: transparent;
  color: var(--cc-primary-color);
  font-family: var(--cc-font-family);
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.15;
  position: relative;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  position: fixed;
  z-index: var(--cc-z-index);
}

#cc-main :after, #cc-main :before, #cc-main a, #cc-main button, #cc-main div, #cc-main h2, #cc-main input, #cc-main p, #cc-main span {
  all: unset;
  box-sizing: border-box;
}

#cc-main .pm__badge, #cc-main button {
  all: initial;
  box-sizing: border-box;
  color: unset;
  visibility: unset;
}

#cc-main .pm__badge, #cc-main a, #cc-main button, #cc-main input {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 100%;
  line-height: normal;
  margin: 0;
  outline: revert;
  outline-offset: 2px;
  overflow: hidden;
}

#cc-main table, #cc-main tbody, #cc-main td, #cc-main th, #cc-main thead, #cc-main tr {
  all: revert;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

:root {
  --cc-font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  --cc-modal-border-radius:.5rem;
  --cc-btn-border-radius:.4rem;
  --cc-modal-transition-duration:.25s;
  --cc-link-color:var(--cc-btn-primary-bg);
  --cc-modal-margin:1rem;
  --cc-z-index:2147483647;
  --cc-bg:#fff;
  --cc-primary-color:#2c2f31;
  --cc-secondary-color:#5e6266;
  --cc-btn-primary-bg:#30363c;
  --cc-btn-primary-color:#fff;
  --cc-btn-primary-border-color:var(--cc-btn-primary-bg);
  --cc-btn-primary-hover-bg:#000;
  --cc-btn-primary-hover-color:#fff;
  --cc-btn-primary-hover-border-color:var(--cc-btn-primary-hover-bg);
  --cc-btn-secondary-bg:#eaeff2;
  --cc-btn-secondary-color:var(--cc-primary-color);
  --cc-btn-secondary-border-color:var(--cc-btn-secondary-bg);
  --cc-btn-secondary-hover-bg:#d4dae0;
  --cc-btn-secondary-hover-color:#000;
  --cc-btn-secondary-hover-border-color:#d4dae0;
  --cc-separator-border-color:#f0f4f7;
  --cc-toggle-on-bg:var(--cc-btn-primary-bg);
  --cc-toggle-off-bg:#667481;
  --cc-toggle-on-knob-bg:#fff;
  --cc-toggle-off-knob-bg:var(--cc-toggle-on-knob-bg);
  --cc-toggle-enabled-icon-color:var(--cc-bg);
  --cc-toggle-disabled-icon-color:var(--cc-bg);
  --cc-toggle-readonly-bg:#d5dee2;
  --cc-toggle-readonly-knob-bg:#fff;
  --cc-toggle-readonly-knob-icon-color:var(--cc-toggle-readonly-bg);
  --cc-section-category-border:var(--cc-cookie-category-block-bg);
  --cc-cookie-category-block-bg:#f0f4f7;
  --cc-cookie-category-block-border:#f0f4f7;
  --cc-cookie-category-block-hover-bg:#e9eff4;
  --cc-cookie-category-block-hover-border:#e9eff4;
  --cc-cookie-category-expanded-block-bg:transparent;
  --cc-cookie-category-expanded-block-hover-bg:#dee4e9;
  --cc-overlay-bg:rgba(0,0,0,.65);
  --cc-webkit-scrollbar-bg:var(--cc-section-category-border);
  --cc-webkit-scrollbar-hover-bg:var(--cc-btn-primary-hover-bg);
  --cc-footer-bg:var(--cc-btn-secondary-bg);
  --cc-footer-color:var(--cc-secondary-color);
  --cc-footer-border-color:#e4eaed;
  --cc-pm-toggle-border-radius:4em;
}

#cc-main.cc--rtl {
  direction: rtl;
}

#cc-main .cm__title, #cc-main a, #cc-main b, #cc-main em, #cc-main strong {
  font-weight: 600;
}

#cc-main button > span {
  pointer-events: none;
}

#cc-main .cc__link, #cc-main a {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  font-weight: 600;
  position: relative;
  transition: background-size 0.25s, color 0.25s ease;
}

#cc-main .cc__link:hover, #cc-main a:hover {
  background-size: 100% 1px;
  color: var(--cc-primary-color);
}

#cc-main .cc__link {
  color: var(--cc-link-color);
}

#cc-main .cm__desc, #cc-main .pm__body {
  overscroll-behavior: auto contain;
  scrollbar-width: thin;
}

@media screen and (min-width: 640px) {
  #cc-main ::-webkit-scrollbar, #cc-main ::-webkit-scrollbar-thumb, #cc-main ::-webkit-scrollbar-track {
    all: revert;
  }
  #cc-main ::-webkit-scrollbar-thumb {
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background: var(--cc-toggle-readonly-bg);
    border: 0.25rem solid var(--cc-bg);
    border-radius: 1rem;
  }
  #cc-main ::-webkit-scrollbar-thumb:hover {
    background: var(--cc-toggle-off-bg);
  }
  #cc-main ::-webkit-scrollbar {
    background: transparent;
    width: 12px;
  }
}
html.disable--interaction.show--consent, html.disable--interaction.show--consent body {
  height: auto !important;
  overflow: hidden !important;
}

@media (prefers-reduced-motion) {
  #cc-main {
    --cc-modal-transition-duration:0s;
  }
}
.cc--darkmode {
  --cc-bg:#161a1c;
  --cc-primary-color:#ebf3f6;
  --cc-secondary-color:#aebbc5;
  --cc-btn-primary-bg:#c2d0e0;
  --cc-btn-primary-color:var(--cc-bg);
  --cc-btn-primary-border-color:var(--cc-btn-primary-bg);
  --cc-btn-primary-hover-bg:#98a7b6;
  --cc-btn-primary-hover-color:#000;
  --cc-btn-primary-hover-border-color:var(--cc-btn-primary-hover-bg);
  --cc-btn-secondary-bg:#242c31;
  --cc-btn-secondary-color:var(--cc-primary-color);
  --cc-btn-secondary-border-color:var(--cc-btn-secondary-bg);
  --cc-btn-secondary-hover-bg:#353d43;
  --cc-btn-secondary-hover-color:#fff;
  --cc-btn-secondary-hover-border-color:var(--cc-btn-secondary-hover-bg);
  --cc-separator-border-color:#222a30;
  --cc-toggle-on-bg:var(--cc-btn-primary-bg);
  --cc-toggle-off-bg:#525f6b;
  --cc-toggle-on-knob-bg:var(--cc-btn-primary-color);
  --cc-toggle-off-knob-bg:var(--cc-btn-primary-color);
  --cc-toggle-enabled-icon-color:var(--cc-btn-primary-color);
  --cc-toggle-disabled-icon-color:var(--cc-btn-primary-color);
  --cc-toggle-readonly-bg:#343e45;
  --cc-toggle-readonly-knob-bg:#5f6b72;
  --cc-toggle-readonly-knob-icon-color:var(--cc-toggle-readonly-bg);
  --cc-section-category-border:#1e2428;
  --cc-cookie-category-block-bg:#1e2428;
  --cc-cookie-category-block-border:var(--cc-section-category-border);
  --cc-cookie-category-block-hover-bg:#242c31;
  --cc-cookie-category-block-hover-border:#232a2f;
  --cc-cookie-category-expanded-block-bg:transparent;
  --cc-cookie-category-expanded-block-hover-bg:var(--cc-toggle-readonly-bg);
  --cc-overlay-bg:rgba(0,0,0,.65);
  --cc-webkit-scrollbar-bg:var(--cc-section-category-border);
  --cc-webkit-scrollbar-hover-bg:var(--cc-btn-primary-hover-bg);
  --cc-footer-bg:#0c0e0f;
  --cc-footer-color:var(--cc-secondary-color);
  --cc-footer-border-color:#060809;
}

.cc--darkmode #cc-main {
  color-scheme: dark;
}

#cc-main .cm {
  background: var(--cc-bg);
  border-radius: var(--cc-modal-border-radius);
  box-shadow: 0 0.625em 1.875em rgba(0, 0, 2, 0.3);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  max-width: 24rem;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  -webkit-transform: translateY(1.6em);
          transform: translateY(1.6em);
  visibility: hidden;
  z-index: 1;
}

#cc-main .cm--top {
  top: var(--cc-modal-margin);
}

#cc-main .cm--middle {
  top: 50%;
  -webkit-transform: translateY(calc(-50% + 1.6em));
          transform: translateY(calc(-50% + 1.6em));
}

#cc-main .cm--bottom {
  bottom: var(--cc-modal-margin);
}

#cc-main .cm--center {
  left: var(--cc-modal-margin);
  margin: 0 auto;
  right: var(--cc-modal-margin);
  width: unset;
}

#cc-main .cm--left {
  left: var(--cc-modal-margin);
  margin-right: var(--cc-modal-margin);
}

#cc-main .cm--right {
  margin-left: var(--cc-modal-margin);
  right: var(--cc-modal-margin);
}

#cc-main .cm__body {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  position: relative;
}

#cc-main .cm__btns, #cc-main .cm__links {
  padding: 1rem 1.3rem;
  width: unset;
}

#cc-main .cm__texts {
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 1;
          flex: 1;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
          justify-content: center;
  padding: 1rem 0 0;
}

#cc-main .cm__desc, #cc-main .cm__title {
  padding: 0 1.3rem;
}

#cc-main .cm__title {
  font-size: 1.05em;
}

#cc-main .cm__title + .cm__desc {
  margin-top: 1.1em;
}

#cc-main .cm__desc {
  color: var(--cc-secondary-color);
  font-size: 0.9em;
  line-height: 1.5;
  max-height: 40vh;
  overflow-x: visible;
  overflow-y: auto;
  padding-bottom: 1em;
}

#cc-main .cm__btns {
  border-top: 1px solid var(--cc-separator-border-color);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
          justify-content: center;
}

#cc-main .cm__btn-group {
  display: grid;
  grid-auto-columns: minmax(0, 1fr);
}

#cc-main .cm__btn + .cm__btn, #cc-main .cm__btn-group + .cm__btn-group {
  margin-top: 0.375rem;
}

#cc-main .cm--flip .cm__btn + .cm__btn, #cc-main .cm--flip .cm__btn-group + .cm__btn-group {
  margin-bottom: 0.375rem;
  margin-top: 0;
}

#cc-main .cm--inline .cm__btn + .cm__btn {
  margin-left: 0.375rem;
  margin-top: 0;
}

#cc-main .cm--inline.cm--flip .cm__btn + .cm__btn {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0.375rem;
}

#cc-main .cm--inline.cm--flip .cm__btn-group + .cm__btn-group {
  margin-bottom: 0.375rem;
  margin-right: 0;
}

#cc-main .cm--wide .cm__btn + .cm__btn, #cc-main .cm--wide .cm__btn-group + .cm__btn-group {
  margin-left: 0.375rem;
  margin-top: 0;
}

#cc-main .cm--wide.cm--flip .cm__btn + .cm__btn, #cc-main .cm--wide.cm--flip .cm__btn-group + .cm__btn-group {
  margin-bottom: 0;
  margin-right: 0.375rem;
}

#cc-main .cm--bar:not(.cm--inline) .cm__btn-group--uneven, #cc-main .cm--wide .cm__btn-group--uneven {
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 1;
          flex: 1;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

#cc-main .cm--bar:not(.cm--inline).cm--flip .cm__btn-group--uneven, #cc-main .cm--wide.cm--flip .cm__btn-group--uneven {
  -webkit-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

#cc-main .cm__btn {
  background: var(--cc-btn-primary-bg);
  border: 1px solid var(--cc-btn-primary-border-color);
  border-radius: var(--cc-btn-border-radius);
  color: var(--cc-btn-primary-color);
  font-size: 0.82em;
  font-weight: 600;
  min-height: 42px;
  padding: 0.5em 1em;
  text-align: center;
}

#cc-main .cm__btn:hover {
  background: var(--cc-btn-primary-hover-bg);
  border-color: var(--cc-btn-primary-hover-border-color);
  color: var(--cc-btn-primary-hover-color);
}

#cc-main .cm__btn--secondary {
  background: var(--cc-btn-secondary-bg);
  border-color: var(--cc-btn-secondary-border-color);
  color: var(--cc-btn-secondary-color);
}

#cc-main .cm__btn--secondary:hover {
  background: var(--cc-btn-secondary-hover-bg);
  border-color: var(--cc-btn-secondary-hover-border-color);
  color: var(--cc-btn-secondary-hover-color);
}

#cc-main .cm__btn--close {
  border-radius: 0;
  border-bottom-left-radius: var(--cc-btn-border-radius);
  border-right: none;
  border-top: none;
  display: none;
  font-size: 1em;
  height: 42px;
  min-width: auto !important;
  overflow: hidden;
  padding: 0 !important;
  position: absolute;
  right: 0;
  top: 0;
  width: 42px;
}

#cc-main .cm__btn--close svg {
  stroke: var(--cc-btn-primary-color);
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  transition: stroke 0.15s ease;
}

#cc-main .cm__btn--close:hover svg {
  stroke: var(--cc-btn-primary-hover-color);
}

#cc-main .cm__btn--close.cm__btn--secondary svg {
  stroke: var(--cc-btn-secondary-color);
}

#cc-main .cm__btn--close.cm__btn--secondary:hover svg {
  stroke: var(--cc-btn-secondary-hover-color);
}

#cc-main .cm__btn--close + .cm__texts .cm__title {
  padding-right: 3rem;
}

#cc-main .cm--inline .cm__btn-group {
  grid-auto-flow: column;
}

#cc-main .cm__footer {
  background: var(--cc-footer-bg);
  border-top: 1px solid var(--cc-footer-border-color);
  color: var(--cc-footer-color);
  padding: 0.4em 0 0.5em;
}

#cc-main .cm__links {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
          flex-direction: row;
  padding-bottom: 0;
  padding-top: 0;
}

#cc-main .cm__link-group {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
          flex-direction: row;
  font-size: 0.8em;
  width: 100%;
}

#cc-main .cm__link-group > * + * {
  margin-left: 1.3rem;
}

#cc-main .cm--flip .cm__btn:last-child {
  grid-row: 1;
}

#cc-main .cm--inline.cm--flip .cm__btn:last-child {
  grid-column: 1;
}

#cc-main .cm--box .cm__btn--close {
  display: block;
}

#cc-main .cm--box.cm--flip .cm__btns {
  -webkit-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

#cc-main .cm--box.cm--wide {
  max-width: 36em;
}

#cc-main .cm--box.cm--wide .cm__btns {
  -webkit-flex-direction: row;
          flex-direction: row;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

#cc-main .cm--box.cm--wide .cm__btn-group {
  grid-auto-flow: column;
}

#cc-main .cm--box.cm--wide .cm__btn {
  min-width: 120px;
  padding-left: 1.8em;
  padding-right: 1.8em;
}

#cc-main .cm--box.cm--wide.cm--flip .cm__btns {
  -webkit-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

#cc-main .cm--box.cm--wide.cm--flip .cm__btn:last-child {
  grid-column: 1;
}

#cc-main .cm--cloud {
  max-width: 54em;
  width: unset;
}

#cc-main .cm--cloud .cm__body {
  -webkit-flex-direction: row;
          flex-direction: row;
}

#cc-main .cm--cloud .cm__texts {
  -webkit-flex: 1;
          flex: 1;
}

#cc-main .cm--cloud .cm__desc {
  max-height: 9.4em;
}

#cc-main .cm--cloud .cm__btns {
  border-left: 1px solid var(--cc-separator-border-color);
  border-top: none;
  max-width: 23em;
}

#cc-main .cm--cloud .cm__btn-group {
  -webkit-flex-direction: column;
          flex-direction: column;
}

#cc-main .cm--cloud .cm__btn {
  min-width: 19em;
}

#cc-main .cm--cloud.cm--flip .cm__btn-group, #cc-main .cm--cloud.cm--flip .cm__btns {
  -webkit-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

#cc-main .cm--cloud.cm--inline .cm__btn-group {
  -webkit-flex-direction: row;
          flex-direction: row;
}

#cc-main .cm--cloud.cm--inline .cm__btn {
  min-width: 10em;
}

#cc-main .cm--cloud.cm--inline.cm--flip .cm__btn-group {
  -webkit-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

#cc-main .cm--bar {
  border-radius: 0;
  left: 0;
  margin: 0;
  max-width: unset;
  opacity: 1;
  right: 0;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  width: 100vw;
  --cc-modal-transition-duration:.35s;
}

#cc-main .cm--bar.cm--top {
  top: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

#cc-main .cm--bar.cm--bottom {
  bottom: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

#cc-main .cm--bar .cm__body, #cc-main .cm--bar .cm__links {
  margin: 0 auto;
  max-width: 55em;
  width: 100%;
}

#cc-main .cm--bar .cm__body {
  padding: 0.5em 0 0.9em;
}

#cc-main .cm--bar .cm__btns {
  border-top: none;
  -webkit-flex-direction: row;
          flex-direction: row;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

#cc-main .cm--bar .cm__btn-group {
  grid-auto-flow: column;
}

#cc-main .cm--bar:not(.cm--inline) .cm__btn + .cm__btn, #cc-main .cm--bar:not(.cm--inline) .cm__btn-group + .cm__btn-group {
  margin-left: 0.375rem;
  margin-top: 0;
}

#cc-main .cm--bar .cm__btn {
  min-width: 120px;
  padding-left: 2em;
  padding-right: 2em;
}

#cc-main .cm--bar.cm--flip:not(.cm--inline) .cm__btn + .cm__btn, #cc-main .cm--bar.cm--flip:not(.cm--inline) .cm__btn-group + .cm__btn-group {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0.375rem;
}

#cc-main .cm--bar.cm--flip .cm__btns {
  -webkit-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

#cc-main .cm--bar.cm--flip .cm__btn:last-child {
  grid-column: 1;
}

#cc-main .cm--bar.cm--inline .cm__body, #cc-main .cm--bar.cm--inline .cm__links {
  max-width: 74em;
}

#cc-main .cm--bar.cm--inline .cm__body {
  -webkit-flex-direction: row;
          flex-direction: row;
  padding: 0;
}

#cc-main .cm--bar.cm--inline .cm__btns {
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
          justify-content: center;
  max-width: 23em;
}

#cc-main .cm--bar.cm--inline.cm--flip .cm__btns {
  -webkit-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

#cc-main .cc--anim .cm, #cc-main .cc--anim.cm-wrapper:before {
  transition: opacity var(--cc-modal-transition-duration) ease, visibility var(--cc-modal-transition-duration) ease, -webkit-transform var(--cc-modal-transition-duration) ease;
  transition: opacity var(--cc-modal-transition-duration) ease, visibility var(--cc-modal-transition-duration) ease, transform var(--cc-modal-transition-duration) ease;
  transition: opacity var(--cc-modal-transition-duration) ease, visibility var(--cc-modal-transition-duration) ease, transform var(--cc-modal-transition-duration) ease, -webkit-transform var(--cc-modal-transition-duration) ease;
}

#cc-main .cc--anim .cm__btn, #cc-main .cc--anim .cm__close {
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.disable--interaction #cc-main .cm-wrapper:before {
  background: var(--cc-overlay-bg);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
  z-index: 0;
}

.show--consent #cc-main .cc--anim .cm {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  visibility: visible !important;
}

.show--consent #cc-main .cc--anim .cm--middle {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.show--consent #cc-main .cc--anim .cm--bar {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.show--consent #cc-main .cc--anim.cm-wrapper:before {
  opacity: 1;
  visibility: visible;
}

#cc-main.cc--rtl .cm__btn--close {
  border-bottom-left-radius: unset;
  border-bottom-right-radius: var(--cc-btn-border-radius);
  left: 0;
  right: unset;
}

#cc-main.cc--rtl .cm__btn--close + .cm__texts .cm__title {
  padding-left: 3rem !important;
  padding-right: 1.3rem;
}

#cc-main.cc--rtl .cm--inline .cm__btn + .cm__btn {
  margin-left: 0;
  margin-right: 0.375rem;
}

#cc-main.cc--rtl .cm--inline.cm--flip .cm__btn + .cm__btn {
  margin-left: 0.375rem;
  margin-right: 0;
}

#cc-main.cc--rtl .cm:not(.cm--inline).cm--bar .cm__btn + .cm__btn, #cc-main.cc--rtl .cm:not(.cm--inline).cm--bar .cm__btn-group + .cm__btn-group, #cc-main.cc--rtl .cm:not(.cm--inline).cm--wide .cm__btn + .cm__btn, #cc-main.cc--rtl .cm:not(.cm--inline).cm--wide .cm__btn-group + .cm__btn-group {
  margin-left: 0;
  margin-right: 0.375rem;
}

#cc-main.cc--rtl .cm:not(.cm--inline).cm--bar.cm--flip .cm__btn + .cm__btn, #cc-main.cc--rtl .cm:not(.cm--inline).cm--wide.cm--flip .cm__btn + .cm__btn {
  margin-left: 0.375rem;
  margin-right: 0;
}

#cc-main.cc--rtl .cm__link-group > * + * {
  margin-left: 0;
  margin-right: 1.3rem;
}

@media screen and (max-width: 640px) {
  #cc-main {
    --cc-modal-margin:.5em;
  }
  #cc-main .cm {
    max-width: none !important;
    width: auto !important;
  }
  #cc-main .cm__body {
    -webkit-flex-direction: column !important;
            flex-direction: column !important;
    padding: 0 !important;
  }
  #cc-main .cm__btns, #cc-main .cm__desc, #cc-main .cm__links, #cc-main .cm__title {
    padding-left: 1.1rem !important;
    padding-right: 1.1rem !important;
  }
  #cc-main .cm__btns {
    border-left: none !important;
    border-top: 1px solid var(--cc-separator-border-color) !important;
    -webkit-flex-direction: column !important;
            flex-direction: column !important;
    max-width: none !important;
    min-width: auto !important;
  }
  #cc-main .cm__btn + .cm__btn, #cc-main .cm__btn-group + .cm__btn-group {
    margin: 0.375rem 0 0 !important;
  }
  #cc-main .cm--flip .cm__btn + .cm__btn, #cc-main .cm--flip .cm__btn-group + .cm__btn-group {
    margin-bottom: 0.375rem !important;
    margin-top: 0 !important;
  }
  #cc-main .cm__btn-group {
    display: -webkit-flex !important;
    display: flex !important;
    -webkit-flex-direction: column !important;
            flex-direction: column !important;
    min-width: auto !important;
  }
  #cc-main .cm__btn {
    -webkit-flex: auto !important;
            flex: auto !important;
  }
  #cc-main .cm__link-group {
    -webkit-justify-content: center !important;
            justify-content: center !important;
  }
  #cc-main .cm--flip .cm__btn-group, #cc-main .cm--flip .cm__btns {
    -webkit-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
}
#cc-main .pm-wrapper {
  position: relative;
  z-index: 2;
}

#cc-main .pm {
  background: var(--cc-bg);
  border-radius: var(--cc-modal-border-radius);
  box-shadow: 0 0.625em 1.875em rgba(0, 0, 2, 0.3);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  visibility: hidden;
  width: 100%;
  width: unset;
  z-index: 1;
}

#cc-main svg {
  fill: none;
  width: 100%;
}

#cc-main .pm__body, #cc-main .pm__footer, #cc-main .pm__header {
  padding: 1em 1.4em;
}

#cc-main .pm__header {
  -webkit-align-items: center;
          align-items: center;
  border-bottom: 1px solid var(--cc-separator-border-color);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

#cc-main .pm__title {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
  -webkit-flex: 1;
          flex: 1;
  font-weight: 600;
  margin-right: 2em;
}

#cc-main .pm__close-btn {
  background: var(--cc-btn-secondary-bg);
  border: 1px solid var(--cc-btn-secondary-border-color);
  border-radius: var(--cc-btn-border-radius);
  height: 40px;
  position: relative;
  transition: all 0.15s ease;
  width: 40px;
}

#cc-main .pm__close-btn span {
  display: -webkit-flex;
  display: flex;
  height: 100%;
  width: 100%;
}

#cc-main .pm__close-btn svg {
  stroke: var(--cc-btn-secondary-color);
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  transition: stroke 0.15s ease;
}

#cc-main .pm__close-btn:hover {
  background: var(--cc-btn-secondary-hover-bg);
  border-color: var(--cc-btn-secondary-hover-border-color);
}

#cc-main .pm__close-btn:hover svg {
  stroke: var(--cc-btn-secondary-hover-color);
}

#cc-main .pm__body {
  -webkit-flex: 1;
          flex: 1;
  overflow-y: auto;
  overflow-y: overlay;
}

#cc-main .pm__section, #cc-main .pm__section--toggle {
  border-radius: var(--cc-btn-border-radius);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  margin-bottom: 0.5em;
}

#cc-main .pm__section--toggle .pm__section-desc-wrapper {
  border: 1px solid var(--cc-cookie-category-block-border);
  border-radius: var(--cc-btn-border-radius);
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  display: none;
  margin-top: 0 !important;
  overflow: hidden;
}

#cc-main .pm__section {
  border: 1px solid var(--cc-separator-border-color);
  padding: 1em;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

#cc-main .pm__section:first-child {
  border: none;
  margin-bottom: 2em;
  margin-top: 0;
  padding: 0;
  transition: none;
}

#cc-main .pm__section:not(:first-child):hover {
  background: var(--cc-cookie-category-block-bg);
  border-color: var(--cc-cookie-category-block-border);
}

#cc-main .pm__section-toggles + .pm__section {
  margin-top: 2em;
}

#cc-main .pm__section--toggle {
  background: var(--cc-cookie-category-block-bg);
  border-top: none;
  margin-bottom: 0.375rem;
}

#cc-main .pm__section--toggle .pm__section-title {
  -webkit-align-items: center;
          align-items: center;
  background: var(--cc-cookie-category-block-bg);
  border: 1px solid var(--cc-cookie-category-block-border);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  min-height: 58px;
  padding: 1.1em 5.4em 1.1em 1.2em;
  position: relative;
  transition: background-color 0.25s ease, border-color 0.25s ease;
  width: 100%;
}

#cc-main .pm__section--toggle .pm__section-title:hover {
  background: var(--cc-cookie-category-block-hover-bg);
  border-color: var(--cc-cookie-category-block-hover-border);
}

#cc-main .pm__section--toggle .pm__section-desc {
  margin-top: 0;
  padding: 1em;
}

#cc-main .pm__section--toggle.is-expanded {
  --cc-cookie-category-block-bg:var(--cc-cookie-category-expanded-block-bg);
  --cc-cookie-category-block-border:var(--cc-cookie-category-expanded-block-hover-bg);
}

#cc-main .pm__section--toggle.is-expanded .pm__section-title {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

#cc-main .pm__section--toggle.is-expanded .pm__section-arrow svg {
  -webkit-transform: scale(0.5) rotate(180deg);
          transform: scale(0.5) rotate(180deg);
}

#cc-main .pm__section--toggle.is-expanded .pm__section-desc-wrapper {
  display: -webkit-flex;
  display: flex;
}

#cc-main .pm__section--expandable .pm__section-title {
  cursor: pointer;
  padding-left: 3.4em;
}

#cc-main .pm__section--expandable .pm__section-arrow {
  background: var(--cc-toggle-readonly-bg);
  border-radius: 100%;
  display: -webkit-flex;
  display: flex;
  height: 20px;
  -webkit-justify-content: center;
          justify-content: center;
  left: 18px;
  pointer-events: none;
  position: absolute;
  width: 20px;
}

#cc-main .pm__section--expandable .pm__section-arrow svg {
  stroke: var(--cc-btn-secondary-color);
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}

#cc-main .pm__section-title-wrapper {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
  position: relative;
}

#cc-main .pm__section-title-wrapper + .pm__section-desc-wrapper {
  margin-top: 0.85em;
}

#cc-main .pm__section-title {
  border-radius: var(--cc-btn-border-radius);
  font-size: 0.95em;
  font-weight: 600;
}

#cc-main .pm__badge {
  -webkit-align-items: center;
          align-items: center;
  background: var(--cc-btn-secondary-bg);
  border-radius: 5em;
  color: var(--cc-secondary-color);
  display: -webkit-flex;
  display: flex;
  -webkit-flex: none;
          flex: none;
  font-size: 0.8em;
  font-weight: 600;
  height: 23px;
  -webkit-justify-content: center;
          justify-content: center;
  margin-left: 1em;
  min-width: 23px;
  overflow: hidden;
  padding: 0 0.6em 1px;
  position: relative;
  text-align: center;
  white-space: nowrap;
  width: auto;
}

#cc-main .pm__service-counter {
  background: var(--cc-btn-primary-bg);
  color: var(--cc-btn-primary-color);
  padding: 0;
  width: 23px;
}

#cc-main .pm__service-counter[data-counterlabel] {
  padding: 0 0.6em 1px;
  width: auto;
}

#cc-main .section__toggle, #cc-main .section__toggle-wrapper, #cc-main .toggle__icon, #cc-main .toggle__label {
  border-radius: var(--cc-pm-toggle-border-radius);
  height: 23px;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  width: 50px;
}

#cc-main .section__toggle-wrapper {
  cursor: pointer;
  position: absolute;
  right: 18px;
  z-index: 1;
}

#cc-main .toggle-service {
  height: 19px;
  position: relative;
  right: 0;
  width: 42px;
}

#cc-main .toggle-service .section__toggle, #cc-main .toggle-service .toggle__icon, #cc-main .toggle-service .toggle__label {
  height: 19px;
  width: 42px;
}

#cc-main .toggle-service .toggle__icon {
  position: relative;
}

#cc-main .toggle-service .toggle__icon-circle {
  height: 19px;
  width: 19px;
}

#cc-main .toggle-service .section__toggle:checked ~ .toggle__icon .toggle__icon-circle {
  -webkit-transform: translateX(23px);
          transform: translateX(23px);
}

#cc-main .pm__section--toggle:nth-child(2) .section__toggle-wrapper:after {
  display: none !important;
}

#cc-main .section__toggle {
  border: 0;
  cursor: pointer;
  display: block;
  left: 0;
  margin: 0;
  position: absolute;
  top: 0;
}

#cc-main .section__toggle:disabled {
  cursor: not-allowed;
}

#cc-main .toggle__icon {
  background: var(--cc-toggle-off-bg);
  box-shadow: 0 0 0 1px var(--cc-toggle-off-bg);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
          flex-direction: row;
  pointer-events: none;
  position: absolute;
  transition: all 0.25s ease;
}

#cc-main .toggle__icon-circle {
  background: var(--cc-toggle-off-knob-bg);
  border: none;
  border-radius: var(--cc-pm-toggle-border-radius);
  box-shadow: 0 1px 2px rgba(24, 32, 3, 0.36);
  display: block;
  height: 23px;
  left: 0;
  position: absolute;
  top: 0;
  transition: background-color 0.25s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, background-color 0.25s ease;
  transition: transform 0.25s ease, background-color 0.25s ease, -webkit-transform 0.25s ease;
  width: 23px;
}

#cc-main .toggle__icon-off, #cc-main .toggle__icon-on {
  height: 100%;
  position: absolute;
  transition: opacity 0.15s ease;
  width: 100%;
}

#cc-main .toggle__icon-on {
  opacity: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#cc-main .toggle__icon-on svg {
  stroke: var(--cc-toggle-on-bg);
  -webkit-transform: scale(0.55) rotate(-45deg);
          transform: scale(0.55) rotate(-45deg);
}

#cc-main .toggle__icon-off {
  opacity: 1;
}

#cc-main .toggle__icon-off svg {
  stroke: var(--cc-toggle-off-bg);
  -webkit-transform: scale(0.55);
          transform: scale(0.55);
}

#cc-main .section__toggle:checked ~ .toggle__icon {
  background: var(--cc-toggle-on-bg);
  box-shadow: 0 0 0 1px var(--cc-toggle-on-bg);
}

#cc-main .section__toggle:checked ~ .toggle__icon .toggle__icon-circle {
  background-color: var(--cc-toggle-on-knob-bg);
  -webkit-transform: translateX(27px);
          transform: translateX(27px);
}

#cc-main .section__toggle:checked ~ .toggle__icon .toggle__icon-on {
  opacity: 1;
}

#cc-main .section__toggle:checked ~ .toggle__icon .toggle__icon-off {
  opacity: 0;
}

#cc-main .section__toggle:checked:disabled ~ .toggle__icon {
  background: var(--cc-toggle-readonly-bg);
  box-shadow: 0 0 0 1px var(--cc-toggle-readonly-bg);
}

#cc-main .section__toggle:checked:disabled ~ .toggle__icon .toggle__icon-circle {
  background: var(--cc-toggle-readonly-knob-bg);
  box-shadow: none;
}

#cc-main .section__toggle:checked:disabled ~ .toggle__icon svg {
  stroke: var(--cc-toggle-readonly-knob-icon-color);
}

#cc-main .toggle__label {
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: -1;
}

#cc-main .pm__section-desc-wrapper {
  color: var(--cc-secondary-color);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  font-size: 0.9em;
}

#cc-main .pm__section-desc-wrapper > :not(:last-child) {
  border-bottom: 1px solid var(--cc-cookie-category-block-border);
}

#cc-main .pm__section-services {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
}

#cc-main .pm__service {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding: 0.4em 1.2em;
  position: relative;
  transition: background-color 0.15s ease;
}

#cc-main .pm__service:hover {
  background-color: var(--cc-cookie-category-block-hover-bg);
}

#cc-main .pm__service-header {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
  margin-right: 1em;
  width: 100%;
}

#cc-main .pm__service-icon {
  border: 2px solid;
  border-radius: 100%;
  height: 8px;
  margin-left: 6px;
  margin-right: 20px;
  margin-top: 1px;
  min-width: 8px;
}

#cc-main .pm__service-title {
  font-size: 0.95em;
  width: 100%;
  word-break: break-word;
}

#cc-main .pm__section-desc {
  line-height: 1.5em;
}

#cc-main .pm__section-table {
  border-collapse: collapse;
  font-size: 0.9em;
  margin: 0;
  overflow: hidden;
  padding: 0;
  text-align: left;
  width: 100%;
}

#cc-main .pm__table-caption {
  text-align: left;
}

#cc-main .pm__table-caption, #cc-main .pm__table-head > tr {
  border-bottom: 1px dashed var(--cc-separator-border-color);
  color: var(--cc-primary-color);
  font-weight: 600;
}

#cc-main .pm__table-tr {
  transition: background-color 0.15s ease;
}

#cc-main .pm__table-tr:hover {
  background: var(--cc-cookie-category-block-hover-bg);
}

#cc-main .pm__table-caption, #cc-main .pm__table-td, #cc-main .pm__table-th {
  padding: 0.625em 0.625em 0.625em 1.2em;
  vertical-align: top;
}

#cc-main .pm__footer {
  border-top: 1px solid var(--cc-separator-border-color);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

#cc-main .pm__btn-group {
  display: -webkit-flex;
  display: flex;
}

#cc-main .pm__btn + .pm__btn, #cc-main .pm__btn-group + .pm__btn-group {
  margin-left: 0.375rem;
}

#cc-main .pm--flip .pm__btn + .pm__btn, #cc-main .pm--flip .pm__btn-group + .pm__btn-group {
  margin-left: 0;
  margin-right: 0.375rem;
}

#cc-main .pm__btn {
  background: var(--cc-btn-primary-bg);
  border: 1px solid var(--cc-btn-primary-border-color);
  border-radius: var(--cc-btn-border-radius);
  color: var(--cc-btn-primary-color);
  -webkit-flex: auto;
          flex: auto;
  font-size: 0.82em;
  font-weight: 600;
  min-height: 42px;
  min-width: 110px;
  padding: 0.5em 1.5em;
  text-align: center;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

#cc-main .pm__btn:hover {
  background: var(--cc-btn-primary-hover-bg);
  border-color: var(--cc-btn-primary-hover-border-color);
  color: var(--cc-btn-primary-hover-color);
}

#cc-main .pm__btn--secondary {
  background: var(--cc-btn-secondary-bg);
  border-color: var(--cc-btn-secondary-border-color);
  color: var(--cc-btn-secondary-color);
}

#cc-main .pm__btn--secondary:hover {
  background: var(--cc-btn-secondary-hover-bg);
  border-color: var(--cc-btn-secondary-hover-border-color);
  color: var(--cc-btn-secondary-hover-color);
}

#cc-main .pm--box {
  height: calc(100% - 2em);
  left: var(--cc-modal-margin);
  margin: 0 auto;
  max-height: 37.5em;
  max-width: 43em;
  right: var(--cc-modal-margin);
  top: 50%;
  -webkit-transform: translateY(calc(-50% + 1.6em));
          transform: translateY(calc(-50% + 1.6em));
}

#cc-main .pm--box.pm--flip .pm__btn-group, #cc-main .pm--box.pm--flip .pm__footer {
  -webkit-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

#cc-main .pm--bar {
  border-radius: 0;
  bottom: 0;
  height: 100%;
  margin: 0;
  max-height: none;
  max-width: 29em;
  opacity: 1;
  top: 0;
  width: 100%;
  --cc-modal-transition-duration:.35s;
}

#cc-main .pm--bar .pm__section-table, #cc-main .pm--bar .pm__table-body, #cc-main .pm--bar .pm__table-td, #cc-main .pm--bar .pm__table-th, #cc-main .pm--bar .pm__table-tr {
  display: block;
}

#cc-main .pm--bar .pm__table-head {
  display: none;
}

#cc-main .pm--bar .pm__table-caption {
  display: block;
}

#cc-main .pm--bar .pm__table-tr:not(:last-child) {
  border-bottom: 1px solid var(--cc-separator-border-color);
}

#cc-main .pm--bar .pm__table-td {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

#cc-main .pm--bar .pm__table-td:before {
  color: var(--cc-primary-color);
  content: attr(data-column);
  -webkit-flex: 1;
          flex: 1;
  font-weight: 600;
  min-width: 100px;
  overflow: hidden;
  padding-right: 2em;
  text-overflow: ellipsis;
}

#cc-main .pm--bar .pm__table-td > div {
  -webkit-flex: 3;
          flex: 3;
}

#cc-main .pm--bar:not(.pm--wide) .pm__body, #cc-main .pm--bar:not(.pm--wide) .pm__footer, #cc-main .pm--bar:not(.pm--wide) .pm__header {
  padding: 1em 1.3em;
}

#cc-main .pm--bar:not(.pm--wide) .pm__btn-group, #cc-main .pm--bar:not(.pm--wide) .pm__footer {
  -webkit-flex-direction: column;
          flex-direction: column;
}

#cc-main .pm--bar:not(.pm--wide) .pm__btn + .pm__btn, #cc-main .pm--bar:not(.pm--wide) .pm__btn-group + .pm__btn-group {
  margin: 0.375rem 0 0;
}

#cc-main .pm--bar:not(.pm--wide).pm--flip .pm__btn-group, #cc-main .pm--bar:not(.pm--wide).pm--flip .pm__footer {
  -webkit-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

#cc-main .pm--bar:not(.pm--wide).pm--flip .pm__btn + .pm__btn, #cc-main .pm--bar:not(.pm--wide).pm--flip .pm__btn-group + .pm__btn-group {
  margin-bottom: 0.375rem;
  margin-top: 0;
}

#cc-main .pm--bar:not(.pm--wide) .pm__badge {
  display: none;
}

#cc-main .pm--bar.pm--left {
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

#cc-main .pm--bar.pm--right {
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

#cc-main .pm--bar.pm--wide {
  max-width: 35em;
}

#cc-main .pm--bar.pm--wide .pm__body, #cc-main .pm--bar.pm--wide .pm__footer, #cc-main .pm--bar.pm--wide .pm__header {
  padding: 1em 1.4em;
}

#cc-main .pm--bar.pm--wide.pm--flip .pm__btn-group, #cc-main .pm--bar.pm--wide.pm--flip .pm__footer {
  -webkit-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

#cc-main .pm-overlay {
  background: var(--cc-overlay-bg);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
  z-index: 1;
}

#cc-main .cc--anim .pm, #cc-main .cc--anim .pm-overlay {
  transition: opacity var(--cc-modal-transition-duration) ease, visibility var(--cc-modal-transition-duration) ease, -webkit-transform var(--cc-modal-transition-duration) ease;
  transition: opacity var(--cc-modal-transition-duration) ease, visibility var(--cc-modal-transition-duration) ease, transform var(--cc-modal-transition-duration) ease;
  transition: opacity var(--cc-modal-transition-duration) ease, visibility var(--cc-modal-transition-duration) ease, transform var(--cc-modal-transition-duration) ease, -webkit-transform var(--cc-modal-transition-duration) ease;
}

.show--preferences #cc-main .cc--anim .pm {
  opacity: 1;
  visibility: visible !important;
}

.show--preferences #cc-main .cc--anim .pm--box {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.show--preferences #cc-main .cc--anim .pm--bar {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.show--preferences #cc-main .cc--anim .pm-overlay {
  opacity: 1;
  visibility: visible;
}

#cc-main.cc--rtl .pm__service-header {
  margin-left: 1em;
  margin-right: 0;
}

#cc-main.cc--rtl .pm__section-arrow {
  left: unset;
  right: 18px;
}

#cc-main.cc--rtl .section__toggle-wrapper {
  left: 18px;
  right: unset;
  -webkit-transform-origin: left;
          transform-origin: left;
}

#cc-main.cc--rtl .toggle-service {
  left: 0;
}

#cc-main.cc--rtl .pm__service-icon {
  margin-left: 20px;
  margin-right: 5px;
}

#cc-main.cc--rtl .pm__section--toggle .pm__section-title {
  padding-left: 5.4em;
  padding-right: 1.2em;
}

#cc-main.cc--rtl .pm__section--expandable .pm__section-title {
  padding-right: 3.4em;
}

#cc-main.cc--rtl .pm__badge {
  margin-left: unset;
  margin-right: 1em;
}

#cc-main.cc--rtl .toggle__icon-circle {
  -webkit-transform: translateX(27px);
          transform: translateX(27px);
}

#cc-main.cc--rtl .toggle-service .toggle__icon-circle {
  -webkit-transform: translateX(23px);
          transform: translateX(23px);
}

#cc-main.cc--rtl .section__toggle:checked ~ .toggle__icon .toggle__icon-circle {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

#cc-main.cc--rtl .pm__table-td, #cc-main.cc--rtl .pm__table-th {
  padding-left: unset;
  padding-right: 1.2em;
  text-align: right;
}

#cc-main.cc--rtl .pm__table-td {
  padding-left: unset;
  padding-right: 1.2em;
}

#cc-main.cc--rtl .pm__table-td:before {
  padding-left: 2em;
  padding-right: unset;
}

#cc-main.cc--rtl .pm__btn + .pm__btn, #cc-main.cc--rtl .pm__btn-group + .pm__btn-group {
  margin-left: 0;
  margin-right: 0.375rem;
}

#cc-main.cc--rtl .pm--flip .pm__btn + .pm__btn, #cc-main.cc--rtl .pm--flip .pm__btn-group + .pm__btn-group {
  margin-left: 0.375rem;
  margin-right: 0;
}

#cc-main.cc--rtl .pm--flip.pm--bar:not(.pm--wide) .pm__btn + .pm__btn, #cc-main.cc--rtl .pm--flip.pm--bar:not(.pm--wide) .pm__btn-group + .pm__btn-group {
  margin-left: 0;
}

@media screen and (max-width: 640px) {
  #cc-main .pm {
    border-radius: 0;
    bottom: 0;
    height: auto;
    left: 0;
    max-height: 100%;
    max-width: none !important;
    right: 0;
    top: 0;
    -webkit-transform: translateY(1.6em);
            transform: translateY(1.6em);
  }
  #cc-main .pm__body, #cc-main .pm__footer, #cc-main .pm__header {
    padding: 0.9em !important;
  }
  #cc-main .pm__badge {
    display: none;
  }
  #cc-main .pm__section-table, #cc-main .pm__table-body, #cc-main .pm__table-caption, #cc-main .pm__table-td, #cc-main .pm__table-th, #cc-main .pm__table-tr {
    display: block;
  }
  #cc-main .pm__table-head {
    display: none;
  }
  #cc-main .pm__table-tr:not(:last-child) {
    border-bottom: 1px solid var(--cc-separator-border-color);
  }
  #cc-main .pm__table-td {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }
  #cc-main .pm__table-td:before {
    color: var(--cc-primary-color);
    content: attr(data-column);
    -webkit-flex: 1;
            flex: 1;
    font-weight: 600;
    min-width: 100px;
    overflow: hidden;
    padding-right: 2em;
    text-overflow: ellipsis;
  }
  #cc-main .pm__table-td > div {
    -webkit-flex: 3;
            flex: 3;
  }
  #cc-main .pm__btn-group, #cc-main .pm__footer {
    -webkit-flex-direction: column !important;
            flex-direction: column !important;
  }
  #cc-main .pm__btn-group {
    display: -webkit-flex !important;
    display: flex !important;
  }
  #cc-main .pm__btn + .pm__btn, #cc-main .pm__btn-group + .pm__btn-group {
    margin: 0.375rem 0 0 !important;
  }
  #cc-main .pm--flip .pm__btn + .pm__btn, #cc-main .pm--flip .pm__btn-group + .pm__btn-group {
    margin-bottom: 0.375rem !important;
    margin-top: 0 !important;
  }
  #cc-main .pm--flip .pm__btn-group, #cc-main .pm--flip .pm__footer {
    -webkit-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .show--preferences #cc-main .cc--anim .pm {
    -webkit-transform: translateY(0) !important;
            transform: translateY(0) !important;
  }
}
#cc-main {
  --cc-primary-color: #000;
  --cc-bg: rgba(0, 0, 0, 0.7);
  --cc-btn-border-radius: 1000px;
  --cc-btn-primary-bg: #ff8100;
  --cc-btn-primary-color: var(--cc-primary-color);
  --cc-btn-primary-border-color: var(--cc-primary-color);
  --cc-secondary-color: #fff;
  --cc-btn-primary-hover-bg: var(--cc-btn-primary-bg);
  --cc-btn-primary-hover-color: var(--cc-btn-primary-color);
  --cc-z-index: 800;
  border-radius: 0 0 16px 16px;
  bottom: var(--frame-border-width);
  font-family: inherit;
  left: var(--frame-border-width);
  overflow: hidden;
  position: -webkit-sticky;
  position: sticky;
  width: calc(100% - var(--frame-border-width) * 2);
}
#cc-main:has(.cm--bar[aria-hidden=true]) {
  position: absolute;
}
#cc-main .cm__desc {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
  padding: 0 !important;
}
#cc-main .cm__texts {
  padding: 0;
}
#cc-main .cm__btns {
  border: none !important;
  padding: 0 !important;
}
#cc-main a {
  background-image: none;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: underline;
  transition: opacity 0.1s ease-out;
}
#cc-main a:hover {
  color: inherit;
  opacity: 0.4;
}
#cc-main .cm--bar {
  box-shadow: none;
  padding: 8px 0;
  position: static;
  width: 100%;
}
@media (max-width: 768px) {
  #cc-main .cm--bar {
    padding: 24px 0;
  }
}
#cc-main .cm--bar .cm__body {
  -webkit-align-items: center;
          align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) auto;
  max-width: 1120px;
  padding: 0 24px !important;
}
@media (max-width: 768px) {
  #cc-main .cm--bar .cm__body {
    gap: 8px;
  }
}
#cc-main .cm--bar .cm__btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #ff8100 url(../images/common/texture_button.png) no-repeat center/cover;
  border: 1px solid #000;
  border-radius: 1000px;
  display: grid;
  font-weight: 500;
  grid-auto-columns: minmax(0, 1fr);
  line-height: 1.6;
  min-height: 38px;
  min-width: 83px;
  padding: 8px 16px;
  place-items: center;
  text-align: center;
  transition: opacity 0.1s ease-out;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#cc-main .cm--bar .cm__btn:hover {
  opacity: 0.4;
}

.asideContact {
  background: url(../images/common/img_bg_aside_contact.jpg) no-repeat center/cover;
  color: #80705e;
  padding: 120px 0;
}
@media (max-width: 768px) {
  .asideContact {
    padding: 64px 0;
  }
}
@media (max-width: 768px) {
  .asideContact__container {
    padding: 0 24px;
  }
}
.asideContact__inner {
  display: grid;
  gap: 24px;
  justify-items: center;
}
.asideContact__title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  text-align: center;
}
.asideContact__title::before {
  content: url(../images/common/img_aside_contact_text.svg);
  left: 0;
  position: absolute;
  top: 0;
  translate: -20.9580838323% -33.9425587467%;
  z-index: 0;
}
.asideContact__titleText {
  font-size: inherit;
  font-weight: inherit;
  position: relative;
  z-index: 1;
}
.asideContact__text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}
.asideContact__buttonList {
  color: #000;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 24px;
  -webkit-justify-content: center;
          justify-content: center;
  width: 100%;
}
@media (max-width: 768px) {
  .asideContact__button {
    width: 100%;
  }
}

.backToTop {
  display: grid;
  font-size: 1.2rem;
  font-weight: 500;
  gap: 5px;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  line-height: 1.6;
  overflow: visible;
  text-align: center;
  width: 76px;
}
@media (max-width: 768px) {
  .backToTop {
    font-size: 1rem;
    width: 64px;
  }
}
.backToTop::before {
  aspect-ratio: 76/92;
  background: url(../images/common/img_back_to_page_default.png) no-repeat center/contain;
  content: "";
  grid-column: 1/-1;
  grid-row: 2/span 1;
  place-self: flex-start center;
  transition: opacity 0.1s ease-out;
  width: 100%;
}
.backToTop__bubble {
  background: #fff;
  border-radius: 1000px;
  font-size: inherit;
  font-weight: inherit;
  grid-column: 1/-1;
  grid-row: 1/span 1;
  padding: 0 8px;
  place-self: flex-start center;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .backToTop__bubble {
    padding: 0 6.67px;
  }
}
.backToTop__bubble::before {
  aspect-ratio: 10/7;
  background: #fff;
  content: "";
  display: block;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg width="10" height="7" viewBox="0 0 10 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 6C4.8 3.6 3 1.66667 2 1L0.5 0H10C7.66667 3 3.2 8.4 4 6Z" fill="white"/></svg>') no-repeat center top/contain;
          mask: url('data:image/svg+xml;utf8,<svg width="10" height="7" viewBox="0 0 10 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 6C4.8 3.6 3 1.66667 2 1L0.5 0H10C7.66667 3 3.2 8.4 4 6Z" fill="white"/></svg>') no-repeat center top/contain;
  position: absolute;
  right: 0;
  top: 100%;
  translate: -14px;
  width: 13.1578947368%;
}
.backToTop__text {
  font-size: inherit;
  font-weight: inherit;
}

.footer {
  padding: 0 0 8px;
  position: relative;
}
.footer__backToTopWrap {
  display: grid;
  justify-items: flex-end;
  left: 0;
  overflow: hidden;
  padding: 0 7.1875% 0 8px;
  position: absolute;
  translate: 0 -38%;
  width: 100%;
}
@media (max-width: 768px) {
  .footer__backToTopWrap {
    padding-right: 5.6%;
    translate: 0 -49.5%;
  }
}
.footer__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.footer__detail {
  background: #82bc3b url(../images/common/texture_footer_bg.png) no-repeat center/cover;
  color: #fff;
  display: grid;
  padding: 64px 0 65px;
  place-items: flex-start center;
}
.footer__detailContainer {
  max-width: calc(72.5% + 32px + 48px);
}
@media (max-width: 768px) {
  .footer__detailContainer {
    max-width: unset;
    padding: 0 24px;
  }
}
.footer__detailInner {
  display: grid;
  gap: 24px;
  grid-auto-columns: minmax(0, 1fr);
  padding-left: 32px;
}
@media (max-width: 768px) {
  .footer__detailInner {
    justify-items: center;
    padding-left: 0;
    text-align: center;
  }
}
.footer__logo {
  display: block;
  max-width: 100%;
  width: 240px;
}
.footer__logoImg {
  display: block;
}
.footer__address {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
}
.footer__addressText {
  font-size: inherit;
  font-weight: inherit;
}
.footer__detailText {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
}
.footer__snsList {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 768px) {
  .footer__snsList {
    -webkit-justify-content: center;
            justify-content: center;
    width: 100%;
  }
}
.footer__snsItem {
  min-width: min(140px, 100%);
}
.footer__snsLink {
  border-color: transparent;
  color: #000;
  font-size: 1.4rem;
  gap: 8px;
  grid-template-columns: -webkit-max-content auto;
  grid-template-columns: max-content auto;
  -webkit-justify-content: center;
          justify-content: center;
  line-height: 1.6;
  min-height: 38px;
  padding: 6px 16px;
}
.footer__snsLinkIcon {
  aspect-ratio: 1;
  width: 16px;
}
.footer__menu {
  background: #579509 url(../images/common/texture_footer_bg.png) no-repeat center/cover;
  color: #fff;
  display: grid;
  padding: 64px 0 65px;
  place-items: flex-start center;
}
.footer__menuContainer {
  max-width: calc(64.21875% + 32px + 48px);
  width: 100%;
}
@media (max-width: 768px) {
  .footer__menuContainer {
    max-width: unset;
    padding: 0 24px;
  }
}
.footer__menuInner {
  -webkit-align-items: flex-start;
          align-items: flex-start;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 24px 15.8150851582%;
  padding-right: 32px;
}
@media (max-width: 768px) {
  .footer__menuInner {
    display: grid;
    padding-right: 0;
    text-align: center;
  }
}
.footer__nav {
  display: grid;
  gap: 16px;
}
.footer__navList {
  display: grid;
  gap: 16px;
}
.footer__navLink {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}
.footer__houseMaker {
  display: grid;
  gap: 16px;
}
.footer__houseMakerTitle {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}
.footer__houseMakerList {
  display: grid;
  gap: 4px;
}
@media (max-width: 768px) {
  .footer__houseMakerList {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 16px;
    -webkit-justify-content: center;
            justify-content: center;
  }
}
.footer__houseMakerItem {
  -webkit-align-items: center;
          align-items: center;
  display: grid;
  font-size: 1.2rem;
  font-weight: 500;
  gap: 3px;
  grid-template-columns: -webkit-max-content auto;
  grid-template-columns: max-content auto;
  line-height: 1.6;
}
.footer__houseMakerItem::before {
  aspect-ratio: 6/7;
  background: #f3cc00;
  content: "";
  -webkit-mask: url('data:image/svg+xml;utf8,<svg width="6" height="7" viewBox="0 0 6 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.5 0.5L4.5 3.5L0.5 6.5" stroke="%23F3CC00"/></svg>') no-repeat center/auto 100%;
          mask: url('data:image/svg+xml;utf8,<svg width="6" height="7" viewBox="0 0 6 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.5 0.5L4.5 3.5L0.5 6.5" stroke="%23F3CC00"/></svg>') no-repeat center/auto 100%;
  width: 0.5em;
}
.footer__houseMakerLink {
  font-size: inherit;
  font-weight: inherit;
}
.footer__copy {
  grid-column: 1/span 2;
  grid-row: span 1;
  padding: 24px 0;
}
@media (max-width: 768px) {
  .footer__copy {
    grid-column: auto;
  }
}
.footer__copyContainer {
  max-width: 1120px;
}
@media (max-width: 768px) {
  .footer__copyContainer {
    padding: 0 24px;
  }
}
.footer__copyText {
  color: #a3a29d;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
}

.hamButton {
  -webkit-align-content: flex-start;
          align-content: flex-start;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  aspect-ratio: 1;
  background: transparent;
  border: none;
  color: #000;
  display: grid;
  font-size: 1rem;
  font-weight: 500;
  gap: 4px;
  justify-items: center;
  letter-spacing: -0.1em;
  line-height: 1;
  padding: 0;
  padding-top: 5px;
  width: 40px;
}
.hamButton__icon {
  -webkit-align-content: center;
          align-content: center;
  display: grid;
  gap: 8px;
  height: 22px;
  justify-items: center;
  transition: gap 0.1s ease-out;
  width: 32px;
}
.hamButton__iconLine {
  background: #22a720;
  height: 2px;
  transition-duration: 0.1s;
  transition-property: opacity, translate, rotate;
  transition-timing-function: ease-out;
  width: 100%;
}
.hamButton__text {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.header {
  background: #fff;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.04);
  container: header/inline-size;
  height: var(--header-height);
  left: 8px;
  padding: 16px 0;
  pointer-events: none;
  position: fixed;
  right: 8px;
  top: 8px;
  z-index: 900;
}
@media (max-width: 1024px) {
  .header {
    background: transparent;
    box-shadow: none;
    left: 0;
    padding: 0;
    right: 0;
    top: 8px;
  }
}
.header__container {
  margin: 0 auto;
  padding: 0 56px;
}
@media (max-width: 1200px) {
  .header__container {
    padding: 0 16px 0 24px;
  }
}
@media (max-width: 1024px) {
  .header__container {
    padding: 0;
  }
}
.header__inner {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
}
@media (max-width: 1024px) {
  .header__inner {
    display: contents;
  }
}
.header__content {
  display: contents;
}
@media (max-width: 1024px) {
  .header__content {
    -webkit-align-items: flex-start;
            align-items: flex-start;
    display: grid;
    gap: 8px;
    grid-template-columns: -webkit-max-content auto;
    grid-template-columns: max-content auto;
    padding: 16px 16px 0 0;
  }
}
.header__drawer {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
  gap: 66px;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  pointer-events: auto;
}
@media (max-width: 1200px) {
  .header__drawer {
    gap: 24px;
  }
}
@media (max-width: 1024px) {
  .header__drawer {
    -webkit-align-items: flex-start;
            align-items: flex-start;
    background: #fff;
    border-right: 2px solid #22a720;
    display: grid;
    gap: 24px;
    grid-auto-rows: -webkit-max-content;
    grid-auto-rows: max-content;
    height: 100dvh;
    -webkit-justify-content: stretch;
            justify-content: stretch;
    left: 0;
    max-width: calc(100% - 65px);
    overflow: auto;
    overscroll-behavior: contain;
    padding: 30px 30px 32px;
    position: fixed;
    top: 0;
    transition: translate 0.1s ease-out;
    translate: -100% 0;
    width: 310px;
    z-index: 1;
  }
}
.header__logoWrap {
  -webkit-align-self: center;
          align-self: center;
  pointer-events: auto;
  width: 100%;
}
@media (max-width: 1024px) {
  .header__logoWrap {
    -webkit-align-items: center;
            align-items: center;
    background: #fff;
    border: 2px solid #22a720;
    border-left: none;
    border-radius: 0 1000px 1000px 0;
    display: grid;
    gap: 16px;
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: auto 1fr;
    margin: 0;
    max-width: none;
    padding: 9px 18px 11px 12px;
    place-self: auto;
    position: relative;
    position: relative;
    transition: translate 0.1s ease-out;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 2;
  }
}
@media (max-width: 1024px) {
  .header__logoWrap::before {
    background: #fff;
    bottom: 0;
    content: "";
    left: -2px;
    position: absolute;
    top: 0;
    width: 2px;
    z-index: 10;
  }
}
.header__hamButton {
  display: none;
}
@media (max-width: 1024px) {
  .header__hamButton {
    display: grid;
  }
}
.header__logo {
  width: 155px;
}
@media (max-width: 1200px) {
  .header__logo {
    width: 140px;
  }
}
@media (max-width: 1024px) {
  .header__logo {
    margin-top: 3px;
    width: 120px;
  }
}
.header__logoLink {
  display: block;
}
.header__logoPic {
  display: block;
}
.header__logoPic_type_top {
  display: none;
}
.header__navList {
  display: -webkit-flex;
  display: flex;
  gap: 24px;
}
@media (max-width: 1200px) {
  .header__navList {
    gap: 16px;
  }
}
@media (max-width: 1024px) {
  .header__navList {
    display: grid;
  }
}
.header__navLink {
  -webkit-align-items: center;
          align-items: center;
  border-bottom: 1px dashed #a3a29d;
  display: grid;
  font-weight: 500;
  gap: 8px;
  grid-auto-flow: column;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  line-height: 1.6;
  padding: 4px 0;
}
.header__navIcon {
  --header-nav-icon: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="16" fill="none" viewBox="0 0 18 16"><g clip-path="url(%23a)"><path fill="%23FC7B74" d="M2.2806 7.39056C2.2473 7.817 2.2428 8.24608 2.3004 8.66989C2.3022 8.68132 2.3121 8.69099 2.3139 8.70154C2.3121 8.69011 2.3022 8.68044 2.3004 8.66989C2.151 8.72089 1.8369 8.76309 1.7073 8.82991C1.4517 8.9618 1.4787 9.09106 1.1673 9.18162C1.0449 9.21767 0.0512981 9.3988 0.00629813 9.36187C-0.0162019 8.89762 0.0233981 8.43161 0.0359981 7.96648C0.567898 8.03858 0.107098 7.62796 0.675898 7.4864C0.858598 7.44067 1.0512 7.4398 1.2654 7.39056C1.2708 7.38968 1.2897 7.47145 1.3473 7.45474C1.3851 7.44331 1.4868 7.24899 1.6416 7.19888C2.2437 7.00632 1.8081 7.47936 2.2797 7.39056H2.2806Z" /><path fill="%23FDBB00" d="M0.862997 6.55263C0.774797 6.92192 1.0898 6.92544 1.2005 7.05381C1.2239 7.08107 1.1456 7.11976 1.1681 7.14965C1.1798 7.16548 1.2617 7.18834 1.2662 7.19801C1.2905 7.25253 1.3049 7.33694 1.2662 7.38969C1.052 7.43981 0.859397 7.43981 0.676697 7.48553C0.470597 7.30089 0.378797 7.14086 0.0646973 7.19274C0.0781973 6.94303 0.0619973 6.68804 0.111497 6.44184C0.149297 6.41371 0.759497 6.53065 0.863897 6.55175L0.862997 6.55263Z" /><path fill="%23FBE77E" d="M1.26547 7.19616C1.26097 7.18649 1.17907 7.16363 1.16737 7.1478C1.14577 7.11791 1.22407 7.07922 1.19977 7.05196C1.08997 6.92359 0.774967 6.92007 0.862267 6.55078C0.939667 6.56661 1.37887 6.62024 1.39417 6.64222C1.41667 6.67476 1.37797 6.81368 1.39597 6.86028C1.40947 6.89633 1.50127 6.92623 1.49407 6.98866C1.49137 7.01679 1.29877 7.16099 1.26457 7.19616H1.26547Z" /><path fill="%23F3CE16" d="M16.7461 9.47702C16.7479 9.448 16.7551 9.41899 16.7569 9.38997C16.7902 8.87033 16.9414 8.31551 16.9477 7.79762C16.9549 7.15664 16.783 6.3908 16.7434 5.73047C16.9009 5.76564 16.9738 5.90193 17.08 5.99777C18.2572 7.04849 18.3904 8.41663 16.9702 9.3337C16.8946 9.38294 16.8136 9.41811 16.7452 9.47702H16.7461Z" /><path fill="%23FC7B74" d="M7.73275 6.52822C7.74715 7.41892 7.82635 9.69973 7.63285 10.4585C7.61755 10.5175 7.60315 10.5597 7.57345 10.6107C7.32865 10.535 7.15225 10.535 6.91645 10.4867C6.90475 10.484 6.89305 10.484 6.88225 10.4823C6.24145 10.3513 5.58715 10.2546 4.94365 10.1279C5.11375 9.57576 4.26595 9.81228 4.21285 9.70765C4.20385 9.69094 4.32265 9.44211 4.29475 9.40342C4.01215 9.53267 3.47305 9.24691 3.36145 9.00336C3.34705 8.97258 3.28495 8.58922 3.32905 8.55581C3.38755 8.51009 3.55405 8.56988 3.59095 8.52416L3.49285 8.39578L3.54235 8.31577C3.75205 8.22608 4.19395 8.51448 4.22995 8.50745C4.27405 8.49954 4.14895 8.3316 4.26235 8.28324C4.49365 8.53471 4.83565 8.27269 4.88425 8.28324C4.89955 8.28675 4.90855 8.36853 4.94995 8.37908C5.26135 8.45821 5.06785 8.28324 5.14615 8.21905C5.18215 8.19004 5.50975 8.45469 5.60425 8.44326C5.67715 8.43535 5.77615 8.29291 5.68615 8.23576L5.80045 8.1874C5.88145 8.42392 6.02455 8.41864 6.19375 8.60329C6.34135 8.21905 6.10645 8.2762 6.04615 8.20322C6.02005 8.17157 6.02365 7.9878 5.99665 7.96318C5.97955 7.94648 5.72665 7.94208 5.68525 7.91483C5.64925 7.89108 5.43055 7.16393 5.40715 7.73897C5.10655 7.59213 4.88605 7.81547 4.62145 7.77063C4.21195 7.70116 4.59625 7.48311 4.32715 7.25889C3.96085 7.28439 3.70165 7.16833 3.32815 7.22724C3.35155 7.03644 3.86365 7.01358 4.04815 6.97137C4.84105 6.78936 5.93905 6.59505 6.74995 6.61967C6.86425 6.62318 7.05955 6.7498 7.07755 6.74804C7.09285 6.7454 7.20175 6.59417 7.32325 6.55636C7.41505 6.52734 7.62835 6.5291 7.73275 6.52734V6.52822Z" /><path fill="%232B5E49" d="M5.87888 11.2969C5.88968 11.2969 5.90138 11.2969 5.91218 11.2969C5.90228 11.3558 5.92388 11.4068 5.93738 11.4604C6.20828 12.5041 6.93818 13.7149 7.32968 14.748C7.01918 14.7445 6.86798 14.9001 6.63578 15.0522C6.60608 15.0716 6.68978 15.1146 6.65198 15.1322C6.58988 15.1612 6.28658 15.0127 6.45578 14.9406C6.65468 15.2017 6.58628 14.8394 6.57008 14.8289C6.52958 14.8016 6.39908 14.8746 6.32438 14.8447C6.28748 14.8298 6.17048 14.5563 6.17678 14.5405C6.18488 14.522 6.42518 14.2829 6.47108 14.253C6.10298 14.2767 6.27578 13.9399 6.24158 13.8371C6.21548 13.7579 5.89598 13.7421 5.84828 13.6129C5.84468 13.6041 5.94548 13.4625 5.94638 13.4528C5.98418 12.9701 5.94638 13.1512 5.66828 12.7969C5.51528 13.0167 5.47208 12.6852 5.43878 12.6685C5.30468 12.6008 4.63058 12.8119 4.42358 12.7327C4.55138 13.0827 4.93028 12.8277 5.19308 12.9728L5.14358 13.0528C5.22818 13.0686 5.41268 12.9974 5.38928 13.1328C5.35418 13.2418 4.90508 13.1108 4.83218 13.2612L5.01218 13.5328L4.36058 13.6612C4.10588 13.015 3.78368 12.155 3.61808 11.4903C3.60458 11.434 3.57758 11.383 3.59018 11.3233C4.21568 11.3848 5.22008 11.3215 5.87618 11.2969H5.87888Z" /><path fill="%23FE0000" d="M4.94374 10.1306C4.32004 10.0084 3.64324 9.90638 3.03124 9.75427C2.88094 9.71646 2.57764 9.69975 2.48134 9.58193C2.43724 9.52742 2.33104 8.83192 2.31304 8.70354C2.31124 8.69211 2.30134 8.68244 2.29954 8.67189C2.24284 8.24721 2.24644 7.819 2.27974 7.39256C2.28244 7.36091 2.28964 7.32925 2.29324 7.29672C2.52994 7.17978 2.61364 7.49455 2.68924 7.4884C2.70904 7.48664 2.79364 7.36794 2.82064 7.36003C2.92504 7.33189 3.25444 7.24396 3.32824 7.23165C3.70174 7.17274 3.96094 7.28968 4.32724 7.26331C4.59724 7.48752 4.21294 7.70558 4.62154 7.77504C4.88704 7.81988 5.10664 7.59567 5.40724 7.74339C5.43154 7.16835 5.64934 7.8955 5.68534 7.91924C5.72584 7.9465 5.97874 7.95089 5.99674 7.9676C6.02284 7.99222 6.02014 8.17599 6.04624 8.20764C6.10564 8.28062 6.34144 8.22347 6.19384 8.6077C6.02464 8.42306 5.88244 8.42833 5.80054 8.19181L5.68624 8.24017C5.77624 8.2982 5.67724 8.44064 5.60434 8.44768C5.50984 8.45999 5.18134 8.19445 5.14624 8.22347C5.06794 8.28765 5.26144 8.46263 4.95004 8.38349C4.90864 8.37294 4.89964 8.29117 4.88434 8.28765C4.83574 8.2771 4.49374 8.53912 4.26244 8.28765C4.14904 8.33601 4.27414 8.50395 4.23004 8.51186C4.19404 8.51802 3.75214 8.22962 3.54244 8.32018L3.49294 8.4002L3.59104 8.52857C3.55414 8.57517 3.38764 8.51538 3.32914 8.56022C3.28504 8.59364 3.34804 8.977 3.36154 9.00777C3.47314 9.25133 4.01224 9.53621 4.29484 9.40784C4.32274 9.44564 4.20484 9.69536 4.21294 9.71206C4.26694 9.81582 5.11384 9.57929 4.94374 10.1324V10.1306Z" /><path fill="%23FDBB00" d="M7.72394 5.58738C7.76354 5.81687 7.73024 6.07185 7.73654 6.30486C7.62854 6.3031 7.45574 6.30222 7.35674 6.27145C7.34234 6.26705 7.28474 6.11142 7.11104 6.14308C7.02554 6.1589 6.98954 6.26969 6.97964 6.27145C6.72854 6.30926 6.36854 6.24683 6.12824 6.27145C6.08504 6.27584 5.87084 6.38927 5.76824 6.39982C5.44154 6.43235 4.91234 6.3541 4.62254 6.43147C4.51454 6.46049 4.66214 6.51676 4.62254 6.52731C4.32374 6.60733 3.56954 6.48071 3.21494 6.49566C3.18524 6.49654 3.21224 6.58974 3.18254 6.5915C2.91974 6.60557 2.66864 6.55457 2.40674 6.55985C2.52914 6.04987 2.42024 5.98481 2.97014 5.81159C3.84134 5.53638 5.49824 5.31393 6.44144 5.20402C6.70784 5.17325 7.33784 5.04575 7.55474 5.18468C7.56374 5.18995 7.58174 5.18028 7.58714 5.18468C7.65104 5.23391 7.70954 5.49857 7.72484 5.58826L7.72394 5.58738Z" /><path fill="%236CB496" d="M4.94392 10.1302C5.58742 10.256 6.24172 10.3536 6.88252 10.4846C6.89422 10.4872 6.90592 10.4872 6.91672 10.489L6.90052 10.6217C6.97342 11.4526 6.48382 11.2742 5.91232 11.297C5.90152 11.297 5.88982 11.297 5.87902 11.297C5.22292 11.3216 4.21852 11.3849 3.59302 11.3234C2.72632 11.2381 3.16552 10.5391 3.03052 9.91833L3.03232 9.75391C3.64342 9.9069 4.32022 10.008 4.94482 10.1302H4.94392Z" /><path fill="%2350A77D" d="M7.34924 14.7815C7.37714 14.8554 7.41944 14.931 7.44104 15.0057C7.03064 14.9205 7.20164 15.1895 7.14314 15.23C7.00004 15.3284 6.23324 15.0137 6.40604 15.6907C6.12254 15.7065 5.44574 15.7672 5.24054 15.5817C5.01014 15.3733 4.50884 14.0315 4.36304 13.6622L5.01464 13.5339L4.83464 13.2622C4.90664 13.1118 5.35574 13.2437 5.39174 13.1338C5.41514 12.9984 5.23064 13.0696 5.14604 13.0538L5.19554 12.9738C4.93274 12.8287 4.55384 13.0837 4.42604 12.7337C4.63304 12.8137 5.30714 12.6027 5.44124 12.6695C5.47364 12.6862 5.51684 13.0177 5.67074 12.7979C5.94884 13.1523 5.98754 12.9711 5.94884 13.4538C5.94884 13.4635 5.84714 13.6051 5.85074 13.6139C5.89844 13.7431 6.21794 13.7589 6.24404 13.8381C6.27824 13.941 6.10454 14.2777 6.47354 14.254C6.42764 14.2848 6.18644 14.523 6.17924 14.5415C6.17294 14.5573 6.28994 14.8308 6.32684 14.8457C6.40064 14.8756 6.53204 14.8018 6.57254 14.8299C6.58874 14.8404 6.65624 15.2027 6.45824 14.9416C6.28904 15.0137 6.59234 15.1623 6.65444 15.1332C6.69224 15.1157 6.60854 15.0726 6.63824 15.0532C6.87044 14.9011 7.02164 14.7455 7.33214 14.749C7.33664 14.7604 7.34744 14.7692 7.35194 14.7807L7.34924 14.7815Z" /><path fill="%23FBE77E" d="M7.35666 6.27112L7.32426 6.55863C7.20276 6.59644 7.09386 6.74856 7.07856 6.75031C7.06146 6.75295 6.86526 6.62546 6.75096 6.62194C5.94006 6.59732 4.84296 6.79164 4.04917 6.97365C3.91327 6.77581 3.55056 7.00091 3.44346 7.0053C3.05646 7.02377 2.69286 6.89451 2.31396 6.84528C2.33196 6.74592 2.38146 6.65623 2.40576 6.55776C2.66766 6.55248 2.91966 6.60348 3.18156 6.58941C3.21126 6.58765 3.18426 6.49445 3.21396 6.49357C3.56856 6.47862 4.32366 6.60524 4.62156 6.52522C4.66116 6.51467 4.51356 6.4584 4.62156 6.42938C4.91226 6.35201 5.44146 6.42938 5.76726 6.39773C5.86986 6.38718 6.08406 6.27375 6.12726 6.26936C6.36756 6.24474 6.72756 6.30716 6.97866 6.26936C6.98766 6.2676 7.02456 6.15681 7.11006 6.14098C7.28376 6.10933 7.34137 6.26408 7.35577 6.26936L7.35666 6.27112Z" /><path fill="%236CB496" d="M7.4411 15.0049C7.6616 15.7778 7.0136 15.6564 6.4061 15.6898C6.2333 15.0128 6.9992 15.3285 7.1432 15.2291C7.2017 15.1887 7.0307 14.9196 7.4411 15.0049Z" /><path fill="%23FDB7A6" d="M7.73634 6.30597C7.73814 6.38071 7.73184 6.45632 7.73274 6.53194C7.62834 6.5337 7.41504 6.53194 7.32324 6.56096L7.35564 6.27344C7.45464 6.30509 7.62744 6.30509 7.73544 6.30685L7.73634 6.30597Z" /><path fill="%23FC7B74" d="M16.6889 1.43922C16.4207 1.52451 16.2029 1.12445 16.0013 1.48758C15.9509 1.57815 15.6746 3.15203 15.6737 3.31118C15.6737 3.33492 15.608 3.31909 15.608 3.34284C15.608 3.40966 15.698 3.61101 15.7061 3.79038C15.7079 3.83522 15.6071 3.94074 15.608 3.95041C15.6224 4.14033 15.8042 4.50435 15.8375 4.65382C15.8411 4.66877 15.7349 4.83231 15.8213 4.92551C16.0733 4.85253 15.8564 4.60546 15.8708 4.58963C15.8951 4.5615 16.0112 4.57557 16.0508 4.54127C16.0904 4.50698 16.0472 4.44983 16.0832 4.4129C16.0904 4.40587 16.2029 4.43488 16.2308 4.36454C16.2551 4.30211 16.0436 4.03746 16.067 3.94865C16.0706 3.93458 16.1597 3.92051 16.1651 3.88446C16.1795 3.78862 16.1714 3.51517 16.1975 3.40438C16.2236 3.2936 16.3631 3.13269 16.3613 3.11686C16.3568 3.08169 16.2425 3.06147 16.2299 3.02102C16.1516 2.75373 16.3343 2.75285 16.3613 2.66932C16.4423 2.41169 16.1309 1.40493 16.6889 1.53331C16.6952 2.96739 16.6583 4.28717 16.7438 5.73092C16.3316 5.63772 16.148 5.76082 16.067 6.13978C15.8735 6.13187 16.0598 5.84874 15.8708 5.93227C15.8348 5.96744 15.8168 6.32618 15.8051 6.34817C15.7007 6.54424 15.5153 6.31915 15.5432 6.77989H15.347C15.3497 5.13126 15.3371 3.52308 15.2534 1.88325C15.2516 1.84105 15.239 1.79797 15.2363 1.75488C15.2246 1.53243 15.2093 1.31437 15.2102 1.09104C15.2129 0.517754 15.2039 -0.194452 16.0346 0.0491051C16.886 0.297937 16.6835 0.742846 16.6898 1.43747L16.6889 1.43922Z" /><path fill="%23FE0000" d="M16.669 12.0597C16.6519 12.9566 16.6816 13.8508 16.6627 14.7468C16.2388 14.6369 16.5457 15.1178 16.345 15.2585C16.0966 15.4326 16.0921 14.9068 15.7393 15.5144C15.6574 15.6559 15.5908 15.7509 15.6079 15.9241C15.3838 15.8221 15.2929 15.5715 15.1408 15.4027C15.1318 15.3922 15.1255 15.379 15.1165 15.3693C15.2317 15.3359 15.2155 15.1961 15.2362 15.0976C15.391 14.3669 15.2713 13.0199 15.2812 12.2189C15.8293 12.3455 15.5296 12.2462 15.6745 11.9472C15.7024 11.89 15.769 11.9032 15.7726 11.8988C15.8986 12.0369 15.9571 12.0404 16.0345 11.8672C16.0588 11.8813 16.228 11.8892 16.2469 11.8988C16.3783 11.9665 16.3981 12.1336 16.669 12.0589V12.0597Z" /><path fill="%23FDB7A6" d="M16.6888 1.4409C16.6888 1.47255 16.6888 1.50509 16.6888 1.53674C16.1308 1.40837 16.4422 2.41425 16.3612 2.67275C16.3351 2.75628 16.1515 2.75804 16.2298 3.02446C16.2415 3.0649 16.3567 3.08513 16.3612 3.1203C16.363 3.137 16.2235 3.30055 16.1974 3.40782C16.1713 3.51509 16.1794 3.79206 16.165 3.8879C16.1596 3.92395 16.0705 3.93802 16.0669 3.95208C16.0435 4.04001 16.255 4.30555 16.2307 4.36798C16.2028 4.43832 16.0903 4.4093 16.0831 4.41634C16.0471 4.45239 16.0876 4.51218 16.0507 4.54471C16.0111 4.579 15.895 4.56493 15.8707 4.59307C15.8572 4.6089 16.0732 4.85597 15.8212 4.92895C15.7357 4.83575 15.841 4.67132 15.8374 4.65725C15.8041 4.50778 15.6223 4.14376 15.6079 3.95384C15.6079 3.94417 15.7087 3.83954 15.706 3.79382C15.6979 3.61445 15.6079 3.41221 15.6079 3.34627C15.6079 3.32253 15.6736 3.33836 15.6736 3.31462C15.6736 3.15547 15.9508 1.58158 16.0012 1.49102C16.2028 1.12788 16.4206 1.52795 16.6888 1.44266V1.4409Z" /><path fill="%23FCF600" d="M16.757 9.39062C16.7552 9.41964 16.748 9.44866 16.7462 9.47767C16.6985 10.2382 16.6868 11.0067 16.6697 11.7708L16.2962 11.755C16.2026 11.6433 16.6805 11.2617 16.1 11.6433C15.8354 11.4305 15.9443 11.1113 15.9686 10.8115C16.1468 10.7763 16.4546 10.9012 16.3943 10.604C16.3718 10.5697 15.9074 10.4765 15.8867 10.4598C15.8651 10.4422 15.8498 10.1925 15.6743 10.2356C15.6842 10.1653 15.8345 9.78278 15.9362 9.69133C16.01 9.62539 15.9524 9.62363 16.1324 9.62715C16.262 9.62978 16.2692 9.67287 16.3781 9.69133C16.3853 9.34842 16.4519 9.40997 16.757 9.39062Z" /><path fill="%23F9AB01" d="M10.763 12.055C10.272 11.775 9.772 11.519 9.256 11.287L9.305 10.941 9.927 11.037C10.199 11.298 10.456 11.513 10.795 11.693L10.763 12.055ZM16.663 14.747C16.658 14.975 16.743 15.421 16.643 15.61 16.452 15.682 16.333 15.482 16.181 15.515 15.98 15.558 16.105 15.649 16.099 15.659 16.003 15.836 15.872 15.471 15.739 15.515 16.092 14.907 16.097 15.433 16.345 15.259 16.546 15.117 16.239 14.636 16.663 14.747Z" /><path fill="%23FCF600" d="M16.6427 15.6113C16.4465 15.9841 15.9821 16.094 15.6077 15.9252C15.5906 15.7519 15.6563 15.6579 15.7391 15.5154C15.8714 15.4715 16.0028 15.8372 16.0991 15.6596C16.1045 15.6499 15.9794 15.5585 16.181 15.5154C16.3331 15.4829 16.4519 15.6834 16.6427 15.6113Z" /><path fill="%23FDBB00" d="M16.669 11.7707C16.6672 11.8656 16.6708 11.9615 16.669 12.0582C16.3981 12.1338 16.3783 11.9659 16.2469 11.8982C16.2271 11.8885 16.0579 11.8806 16.0345 11.8665C16.0237 11.8604 15.9868 11.7645 15.9688 11.7381C15.9832 11.7267 16.0849 11.652 16.1002 11.6423C16.6807 11.2607 16.2028 11.6423 16.2964 11.754L16.6699 11.7698L16.669 11.7707Z" /><path fill="%23F6A759" d="M15.543 6.78125C15.5799 7.39586 15.7707 6.7918 16.0668 6.84544C16.0677 7.02744 16.137 7.22 16.1325 7.40553C16.1325 7.41608 16.0353 7.43806 16.0344 7.46972C16.0254 7.88473 15.9831 8.57935 16.0344 8.95743C15.9885 9.11834 15.903 9.29067 15.8706 9.45334C15.8652 9.47972 15.8094 9.73734 15.9363 9.69338C15.8346 9.78394 15.6843 10.1664 15.6744 10.2376C15.6195 10.6245 15.7122 11.0729 15.642 11.4695C16.173 11.4616 15.4107 10.9244 15.9696 10.8136C15.9453 11.1134 15.8364 11.4326 16.101 11.6453C16.0866 11.655 15.984 11.7298 15.9696 11.7412C15.8886 11.8063 15.8598 11.7975 15.7734 11.9012C15.7698 11.9056 15.7032 11.8915 15.6753 11.9496C15.5304 12.2494 15.831 12.3479 15.282 12.2213C15.3009 10.7388 15.3351 9.25638 15.3405 7.77482C15.3414 7.44422 15.3468 7.11361 15.3468 6.78301H15.543V6.78125Z" /><path fill="%23E1DDCE" d="M15.2352 1.75503C15.2379 1.79811 15.2505 1.8412 15.2523 1.8834C14.9058 1.81746 15.1092 2.12608 15.0516 2.28523C15.0057 2.41184 13.9122 2.74772 13.725 2.84532C13.4415 2.99216 13.3299 3.22956 13.1355 3.35705C12.0357 4.07805 10.8927 4.83773 9.72986 5.46817C9.67406 5.49894 9.47786 5.61676 9.41846 5.54818C10.0089 5.1657 10.6236 4.81048 11.2032 4.41217C12.1788 3.74129 13.8834 2.21576 14.8707 1.82097C14.9895 1.77349 15.1011 1.73744 15.2352 1.75415V1.75503Z" /><path fill="%23FCF600" d="M15.2354 1.75847C15.1013 1.74177 14.9906 1.77782 14.8709 1.8253C13.8836 2.22009 12.179 3.74562 11.2034 4.4165C10.6238 4.8148 10.0091 5.17003 9.41865 5.55251C9.47805 5.62109 9.67335 5.50327 9.73005 5.47249C10.8929 4.84118 12.0359 4.0815 13.1357 3.36138C13.3301 3.23388 13.4417 2.99648 13.7252 2.84964C13.9124 2.75292 15.0059 2.41705 15.0518 2.28955C15.1094 2.12953 14.9069 1.82178 15.2525 1.88773C15.3362 3.52756 15.3488 5.13574 15.3461 6.78436C15.3461 7.11496 15.3407 7.44557 15.3398 7.77617C15.0356 7.68912 15.1166 8.01973 15.0518 8.20789C15.0428 8.23339 14.9393 8.34506 14.9204 8.39957C14.8997 8.46288 14.9429 8.63961 14.9204 8.68709C14.9105 8.70731 14.69 8.7759 14.5928 8.87877C14.5622 8.91218 14.0906 9.5136 14.069 9.55053C13.9862 9.68769 13.9133 10.0939 13.889 10.1106C13.8197 10.1572 12.9089 10.0596 12.7433 10.1106C12.6875 10.1282 12.7181 10.2856 12.6776 10.3023C12.647 10.3146 12.0962 10.3102 12.0224 10.3023C11.9198 10.2909 11.8091 10.1933 11.7281 10.1739C11.612 10.1476 11.2871 10.166 11.171 10.0781C11.1107 10.0324 11.1089 9.79409 11.0072 9.75804C10.9613 9.74133 10.0991 9.74397 10.0244 9.75804C9.80655 9.80024 9.64275 10.0825 9.53295 10.1097C9.34305 10.1581 8.95695 10.0174 8.82915 10.2856C8.77335 10.4025 8.83635 10.6092 8.82915 10.6373C8.81205 10.7094 8.60235 10.8483 8.69775 11.0567C8.37375 10.9239 7.88865 10.7103 7.57275 10.6127C7.60245 10.5617 7.61685 10.5195 7.63215 10.4606C7.82565 9.70176 7.74645 7.42095 7.73205 6.53025C7.73115 6.45551 7.73745 6.3799 7.73565 6.30428C7.72935 6.07127 7.76265 5.81629 7.72305 5.5868C7.79235 5.57361 7.85895 5.54899 7.92375 5.52261C10.9649 4.29604 12.2951 2.96483 14.8979 1.27312C14.9942 1.21069 15.0977 1.12277 15.2093 1.09375C15.2084 1.31708 15.2237 1.53514 15.2354 1.7576V1.75847Z" /><path fill="%23FBE77E" d="M8.94415 5.78994C9.03775 5.82599 8.79115 5.97547 8.78035 5.98162C8.73895 6.00712 8.23135 6.27266 8.24035 6.18913L8.94415 5.78906V5.78994Z" /><path fill="%23FDBB00" d="M15.34 7.77431C15.3346 9.25675 15.3004 10.7392 15.2815 12.2208C15.2716 13.0218 15.3913 14.3688 15.2365 15.0995C15.2158 15.1979 15.2329 15.3378 15.1168 15.3712C15.1258 15.3817 15.1321 15.3949 15.1411 15.4046C15.1321 15.394 15.1258 15.3808 15.1168 15.3712C13.9711 14.1156 12.2548 12.9066 10.7626 12.0546L10.795 11.6932C10.4548 11.5129 10.1992 11.2975 9.92742 11.0373L9.30552 10.9414L9.25602 11.287C9.07332 11.2043 8.88522 11.1322 8.69892 11.0566C8.60352 10.8491 8.81232 10.7093 8.83032 10.6372C8.83752 10.6082 8.77452 10.4024 8.83032 10.2855C8.95812 10.0173 9.34422 10.1571 9.53412 10.1096C9.64392 10.0815 9.80772 9.80014 10.0255 9.75793C10.0993 9.74386 10.9615 9.74123 11.0083 9.75793C11.11 9.79398 11.1118 10.0323 11.1721 10.078C11.2873 10.1659 11.6122 10.1474 11.7292 10.1738C11.8102 10.1923 11.9209 10.2899 12.0235 10.3022C12.0964 10.3101 12.6481 10.3145 12.6787 10.3022C12.7192 10.2855 12.6877 10.1272 12.7444 10.1105C12.9109 10.0595 13.8208 10.1571 13.8901 10.1105C13.9144 10.0938 13.9873 9.68847 14.0701 9.55042C14.0926 9.5135 14.5633 8.9112 14.5939 8.87867C14.6911 8.77579 14.9116 8.70721 14.9215 8.68699C14.944 8.63863 14.9008 8.46189 14.9215 8.39947C14.9395 8.34407 15.0439 8.23241 15.0529 8.20779C15.1177 8.01874 15.0367 7.68902 15.3409 7.77607L15.34 7.77431Z" /><path fill="%23F3CE16" d="M14.3147 13.2424C14.4758 13.2327 14.4749 13.5756 14.3804 13.5624L14.3147 13.2424Z" /><path fill="%23FBE43C" d="M16.7438 5.73295C16.7834 6.3924 16.9553 7.15912 16.9481 7.80011C16.9418 8.318 16.7906 8.87281 16.7573 9.39246C16.4522 9.4118 16.3856 9.35025 16.3784 9.69317C16.2695 9.6747 16.2632 9.63162 16.1327 9.62898C16.175 9.5604 16.175 9.46544 16.1651 9.38894C16.1507 9.28167 16.0436 9.0258 16.0337 8.95722C15.9824 8.57914 16.0247 7.88452 16.0337 7.4695C16.0337 7.43785 16.1318 7.41587 16.1318 7.40532C16.1363 7.21979 16.0679 7.02811 16.0661 6.84523C16.0643 6.61222 16.013 6.38713 16.0661 6.14181C16.148 5.76197 16.3307 5.63975 16.7429 5.73295H16.7438Z" /><path fill="%23F29F6C" d="M16.0669 6.14176C16.0138 6.38795 16.0651 6.61216 16.0669 6.84517C15.7708 6.79153 15.58 7.39647 15.5431 6.78098C15.5152 6.32025 15.7006 6.54534 15.805 6.34926C15.8167 6.32728 15.8347 5.96854 15.8707 5.93337C16.0606 5.84984 15.8734 6.13296 16.0669 6.14088V6.14176Z" /><path fill="%23D17504" d="M16.0336 11.8667C15.9562 12.0407 15.8977 12.0364 15.7717 11.8983C15.8581 11.7946 15.8869 11.8033 15.9679 11.7383C15.985 11.7647 16.0219 11.8596 16.0336 11.8667Z" /><path fill="%23E1DDCE" d="M15.969 10.812C15.41 10.922 16.172 11.46 15.641 11.468 15.711 11.071 15.619 10.623 15.674 10.236 15.849 10.192 15.864 10.442 15.886 10.46 15.907 10.477 16.371 10.569 16.394 10.604 16.454 10.901 16.146 10.776 15.968 10.812H15.969ZM16.132 9.629C15.952 9.625 16.009 9.627 15.936 9.693 15.809 9.737 15.865 9.479 15.87 9.453 15.902 9.29 15.988 9.118 16.034 8.957 16.043 9.026 16.151 9.281 16.165 9.389 16.175 9.465 16.175 9.56 16.133 9.629H16.132Z" /></g><defs><clipPath id="a"><rect width="18" height="16" fill="%23fff" /></clipPath></defs></svg>');
  --header-nav-icon-aspect: 15 /16;
  aspect-ratio: var(--header-nav-icon-aspect);
  background: var(--header-nav-icon) no-repeat center/contain;
  display: block;
  height: 1em;
  width: auto;
}
.header__navIcon_icon_info {
  --header-nav-icon-aspect: 18 / 16;
}
.header__navIcon_icon_home {
  --header-nav-icon: url('data:image/svg+xml;utf8,<svg width="15" height="16" viewBox="0 0 15 16" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_1988_16566)"><path d="M10.9541 10.1523H4.14624V15.3596H10.9541V10.1523Z" fill="%23FE0000"/><path d="M9.27682 11.989C9.1831 11.9998 9.08939 12.054 8.98694 12.0656C8.96867 12.0679 8.9504 12.0695 8.93214 12.071C8.58666 12.1105 8.23801 12.1368 7.89015 12.177C7.6511 12.2049 7.40648 12.2498 7.16664 12.2776C7.34057 12.0416 6.97126 11.7461 6.78622 11.6718C6.60037 11.5975 6.52334 11.7391 6.48125 11.7368C6.24696 11.7205 6.33511 11.3809 5.8443 11.9364L6.3089 12.3581C6.18898 12.372 6.07303 12.4076 5.95549 12.4208C5.93484 12.4231 5.91498 12.4316 5.89433 12.4339C5.23356 12.5105 4.57358 12.6668 3.90566 12.697C3.88501 12.6978 3.86516 12.7094 3.84451 12.7101C3.67694 12.7171 3.54828 12.7063 3.38626 12.7024C2.7517 12.6885 2.90736 12.1956 2.42766 11.743C2.63495 11.5503 2.13699 11.7971 2.42766 11.743C2.30456 11.2517 2.67466 11.0667 2.06869 10.7565C2.05836 10.7681 2.05598 10.7866 2.04565 10.799C2.05598 10.7866 2.05836 10.7673 2.06869 10.7565C2.21958 10.5909 2.47293 10.4988 2.68737 10.4508C4.08436 10.1352 6.32479 10.1978 7.84329 10.0617C7.86633 10.0593 7.88936 10.057 7.91159 10.0547L8.43735 10.5917L8.33808 10.6358C8.42385 10.8864 8.65417 10.7394 8.70261 10.8013C8.73994 10.8493 8.67561 10.9422 8.68594 10.9716C8.74153 11.1209 8.99885 11.0087 8.6224 11.3491C8.92102 11.3762 8.98217 11.784 9.27682 11.9882V11.989Z" fill="%23F86866"/><path d="M9.86608 11.9285C9.66991 11.9502 9.47295 11.9657 9.27679 11.9889C8.98214 11.7846 8.92099 11.3769 8.62237 11.3498C8.99882 11.0086 8.7415 11.1215 8.6859 10.9722C8.67479 10.9428 8.73991 10.8499 8.70258 10.802C8.65493 10.7401 8.42382 10.8871 8.33805 10.6364L8.43732 10.5923L7.91156 10.0553C7.88853 10.0576 7.8655 10.06 7.84326 10.0623C7.86629 10.06 7.88933 10.0576 7.91156 10.0553C8.38252 10.0128 8.84236 9.92069 9.31332 9.87891C9.13224 10.347 8.62872 10.477 9.26487 10.8801C9.31094 10.9095 9.32762 10.7261 9.47057 10.8592C9.48169 10.8701 9.51902 11.1285 9.53728 11.1563C9.58096 11.2237 9.76919 11.3041 9.80255 11.366C9.82319 11.4039 9.6993 11.8256 9.86608 11.9301V11.9285Z" fill="%23FE8D83"/><path d="M5.20729 15.2545H5.83153L6.42797 15.0565L6.88622 14.5713C7.38418 14.6595 7.57479 14.5713 7.57479 14.5713C7.57479 14.5713 7.71377 14.9017 8.02351 14.9133L8.33404 14.9242L8.81056 14.9133L9.25134 14.5713L9.67147 14.3555H10.3346V15.4271L4.14624 15.3605L5.20729 15.2545Z" fill="%23FE8D83"/><path d="M12.0597 7.91093C12.2964 7.97515 12.3655 8.19876 12.4775 8.30166C12.5378 8.3566 12.7165 8.40921 12.7785 8.46415C12.8063 8.48968 12.6506 8.64907 12.8952 8.59413C13.0159 10.301 13.0914 12.7088 12.9953 14.4072C12.9858 14.5704 12.9143 15.2753 12.8118 15.3349C12.4052 15.5732 10.3427 15.2552 9.77005 15.3674C9.70811 15.3419 9.69143 15.1848 9.68666 15.1229C9.58262 13.9097 9.9281 12.404 9.82009 11.1823C9.81056 11.0739 9.72399 10.5014 9.68666 10.4333C9.66601 10.3962 9.50956 10.2638 9.46905 10.2546C8.48187 10.3025 7.48038 10.1849 6.49399 10.2221C6.33594 10.2283 5.46233 10.2662 5.35749 10.2871C4.98025 10.3629 5.23916 10.9997 5.24075 11.313C5.24392 12.0767 5.26934 12.8381 5.2741 13.5924C5.27807 14.1511 5.22248 14.6966 5.20739 15.2529L5.124 15.3341C4.40843 15.3457 3.68333 15.3983 2.96775 15.3991C2.87483 15.2606 2.58892 15.362 2.44994 15.3341C2.33955 15.3117 2.18785 15.1391 2.06555 15.1384C2.02107 14.9372 2.1672 14.5596 1.95039 14.5124C1.93768 14.3979 1.92339 14.2834 1.91306 14.1689L2.03219 14.1457L1.89877 14.0319C1.89718 14.0103 1.89321 13.9886 1.89162 13.9669C1.84635 13.2118 2.01631 12.4814 1.96548 11.7363C1.93848 11.3378 1.78758 10.937 1.73119 10.6128C1.71451 10.5161 1.68672 10.318 1.6883 10.2213C1.69227 10.0155 1.7574 9.73462 1.78837 9.52029L1.61206 9.43286L1.74866 8.01074C2.15291 8.02389 2.54762 7.93878 2.95108 7.94265C3.75878 7.95116 4.56647 8.04324 5.37417 8.04014C5.69662 8.0386 6.02065 8.04324 6.34389 8.04014C8.18086 8.02467 10.1616 7.91557 12.0597 7.91016V7.91093Z" fill="%23FDBB00"/><path d="M12.8953 8.59488C12.6499 8.64904 12.8064 8.48965 12.7786 8.46489C12.7166 8.40918 12.5379 8.35734 12.4776 8.30241C12.3656 8.1995 12.2965 7.97589 12.0598 7.91167C12.3155 7.91167 12.5872 7.82037 12.8453 7.91167C12.9779 7.9844 12.8842 8.43858 12.8953 8.59565V8.59488Z" fill="%23FDF500"/><path d="M9.55258 2.13189C9.50096 2.2642 9.23729 2.15201 9.28494 2.37639C9.31909 2.53655 9.46284 2.52881 9.60262 2.55512C9.41439 2.65725 9.66695 2.63481 9.7694 2.7176C9.86629 2.79575 9.96795 2.9915 10.1204 3.05959C9.95762 3.32885 10.3746 3.40468 10.5048 3.46658C10.5509 3.48824 10.6343 3.61668 10.6716 3.62906C10.7193 3.64453 11.1036 3.56252 11.1179 3.44878C11.4388 3.75286 11.7525 4.0639 12.0726 4.36797L11.6238 4.42678C11.8843 4.62408 11.816 4.92738 11.8915 5.14325C11.9368 5.27401 12.6166 5.10766 12.839 5.10611L12.8612 5.127C12.8612 5.127 12.8652 5.13087 12.8668 5.13242C12.9216 5.18426 12.9732 5.23765 13.028 5.28949C12.4713 5.3715 12.9216 5.63689 12.9279 5.69647C12.9414 5.83342 12.8255 5.73516 12.8279 5.82646C12.8279 5.8458 13.0796 6.07792 13.0955 6.1197C13.0979 6.12667 12.9875 6.20094 13.0288 6.24969C13.0574 6.28373 13.3226 6.23963 13.3965 6.34718C13.0764 6.7031 13.4243 6.58085 13.4299 6.67292C13.4314 6.69691 13.1725 6.75726 13.4465 6.91742C13.5267 6.96462 13.6578 6.93676 13.6808 6.94992C13.8119 7.02497 13.6443 7.38398 13.6641 7.45439C13.7205 7.65633 13.9961 7.55962 14.0152 7.56813C14.0326 7.57587 14.1422 7.84745 14.2661 7.84512C14.0692 7.97356 13.8246 7.84977 13.6641 7.74763C13.6578 7.74377 13.6554 7.62306 13.6141 7.6014C13.5387 7.56117 13.4251 7.68264 13.4132 7.5689L13.3631 7.99213C13.2742 7.92404 13.1908 7.87917 13.0955 7.79638C12.5173 7.29655 12.0543 6.68143 11.5246 6.13595C11.7819 5.42799 10.9512 5.0388 10.5723 4.54052L10.3349 4.86626C9.92109 4.44535 9.48587 4.09407 9.06177 3.69405C8.70994 3.36212 8.0039 2.38877 7.47973 2.42359C6.9913 2.45686 6.20584 3.3304 5.8556 3.65537C5.84686 3.6631 5.83971 3.67239 5.83098 3.68013C5.57127 3.9223 5.2933 4.16216 5.03996 4.40898L4.67224 4.39273C4.78422 4.20626 4.66351 4.06544 4.83902 3.90451C4.25132 4.01593 4.569 3.77529 4.43795 3.64376C4.38395 3.5896 4.25449 3.60353 4.23702 3.57877C4.2259 3.56329 4.35377 3.35671 4.23702 3.23678C4.97324 2.54738 5.68961 1.82317 6.4433 1.15234C6.5124 1.39916 6.49492 1.57944 6.42662 1.83632C6.61247 1.64676 6.89917 1.93691 6.92776 1.93381C7.02704 1.92453 7.20017 1.57867 7.11122 1.46184C7.20335 1.30322 7.20414 1.52296 7.26132 1.54308C7.2788 1.54927 7.52182 1.42083 7.62904 1.47808C7.65445 1.49201 7.67192 1.65063 7.67907 1.65682C7.88318 1.8487 7.91415 1.61658 7.93004 1.60807C8.03964 1.54849 8.14368 1.7574 8.29775 1.70556C8.31364 1.70015 8.37002 1.52064 8.49868 1.57558C8.39385 1.6514 8.44071 1.71098 8.46533 1.83632L8.63211 1.67384C8.70517 2.2023 8.79333 1.70401 8.83304 1.70634C8.9617 1.97714 9.23093 2.22087 9.55179 2.12957L9.55258 2.13189Z" fill="%23FE0000"/><path d="M4.38562 5.09871C4.34035 5.14359 4.31414 5.21245 4.2649 5.2612C4.25616 5.26971 4.24663 5.27822 4.2379 5.2875C4.07112 5.45385 3.89719 5.61479 3.72961 5.78269C3.61445 5.89798 3.50406 6.02487 3.3889 6.14093C3.37699 5.94208 3.04898 5.93976 2.91794 5.97844C2.7869 6.01713 2.80755 6.12545 2.78452 6.14093C2.65268 6.23068 2.54864 6.01249 2.53355 6.51541L2.96798 6.54482C2.91 6.60285 2.86394 6.67016 2.80755 6.72742C2.79802 6.73748 2.79087 6.74986 2.78055 6.75991C2.46287 7.07869 2.18013 7.43925 1.83783 7.73714C1.82751 7.74642 1.82195 7.76035 1.81083 7.76963C1.72426 7.84391 1.6512 7.89188 1.56384 7.95842C1.21995 8.21763 0.974542 8.42731 0.518672 8.38862C0.544087 8.19906 0.497229 8.00253 0.628272 7.85165C0.344743 7.64197 0.459902 7.38741 6.15998e-05 7.47716C6.15998e-05 7.488 0.00641518 7.49883 0.00641518 7.50966C0.00641518 7.49883 -0.000732597 7.48722 6.15998e-05 7.47716C0.00720937 7.32551 0.101719 7.16999 0.193846 7.05393C0.797436 6.298 2.01891 5.38886 2.76784 4.67703C2.77896 4.6662 2.79008 4.65536 2.80119 4.64453L3.31901 4.70952L3.28566 4.77452C3.44291 4.87201 3.50009 4.69637 3.5533 4.70952C3.5946 4.71958 3.60095 4.79618 3.62001 4.80701C3.71611 4.8635 3.80268 4.69482 3.75344 5.03527C3.92419 4.92462 4.13783 5.11573 4.38482 5.10026L4.38562 5.09871Z" fill="%23FDB7A6"/><path d="M11.0964 1.20669C11.0964 1.37459 11.1194 1.39084 10.9574 1.46666C11.171 1.44191 11.0717 1.65313 11.1408 1.67867C11.2036 1.70111 11.3179 1.65391 11.4085 1.71116C11.4498 1.73747 11.5149 1.99512 11.6595 2.02066C11.395 2.28527 11.6158 2.29224 11.7262 2.50888C11.7365 2.529 11.7325 2.68529 11.7595 2.73713C11.7786 2.77427 11.8747 2.73249 11.8929 2.76963C11.97 2.92592 11.8111 3.2594 12.1606 3.06287C12.0041 3.32285 12.4814 3.65942 12.5617 3.5186C12.6093 3.43504 12.5196 2.56691 12.5617 2.50888C12.5903 2.46942 12.8039 2.50501 12.8658 2.49263C12.8492 3.34838 12.8928 4.20954 12.8627 5.06452L12.815 5.08463C12.5664 4.84865 12.3226 4.60802 12.0748 4.37203C11.7548 4.06718 11.4411 3.75614 11.1202 3.45283C11.1123 3.4451 11.1043 3.43736 11.0964 3.42962C10.9121 3.25476 10.731 3.07603 10.5476 2.90116C10.5396 2.89343 10.5317 2.88569 10.5238 2.87795C10.6532 2.81992 10.6063 2.71315 10.6191 2.62339C10.6548 2.36574 10.6588 1.69801 10.5913 1.46125C10.5285 1.24151 10.4531 1.2949 10.3816 1.18735C10.4443 1.13319 10.542 1.17574 10.6246 1.18116C10.7819 1.19276 10.9399 1.19818 11.098 1.20746L11.0964 1.20669Z" fill="%23DBD77C"/><path d="M13.2703 0.70031C13.1599 0.704179 12.5603 0.688704 12.5119 0.732807C12.4634 0.77691 12.5158 1.19008 12.4928 1.2837L11.9138 1.25121C11.6414 1.23573 11.369 1.22103 11.0966 1.20556C10.9386 1.19627 10.7805 1.19008 10.6233 1.17925C10.5407 1.17306 10.443 1.13128 10.3802 1.18544C10.2365 0.968795 10.1269 0.947904 10.0951 0.635317C10.0824 0.514615 10.1118 0.270889 10.1952 0.179589C10.2492 0.120785 10.3167 0.0913833 10.389 0.0619815C10.5049 0.0155575 12.7525 -0.023129 12.8963 0.0163313C13.2592 0.115369 13.3354 0.341299 13.2703 0.70031Z" fill="%23DBD77C"/><path d="M13.0629 5.32547C13.3972 5.64115 13.7649 5.92279 14.0993 6.23692C13.6895 6.25549 13.5052 6.34757 13.6815 6.75764C13.9595 6.67253 14.5567 7.09112 14.467 6.58201C14.6004 6.71664 14.7672 6.82805 14.8744 6.98589C14.8816 6.99673 14.8879 7.00756 14.8943 7.01839C14.8871 7.00756 14.8816 6.99595 14.8744 6.98589C14.8228 7.05785 14.4988 7.00679 14.4837 7.01839C14.4567 7.03928 14.4479 7.17623 14.417 7.21415C14.4058 7.2273 14.2947 7.19248 14.2669 7.23039C14.2494 7.25438 14.4043 7.50816 14.4003 7.55613C14.3979 7.58167 14.1453 7.67838 14.4003 7.80063C14.2192 8.03507 14.7164 7.94996 14.8284 7.96312C14.4733 8.51479 14.104 8.51943 13.5981 8.19137C13.5148 8.13721 13.4441 8.05751 13.3639 7.99561L13.4139 7.57238C13.425 7.68612 13.5394 7.56465 13.6148 7.60488C13.6561 7.62732 13.6585 7.74725 13.6649 7.75112C13.8253 7.85325 14.0691 7.97704 14.2669 7.8486C14.1438 7.85093 14.0334 7.57935 14.0159 7.57161C13.9968 7.5631 13.7212 7.65981 13.6649 7.45787C13.645 7.38669 13.8126 7.02768 13.6815 6.9534C13.6593 6.94024 13.5283 6.9681 13.4472 6.9209C13.1732 6.76074 13.4322 6.70039 13.4306 6.6764C13.425 6.58433 13.0771 6.70658 13.3972 6.35066C13.3234 6.24311 13.0581 6.28644 13.0295 6.25317C12.9882 6.20443 13.0986 6.13015 13.0962 6.12318C13.0803 6.0814 12.8294 5.85006 12.8286 5.82994C12.8262 5.73864 12.9421 5.8369 12.9286 5.69995C12.9231 5.64037 12.4728 5.37498 13.0287 5.29297C13.0398 5.3038 13.0509 5.31463 13.0621 5.32547H13.0629Z" fill="%23FE8D83"/><path d="M8.14925 0.596641C8.15481 0.813286 7.8951 0.812513 7.99914 1.02684L8.51696 0.929346C8.52808 0.940178 8.5392 0.95101 8.55032 0.961843C8.9085 1.29532 9.23015 1.66671 9.58674 2.00406C9.53115 2.03578 9.5661 2.10155 9.55339 2.13405C9.23253 2.22535 8.9633 1.98162 8.83464 1.71082C8.79572 1.70849 8.70757 2.20678 8.63371 1.67832L8.46693 1.8408C8.44231 1.71546 8.39545 1.65588 8.50028 1.58005C8.37242 1.52589 8.31523 1.70463 8.29935 1.71004C8.14528 1.76188 8.04124 1.55297 7.93164 1.61255C7.91655 1.62106 7.88478 1.85318 7.68067 1.6613C7.67352 1.65511 7.65605 1.49572 7.63064 1.48256C7.52342 1.42608 7.2804 1.55375 7.26292 1.54756C7.20574 1.52667 7.20415 1.3077 7.11282 1.46632C7.20177 1.58315 7.02864 1.92901 6.92936 1.93829C6.90077 1.94139 6.61327 1.65124 6.42822 1.8408C6.49732 1.58392 6.514 1.40364 6.4449 1.15682C6.67284 0.954105 6.92142 0.676336 7.18033 0.525458C7.26769 0.741329 7.15094 0.855842 7.2804 1.07558C7.44559 1.0338 7.41779 1.33246 7.56472 1.25431C7.58696 1.24271 7.57743 0.999756 7.94911 1.07558C7.94911 1.04386 7.28357 1.09492 7.63143 0.798585C7.68544 0.834177 7.5679 1.01059 7.79821 0.961069C7.72594 0.776921 8.05394 0.834177 7.94832 0.492188C8.01662 0.522363 8.08651 0.55486 8.14925 0.596641Z" fill="%23F86866"/><path d="M11.9138 1.24955C11.9154 1.34627 11.9479 1.50411 11.9265 1.59386C11.8884 1.7517 11.6684 1.58071 11.9765 1.93585C12.0464 1.65034 12.3506 1.96989 12.3776 1.96835C12.43 1.96602 12.4634 1.78033 12.4777 1.77259C12.5309 1.74551 12.7826 1.7989 12.866 1.76408C12.8517 2.00394 12.87 2.24921 12.8652 2.48907C12.8033 2.50145 12.5897 2.46586 12.5611 2.50532C12.519 2.56335 12.6087 3.43147 12.5611 3.51504C12.4809 3.65586 12.0035 3.31928 12.16 3.05931C11.8105 3.25584 11.9694 2.92236 11.8924 2.76606C11.8741 2.72892 11.778 2.77071 11.7589 2.73357C11.7319 2.68173 11.7359 2.52543 11.7256 2.50532C11.6152 2.28867 11.3944 2.28093 11.6589 2.01709C11.5143 1.99156 11.4492 1.73391 11.4079 1.7076C11.3174 1.65034 11.203 1.69754 11.1402 1.6751C11.0712 1.65034 11.1704 1.43834 10.9568 1.4631C11.1188 1.38805 11.0958 1.37102 11.0958 1.20312C11.3682 1.2186 11.6406 1.2333 11.913 1.24878L11.9138 1.24955Z" fill="%23BAD26B"/><path d="M5.04065 4.41439C4.92231 4.52968 4.8008 4.69139 4.67294 4.81828C4.53713 4.83298 4.41641 4.55598 4.38861 4.54438C4.34414 4.52581 4.20754 4.56217 4.15432 4.54438C4.13209 4.53741 3.99787 4.41516 3.98754 4.41439C3.85253 4.40356 3.9248 4.50801 3.88747 4.51188C3.37045 4.5645 3.58012 4.28363 3.46973 3.95866C3.72308 3.71803 3.98278 3.48204 4.23851 3.24219C4.35526 3.36212 4.22739 3.5687 4.23851 3.58418C4.25598 3.60894 4.38544 3.59501 4.43944 3.64917C4.57048 3.77993 4.25281 4.02134 4.84051 3.90992C4.6642 4.07085 4.78571 4.21167 4.67373 4.39814L5.04144 4.41439H5.04065Z" fill="%23FE8D83"/><path d="M9.62012 2.03486C9.91953 2.31882 10.2253 2.59272 10.5223 2.8759C10.5303 2.88364 10.5382 2.89138 10.5462 2.89911C10.7304 3.07398 10.9107 3.25348 11.0949 3.42757C11.1029 3.43531 11.1108 3.44305 11.1188 3.45078C11.1037 3.56452 10.7193 3.64654 10.6724 3.63106C10.6351 3.61868 10.5517 3.49025 10.5056 3.46858C10.3754 3.40668 9.95845 3.33086 10.1213 3.0616C9.96877 2.99351 9.86711 2.79776 9.77022 2.71961C9.66697 2.63682 9.41442 2.65926 9.60344 2.55712C9.46366 2.53082 9.31991 2.53855 9.28576 2.37839C9.23811 2.15401 9.50178 2.2662 9.5534 2.13389C9.56611 2.1014 9.53117 2.03563 9.58676 2.00391C9.59788 2.01474 9.609 2.02557 9.62012 2.0364V2.03486Z" fill="%23FE8D83"/><path d="M4.67304 4.81665C4.57853 4.91104 4.48005 5.00234 4.38554 5.09674C4.13854 5.11221 3.92491 4.92033 3.75415 5.03174C3.80339 4.69208 3.71683 4.85998 3.62073 4.80349C3.60167 4.79266 3.59531 4.71606 3.55402 4.706C3.5008 4.69285 3.44362 4.86849 3.28637 4.771L3.31973 4.706L2.80191 4.64101C3.03382 4.4205 3.23793 4.17754 3.47062 3.95703C3.58181 4.28277 3.37135 4.56364 3.88837 4.51025C3.92649 4.50638 3.85343 4.40193 3.98844 4.41276C3.99877 4.41353 4.13378 4.53578 4.15522 4.54275C4.20843 4.56054 4.34424 4.52418 4.38951 4.54275C4.41731 4.55435 4.53803 4.83135 4.67383 4.81665H4.67304Z" fill="%23FE8D83"/><path d="M12.4918 1.28563C12.6165 1.29259 12.7412 1.29956 12.8666 1.30652C12.8627 1.31503 12.8706 1.32896 12.8666 1.33979C12.8436 1.39937 12.8722 1.67017 12.8666 1.76844C12.7833 1.80326 12.5315 1.74987 12.4783 1.77695C12.464 1.78391 12.4298 1.97038 12.3782 1.9727C12.3512 1.97348 12.047 1.65393 11.9771 1.94021C11.669 1.58506 11.889 1.75606 11.9271 1.59822C11.9486 1.50846 11.916 1.35062 11.9144 1.25391L12.4934 1.2864L12.4918 1.28563Z" fill="%232D8700"/><path d="M12.8142 5.08447C12.823 5.09299 12.8317 5.1015 12.8396 5.10923C12.8468 5.1162 12.8539 5.12316 12.8619 5.13012L12.8396 5.10923C12.6173 5.11078 11.9382 5.27791 11.8922 5.14637C11.8175 4.9305 11.885 4.6272 11.6245 4.4299L12.0732 4.37109C12.321 4.60708 12.5648 4.84771 12.8134 5.0837L12.8142 5.08447Z" fill="%23FC7D4B"/><path d="M14.8943 7.01765C15.0532 7.26447 15.0167 7.57628 14.8943 7.83161C14.7458 7.81768 14.5354 7.86411 14.3996 7.79912C14.1446 7.67687 14.3972 7.58092 14.3996 7.55462C14.4035 7.50664 14.2479 7.25286 14.2661 7.22887C14.2947 7.19096 14.4051 7.22578 14.4162 7.21263C14.4472 7.17549 14.456 7.03776 14.483 7.01687C14.498 7.00527 14.8229 7.05633 14.8737 6.98438C14.8808 6.99521 14.8872 7.00604 14.8936 7.01687L14.8943 7.01765Z" fill="%23FDB7A6"/><path d="M7.94816 0.492173C8.05379 0.834162 7.72499 0.776906 7.79806 0.961054C7.56774 1.01057 7.68449 0.834162 7.63128 0.798571C7.28263 1.09491 7.94896 1.04307 7.94896 1.07557C7.57727 0.999741 7.5868 1.24269 7.56457 1.2543C7.41843 1.33167 7.44544 1.03301 7.28024 1.07557C7.15079 0.855827 7.26754 0.741314 7.18018 0.525443C7.4502 0.367602 7.66225 0.366828 7.94896 0.492946L7.94816 0.492173Z" fill="%23FE8D83"/><path d="M14.1319 6.27078C14.2415 6.37446 14.3606 6.47659 14.4663 6.58337C14.556 7.09248 13.9588 6.67389 13.6808 6.759C13.5045 6.34893 13.6887 6.25685 14.0985 6.23828C14.1097 6.24911 14.1208 6.25995 14.1319 6.27078Z" fill="%23FDB7A6"/><path d="M13.2702 0.699992C13.1964 1.10698 13.0177 1.06133 12.8954 1.27797C12.889 1.2888 12.8724 1.29422 12.8676 1.3035C12.7429 1.29654 12.6182 1.28958 12.4927 1.28261C12.515 1.18976 12.4633 0.775818 12.5118 0.731715C12.5602 0.687613 13.1599 0.703087 13.2702 0.699219V0.699992Z" fill="%23E2E4D1"/><path d="M0.518672 8.38701C0.467844 8.38237 0.287561 8.39629 0.277236 8.38701C0.242292 8.35606 0.00720937 7.57614 0.00641518 7.50805C0.00641518 7.49722 -0.000732597 7.48561 6.15998e-05 7.47555C0.459902 7.3858 0.345537 7.64036 0.628272 7.85004C0.497229 8.00092 0.544087 8.19744 0.518672 8.38701Z" fill="%23F5CEC5"/><path d="M8.5504 0.958951C8.53928 0.948119 8.52816 0.937287 8.51705 0.926455L7.99923 1.02394C7.89519 0.809621 8.15489 0.811169 8.14933 0.59375C8.32326 0.710584 8.38044 0.800336 8.51705 0.925681C8.52816 0.936513 8.53928 0.947345 8.5504 0.958178V0.958951Z" fill="%23FE8D83"/><path d="M14.8944 7.83328C14.8746 7.87506 14.8523 7.92458 14.8277 7.96326C14.7157 7.95011 14.2186 8.03522 14.3996 7.80078C14.5355 7.86577 14.7459 7.81935 14.8944 7.83328Z" fill="%23FE0000"/><path d="M10.4818 5.06435C10.8304 5.4195 11.1767 5.78083 11.5246 6.13907C12.0543 6.68455 12.5173 7.29966 13.0955 7.79949C13.1217 8.22427 12.3799 8.12137 12.0424 8.12524C11.9709 8.12601 11.6977 8.02697 11.6747 8.02775C10.8265 8.03626 9.6979 8.05405 8.81714 8.12524C8.75757 8.12988 8.59555 8.14767 8.54949 8.15773C8.07297 8.14458 7.53292 8.21421 7.06196 8.19023C6.92456 8.18327 6.70378 8.10512 6.51079 8.09274C6.15737 8.0703 5.81348 8.04864 5.45768 8.06024C5.39653 8.06256 5.29249 8.02775 5.30758 8.12524C4.50782 8.11518 3.71521 8.13065 2.93452 8.19023C2.9234 8.191 2.91228 8.18946 2.90116 8.19023C2.83445 8.19565 2.76853 8.18791 2.70023 8.19642C2.68911 8.19797 2.67799 8.19487 2.66687 8.19642C2.52233 8.21499 2.37699 8.23588 2.23245 8.25522C2.21498 8.0881 1.91477 8.18713 1.89809 8.17398C1.8425 8.1291 1.90842 7.8258 1.81152 7.767C1.82185 7.75771 1.82741 7.74379 1.83853 7.7345C2.18083 7.43739 2.46277 7.07683 2.78124 6.75728C2.79077 6.74722 2.79792 6.73484 2.80824 6.72478C3.09574 6.73639 3.29905 7.01416 3.41977 6.62729C3.48569 6.67217 3.53493 6.81221 3.6207 6.82304C3.77875 6.84316 4.27036 6.36654 4.42284 6.23656C4.43714 6.22418 4.69049 6.10734 4.72384 6.07407C4.82312 5.97271 4.89618 5.69494 4.92478 5.68334C5.00975 5.64775 5.44656 5.74137 5.47595 5.43884C5.48151 5.3839 5.38462 5.31349 5.40924 5.21059C5.41877 5.16958 5.57125 4.78194 5.5927 4.77111C5.62685 4.75331 5.9755 4.8067 6.04698 4.75718C6.09066 5.13321 6.08907 6.49885 6.31144 6.69228C6.47743 6.83697 7.93796 6.75728 8.24055 6.72865C8.32553 6.72091 8.53043 6.75186 8.57808 6.68068C8.62653 6.36345 8.62812 6.0408 8.66703 5.7228C8.7123 5.3545 8.74645 4.9893 8.81078 4.62333C9.16658 4.54286 8.9998 4.9715 9.10146 4.99858C9.13084 5.00632 9.19359 4.86937 9.20153 4.8686C9.48029 4.83069 9.7932 4.95216 9.83688 5.25933C10.0902 4.9924 10.0982 5.08602 10.4556 5.03108C10.4651 5.04114 10.4722 5.05352 10.4826 5.06358L10.4818 5.06435Z" fill="%23BAD26B"/><path d="M6.04626 4.75808C5.97478 4.8076 5.62613 4.75421 5.59198 4.77201C5.57053 4.78284 5.41805 5.17125 5.40852 5.21149C5.3839 5.31439 5.48079 5.38403 5.47523 5.43974C5.44505 5.74227 5.00824 5.64787 4.92406 5.68424C4.89546 5.69662 4.8224 5.97361 4.72312 6.07497C4.68977 6.10902 4.43721 6.22508 4.42212 6.23746C4.26964 6.36667 3.77724 6.84329 3.61998 6.82395C3.53421 6.81311 3.48497 6.67307 3.41905 6.62819C3.29754 7.01583 3.09423 6.73729 2.80752 6.72568C2.79799 6.73574 2.79084 6.74812 2.78052 6.75818C2.79005 6.74812 2.7972 6.73574 2.80752 6.72568C2.86391 6.66843 2.90997 6.60111 2.96795 6.54308C3.10534 6.40458 3.25306 6.27614 3.38887 6.13919C3.50403 6.02313 3.61442 5.89624 3.72958 5.78095H4.02026C3.94163 5.80649 4.07188 6.02004 4.12033 6.00921C4.16877 5.99837 4.2061 5.69352 4.2204 5.68346C4.29426 5.63317 4.92167 5.82893 4.26408 5.26023C4.25534 5.26874 4.24581 5.27726 4.23708 5.28654C4.24581 5.27803 4.25534 5.26952 4.26408 5.26023C4.31332 5.21071 4.33953 5.14263 4.3848 5.09775C4.47931 5.00335 4.57779 4.91205 4.6723 4.81766C4.80016 4.69077 4.92167 4.52906 5.04001 4.41377C5.29336 4.16618 5.57133 3.92632 5.83103 3.68492C5.94142 3.73057 5.89933 3.80871 5.91521 3.89537C5.96843 4.18243 6.01211 4.46948 6.04546 4.75886L6.04626 4.75808Z" fill="%238C9C78"/><path d="M10.3349 4.86752C10.3746 4.90775 10.4063 4.98048 10.4556 5.03C10.4651 5.04006 10.4723 5.05244 10.4826 5.0625C10.473 5.05244 10.4659 5.04006 10.4556 5.03C10.099 5.08493 10.0902 4.99131 9.83689 5.25825C9.79321 4.95108 9.4803 4.8296 9.20154 4.86752C9.19359 4.86829 9.13085 5.00601 9.10147 4.9975C8.99981 4.97042 9.16659 4.54178 8.81079 4.62224C8.837 4.47291 8.83859 4.23073 8.86956 4.11235C8.89815 4.00171 9.04984 3.85083 9.06255 3.69531C9.48665 4.09533 9.92187 4.44661 10.3356 4.86752H10.3349Z" fill="%23458973"/><path d="M11.5255 6.1384C11.1776 5.78017 10.8313 5.41883 10.4827 5.06369C10.4732 5.05363 10.466 5.04125 10.4557 5.03119C10.4064 4.98167 10.3747 4.90894 10.335 4.86871L10.5724 4.54297C10.9513 5.04125 11.782 5.43121 11.5247 6.1384H11.5255Z" fill="%23FE8D83"/><path d="M3.38953 6.13872C3.25372 6.27567 3.106 6.40411 2.96861 6.54261L2.53418 6.51321C2.54927 6.01028 2.65252 6.22847 2.78515 6.13872C2.80897 6.12247 2.78673 6.01415 2.91857 5.97624C3.05041 5.93832 3.37841 5.93987 3.38953 6.13872Z" fill="%23FDB7A6"/><path d="M3.73022 5.77931C3.8978 5.61141 4.07173 5.45047 4.23851 5.28412C4.24725 5.27561 4.25678 5.2671 4.26551 5.25781C4.92311 5.82651 4.29569 5.63075 4.22183 5.68104C4.20754 5.6911 4.17259 5.99518 4.12176 6.00678C4.07094 6.01839 3.94307 5.80484 4.02169 5.77853H3.73102L3.73022 5.77931Z" fill="%231C5843"/><path d="M8.66714 5.72247C8.62823 6.04047 8.62664 6.36312 8.5782 6.68035C8.53054 6.75076 8.32485 6.72058 8.24066 6.72832C8.19619 6.53179 8.28593 6.19058 8.25019 6.02422C8.24622 6.00565 8.04688 5.84781 8.10962 5.70312C8.23431 5.70777 8.35979 5.7186 8.48448 5.71937C8.54563 5.71937 8.60679 5.70777 8.66794 5.72247H8.66714Z" fill="%23DEE7B1"/><path d="M9.06258 3.69643C9.05067 3.85195 8.89818 4.00282 8.86959 4.11347C8.83862 4.23262 8.83703 4.47403 8.81082 4.62336C8.7457 4.98933 8.71234 5.35531 8.66707 5.72283C8.60592 5.70735 8.54476 5.71973 8.48361 5.71973C8.35892 5.71973 8.23344 5.70813 8.10875 5.70349C8.04601 5.84895 8.24535 6.00679 8.24932 6.02458C8.28506 6.19094 8.19532 6.53215 8.23979 6.72868C7.9372 6.75731 6.47668 6.837 6.31069 6.69231C6.08831 6.49888 6.0899 5.13325 6.04622 4.75721C6.01286 4.46784 5.96918 4.18078 5.91597 3.89373C5.90009 3.80707 5.94218 3.72892 5.83179 3.68327C5.84052 3.67553 5.84767 3.66625 5.85641 3.65851C6.20744 3.33277 6.99211 2.45923 7.48054 2.42673C8.00471 2.39114 8.70996 3.36527 9.06258 3.6972V3.69643Z" fill="%23FDF500"/><path d="M7.56402 4.05498C7.65058 4.04879 7.95476 4.14009 7.88487 4.27395C7.6617 4.31418 7.43774 4.3637 7.21298 4.3962C7.12324 4.04802 7.24872 4.20354 7.39644 4.15247C7.41788 4.14474 7.51398 4.05885 7.56322 4.05498H7.56402Z" fill="%23DBD77C"/></g><defs><clipPath id="clip0_1988_16566"><rect width="15" height="16" fill="white"/></clipPath></defs></svg>');
}
.header__navIcon_icon_signboard {
  --header-nav-icon: url('data:image/svg+xml;utf8,<svg width="15" height="16" viewBox="0 0 15 16" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_1988_16632)"><path d="M6.99313 1.73982C7.01655 1.74142 7.03996 1.73822 7.06338 1.73982C7.26496 1.75502 7.63046 1.81582 7.88389 1.80702C8.03612 1.80142 8.29958 1.67102 8.42504 1.67342C8.61407 1.67742 8.70524 1.83662 8.72197 1.84062C9.11173 1.92222 9.69972 1.77822 10.0142 1.77342C10.1673 1.77102 10.1413 1.84062 10.1539 1.84062C10.5294 1.83902 10.9393 1.84142 11.2713 1.84062C12.2482 1.83822 14.514 1.39022 14.8519 2.50862C14.9473 2.82302 14.9247 2.90942 14.9431 3.21022C14.4956 3.18942 14.8335 2.52622 14.2581 2.55902C14.3903 3.08622 13.8675 2.70062 13.6643 2.94302C13.4384 2.86942 13.3849 2.83422 13.1055 2.77582C11.2496 2.38942 9.94562 2.59102 8.11056 2.65742C7.39962 2.68302 6.23618 2.73982 5.56037 2.66702C5.4508 2.65502 5.06522 2.49742 4.84441 2.47502C4.1778 2.40702 1.73384 2.55982 1.1768 2.84222C0.756927 3.05582 0.955154 3.35022 0.915007 3.69422C0.784528 4.80142 0.858131 7.28382 1.26462 8.33822C1.29808 8.42542 1.39594 8.47582 1.43943 8.55502C1.26044 8.50542 1.19102 8.34462 1.05552 8.47182C1.14334 8.56382 1.19436 8.67102 1.33488 8.67262C1.28135 8.80542 1.20273 8.73982 1.26462 8.92302C1.12578 8.94942 1.01119 8.90942 0.9677 8.92302C0.916679 8.93902 0.906643 9.05422 0.845585 9.09022C0.489279 9.12782 0.529426 8.72062 0.426549 8.53902C0.392257 8.47822 0.231668 8.45662 0.216613 8.40542C0.190684 8.31662 0.299416 8.29502 0.28687 8.23822C0.259269 8.11502 0.133809 7.80062 0.00751248 7.72062C-0.00586992 7.56622 0.0142037 7.44222 0.00751248 7.31982C0.231668 7.13902 0.0142037 7.13422 0.00751248 7.06942C0.000821281 7.00462 -0.00419712 6.59022 0.00751248 6.56862C0.0376229 6.51262 0.102862 6.60622 0.129627 6.58542C0.429058 6.34942 0.137991 6.33502 0.112063 6.23422C0.0100217 5.83902 0.321999 5.35502 0.00751248 5.11502C0.0275861 4.70302 0.189848 2.23662 0.357128 2.07422L0.496807 2.19102C0.139664 2.30302 0.409821 2.55742 0.618921 2.67582C0.691688 2.66702 0.863986 2.29822 0.898279 2.27502C0.921698 2.25982 1.23618 2.36782 1.16007 2.00782C1.27382 2.01502 1.38255 2.05742 1.52725 2.04142C1.56573 2.03742 1.58245 1.94382 1.59751 1.94142C1.68282 1.92542 1.74388 1.98222 1.77232 1.97502C1.90781 1.93902 2.1236 1.82062 2.24405 1.74142C3.38155 1.76622 4.92387 1.81182 6.03378 1.74142C6.11491 1.73662 6.24789 1.61342 6.33153 1.60782C6.41768 1.60222 6.53143 1.69422 6.64518 1.70782L6.71544 1.71422C6.80828 1.72462 6.90196 1.73342 6.9948 1.74062L6.99313 1.73982Z" fill="%232B5E49"/><path d="M14.8184 8.65743C14.7648 9.03823 14.6929 9.73342 14.2245 9.86062H11.4652C11.0939 9.85342 10.7326 9.80143 10.3821 9.79343C9.93463 9.78303 9.31235 9.71583 8.87993 9.75983C8.73356 9.77503 8.51861 9.82303 8.47344 9.97103C8.31955 9.93423 8.15478 9.95103 7.99753 9.95023C7.64206 9.94863 6.92778 10.011 6.63085 9.96863C6.48281 9.94703 6.46525 9.87663 6.36571 9.82703C6.3607 9.82463 6.37241 9.74463 6.31302 9.72703C6.03952 9.64623 4.83176 9.74863 4.42694 9.72703C3.7896 9.69343 1.01694 9.53983 0.619645 9.29263C0.588699 9.27343 0.501713 9.20223 0.549388 9.15903C0.645574 9.21743 0.748451 9.14943 0.84631 9.09183C0.907367 9.05583 0.917404 8.94063 0.968424 8.92463C1.01192 8.91103 1.1265 8.95103 1.26535 8.92463C1.36488 8.90543 1.54721 8.81903 1.56227 8.82463C1.5974 8.83743 1.5631 8.92063 1.5974 8.92463C1.671 8.93343 1.69693 8.88303 1.7722 8.89103C1.87759 8.90303 2.20211 8.99263 2.2615 8.99103C2.27404 8.99103 2.29412 8.89423 2.33176 8.89103C2.45387 8.87983 2.56846 8.95023 2.68137 8.92463C2.73072 8.91343 2.77756 8.79183 2.78592 8.79103C2.81352 8.78703 3.14725 9.09503 3.24009 9.05823C3.29947 9.03423 3.21834 8.97663 3.22252 8.97503C3.32289 8.93023 3.49352 9.15583 3.69425 9.19183C4.1158 9.26783 4.80499 9.11503 5.1613 9.12463C5.29763 9.12863 5.44651 9.22383 5.47578 9.22463C5.62968 9.23103 5.66983 9.15583 5.91322 9.17983C5.98264 9.18703 6.05206 9.20623 6.12149 9.21423C6.20847 9.38223 6.36906 9.44143 6.4711 9.27183C6.97211 9.32943 7.2891 9.47183 7.79847 9.39183C8.05608 9.35183 7.86454 9.43983 7.99084 9.49183C8.17318 9.56783 8.42577 9.30943 8.58468 9.29103C8.71349 9.38303 8.91339 9.33903 9.07398 9.35823C9.09322 9.36063 9.15762 9.45423 9.17853 9.45823C9.20111 9.46223 9.39014 9.34863 9.56244 9.35823C9.57415 9.35823 9.59673 9.45663 9.63269 9.45823C9.65695 9.45903 9.83678 9.20543 10.0517 9.29103C10.0726 9.29903 10.0961 9.43103 10.1914 9.45823C10.3453 9.50143 10.4231 9.39103 10.4356 9.39103C10.5787 9.39663 10.8179 9.47903 10.9592 9.45823C11.1181 9.43423 11.2311 9.22783 11.4828 9.32463C11.5514 9.21983 11.3557 9.27583 11.3607 9.24143C11.3624 9.22783 11.6083 9.12623 11.6225 9.12463C11.7806 9.10863 11.8475 9.22223 12.0415 9.19183C12.0557 9.18943 12.2071 9.06863 12.2858 9.05823C12.4547 9.03583 12.7767 9.09343 12.9499 9.02463C13.0193 8.99743 12.9825 8.89263 13.0544 8.85743C13.184 8.79423 13.3915 8.89183 13.491 8.79023C13.501 8.79823 13.5429 8.81903 13.5613 8.82383C13.5052 8.97423 13.5512 8.95583 13.5964 9.02463C13.7001 9.18143 13.9619 9.23103 14.1375 9.19183C14.1936 9.17903 14.1058 9.10703 14.1375 9.09183C14.2454 9.03903 14.3525 9.18623 14.4169 9.15903C14.4428 9.14783 14.7607 8.77503 14.6787 8.70783L14.3993 8.64062L14.8184 8.65743Z" fill="%2381C49F"/><path d="M14.6085 3.88051C14.56 3.98451 14.5181 4.29331 14.5382 4.39811C14.5742 4.58051 14.8711 4.36611 14.4337 4.68211C14.3057 4.77491 14.3525 4.77811 14.3116 4.81571C14.2957 4.83011 14.1886 4.79331 14.1543 4.83251C14.1409 4.84851 14.1986 5.09011 14.1894 5.09971C14.1485 5.14131 14.0447 5.09171 14.0146 5.13331C13.9678 5.19731 13.9996 5.53811 14.1894 5.48451C14.1853 5.48611 14.2037 5.53731 14.1719 5.55171C14.1133 5.57811 13.9695 5.36931 14.0146 5.80211C14.0238 5.82291 14.4228 5.54131 14.2589 5.86931C14.2806 5.90451 14.5048 5.77331 14.4688 5.98611C14.4496 5.99811 14.3626 6.03011 14.3643 6.03651C14.4061 6.17171 14.7222 6.16691 14.8009 6.11971C14.8795 6.07251 14.8494 5.80131 14.9581 5.85251C14.8728 6.78291 14.9497 7.72931 14.8184 8.65891L14.3994 8.64211L14.6787 8.70931C14.7607 8.77651 14.4429 9.14931 14.4169 9.16051C14.3517 9.18771 14.2446 9.04131 14.1376 9.09331C14.1058 9.10851 14.1936 9.18131 14.1376 9.19331C13.9611 9.23251 13.6993 9.18291 13.5964 9.02611C13.6667 8.92931 13.8616 8.78931 13.6316 8.79251C13.7202 8.49571 13.8156 8.12931 13.8415 7.82371C13.9377 7.60611 14.059 7.15971 13.8415 6.98851C13.8892 5.85651 13.8156 4.83731 13.7712 3.71411C13.7662 3.58051 13.8122 3.20291 13.6316 3.14611C13.6357 3.07571 13.6148 3.00771 13.6667 2.94531C13.9134 3.02531 14.3902 3.09651 14.5048 3.29651C14.5441 3.36531 14.3266 3.49731 14.749 3.49731L14.6093 3.88131L14.6085 3.88051Z" fill="%23123A2A"/><path d="M14.9297 3.61059C14.9514 4.13939 15.0275 4.87139 14.9573 5.38179C14.8929 5.85059 14.7883 5.78339 14.468 5.98339C14.5048 5.76979 14.2798 5.90179 14.258 5.86659C14.4211 5.53939 14.0222 5.82099 14.0138 5.79939C13.9686 5.36579 14.1117 5.57459 14.171 5.54899C14.2028 5.53459 14.1844 5.48419 14.1886 5.48179C14.2396 5.46339 14.478 5.46179 14.5031 5.43139C14.3551 5.16899 14.6486 4.94179 14.4328 4.67939C14.8703 4.36339 14.5734 4.57779 14.5374 4.39539C14.5165 4.28979 14.5583 3.98099 14.6076 3.87779C14.611 3.87059 14.6904 3.89459 14.7122 3.86099C14.7256 3.84099 14.7565 3.53139 14.9288 3.61059H14.9297Z" fill="%2381C49F"/><path d="M0.845501 9.09306C0.747642 9.15066 0.644765 9.21866 0.548579 9.16026C0.500904 9.20346 0.587054 9.27466 0.618837 9.29386C1.01613 9.54106 3.78879 9.69466 4.42613 9.72826C4.83095 9.74986 6.03955 9.64746 6.31221 9.72826C6.3716 9.74586 6.35905 9.82586 6.36491 9.82826C5.64058 9.80826 4.90706 9.82986 4.1819 9.79466C3.38063 9.75626 1.15162 9.65546 0.514287 9.32666C0.084377 9.10586 0.046739 8.16746 0.0065918 7.72266C0.132888 7.80346 0.258348 8.11706 0.285949 8.24026C0.298495 8.29706 0.1906 8.31866 0.215692 8.40746C0.230747 8.45866 0.390499 8.48026 0.425628 8.54106C0.528506 8.72266 0.488358 9.13066 0.844665 9.09226L0.845501 9.09306Z" fill="%232E8F6C"/><path d="M14.944 3.21172C14.9524 3.35572 14.9248 3.48532 14.9298 3.61252C14.7575 3.53332 14.7266 3.84292 14.7132 3.86292C14.6914 3.89652 14.612 3.87252 14.6086 3.87972L14.7483 3.49572C14.3259 3.49572 14.5434 3.36372 14.5041 3.29492C14.3887 3.09492 13.9119 3.02372 13.666 2.94372C13.8693 2.70052 14.392 3.08692 14.2599 2.55972C14.8353 2.52772 14.4974 3.19092 14.9449 3.21092L14.944 3.21172Z" fill="%23227F5F"/><path d="M8.46775 10.8895C8.3607 13.0887 8.37241 13.7135 8.27538 15.9135C7.82456 15.9231 7.3704 15.9735 6.91874 15.9783C6.74728 15.4791 7.61463 15.8191 7.7267 15.4775C7.83878 15.1359 7.33527 14.7183 7.65645 15.4439C7.63721 15.5751 7.27338 15.4639 7.27254 15.4439C7.27003 15.3831 7.34447 15.3551 7.3428 15.3439C7.33443 15.2959 7.25247 15.1039 7.23825 15.0095C7.23657 14.9991 7.32356 14.9671 7.3085 14.8759C7.30767 14.8687 7.22068 14.8391 7.20395 14.7759C7.18472 14.7063 7.23992 14.6807 7.23908 14.6759C7.22737 14.6327 7.06428 14.6519 7.0994 14.4423C7.13453 14.2327 7.38796 14.2199 7.37876 13.9415C7.3085 13.8087 7.18974 14.1671 7.11697 14.1583L6.97729 13.9247C6.98231 14.0983 6.82674 14.1007 6.78492 14.1415C6.73473 14.1911 6.86187 14.3591 6.4353 14.2959C6.45621 13.3247 6.49218 13.9351 6.52145 12.9631C7.18221 13.0991 6.8259 12.4991 7.01242 12.2991C7.11697 12.1871 7.20814 12.2487 7.25665 12.3663C7.26418 11.8103 7.82289 12.4343 7.51844 11.9151C7.87642 11.8127 7.5979 11.8015 7.65812 11.5807C7.66314 11.5623 7.87307 11.3639 7.90235 11.2799C7.93162 11.1959 7.853 11.1047 7.86722 11.0463C7.89064 10.9471 7.99603 10.9663 8.0069 10.9463C8.0345 10.8919 7.92995 10.8927 7.93664 10.8791C8.00941 10.7319 8.23189 10.9855 8.46775 10.8895Z" fill="%23F3D01D"/><path d="M7.99665 9.94923C8.05854 10.3956 7.83355 10.586 8.47842 10.5204C8.47089 10.6428 8.4734 10.7668 8.46754 10.8892C8.23168 10.9852 8.00836 10.7316 7.93643 10.8788C7.92974 10.8924 8.03429 10.8916 8.00669 10.946C7.99581 10.9668 7.89043 10.9468 7.86701 11.046C7.85279 11.1052 7.93225 11.1932 7.90214 11.2796C7.87203 11.366 7.66293 11.562 7.65791 11.5804C7.59769 11.8004 7.87621 11.8124 7.51823 11.9148C7.82268 12.434 7.26396 11.81 7.25644 12.366C7.20792 12.2484 7.11592 12.1868 7.01221 12.2988C6.82653 12.4988 7.182 13.0988 6.52124 12.9628C6.55051 11.9644 6.56222 10.9644 6.63081 9.96763C6.92773 10.01 7.64285 9.94843 7.99749 9.94923H7.99665Z" fill="%23FDA501"/><path d="M7.832 0.123858C7.9056 0.239058 7.7609 0.374258 7.76174 0.387858C7.76174 0.395858 7.86378 0.491858 7.86629 0.521458C7.87884 0.651858 7.94909 1.28546 7.90142 1.35666C7.832 1.45986 7.74752 1.33666 7.67475 1.37346C7.55348 1.43506 7.53591 1.53826 7.46482 1.57426C7.27997 1.66866 7.04829 1.56786 6.99309 1.74146C6.90025 1.73346 6.80657 1.72546 6.71373 1.71506L6.64347 1.70866C6.52972 1.69426 6.41514 1.60306 6.32982 1.60866C6.32982 1.59746 6.32982 1.58626 6.32982 1.57506C6.27378 0.731058 6.78733 -0.374542 7.832 0.124658V0.123858Z" fill="%23FDA501"/><path d="M6.91951 15.9773C6.82583 15.9781 6.43523 16.0309 6.39258 15.9621C6.39258 15.4061 6.42269 14.8501 6.4344 14.2941C6.86096 14.3581 6.73383 14.1893 6.78401 14.1397C6.82583 14.0981 6.9814 14.0957 6.97639 13.9229L7.11606 14.1565C7.18883 14.1653 7.30844 13.8069 7.37786 13.9397C7.38706 14.2181 7.13447 14.2245 7.0985 14.4405C7.06253 14.6565 7.22647 14.6317 7.23818 14.6741C7.23985 14.6789 7.18465 14.7045 7.20305 14.7741C7.22061 14.8373 7.30676 14.8677 7.3076 14.8741C7.32266 14.9653 7.23651 14.9973 7.23734 15.0077C7.25156 15.1021 7.33353 15.2941 7.34189 15.3421C7.34356 15.3533 7.26913 15.3813 7.27163 15.4421C7.27247 15.4621 7.63714 15.5733 7.65554 15.4421C7.33436 14.7157 7.83955 15.1261 7.7258 15.4757C7.61205 15.8253 6.74638 15.4773 6.91784 15.9765L6.91951 15.9773Z" fill="%23FDA501"/><path d="M8.42581 1.6762C8.29952 1.6738 8.03689 1.8042 7.88466 1.8098C7.63123 1.8194 7.26489 1.7578 7.06415 1.7426C7.04073 1.741 7.01732 1.7442 6.9939 1.7426C7.0491 1.569 7.27995 1.6698 7.46563 1.5754C7.53672 1.5394 7.55345 1.4362 7.67556 1.3746C7.74917 1.3378 7.83281 1.461 7.90223 1.3578C7.9499 1.2866 7.87964 0.653 7.8671 0.5226C7.86459 0.493 7.76255 0.397 7.76255 0.389C7.76171 0.3754 7.90641 0.2402 7.83281 0.125C8.49105 0.4402 8.42665 1.0746 8.42665 1.6754L8.42581 1.6762Z" fill="%23FFF800"/><path d="M8.47357 9.96957C8.46354 10.0024 8.48528 10.4184 8.47859 10.52C7.83456 10.5864 8.05872 10.396 7.99683 9.94877C8.15407 9.94877 8.31884 9.93277 8.47274 9.96957H8.47357Z" fill="%23F3D01D"/><path d="M14.2246 9.85938C13.8599 9.95777 11.9906 9.86897 11.4653 9.85938H14.2246Z" fill="%232B5E49"/><path d="M14.9581 5.38281C15.0459 5.53641 14.9723 5.69961 14.9581 5.85081C14.8494 5.80041 14.8803 6.07081 14.8009 6.11801C14.7214 6.16521 14.4061 6.16921 14.3643 6.03481C14.3634 6.02841 14.4496 5.99641 14.4688 5.98441C14.7892 5.78521 14.8937 5.85161 14.9581 5.38281Z" fill="%235A9174"/><path d="M1.43933 8.55596C1.51962 8.57836 1.60243 8.60876 1.68356 8.62316C2.15027 8.70316 2.97161 8.70236 3.48265 8.72316C6.69108 8.85756 10.158 8.87596 13.3681 8.79036C13.4275 8.78876 13.3564 8.68316 13.4902 8.79036C13.3906 8.89116 13.1832 8.79436 13.0536 8.85756C12.9817 8.89276 13.0185 8.99676 12.949 9.02476C12.7767 9.09276 12.4547 9.03516 12.2849 9.05836C12.2063 9.06876 12.0541 9.18956 12.0407 9.19196C11.8467 9.22236 11.7797 9.10956 11.6217 9.12476C11.6074 9.12636 11.3615 9.22796 11.3599 9.24156C11.3549 9.27596 11.5506 9.21996 11.482 9.32476C11.2294 9.22796 11.1173 9.43436 10.9584 9.45836C10.8162 9.47996 10.577 9.39676 10.4348 9.39116C10.4223 9.39116 10.3445 9.50156 10.1906 9.45836C10.0952 9.43116 10.0718 9.29996 10.0509 9.29116C9.83511 9.20556 9.65612 9.45916 9.63187 9.45836C9.59674 9.45676 9.57416 9.35836 9.56161 9.35836C9.38931 9.34956 9.19945 9.46316 9.1777 9.45836C9.15596 9.45356 9.09239 9.36076 9.07315 9.35836C8.91256 9.33916 8.71266 9.38396 8.58386 9.29116C8.42494 9.30956 8.17235 9.56796 7.99001 9.49196C7.86372 9.43916 8.05525 9.35116 7.79764 9.39196C7.28827 9.47196 6.97128 9.32956 6.47027 9.27196C6.36823 9.44156 6.20765 9.38236 6.12066 9.21436C6.05124 9.20636 5.98182 9.18716 5.9124 9.17996C5.669 9.15596 5.62886 9.23116 5.47496 9.22476C5.44568 9.22396 5.29681 9.12876 5.16047 9.12476C4.80417 9.11436 4.11414 9.26796 3.69343 9.19196C3.49269 9.15596 3.32206 8.93036 3.2217 8.97516C3.21751 8.97676 3.29865 9.03516 3.23926 9.05836C3.14642 9.09516 2.8127 8.78716 2.7851 8.79116C2.77673 8.79196 2.72906 8.91356 2.68055 8.92476C2.56847 8.95116 2.45304 8.88076 2.33093 8.89116C2.29413 8.89436 2.27322 8.99116 2.26067 8.99116C2.20212 8.99276 1.87676 8.90316 1.77138 8.89116C1.69694 8.88236 1.67101 8.93356 1.59657 8.92476C1.56311 8.92076 1.59657 8.83756 1.56144 8.82476C1.54639 8.81916 1.36405 8.90556 1.26452 8.92476C1.20263 8.74156 1.28041 8.80716 1.33478 8.67436C1.19426 8.67276 1.14324 8.56556 1.05542 8.47356C1.19092 8.34636 1.26117 8.50796 1.43933 8.55676V8.55596Z" fill="%232B5E49"/><path d="M14.4336 4.67969C14.6485 4.94129 14.3558 5.16929 14.5039 5.43169C14.4788 5.46209 14.2404 5.46289 14.1894 5.48209C13.9995 5.53569 13.9677 5.19489 14.0146 5.13089C14.0447 5.08929 14.1484 5.13889 14.1894 5.09729C14.1994 5.08769 14.1409 4.84609 14.1542 4.83009C14.1877 4.79089 14.2956 4.82849 14.3115 4.81329C14.3525 4.77569 14.3056 4.77169 14.4336 4.67969Z" fill="%232E8F6C"/><path d="M13.1064 2.77785C13.0888 2.81545 12.9274 2.94265 12.914 2.94505C12.4623 3.02345 11.6627 2.85705 11.2027 2.87785C10.5654 2.90745 9.85946 3.03065 9.24638 3.11145C9.00048 3.14425 8.66592 3.10105 8.40831 3.14505C8.37485 3.15065 8.40664 3.23945 8.37318 3.24505C8.19754 3.27465 7.9416 3.28105 7.77934 3.31225C7.73752 3.32025 7.72497 3.40985 7.70908 3.41225C7.10687 3.51065 6.34324 3.41225 5.71761 3.54585C5.96686 4.21385 6.48543 4.02585 7.08011 4.04665C7.36866 4.05705 7.68315 4.08825 8.006 4.11385C8.21426 4.12985 8.51286 4.10505 8.70439 4.14745C8.67847 4.23305 8.61406 4.21065 8.54715 4.21465C7.39376 4.27385 6.10486 4.11945 4.93139 4.14745L4.91383 4.01385C4.55418 4.02665 4.19034 3.99625 3.83069 4.01385C3.6609 4.02265 2.86047 4.08345 2.74755 4.11385C2.60453 4.15305 2.48827 4.36425 2.31095 4.36425C2.2524 4.90425 2.22731 4.96985 2.52089 5.40025C2.53929 5.42745 2.55518 5.59384 2.59115 5.63384C2.73333 5.79544 2.8889 5.59785 2.90563 5.93464C2.92069 6.24744 2.77515 6.10344 2.73082 6.20184C2.66809 6.34264 2.85043 6.64985 2.83537 6.66985C2.80025 6.71625 2.64384 6.65704 2.59115 6.70344C2.57442 6.71784 2.54598 7.11864 2.55602 7.13784C2.6062 7.23624 2.81363 7.16184 2.85294 7.18824C2.87385 7.20184 2.90563 7.53624 3.09717 7.58904C5.31363 7.53384 7.52507 7.56104 9.734 7.42184C10.0535 7.78984 9.98911 7.49544 10.153 7.48904C10.3429 7.48104 10.68 7.75304 10.7118 7.75624C10.8138 7.76584 10.8381 7.68904 10.8514 7.68904C10.9468 7.69064 11.1475 7.73784 11.201 7.72264C11.2588 7.70584 11.2972 7.57304 11.3407 7.55544C11.6209 7.44424 11.9622 7.56824 12.1612 7.30504C12.5125 6.29304 12.3185 5.25145 12.1964 4.21465C12.285 4.24665 12.4565 4.24425 12.4757 4.26505C12.4833 4.27225 12.4657 4.41145 12.5109 4.46585C12.5736 4.54025 12.6798 4.55705 12.6857 4.56585C12.7509 4.66985 12.863 5.09704 12.9299 5.26744C12.9332 5.27544 13.0545 5.32024 13.0696 5.36744C13.0846 5.41464 12.996 5.72504 12.9993 5.76824C13.0018 5.79864 13.1022 5.77064 13.1039 5.80184C13.1072 5.86984 13.0336 6.01145 13.0336 6.03545C13.0386 6.39865 12.9759 6.54104 12.9633 6.83704C12.9633 6.84984 13.0319 6.87384 13.0336 6.93704C13.0336 6.94904 12.9625 6.99225 12.9633 7.00425C12.9642 7.01945 13.1089 7.24744 13.103 7.27144C13.0729 7.38824 12.7409 7.29864 12.7191 7.47224C12.9165 7.62104 12.7342 7.72824 12.7542 8.00664C12.7551 8.02104 12.8212 8.05704 12.8245 8.07384C12.8379 8.14104 12.7459 8.12184 12.7542 8.14104C12.7977 8.23544 13.1047 8.34264 13.0512 8.55864C12.5543 8.68024 12.6572 8.48344 12.4222 8.29144C12.4004 8.27384 12.2926 8.33144 12.1955 8.24104C12.1696 8.21704 12.2323 8.17704 12.2307 8.17384C12.1286 8.03704 12.055 7.88904 11.8635 7.85624C11.7807 7.84184 10.9928 7.96424 10.9551 7.98984C10.9359 8.00264 10.9292 8.28664 10.6758 8.25704C10.5595 8.24344 10.7126 8.16264 10.6758 8.15704C10.6189 8.14824 10.2894 8.26584 10.2216 8.25704C10.1029 8.24104 9.61774 7.95144 9.41784 7.92264C9.25391 7.89944 8.82233 8.02424 8.78887 8.02264C8.77967 8.02264 8.62326 7.95624 8.61406 7.95544C7.0684 7.90104 5.6047 8.09624 4.03812 8.02264C3.33303 7.98904 3.56806 7.77064 2.78017 8.12264C2.7417 8.13944 2.61122 8.10584 2.57024 8.12264C2.52507 8.14184 2.51922 8.32824 2.46569 8.35624C2.38706 8.39704 2.14618 8.36904 2.08178 8.38984C2.06087 8.39624 2.12025 8.53704 2.04665 8.55704C1.95548 8.58184 1.70874 8.48984 1.67947 8.62424C1.5975 8.61064 1.51553 8.57944 1.43524 8.55704C1.39175 8.47704 1.29389 8.42664 1.26043 8.34024C0.853942 7.28504 0.781176 4.80265 0.910818 3.69625C0.950965 3.35225 0.752738 3.05785 1.17261 2.84425C1.72965 2.56105 4.17445 2.40905 4.84023 2.47705C5.06104 2.49945 5.44745 2.65705 5.55618 2.66905C6.232 2.74185 7.39543 2.68505 8.10637 2.65945C9.94143 2.59305 11.2454 2.39145 13.1013 2.77785H13.1064Z" fill="%23FDBB00"/><path d="M13.6651 2.94374C13.6133 3.00534 13.6342 3.07414 13.63 3.14454C13.6225 3.27014 13.6668 3.61494 13.7697 3.71254C13.8132 4.83574 13.8868 5.85494 13.8399 6.98694C13.8282 7.25974 13.8625 7.55494 13.8399 7.82214C13.814 8.12774 13.7195 8.49414 13.63 8.79094C13.6292 8.79414 13.5614 8.82054 13.5597 8.82454C13.5422 8.82054 13.5004 8.79894 13.4895 8.79094C13.3557 8.68374 13.4268 8.78934 13.3674 8.79094C10.1564 8.87734 6.69039 8.85894 3.48196 8.72374C2.97092 8.70214 2.15041 8.70294 1.68286 8.62374C1.7113 8.48934 1.95804 8.58214 2.05004 8.55654C2.12281 8.53654 2.06426 8.39574 2.08517 8.38934C2.14957 8.36854 2.39046 8.39734 2.46908 8.35574C2.52261 8.32774 2.52846 8.14134 2.57363 8.12214C2.61377 8.10534 2.74509 8.13894 2.78356 8.12214C3.57145 7.77014 3.33559 7.98854 4.04151 8.02214C5.60809 8.09654 7.07179 7.90054 8.61746 7.95494C8.62666 7.95494 8.78306 8.02134 8.79226 8.02214C8.82572 8.02294 9.2573 7.89894 9.42124 7.92214C9.6203 7.95014 10.1062 8.24054 10.225 8.25654C10.2928 8.26534 10.6223 8.14774 10.6792 8.15654C10.716 8.16214 10.5629 8.24294 10.6792 8.25654C10.9326 8.28614 10.9401 8.00214 10.9585 7.98934C10.9962 7.96374 11.7841 7.84134 11.8669 7.85574C12.0576 7.88854 12.132 8.03654 12.2341 8.17334C12.2366 8.17654 12.173 8.21574 12.1989 8.24054C12.2959 8.33014 12.4038 8.27254 12.4256 8.29094C12.6598 8.48294 12.5569 8.67974 13.0546 8.55814C13.1081 8.34214 12.8011 8.23494 12.7576 8.14054C12.7493 8.12214 12.8404 8.14054 12.8279 8.07334C12.8245 8.05654 12.7593 8.02054 12.7576 8.00614C12.7376 7.72774 12.9199 7.62054 12.7225 7.47174C12.7443 7.29894 13.0771 7.38774 13.1064 7.27094C13.1123 7.24694 12.9676 7.01894 12.9667 7.00374C12.9659 6.99254 13.037 6.94854 13.037 6.93654C13.0353 6.87254 12.9667 6.84934 12.9667 6.83654C12.9793 6.54054 13.042 6.39814 13.037 6.03494C13.037 6.01014 13.1106 5.86854 13.1073 5.80134C13.1056 5.77094 13.0052 5.79894 13.0027 5.76774C12.9994 5.72454 13.088 5.41574 13.073 5.36694C13.0579 5.31814 12.9366 5.27414 12.9333 5.26694C12.8655 5.09654 12.7535 4.66934 12.6891 4.56534C12.6832 4.55654 12.577 4.53974 12.5142 4.46534C12.4691 4.41174 12.4866 4.27254 12.4791 4.26454C12.459 4.24374 12.2884 4.24614 12.1998 4.21414C12.1546 4.19814 12.1011 4.15654 12.0601 4.14694C12.0701 4.03094 11.8426 4.02374 11.7632 4.01334C10.956 3.90454 10.1447 4.02534 9.49233 4.04694C9.08835 4.06054 8.73288 3.97734 8.3749 4.01334C8.26617 4.02454 8.10391 4.05334 8.00772 4.11334C7.68487 4.08854 7.37038 4.05654 7.08182 4.04614C6.48714 4.02454 5.96858 4.21334 5.71933 3.54534C6.34496 3.41174 7.10775 3.50934 7.7108 3.41174C7.72585 3.40934 7.73924 3.31974 7.78106 3.31174C7.94332 3.28134 8.19926 3.27414 8.3749 3.24454C8.40836 3.23894 8.37657 3.15014 8.41003 3.14454C8.66848 3.10054 9.0022 3.14454 9.2481 3.11094C9.86118 3.02934 10.5671 2.90694 11.2044 2.87734C11.6653 2.85574 12.4649 3.02294 12.9157 2.94454C12.9283 2.94214 13.0905 2.81494 13.1081 2.77734C13.3883 2.83574 13.441 2.87094 13.6668 2.94454L13.6651 2.94374Z" fill="%23FFF800"/><path d="M13.5958 9.02742C13.5506 8.95942 13.5054 8.97702 13.5606 8.82662C13.5623 8.82342 13.6292 8.79702 13.6309 8.79302C13.8617 8.78982 13.666 8.93062 13.5958 9.02662V9.02742Z" fill="%23227F5F"/><path d="M13.8399 7.82348C13.8625 7.55628 13.8282 7.26028 13.8399 6.98828C14.0574 7.15948 13.9361 7.60588 13.8399 7.82348Z" fill="%23123A2A"/><path d="M13.7704 3.71253C13.6675 3.61493 13.6232 3.27013 13.6307 3.14453C13.8114 3.20133 13.7654 3.57893 13.7704 3.71253Z" fill="%23719000"/><path d="M12.0584 4.14796C11.4177 3.99836 10.1187 4.01836 9.45632 4.11436C9.43206 4.11756 9.18198 4.14636 9.24638 4.21436L10.3814 4.31436C9.86281 4.28876 9.33002 4.29516 8.80978 4.28076C8.80309 4.20636 8.79222 4.16636 8.70523 4.14716C8.51286 4.10476 8.2151 4.13036 8.00684 4.11356C8.10219 4.05276 8.26445 4.02476 8.37402 4.01356C8.73199 3.97676 9.0883 4.05996 9.49145 4.04716C10.1438 4.02556 10.9551 3.90476 11.7623 4.01356C11.8417 4.02396 12.0692 4.03116 12.0592 4.14716L12.0584 4.14796Z" fill="%23F3D01D"/><path d="M3.60479 4.34846L3.16819 4.51566C2.99338 4.62286 2.90639 5.04366 3.02851 5.18366C3.10378 5.27006 3.49522 5.31166 3.56966 5.41726C3.38899 5.40926 3.10462 5.49646 2.92312 5.31726C2.74162 5.13806 2.81188 4.55326 3.02767 4.41486C3.17822 4.31806 3.44838 4.37406 3.60395 4.34766L3.60479 4.34846Z" fill="%23A92905"/><path d="M4.93225 4.14796C6.10489 4.11996 7.39462 4.27436 8.54801 4.21516C8.61492 4.21196 8.67933 4.23356 8.70526 4.14796C8.79224 4.16716 8.80311 4.20716 8.80981 4.28156C7.35698 4.24076 5.63148 4.16076 4.19873 4.24796C4.37521 4.13436 4.72483 4.15276 4.93225 4.14796Z" fill="%23E0DCBD"/><path d="M4.19865 4.24616C5.6314 4.15896 7.35689 4.23896 8.80972 4.27976C9.32996 4.29416 9.86359 4.28776 10.3813 4.31336C10.6682 4.32696 11.8015 4.34536 11.8835 4.59736C11.8107 4.91816 12.0098 5.29496 11.7262 5.54936C10.4549 5.55176 9.18777 5.53976 7.91895 5.51576C6.49289 5.48856 5.0041 5.48136 3.56967 5.41576C3.49523 5.30936 3.10296 5.26856 3.02852 5.18216C2.90724 5.04216 2.99339 4.62136 3.1682 4.51416L3.6048 4.34696C3.80972 4.31336 3.98536 4.25976 4.19865 4.24696V4.24616Z" fill="%23FE0000"/><path d="M4.53074 4.31612C4.61856 4.31292 5.13211 4.30092 5.15971 4.31612C5.19986 4.33852 5.15386 4.41852 5.19484 4.44972C5.21408 4.46492 5.3203 4.42652 5.35208 4.46652C5.35543 4.47052 5.28099 4.52732 5.28183 4.53372C5.28517 4.54972 5.35459 4.59132 5.35208 4.60092C5.32699 4.68412 5.13127 4.81292 5.09029 4.91852C4.90043 4.79052 4.0105 4.93852 3.95529 4.76812C3.94944 4.75052 3.97453 4.46972 3.92017 4.40092C3.94359 4.35452 4.44877 4.32012 4.53157 4.31772L4.53074 4.31612Z" fill="%23FCA697"/><path d="M9.03716 4.34766C9.0497 4.34766 9.09487 4.41486 9.10741 4.41486C9.26967 4.40926 10.188 4.29166 10.1379 4.53166C10.1287 4.57566 10.0124 4.61406 9.99818 4.63166C9.99567 4.63486 10.0684 4.67086 10.0157 4.71486C9.96305 4.75886 9.78406 4.77406 9.77152 4.78206C9.70042 4.82526 9.7297 4.93086 9.66697 4.94926C9.61093 4.96526 9.54987 4.85086 9.52729 4.84926C9.33073 4.83646 9.10658 4.97406 8.89831 4.91646C8.79878 4.88926 8.70176 4.61886 8.70594 4.59886C8.72434 4.52286 8.97777 4.63006 8.70594 4.39806C8.79878 4.40206 8.96941 4.35006 9.03799 4.34766H9.03716Z" fill="%23F86866"/><path d="M4.93233 4.15016C4.72491 4.15496 4.37529 4.13656 4.19881 4.25016C3.98553 4.26296 3.80988 4.31656 3.60497 4.35016C3.44856 4.37576 3.17924 4.32056 3.02869 4.41736C2.81289 4.55576 2.74515 5.14136 2.92414 5.31976C3.10313 5.49816 3.39001 5.41176 3.57067 5.41976C5.00426 5.48616 6.49306 5.49256 7.91995 5.51976C9.18877 5.54376 10.4568 5.55576 11.7272 5.55336C12.0108 5.29896 11.8117 4.92216 11.8845 4.60136C11.8025 4.34936 10.6692 4.33096 10.3823 4.31736L9.24732 4.21736C9.18292 4.14936 9.433 4.12056 9.45726 4.11736C10.1197 4.02056 11.4195 4.00136 12.0593 4.15096C12.1003 4.16056 12.1538 4.20136 12.199 4.21816C12.3211 5.25576 12.5151 6.29736 12.1638 7.30856C11.9639 7.57256 11.6235 7.44856 11.3433 7.55896C11.2998 7.57656 11.2614 7.70936 11.2037 7.72616C11.1501 7.74136 10.9502 7.69496 10.854 7.69256C10.8407 7.69256 10.8164 7.76856 10.7144 7.75976C10.6826 7.75656 10.3455 7.48456 10.1557 7.49256C9.99088 7.49896 10.0561 7.79336 9.73662 7.42536C7.52768 7.56456 5.31624 7.53736 3.09978 7.59256C2.90824 7.53976 2.87646 7.20536 2.85555 7.19176C2.81624 7.16536 2.60881 7.23976 2.55863 7.14136C2.54859 7.12216 2.57703 6.72136 2.59376 6.70696C2.64729 6.66056 2.80369 6.72056 2.83799 6.67336C2.85221 6.65416 2.67071 6.34616 2.73344 6.20536C2.77693 6.10696 2.9233 6.25096 2.90824 5.93816C2.89152 5.60136 2.73595 5.79896 2.59376 5.63736C2.55863 5.59736 2.5419 5.43016 2.5235 5.40376C2.22992 4.97336 2.25502 4.90776 2.31356 4.36776C2.49088 4.36776 2.60714 4.15656 2.75016 4.11736C2.86224 4.08696 3.66351 4.02536 3.8333 4.01736C4.19212 3.99976 4.55679 4.03016 4.91644 4.01736L4.93401 4.15096L4.93233 4.15016Z" fill="%23FFF800"/><path d="M5.05437 5.65298C5.92255 5.62498 11.3458 5.72258 11.7615 6.05378C12.0341 6.27058 12.0166 7.15938 11.5515 7.28978C10.4726 7.59218 7.96337 7.14818 6.76564 7.08898C5.72432 7.03778 4.36601 7.19138 3.34226 7.05538C2.86635 6.99218 2.99013 6.24098 3.02777 5.88578C3.69104 5.73138 4.3727 5.67378 5.05353 5.65218L5.05437 5.65298Z" fill="%23FE0000"/><path d="M5.26436 5.75247C6.37343 5.72287 7.48918 5.80607 8.60076 5.80287L8.28627 5.83647C8.62418 6.19407 8.36239 6.04927 8.3214 6.13727C8.3122 6.15647 8.25533 6.55007 8.23442 6.55487C8.16165 6.57247 7.76854 6.44607 7.74512 6.45487C7.67737 6.47887 7.70414 6.57567 7.67487 6.58847C7.6481 6.60047 7.12619 6.59407 7.08102 6.58847C7.0484 6.58447 7.07935 6.49167 7.04589 6.48847C6.76486 6.45887 6.4487 6.48687 6.17269 6.45487C6.08403 6.44447 5.9753 6.32207 5.96275 6.32127C5.89668 6.31567 5.83228 6.45167 5.82308 6.45487C5.72438 6.48847 5.58387 6.40447 5.49103 6.57167C5.67922 6.70287 5.90253 6.76447 6.13756 6.75567C6.17269 6.77247 6.05894 6.97567 6.03301 6.98927C5.91173 7.05327 3.39919 6.97807 3.27373 6.92207C3.03368 6.81647 3.22438 6.71887 3.22104 6.70527C3.21769 6.69327 3.12234 6.55807 3.11648 6.47167C3.11147 6.39887 3.10394 5.99247 3.11648 5.97087C3.19427 5.83327 5.00759 5.76047 5.2652 5.75407L5.26436 5.75247Z" fill="%23F86866"/></g><defs><clipPath id="clip0_1988_16632"><rect width="15" height="16" fill="white"/></clipPath></defs></svg>');
}
.header__navText {
  font-size: inherit;
  font-weight: inherit;
}
.header__buttonList {
  -webkit-align-items: center;
          align-items: center;
  display: grid;
  gap: 16px;
  grid-auto-columns: 140px;
  grid-auto-flow: column;
}
@media (max-width: 1200px) {
  .header__buttonList {
    gap: 8px;
  }
}
@media (max-width: 1024px) {
  .header__buttonList {
    grid-auto-columns: minmax(0, 1fr);
    grid-auto-flow: row;
    grid-row: auto;
    -webkit-justify-content: auto;
            justify-content: auto;
    margin-top: 0;
  }
}
@media (max-width: 1024px) {
  .header__buttonList .header__button {
    width: 100%;
  }
}
.header__button {
  pointer-events: auto;
}
.header__button_type_sp {
  display: none;
}
@media (max-width: 1024px) {
  .header__button_type_sp {
    display: grid;
    place-self: center flex-end;
  }
}
.header_type_top {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  left: 0;
  padding: 0;
  right: 0;
  top: 0;
}
@media (max-width: 1024px) {
  .header_type_top {
    top: 8px;
  }
}
.header_type_top .header__container {
  padding: 0 24px;
}
@media (max-width: 1024px) {
  .header_type_top .header__container {
    padding: 0;
  }
}
.header_type_top .header__inner {
  -webkit-align-items: flex-start;
          align-items: flex-start;
  display: grid;
  gap: 16px;
  grid-auto-flow: dense;
  grid-template-columns: 256px auto;
}
@media (max-width: 1024px) {
  .header_type_top .header__inner {
    display: contents;
  }
}
.header_type_top .header__inner::before {
  background: #fff;
  border: 2px solid #22a720;
  border-radius: 0 0 1000px 1000px;
  border-top: none;
  border-top: none;
  content: "";
  grid-column: 1/span 1;
  grid-row: 1/span 2;
  height: 100%;
}
@media (max-width: 1024px) {
  .header_type_top .header__inner::before {
    content: none;
  }
}
.header_type_top .header__drawer {
  display: contents;
}
@media (max-width: 1024px) {
  .header_type_top .header__drawer {
    display: grid;
  }
}
.header_type_top .header__logoWrap {
  grid-column: 1/span 1;
  grid-row: 1/span 1;
  margin-top: 24px;
  max-width: 170px;
  place-self: flex-start center;
}
@media (max-width: 1024px) {
  .header_type_top .header__logoWrap {
    margin-top: 0;
    max-width: unset;
  }
}
.header_type_top .header__logo {
  width: 155px;
}
@media (max-width: 1024px) {
  .header_type_top .header__logo {
    width: 120px;
  }
}
.header_type_top .header__logoPic {
  display: none;
}
.header_type_top .header__logoPic_type_top {
  display: block;
}
.header_type_top .header__nav {
  grid-column: 1/span 1;
  grid-row: 2/span 1;
  margin-bottom: 64px;
  place-self: center;
}
@media (max-width: 1024px) {
  .header_type_top .header__nav {
    grid-column: auto;
    grid-row: auto;
    margin-bottom: 0;
    place-self: auto;
  }
}
.header_type_top .header__navList {
  display: grid;
  gap: 16px;
  grid-auto-columns: minmax(0, 1fr);
}
@media (max-width: 1024px) {
  .header_type_top .header__navList {
    gap: 24px;
  }
}
.header_type_top .header__buttonList {
  align-self: center;
  gap: 16px;
  grid-auto-columns: min(140px, 100%);
  grid-row: 1/-1;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  margin-top: 8px;
}
@media (max-width: 1024px) {
  .header_type_top .header__buttonList {
    grid-auto-columns: minmax(0, 1fr);
    grid-auto-flow: row;
    grid-row: auto;
    margin-top: 0;
  }
}
.header.is_opened .header__hamButton .hamButton__icon {
  gap: 0;
}
.header.is_opened .header__hamButton .hamButton__iconLine {
  width: 118.75%;
}
.header.is_opened .header__hamButton .hamButton__iconLine_type_top {
  rotate: 34deg;
  translate: 0 2px;
}
.header.is_opened .header__hamButton .hamButton__iconLine_type_middle {
  opacity: 0;
}
.header.is_opened .header__hamButton .hamButton__iconLine_type_bottom {
  rotate: -34deg;
  translate: 0 -2px;
}
.header.is_opened .header__logoWrap {
  translate: min(310px, 100cqw - 65px) 0;
}
.header.is_opened .header__drawer {
  translate: 0 0;
}

.frame {
  border: var(--frame-border-width) solid #22a720;
  bottom: 0;
  display: grid;
  left: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 800;
}
.frame__top, .frame__bottom {
  display: grid;
  grid-area: 1/-1;
}
.frame__top::before, .frame__bottom::before {
  aspect-ratio: 1;
  background: radial-gradient(circle at 100% 100%, transparent, transparent calc(100% / sqrt(2) - 0.3px), #22a720 calc(100% / sqrt(2) + 0.3px), #22a720);
  content: "";
  grid-area: 1/-1;
  place-self: flex-start flex-start;
  width: 16px;
}
.frame__top::after, .frame__bottom::after {
  aspect-ratio: 1;
  background: radial-gradient(circle at 0% 100%, transparent, transparent calc(100% / sqrt(2) - 0.3px), #22a720 calc(100% / sqrt(2) + 0.3px), #22a720);
  content: "";
  grid-area: 1/-1;
  place-self: flex-start flex-end;
  width: 16px;
}
.frame__top {
  place-self: flex-start stretch;
}
.frame__bottom {
  place-self: flex-end stretch;
}
.frame__bottom::before {
  background: radial-gradient(circle at 100% 0%, transparent, transparent calc(100% / sqrt(2) - 0.3px), #22a720 calc(100% / sqrt(2) + 0.3px), #22a720);
}
.frame__bottom::after {
  background: radial-gradient(circle at 0% 0%, transparent, transparent calc(100% / sqrt(2) - 0.3px), #22a720 calc(100% / sqrt(2) + 0.3px), #22a720);
}

.newsList {
  display: grid;
  gap: 24px;
}
.newsList__contents {
  -webkit-align-items: flex-start;
          align-items: flex-start;
  display: grid;
}
.newsList__list {
  display: grid;
  gap: 24px;
  grid-area: 1/-1;
  grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
}
@media (max-width: 768px) {
  .newsList__list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.newsList__noItemText {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  place-self: center;
  text-align: center;
}

.housemaker__company {
  background: #fffbf2 url(../images/common/texture_bg.png) repeat 0 0/auto;
  overflow: hidden;
  padding: 24px 0 120px;
}
.housemaker__header {
  display: grid;
  grid-template-columns: minmax(24px, 1fr) minmax(min(100% - 48px, 1072px), 1fr) minmax(24px, 1fr);
  margin-bottom: 48px;
  min-height: 96px;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .housemaker__header {
    grid-template-columns: minmax(16px, 1fr) minmax(min(100% - 32px, 1072px), 1fr) minmax(16px, 1fr);
  }
}
.housemaker__header:before {
  background: #fff;
  border-radius: 0 1000px 1000px 0;
  content: "";
  display: block;
  grid-column: 1/span 2;
  grid-row: 1/-1;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.housemaker__headerInner {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
  gap: 32px;
  grid-column: 2/span 1;
  grid-row: 1/-1;
  padding-bottom: 16px;
  padding-top: 16px;
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  .housemaker__headerInner {
    gap: 16px;
  }
}
.housemaker__logoWrap {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
  gap: 32px;
}
@media (max-width: 768px) {
  .housemaker__logoWrap {
    gap: 16px;
  }
}
.housemaker__logoWrap:after {
  background: #d3d3d3;
  content: "";
  display: block;
  height: 40px;
  width: 1px;
}
.housemaker__logo {
  aspect-ratio: 1;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
  width: 64px;
}
.housemaker__nameWrap {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
  gap: 0 16px;
}
@media (max-width: 768px) {
  .housemaker__nameWrap {
    -webkit-align-items: flex-start;
            align-items: flex-start;
    -webkit-flex-direction: column;
            flex-direction: column;
  }
}
.housemaker__nameEn {
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
}
.housemaker__nameJp {
  color: #a3a29d;
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}
.housemaker__body {
  display: grid;
  grid-template-columns: minmax(24px, 1fr) 316px 59.8101265823% minmax(24px, 1fr);
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .housemaker__body {
    gap: 24px 0;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin-bottom: 0;
    padding: 0 16px;
  }
}
.housemaker__houseFigure {
  border-radius: 8px 0 0 8px;
  grid-column: 3/-1;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .housemaker__houseFigure {
    border-radius: 8px;
    grid-column: auto;
    margin-right: 0;
    -webkit-order: 1;
            order: 1;
  }
}
.housemaker__houseImg {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.housemaker__info {
  grid-column: 2/span 1;
  max-width: 264px;
  padding: 16px 0;
  width: 100%;
}
@media (max-width: 1024px) {
  .housemaker__info {
    grid-column: auto;
    max-width: 100%;
    -webkit-order: 2;
            order: 2;
    padding: 0 0 12px;
  }
}
.housemaker__infoList {
  border-bottom: 1px dotted #d3d3d3;
  padding: 0 0 16px;
}
.housemaker__infoList:not(:last-child) {
  margin-bottom: 16px;
}
.housemaker__infoItemTag {
  margin: 0 0 16px;
}
.housemaker__infoTag {
  -webkit-align-items: center;
          align-items: center;
  background: #666464;
  border-radius: 4px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  max-width: 88px;
  padding: 4px 8px;
  width: 100%;
}
.housemaker__tagTxt {
  color: #fff;
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
.housemaker__infoTxt {
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
.housemaker__list {
  display: -webkit-flex;
  display: flex;
  gap: 24px;
  -webkit-justify-content: space-around;
          justify-content: space-around;
  padding: 24px 0 0;
}
@media (max-width: 768px) {
  .housemaker__list {
    -webkit-align-items: center;
            align-items: center;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-justify-content: center;
            justify-content: center;
  }
}
.housemaker__item {
  height: 58px;
  max-width: 312px;
  width: 100%;
}
@media (max-width: 768px) {
  .housemaker__item {
    max-width: unset;
  }
}
@media (max-width: 768px) {
  .housemaker__button {
    width: 100%;
  }
}
.housemaker__view {
  background: #ffeec1 url(../images/common/texture_bg.png) repeat 0 0/auto;
  padding: 120px 0;
  position: relative;
}
@media (max-width: 768px) {
  .housemaker__view {
    padding: 64px 0;
  }
}
.housemaker__container {
  position: relative;
}
.housemaker__lead {
  margin: 0 0 48px;
}
.housemaker__leadTtl {
  background: linear-gradient(to top, rgba(245, 199, 29, 0.2) 43%, transparent 43%);
  display: inline;
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
}
.housemaker__leadTxt {
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  margin: 24px 0 0;
}
.housemaker__movieWrap {
  margin: 0 0 48px;
}
.housemaker__movie {
  aspect-ratio: 1072/603;
  height: auto;
  width: 100%;
}
.housemaker__imgWrap {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 48px;
}
@media (max-width: 768px) {
  .housemaker__imgWrap {
    gap: 16px;
    grid-template-columns: 1fr;
  }
}
.housemaker__figure {
  border-radius: 8px;
  overflow: hidden;
}
.housemaker__img {
  width: 100%;
}
.housemaker__news {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .housemaker__news {
    padding: 64px 0;
  }
}
.housemaker__news .housemaker__ttl {
  margin-bottom: 48px;
}
.housemaker__ttl {
  -webkit-align-items: center;
          align-items: center;
  border-bottom: 1px solid #d3d3d3;
  display: -webkit-flex;
  display: flex;
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  gap: 8px;
  line-height: 1.6;
  margin: 0;
  padding: 16px 0 16px 32px;
  position: relative;
}
.housemaker__ttl:not(:last-child) {
  margin-bottom: 24px;
}
.housemaker__ttl:nth-of-type(n + 2) {
  margin-top: 24px;
}
.housemaker__ttl:before {
  background-color: #22a720;
  border-radius: 4px;
  content: "";
  display: block;
  height: 16px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
}
.housemaker__ttl_color_orange:before {
  background-color: #ff8100;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.housemaker .newsList__list {
  margin-bottom: 48px;
}
.housemaker .newsArticle_type_pinned {
  -webkit-order: -1;
          order: -1;
}
.housemaker .newsArticle:nth-of-type(n + 5) {
  display: none;
}
.housemaker__txt {
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  margin: 24px 0 0;
}
.housemaker__txt:not(:last-child) {
  margin-bottom: 24px;
}
.housemaker__buttonWrap {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
}

.housemakerOrnament__insectHunting {
  aspect-ratio: 320/64;
  container: ornament-insect-hunting/inline-size;
  display: grid;
  grid-area: 1/-1;
  left: 0;
  place-self: center flex-start;
  position: absolute;
  top: -160px;
  translate: 1.25% -4.6875%;
  width: 29.8507462687%;
}
@media (max-width: 768px) {
  .housemakerOrnament__insectHunting {
    left: 50%;
    max-width: 320px;
    top: -72px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    translate: 0 -31.976744186%;
    width: 52.5993883792%;
  }
}
.housemakerOrnament__insectHunting::before {
  -webkit-animation: insect-hunting-move 6s linear infinite alternate, turn 12s infinite both;
          animation: insect-hunting-move 6s linear infinite alternate, turn 12s infinite both;
  animation-composition: add;
  aspect-ratio: 174/64;
  background: url(../images/common/ornament_insect_hunting.png) no-repeat center/contain;
  content: "";
  place-self: flex-start flex-end;
  width: 54.375%;
}

.top {
  padding: 0;
}
.topMv {
  background: linear-gradient(180deg, #f1f6ea 0%, #fff7e4 100%) no-repeat center top/100vw 100dvh fixed;
  container: topMv/inline-size;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.topMv::before {
  background: url(../images/common/texture_mv.jpg) no-repeat center/cover fixed;
  bottom: 0;
  content: "";
  left: 0;
  mix-blend-mode: screen;
  opacity: 0.3;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
.topMv::after {
  aspect-ratio: 651/795;
  background: url(../images/top/img_mv_bg.svg) no-repeat center top/cover;
  content: "";
  display: block;
  height: 84.5025510204%;
  left: var(--frame-border-width);
  position: absolute;
  top: var(--frame-border-width);
}
@media (max-width: 768px) {
  .topMv::after {
    aspect-ratio: 493/650;
    height: 113.4816159782%;
  }
}
.topMv__container {
  max-width: max(1128px, 95.46875%);
}
@media (max-width: 768px) {
  .topMv__container {
    padding: 0 24px;
  }
}
.topMv__inner {
  container: topMvInner/inline-size;
  display: grid;
  gap: 1.7887563884cqw 3.8330494037cqw;
  grid-template-areas: ".... movie" "catch movie";
  grid-template-columns: 25.2129471891% 1fr;
  grid-template-rows: 14.4804088586cqw auto;
  padding-bottom: 38px;
  padding-top: 150px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .topMv__inner {
    gap: 6.4cqw;
    grid-template-areas: "movie" "catch";
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-template-rows: repeat(2, auto);
    padding-bottom: 9px;
    padding-top: 120px;
  }
}
.topMv__movie {
  --topMv-movie-aspect: 16 / 9;
  aspect-ratio: var(--topMv-movie-aspect);
  display: grid;
  grid-area: movie;
  width: 96.0384153661%;
}
@media (max-width: 768px) {
  .topMv__movie {
    justify-self: center;
    width: 97.8593272171%;
  }
}
.topMv__movie::before {
  aspect-ratio: inherit;
  background: #c5dea1;
  border-bottom-left-radius: 3% 5.3333333333%;
  border-bottom-right-radius: 3% 5.3333333333%;
  border-top-left-radius: 3% 5.3333333333%;
  border-top-right-radius: 3% 5.3333333333%;
  content: "";
  grid-area: 1/-1;
  rotate: -3.02deg;
  translate: -1.8861281561% 0;
  width: 99.41%;
  z-index: 0;
}
.topMv__movie::after {
  aspect-ratio: inherit;
  background: #f3cc00;
  border-bottom-left-radius: 3% 5.3333333333%;
  border-bottom-right-radius: 3% 5.3333333333%;
  border-top-left-radius: 3% 5.3333333333%;
  border-top-right-radius: 3% 5.3333333333%;
  content: "";
  grid-area: 1/-1;
  rotate: 3.02deg;
  translate: 3.1435469269% 0;
  width: 99.41%;
  z-index: 1;
}
.topMv__movieFrame {
  -webkit-animation: updown 2s linear forwards alternate infinite;
          animation: updown 2s linear forwards alternate infinite;
  aspect-ratio: var(--topMv-movie-aspect);
  background: #ff8100;
  border-bottom-left-radius: 3% 5.3333333333%;
  border-bottom-right-radius: 3% 5.3333333333%;
  border-top-left-radius: 3% 5.3333333333%;
  border-top-right-radius: 3% 5.3333333333%;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  display: block;
  grid-area: 1/-1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  will-change: transform;
  z-index: 2;
}
.topMv__catch {
  -webkit-align-content: center;
          align-content: center;
  align-self: center;
  display: grid;
  gap: 1.2776831346cqw;
  grid-area: catch;
  margin-top: 0.5110732538cqw;
  -webkit-order: -1;
          order: -1;
}
@media (max-width: 768px) {
  .topMv__catch {
    gap: 4.5871559633cqw;
    margin-top: 0;
    width: calc(100% - 9.1743119266cqw);
  }
}
.topMv__catchTitle {
  background: repeating-linear-gradient(180deg, transparent, transparent 8px, #fff 8px, #fff 2.4em) repeat 0 -4px;
  color: #22a720;
  font-size: 1.7021276596cqw;
  font-weight: 700;
  line-height: 2.4;
  padding: 0 0.4em;
}
@media (max-width: 768px) {
  .topMv__catchTitle {
    font-size: 6.1162079511cqw;
  }
}
.topMv__catchText {
  font-size: 1.3617021277cqw;
  font-weight: 500;
  line-height: 1.625;
}
@media (max-width: 768px) {
  .topMv__catchText {
    font-size: 4.8929663609cqw;
  }
}
.topMv__marquee {
  color: #fff;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  font-size: 16rem;
  font-weight: 700;
  left: 0;
  line-height: 1;
  max-width: 100%;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: -0.1em;
  white-space: nowrap;
  z-index: 1;
}
@media (max-width: 768px) {
  .topMv__marquee {
    font-size: 5.6rem;
    top: 0.3em;
  }
}
.topMv__marqueeText {
  -webkit-animation: text-scroll 10s linear infinite;
          animation: text-scroll 10s linear infinite;
  font-size: inherit;
  font-weight: inherit;
  padding-bottom: 0.15em;
  will-change: transform;
}
.topMv__animationIllust {
  aspect-ratio: 1280/305;
  container: animationIllust/inline-size;
  display: grid;
  grid-auto-columns: minmax(0, 1fr);
  overflow: hidden;
  pointer-events: none;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .topMv__animationIllust {
    aspect-ratio: 809/206;
  }
}
.topMv__animationIllust::before {
  aspect-ratio: 1280/305;
  background: url(../images/top/img_mv_illust_01_bg.png) no-repeat 54.8% 0/cover;
  content: "";
  grid-area: 1/-1;
  width: 100%;
}
@media (max-width: 768px) {
  .topMv__animationIllust::before {
    aspect-ratio: 375/151;
    background-position: 50% 0;
  }
}
.topMv__animationIllustRoad {
  aspect-ratio: 1634/418;
  border-radius: 50%;
  display: grid;
  grid-area: 1/-1;
  place-self: flex-end center;
  translate: -1% 22.8%;
  width: 127.65625%;
}
@media (max-width: 768px) {
  .topMv__animationIllustRoad {
    aspect-ratio: 809/206;
    translate: 0 23.3%;
    width: 215.7333333333%;
  }
}
.topMv__animationIllustBicycle {
  animation: bicycle-move 50s linear infinite reverse;
  aspect-ratio: 78/58;
  offset-anchor: left 50% bottom 10.3448275862%;
  offset-path: ellipse(50% 50% at center);
  width: 4.7735618115%;
  will-change: offset-distance;
}
.topMv__animationIllustBicycle::after {
  background: url(../images/top/img_mv_illust_01_bicycle.png) no-repeat center/contain;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
}
@-webkit-keyframes bicycle-move {
  to {
    offset-distance: 100%;
  }
}
@keyframes bicycle-move {
  to {
    offset-distance: 100%;
  }
}

.topNewsOrnament {
  display: grid;
  width: 100%;
}
.topNewsOrnament__cloud {
  display: grid;
  grid-area: 1/-1;
  width: 27.9850746269%;
}
@media (max-width: 768px) {
  .topNewsOrnament__cloud {
    max-width: 300px;
    width: 50.1529051988%;
  }
}
.topNewsOrnament__cloud_pos_left {
  aspect-ratio: 300/100;
  container: ornament-cloud-left/inline-size;
  place-self: flex-start;
}
.topNewsOrnament__cloud_pos_left::before {
  -webkit-animation: cloud 3s linear infinite alternate;
          animation: cloud 3s linear infinite alternate;
  aspect-ratio: 240/100;
  background: url(../images/common/ornament_cloud_01.png) no-repeat center/contain;
  content: "";
  place-self: flex-start;
  width: 80%;
}
.topNewsOrnament__cloud_pos_right {
  aspect-ratio: 300/70;
  container: ornament-cloud-right/inline-size;
  place-self: flex-end;
  translate: 0 56%;
}
@media (max-width: 768px) {
  .topNewsOrnament__cloud_pos_right {
    translate: 0 56%;
  }
}
.topNewsOrnament__cloud_pos_right::before {
  -webkit-animation: cloud 3s linear infinite alternate;
          animation: cloud 3s linear infinite alternate;
  aspect-ratio: 242/70;
  background: url(../images/common/ornament_cloud_02.png) no-repeat center/contain;
  content: "";
  place-self: flex-start;
  width: 80%;
}

.topNews {
  background: #fff;
  margin-top: -8.828125%;
  padding-bottom: 9.375%;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .topNews {
    margin-top: 55px;
    padding-bottom: 120px;
  }
}
.topNews::after {
  aspect-ratio: 1280/390;
  background: #fffbf2 url(../images/common/texture_bg.png) repeat 0 0/auto;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg width="1280" height="390" viewBox="0 0 1280 390" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M625.609 293.607C201.467 319.57 31.8106 108.687 0 0V390H1280V389.447C1238.6 346.682 1049.75 267.644 625.609 293.607Z" fill="black"/></svg>') no-repeat center bottom/cover;
          mask: url('data:image/svg+xml;utf8,<svg width="1280" height="390" viewBox="0 0 1280 390" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M625.609 293.607C201.467 319.57 31.8106 108.687 0 0V390H1280V389.447C1238.6 346.682 1049.75 267.644 625.609 293.607Z" fill="black"/></svg>') no-repeat center bottom/cover;
  position: absolute;
  width: 100%;
  z-index: 0;
}
.topNews__container {
  max-width: 1120px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .topNews__container {
    padding: 0 24px;
  }
}
.topNews__inner {
  display: grid;
  gap: 48px;
  grid-auto-columns: minmax(0, 1fr);
  position: relative;
}
.topNews__sectionTitle {
  margin: 0 auto;
  padding-right: 32px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .topNews__sectionTitle {
    padding-right: 0;
  }
}
.topNews__body .newsList__list {
  height: 0;
  opacity: 0;
  transition-duration: 0.1s;
  transition-property: visibility, opacity;
  transition-timing-function: ease-out;
  visibility: hidden;
}
.topNews__body .newsList__list_type_current {
  height: auto;
  opacity: 1;
  visibility: visible;
}
.topNews__buttonWrap {
  display: grid;
  place-items: center;
  position: relative;
}
.topNews__button {
  grid-area: 1/-1;
  z-index: 1;
}
@media (max-width: 768px) {
  .topNews__button {
    width: 100%;
  }
}
.topNews__ornament {
  bottom: -6px;
  position: absolute;
  z-index: 0;
}
@media (max-width: 768px) {
  .topNews__ornament {
    bottom: -96px;
    grid-area: unset;
    translate: 0 -25%;
  }
}

.topHouseMakerItem {
  container: topHouseMakerItem/inline-size;
  display: grid;
}
.topHouseMakerItem__outer {
  -webkit-clip-path: polygon(16.4705882353cqw -2px, calc(100cqw + 2px) -2px, calc(100cqw + 2px) calc(100% - 16.4705882353cqw), 83.5294117647cqw calc(100% + 2px), -2px calc(100% + 2px), -2px 16.4705882353cqw);
          clip-path: polygon(16.4705882353cqw -2px, calc(100cqw + 2px) -2px, calc(100cqw + 2px) calc(100% - 16.4705882353cqw), 83.5294117647cqw calc(100% + 2px), -2px calc(100% + 2px), -2px 16.4705882353cqw);
  display: grid;
  height: 100%;
  padding: 2px;
  width: 100%;
}
.topHouseMakerItem__slit {
  display: grid;
  grid-area: 1/-1;
  height: 100%;
  pointer-events: none;
  width: 100%;
  z-index: 2;
}
.topHouseMakerItem__slit::before {
  aspect-ratio: 1;
  background: rgba(0, 0, 0, 0.08);
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
  content: "";
  place-self: flex-start;
  pointer-events: auto;
  width: 16.0237388724%;
}
.topHouseMakerItem__slit::after {
  aspect-ratio: 1;
  background: rgba(0, 0, 0, 0.08);
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
          clip-path: polygon(100% 0, 100% 100%, 0 100%);
  content: "";
  place-self: flex-end;
  pointer-events: auto;
  width: 16.0237388724%;
}
.topHouseMakerItem__link {
  display: block;
  grid-area: 1/-1;
  height: 100%;
  width: 100%;
}
.topHouseMakerItem__link:hover {
  opacity: 1;
}
.topHouseMakerItem__link:hover .topHouseMakerItem__inner {
  border-color: #ff8100;
}
.topHouseMakerItem__link:hover .topHouseMakerItem__pic, .topHouseMakerItem__link:hover .topHouseMakerItem__body {
  opacity: 0.4;
}
.topHouseMakerItem__inner {
  background: #fff;
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 16px;
  grid-area: 1/-1;
  height: 100%;
  padding: 15px;
  transition: border-color 0.1s ease-out;
  width: 100%;
}
.topHouseMakerItem__pic {
  aspect-ratio: 304/200;
  border-radius: 8px;
  overflow: hidden;
  transition: opacity 0.1s ease-out;
  width: 100%;
}
@media (max-width: 768px) {
  .topHouseMakerItem__pic {
    aspect-ratio: 291/200;
  }
}
.topHouseMakerItem__img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.topHouseMakerItem__body {
  -webkit-align-items: center;
          align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: 90px 1px minmax(0, 1fr);
  transition: opacity 0.1s ease-out;
}
.topHouseMakerItem__body::before {
  background: #d3d3d3;
  content: "";
  height: 100%;
  width: 100%;
}
.topHouseMakerItem__logo {
  aspect-ratio: 1;
  -webkit-order: -1;
          order: -1;
  padding: 8px;
}
.topHouseMakerItem__logoImg {
  display: block;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.topHouseMakerItem__content {
  display: grid;
  gap: 8px;
  padding-right: 16px;
}
.topHouseMakerItem__name {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}
.topHouseMakerItem__brandName {
  color: #a3a29d;
  font-size: 1.2rem;
  line-height: 1.6;
}

.topHouseMaker {
  background: #fffbf2 url(../images/common/texture_bg.png) repeat 0 0/auto;
  padding-bottom: 9.375%;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .topHouseMaker {
    padding-bottom: 120px;
    padding-top: 24px;
  }
}
.topHouseMaker::after {
  aspect-ratio: 1280/390;
  background: #ffeec1 url(../images/common/texture_bg.png) repeat 0 0/auto;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg width="1280" height="390" viewBox="0 0 1280 390" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M625.609 293.607C201.467 319.57 31.8106 108.687 0 0V390H1280V389.447C1238.6 346.682 1049.75 267.644 625.609 293.607Z" fill="black"/></svg>') no-repeat center bottom/cover;
          mask: url('data:image/svg+xml;utf8,<svg width="1280" height="390" viewBox="0 0 1280 390" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M625.609 293.607C201.467 319.57 31.8106 108.687 0 0V390H1280V389.447C1238.6 346.682 1049.75 267.644 625.609 293.607Z" fill="black"/></svg>') no-repeat center bottom/cover;
  position: absolute;
  scale: -1 1;
  width: 100%;
  z-index: 0;
}
.topHouseMaker__container {
  max-width: 1120px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .topHouseMaker__container {
    padding: 0 24px;
  }
}
.topHouseMaker__sectionTitle {
  margin: 0 auto 48px;
  padding-right: 32px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .topHouseMaker__sectionTitle {
    padding-right: 0;
  }
}
.topHouseMaker__list {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
}

.topAccessInfo {
  display: grid;
  gap: 22px;
  grid-auto-columns: minmax(0, 1fr);
}
.topAccessInfo__section {
  display: grid;
  gap: 16px;
  grid-auto-columns: minmax(0, 1fr);
}
.topAccessInfo__list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 768px) {
  .topAccessInfo__list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.topAccessInfo__item {
  -webkit-align-content: flex-start;
          align-content: flex-start;
  border-bottom: 1px dashed #d3d3d3;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  padding-bottom: 15px;
}
.topAccessInfo__item_type_horizontal {
  -webkit-align-items: center;
          align-items: center;
  grid-template-columns: -webkit-max-content auto;
  grid-template-columns: max-content auto;
}
.topAccessInfo__term {
  -webkit-align-items: center;
          align-items: center;
  background: #666464;
  border-radius: 4px;
  color: #fff;
  display: grid;
  font-size: 1.4rem;
  gap: 0.5714285714em;
  grid-auto-flow: column;
  -webkit-justify-content: center;
          justify-content: center;
  line-height: 1.5714285714;
  padding: 4px 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.topAccessInfo__term::before {
  aspect-ratio: 1;
  background: currentColor;
  -webkit-mask: none no-repeat center/contain;
          mask: none no-repeat center/contain;
  width: 1.7142857143em;
}
.topAccessInfo__term_icon_bus::before {
  content: "";
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 17.4102C4 17.9406 4.21071 18.4493 4.58579 18.8244C4.96086 19.1994 5.46957 19.4102 6 19.4102C6.53043 19.4102 7.03914 19.1994 7.41421 18.8244C7.78929 18.4493 8 17.9406 8 17.4102C8 16.8797 7.78929 16.371 7.41421 15.9959C7.03914 15.6209 6.53043 15.4102 6 15.4102C5.46957 15.4102 4.96086 15.6209 4.58579 15.9959C4.21071 16.371 4 16.8797 4 17.4102ZM16 17.4102C16 17.9406 16.2107 18.4493 16.5858 18.8244C16.9609 19.1994 17.4696 19.4102 18 19.4102C18.5304 19.4102 19.0391 19.1994 19.4142 18.8244C19.7893 18.4493 20 17.9406 20 17.4102C20 16.8797 19.7893 16.371 19.4142 15.9959C19.0391 15.6209 18.5304 15.4102 18 15.4102C17.4696 15.4102 16.9609 15.6209 16.5858 15.9959C16.2107 16.371 16 16.8797 16 17.4102Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/><path d="M4 17.4102H2V6.41016C2 6.14494 2.10536 5.89059 2.29289 5.70305C2.48043 5.51551 2.73478 5.41016 3 5.41016H17C18.3261 5.41016 19.5979 6.14765 20.5355 7.46041C21.4732 8.77316 22 10.5536 22 12.4102V17.4102H20M16 17.4102H8" stroke="white" stroke-linecap="round" stroke-linejoin="round"/><path d="M16 5.41016L17.5 12.4102H22M2 10.4102H17M7 5.41016V10.4102M12 5.41016V10.4102" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>');
          mask-image: url('data:image/svg+xml;utf8,<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 17.4102C4 17.9406 4.21071 18.4493 4.58579 18.8244C4.96086 19.1994 5.46957 19.4102 6 19.4102C6.53043 19.4102 7.03914 19.1994 7.41421 18.8244C7.78929 18.4493 8 17.9406 8 17.4102C8 16.8797 7.78929 16.371 7.41421 15.9959C7.03914 15.6209 6.53043 15.4102 6 15.4102C5.46957 15.4102 4.96086 15.6209 4.58579 15.9959C4.21071 16.371 4 16.8797 4 17.4102ZM16 17.4102C16 17.9406 16.2107 18.4493 16.5858 18.8244C16.9609 19.1994 17.4696 19.4102 18 19.4102C18.5304 19.4102 19.0391 19.1994 19.4142 18.8244C19.7893 18.4493 20 17.9406 20 17.4102C20 16.8797 19.7893 16.371 19.4142 15.9959C19.0391 15.6209 18.5304 15.4102 18 15.4102C17.4696 15.4102 16.9609 15.6209 16.5858 15.9959C16.2107 16.371 16 16.8797 16 17.4102Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/><path d="M4 17.4102H2V6.41016C2 6.14494 2.10536 5.89059 2.29289 5.70305C2.48043 5.51551 2.73478 5.41016 3 5.41016H17C18.3261 5.41016 19.5979 6.14765 20.5355 7.46041C21.4732 8.77316 22 10.5536 22 12.4102V17.4102H20M16 17.4102H8" stroke="white" stroke-linecap="round" stroke-linejoin="round"/><path d="M16 5.41016L17.5 12.4102H22M2 10.4102H17M7 5.41016V10.4102M12 5.41016V10.4102" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.topAccessInfo__term_icon_car::before {
  content: "";
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5 17.4102C5 17.9406 5.21071 18.4493 5.58579 18.8244C5.96086 19.1994 6.46957 19.4102 7 19.4102C7.53043 19.4102 8.03914 19.1994 8.41421 18.8244C8.78929 18.4493 9 17.9406 9 17.4102C9 16.8797 8.78929 16.371 8.41421 15.9959C8.03914 15.6209 7.53043 15.4102 7 15.4102C6.46957 15.4102 5.96086 15.6209 5.58579 15.9959C5.21071 16.371 5 16.8797 5 17.4102ZM15 17.4102C15 17.9406 15.2107 18.4493 15.5858 18.8244C15.9609 19.1994 16.4696 19.4102 17 19.4102C17.5304 19.4102 18.0391 19.1994 18.4142 18.8244C18.7893 18.4493 19 17.9406 19 17.4102C19 16.8797 18.7893 16.371 18.4142 15.9959C18.0391 15.6209 17.5304 15.4102 17 15.4102C16.4696 15.4102 15.9609 15.6209 15.5858 15.9959C15.2107 16.371 15 16.8797 15 17.4102Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/><path d="M5 17.4102H3V11.4102M3 11.4102L5 6.41016H14L18 11.4102M3 11.4102H18M18 11.4102H19C19.5304 11.4102 20.0391 11.6209 20.4142 11.9959C20.7893 12.371 21 12.8797 21 13.4102V17.4102H19M15 17.4102H9M12 11.4102V6.41016" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>');
          mask-image: url('data:image/svg+xml;utf8,<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5 17.4102C5 17.9406 5.21071 18.4493 5.58579 18.8244C5.96086 19.1994 6.46957 19.4102 7 19.4102C7.53043 19.4102 8.03914 19.1994 8.41421 18.8244C8.78929 18.4493 9 17.9406 9 17.4102C9 16.8797 8.78929 16.371 8.41421 15.9959C8.03914 15.6209 7.53043 15.4102 7 15.4102C6.46957 15.4102 5.96086 15.6209 5.58579 15.9959C5.21071 16.371 5 16.8797 5 17.4102ZM15 17.4102C15 17.9406 15.2107 18.4493 15.5858 18.8244C15.9609 19.1994 16.4696 19.4102 17 19.4102C17.5304 19.4102 18.0391 19.1994 18.4142 18.8244C18.7893 18.4493 19 17.9406 19 17.4102C19 16.8797 18.7893 16.371 18.4142 15.9959C18.0391 15.6209 17.5304 15.4102 17 15.4102C16.4696 15.4102 15.9609 15.6209 15.5858 15.9959C15.2107 16.371 15 16.8797 15 17.4102Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/><path d="M5 17.4102H3V11.4102M3 11.4102L5 6.41016H14L18 11.4102M3 11.4102H18M18 11.4102H19C19.5304 11.4102 20.0391 11.6209 20.4142 11.9959C20.7893 12.371 21 12.8797 21 13.4102V17.4102H19M15 17.4102H9M12 11.4102V6.41016" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.topAccessInfo__termText {
  font-size: inherit;
  font-weight: inherit;
}
.topAccessInfo__desc {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0 16px;
}
.topAccessInfo__descText {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
}

.facilityItem {
  display: grid;
  gap: 16px;
}
@media (max-width: 768px) {
  .facilityItem:not(.facilityItem_size_lg) {
    -webkit-align-items: flex-start;
            align-items: flex-start;
    grid-template-columns: 50.1792114695% minmax(0, 1fr);
  }
}
.facilityItem_size_lg {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .facilityItem_size_lg {
    grid-column: auto;
  }
}
.facilityItem__pic {
  border-radius: 8px;
  display: block;
  overflow: hidden;
}
.facilityItem__img {
  display: block;
}
.facilityItem__body {
  display: grid;
  gap: 8px;
  grid-auto-columns: minmax(0, 1fr);
}
.facilityItem__name {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  font-weight: 700;
}
.facilityItem__text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5714285714;
}

.topAccessAbout {
  background: #fff;
  border-radius: 8px;
  padding: 48px;
}
@media (max-width: 768px) {
  .topAccessAbout {
    padding: 24px;
  }
}
.topAccessAbout__inner {
  display: grid;
  gap: 48px;
  grid-auto-columns: minmax(0, 1fr);
}
@media (max-width: 768px) {
  .topAccessAbout__inner {
    gap: 24px;
  }
}
.topAccessAbout__inner::before {
  border-bottom: 1px dashed #d3d3d3;
  content: "";
  width: 100%;
}
.topAccessAbout__detail {
  display: grid;
  gap: 24px 48px;
  grid-template-columns: minmax(0, 1fr) 44.262295082%;
  -webkit-order: -1;
          order: -1;
}
@media (max-width: 768px) {
  .topAccessAbout__detail {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.topAccessAbout__content {
  display: grid;
  gap: 16px;
  grid-auto-columns: minmax(0, 1fr);
}
.topAccessAbout__text {
  background-image: radial-gradient(circle, #d3d3d3 1.625px, transparent 1.625px);
  background-position: -1.3px 17.5px;
  background-size: 6.48px 38px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.375;
}
.topAccessAbout__illust {
  aspect-ratio: 496/246;
  display: block;
  width: 100%;
}
@media (max-width: 768px) {
  .topAccessAbout__illust {
    aspect-ratio: 279/106;
  }
}
.topAccessAbout__illustImg {
  display: block;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.topAccessAbout__map {
  display: block;
  width: 100%;
}
.topAccessAbout__mapImg {
  display: block;
  width: 100%;
}
.topAccessAbout__facilityList {
  -webkit-align-items: flex-start;
          align-items: flex-start;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 768px) {
  .topAccessAbout__facilityList {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.topAccessOrnament {
  display: grid;
  width: 100%;
}
.topAccessOrnament__insectHunting {
  aspect-ratio: 320/64;
  container: ornament-insect-hunting/inline-size;
  display: grid;
  grid-area: 1/-1;
  place-self: center flex-start;
  translate: 1.25% -4.6875%;
  width: 29.8507462687%;
}
@media (max-width: 768px) {
  .topAccessOrnament__insectHunting {
    max-width: 320px;
    translate: 0 -31.976744186%;
    width: 52.5993883792%;
  }
}
.topAccessOrnament__insectHunting::before {
  -webkit-animation: insect-hunting-move 6s linear infinite alternate, turn 12s infinite both;
          animation: insect-hunting-move 6s linear infinite alternate, turn 12s infinite both;
  animation-composition: add;
  aspect-ratio: 174/64;
  background: url(../images/common/ornament_insect_hunting.png) no-repeat center/contain;
  content: "";
  place-self: flex-start flex-end;
  width: 54.375%;
}
.topAccessOrnament__dogSeesaw {
  aspect-ratio: 300/107;
  background-image: url(../images/common/ornament_seesaw.gif), url(../images/common/ornament_tree_01.png);
  background-position: right 44.3333333333% top 9.3457943925%, right 0 top 0;
  background-repeat: no-repeat;
  background-size: 33%, 27.3333333333%;
  container: ornament-dog-seesaw/inline-size;
  display: grid;
  grid-area: 1/-1;
  grid-area: 1/-1;
  place-self: flex-start flex-end;
  translate: -1.6666666667% 0;
  width: 27.9850746269%;
}
@media (max-width: 768px) {
  .topAccessOrnament__dogSeesaw {
    max-width: 300px;
    translate: 0 0;
    width: 49.4189602446%;
  }
}
.topAccessOrnament__dogSeesaw::before {
  -webkit-animation: dog-move-x 6s linear infinite alternate, dog-move-y 6s linear infinite alternate, turn 12s infinite both;
          animation: dog-move-x 6s linear infinite alternate, dog-move-y 6s linear infinite alternate, turn 12s infinite both;
  animation-composition: add;
  aspect-ratio: 62/33;
  background: url(../images/common/ornament_dog.png) no-repeat center/contain;
  content: "";
  grid-area: 1/-1;
  place-self: center flex-start;
  translate: 0% 42.4242424242%;
  width: 20.6666666667%;
}

.topAccess {
  background: #ffeec1 url(../images/common/texture_bg.png) repeat 0 0/auto;
  margin-top: -4px;
  padding-bottom: 9.375%;
  position: relative;
  z-index: 3;
}
@media (max-width: 768px) {
  .topAccess {
    margin-top: 0;
    padding-bottom: 64px;
    padding-top: 25px;
  }
}
.topAccess__container {
  max-width: 1120px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .topAccess__container {
    padding: 0 24px;
  }
}
.topAccess__inner {
  display: grid;
  position: relative;
}
.topAccess__ornament {
  grid-area: 1/-1;
  position: absolute;
  top: 0;
  translate: 0 -41.1214953271%;
  z-index: 0;
}
@media (max-width: 768px) {
  .topAccess__ornament {
    top: -47px;
    translate: 0 -50%;
  }
}
.topAccess__sectionTitle {
  margin: 0 auto 48px;
  padding-right: 32px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
}
@media (max-width: 768px) {
  .topAccess__sectionTitle {
    padding-right: 0;
  }
}
.topAccess__access:not(:last-child) {
  margin-bottom: 47px;
}
.topAccess__map {
  aspect-ratio: 1072/395;
  border: none;
  border-radius: 8px;
  display: block;
  width: 100%;
}
@media (max-width: 768px) {
  .topAccess__map {
    aspect-ratio: 327/320;
  }
}
.topAccess__map:not(:last-child) {
  margin-bottom: 48px;
}
.news__content {
  background: #fffbf2 url(../images/common/texture_bg.png) repeat 0 0/auto;
  padding: 24px 0 120px;
}
@media (max-width: 768px) {
  .news__content {
    padding: 24px 0 64px;
  }
}
.news__newsList {
  gap: 48px;
}
@media (max-width: 768px) {
  .news__newsList {
    gap: 24px;
  }
}
.news__newsList .newsList__list {
  opacity: 0;
  transition-duration: 0.1s;
  transition-property: visibility, opacity;
  transition-timing-function: ease-out;
  visibility: hidden;
}
.news__newsList .newsList__list_type_current {
  opacity: 1;
  visibility: visible;
}
.news__newsList.newsList__list_type_current {
  opacity: 1;
  visibility: visible;
}
.news__articles {
  display: -webkit-flex;
  display: flex;
}
.news__header {
  margin: 0 0 24px;
}
.news__leadTtlWrap {
  -webkit-align-items: start;
          align-items: start;
  border-left: 2px solid #22a720;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0 0 0 24px;
}
.news__date {
  color: #a3a29d;
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
.news__leadTtl {
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
}
.news__tag {
  background: #fff;
  border: 1px solid #22a720;
  border-radius: 4px;
  color: #22a720;
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  padding: 4px 8px;
}
.news__sns {
  display: -webkit-flex;
  display: flex;
  gap: 8px;
  -webkit-justify-content: end;
          justify-content: end;
}
.news__snsBtn {
  transition: opacity 0.1s ease-out;
}
.news__snsBtn:hover {
  opacity: 0.4;
}
.news__lead {
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  margin: 24px 0;
}
.news__lead a {
  -webkit-align-items: center;
          align-items: center;
  color: #22a720;
  display: inline-grid;
  font-size: 1.4rem;
  font-weight: 500;
  gap: 4px;
  grid-auto-flow: column;
  line-height: 1.6;
  text-decoration: underline;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.news__imgWrap {
  margin: 24px 0;
  padding: 16px;
  text-align: center;
}
@media (max-width: 768px) {
  .news__imgWrap {
    padding: 16px 0;
  }
}
.news__fig {
  border: 1px solid #d3d3d3;
  border-radius: 8px;
  margin: 0 auto;
  max-width: 600px;
  overflow: hidden;
}
.news__linkButtonWrap {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  margin: 48px 0 0;
}
.news__body ol,
.news__body ul {
  background: #fff;
  border: 1px solid #d3d3d3;
  border-radius: 8px;
  counter-reset: order-counter;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr);
  list-style: none;
  margin: 24px 0;
  padding: 24px;
}
.news__body ol > li {
  counter-increment: order-counter;
}
.news__body ol > li:before {
  -webkit-align-items: center;
          align-items: center;
  background-color: #f1f6ea;
  border-radius: 4px;
  color: #22a720;
  content: counter(order-counter);
  display: -webkit-flex;
  display: flex;
  font-size: 16px;
  font-weight: 700;
  height: 26px;
  -webkit-justify-content: center;
          justify-content: center;
  left: 0;
  line-height: 1.6;
  position: absolute;
  top: 0;
  width: 24px;
}
.news__body ul > li:before {
  background-color: #22a720;
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 8px;
  position: absolute;
  top: 9px;
  width: 8px;
}
.news__body li {
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  min-height: 1.6em;
  padding-left: 32px;
  position: relative;
}
.news__body li > ul, .news__body li > ol {
  background: transparent;
  border: none;
  margin: 16px 0 0;
  padding: 0;
}
.news__body .wp-block-acf-body {
  margin: 24px 0;
}
.news__body .wp-block-acf-heading-small {
  margin: 24px 0;
}
.news__body .wp-block-acf-heading-medium {
  margin: 24px 0;
}
.news__body .wp-block-acf-heading-large {
  margin: 24px 0;
}
.news__body a {
  -webkit-align-items: center;
          align-items: center;
  color: #22a720;
  display: inline-grid;
  font-size: 1.4rem;
  font-weight: 500;
  gap: 4px;
  grid-auto-flow: column;
  line-height: 1.6;
  text-decoration: underline;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.news__body p {
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  margin: 24px 0;
}
.news__body h2 {
  background-color: #e8f1dc;
  border-radius: 8px;
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  padding: 16px 32px;
}
.news__body h3 {
  -webkit-align-items: center;
          align-items: center;
  border-bottom: 1px solid #d3d3d3;
  display: -webkit-flex;
  display: flex;
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  gap: 8px;
  line-height: 1.6;
  padding: 16px 16px 16px 32px;
  position: relative;
}
.news__body h3::before {
  background-color: #22a720;
  border-radius: 4px;
  content: "";
  display: block;
  height: 16px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
}
.news__body h4,
.news__body h5,
.news__body h6 {
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  padding: 3px 3px 3px 32px;
  position: relative;
}
.news__body h4:before,
.news__body h5:before,
.news__body h6:before {
  background-color: #22a720;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  top: 18px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
}
.news__body .wp-block-image {
  text-align: center;
}

.notFound {
  margin: 0 0 120px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .notFound {
    margin: 0 0 64px;
  }
}
.notFound__container {
  margin-top: 48px;
}
@media (max-width: 768px) {
  .notFound__container {
    margin-top: 0;
  }
}
.notFound__header {
  margin: 0 0 48px;
  position: relative;
  text-align: center;
  z-index: 1;
}
.notFound__header::before, .notFound__header::after {
  -webkit-animation: page_cloud 3s linear infinite alternate;
          animation: page_cloud 3s linear infinite alternate;
  content: "";
  display: block;
  opacity: 0.4;
  position: absolute;
  z-index: -1;
}
.notFound__header::before {
  background: url("../images/common/ornament_cloud_01.png") no-repeat top left/cover;
  height: 100px;
  left: 0;
  top: 42px;
  width: 240px;
}
@media (max-width: 768px) {
  .notFound__header::before {
    height: 55px;
    top: 6px;
    width: 132px;
  }
}
.notFound__header::after {
  background: url("../images/common/ornament_cloud_02.png") no-repeat top left/cover;
  height: 70px;
  right: 60px;
  top: 112px;
  width: 242px;
}
@media (max-width: 768px) {
  .notFound__header::after {
    height: 38px;
    right: 34px;
    top: 46px;
    width: 132px;
  }
}
.notFound__subHeading {
  color: #22a720;
  font-size: 6.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.notFound__body {
  text-align: center;
}
.notFound__txt {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
}
.notFound__btnWrap {
  display: -webkit-flex;
  display: flex;
  gap: 24px;
  -webkit-justify-content: center;
          justify-content: center;
  margin: 48px 0 0;
}
@media (max-width: 768px) {
  .notFound__btnWrap {
    -webkit-align-items: center;
            align-items: center;
    -webkit-flex-direction: column;
            flex-direction: column;
  }
}

.privacy {
  margin: 0 0 120px;
}
@media (max-width: 768px) {
  .privacy {
    margin: 0 0 64px;
  }
}
.privacy__section {
  margin-bottom: 48px;
}
.privacy__section:last-of-type {
  margin-bottom: 0;
}
.privacy__ttl {
  color: #22a720;
  margin-bottom: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
}
.privacy__txts {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.privacy__text {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
}
.privacy__text_type_right {
  margin: 24px 0 0;
  text-align: right;
}
.privacy__ul, .privacy__ol {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.privacy__ol {
  counter-reset: number;
  list-style-type: none;
}
.privacy__li, .privacy__numbered, .privacy__secondli {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
}
.privacy__li {
  display: grid;
  grid-template-columns: 2rem 1fr;
}
.privacy__li::before {
  background-color: #000;
  border-radius: 50%;
  content: "";
  display: block;
  height: 4px;
  margin: 13px 0.5rem 0;
  width: 4px;
}
.privacy__numbered {
  display: grid;
  grid-template-columns: 4.8rem 1fr;
}
.privacy__numbered::before {
  content: "（" counter(number) "）";
  counter-increment: number;
}
.privacy__secondol {
  counter-reset: subnumber;
  grid-area: 2/2/2/2;
  list-style-type: none;
}
.privacy__secondli {
  display: grid;
  grid-template-columns: 2rem 1fr;
}
.privacy__secondli::before {
  content: counter(subnumber) ".";
  counter-increment: subnumber;
}
.privacy__info {
  margin-top: 24px;
  padding: 24px;
}
.privacy__infoTtl {
  color: #22a720;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
}
.privacy__infoTxt {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
}

.request:first-child {
  margin-top: 72px;
}
@media (max-width: 768px) {
  .request:first-child {
    margin-top: 48px;
  }
}
.request__outer {
  background: #fffbf2 url(../images/common/texture_bg.png) repeat 0 0/auto;
  padding-bottom: 9.4936708861%;
}
@media (max-width: 768px) {
  .request__outer {
    padding-bottom: 64px;
  }
}
.request__outer:has(.mw_wp_form_complete) {
  background: #fff;
  padding-bottom: 200px;
}
@media (max-width: 768px) {
  .request__outer:has(.mw_wp_form_complete) {
    padding-bottom: 120px;
  }
}
.request__container {
  max-width: 1120px;
}
.request__breadcrumb {
  background: #fff;
}
.request__header {
  margin: 0 0 48px;
}
.request__body {
  position: relative;
  z-index: 1;
}
.request__content {
  background: #fff;
  position: relative;
  z-index: 1;
}
.request .secHeading__txt {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
  gap: 8px;
  -webkit-justify-content: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .request .secHeading__txt {
    -webkit-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.request .secHeading__txt::before {
  background: url("../images/common/icon-book.svg") no-repeat top left/cover;
  content: "";
  display: block;
  height: 23px;
  width: 28px;
}
.request__callout {
  border: 1px solid #22a720;
  border-radius: 8px;
  padding: 48px 24px;
}
@media (max-width: 768px) {
  .request__callout {
    padding: 24px;
  }
}
.request__calloutInner {
  margin: 0 auto;
  max-width: 984px;
}
.request__info:nth-child(n+2) {
  margin-top: 16px;
}
.request__infoTtl {
  color: #22a720;
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
}
.request__infoTxt {
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
}
.request__infoTxt:not(:first-child) {
  margin-top: 8px;
}
.request__alert {
  border: 1px solid currentColor;
  border-radius: 4px;
  color: #ef2e2e;
  padding: 15px 47px;
}
@media (max-width: 768px) {
  .request__alert {
    border-radius: 8px;
    padding: 23px;
  }
}
.request__alertTxt {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
  font-family: "Zen Kaku Gothic New", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  -webkit-justify-content: center;
          justify-content: center;
  line-height: 1.6;
  text-align: center;
}
.request__alertTxt::before {
  background: currentColor;
  content: "";
  display: block;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  height: 21px;
  margin: 0 8px 0 0;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.5 17.5C13.5 17.7652 13.3946 18.0196 13.2071 18.2071C13.0196 18.3946 12.7652 18.5 12.5 18.5C12.2348 18.5 11.9804 18.3946 11.7929 18.2071C11.6054 18.0196 11.5 17.7652 11.5 17.5C11.5 17.2348 11.6054 16.9804 11.7929 16.7929C11.9804 16.6054 12.2348 16.5 12.5 16.5C12.7652 16.5 13.0196 16.6054 13.2071 16.7929C13.3946 16.9804 13.5 17.2348 13.5 17.5ZM13.25 9.25C13.25 9.05109 13.171 8.86032 13.0303 8.71967C12.8897 8.57902 12.6989 8.5 12.5 8.5C12.3011 8.5 12.1103 8.57902 11.9697 8.71967C11.829 8.86032 11.75 9.05109 11.75 9.25V13.75C11.75 13.9489 11.829 14.1397 11.9697 14.2803C12.1103 14.421 12.3011 14.5 12.5 14.5C12.6989 14.5 12.8897 14.421 13.0303 14.2803C13.171 14.1397 13.25 13.9489 13.25 13.75V9.25Z" fill="%23EF2E2E"/><path d="M10.3365 3.24387C11.2995 1.57887 13.7015 1.57887 14.6645 3.24387L23.6315 18.7479C24.5945 20.4149 23.3915 22.4999 21.4665 22.4999H3.53446C1.60846 22.4999 0.406461 20.4149 1.36946 18.7479L10.3365 3.24387ZM13.3665 3.99487C13.2783 3.84337 13.1519 3.71765 12.9999 3.63027C12.848 3.54289 12.6758 3.4969 12.5005 3.4969C12.3252 3.4969 12.1529 3.54289 12.001 3.63027C11.849 3.71765 11.7226 3.84337 11.6345 3.99487L2.66846 19.4989C2.58109 19.651 2.53519 19.8234 2.53537 19.9989C2.53554 20.1743 2.58178 20.3466 2.66946 20.4986C2.75714 20.6506 2.88318 20.7769 3.03498 20.8648C3.18678 20.9528 3.35902 20.9994 3.53446 20.9999H21.4665C21.6418 20.9993 21.8138 20.9527 21.9655 20.8648C22.1172 20.7768 22.2431 20.6507 22.3307 20.4989C22.4184 20.347 22.4647 20.1749 22.465 19.9996C22.4653 19.8243 22.4196 19.652 22.3325 19.4999L13.3665 3.99487Z" fill="%23EF2E2E"/></svg>') no-repeat center center/contain;
          mask: url('data:image/svg+xml;utf8,<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.5 17.5C13.5 17.7652 13.3946 18.0196 13.2071 18.2071C13.0196 18.3946 12.7652 18.5 12.5 18.5C12.2348 18.5 11.9804 18.3946 11.7929 18.2071C11.6054 18.0196 11.5 17.7652 11.5 17.5C11.5 17.2348 11.6054 16.9804 11.7929 16.7929C11.9804 16.6054 12.2348 16.5 12.5 16.5C12.7652 16.5 13.0196 16.6054 13.2071 16.7929C13.3946 16.9804 13.5 17.2348 13.5 17.5ZM13.25 9.25C13.25 9.05109 13.171 8.86032 13.0303 8.71967C12.8897 8.57902 12.6989 8.5 12.5 8.5C12.3011 8.5 12.1103 8.57902 11.9697 8.71967C11.829 8.86032 11.75 9.05109 11.75 9.25V13.75C11.75 13.9489 11.829 14.1397 11.9697 14.2803C12.1103 14.421 12.3011 14.5 12.5 14.5C12.6989 14.5 12.8897 14.421 13.0303 14.2803C13.171 14.1397 13.25 13.9489 13.25 13.75V9.25Z" fill="%23EF2E2E"/><path d="M10.3365 3.24387C11.2995 1.57887 13.7015 1.57887 14.6645 3.24387L23.6315 18.7479C24.5945 20.4149 23.3915 22.4999 21.4665 22.4999H3.53446C1.60846 22.4999 0.406461 20.4149 1.36946 18.7479L10.3365 3.24387ZM13.3665 3.99487C13.2783 3.84337 13.1519 3.71765 12.9999 3.63027C12.848 3.54289 12.6758 3.4969 12.5005 3.4969C12.3252 3.4969 12.1529 3.54289 12.001 3.63027C11.849 3.71765 11.7226 3.84337 11.6345 3.99487L2.66846 19.4989C2.58109 19.651 2.53519 19.8234 2.53537 19.9989C2.53554 20.1743 2.58178 20.3466 2.66946 20.4986C2.75714 20.6506 2.88318 20.7769 3.03498 20.8648C3.18678 20.9528 3.35902 20.9994 3.53446 20.9999H21.4665C21.6418 20.9993 21.8138 20.9527 21.9655 20.8648C22.1172 20.7768 22.2431 20.6507 22.3307 20.4989C22.4184 20.347 22.4647 20.1749 22.465 19.9996C22.4653 19.8243 22.4196 19.652 22.3325 19.4999L13.3665 3.99487Z" fill="%23EF2E2E"/></svg>') no-repeat center center/contain;
  width: 23px;
}
.request__ornament {
  bottom: 24px;
  display: grid;
  left: 50%;
  max-width: 1120px;
  padding: 0 24px;
  position: absolute;
  translate: -50% 50%;
  width: 100%;
  z-index: 0;
}
@media (max-width: 768px) {
  .request__ornament {
    bottom: 24px;
    left: 0;
    position: absolute;
    translate: 0 25%;
  }
}
.request__ornamentCloud {
  display: grid;
  grid-area: 1/-1;
  width: 27.9850746269%;
}
@media (max-width: 768px) {
  .request__ornamentCloud {
    max-width: 300px;
    width: min(164px, 100%);
  }
}
.request__ornamentCloud_pos_left {
  aspect-ratio: 300/100;
  container: reserve-ornament-cloud-left/inline-size;
  place-self: flex-start;
}
.request__ornamentCloud_pos_left::before {
  -webkit-animation: cloud 3s linear infinite alternate;
          animation: cloud 3s linear infinite alternate;
  aspect-ratio: 240/100;
  background: url(../images/common/ornament_cloud_01.png) no-repeat center/contain;
  content: "";
  place-self: flex-start;
  width: 80%;
}
.request__ornamentCloud_pos_right {
  aspect-ratio: 300/70;
  container: reserve-ornament-cloud-right/inline-size;
  place-self: flex-end;
  translate: 0 28%;
}
@media (max-width: 768px) {
  .request__ornamentCloud_pos_right {
    translate: 0 64%;
  }
}
.request__ornamentCloud_pos_right::before {
  -webkit-animation: cloud 3s linear infinite alternate;
          animation: cloud 3s linear infinite alternate;
  aspect-ratio: 242/70;
  background: url(../images/common/ornament_cloud_02.png) no-repeat center/contain;
  content: "";
  place-self: flex-start;
  width: 80%;
}
.request__illust {
  aspect-ratio: 1264/171;
  bottom: -73px;
  container: reserve-illust/inline-size;
  display: grid;
  grid-auto-columns: minmax(0, 1fr);
  left: 50%;
  max-width: 1644px;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  translate: -50% 50%;
  width: 100%;
  z-index: 0;
}
@media (max-width: 768px) {
  .request__illust {
    aspect-ratio: 359/65;
    bottom: -22px;
    left: 0;
    margin-top: 0;
    position: absolute;
    translate: 0 50%;
    width: 100%;
  }
}
.request__illust::before {
  background: url(../images/reserve/img_reserve_illust_bg.png) no-repeat center 0/cover;
  content: "";
  grid-area: 1/-1;
  height: 100%;
  max-height: 171px;
  place-self: flex-end center;
  width: 100%;
}
.request__illustBicycle {
  display: grid;
  grid-area: 1/-1;
  width: 100%;
}
.request__illustBicycle::after {
  -webkit-animation: bicycle-move-linear 40s linear infinite, bicycle-opacity 40s linear infinite;
          animation: bicycle-move-linear 40s linear infinite, bicycle-opacity 40s linear infinite;
  aspect-ratio: 78/58;
  background: url(../images/reserve/img_reserve_illust_bicycle.png) no-repeat center/contain;
  content: "";
  display: block;
  max-width: 78px;
  min-width: 30px;
  place-self: flex-end;
  translate: 0 0;
  width: 6.1708860759%;
}

.reservation__outer {
  background: #fffbf2 url(../images/common/texture_bg.png) repeat 0 0/auto;
  padding-bottom: 9.4936708861%;
}
@media (max-width: 768px) {
  .reservation__outer {
    padding-bottom: 64px;
  }
}
.reservation__outer:has(.mw_wp_form_complete) {
  background: #fff;
  padding-bottom: 200px;
}
@media (max-width: 768px) {
  .reservation__outer:has(.mw_wp_form_complete) {
    padding-bottom: 120px;
  }
}
.reservation__container {
  max-width: 1120px;
}
.reservation__breadcrumb {
  background: #fff;
}
.reservation__header {
  margin: 0 0 48px;
}
.reservation__heading .secHeading__txt {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
  gap: 0 0.3333333333em;
  -webkit-justify-content: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .reservation__heading .secHeading__txt {
    display: grid;
    justify-items: center;
  }
}
.reservation__heading .secHeading__txt::before {
  aspect-ratio: 28/25;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="28" height="25" fill="none" viewBox="0 0 28 25"><path fill="%2300825F" d="M7.449 2.71c-.264.244-.092.997.422.74-.036.22-.03.514-.055.74-.024.227.117.625-.214.583.037.391-.086.747-.38 1.01-.018.012-.024.037-.043.055a.89.89 0 0 1-.16.104c-.042.025-.244.043-.318.055-.367.043-1.157-.477-1.378-.771-.11-.147-.135-.619-.374-.613 0 0-.098.019-.104-.024-.049-.233-.018-.435-.024-.661-.797-.055-.846-.08-1.513.318-.558.33-1.164.582-1.33 1.274-.067.281.05.624.056.9.012.728-.135 1.347.796 1.273-.165.019-.46.288-.717.208-.098-.03-.196-.281-.263-.318-.055-.03-.098.08-.16.055-.165-.073-.183-.33-.342-.135.147 1.886.024 3.778.055 5.682.006.423.202 1.072.214 1.537.037 1.574-.239 3.472-.104 5.095.018.22.361 2.137.423 2.228.036.062.196-.024.263.104.14.264.361 1.09.613 1.194.312.135 2.113-.238 2.707-.214.41.019 1.109.288 1.593.214.833-.128 1.084-.153 1.99-.159 1.367-.006 2.726.05 4.086.055 1.489 0 2.984.055 4.46.055 1.666 0 6.548.117 7.834-.373.276-.104.73-.361.821-.661.184-.594.24-2.315.319-3.05.049-.465.177-.998.214-1.408.05-.557.055-1.17.055-1.726.117-.22.19-1.243.215-1.592.116-1.978 0-4.005 0-5.97 0-.41.214-1.017.104-1.488-.135-.098-.184.061-.215.135-.25.091-.447-.098-.477-.105.08-.477.281-.698.263-1.249 0-.042-.104-.018-.104-.024 0-.055.104-.306.055-.453-.03-.092-.153-.074-.16-.08-.263-.386-.471-.606-.85-.85-.221-.142-.736-.3-.877-.423a6.798 6.798 0 0 1-.183-.215s-.007-.049-.056-.104c-.165-.196-.288-.581-.453-.753.03-.184.496-.012.668-.043.037 0 .435-.245.612-.263.509-.055 1.807.318 2.175.74.263.3.049.503.08.662.459 2.462.257 5.02.263 7.538.012 2.957.024 5.976.055 8.914 0 .496.03 2.456-.16 2.762-.054.086-.875.618-.98.661-.263.11-2.1.563-2.388.582-.319.024-1.28-.214-1.648-.214-4.992.024-10.095-.019-15.026.422-.38.037-1.323.312-1.648.319-.9.012-2.824-.343-3.663-.692-.11-.05-.594-.135-.637-.16-.147-.091-.282-.783-.533-.9-.116-.055-.239.135-.343-.024-.147-.233-.325-4.09-.374-4.721-.049-.63-.11-1.335-.159-1.965-.16-2.088-.092-4.189-.16-6.21 0-.011-.158-.165-.158-.213-.068-2.248-.3-4.715.159-6.846.57-.177.772-.826 1.354-.98.582-.153 1.647-.091 2.174.16.11.049.172.11.24.214.091.135.263.876.532.214.104.012.386-.08.423-.183.165-.454-.184-1.807.159-2.388.16-.276 1.12-.356 1.409-.24.196.08.919 1.152.93 1.354 0 .098-.103.135-.103.16.012.379-.05.77.055 1.138l-.012.006Z"/><path fill="%23544744" d="M4.208 2.651c.153.019.251.196.374.214-.264.668-.441-.08-.533-.214.049 0 .11-.006.16 0Z"/><path fill="%23FEBF00" d="M7.13 3.35c-.006.03-.232.391-.263.557-.043.19.067.428.055.532-.018.123-.52.319.055.662-.306.404-.471.538-.93.214-.785-.551-.613-2.823-.503-3.741.03-.245.049-.643.343-.717C7.045.564 7.29 2.56 7.137 3.35H7.13Z"/><path fill="%23F9F7E1" d="M7.13 3.344c.05.759.313 1.132-.16 1.75-.575-.348-.073-.538-.054-.66.018-.104-.092-.343-.055-.533.036-.165.257-.527.263-.557h.006Z"/><path fill="%23DFEDE6" d="M25.715 4.402c-.294.031-1.403-.238-1.06-.636.012.012.171.202.184.214.14.122.655.282.876.422Z"/><path fill="%23FBFDFD" d="M6.701 6.001c-.276.716-1.403-.233-1.593-.612-.177-.343-.091-.496-.159-.772.24 0 .257.466.374.612.227.294 1.01.815 1.378.772Z"/><path fill="%2300583F" d="M14.879 2.768c-.03.692-.129 1.647-.214 2.333-.037.318-.013.428-.264.691-.337.35-.912.564-1.274.215-.116-.11-.147-.288-.294-.423-.19-.183-.404-.196-.423-.214-.104-.104-.08-.227-.134-.294-.172-.202-.356-.061-.184-.343-.294-.116-.741.392-.852.423-.275.08-.25-.22-.422-.16-.043.013-.343.625-.398-.238 0-.074.263-.068.08-.184-.577.594-.38.196-.503.08-.067-.062-.294-.11-.319-.135-.073-.061-.098-.05-.104-.055-.067-.214.233-.227.264-.343.043-.153-.3-.16.183-.343.337-.129.552.055.693-.478.367.552.68.16 1.01.16.05 0 0 .14.056.159.024.012.018-.147.104-.104.275.134 0 1.004.263 1.01.11 0 .33-.722.343-.876.025-.195-.061-.404-.024-.612-.588-.012-1.391-.281-1.807.16.098-.282-.233-.154-.344-.374.41.024.889.03 1.25.055.417.024.815.184.931-.263.05-.19-.049-1.268-.214-1.433.012-.123-.08-.239 0-.398.03-.061.82-.582.93-.612.46-.11 1.563.391 1.673.875.061.282.018 1.366 0 1.727l-.006-.006Z"/><path fill="%23FDD403" d="M13.366 1.122c.57-.153.907.196 1.035.717.092.367-.116 2.963-.263 3.343-.215.55-.723.728-.9.024-.062-.232 0-.447-.031-.692-.117-.93-.123-1.267-.074-2.149.019-.312-.226-1.12.24-1.249l-.007.006Z"/><path fill="%2300825F" d="m18.279 2.877.772.104-.16.263.821.025c0 .067-.79 0-.876.024-.049.013-.19.22-.263.264-.215.134-.104-.11-.294.214-.435-.894-.533-.104-1.035-.104-.019 0-.141-.098-.294-.104-.209-.019-.43.061-.454.055-.018 0-.098-.22-.263-.263-.086-.025-.79.055-.82.183-.148.564.734.735.74.851 0 .086-.41.472-.318.692.257.27.557.141.772.184.128.03.006.171.024.184.208.159.33-.03.343.294.337-.202.698-.098 1.01-.215.044-.012.007-.183.105-.214.14-.043.472.453.533.422-.074-.226.453-.563.453-.612 0-.049-.165-.098-.16-.104.032-.061.166 0 .185-.024.526-.472.637-.313 1.274-.056-.006-.159.012-.287.184-.373.147.557.183.876.637 1.329-.154-.043-.576.238-.662.214-.055-.018-.196-.312-.214-.318-.092-.019-.203.238-.343.024l.159-.104c-.282-.361-.68-.202-1.09-.294.006.233-.533.478-.558.557-.006.025.27.27-.08.343-.275.061-.306-.214-.422-.263-.092-.037-.533.202-.796.159-.025 0-.037-.14-.105-.16-.091-.024-.38.02-.477-.054-.031-.019-.074-.325-.215-.374-.52-.177-.349.392-.582.319-.41-.374-.465-1.262-1.14-.851a37.5 37.5 0 0 0 .215-2.333c1.06-.251 2.297.018 3.4.104l-.006.012Z"/><path fill="%2300583F" d="M20.998 3.799c0 .048-.055.128-.055.19-.226.018-.459-.074-.594.134.043.214.147.202.215.453-.178.08-.19.214-.184.374-.637-.258-.747-.417-1.274.055-.025.018-.16-.03-.184.024 0 .012.16.055.16.104 0 .05-.521.386-.454.613-.061.03-.386-.466-.533-.423-.098.03-.067.196-.104.214-.306.117-.674.007-1.01.215-.02-.325-.136-.135-.344-.294-.018-.012.104-.16-.024-.184-.209-.049-.515.08-.772-.184-.092-.22.325-.6.318-.691-.006-.117-.894-.288-.74-.852.036-.128.734-.214.82-.183.165.049.245.257.263.263.025.006.245-.067.454-.055.171.294-.337.049-.374.294 0 .037.343.667.374.692.177.14.661.092.771.134.215.092.154.631.797.423.44-.14.233-.374.135-.716l.183.024c.086-.453-.477-.196-.637-.318-.128-.172-.006-.166.08-.319.19-.324.08-.073.294-.214.073-.049.214-.251.263-.263.086-.025.876.036.876-.025l-.82-.024.159-.264-.772-.104c.527.043 1.09-.055 1.568 0 .092.013.655.092.692.104.098.037.092.429.52.24 0 .177-.048.354-.048.526 0 .018-.006.03-.006.049l-.012-.012ZM10.315 2.82c.11.22.441.091.343.373.417-.44 1.22-.171 1.807-.16-.037.203.05.411.025.613-.019.153-.233.876-.343.876-.27-.006.012-.876-.264-1.01-.086-.043-.086.116-.104.103-.055-.018 0-.159-.055-.159-.325 0-.643.392-1.01-.159-.142.533-.356.35-.693.478-.484.183-.14.196-.184.343-.03.116-.33.128-.263.342-.509-.355-.037-.36-.055-.453-.03-.159-.3 0-.398-.024-.19-.055-.288-.619-.319-.637-.135-.073-.662.104-.9-.214-.013.11-.013.208-.025.318-.52.257-.692-.502-.423-.74.05-.05.117-.037.16-.056.496-.171 2.076.129 2.707.16l-.006.005Z"/><path fill="%23009E72" d="M14.4 5.793c.252-.263.227-.373.264-.691.68-.41.735.477 1.14.85.232.074.06-.495.581-.318.141.05.184.35.215.374.098.067.386.024.478.055.067.018.08.153.104.159.263.043.704-.196.796-.16.123.05.147.325.423.264.349-.08.073-.324.08-.343.024-.08.563-.324.557-.557.404.092.808-.067 1.09.294l-.16.104c.142.208.258-.049.344-.024.018 0 .16.3.214.318.086.024.509-.251.662-.214.398.391.576.44 1.17.422.153.343.57.478.478.9-.613.068-1.256.27-1.697.325-.937.116-2.763-.19-3.822-.22-.24-.007-.552-.16-.582-.16-.055 0-.16.11-.215.104-.312-.006-.557.086-.796.08l-1.33-.019c-.036 0-.073-.012-.104-.012-1.66-.012-3.307.012-4.967 0l-.564.453c-.257-.03-.514-.073-.772-.092.104-.636-.27-.398-.33-.49-.05-.073.06-.355.055-.477 0-.025-.405-.122.104-.214-.233-.068-.166-.447-.215-.478-.098-.067-.25 0-.343-.024-.06-.019.19-.184-.036-.215-.019.013-.025.037-.043.055.018-.012.024-.036.043-.055.294-.263.422-.618.38-1.01.324.043.19-.361.214-.582l.263.558c-.049.263 0 .538.055.795 0 .013.209.019.215.215 0 .171-.24.557.024.82.196-.08.104-.557.264-.637.539-.25.943.662 1.274.692.055 0 .44-.091.557-.08-.325-.128-.741-.03-.453-.452.753 0 .93-.368 1.378.422.214-.214.65-.061.956-.104.012 0 .08-.19.159-.214.294-.092 1.458.183 1.807.055.03-.012.484-.588.08-.478l.006.006Z"/><path fill="%232ABF9B" d="M4.95 4.624c.067.276-.019.423.159.772.19.38 1.317 1.323 1.592.612.074-.006.276-.03.319-.055.061-.037.104-.061.16-.104.018-.012.024-.037.042-.055.233.024-.025.19.037.214.092.03.245-.036.343.025.049.03-.019.41.214.477-.508.092-.11.19-.104.215.012.122-.104.404-.055.477.067.092.435-.147.33.49-1.371-.116-3.797-.122-5.163.018-.931.074-.784-.545-.796-1.273 0-.282-.123-.619-.056-.9.166-.692.766-.943 1.33-1.274.667-.398.716-.373 1.513-.318.012.232-.025.428.024.661.012.043.104.018.104.025l.006-.007Z"/><path fill="%2300825F" d="M9.568 4.463s.031-.006.104.055c.037.576-.998.251-.318.717l-.374.055c.356.085.423.398.821.398l-.135-.294c.11-.147 1.06-.129 1.25-.08.03.006.196.306.557.294l-.263.214c.312.11.398.141.772.184.067.006-.098.104.055.104.018 0 .086-.104.104-.104h.98c.362.35.937.135 1.274-.214.405-.11-.049.465-.08.477-.342.129-1.512-.14-1.806-.055-.08.025-.147.209-.16.215-.306.043-.74-.104-.955.104-.447-.79-.625-.417-1.379-.423-.287.423.13.325.454.453-.117-.012-.503.086-.558.08-.33-.03-.735-.943-1.274-.692-.165.08-.067.557-.263.637-.264-.27-.019-.65-.025-.82-.006-.19-.208-.197-.214-.215-.05-.257-.104-.533-.055-.796L7.816 4.2c.025-.227.019-.52.056-.741.018-.11.012-.208.024-.318.239.318.766.14.9.214.031.018.13.582.319.637.098.03.368-.135.398.024.019.086-.453.098.055.453v-.006Z"/><path fill="%2300583F" d="M13.127 6.003h-.98c-.018 0-.086.105-.104.105-.153 0 .018-.098-.055-.104-.374-.043-.46-.074-.772-.184l.263-.214c-.361.012-.526-.282-.557-.294-.184-.05-1.14-.068-1.25.08l.135.293c-.398 0-.465-.312-.82-.398l.373-.055c-.68-.465.355-.14.319-.716.024.018.25.067.318.134.123.117-.073.515.502-.08.184.123-.085.11-.08.184.056.864.356.251.399.24.171-.062.147.238.423.158.11-.03.557-.538.851-.422-.171.282.018.14.184.343.055.061.024.19.135.294.018.018.232.03.422.214.147.14.178.312.294.422Z"/><path fill="%23024232" d="M18.278 3.776c-.086.153-.208.147-.08.318.16.123.73-.134.638.319l-.184-.025c.098.343.312.576-.135.717-.643.208-.582-.337-.796-.423-.104-.043-.588.006-.772-.134-.03-.025-.38-.65-.374-.692.03-.24.546 0 .374-.294.153.012.276.104.294.104.502 0 .6-.79 1.035.104v.006Z"/><path fill="%23FDD403" d="M23.05 1.461c-.134.331.086 2.596-.012 3.215-.043.27-.14.551-.263.796-.466-.006-.686-.074-.699.44-.686-.201-1.114-1.26-1.127-1.928 0-.061.055-.14.055-.19 0-.018 0-.03.006-.049.252.055.546.055.723-.159-.282-.44.074-.851-.643-.802 0-.263 0-.533.025-.802.018-.276-.019-.6.018-.864.208-1.573 1.225-.08 1.923.343h-.006Z"/><path fill="%2300825F" d="M24.146 2.912c.166.172.288.558.454.754-.147.177-.46 0-.613.055-.129.043-.067.281-.08.294-.208.226-.361.116-.422.612-.025 0-.355.116-.447.055.098-.618-.123-2.878.012-3.215.018-.049.276-.263.361-.287.068.385.006.79.074 1.17.012.067-.043.177.024.262.03.043.613.282.637.307v-.007Z"/><path fill="%232ABF9B" d="M24.6 3.662c.049.055.049.104.055.104-.343.398.765.668 1.06.637.38.245.587.466.85.851-.116.129-.048.417.056.533-.564.74-.533.025-1.06 0-.312-.012-.349.135-.502.16-.049.005-.178-.086-.319-.056-.036.006-.532.508-.373 0l-.956.104c-.184-.128.025-.202.08-.318 0-.012.116-.006.16-.184.036-.16.042-.833-.16-.875.067-.496.22-.386.422-.613.013-.012-.049-.25.08-.294.153-.049.466.123.613-.055l-.006.006Z"/><path fill="%2300825F" d="M26.615 5.787h.056s.104-.018.104.025c.012.55-.19.765-.264 1.249-.092-.025-.337-.116-.373.024-.05.184.618.141.104.398-.068-.024-.215.025-.343-.055-.013-.006-.105-.25-.16-.263-.128-.037-.202.11-.214.104-.196-.073-.043-.177-.398-.214-.16-.514.46-.668.422-1.274.527.025.497.741 1.06 0l.006.006Z"/><path fill="%2324502D" d="M26.511 7.063s.227.195.478.104c-.03.085 0 .502-.08.532l-.612-.159c-.019-.043-.006-.037-.056-.055.515-.257-.153-.214-.104-.398.037-.147.276-.049.374-.024Z"/><path fill="%23DFEDE6" d="M26.67 5.79h-.055c-.104-.116-.171-.397-.055-.532 0 .006.129-.012.16.08.049.146-.062.397-.056.453h.006ZM20.943 3.981c.012.668.44 1.72 1.127 1.93.067.017.178.066.239.073a.583.583 0 0 0 .061.336c-.588.019-.772-.03-1.17-.422-.453-.447-.49-.765-.637-1.329-.067-.245-.165-.239-.214-.453.14-.208.367-.116.594-.135Z"/><path fill="%23ADD7CC" d="m23.485 5.676-.105-.183c-.25.38-.68 1.377-.955.471.012 0 .024-.018.043-.03.171-.104.226-.307.306-.466a2.83 2.83 0 0 0 .263-.796c.092.062.423-.055.448-.055.202.043.195.717.159.876-.043.177-.153.177-.16.183Z"/><path fill="%236E9C55" d="M22.768 5.476c-.086.165-.135.367-.306.465-.019.006-.031.024-.043.03a.145.145 0 0 0-.055.037s-.037-.018-.062-.018c-.055 0-.165-.049-.238-.073.012-.52.232-.447.698-.441h.006Z"/><path fill="%2300825F" d="M23.485 5.684c-.055.116-.263.19-.08.318l.956-.104c-.165.508.337.006.374 0 .14-.03.27.061.318.055.153-.024.19-.171.503-.16.036.607-.582.76-.423 1.274-.833-.085-1.5.068-2.285.16.092-.423-.325-.558-.478-.9a.637.637 0 0 1-.06-.337c.017 0 .036.006.06.018 0 0 .037-.03.055-.037.013 0 .025-.018.043-.03-.018.006-.03.024-.043.03.276.907.705-.085.956-.471l.104.184Z"/><path fill="%23FDD403" d="M27.094 14.492c-.435.025-.129.509-.215.82-.061.24-.496.399-.159.876-.214.558-.055.858-.104 1.354 0 .055-.227.459-.215.477.043.061.172-.012.215.055.049.074-.392 1.25 0 1.14-.08.734-.135 2.455-.319 3.048-.092.3-.545.558-.82.662-1.28.483-6.169.367-7.835.373-.055-.404-.576-.582-.558-1.06l3.982-.213c-.061.3.417.244.637.263l-.055.214c.16.086.417-.159.478-.159.135 0 .404.16.422.16.019 0 .246-.19.374-.215.35-.055.466-.092.741-.16.527-.122.54 0 1.06-.263.05-.024.214.025.264 0 .11-.055-.007-.208.08-.294.183-.183.397-.269.532-.581.104-.251.098-.888.16-1.06.018-.054.287-.165.318-.263.073-.232-.135-.355-.104-.477.043-.19.239-.11.263-.16.11-.208-.104-.502-.104-.532 0-.019.202-.08.16-.264 0-.012-.148-.067-.16-.159-.055-.428.098-.404.104-.477.012-.153.05-.35.055-.374.019-.33-.043-.557-.055-.955 0-.037.11-.012.104-.055 0-.025-.208-.178-.16-.478.007-.055.166-.091.16-.104 0-.024-.33-.049-.373-.263-.05-.245.318-.478.214-.692-.012-.03-.227-.043-.215-.104.013-.061.154.037.16-.104.006-.202-.202-.588-.055-.851.085-.153.281-.117.373-.264.098-.165.068-1.114 0-1.273-.012-.037-.453-.171-.533-.478-.08-.336.252-.545.264-.581.098-.3-.35-.343-.374-.374-.135-.19.735-1.139-.398-.98-.073.013-.061.184-.16.16-.03-.006-.073-.196-.103-.215-.147-.06-.399-.036-.423-.055-.055-.03 0-.128-.055-.159-.11-.067-.282-.043-.398-.239-.092-.159.085-.336-.135-.398-.398-.116-1.532.606-.772-.692.453-.018 1.93-.159 2.254.056.043.03.147.385.319.422.3.067.772-.349.557-.661-.085-.141-.153-.104-.263-.135-.055-.116.055-.202.055-.214l.613.159c.085-.025.049-.447.08-.533.024-.073.079-.226.213-.134.11.465-.104 1.077-.104 1.487 0 1.972.117 3.992 0 5.97l.013.006ZM10.26 21.188c.147.777.962.49 1.617.477.116 0 .196-.018.184-.16.539 0 4.514-.054 4.723-.158l.104.263c-.662.643-.202.171-.613.16-.41-.013-1.207.091-1.697.103-.073 0-.281-.134-.533-.104-.091.012-.392.208-.422.215-.166.012-.166-.117-.264-.105-.349.031-.765.086-1.06.104-.104.007-.79.08-.771.135.196-.037.239.172.294.184.208.055.87-.037 1.06.055.08.037.024.306.055.318.177.08.52-.159.502.184-.35.061-.153.184-.263.398-1.366 0-2.72-.061-4.086-.055l.055-1.99 1.115-.024Z"/><path fill="%23EFA000" d="M26.879 16.086c0 .557 0 1.17-.055 1.727-.037.404-.16.943-.215 1.408-.392.11.05-1.072 0-1.139-.043-.061-.165.012-.214-.055-.012-.018.208-.423.214-.478.05-.496-.104-.796.105-1.353.055-.14.153-.098.159-.104l.006-.006Z"/><path fill="%23E48D00" d="M27.093 14.492c-.018.35-.098 1.372-.214 1.592 0 .006-.104-.037-.16.104-.337-.477.098-.636.16-.875.085-.319-.227-.802.214-.82Z"/><path fill="%23EB564A" d="M25.127 7.062c.355.036.202.14.398.214.012 0 .08-.141.215-.104.055.012.147.257.159.263.135.073.275.025.343.055.049.018.037.012.055.055 0 .012-.104.098-.055.215-.104-.025-.313.03-.398 0-.092-.031-.196-.258-.215-.264-.159-.055-.655.11-.851.16-1.813.477-3.927.465-5.893.532-.098 0-.263-.055-.239.104-.171 0-.367-.049-.478-.055l.294-.104-4.14-.214c-.356-.16-.056-.325-.025-.582.037 0 .073.012.104.012.441 0 .888.013 1.33.019.238 0 .483-.092.796-.08.055 0 .153-.104.214-.104.03 0 .343.153.582.16 1.06.024 2.885.336 3.822.22.441-.056 1.085-.258 1.697-.325.778-.092 1.452-.245 2.285-.16v-.017Z"/><path fill="%23A71B13" d="M14.297 7.332c-.024.257-.33.422.025.581l4.14.215-.293.104c-2.549-.03-6.396.183-8.79-.104-.252-.031-.6.012-.509-.331l-.11-.012.563-.453c1.654.012 3.308-.013 4.968 0h.006Z"/><path fill="%23DD380B" d="M26.241 7.751c.11.03.178-.006.264.135.214.318-.257.734-.558.66-.171-.042-.275-.397-.318-.422-.33-.214-1.801-.067-2.254-.055-1.575.062-3.143.227-4.723.215-.025-.16.14-.104.239-.104 1.966-.068 4.08-.056 5.893-.533.196-.05.692-.214.851-.16.018 0 .122.233.214.264.086.03.294-.025.399 0h-.007Z"/><path fill="%23F9F7E1" d="M12.33 18.425c-.576.019-1.152-.012-1.727 0-.19.117-.276 2.676-.135 2.89.135.202 1.317.184 1.592.184.007.14-.067.16-.183.16-.656.011-1.47.3-1.617-.478-.043-.24-.068-2.762 0-2.89l.716-.08 1.354.214ZM16.9 21.61l-.104-.263c.067-.03.16-.025.214-.135-.153-.71.447-2.486-.373-2.786.098-.104.33-.08.422.025.27.3.098 2.4.215 2.92-.025.11-.337.203-.374.24Z"/><path fill="%23A71B13" d="M14.034 18.369c.668 0 1.605-.074 2.23 0 .134.018.232 0 .373.055.815.3.22 2.075.374 2.786-.055.104-.147.098-.214.134-.215.104-4.19.166-4.723.16-.276 0-1.464.018-1.593-.184-.14-.214-.055-2.78.135-2.89.576-.012 1.151.018 1.727 0 .576-.018 1.133-.055 1.697-.055l-.006-.006Z"/><path fill="%23F9F7E1" d="M16.263 18.369c-.625-.074-1.562 0-2.23 0h2.23Z"/><path fill="%23F71A10" d="M15.252 18.636c-.012.104.368.471.399.477.214.055.294-.11.343-.104.447.012.57.46.477.82-.024.11-.263.3-.263.32-.012.128.239.189.264.317.03.147 0 .784-.264.717-.318-.012-.63-.055-.955-.055-.141-.227-.693-.08-.901-.055-1.005.116-1.954.232-2.922.159-.006-.147-.33-.178-.478-.264 0-.11-.104-.22-.104-.238-.043-.576.055-1.47.16-2.045.41-.037.943.012 1.378 0 .055.471.845.116 1.115-.055.575-.007 1.176-.025 1.752 0v.006Z"/><path fill="%23FB7B69" d="M16.208 21.186c.264.068.3-.57.264-.716-.031-.129-.282-.19-.264-.318 0-.019.24-.209.264-.319.091-.361-.031-.814-.478-.82l-.104-.264c.539.043.784-.38.9.454.018.134-.03 1.659-.055 1.75-.098.362-.33.246-.533.24l.006-.007Z"/><path fill="%23FA5F44" d="M11.007 18.688c-.104.575-.202 1.469-.159 2.045 0 .018.11.128.104.238 0 .006-.098.037-.055.16-.012 0-.184.091-.263-.025l.024-2.412c.117-.006.233.012.343 0l.006-.006Z"/><path fill="%23FBFDFD" d="m15.89 18.743.103.263c-.055 0-.134.166-.343.104-.03-.006-.41-.373-.398-.477.208.012.435.092.637.104v.006Z"/><path fill="%23F9EBEC" d="M13.5 18.633c-.269.171-1.06.526-1.114.055.373-.012.747-.05 1.115-.055Z"/><path fill="%23FBFDFD" d="M15.252 21.127c-.27 0-.65.214-.9-.055.208-.024.76-.177.9.055ZM11.43 21.232c-.208-.012-.336-.049-.532-.104-.043-.122.055-.153.055-.16.147.093.471.117.478.264Z"/><path fill="%23FBE17A" d="M2.83 7.706c1.366-.135 3.792-.135 5.164-.019.257.025.514.062.771.092l.11.013c-.091.342.258.3.51.33 2.394.288 6.235.08 8.79.104.11 0 .306.05.477.055 1.587.013 3.149-.153 4.723-.214-.76 1.298.374.576.772.692.214.061.043.239.135.398.116.196.287.171.398.239.055.03 0 .128.055.159.024.012.282-.006.422.055.037.012.074.202.105.214.098.025.085-.147.159-.159 1.133-.159.263.79.398.98.018.03.472.067.374.373-.013.043-.35.251-.264.582.074.306.515.44.533.478.068.159.098 1.108 0 1.273-.092.153-.282.116-.373.263-.154.264.06.65.055.852-.006.14-.147.042-.16.104-.012.067.196.08.215.104.104.214-.257.447-.215.692.043.214.368.245.374.263 0 .012-.153.049-.16.104-.048.3.16.453.16.478 0 .036-.11.012-.104.055.012.398.073.624.055.955 0 .024-.037.22-.055.373-.006.074-.165.05-.104.478.012.092.16.147.16.16.042.183-.16.25-.16.262 0 .031.214.319.104.533-.024.05-.227-.03-.263.16-.025.122.177.244.104.477-.03.098-.3.214-.319.263-.061.172-.055.808-.16 1.06-.134.312-.342.398-.532.581-.086.086.03.239-.08.294-.049.025-.22-.024-.263 0-.527.27-.533.14-1.06.263-.275.068-.392.105-.741.16-.123.018-.35.208-.374.214-.024 0-.287-.165-.422-.16-.061 0-.319.246-.478.16l.055-.214c-.22-.019-.698.036-.637-.264l-3.982.215c-.018.483.503.66.558 1.059-1.477 0-2.971-.05-4.46-.055.11-.215-.08-.337.264-.398.012-.35-.331-.11-.503-.184-.03-.012.025-.282-.055-.318-.196-.086-.851 0-1.06-.055-.055-.013-.097-.22-.293-.184-.019-.055.667-.129.771-.135.3-.018.717-.08 1.06-.104.098-.006.098.116.264.104.03 0 .336-.202.422-.214.251-.03.454.11.533.104.49-.012 1.274-.123 1.697-.104.423.018-.055.484.613-.16.036-.036.343-.128.373-.238-.116-.52.061-2.62-.214-2.92-.092-.105-.325-.13-.423-.025-.14-.05-.239-.037-.374-.055h-2.23c-.569 0-1.133.03-1.696.055l-1.354-.215-.716.08c-.068.129-.043 2.651 0 2.89l-1.115.025-.056 1.99c-.906 0-1.157.03-1.99.159-.484.073-1.183-.196-1.593-.215-.594-.024-2.395.343-2.707.215-.252-.104-.472-.931-.613-1.194-.067-.129-.227-.05-.263-.104-.062-.092-.405-2.009-.423-2.23-.135-1.622.147-3.52.104-5.093-.012-.466-.208-1.12-.214-1.537-.031-1.898.092-3.79-.055-5.682.159-.202.183.055.343.134.06.031.104-.085.159-.055.067.037.171.288.263.319.257.073.552-.196.717-.209l-.006.019Z"/><path fill="%23F71A10" d="M23.344 14.337c-.092 0-.3-.036-.337.08-.024.08.172 1.47.215 1.647.049.22-.05.202.263.184 0 .196.025.459 0 .636-.44.11-1.366-.11-1.488.423l-.319.055s-.116-.306-.135-.318a3.187 3.187 0 0 0-.477.055c-.031.012-.05.404-.478.263v-.422c-.343.14-1.238.245-1.513 0-.129-.117-.086-.392-.264-.423.05-.122.025-.728 0-.82-.018-.061-.177.006-.214-.055-.037-.062.08-1.305.116-1.366 0-.006.123-.073.153-.092.172-.11 1.207-.055 1.489-.06.404-.02.815-.013 1.219-.013.092 0 .184-.019.263-.019-.006.705.913.545.637-.06.307.018.699.018.87.318v-.013Z"/><path fill="%23FDD403" d="M10.101 11.204c.006.288 0 .961.215 1.115v.055c.024.183-.037.55.318.581.202.643 1.47-.147 1.33.9-.368 0-1.28.129-1.489.104-.012 0-.098-.08-.214-.104-.019 0-.307-.202-.343-.214-.105-.03-.717 0-.772-.08.061-.275-.086-1.316 0-1.487.03-.062.25-.055.318-.16.19-.293-.281-.9.637-.716v.006ZM18.542 12.422s-.062.11.373.214c.3.074.252.086.582.104 0 .184.215.147.319.16.055.006.263-.025.263.024-.477.08-.128.037-.134.135 0 .134-.184.171-.184.183-.147.594.465.533.851.613-.22.03-.3-.098-.263.257-.276.012-1.311-.05-1.489.061-.06-.104-.257-.122-.318-.16-.35-.226.055-.134.055-.183-.257-.03-.41-.018-.478-.318.282.116.392-.429.343-.502-.012-.019-.16.03-.184-.025-.012-.024-.055-.404-.104-.477.086 0 .337-.092.374-.08l-.006-.006Z"/><path fill="%23F9F7E1" d="M10.475 13.971c-.043.019-.16.227-.16.24-.067.415-.11 1.867-.103 2.332 0 .16-.019.514.134.612 1.979-.098 4 .153 5.973.055.08.117.03.123-.08.16-.435.14-1.2-.092-1.648-.105-1.482-.055-2.977.11-4.46.055-.213-.122-.189-1.42-.134-1.671.012-.055.129 0 .16-.055.085-.16-.184-.05-.16-.319.012-.128.16-.202.16-.214.03-.392-.068-.814.104-1.194.116.03.202.104.214.104Z"/><path fill="%23FBFDFD" d="M21.679 17.36c.006.11-.025.171-.08.263-.44-.128-1.813.16-2.125.055-.148-.049.018-.177-.105-.263-.06-.043-.257-.012-.343-.055l.055-.422c.276.244 1.17.14 1.514 0v.422c.428.14.447-.251.477-.263.019-.013.46-.068.478-.055.012.012.129.3.135.318h-.006Z"/><path fill="%23F9F7E1" d="M18.861 14.175s-.147.085-.153.092c-.037.06-.147 1.304-.117 1.365.031.061.197-.006.215.055.024.098.049.698 0 .82-.288-.048-.172.062-.215.16-.214.049-.232-.086-.263-.239-.122-.637.178-1.751.214-2.412.062.036.258.055.319.159Z"/><path fill="%23FBFDFD" d="M23.486 16.883c-.025.159-.031.306-.16.422-.57-.11-.618.472-1.194.319-.166-.043-.166-.178-.135-.319.116-.532 1.041-.312 1.489-.422Z"/><path fill="%23F9F7E1" d="m18.811 9.719.105 2.92c-.43-.103-.35-.201-.374-.214l.055-2.626c.05-.117.196-.068.214-.08ZM8.453 21.505c.276-.539.288-1.323.264-1.935-.012-.435.061-1.237-.423-1.298.215 0 .423-.165.582.135l-.055 3.184c-.073.171-.404.024-.533 0 .061-.056.11.012.16-.08l.005-.006Z"/><path fill="%23F2ECE5" d="M23.345 14.339c.122.208.147 1.586.14 1.91-.318.012-.22.037-.263-.183-.036-.178-.239-1.568-.214-1.648.037-.116.251-.073.337-.08Z"/><path fill="%23F9F7E1" d="M21.679 12.797c.422-.184 1.06.067 1.458-.055.483-.141.159-1.715.398-2.125.049.38.147 1.806 0 2.094-.184.368-1.483.08-1.856.08v.006ZM6.493 13.806c-.65.012-1.323-.024-1.967.135-.091.116-.042 2.149 0 2.412l-.159-2.626 2.126.08ZM16.845 17.038c-.018-.557.22-2.516.056-3-.025-.08-.11-.122-.16-.184l.24-.159.134 3.527c-.129.208-.263-.061-.263-.184h-.007ZM21.574 14.105c-.404 0-.814 0-1.219.012-.037-.349.043-.22.264-.257.373-.055 1.096-.38.955.245Z"/><path fill="%23F6EFC8" d="M4.312 18.368c-.073.612-.073 1.243-.055 1.855-.214.025-.14-.043-.16-.183-.03-.27-.115-1.605.025-1.727.074-.037.16.061.184.055h.006Z"/><path fill="%23F9F7E1" d="M11.963 12.742c-.177.233-1.053.24-1.329.215-.355-.03-.294-.398-.319-.582.258.57 1.103.33 1.648.373v-.006Z"/><path fill="%23F97222" d="M18.811 16.518c.184.03.135.312.264.423l-.056.422c-.306-.153-.6-.27-.422-.692.043-.098-.074-.208.214-.159v.006Z"/><path fill="%23F2ECE5" d="M22.475 14.017c.276.606-.643.765-.637.061.196 0 .435-.073.637-.061Z"/><path fill="%23F9F7E1" d="M10.315 12.322c-.208-.153-.208-.826-.214-1.114 0-.202.012-.882.055-1.06.147.031.159.41.159.502 0 .576-.067 1.084 0 1.672ZM23.375 9.672c-.171-.184-1.127-.153-1.433-.16-.025-.159.14-.104.239-.104.239-.006 1.12-.043 1.25.08l-.056.184Z"/><path fill="%23F6EFC8" d="M16.79 9.67c-.19-.123-.674-.14-.9-.16l.876-.158.024.318Z"/><path fill="%23F9F7E1" d="M4.9 12.694s-.196.202-.453.104c-.092-.165-.068-.349-.08-.532l.533.422v.006ZM11.008 9.67c-.178.011-.356-.007-.533 0 .036-.056-.153-.044-.08-.105.178.037.606-.098.613.104Z"/><path fill="%23A71B13" d="M15.307 9.508c.19.006.393-.013.582 0 .233.018.717.036.9.159.234.153.099.232.105.318-.104-.08-.196-.067-.214.08-.037.294.263 1.267.263 1.671 0 .557-.025.557-.533.796-1.035.484-3.081.147-4.245.264-.092 0-.122-.043-.214-.055-.546-.043-1.385.195-1.648-.374v-.055c-.068-.588 0-1.096 0-1.672 0-.091-.012-.471-.16-.502.025-.11.252-.373.32-.477.177-.006.354.012.532 0 .33-.025.68-.086 1.01-.104a34.717 34.717 0 0 1 3.29-.056l.012.007Z"/><path fill="%23F9F7E1" d="M12.17 12.794c1.17-.122 3.217.221 4.246-.263.65.594-.747.263-1.035.263-1.085 0-2.126.068-3.21 0Z"/><path fill="%23FBF4AD" d="M15.308 9.504a32.727 32.727 0 0 0-3.29.055l3.29-.055Z"/><path fill="%23F6EFC8" d="M16.9 9.978c.049.502.11 1.035.135 1.537 0 .092.08.16-.08.214 0-.404-.3-1.377-.263-1.671.018-.147.11-.16.214-.08H16.9Z"/><path fill="%23F71A10" d="M14.033 9.82c-.055.227.705.148.741 0 .423.013.968-.085 1.379 0-.043.295-.178.564-.264.852-.043.134-.324.98-.318 1.035.024.202.41 0 .477.214l-.159.453c-.386.092-.429.037-.741.055-.043-.147-.57-.122-.662-.104-.043.006-.018.104-.024.104-.57.092-.913.092-1.489.104.086-.116 0-.373-.134-.373l-.343.373c-.497-.006-1.801.129-1.967-.373.65-.104.294-.515.374-.931 0-.024.263-.392.263-.422.013-.117-.392-.668-.373-.876.257-.03.539-.03.796-.055.171.275.998.11 1.354.104.067 0 .318.263.453-.214.227 0 .466.055.637.055Z"/><path fill="%23F9EB1D" d="M16.422 10.084c.098.27.276 1.696.215 1.935-.074.27-.49.282-.741.343l.159-.453c-.067-.214-.453-.012-.478-.214 0-.056.276-.9.319-1.035l.533-.582-.006.006Z"/><path fill="%23FB7B69" d="M10.793 9.923c-.024.208.386.76.374.876 0 .03-.264.398-.264.422-.08.417.276.827-.373.93-.092-.275-.172-2.124-.025-2.228.098-.006.196.012.294 0h-.006Z"/><path fill="%23FBFDFD" d="M13.397 9.766c-.135.477-.386.214-.453.214-.356 0-1.183.165-1.354-.104a29.774 29.774 0 0 1 1.807-.104v-.006Z"/><path fill="%23F9F7E1" d="m16.423 10.09-.533.581c.085-.281.22-.55.263-.85.294.06.19.06.263.263l.007.006Z"/><path fill="%23F2ECE5" d="M12.968 12.53h-.478l.343-.374c.135 0 .215.257.135.374Z"/><path fill="%23F9EBEC" d="M15.148 12.415c-.184.006-.496.147-.692 0 0 0-.018-.098.025-.104.098-.019.618-.043.661.104h.006Z"/><path fill="%23FCD6D4" d="M14.774 9.823c-.042.147-.796.227-.74 0 .244 0 .495-.006.74 0Z"/><path fill="%23A71B13" d="M16.74 13.861c.05.062.135.11.16.184.165.484-.074 2.443-.055 3h-.055c-.203.031-.49-.104-.374.16h-.104c-1.973.098-3.994-.153-5.973-.055-.153-.098-.128-.454-.134-.613-.007-.465.043-1.916.104-2.333 0-.012.116-.22.159-.238.208.024 1.121-.11 1.489-.104 1.592 0 3.185-.11 4.777 0h.007Z"/><path fill="%23A5571B" d="M16.79 17.047c-.08.202-.202.147-.373.16-.123-.264.171-.13.373-.16Z"/><path fill="%23F71A10" d="M14.4 14.13c.301.202 1.134.753.797 0 .319 0 .815-.147 1.01.055.056.055.172.361.264.422-.104.52.35 1.445-.294 1.752-.018.006-.098-.031-.318.055-.356.134-.472-.117-.503.477h-.214c-.055-.245-.858-.183-1.09-.159-.031 0-.123.104-.135.104-.962.074-1.942.086-2.922.055-.116-.27-.435-.404-.318 0-.019 0-.11.068-.184 0l-.08-.134c.05-.362-.049-2.376.214-2.523.172.043.521.159.533-.104.343-.025.68.061 1.011.055-.006.281.404.122.423-.055h.533c-.03.165.667.165.637 0h.637Z"/><path fill="%23FB7B69" d="M15.356 16.884c.031-.594.148-.343.503-.478.22-.085.3-.043.318-.055.637-.306.19-1.23.294-1.75.019-.105.166-.258.215-.374.263.385-.055 1.965 0 2.467-.11.33-1.054.172-1.33.184v.006Z"/><path fill="%23F9EBEC" d="M15.148 16.887c-.337 0-.931.19-1.22-.055.007 0 .099-.104.135-.104.233-.024 1.036-.086 1.09.16h-.005Z"/><path fill="%23FBFDFD" d="M15.197 14.133c.33.753-.496.202-.797 0h.797Z"/><path fill="%23F9EBEC" d="M16.686 14.233c-.05.116-.19.27-.215.374-.098-.062-.208-.368-.263-.423.178-.086.368-.11.478.055v-.006ZM11.007 16.888c-.098 0-.129.043-.319 0-.116-.404.202-.27.319 0ZM13.764 14.133c.03.165-.668.165-.637 0h.637ZM12.6 14.133c-.025.171-.435.337-.423.055.098 0 .27-.05.423-.055Z"/><path fill="%23F2ECE5" d="M11.167 14.133c-.012.27-.356.147-.533.104.104-.055.398-.098.533-.104Z"/><path fill="%23A71B13" d="M6.916 18.211c.41.019.814.043 1.219.056h.159c.49.06.41.869.422 1.297.019.613.013 1.403-.263 1.935-1.31-.055-2.622-.165-3.926-.263l-.215-.533c-.012-.159-.049-.306-.055-.477-.024-.613-.018-1.25.055-1.855.362-.141.423-.141.852-.16.208-.012.447.043.637-.055.373.03.74.037 1.115.055Z"/><path fill="%23F9F7E1" d="M8.134 18.265c-.41-.006-.815-.037-1.219-.055.037-.177.49-.116.613-.104.104.006.582.03.612.16h-.006ZM4.526 21.236c-.067 0-.116.171-.214.08-.037-.172.012-.46 0-.613l.214.533ZM5.8 18.154c-.19.098-.429.043-.637.055.037-.232.466-.067.637-.055Z"/><path fill="%23F71A10" d="M8.294 18.634c-.104.251-.184.753.055.956.012.214.061.41.055.636-.16.006-.233.386-.055.423-.043.19-.086.453-.343.532-.11.031-.594-.104-.662-.104-.03-.36-.686-.208-.851 0-.41-.018-1.36.043-1.672-.055-.46-.14-.22-2.014-.343-2.467l3.822.08h-.006Z"/><path fill="%23FBFDFD" d="M7.338 21.077c-.294 0-.552.012-.852 0 .166-.209.821-.362.852 0Z"/><path fill="%23F2ECE5" d="M8.348 19.596c-.238-.202-.153-.704-.055-.955.105.104.037.759.056.955Z"/><path fill="%23FBFDFD" d="M8.404 20.234a1.667 1.667 0 0 1-.055.423c-.184-.037-.11-.416.055-.423Z"/><path fill="%23A71B13" d="M21.942 9.509c.306 0 1.262-.025 1.433.16.135.14.135.74.16.954-.24.41.085 1.978-.399 2.125-.404.122-1.041-.129-1.458.055h-.373c-.588-.129-1.207-.012-1.807-.055-.331-.024-.282-.037-.582-.104l-.105-2.92c.295-.209 2.549-.221 3.13-.215Z"/><path fill="%23F9F7E1" d="M21.305 12.797c-.16 0-.496.153-.662.16-.128 0-.6-.258-.82-.056-.105-.018-.325.025-.319-.16.594.044 1.213-.072 1.807.056h-.006Z"/><path fill="%23F71A10" d="M23.167 11.468c-.405-.092-.337.453-.374.502-.135.196-.472.208-.423.557-1.023.025-2.076-.16-3.105 0-.264-.086-.22-.912-.24-1.17.21-.06.099-.728-.054-.795 0-.092.03-.668.08-.692l3.926-.104c.343.11.214 1.34.184 1.696l.006.006Z"/><path fill="%23FA5F44" d="M23.166 11.471c-.067.937.196 1.035-.796 1.06-.049-.35.288-.362.423-.558.037-.055-.03-.593.373-.502Z"/><path fill="%23FCD6D4" d="M19.02 11.366c-.018-.275-.067-.502-.055-.796.153.068.263.735.055.796Z"/><path fill="%23A71B13" d="M8.508 9.51c.055.196.282.129.319.398.036.27.006 1.378 0 1.727 0 .116.055.251.055.263-.012.337.024.484-.264.692-.196.141-.177.08-.373.104-.95.141-2.181-.08-3.186 0H4.9l-.533-.422c-.03-.361-.116-2.596.135-2.707 1.09.123 2.205-.146 3.29-.159.25 0 .483.092.716.104Z"/><path fill="%23F9F7E1" d="M8.826 11.626c.006-.349.043-1.445 0-1.727-.043-.281-.263-.202-.318-.398.312.019.294-.018.582-.08l-.264 2.205ZM8.244 12.69c-.392.398-1.2-.061-1.728.214L5.06 12.69c1.004-.08 2.235.14 3.185 0Z"/><path fill="%23F71A10" d="M8.508 12.056c-.209-.024-.35.202-.374.374-.3.049-.65-.062-.9-.056l-.184-.263-.343.319c-.435.006-.852-.037-1.274-.056.085-.269-.3-.312-.264.056-.067 0-.165.116-.343 0-.38-.252-.19-1.954-.239-2.413.05-.116 2.016-.22 2.334-.239.025.239.404.208.478 0 .288-.012 1.133-.306 1.219.184.018.116-.067 1.94-.104 2.094h-.006Z"/><path fill="%23F9EBEC" d="M7.233 12.373c-.055 0-.3.049-.533.055l.343-.319.184.264h.006Z"/><path fill="%23FCD6D4" d="M8.508 12.056c-.03.117-.067.319-.184.374-.036.018-.128-.006-.183 0 .018-.165.165-.398.373-.373h-.006Z"/><path fill="%23FBFDFD" d="M5.427 12.373c-.043 0-.086.061-.263.055-.037-.361.355-.324.263-.055Z"/><path fill="%23F2ECE5" d="M7.393 9.767c-.074.209-.453.24-.478 0 .16-.006.319.007.478 0Z"/><path fill="%23A71B13" d="M6.493 13.81H8.403c.148 0 .21.044.32.056-.013.129.195.41.214.478.006.03 0 .073 0 .104-.098.208-.055.514-.055.74 0 1.672.398 1.941-1.434 1.966-.343 0-2.425 0-2.572-.055-.129-.037-.196-.264-.24-.374a1.702 1.702 0 0 1-.103-.373c-.043-.27-.092-2.296 0-2.413.637-.159 1.31-.122 1.966-.134l-.006.006Z"/><path fill="%23F6EFC8" d="M4.63 16.727c.043.104.11.33.24.373.146.049 2.23.055 2.572.055l-2.787.055c.03-.11-.368-.514-.025-.477v-.006Z"/><path fill="%23F9F7E1" d="M8.404 13.81h-1.01c.14-.177.888-.17 1.01 0Z"/><path fill="%23FBFDFD" d="M8.93 14.336c-.012-.067-.226-.349-.214-.477.006 0 .037-.135.135-.104.19.055.141.422.08.581Z"/><path fill="%23F9F7E1" d="M8.881 15.186c0-.232-.042-.533.056-.74.03.183.024.563-.056.74Z"/><path fill="%23F71A10" d="M8.667 14.446c-.172-.067-.22.52-.215.557 0 .018.147.257.215.239.018.318 0 .637 0 .955-.117.055-.202.208-.264.319-.214-.043-.833-.056-.851.318-.16.006-.368.049-.637.055.239-.576-.184-.386-.374-.055-.361 0-.692.037-1.06 0 .031-.312-.447-.41-.373-.055-.294-.129-.306-.055-.374-.502-.024-.147-.08-1.868-.055-1.966.012-.037.153-.134.184-.184l3.559-.104c.208.086.208.22.239.423h.006Z"/><path fill="%23FB7B69" d="M8.404 16.513c-.03.055-.092.196-.104.263-.264.031-.484.043-.741.056.018-.374.637-.362.851-.319h-.006Z"/><path fill="%23F2ECE5" d="M8.294 16.777a1.68 1.68 0 0 1 .104-.263c.061-.11.147-.264.263-.319 0 .098.11.423.056.558-.11.183-.368.018-.423.024Z"/><path fill="%23F7BDB5" d="M8.668 14.45c.036.233-.019.546 0 .797-.068.018-.209-.22-.215-.24 0-.036.043-.624.215-.556Z"/><path fill="%23F9EBEC" d="M6.916 16.882c-.153 0-.294-.05-.374-.056.19-.336.613-.526.374.056Z"/><path fill="%23FBFDFD" d="M5.482 16.838c-.153-.019-.098.067-.374-.055-.08-.356.405-.264.374.055Z"/><path fill="%2300583F" d="M24.833 2.995c-.233.018-.35-.049-.54-.043-.054 0-.024.012-.017-.024l-.037-.11c.226.269.294.563.46.759.042.073.262.25.122.318a2.077 2.077 0 0 1-.325-.147c-.208-.263-.288-.57-.447-.747-.123-.147.086-.324.227-.312.171-.012.398.061.532.043.172-.025.203.25.025.263Z"/><path fill="%23F8F5DC" d="m23.59 14.114.104 3.343c0 .067-.105.073-.105 0l-.104-3.343c-.03-.196.05-.147.104 0Z"/><path fill="%23F8F9E1" d="m21.409 4.231.374.9c.043.129-.025.098-.098.043l-.374-.9c-.024-.11.061-.178.098-.043Z"/><path stroke="%2300583F" stroke-linecap="round" stroke-linejoin="round" stroke-width=".87" d="M22.37 5.997s.037-.03.056-.037c.012 0 .024-.018.043-.03.171-.105.226-.307.306-.466a2.83 2.83 0 0 0 .263-.796c.098-.618-.122-2.878.013-3.214-.699-.423-1.716-1.917-1.924-.343-.037.27 0 .587-.018.863-.019.263-.019.533-.025.802 0 .141-.024.288-.03.429 0 .177-.05.355-.05.526 0 .019-.006.03-.006.05 0 .048-.055.128-.055.19.013.666.441 1.72 1.127 1.928.068.018.178.067.24.073.018 0 .036.006.06.019v.006Z"/><path stroke="%23A71B13" stroke-linecap="round" stroke-linejoin="round" stroke-width=".52" d="m23.271 17.397.055-.092c.13-.116.135-.27.16-.422.024-.184 0-.441 0-.637 0-.325-.019-1.702-.141-1.91-.172-.3-.564-.3-.87-.319-.208-.012-.441.061-.637.061-.08 0-.172.019-.264.019-.404 0-.814 0-1.219.012-.275.012-1.31-.05-1.488.061-.03.018-.147.086-.153.092"/><path fill="%238D2516" d="M21.164 7.703c-1.63.104-3.173-.3-4.73-.208-.018-.123.197-.245.276-.294 1.464-.147 2.996.324 4.41.183.215-.036.258.3.037.319h.007Z"/><path fill="%237C2012" d="m14.407 7.178 1.33.018s.054 0 .079.013c.073.042.16.19.251.134.104-.055.196-.122.33-.012-.097-.018-.159.092-.177.129-.337.11-1.458.018-1.82.03-.22-.018-.416 0-.587-.11-.013-.024.03-.14.03-.19.178.037.386.012.558-.018l.006.006Z"/><path fill="%23FAF8D9" d="M13.237 4.298c.043.355.025.74.056 1.096a.748.748 0 0 1-.105-.178c-.043-.325-.036-.765-.043-1.114.068.006.08.134.098.19l-.006.006Z"/><path stroke="%23F9F7DE" stroke-linecap="round" stroke-linejoin="round" stroke-width=".17" d="M8.883 11.89c-.013.337.024.484-.264.692"/><path stroke="%23E9F0EA" stroke-linecap="round" stroke-linejoin="round" stroke-width=".17" d="M7.608 4.727v.055c.037.392-.085.747-.38 1.01-.018.012-.024.037-.042.055a.89.89 0 0 1-.16.104"/><path fill="%23CA3E1D" d="m6.867 7.8 1.856.056c.061.024.11.073.134.134a.953.953 0 0 0-.14-.03L6.86 7.904c-.068-.018-.11-.128 0-.104h.006Z"/><path fill="%234B2011" d="M2.8 7.438c2.076-.153 4.153-.171 6.217.105.153-.031.282.116.367.22-.177-.037-.33.178-.428.306-2.01-.27-4.086-.257-6.101-.104-.35.037-.405-.496-.056-.527Z"/><path stroke="%2300583F" stroke-linecap="round" stroke-linejoin="round" stroke-width=".43" d="M16.74 7.164c-.054 0-.159.11-.214.104"/></svg>') no-repeat center/contain;
  content: "";
  width: 1.1666666667em;
}
.reservation__body {
  position: relative;
  z-index: 1;
}
.reservation__content {
  background: #fff;
  position: relative;
  z-index: 1;
}
.reservation__footer {
  background: #fffbf2 url(../images/common/texture_bg.png) repeat 0 0/auto;
  padding-top: 48px;
}
@media (max-width: 768px) {
  .reservation__footer .reservation__container {
    padding: 0 24px;
  }
}
.reservation__banner {
  aspect-ratio: 1072/554;
  border-radius: 16px;
  margin-bottom: 48px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .reservation__banner {
    aspect-ratio: 327/200;
  }
}
.reservation__bannerImg {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.reservation__callout {
  border: 1px solid #22a720;
  border-radius: 8px;
  padding: 47px;
}
@media (max-width: 768px) {
  .reservation__callout {
    padding: 24px;
  }
}
.reservation__callout_type_footer {
  background: #fff;
  border-color: transparent;
}
.reservation__calloutInner {
  margin: 0 auto;
}
.reservation__info:nth-child(n+2) {
  margin-top: 16px;
}
.reservation__infoTtl {
  color: #22a720;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.6;
}
.reservation__infoTxt {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.6;
}
.reservation__infoTxt:not(:first-child) {
  margin-top: 8px;
}
.reservation__infoTxt_color_red {
  color: #ef2e2e;
  font-size: inherit;
  font-weight: inherit;
}
.reservation__alert {
  border: 1px solid currentColor;
  border-radius: 4px;
  color: #ef2e2e;
  padding: 15px 47px;
}
@media (max-width: 768px) {
  .reservation__alert {
    border-radius: 8px;
    padding: 23px;
  }
}
.reservation__alertTxt {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
  font-size: 1.6rem;
  font-weight: 700;
  -webkit-justify-content: center;
          justify-content: center;
  letter-spacing: 0;
  line-height: 1.6;
  text-align: center;
}
.reservation__alertTxt::before {
  aspect-ratio: 1;
  background: currentColor;
  content: "";
  display: block;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 8px 0 0;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.5 17.5C13.5 17.7652 13.3946 18.0196 13.2071 18.2071C13.0196 18.3946 12.7652 18.5 12.5 18.5C12.2348 18.5 11.9804 18.3946 11.7929 18.2071C11.6054 18.0196 11.5 17.7652 11.5 17.5C11.5 17.2348 11.6054 16.9804 11.7929 16.7929C11.9804 16.6054 12.2348 16.5 12.5 16.5C12.7652 16.5 13.0196 16.6054 13.2071 16.7929C13.3946 16.9804 13.5 17.2348 13.5 17.5ZM13.25 9.25C13.25 9.05109 13.171 8.86032 13.0303 8.71967C12.8897 8.57902 12.6989 8.5 12.5 8.5C12.3011 8.5 12.1103 8.57902 11.9697 8.71967C11.829 8.86032 11.75 9.05109 11.75 9.25V13.75C11.75 13.9489 11.829 14.1397 11.9697 14.2803C12.1103 14.421 12.3011 14.5 12.5 14.5C12.6989 14.5 12.8897 14.421 13.0303 14.2803C13.171 14.1397 13.25 13.9489 13.25 13.75V9.25Z" fill="%23EF2E2E"/><path d="M10.3365 3.24387C11.2995 1.57887 13.7015 1.57887 14.6645 3.24387L23.6315 18.7479C24.5945 20.4149 23.3915 22.4999 21.4665 22.4999H3.53446C1.60846 22.4999 0.406461 20.4149 1.36946 18.7479L10.3365 3.24387ZM13.3665 3.99487C13.2783 3.84337 13.1519 3.71765 12.9999 3.63027C12.848 3.54289 12.6758 3.4969 12.5005 3.4969C12.3252 3.4969 12.1529 3.54289 12.001 3.63027C11.849 3.71765 11.7226 3.84337 11.6345 3.99487L2.66846 19.4989C2.58109 19.651 2.53519 19.8234 2.53537 19.9989C2.53554 20.1743 2.58178 20.3466 2.66946 20.4986C2.75714 20.6506 2.88318 20.7769 3.03498 20.8648C3.18678 20.9528 3.35902 20.9994 3.53446 20.9999H21.4665C21.6418 20.9993 21.8138 20.9527 21.9655 20.8648C22.1172 20.7768 22.2431 20.6507 22.3307 20.4989C22.4184 20.347 22.4647 20.1749 22.465 19.9996C22.4653 19.8243 22.4196 19.652 22.3325 19.4999L13.3665 3.99487Z" fill="%23EF2E2E"/></svg>') no-repeat center center/contain;
          mask: url('data:image/svg+xml;utf8,<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.5 17.5C13.5 17.7652 13.3946 18.0196 13.2071 18.2071C13.0196 18.3946 12.7652 18.5 12.5 18.5C12.2348 18.5 11.9804 18.3946 11.7929 18.2071C11.6054 18.0196 11.5 17.7652 11.5 17.5C11.5 17.2348 11.6054 16.9804 11.7929 16.7929C11.9804 16.6054 12.2348 16.5 12.5 16.5C12.7652 16.5 13.0196 16.6054 13.2071 16.7929C13.3946 16.9804 13.5 17.2348 13.5 17.5ZM13.25 9.25C13.25 9.05109 13.171 8.86032 13.0303 8.71967C12.8897 8.57902 12.6989 8.5 12.5 8.5C12.3011 8.5 12.1103 8.57902 11.9697 8.71967C11.829 8.86032 11.75 9.05109 11.75 9.25V13.75C11.75 13.9489 11.829 14.1397 11.9697 14.2803C12.1103 14.421 12.3011 14.5 12.5 14.5C12.6989 14.5 12.8897 14.421 13.0303 14.2803C13.171 14.1397 13.25 13.9489 13.25 13.75V9.25Z" fill="%23EF2E2E"/><path d="M10.3365 3.24387C11.2995 1.57887 13.7015 1.57887 14.6645 3.24387L23.6315 18.7479C24.5945 20.4149 23.3915 22.4999 21.4665 22.4999H3.53446C1.60846 22.4999 0.406461 20.4149 1.36946 18.7479L10.3365 3.24387ZM13.3665 3.99487C13.2783 3.84337 13.1519 3.71765 12.9999 3.63027C12.848 3.54289 12.6758 3.4969 12.5005 3.4969C12.3252 3.4969 12.1529 3.54289 12.001 3.63027C11.849 3.71765 11.7226 3.84337 11.6345 3.99487L2.66846 19.4989C2.58109 19.651 2.53519 19.8234 2.53537 19.9989C2.53554 20.1743 2.58178 20.3466 2.66946 20.4986C2.75714 20.6506 2.88318 20.7769 3.03498 20.8648C3.18678 20.9528 3.35902 20.9994 3.53446 20.9999H21.4665C21.6418 20.9993 21.8138 20.9527 21.9655 20.8648C22.1172 20.7768 22.2431 20.6507 22.3307 20.4989C22.4184 20.347 22.4647 20.1749 22.465 19.9996C22.4653 19.8243 22.4196 19.652 22.3325 19.4999L13.3665 3.99487Z" fill="%23EF2E2E"/></svg>') no-repeat center center/contain;
  width: 24px;
}
.reservation__ornament {
  bottom: 24px;
  display: grid;
  left: 50%;
  max-width: 1120px;
  padding: 0 24px;
  position: absolute;
  translate: -50% 50%;
  width: 100%;
  z-index: 0;
}
@media (max-width: 768px) {
  .reservation__ornament {
    bottom: 24px;
    left: 0;
    position: absolute;
    translate: 0 25%;
  }
}
.reservation__ornamentCloud {
  display: grid;
  grid-area: 1/-1;
  width: 27.9850746269%;
}
@media (max-width: 768px) {
  .reservation__ornamentCloud {
    max-width: 300px;
    width: min(164px, 100%);
  }
}
.reservation__ornamentCloud_pos_left {
  aspect-ratio: 300/100;
  container: reserve-ornament-cloud-left/inline-size;
  place-self: flex-start;
}
.reservation__ornamentCloud_pos_left::before {
  -webkit-animation: cloud 3s linear infinite alternate;
          animation: cloud 3s linear infinite alternate;
  aspect-ratio: 240/100;
  background: url(../images/common/ornament_cloud_01.png) no-repeat center/contain;
  content: "";
  place-self: flex-start;
  width: 80%;
}
.reservation__ornamentCloud_pos_right {
  aspect-ratio: 300/70;
  container: reserve-ornament-cloud-right/inline-size;
  place-self: flex-end;
  translate: 0 28%;
}
@media (max-width: 768px) {
  .reservation__ornamentCloud_pos_right {
    translate: 0 64%;
  }
}
.reservation__ornamentCloud_pos_right::before {
  -webkit-animation: cloud 3s linear infinite alternate;
          animation: cloud 3s linear infinite alternate;
  aspect-ratio: 242/70;
  background: url(../images/common/ornament_cloud_02.png) no-repeat center/contain;
  content: "";
  place-self: flex-start;
  width: 80%;
}
.reservation__illust {
  aspect-ratio: 1264/171;
  bottom: -73px;
  container: reserve-illust/inline-size;
  display: grid;
  grid-auto-columns: minmax(0, 1fr);
  left: 50%;
  max-width: 1644px;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  translate: -50% 50%;
  width: 100%;
  z-index: 0;
}
@media (max-width: 768px) {
  .reservation__illust {
    aspect-ratio: 359/65;
    bottom: -22px;
    left: 0;
    margin-top: 0;
    position: absolute;
    translate: 0 50%;
    width: 100%;
  }
}
.reservation__illust::before {
  background: url(../images/reserve/img_reserve_illust_bg.png) no-repeat center 0/cover;
  content: "";
  grid-area: 1/-1;
  height: 100%;
  max-height: 171px;
  place-self: flex-end center;
  width: 100%;
}
.reservation__illustBicycle {
  display: grid;
  grid-area: 1/-1;
  width: 100%;
}
.reservation__illustBicycle::after {
  -webkit-animation: bicycle-move-linear 40s linear infinite, bicycle-opacity 40s linear infinite;
          animation: bicycle-move-linear 40s linear infinite, bicycle-opacity 40s linear infinite;
  aspect-ratio: 78/58;
  background: url(../images/reserve/img_reserve_illust_bicycle.png) no-repeat center/contain;
  content: "";
  display: block;
  max-width: 78px;
  min-width: 30px;
  place-self: flex-end;
  translate: 0 0;
  width: 6.1708860759%;
}

.u_d_n {
  display: none;
}
.u_d_b {
  display: block;
}
.u_d_i {
  display: inline;
}
.u_d_ib {
  display: inline-block;
}
.u_d_f {
  display: -webkit-flex;
  display: flex;
}
.u_d_if {
  display: -webkit-inline-flex;
  display: inline-flex;
}
.u_d_g {
  display: grid;
}
.u_d_c {
  display: contents;
}
@media (max-width: 768px) {
  .u_sp_d_n {
    display: none;
  }
  .u_sp_d_b {
    display: block;
  }
  .u_sp_d_i {
    display: inline;
  }
  .u_sp_d_ib {
    display: inline-block;
  }
  .u_sp_d_f {
    display: -webkit-flex;
    display: flex;
  }
  .u_sp_d_if {
    display: -webkit-inline-flex;
    display: inline-flex;
  }
  .u_sp_d_g {
    display: grid;
  }
  .u_sp_d_c {
    display: contents;
  }
}
@media (min-width: 767px) {
  .u_pc_d_n {
    display: none;
  }
  .u_pc_d_b {
    display: block;
  }
  .u_pc_d_i {
    display: inline;
  }
  .u_pc_d_ib {
    display: inline-block;
  }
  .u_pc_d_f {
    display: -webkit-flex;
    display: flex;
  }
  .u_pc_d_if {
    display: -webkit-inline-flex;
    display: inline-flex;
  }
  .u_pc_d_g {
    display: grid;
  }
  .u_pc_d_c {
    display: contents;
  }
}
.u_fz_xxx-sm {
  font-size: 60%;
}
.u_fz_xx-sm {
  font-size: 70%;
}
.u_fz_x-sm {
  font-size: 80%;
}
.u_fz_sm {
  font-size: 90%;
}
.u_fz_md {
  font-size: 100%;
}
.u_fz_lg {
  font-size: 110%;
}
.u_fz_x-lg {
  font-size: 120%;
}
.u_fz_xx-lg {
  font-size: 130%;
}
.u_fz_xxx-lg {
  font-size: 140%;
}
@media (max-width: 768px) {
  .u_sp_fz_xxx-sm {
    font-size: 60%;
  }
  .u_sp_fz_xx-sm {
    font-size: 70%;
  }
  .u_sp_fz_x-sm {
    font-size: 80%;
  }
  .u_sp_fz_sm {
    font-size: 90%;
  }
  .u_sp_fz_md {
    font-size: 100%;
  }
  .u_sp_fz_lg {
    font-size: 110%;
  }
  .u_sp_fz_x-lg {
    font-size: 120%;
  }
  .u_sp_fz_xx-lg {
    font-size: 130%;
  }
  .u_sp_fz_xxx-lg {
    font-size: 140%;
  }
}
@media (min-width: 767px) {
  .u_pc_fz_xxx-sm {
    font-size: 60%;
  }
  .u_pc_fz_xx-sm {
    font-size: 70%;
  }
  .u_pc_fz_x-sm {
    font-size: 80%;
  }
  .u_pc_fz_sm {
    font-size: 90%;
  }
  .u_pc_fz_md {
    font-size: 100%;
  }
  .u_pc_fz_lg {
    font-size: 110%;
  }
  .u_pc_fz_x-lg {
    font-size: 120%;
  }
  .u_pc_fz_xx-lg {
    font-size: 130%;
  }
  .u_pc_fz_xxx-lg {
    font-size: 140%;
  }
}
.u_fw_100 {
  font-weight: 100;
}
.u_fw_200 {
  font-weight: 200;
}
.u_fw_300 {
  font-weight: 300;
}
.u_fw_400 {
  font-weight: 400;
}
.u_fw_500 {
  font-weight: 500;
}
.u_fw_600 {
  font-weight: 600;
}
.u_fw_700 {
  font-weight: 700;
}
.u_fw_800 {
  font-weight: 800;
}
.u_fw_900 {
  font-weight: 900;
}
@media (max-width: 768px) {
  .u_sp_fw_100 {
    font-weight: 100;
  }
  .u_sp_fw_200 {
    font-weight: 200;
  }
  .u_sp_fw_300 {
    font-weight: 300;
  }
  .u_sp_fw_400 {
    font-weight: 400;
  }
  .u_sp_fw_500 {
    font-weight: 500;
  }
  .u_sp_fw_600 {
    font-weight: 600;
  }
  .u_sp_fw_700 {
    font-weight: 700;
  }
  .u_sp_fw_800 {
    font-weight: 800;
  }
  .u_sp_fw_900 {
    font-weight: 900;
  }
}
@media (min-width: 767px) {
  .u_pc_fw_100 {
    font-weight: 100;
  }
  .u_pc_fw_200 {
    font-weight: 200;
  }
  .u_pc_fw_300 {
    font-weight: 300;
  }
  .u_pc_fw_400 {
    font-weight: 400;
  }
  .u_pc_fw_500 {
    font-weight: 500;
  }
  .u_pc_fw_600 {
    font-weight: 600;
  }
  .u_pc_fw_700 {
    font-weight: 700;
  }
  .u_pc_fw_800 {
    font-weight: 800;
  }
  .u_pc_fw_900 {
    font-weight: 900;
  }
}
.u_ta_l {
  text-align: left;
}
.u_ta_r {
  text-align: right;
}
.u_ta_c {
  text-align: center;
}
@media (max-width: 768px) {
  .u_sp_ta_l {
    text-align: left;
  }
  .u_sp_ta_r {
    text-align: right;
  }
  .u_sp_ta_c {
    text-align: center;
  }
}
@media (min-width: 767px) {
  .u_pc_ta_l {
    text-align: left;
  }
  .u_pc_ta_r {
    text-align: right;
  }
  .u_pc_ta_c {
    text-align: center;
  }
}
.u_td_u {
  text-decoration: underline;
}
.u_td_n {
  text-decoration: none;
}
@media (max-width: 768px) {
  .u_sp_td_u {
    text-decoration: underline;
  }
  .u_sp_td_n {
    text-decoration: none;
  }
}
@media (min-width: 767px) {
  .u_pc_td_u {
    text-decoration: underline;
  }
  .u_pc_td_n {
    text-decoration: none;
  }
}
.u_fx_00 {
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
}
.u_fx_10 {
  -webkit-flex: 1 0 auto;
          flex: 1 0 auto;
}
.u_fx_01 {
  -webkit-flex: 0 1 auto;
          flex: 0 1 auto;
}
.u_fx_11 {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media (max-width: 768px) {
  .u_sp_fx_00 {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .u_sp_fx_10 {
    -webkit-flex: 1 0 auto;
            flex: 1 0 auto;
  }
  .u_sp_fx_01 {
    -webkit-flex: 0 1 auto;
            flex: 0 1 auto;
  }
  .u_sp_fx_11 {
    -webkit-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
@media (min-width: 767px) {
  .u_pc_fx_00 {
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .u_pc_fx_10 {
    -webkit-flex: 1 0 auto;
            flex: 1 0 auto;
  }
  .u_pc_fx_01 {
    -webkit-flex: 0 1 auto;
            flex: 0 1 auto;
  }
  .u_pc_fx_11 {
    -webkit-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}