@charset "UTF-8";
/* setting */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Sora:wght@100..800&display=swap");
/* variables */
:root {
  --text: #3a3a3a;
  --muted: #6b7280;
  --bg: #fff;
  --border: #efefef;
  --ease-up: cubic-bezier(.19, 1, .22, 1);
  --black: #000;
  --white: #fff;
  --navy: #1b3474;
}

/* svg */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

html, body {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

h1 {
  line-height: 0.9;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

dl, dt, dd {
  padding: 0;
}

ul, ol {
  padding: 0;
}

li {
  margin-left: 1.6em;
}

a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}

figure {
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 0;
  text-align: center;
}

img, svg {
  display: block;
  width: auto;
  max-width: 100%;
}

svg {
  height: 100%;
}

blockquote, dl, dd, h1, h2, h3, h4, h5, h6, hr, figure, p, pre {
  margin: 0;
}

small {
  display: inline-block;
}

html, body {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "YuGothic", "メイリオ", "Meiryo", "Osaka", sans-serif;
  background-color: var(--bg);
  background-image: url("../img/background.webp");
  background-repeat: repeat;
  color: var(--text);
  font-size: 18px;
  line-height: 2;
  font-weight: 400;
}
@media (max-width: 768px) {
  body {
    font-size: 3.7333333333vw;
  }
}

main {
  padding: 0 1rem 5rem;
}
@media (max-width: 768px) {
  main {
    padding: 23.4666666667vw 2.1333333333vw !important;
  }
}
#home main {
  padding-top: 5rem;
}
main a[target=_blank] span::after {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  margin: 0 0.16em 0 0.24em;
  background-color: #969696;
  -webkit-mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M15%203h6v6m-11%205L21%203m-3%2010v6a2%202%200%200%201-2%202H5a2%202%200%200%201-2-2V8a2%202%200%200%201%202-2h6%22%2F%3E%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M15%203h6v6m-11%205L21%203m-3%2010v6a2%202%200%200%201-2%202H5a2%202%200%200%201-2-2V8a2%202%200%200%201%202-2h6%22%2F%3E%3C%2Fsvg%3E");
  -webkit-mask-position: 50% 50%;
  mask-position: 50% 50%;
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  main a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

.spView {
  display: none;
}

@media (max-width: 768px) {
  .pcView {
    display: none;
  }
  .spView {
    display: inline;
  }
}
.skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: var(--white);
  border: 1px solid var(--border);
}

.divider {
  display: block;
  width: 100%;
  height: 0.225rem;
  margin: 4.5rem 0;
  border: 1px solid #dddddd;
  background-color: var(--white);
}
@media (max-width: 768px) {
  .divider {
    height: 0.8533333333vw;
    margin: 21.3333333333vw;
  }
}

.animate {
  -webkit-transform: translateY(4rem) scale(0.95);
          transform: translateY(4rem) scale(0.95);
  opacity: 0;
  will-change: transform, opacity;
  -webkit-transition: opacity 1.6s var(--ease-up), transform 1.6s var(--ease-up);
  -webkit-transition: opacity 1.6s var(--ease-up), -webkit-transform 1.6s var(--ease-up);
  transition: opacity 1.6s var(--ease-up), -webkit-transform 1.6s var(--ease-up);
  transition: opacity 1.6s var(--ease-up), transform 1.6s var(--ease-up);
  transition: opacity 1.6s var(--ease-up), transform 1.6s var(--ease-up), -webkit-transform 1.6s var(--ease-up);
}
@media (max-width: 768px) {
  .animate {
    -webkit-transform: translateY(3rem) scale(0.95);
            transform: translateY(3rem) scale(0.95);
  }
}
.animate.is_animated {
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
  opacity: 1;
}

.container {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.logo,
.credit {
  display: block;
  padding: 0.25rem;
}
@media (max-width: 768px) {
  .logo,
  .credit {
    padding: 0.2rem 0.4rem;
  }
}
.logo span,
.credit span {
  display: block;
  -webkit-mask-position: 50% 50%;
  mask-position: 50% 50%;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-transition: none;
  transition: none;
  font-size: 0;
  line-height: 1;
}

.logo span {
  width: 14rem;
  background-color: var(--navy);
  aspect-ratio: 1/0.112;
  -webkit-mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%20250%2028%22%3E%3Cpath%20fill%3D%22%231b3474%22%20d%3D%22M64.85%2C1.44c.38%2C0%2C.7.31.7.7v3h5.06c.38.01.7.33.7.71v1.96c0%2C.38-.31.7-.7.7h-5.05v8.1c.1%2C5.4-.12%2C6.37-3.96%2C10.92-.13.15-.31.24-.51.24h-.02c-.19%2C0-.37-.07-.5-.21l-1.36-1.4c-.26-.27-.27-.67-.02-.95%2C1.9-2.18%2C2.63-3.11%2C2.97-4.12-.31.06-.66.08-1.06.06-1.11-.08-2.07-.56-2.81-1.4-.95-1.09-1.42-2.7-1.29-4.52.22-3.08%2C1.99-5.14%2C4.41-5.14h.06c.33.01.59.05.83.09v-1.69h-9.93c-.38%2C0-.7-.31-.7-.7v-1.96c0-.38.32-.7.7-.7h9.93v-3c0-.38.31-.7.7-.7h1.86ZM61.35%2C13.5c-.84%2C0-1.14%2C1.25-1.19%2C1.99-.06.81.12%2C1.57.45%2C1.96.16.19.35.28.59.28h.05c.93%2C0%2C1.19-1.07%2C1.23-1.97h0c.05-.84-.14-1.59-.5-1.98-.17-.19-.38-.28-.64-.28ZM11.71.29c.38%2C0%2C.7.31.7.7v3.33h7.75c.38%2C0%2C.7.31.7.7v5.77c0%2C.38-.31.7-.7.7h-1.78c-.38%2C0-.7-.32-.7-.7v-3.24h-7.01l.28.09c.36.12.56.51.44.87-.35%2C1.09-.69%2C2.16-1.05%2C3.17h10.64-.01c.38.01.7.33.7.71v1.84c0%2C.38-.31.7-.7.7h-4.02c-.54%2C2.3-1.3%2C4.29-2.35%2C6.04%2C2.12%2C1.14%2C4.07%2C2.28%2C5.96%2C3.48.16.12.28.28.31.48.03.19-.02.4-.14.55l-1.39%2C1.78c-.23.29-.65.35-.95.14-2.05-1.42-4.01-2.67-5.97-3.77-3.31%2C2.82-7.94%2C3.77-10.46%2C4.1h-.09c-.33%2C0-.62-.22-.69-.55l-.44-2.04c-.05-.2%2C0-.41.12-.57.12-.16.3-.27.5-.28%2C3.48-.3%2C5.92-1.01%2C7.91-2.36-.98-.51-1.93-.95-2.79-1.34-.21.41-.44.83-.66%2C1.2-.1.16-.27.28-.45.33-.19.03-.38%2C0-.55-.1l-1.51-1.02c-.3-.2-.4-.61-.22-.92.92-1.66%2C1.79-3.42%2C2.55-5.14H.7c-.38%2C0-.7-.32-.7-.7v-1.84c0-.38.31-.7.7-.7h6.24c.41-1.05.93-2.51%2C1.36-4.13H3.92v3.24c0%2C.38-.31.7-.7.7h-1.78c-.38%2C0-.7-.32-.7-.7v-5.77c0-.38.32-.7.7-.7h7.71V.99c0-.38.31-.7.7-.7h1.86ZM9.14%2C14.91c-.37%2C1-.78%2C1.92-1.19%2C2.81%2C1.16.51%2C2.29%2C1.06%2C3.4%2C1.58l.38.19c.8-1.22%2C1.48-2.81%2C1.94-4.56h0s-4.54-.01-4.54-.01ZM204.38%2C9.62c.38%2C0%2C.7.31.7.7v2.04c0%2C6.46-2.26%2C9.01-8.72%2C14.64-.13.12-.3.17-.47.17h-.09c-.2-.03-.37-.15-.49-.31l-1.19-1.81c-.19-.3-.14-.69.13-.92%2C6.03-5.25%2C7.3-7.01%2C7.45-11.05h-11.48c-.38%2C0-.7-.32-.7-.7v-2.07c0-.38.31-.7.7-.7h14.15ZM226%2C2.06c.38%2C0%2C.7.32.7.7%2C0%2C3.15-1.34%2C5.67-4.61%2C8.59v15.05c0%2C.38-.31.7-.7.7h-1.93c-.38%2C0-.7-.31-.7-.7v-12.08c-1.34%2C1.09-2.91%2C2.32-4.9%2C3.86l-1.3%2C1.01c-.16.14-.37.17-.57.14-.21-.05-.37-.18-.48-.35l-1.04-1.86c-.17-.3-.09-.69.19-.9l1.87-1.42c7.23-5.48%2C10.86-8.23%2C10.86-12.04%2C0-.38.31-.7.7-.7h1.91ZM37.12.82c.24%2C0%2C.48.14.61.35%2C2.5%2C4.28%2C5.59%2C7.4%2C9.45%2C9.57h-.01c.16.08.29.23.34.42.05.19.02.37-.07.54l-1.09%2C1.92c-.09.17-.24.29-.43.34-.19.05-.38.02-.55-.08-.9-.56-1.76-1.16-2.6-1.82v.49c0%2C.38-.31.7-.7.7h-4.35v3.29h6.11c.38%2C0%2C.7.31.7.7v1.86c0%2C.38-.31.7-.7.7h-6.11v3.85h8.19c.38%2C0%2C.7.32.7.7v1.9c0%2C.38-.31.7-.7.7h-19.4c-.38%2C0-.7-.31-.7-.7v-1.9c0-.38.31-.7.7-.7h8v-3.85h-5.94c-.38%2C0-.7-.31-.7-.7v-1.86c0-.38.31-.7.7-.7h5.94v-3.29h-3.93c-.34%2C0-.63-.24-.69-.57-.86.69-1.8%2C1.3-2.83%2C1.89-.34.19-.76.07-.95-.26l-1.01-1.72c-.09-.16-.12-.36-.07-.55.06-.19.17-.34.35-.43%2C3.9-2.06%2C6.94-5.54%2C9.03-10.36.1-.26.36-.42.64-.42h2.08ZM36.2%2C4.9c-1.01%2C1.86-2.2%2C3.59-3.51%2C5.1h7.75c-1.56-1.5-2.97-3.21-4.24-5.1ZM138.29%2C9.71c.38.01.69.31.69.7v1.69c0%2C.38-.32.7-.7.7h-1.69c-.27%2C0-.5.09-.69.29-.26.27-.7.99-.72%2C2.72v3.56c1.42.66%2C2.75%2C1.57%2C4.38%2C2.7v.02c.3.2.39.58.24.9l-.9%2C1.78c-.09.17-.26.31-.45.36-.21.06-.42.01-.58-.1-1.2-.86-2-1.4-2.75-1.85-.14%2C1.12-.54%2C1.99-1.15%2C2.62-.73.74-1.77%2C1.12-3.07%2C1.12-1.69%2C0-3.39-.81-4.33-2.08-.79-1.07-1-2.34-.61-3.69.49-1.57%2C1.9-2.62%2C3.88-2.89.87-.13%2C1.45-.09%2C2.19.05v-2.19c-.01-1.36.16-2.43.58-3.35-1.4.09-1.88.41-2.98%2C1.22-.16.13-.36.16-.56.13-.2-.05-.36-.16-.46-.34l-.92-1.57c-.19-.31-.11-.72.2-.93%2C1.83-1.29%2C3.05-1.7%2C4.83-1.68l5.58.12ZM130.76%2C21.48c-.34%2C0-.9.08-1.29.24-.34.14-.54.38-.54.66.01.93%2C1.75%2C1.14%2C2%2C1.14.74%2C0%2C1.19-.12%2C1.19-1.8v-.05c-.5-.13-.95-.2-1.36-.2ZM109.94.64c.38%2C0%2C.7.32.7.7v2.83h3.56c.38%2C0%2C.7.31.7.7v2.07c0%2C.38-.31.7-.7.7h-3.56v2.04h3.63c.38-.01.7.3.7.69v1.98c0%2C.38-.32.7-.7.7h-3.35c.31%2C1.87.9%2C3.19%2C1.89%2C4.28.19.21.23.5.12.76-.03.07-.13.2-.13.2l-.86%2C1.57c-.16.3-.51.43-.83.34l-.14-.05c-1.19-.38-3.69-1.14-5.02-1.12-1.91.08-2.39.66-2.6%2C1.21-.17.42-.2.78-.08%2C1.19.34%2C1%2C1.2%2C1.54%2C2.88%2C1.78%2C1.43.17%2C3.36.13%2C5.04-.14.22-.02.42.04.57.16.15.14.24.33.24.54v1.98c0%2C.34-.24.63-.58.69-1.61.28-2.65.3-3.86.3-4.87%2C0-6.67-2.19-7.32-4.03-.48-1.35-.43-2.71.14-4.02.86-1.89%2C2.63-2.84%2C5.41-2.9.91-.01%2C1.8.16%2C2.64.41-.38-1.05-.63-2.05-.76-3.14h-7.41c-.38%2C0-.7-.31-.7-.7v-1.98c0-.38.31-.7.7-.7h7.17c-.01-.42-.01-1-.01-2.04h-7.16c-.38%2C0-.7-.31-.7-.7v-2.07c0-.38.31-.7.7-.7h7.16V1.34c0-.38.31-.7.7-.7h1.83ZM249.3%2C4.07c.38%2C0%2C.7.31.7.7v1.72c0%2C8.78-3.41%2C12.61-10.49%2C19.79-.13.14-.32.21-.5.21h-.05c-.2-.01-.38-.12-.51-.28l-1.32-1.75c-.21-.27-.19-.66.06-.91%2C6.44-6.52%2C9.02-9.7%2C9.34-15.81h-11.88c-.38%2C0-.7-.32-.7-.7v-2.27c0-.38.31-.7.7-.7h14.65ZM152.23%2C1.49c.38%2C0%2C.7.31.7.7v5.56h7.05c.38%2C0%2C.7.31.7.7v8.83c-.02%2C2.48-.14%2C3.73-.47%2C4.92-1.04%2C3.76-3.62%2C4.07-6.4%2C4.07-.38%2C0-.7-.31-.7-.7v-2.13c0-.38.31-.7.7-.7%2C2.72%2C0%2C2.88-.55%2C3.17-1.64.21-.74.3-1.69.37-3.86v-6.04h-4.47c-.06%2C5.6-1.08%2C7.48-4.59%2C13.96l-.33.6c-.09.17-.27.3-.47.35-.2.05-.41%2C0-.57-.13l-1.58-1.22c-.27-.21-.35-.58-.19-.89l.19-.34c3.53-6.46%2C4.17-7.65%2C4.21-12.33h-4.8c-.38%2C0-.7-.31-.7-.7v-2.07c0-.38.31-.7.7-.7h4.83V2.19c0-.38.31-.7.7-.7h1.93ZM92.09%2C4.19c.38%2C0%2C.7.31.7.7v2.01c0%2C.38-.31.7-.7.7h-3.36c-.3.5-.69%2C1.05-1.11%2C1.68-1.43%2C2.11-3.39%2C4.99-3.76%2C7.91-.24%2C1.91.08%2C3.42.92%2C4.38.73.83%2C1.85%2C1.24%2C3.32%2C1.24.27%2C0%2C1-.03%2C1.82-.12.2-.02.4.05.54.17.15.14.23.33.23.52v2.01c0%2C.37-.28.67-.65.7-.92.07-1.57.09-1.98.09-2.47%2C0-4.46-.78-5.77-2.26-1.48-1.66-2.07-4.18-1.71-7.26.41-3.33%2C2.04-5.76%2C4.31-9.1l-8.79.02c-.16-.03-.36-.06-.5-.2-.14-.14-.21-.32-.21-.5v-2.01c0-.38.31-.7.7-.7h16.02ZM126.55%2C1.22l1.78.49c.36.1.58.48.49.85-.08.31-.2.83-.34%2C1.45-.07.31-.14.64-.22%2C1h2.41c.38%2C0%2C.7.31.7.7v2.04c0%2C.38-.32.7-.7.7h0s-3.29.01-3.29.01c-1.18%2C4.53-2.76%2C8.99-4.71%2C13.29-.08.19-.24.32-.44.38-.07.02-.13.02-.2.02-.13%2C0-.27-.03-.38-.12l-1.63-1.08c-.29-.2-.39-.57-.24-.88%2C1.66-3.59%2C3.09-7.5%2C4.23-11.63h-2.15c-.38%2C0-.7-.31-.7-.7v-2.04c0-.38.31-.7.7-.7h3.09c.12-.5.22-.97.32-1.41.17-.78.33-1.44.44-1.89.05-.17.16-.34.33-.43.16-.09.35-.12.54-.07ZM184.13%2C12.36c.38%2C0%2C.7.31.7.7v2.22c0%2C.39-.31.7-.7.7h-18.3c-.38%2C0-.7-.31-.7-.7v-2.22c0-.39.31-.7.7-.7h18.3ZM202.63%2C3.09c.38%2C0%2C.7.31.7.7v2.19c0%2C.39-.31.7-.7.7h-10.78c-.38%2C0-.7-.31-.7-.7v-2.19c0-.39.31-.7.7-.7h10.78Z%22%2F%3E%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%20250%2028%22%3E%3Cpath%20fill%3D%22%231b3474%22%20d%3D%22M64.85%2C1.44c.38%2C0%2C.7.31.7.7v3h5.06c.38.01.7.33.7.71v1.96c0%2C.38-.31.7-.7.7h-5.05v8.1c.1%2C5.4-.12%2C6.37-3.96%2C10.92-.13.15-.31.24-.51.24h-.02c-.19%2C0-.37-.07-.5-.21l-1.36-1.4c-.26-.27-.27-.67-.02-.95%2C1.9-2.18%2C2.63-3.11%2C2.97-4.12-.31.06-.66.08-1.06.06-1.11-.08-2.07-.56-2.81-1.4-.95-1.09-1.42-2.7-1.29-4.52.22-3.08%2C1.99-5.14%2C4.41-5.14h.06c.33.01.59.05.83.09v-1.69h-9.93c-.38%2C0-.7-.31-.7-.7v-1.96c0-.38.32-.7.7-.7h9.93v-3c0-.38.31-.7.7-.7h1.86ZM61.35%2C13.5c-.84%2C0-1.14%2C1.25-1.19%2C1.99-.06.81.12%2C1.57.45%2C1.96.16.19.35.28.59.28h.05c.93%2C0%2C1.19-1.07%2C1.23-1.97h0c.05-.84-.14-1.59-.5-1.98-.17-.19-.38-.28-.64-.28ZM11.71.29c.38%2C0%2C.7.31.7.7v3.33h7.75c.38%2C0%2C.7.31.7.7v5.77c0%2C.38-.31.7-.7.7h-1.78c-.38%2C0-.7-.32-.7-.7v-3.24h-7.01l.28.09c.36.12.56.51.44.87-.35%2C1.09-.69%2C2.16-1.05%2C3.17h10.64-.01c.38.01.7.33.7.71v1.84c0%2C.38-.31.7-.7.7h-4.02c-.54%2C2.3-1.3%2C4.29-2.35%2C6.04%2C2.12%2C1.14%2C4.07%2C2.28%2C5.96%2C3.48.16.12.28.28.31.48.03.19-.02.4-.14.55l-1.39%2C1.78c-.23.29-.65.35-.95.14-2.05-1.42-4.01-2.67-5.97-3.77-3.31%2C2.82-7.94%2C3.77-10.46%2C4.1h-.09c-.33%2C0-.62-.22-.69-.55l-.44-2.04c-.05-.2%2C0-.41.12-.57.12-.16.3-.27.5-.28%2C3.48-.3%2C5.92-1.01%2C7.91-2.36-.98-.51-1.93-.95-2.79-1.34-.21.41-.44.83-.66%2C1.2-.1.16-.27.28-.45.33-.19.03-.38%2C0-.55-.1l-1.51-1.02c-.3-.2-.4-.61-.22-.92.92-1.66%2C1.79-3.42%2C2.55-5.14H.7c-.38%2C0-.7-.32-.7-.7v-1.84c0-.38.31-.7.7-.7h6.24c.41-1.05.93-2.51%2C1.36-4.13H3.92v3.24c0%2C.38-.31.7-.7.7h-1.78c-.38%2C0-.7-.32-.7-.7v-5.77c0-.38.32-.7.7-.7h7.71V.99c0-.38.31-.7.7-.7h1.86ZM9.14%2C14.91c-.37%2C1-.78%2C1.92-1.19%2C2.81%2C1.16.51%2C2.29%2C1.06%2C3.4%2C1.58l.38.19c.8-1.22%2C1.48-2.81%2C1.94-4.56h0s-4.54-.01-4.54-.01ZM204.38%2C9.62c.38%2C0%2C.7.31.7.7v2.04c0%2C6.46-2.26%2C9.01-8.72%2C14.64-.13.12-.3.17-.47.17h-.09c-.2-.03-.37-.15-.49-.31l-1.19-1.81c-.19-.3-.14-.69.13-.92%2C6.03-5.25%2C7.3-7.01%2C7.45-11.05h-11.48c-.38%2C0-.7-.32-.7-.7v-2.07c0-.38.31-.7.7-.7h14.15ZM226%2C2.06c.38%2C0%2C.7.32.7.7%2C0%2C3.15-1.34%2C5.67-4.61%2C8.59v15.05c0%2C.38-.31.7-.7.7h-1.93c-.38%2C0-.7-.31-.7-.7v-12.08c-1.34%2C1.09-2.91%2C2.32-4.9%2C3.86l-1.3%2C1.01c-.16.14-.37.17-.57.14-.21-.05-.37-.18-.48-.35l-1.04-1.86c-.17-.3-.09-.69.19-.9l1.87-1.42c7.23-5.48%2C10.86-8.23%2C10.86-12.04%2C0-.38.31-.7.7-.7h1.91ZM37.12.82c.24%2C0%2C.48.14.61.35%2C2.5%2C4.28%2C5.59%2C7.4%2C9.45%2C9.57h-.01c.16.08.29.23.34.42.05.19.02.37-.07.54l-1.09%2C1.92c-.09.17-.24.29-.43.34-.19.05-.38.02-.55-.08-.9-.56-1.76-1.16-2.6-1.82v.49c0%2C.38-.31.7-.7.7h-4.35v3.29h6.11c.38%2C0%2C.7.31.7.7v1.86c0%2C.38-.31.7-.7.7h-6.11v3.85h8.19c.38%2C0%2C.7.32.7.7v1.9c0%2C.38-.31.7-.7.7h-19.4c-.38%2C0-.7-.31-.7-.7v-1.9c0-.38.31-.7.7-.7h8v-3.85h-5.94c-.38%2C0-.7-.31-.7-.7v-1.86c0-.38.31-.7.7-.7h5.94v-3.29h-3.93c-.34%2C0-.63-.24-.69-.57-.86.69-1.8%2C1.3-2.83%2C1.89-.34.19-.76.07-.95-.26l-1.01-1.72c-.09-.16-.12-.36-.07-.55.06-.19.17-.34.35-.43%2C3.9-2.06%2C6.94-5.54%2C9.03-10.36.1-.26.36-.42.64-.42h2.08ZM36.2%2C4.9c-1.01%2C1.86-2.2%2C3.59-3.51%2C5.1h7.75c-1.56-1.5-2.97-3.21-4.24-5.1ZM138.29%2C9.71c.38.01.69.31.69.7v1.69c0%2C.38-.32.7-.7.7h-1.69c-.27%2C0-.5.09-.69.29-.26.27-.7.99-.72%2C2.72v3.56c1.42.66%2C2.75%2C1.57%2C4.38%2C2.7v.02c.3.2.39.58.24.9l-.9%2C1.78c-.09.17-.26.31-.45.36-.21.06-.42.01-.58-.1-1.2-.86-2-1.4-2.75-1.85-.14%2C1.12-.54%2C1.99-1.15%2C2.62-.73.74-1.77%2C1.12-3.07%2C1.12-1.69%2C0-3.39-.81-4.33-2.08-.79-1.07-1-2.34-.61-3.69.49-1.57%2C1.9-2.62%2C3.88-2.89.87-.13%2C1.45-.09%2C2.19.05v-2.19c-.01-1.36.16-2.43.58-3.35-1.4.09-1.88.41-2.98%2C1.22-.16.13-.36.16-.56.13-.2-.05-.36-.16-.46-.34l-.92-1.57c-.19-.31-.11-.72.2-.93%2C1.83-1.29%2C3.05-1.7%2C4.83-1.68l5.58.12ZM130.76%2C21.48c-.34%2C0-.9.08-1.29.24-.34.14-.54.38-.54.66.01.93%2C1.75%2C1.14%2C2%2C1.14.74%2C0%2C1.19-.12%2C1.19-1.8v-.05c-.5-.13-.95-.2-1.36-.2ZM109.94.64c.38%2C0%2C.7.32.7.7v2.83h3.56c.38%2C0%2C.7.31.7.7v2.07c0%2C.38-.31.7-.7.7h-3.56v2.04h3.63c.38-.01.7.3.7.69v1.98c0%2C.38-.32.7-.7.7h-3.35c.31%2C1.87.9%2C3.19%2C1.89%2C4.28.19.21.23.5.12.76-.03.07-.13.2-.13.2l-.86%2C1.57c-.16.3-.51.43-.83.34l-.14-.05c-1.19-.38-3.69-1.14-5.02-1.12-1.91.08-2.39.66-2.6%2C1.21-.17.42-.2.78-.08%2C1.19.34%2C1%2C1.2%2C1.54%2C2.88%2C1.78%2C1.43.17%2C3.36.13%2C5.04-.14.22-.02.42.04.57.16.15.14.24.33.24.54v1.98c0%2C.34-.24.63-.58.69-1.61.28-2.65.3-3.86.3-4.87%2C0-6.67-2.19-7.32-4.03-.48-1.35-.43-2.71.14-4.02.86-1.89%2C2.63-2.84%2C5.41-2.9.91-.01%2C1.8.16%2C2.64.41-.38-1.05-.63-2.05-.76-3.14h-7.41c-.38%2C0-.7-.31-.7-.7v-1.98c0-.38.31-.7.7-.7h7.17c-.01-.42-.01-1-.01-2.04h-7.16c-.38%2C0-.7-.31-.7-.7v-2.07c0-.38.31-.7.7-.7h7.16V1.34c0-.38.31-.7.7-.7h1.83ZM249.3%2C4.07c.38%2C0%2C.7.31.7.7v1.72c0%2C8.78-3.41%2C12.61-10.49%2C19.79-.13.14-.32.21-.5.21h-.05c-.2-.01-.38-.12-.51-.28l-1.32-1.75c-.21-.27-.19-.66.06-.91%2C6.44-6.52%2C9.02-9.7%2C9.34-15.81h-11.88c-.38%2C0-.7-.32-.7-.7v-2.27c0-.38.31-.7.7-.7h14.65ZM152.23%2C1.49c.38%2C0%2C.7.31.7.7v5.56h7.05c.38%2C0%2C.7.31.7.7v8.83c-.02%2C2.48-.14%2C3.73-.47%2C4.92-1.04%2C3.76-3.62%2C4.07-6.4%2C4.07-.38%2C0-.7-.31-.7-.7v-2.13c0-.38.31-.7.7-.7%2C2.72%2C0%2C2.88-.55%2C3.17-1.64.21-.74.3-1.69.37-3.86v-6.04h-4.47c-.06%2C5.6-1.08%2C7.48-4.59%2C13.96l-.33.6c-.09.17-.27.3-.47.35-.2.05-.41%2C0-.57-.13l-1.58-1.22c-.27-.21-.35-.58-.19-.89l.19-.34c3.53-6.46%2C4.17-7.65%2C4.21-12.33h-4.8c-.38%2C0-.7-.31-.7-.7v-2.07c0-.38.31-.7.7-.7h4.83V2.19c0-.38.31-.7.7-.7h1.93ZM92.09%2C4.19c.38%2C0%2C.7.31.7.7v2.01c0%2C.38-.31.7-.7.7h-3.36c-.3.5-.69%2C1.05-1.11%2C1.68-1.43%2C2.11-3.39%2C4.99-3.76%2C7.91-.24%2C1.91.08%2C3.42.92%2C4.38.73.83%2C1.85%2C1.24%2C3.32%2C1.24.27%2C0%2C1-.03%2C1.82-.12.2-.02.4.05.54.17.15.14.23.33.23.52v2.01c0%2C.37-.28.67-.65.7-.92.07-1.57.09-1.98.09-2.47%2C0-4.46-.78-5.77-2.26-1.48-1.66-2.07-4.18-1.71-7.26.41-3.33%2C2.04-5.76%2C4.31-9.1l-8.79.02c-.16-.03-.36-.06-.5-.2-.14-.14-.21-.32-.21-.5v-2.01c0-.38.31-.7.7-.7h16.02ZM126.55%2C1.22l1.78.49c.36.1.58.48.49.85-.08.31-.2.83-.34%2C1.45-.07.31-.14.64-.22%2C1h2.41c.38%2C0%2C.7.31.7.7v2.04c0%2C.38-.32.7-.7.7h0s-3.29.01-3.29.01c-1.18%2C4.53-2.76%2C8.99-4.71%2C13.29-.08.19-.24.32-.44.38-.07.02-.13.02-.2.02-.13%2C0-.27-.03-.38-.12l-1.63-1.08c-.29-.2-.39-.57-.24-.88%2C1.66-3.59%2C3.09-7.5%2C4.23-11.63h-2.15c-.38%2C0-.7-.31-.7-.7v-2.04c0-.38.31-.7.7-.7h3.09c.12-.5.22-.97.32-1.41.17-.78.33-1.44.44-1.89.05-.17.16-.34.33-.43.16-.09.35-.12.54-.07ZM184.13%2C12.36c.38%2C0%2C.7.31.7.7v2.22c0%2C.39-.31.7-.7.7h-18.3c-.38%2C0-.7-.31-.7-.7v-2.22c0-.39.31-.7.7-.7h18.3ZM202.63%2C3.09c.38%2C0%2C.7.31.7.7v2.19c0%2C.39-.31.7-.7.7h-10.78c-.38%2C0-.7-.31-.7-.7v-2.19c0-.39.31-.7.7-.7h10.78Z%22%2F%3E%3C%2Fsvg%3E");
}
@media (max-width: 768px) {
  .logo span {
    width: 44vw;
  }
}

.credit span {
  width: 12rem;
  background-color: #555555;
  aspect-ratio: 1/0.0667;
  -webkit-mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%20195%2013%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M55.75%2C2.13c.66%2C0%2C.66.5.66.99v.49h2.56c.45%2C0%2C1%2C0%2C1%2C.56s-.55.56-1%2C.56h-2.56v1.81h2.99c.45%2C0%2C1%2C.03%2C1%2C.57%2C0%2C.54-.55.56-1%2C.56h-3.34l-1.76%2C3.51s3.36-.2%2C4.05-.32c0-.01-.42-.74-.71-1.12-.28-.37-.44-.8-.1-1.01.47-.31.95-.11%2C1.18.31l1.73%2C2.97c.19.31.13.7-.28.91-.47.24-.74-.03-.96-.43%2C0-.02-.22-.44-.27-.52-2.45.25-5.18.36-6.04.44-1.08.09-1.62.14-1.65-.42-.04-.67.34-.61%2C1.62-.73l1.88-3.59h-1.84c-.6%2C0-.99-.03-.99-.57%2C0-.54.41-.56.99-.56h2.28v-1.81h-1.96c-.58%2C0-1%2C0-1-.56s.4-.56%2C1-.56h1.96v-.49c0-.45-.12-.99.54-.99ZM27.35%2C2.19c.59%2C0%2C.6.53.6.93v.99h1.23c.41%2C0%2C.8.31.8.72%2C0%2C.48-.91%2C1.81-1.57%2C2.59%2C0%2C0%2C.98.69%2C1.64%2C1.16.55.4.86.73.58%2C1.04-.34.4-.85.1-1.21-.15-.46-.33-1.55-1.06-1.55-1.06v3.53c0%2C.44.01.94-.65.94-.59%2C0-.6-.43-.6-.94v-3.06c-.43.29-.73.55-1.03.69-.36.17-.91.42-1.22-.08-.39-.61%2C1.03-1.15%2C1.85-1.8.82-.65%2C1.73-1.45%2C2.22-2.24.05-.08.13-.23.13-.23h-2.86c-.46%2C0-1%2C.03-1-.54%2C0-.57.54-.57%2C1-.57h1.06v-.99c0-.41%2C0-.93.59-.93ZM51.41%2C8.05c.55%2C0%2C.69.19.71.51.01.22-.25.86-.58%2C1.53l-.3.55c-.31.55-.64%2C1.07-.82%2C1.34-.54.77-.76.9-1.04.9-.28%2C0-.61-.21-.61-.57%2C0-.17.02-.26.26-.57.43-.57%2C1.41-1.96%2C1.81-3.08.06-.17.19-.61.58-.61ZM101.2%2C0c.51%2C0%2C.81.42.81.75v1.12h5.29c.2%2C0%2C.63.18.63.67%2C0%2C.56-.44.7-.63.7h-5.13c.07.23%2C2.17%2C2.42%2C2.68%2C2.86.84.75%2C2.83%2C2.24%2C3.01%2C2.38.47.35.61.81.25%2C1.16-.38.36-.96.18-1.4-.14-.47-.34-1.85-1.53-2.45-2.1-.26-.25-1.99-1.92-2.24-2.25v3.77h2.65c.34%2C0%2C.65.29.65.71%2C0%2C.42-.3.7-.65.7h-2.65v1.91c0%2C.34-.31.64-.82.64-.51%2C0-.81-.3-.81-.64v-1.91h-2.56c-.33%2C0-.73-.26-.73-.7%2C0-.44.4-.71.73-.71h2.56v-3.77c-.28.34-1.61%2C1.7-2.22%2C2.34-.6.63-1.92%2C1.59-2.39%2C2.02-.45.41-1.21.42-1.45.16-.39-.42-.14-.9.27-1.17.94-.66%2C2.44-1.81%2C3.09-2.37%2C1.2-1.03%2C2.45-2.67%2C2.45-2.89h-4.94c-.23%2C0-.73-.19-.73-.7%2C0-.54.52-.67.73-.67h5.18V.75c0-.3.26-.75.82-.75ZM15.61%2C4.68c.42%2C0%2C.52.36.59.62l.06.23c.08.3.17.63.17.82%2C0%2C.24-.18.49-.53.49h-.12c-.26-.04-.36-.24-.44-.57-.08-.35-.24-1.03-.24-1.17%2C0-.17.18-.41.5-.41ZM15.64%2C2.11c.12%2C0%2C.58.07.58.44%2C0%2C.14-.09.42-.14.62v.04h1.17c.36%2C0%2C.68.34.68.71v3.17h.18c.28%2C0%2C.56.04.66.36.22-.2.33-.2.88-.2h3.53c.72%2C0%2C.78.72.78.94%2C0%2C.67-.53%2C1.85-1.54%2C2.83.45.32.98.54%2C1.33.65.43.13.58.28.58.57%2C0%2C.27-.23.56-.55.56h-.11c-.63-.07-1.68-.7-2.16-1.03-1.1.67-2.36%2C1.03-2.64%2C1.03-.28%2C0-.57-.23-.57-.6%2C0-.32.18-.43.78-.6.43-.12%2C1.06-.38%2C1.51-.63-1.14-1.25-1.25-2.1-1.32-2.66-.17-.02-.38-.04-.53-.32-.2.19-.28.21-.78.22v3.74c-.01.72-.71.87-1.29.87-.51%2C0-1.17-.12-1.42-.21-.15-.06-.38-.16-.38-.47%2C0-.31.28-.52.55-.52.1%2C0%2C.36.03.6.07.24.03.45.06.53.06.33%2C0%2C.33-.24.33-.44v-3.03h-.64v1.47c0%2C.38%2C0%2C.89-.51.89-.51%2C0-.5-.54-.5-.89v-1.42h-.65c-.01%2C1.28-.09%2C2.36-.46%2C3.52-.17.55-.34.97-.83.97-.18%2C0-.57-.1-.57-.41%2C0-.17.22-.73.36-1.09.05-.14.1-.25.11-.31.32-1.14.32-1.82.32-2.61-.12%2C0-.29-.01-.45-.09-.18-.09-.27-.26-.27-.5%2C0-.54.49-.54.7-.54v-3.27c.01-.31.22-.8.75-.8h.58l.15-.36c.26-.64.31-.74.66-.74ZM20.34%2C8.29c.15.72.39%2C1.27%2C1.17%2C2.02.34-.32%2C1.1-1.11%2C1.1-1.82%2C0-.18-.19-.2-.37-.2h-1.91ZM14.92%2C4.28c-.19%2C0-.32.03-.32.41v2.53l2.29-.08v-2.47c0-.31-.06-.4-.36-.4h-1.62ZM144.66.04c.71%2C0%2C.73.73.73.88v.2h4.6c.51%2C0%2C1.16%2C0%2C1.16.66s-.66.61-1.16.61h-4.6v.76h3.71c1.1%2C0%2C1.32.56%2C1.32%2C1.02v3.51c0%2C.54-.29%2C1.18-1.32%2C1.18h-3.71v.81h5.03c.51%2C0%2C1.16%2C0%2C1.16.64s-.66.64-1.16.64h-5.03v.74c0%2C.53%2C0%2C1.1-.73%2C1.1-.73%2C0-.71-.58-.71-1.1v-.74h-5.02c-.51%2C0-1.16%2C0-1.16-.64s.66-.64%2C1.16-.64h5.02v-.81h-3.65c-1.09%2C0-1.32-.71-1.32-1.18v-3.51c0-.53.29-1.02%2C1.32-1.02h3.65v-.76h-4.63c-.51%2C0-1.16.03-1.16-.61s.66-.66%2C1.16-.66h4.63c0-.42%2C0-1.07.71-1.07ZM140.34%2C7.33c0%2C.29.22.36.43.36h3.18v-1.16h-3.61v.81ZM145.39%2C7.69h3.24c.21%2C0%2C.43-.07.43-.36v-.81h-3.67v1.16ZM145.4%2C5.41h3.67v-.78c0-.29-.22-.36-.43-.36h-3.24v1.13ZM140.77%2C4.27c-.22%2C0-.43.07-.43.36v.77h3.61v-1.12h-3.18ZM66.62%2C1.94c.45%2C0%2C.71.21.71.74v.65c0%2C1.59.39%2C2.99%2C1.78%2C5.1.68%2C1.03%2C1.54%2C1.87%2C2.83%2C2.83.42.32.69.51.69.85%2C0%2C.34-.4.73-.9.6-.51-.13-1.69-1.31-2.43-2.08-.99-1.03-2.26-2.99-2.67-4.27-.29%2C1.34-1.44%2C3.39-2.33%2C4.28l-.33.33c-.83.78-2.03%2C1.77-2.59%2C1.77s-.82-.45-.74-.77c.1-.4.25-.41.74-.7%2C1.45-.89%2C2.5-1.94%2C3.18-3.06%2C1.2-1.98%2C1.38-4.06%2C1.38-4.87v-.65c0-.54.24-.75.69-.75ZM32.96%2C2.2c.61%2C0%2C.61.47.61.93v1h1.3c.47%2C0%2C1%2C0%2C1%2C.57%2C0%2C.57-.53.57-1%2C.57h-1.3v6.27h1.93c.47%2C0%2C1%2C0%2C1%2C.58%2C0%2C.58-.53.58-1%2C.58h-5.22c-.5%2C0-1%2C0-1-.58%2C0-.58.52-.58%2C1-.58h2.02v-6.27h-1.22c-.46%2C0-1.03%2C0-1.03-.57%2C0-.57.56-.57%2C1.03-.57h1.22v-1c0-.51%2C0-.93.66-.93ZM44.27%2C3.75c.61%2C0%2C.6.51.6.93v.39h.74c.45%2C0%2C1.01.04%2C1.01.57%2C0%2C.53-.56.56-1.01.56h-.72v3.84c0%2C.61-.07%2C1.29-1.87%2C1.2-.39-.02-1.27-.1-1.93-.35-.23-.08-.41-.26-.41-.52%2C0-.32.28-.52.53-.52.11%2C0%2C1.43.28%2C1.69.3.33.03.51-.02.61-.11.17-.15.14-.41.14-.62v-3.23h-4.37c-.44%2C0-1%2C0-1-.54s.56-.59%2C1-.59h4.37v-.39c0-.42%2C0-.93.61-.93ZM40.71%2C6.58c.22.06.3.11.96%2C1.19.18.3.18.35.31.68.06.17.24.61-.33.81l-.09.02c-.51.12-.66-.34-.93-.88-.22-.44-.43-.64-.64-1.07-.08-.19-.06-.27-.03-.38.09-.29.45-.45.75-.37ZM47%2C2.58c.66%2C0%2C1.01.43%2C1.01.89v8.29c0%2C.48-.37.89-1.01.89h-9.02c-.66%2C0-1.01-.42-1.01-.89V3.47c0-.48.37-.89%2C1.01-.89h9.02ZM38.49%2C3.66c-.36%2C0-.36.29-.36.43v7.08c0%2C.31.08.4.36.4h7.79c.36%2C0%2C.56-.06.56-.39v-7.1c0-.33-.08-.42-.31-.42h-8.03ZM133.56.46c.7%2C0%2C.6.58.6%2C1.07v1.31h1.45c.2%2C0%2C.71.01.97.62.15.34.09%2C2.33.09%2C2.88%2C0%2C.46-.14%2C3.66-.47%2C4.77-.17.61-.53%2C1.42-2.01%2C1.32-1.04-.07-1.82-.45-1.55-1.07.31-.72%2C1.2-.1%2C1.59-.13.47-.03.5-.33.61-.71.54-1.76.53-4.17.53-5.18s0-1.11-.1-1.23c-.08-.1-.17-.1-.4-.1h-.71c-.09.79-.15%2C1.58-.26%2C2.28-.25%2C1.59-.66%2C2.88-1.07%2C3.95-.11.28-.41.97-1.1%2C1.93-.32.45-.62.54-1.12.29-.5-.26-.18-.82.14-1.29.89-1.32%2C1.73-3%2C2.09-7.15h-.48c-.53.01-1.26.01-1.26-.64s.9-.54%2C1.43-.54h.32v-1.31c0-.49%2C0-1.07.7-1.07ZM91.07.69c.11%2C0%2C.22.01.33.03.23.04.43.07.62.17.19.1.36.24.46.42.11.18.15.31.18.51.03.2.04.42.04.63v8.42c0%2C.17%2C0%2C.25-.02.48-.01.23-.04.4-.15.59-.11.19-.27.33-.47.41-.22.09-.43.14-.66.17-.23.03-.44.04-.67.04h-7.84c-.27%2C0-.54-.04-.81-.1-.26-.07-.49-.19-.7-.36-.2-.17-.27-.34-.33-.6-.06-.25-.1-.38-.1-.63V2.46c0-.2.01-.42.04-.62.03-.2.03-.34.14-.51.11-.18.26-.32.45-.42.19-.1.4-.14.62-.18.23-.04.43-.03.64-.03h3.86v-.02h4.35ZM82.53%2C10.67c0%2C.08.01.17.05.25.03.08.09.14.18.17.09.03.17.04.27.04h7.54c.11%2C0%2C.2-.01.31-.03.11-.02.18-.07.23-.15.04-.08.08-.21.08-.38v-3.4h-.01s-8.65%2C0-8.65%2C0v3.51ZM83.03%2C2.09c-.06%2C0-.13%2C0-.19.02-.06%2C0-.13.03-.17.08-.04.04-.08.1-.1.15-.02.06-.03.12-.03.18v3.28h8.65v-3.22c0-.08-.01-.17-.03-.25-.02-.08-.08-.14-.15-.18-.08-.04-.16-.06-.26-.06h-7.71ZM174.71.1c.7%2C0%2C.69.62.69%2C1.13v.87h.79s.26-.47.67-1.2c.32-.59.73-.66%2C1.08-.51.28.12.35.54.22.83-.12.29-.5.85-.52.88h1.54c.53%2C0%2C1.15%2C0%2C1.15.61s-.62.61-1.15.61h-2.52c-.06.14%2C0%2C.09-.37.85h2.34v.02c.5%2C0%2C1.14.02%2C1.14.58s-.65.6-1.14.6h-4.41v.54h4.18c.5%2C0%2C1.15%2C0%2C1.15.59s-.67.58-1.15.58h-4.18v.52h4.84c.59%2C0%2C1.16%2C0%2C1.16.6s-.57.62-1.16.62h-4.17c.5.57%2C3.11%2C1.54%2C3.21%2C1.58%2C1.14.53%2C2.47.49%2C2.16%2C1.45-.23.72-1.5.28-2.51-.15-1.4-.59-3.51-1.85-3.54-1.87v1.49c0%2C.55.03%2C1.21-.65%2C1.21-.71%2C0-.68-.67-.68-1.21v-1.49s-2.44%2C1.32-3.6%2C1.86c-.85.41-2.19.68-2.38.19-.37-.9.45-.92%2C2.1-1.47.15-.05%2C2.91-1.17%2C3.23-1.59h-4.17c-.59%2C0-1.16-.03-1.15-.62%2C0-.6.55-.6%2C1.15-.6h4.81v-.52h-4.04c-.5%2C0-1.15%2C0-1.15-.6s.67-.58%2C1.15-.58h4.04v-.54h-4.38c-.51%2C0-1.15-.03-1.15-.6s.65-.58%2C1.15-.58h2.32c-.29-.57-.26-.51-.43-.84h-2.47c-.54%2C0-1.15%2C0-1.15-.61s.61-.61%2C1.15-.61h1.65c-.17-.25-.55-.78-.66-.96-.17-.31-.13-.64.18-.82.38-.21.9.09%2C1.05.35.26.43.45.67.59.92.12.22.07.49.07.49h.91v-.9c0-.49%2C0-1.07.67-1.07.71%2C0%2C.73.57.73%2C1.07v.91h.91v-.87c0-.53%2C0-1.13.7-1.13ZM172.23%2C4.18h2.64c.12-.3.24-.52.37-.84h-3.36c.12.29.25.61.36.84ZM129.79.47c.41%2C0%2C.67.24.67.57%2C0%2C.53-.38.63-2.47.75v.53l.03-.03h1.91c.46%2C0%2C1.13.03%2C1.13.6s-.67.6-1.13.6h-1.91v.5h1.94c.58%2C0%2C1.02.3%2C1.02.9v2.75c0%2C.59-.42.9-1.02.91h-1.94v.7h1.74c.5%2C0%2C1.06%2C0%2C1.06.59s-.56.54-1.06.54h-1.74v.65c.39-.04.61-.09.83-.13.43-.08.86-.18%2C1-.18.4%2C0%2C.67.24.67.56%2C0%2C.53-.84.62-1.73.75-.7.11-2.65.37-4.37.48-.28.02-.94.12-.94-.55%2C0-.26.2-.63.62-.63.12%2C0%2C2.34-.17%2C2.67-.19v-.76h-2.21c-.39-.01-.76-.09-.76-.54%2C0-.6.66-.59%2C1.15-.59h1.82v-.7h-1.98c-.59%2C0-1.03-.3-1.03-.91v-2.75c0-.59.43-.9%2C1.03-.9h1.98v-.5h-2.4c-.48%2C0-1.15-.03-1.15-.6s.67-.6%2C1.15-.6h2.4v-.47c-.43%2C0-2.21.04-2.54%2C0-.32-.04-.44-.27-.44-.52%2C0-.56.59-.52.78-.52%2C1.32%2C0%2C2.39.02%2C3.66-.1.25-.03%2C1.35-.2%2C1.56-.2ZM124.95%2C7.3c0%2C.05.21.24.48.24h1.36v-.81h-1.84v.57ZM128.02%2C7.54h1.45c.28%2C0%2C.32-.19.32-.24v-.57h-1.78v.81ZM125.43%2C4.95c-.28%2C0-.48.2-.48.26v.53h1.84v-.79h-1.36ZM128.02%2C5.74h1.78v-.53c0-.05-.04-.26-.32-.26h-1.45v.79ZM193.48%2C6.43c.48%2C0%2C1.16%2C0%2C1.16.66s-.69.65-1.16.65h-6.6s-.73%2C1.3-.98%2C1.71c-.19.33-.69%2C1.18-.7%2C1.2.03%2C0%2C3.97-.25%2C6.32-.46-.13-.15-.99-1-1.1-1.12-.22-.24-.45-.67-.11-.96.34-.3.75-.18%2C1.03%2C0%2C.3.21.8.75%2C1.38%2C1.43.53.61%2C1.67%2C1.83%2C1.67%2C2.24%2C0%2C.46-.38.68-.64.68-.38%2C0-.64-.22-.69-.32-.08-.1-.53-.64-.6-.73-1.41.2-9.44.8-10.33.81-.25%2C0-.8.02-.86-.62-.03-.38.3-.61.51-.68.16-.04%2C1.48-.16%2C1.48-.16.01-.02.66-.86%2C1.18-1.66.57-.9.72-1.39.72-1.39h-2.88l.02.03c-.48%2C0-1.16%2C0-1.16-.65s.69-.66%2C1.16-.66h11.17ZM114.91.49c.17-.32.59-.51%2C1.09-.28.43.2.34.59.24.89-.05.16-.1.29-.15.48h4.01c.28.01.55.05.81.14.27.09.46.25.6.48.13.23.19.48.19.73%2C0%2C2.7%2C0%2C5.4%2C0%2C8.1-.02.38-.07.66-.31.91-.22.22-.56.34-1.51.34h.02s0%2C0-.02%2C0h-8.38c-.81%2C0-1.23-.12-1.46-.34-.26-.24-.33-.57-.33-1.31V3.16c0-.21.02-.43.08-.66.04-.23.16-.42.32-.58.17-.16.38-.26.61-.3.24-.04.48-.06.71-.06h3.02c.1-.2.37-.88.46-1.08ZM111.17%2C10.45c0%2C.08%2C0%2C.17.03.25.02.08.07.14.17.16.09.02.18.03.27.03h8.12c.1%2C0%2C.18%2C0%2C.27-.03.09-.02.15-.07.17-.16.02-.09.03-.17.03-.25v-1.35h-9.07v1.35ZM111.17%2C7.69h9.08v-1.73h-9.08v1.73ZM111.65%2C2.93c-.09%2C0-.18.01-.27.03-.1.02-.15.08-.17.16-.02.09-.03.17-.03.25v1.16h9.07v-1.04c0-.08%2C0-.29-.03-.37-.02-.09-.09-.14-.17-.16-.09-.02-.18-.03-.27-.03h-8.12ZM164.43.85c.48%2C0%2C.82.42.82.74%2C0%2C.45-.39.76-.82.76h-4.54%2C0v8.05h5.13c.48%2C0%2C.87.27.87.75s-.37.75-.88.75h-11.96c-.37%2C0-.9-.18-.9-.75s.55-.75.9-.75h5.08V2.35h-4.56c-.38%2C0-.81-.36-.81-.75%2C0-.48.44-.76.81-.76h10.85ZM10.73%2C6.46c.72%2C0%2C.72.58.72.64%2C0%2C.39-.29.63-.72.63H.72C0%2C7.73%2C0%2C7.15%2C0%2C7.09c0-.39.29-.63.72-.63h10ZM49.58%2C5.28c.25%2C0%2C.78.32%2C1.19.62.52.37%2C1.02.72%2C1%2C1.02-.02.3-.15.58-.57.59-.17%2C0-.3%2C0-.88-.47-.17-.14-.71-.48-.86-.57-.14-.08-.41-.19-.51-.46-.12-.39.26-.76.64-.74ZM22.09%2C2.45c.33%2C0%2C.69.23.69.67v2.42c0%2C.17.04.28.24.28.23%2C0%2C.32-.05.38-.56.05-.46.1-.84.55-.84.18%2C0%2C.56.14.56.58%2C0%2C.35-.18%2C1.09-.38%2C1.43-.16.3-.53.45-1.12.45h-.33c-.68-.06-.99-.28-.99-.7v-2.37c0-.31-.03-.37-.32-.37h-.84c-.26%2C0-.38.1-.38.3v.04c-.04%2C1.08-.07%2C2.02-.67%2C2.73-.18.23-.32.33-.6.33-.48%2C0-.51-.4-.51-.44%2C0-.14.06-.31.24-.59.38-.61.41-.77.42-1.89%2C0-.38.03-.93.07-1.07.02-.12.24-.41.6-.41h2.39ZM190.77%2C3.95c.53%2C0%2C1.16%2C0%2C1.16.68s-.65.68-1.16.68h-5.56c-.53%2C0-1.16%2C0-1.16-.68s.65-.68%2C1.16-.68h5.56ZM188%2C.04c.73%2C0%2C1.24.51%2C2.08%2C1.19l.29.2c.29.21.63.42%2C1.01.68%2C1.24.82%2C1.92.92%2C3.06%2C1.46.26.12.56.36.56.7%2C0%2C.1-.08.72-.73.72-.28%2C0-1.16-.32-2.13-.84-1.34-.71-2.86-1.73-3.47-2.32-.14-.14-.38-.41-.67-.41-.23%2C0-.43.21-.65.41-1.26%2C1.15-2.62%2C1.9-4.61%2C2.91-.44.23-.69.32-1.05.39-.45.09-.74-.4-.72-.76.02-.46.26-.59%2C1.46-1.03.25-.09.66-.3%2C2.19-1.16.25-.15.8-.55%2C1.31-.96.68-.55%2C1.16-1.18%2C2.07-1.18ZM49.98%2C2.47c.25%2C0%2C.68.31%2C1.1.6l.37.29c.35.28.63.55.61.78-.02.3-.33.55-.65.56-.17%2C0-.46-.19-.81-.45-.18-.13-.71-.48-.86-.6-.13-.09-.33-.18-.42-.46-.12-.39.28-.74.66-.72Z%22%2F%3E%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%20195%2013%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M55.75%2C2.13c.66%2C0%2C.66.5.66.99v.49h2.56c.45%2C0%2C1%2C0%2C1%2C.56s-.55.56-1%2C.56h-2.56v1.81h2.99c.45%2C0%2C1%2C.03%2C1%2C.57%2C0%2C.54-.55.56-1%2C.56h-3.34l-1.76%2C3.51s3.36-.2%2C4.05-.32c0-.01-.42-.74-.71-1.12-.28-.37-.44-.8-.1-1.01.47-.31.95-.11%2C1.18.31l1.73%2C2.97c.19.31.13.7-.28.91-.47.24-.74-.03-.96-.43%2C0-.02-.22-.44-.27-.52-2.45.25-5.18.36-6.04.44-1.08.09-1.62.14-1.65-.42-.04-.67.34-.61%2C1.62-.73l1.88-3.59h-1.84c-.6%2C0-.99-.03-.99-.57%2C0-.54.41-.56.99-.56h2.28v-1.81h-1.96c-.58%2C0-1%2C0-1-.56s.4-.56%2C1-.56h1.96v-.49c0-.45-.12-.99.54-.99ZM27.35%2C2.19c.59%2C0%2C.6.53.6.93v.99h1.23c.41%2C0%2C.8.31.8.72%2C0%2C.48-.91%2C1.81-1.57%2C2.59%2C0%2C0%2C.98.69%2C1.64%2C1.16.55.4.86.73.58%2C1.04-.34.4-.85.1-1.21-.15-.46-.33-1.55-1.06-1.55-1.06v3.53c0%2C.44.01.94-.65.94-.59%2C0-.6-.43-.6-.94v-3.06c-.43.29-.73.55-1.03.69-.36.17-.91.42-1.22-.08-.39-.61%2C1.03-1.15%2C1.85-1.8.82-.65%2C1.73-1.45%2C2.22-2.24.05-.08.13-.23.13-.23h-2.86c-.46%2C0-1%2C.03-1-.54%2C0-.57.54-.57%2C1-.57h1.06v-.99c0-.41%2C0-.93.59-.93ZM51.41%2C8.05c.55%2C0%2C.69.19.71.51.01.22-.25.86-.58%2C1.53l-.3.55c-.31.55-.64%2C1.07-.82%2C1.34-.54.77-.76.9-1.04.9-.28%2C0-.61-.21-.61-.57%2C0-.17.02-.26.26-.57.43-.57%2C1.41-1.96%2C1.81-3.08.06-.17.19-.61.58-.61ZM101.2%2C0c.51%2C0%2C.81.42.81.75v1.12h5.29c.2%2C0%2C.63.18.63.67%2C0%2C.56-.44.7-.63.7h-5.13c.07.23%2C2.17%2C2.42%2C2.68%2C2.86.84.75%2C2.83%2C2.24%2C3.01%2C2.38.47.35.61.81.25%2C1.16-.38.36-.96.18-1.4-.14-.47-.34-1.85-1.53-2.45-2.1-.26-.25-1.99-1.92-2.24-2.25v3.77h2.65c.34%2C0%2C.65.29.65.71%2C0%2C.42-.3.7-.65.7h-2.65v1.91c0%2C.34-.31.64-.82.64-.51%2C0-.81-.3-.81-.64v-1.91h-2.56c-.33%2C0-.73-.26-.73-.7%2C0-.44.4-.71.73-.71h2.56v-3.77c-.28.34-1.61%2C1.7-2.22%2C2.34-.6.63-1.92%2C1.59-2.39%2C2.02-.45.41-1.21.42-1.45.16-.39-.42-.14-.9.27-1.17.94-.66%2C2.44-1.81%2C3.09-2.37%2C1.2-1.03%2C2.45-2.67%2C2.45-2.89h-4.94c-.23%2C0-.73-.19-.73-.7%2C0-.54.52-.67.73-.67h5.18V.75c0-.3.26-.75.82-.75ZM15.61%2C4.68c.42%2C0%2C.52.36.59.62l.06.23c.08.3.17.63.17.82%2C0%2C.24-.18.49-.53.49h-.12c-.26-.04-.36-.24-.44-.57-.08-.35-.24-1.03-.24-1.17%2C0-.17.18-.41.5-.41ZM15.64%2C2.11c.12%2C0%2C.58.07.58.44%2C0%2C.14-.09.42-.14.62v.04h1.17c.36%2C0%2C.68.34.68.71v3.17h.18c.28%2C0%2C.56.04.66.36.22-.2.33-.2.88-.2h3.53c.72%2C0%2C.78.72.78.94%2C0%2C.67-.53%2C1.85-1.54%2C2.83.45.32.98.54%2C1.33.65.43.13.58.28.58.57%2C0%2C.27-.23.56-.55.56h-.11c-.63-.07-1.68-.7-2.16-1.03-1.1.67-2.36%2C1.03-2.64%2C1.03-.28%2C0-.57-.23-.57-.6%2C0-.32.18-.43.78-.6.43-.12%2C1.06-.38%2C1.51-.63-1.14-1.25-1.25-2.1-1.32-2.66-.17-.02-.38-.04-.53-.32-.2.19-.28.21-.78.22v3.74c-.01.72-.71.87-1.29.87-.51%2C0-1.17-.12-1.42-.21-.15-.06-.38-.16-.38-.47%2C0-.31.28-.52.55-.52.1%2C0%2C.36.03.6.07.24.03.45.06.53.06.33%2C0%2C.33-.24.33-.44v-3.03h-.64v1.47c0%2C.38%2C0%2C.89-.51.89-.51%2C0-.5-.54-.5-.89v-1.42h-.65c-.01%2C1.28-.09%2C2.36-.46%2C3.52-.17.55-.34.97-.83.97-.18%2C0-.57-.1-.57-.41%2C0-.17.22-.73.36-1.09.05-.14.1-.25.11-.31.32-1.14.32-1.82.32-2.61-.12%2C0-.29-.01-.45-.09-.18-.09-.27-.26-.27-.5%2C0-.54.49-.54.7-.54v-3.27c.01-.31.22-.8.75-.8h.58l.15-.36c.26-.64.31-.74.66-.74ZM20.34%2C8.29c.15.72.39%2C1.27%2C1.17%2C2.02.34-.32%2C1.1-1.11%2C1.1-1.82%2C0-.18-.19-.2-.37-.2h-1.91ZM14.92%2C4.28c-.19%2C0-.32.03-.32.41v2.53l2.29-.08v-2.47c0-.31-.06-.4-.36-.4h-1.62ZM144.66.04c.71%2C0%2C.73.73.73.88v.2h4.6c.51%2C0%2C1.16%2C0%2C1.16.66s-.66.61-1.16.61h-4.6v.76h3.71c1.1%2C0%2C1.32.56%2C1.32%2C1.02v3.51c0%2C.54-.29%2C1.18-1.32%2C1.18h-3.71v.81h5.03c.51%2C0%2C1.16%2C0%2C1.16.64s-.66.64-1.16.64h-5.03v.74c0%2C.53%2C0%2C1.1-.73%2C1.1-.73%2C0-.71-.58-.71-1.1v-.74h-5.02c-.51%2C0-1.16%2C0-1.16-.64s.66-.64%2C1.16-.64h5.02v-.81h-3.65c-1.09%2C0-1.32-.71-1.32-1.18v-3.51c0-.53.29-1.02%2C1.32-1.02h3.65v-.76h-4.63c-.51%2C0-1.16.03-1.16-.61s.66-.66%2C1.16-.66h4.63c0-.42%2C0-1.07.71-1.07ZM140.34%2C7.33c0%2C.29.22.36.43.36h3.18v-1.16h-3.61v.81ZM145.39%2C7.69h3.24c.21%2C0%2C.43-.07.43-.36v-.81h-3.67v1.16ZM145.4%2C5.41h3.67v-.78c0-.29-.22-.36-.43-.36h-3.24v1.13ZM140.77%2C4.27c-.22%2C0-.43.07-.43.36v.77h3.61v-1.12h-3.18ZM66.62%2C1.94c.45%2C0%2C.71.21.71.74v.65c0%2C1.59.39%2C2.99%2C1.78%2C5.1.68%2C1.03%2C1.54%2C1.87%2C2.83%2C2.83.42.32.69.51.69.85%2C0%2C.34-.4.73-.9.6-.51-.13-1.69-1.31-2.43-2.08-.99-1.03-2.26-2.99-2.67-4.27-.29%2C1.34-1.44%2C3.39-2.33%2C4.28l-.33.33c-.83.78-2.03%2C1.77-2.59%2C1.77s-.82-.45-.74-.77c.1-.4.25-.41.74-.7%2C1.45-.89%2C2.5-1.94%2C3.18-3.06%2C1.2-1.98%2C1.38-4.06%2C1.38-4.87v-.65c0-.54.24-.75.69-.75ZM32.96%2C2.2c.61%2C0%2C.61.47.61.93v1h1.3c.47%2C0%2C1%2C0%2C1%2C.57%2C0%2C.57-.53.57-1%2C.57h-1.3v6.27h1.93c.47%2C0%2C1%2C0%2C1%2C.58%2C0%2C.58-.53.58-1%2C.58h-5.22c-.5%2C0-1%2C0-1-.58%2C0-.58.52-.58%2C1-.58h2.02v-6.27h-1.22c-.46%2C0-1.03%2C0-1.03-.57%2C0-.57.56-.57%2C1.03-.57h1.22v-1c0-.51%2C0-.93.66-.93ZM44.27%2C3.75c.61%2C0%2C.6.51.6.93v.39h.74c.45%2C0%2C1.01.04%2C1.01.57%2C0%2C.53-.56.56-1.01.56h-.72v3.84c0%2C.61-.07%2C1.29-1.87%2C1.2-.39-.02-1.27-.1-1.93-.35-.23-.08-.41-.26-.41-.52%2C0-.32.28-.52.53-.52.11%2C0%2C1.43.28%2C1.69.3.33.03.51-.02.61-.11.17-.15.14-.41.14-.62v-3.23h-4.37c-.44%2C0-1%2C0-1-.54s.56-.59%2C1-.59h4.37v-.39c0-.42%2C0-.93.61-.93ZM40.71%2C6.58c.22.06.3.11.96%2C1.19.18.3.18.35.31.68.06.17.24.61-.33.81l-.09.02c-.51.12-.66-.34-.93-.88-.22-.44-.43-.64-.64-1.07-.08-.19-.06-.27-.03-.38.09-.29.45-.45.75-.37ZM47%2C2.58c.66%2C0%2C1.01.43%2C1.01.89v8.29c0%2C.48-.37.89-1.01.89h-9.02c-.66%2C0-1.01-.42-1.01-.89V3.47c0-.48.37-.89%2C1.01-.89h9.02ZM38.49%2C3.66c-.36%2C0-.36.29-.36.43v7.08c0%2C.31.08.4.36.4h7.79c.36%2C0%2C.56-.06.56-.39v-7.1c0-.33-.08-.42-.31-.42h-8.03ZM133.56.46c.7%2C0%2C.6.58.6%2C1.07v1.31h1.45c.2%2C0%2C.71.01.97.62.15.34.09%2C2.33.09%2C2.88%2C0%2C.46-.14%2C3.66-.47%2C4.77-.17.61-.53%2C1.42-2.01%2C1.32-1.04-.07-1.82-.45-1.55-1.07.31-.72%2C1.2-.1%2C1.59-.13.47-.03.5-.33.61-.71.54-1.76.53-4.17.53-5.18s0-1.11-.1-1.23c-.08-.1-.17-.1-.4-.1h-.71c-.09.79-.15%2C1.58-.26%2C2.28-.25%2C1.59-.66%2C2.88-1.07%2C3.95-.11.28-.41.97-1.1%2C1.93-.32.45-.62.54-1.12.29-.5-.26-.18-.82.14-1.29.89-1.32%2C1.73-3%2C2.09-7.15h-.48c-.53.01-1.26.01-1.26-.64s.9-.54%2C1.43-.54h.32v-1.31c0-.49%2C0-1.07.7-1.07ZM91.07.69c.11%2C0%2C.22.01.33.03.23.04.43.07.62.17.19.1.36.24.46.42.11.18.15.31.18.51.03.2.04.42.04.63v8.42c0%2C.17%2C0%2C.25-.02.48-.01.23-.04.4-.15.59-.11.19-.27.33-.47.41-.22.09-.43.14-.66.17-.23.03-.44.04-.67.04h-7.84c-.27%2C0-.54-.04-.81-.1-.26-.07-.49-.19-.7-.36-.2-.17-.27-.34-.33-.6-.06-.25-.1-.38-.1-.63V2.46c0-.2.01-.42.04-.62.03-.2.03-.34.14-.51.11-.18.26-.32.45-.42.19-.1.4-.14.62-.18.23-.04.43-.03.64-.03h3.86v-.02h4.35ZM82.53%2C10.67c0%2C.08.01.17.05.25.03.08.09.14.18.17.09.03.17.04.27.04h7.54c.11%2C0%2C.2-.01.31-.03.11-.02.18-.07.23-.15.04-.08.08-.21.08-.38v-3.4h-.01s-8.65%2C0-8.65%2C0v3.51ZM83.03%2C2.09c-.06%2C0-.13%2C0-.19.02-.06%2C0-.13.03-.17.08-.04.04-.08.1-.1.15-.02.06-.03.12-.03.18v3.28h8.65v-3.22c0-.08-.01-.17-.03-.25-.02-.08-.08-.14-.15-.18-.08-.04-.16-.06-.26-.06h-7.71ZM174.71.1c.7%2C0%2C.69.62.69%2C1.13v.87h.79s.26-.47.67-1.2c.32-.59.73-.66%2C1.08-.51.28.12.35.54.22.83-.12.29-.5.85-.52.88h1.54c.53%2C0%2C1.15%2C0%2C1.15.61s-.62.61-1.15.61h-2.52c-.06.14%2C0%2C.09-.37.85h2.34v.02c.5%2C0%2C1.14.02%2C1.14.58s-.65.6-1.14.6h-4.41v.54h4.18c.5%2C0%2C1.15%2C0%2C1.15.59s-.67.58-1.15.58h-4.18v.52h4.84c.59%2C0%2C1.16%2C0%2C1.16.6s-.57.62-1.16.62h-4.17c.5.57%2C3.11%2C1.54%2C3.21%2C1.58%2C1.14.53%2C2.47.49%2C2.16%2C1.45-.23.72-1.5.28-2.51-.15-1.4-.59-3.51-1.85-3.54-1.87v1.49c0%2C.55.03%2C1.21-.65%2C1.21-.71%2C0-.68-.67-.68-1.21v-1.49s-2.44%2C1.32-3.6%2C1.86c-.85.41-2.19.68-2.38.19-.37-.9.45-.92%2C2.1-1.47.15-.05%2C2.91-1.17%2C3.23-1.59h-4.17c-.59%2C0-1.16-.03-1.15-.62%2C0-.6.55-.6%2C1.15-.6h4.81v-.52h-4.04c-.5%2C0-1.15%2C0-1.15-.6s.67-.58%2C1.15-.58h4.04v-.54h-4.38c-.51%2C0-1.15-.03-1.15-.6s.65-.58%2C1.15-.58h2.32c-.29-.57-.26-.51-.43-.84h-2.47c-.54%2C0-1.15%2C0-1.15-.61s.61-.61%2C1.15-.61h1.65c-.17-.25-.55-.78-.66-.96-.17-.31-.13-.64.18-.82.38-.21.9.09%2C1.05.35.26.43.45.67.59.92.12.22.07.49.07.49h.91v-.9c0-.49%2C0-1.07.67-1.07.71%2C0%2C.73.57.73%2C1.07v.91h.91v-.87c0-.53%2C0-1.13.7-1.13ZM172.23%2C4.18h2.64c.12-.3.24-.52.37-.84h-3.36c.12.29.25.61.36.84ZM129.79.47c.41%2C0%2C.67.24.67.57%2C0%2C.53-.38.63-2.47.75v.53l.03-.03h1.91c.46%2C0%2C1.13.03%2C1.13.6s-.67.6-1.13.6h-1.91v.5h1.94c.58%2C0%2C1.02.3%2C1.02.9v2.75c0%2C.59-.42.9-1.02.91h-1.94v.7h1.74c.5%2C0%2C1.06%2C0%2C1.06.59s-.56.54-1.06.54h-1.74v.65c.39-.04.61-.09.83-.13.43-.08.86-.18%2C1-.18.4%2C0%2C.67.24.67.56%2C0%2C.53-.84.62-1.73.75-.7.11-2.65.37-4.37.48-.28.02-.94.12-.94-.55%2C0-.26.2-.63.62-.63.12%2C0%2C2.34-.17%2C2.67-.19v-.76h-2.21c-.39-.01-.76-.09-.76-.54%2C0-.6.66-.59%2C1.15-.59h1.82v-.7h-1.98c-.59%2C0-1.03-.3-1.03-.91v-2.75c0-.59.43-.9%2C1.03-.9h1.98v-.5h-2.4c-.48%2C0-1.15-.03-1.15-.6s.67-.6%2C1.15-.6h2.4v-.47c-.43%2C0-2.21.04-2.54%2C0-.32-.04-.44-.27-.44-.52%2C0-.56.59-.52.78-.52%2C1.32%2C0%2C2.39.02%2C3.66-.1.25-.03%2C1.35-.2%2C1.56-.2ZM124.95%2C7.3c0%2C.05.21.24.48.24h1.36v-.81h-1.84v.57ZM128.02%2C7.54h1.45c.28%2C0%2C.32-.19.32-.24v-.57h-1.78v.81ZM125.43%2C4.95c-.28%2C0-.48.2-.48.26v.53h1.84v-.79h-1.36ZM128.02%2C5.74h1.78v-.53c0-.05-.04-.26-.32-.26h-1.45v.79ZM193.48%2C6.43c.48%2C0%2C1.16%2C0%2C1.16.66s-.69.65-1.16.65h-6.6s-.73%2C1.3-.98%2C1.71c-.19.33-.69%2C1.18-.7%2C1.2.03%2C0%2C3.97-.25%2C6.32-.46-.13-.15-.99-1-1.1-1.12-.22-.24-.45-.67-.11-.96.34-.3.75-.18%2C1.03%2C0%2C.3.21.8.75%2C1.38%2C1.43.53.61%2C1.67%2C1.83%2C1.67%2C2.24%2C0%2C.46-.38.68-.64.68-.38%2C0-.64-.22-.69-.32-.08-.1-.53-.64-.6-.73-1.41.2-9.44.8-10.33.81-.25%2C0-.8.02-.86-.62-.03-.38.3-.61.51-.68.16-.04%2C1.48-.16%2C1.48-.16.01-.02.66-.86%2C1.18-1.66.57-.9.72-1.39.72-1.39h-2.88l.02.03c-.48%2C0-1.16%2C0-1.16-.65s.69-.66%2C1.16-.66h11.17ZM114.91.49c.17-.32.59-.51%2C1.09-.28.43.2.34.59.24.89-.05.16-.1.29-.15.48h4.01c.28.01.55.05.81.14.27.09.46.25.6.48.13.23.19.48.19.73%2C0%2C2.7%2C0%2C5.4%2C0%2C8.1-.02.38-.07.66-.31.91-.22.22-.56.34-1.51.34h.02s0%2C0-.02%2C0h-8.38c-.81%2C0-1.23-.12-1.46-.34-.26-.24-.33-.57-.33-1.31V3.16c0-.21.02-.43.08-.66.04-.23.16-.42.32-.58.17-.16.38-.26.61-.3.24-.04.48-.06.71-.06h3.02c.1-.2.37-.88.46-1.08ZM111.17%2C10.45c0%2C.08%2C0%2C.17.03.25.02.08.07.14.17.16.09.02.18.03.27.03h8.12c.1%2C0%2C.18%2C0%2C.27-.03.09-.02.15-.07.17-.16.02-.09.03-.17.03-.25v-1.35h-9.07v1.35ZM111.17%2C7.69h9.08v-1.73h-9.08v1.73ZM111.65%2C2.93c-.09%2C0-.18.01-.27.03-.1.02-.15.08-.17.16-.02.09-.03.17-.03.25v1.16h9.07v-1.04c0-.08%2C0-.29-.03-.37-.02-.09-.09-.14-.17-.16-.09-.02-.18-.03-.27-.03h-8.12ZM164.43.85c.48%2C0%2C.82.42.82.74%2C0%2C.45-.39.76-.82.76h-4.54%2C0v8.05h5.13c.48%2C0%2C.87.27.87.75s-.37.75-.88.75h-11.96c-.37%2C0-.9-.18-.9-.75s.55-.75.9-.75h5.08V2.35h-4.56c-.38%2C0-.81-.36-.81-.75%2C0-.48.44-.76.81-.76h10.85ZM10.73%2C6.46c.72%2C0%2C.72.58.72.64%2C0%2C.39-.29.63-.72.63H.72C0%2C7.73%2C0%2C7.15%2C0%2C7.09c0-.39.29-.63.72-.63h10ZM49.58%2C5.28c.25%2C0%2C.78.32%2C1.19.62.52.37%2C1.02.72%2C1%2C1.02-.02.3-.15.58-.57.59-.17%2C0-.3%2C0-.88-.47-.17-.14-.71-.48-.86-.57-.14-.08-.41-.19-.51-.46-.12-.39.26-.76.64-.74ZM22.09%2C2.45c.33%2C0%2C.69.23.69.67v2.42c0%2C.17.04.28.24.28.23%2C0%2C.32-.05.38-.56.05-.46.1-.84.55-.84.18%2C0%2C.56.14.56.58%2C0%2C.35-.18%2C1.09-.38%2C1.43-.16.3-.53.45-1.12.45h-.33c-.68-.06-.99-.28-.99-.7v-2.37c0-.31-.03-.37-.32-.37h-.84c-.26%2C0-.38.1-.38.3v.04c-.04%2C1.08-.07%2C2.02-.67%2C2.73-.18.23-.32.33-.6.33-.48%2C0-.51-.4-.51-.44%2C0-.14.06-.31.24-.59.38-.61.41-.77.42-1.89%2C0-.38.03-.93.07-1.07.02-.12.24-.41.6-.41h2.39ZM190.77%2C3.95c.53%2C0%2C1.16%2C0%2C1.16.68s-.65.68-1.16.68h-5.56c-.53%2C0-1.16%2C0-1.16-.68s.65-.68%2C1.16-.68h5.56ZM188%2C.04c.73%2C0%2C1.24.51%2C2.08%2C1.19l.29.2c.29.21.63.42%2C1.01.68%2C1.24.82%2C1.92.92%2C3.06%2C1.46.26.12.56.36.56.7%2C0%2C.1-.08.72-.73.72-.28%2C0-1.16-.32-2.13-.84-1.34-.71-2.86-1.73-3.47-2.32-.14-.14-.38-.41-.67-.41-.23%2C0-.43.21-.65.41-1.26%2C1.15-2.62%2C1.9-4.61%2C2.91-.44.23-.69.32-1.05.39-.45.09-.74-.4-.72-.76.02-.46.26-.59%2C1.46-1.03.25-.09.66-.3%2C2.19-1.16.25-.15.8-.55%2C1.31-.96.68-.55%2C1.16-1.18%2C2.07-1.18ZM49.98%2C2.47c.25%2C0%2C.68.31%2C1.1.6l.37.29c.35.28.63.55.61.78-.02.3-.33.55-.65.56-.17%2C0-.46-.19-.81-.45-.18-.13-.71-.48-.86-.6-.13-.09-.33-.18-.42-.46-.12-.39.28-.74.66-.72Z%22%2F%3E%3C%2Fsvg%3E");
}
@media (max-width: 768px) {
  .credit span {
    width: 32vw;
  }
}

header.site-header {
  position: relative;
  z-index: 999;
  top: 0;
  right: 0;
  left: 0;
  padding: 1rem;
}
@media (max-width: 960px) {
  header.site-header {
    position: fixed;
    padding: 0.5rem;
  }
}
header.site-header.is_active .c-menu-trigger .a-menu-bar:nth-child(1) {
  -webkit-transform: translate(-2.6666666667vw, 0) rotate(-45deg);
          transform: translate(-2.6666666667vw, 0) rotate(-45deg);
}
header.site-header.is_active .c-menu-trigger .a-menu-bar:nth-child(2) {
  -webkit-transform: translate(-6.4vw, 0);
          transform: translate(-6.4vw, 0);
  opacity: 0;
}
header.site-header.is_active .c-menu-trigger .a-menu-bar:nth-child(3) {
  -webkit-transform: translate(-2.6666666667vw, 0) rotate(45deg);
          transform: translate(-2.6666666667vw, 0) rotate(45deg);
}
header.site-header .header-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.5rem;
}
@media (max-width: 960px) {
  header.site-header .header-inner {
    gap: 0;
  }
}
header.site-header .site-ID {
  line-height: 0;
}
header.site-header .site-ID .logo,
header.site-header .site-ID .credit {
  background-color: var(--white);
}
header.site-header.top {
  position: absolute;
  width: 100%;
}
@media (max-width: 1160px) {
  header.site-header.top {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  header.site-header.top {
    position: fixed;
    padding: 1.25rem;
  }
}
header.site-header.top .header-inner {
  padding: 2rem;
}
@media (max-width: 960px) {
  header.site-header.top .header-inner {
    padding-right: 1.5rem;
  }
}
@media (max-width: 768px) {
  header.site-header.top .header-inner {
    padding: 0;
  }
}
header.site-header.top .header-inner .site-ID {
  width: 100%;
}
@media (max-width: 960px) {
  header.site-header.top .header-inner .site-ID {
    width: auto;
  }
}
header.site-header.top .header-inner .site-ID .logo,
header.site-header.top .header-inner .site-ID .credit {
  -webkit-filter: drop-shadow(0 10px 24px rgba(15, 23, 42, 0.08));
          filter: drop-shadow(0 10px 24px rgba(15, 23, 42, 0.08));
}
header.site-header.sub {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
@media (max-width: 1160px) {
  header.site-header.sub {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  header.site-header.sub {
    padding: 1.25rem;
  }
}
header.site-header.sub .header-inner {
  padding: 0 1rem 0 1.5rem;
}
@media (max-width: 1160px) {
  header.site-header.sub .header-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 960px) {
  header.site-header.sub .header-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding-right: 1.5rem;
  }
}
@media (max-width: 768px) {
  header.site-header.sub .header-inner {
    padding: 0;
  }
}
header.site-header.sub .header-inner .site-ID .credit {
  position: absolute;
  top: 2rem;
  right: 2rem;
}
@media (max-width: 960px) {
  header.site-header.sub .header-inner .site-ID .credit {
    position: relative !important;
    top: 0.25rem !important;
    right: unset !important;
    display: inline-block !important;
  }
}

.c-menu-trigger {
  position: relative;
  display: none;
  place-content: center;
  border: none;
  background-color: #3a3a3a;
  padding: 0;
  border-radius: 100%;
  cursor: pointer;
}
@media (max-width: 960px) {
  .c-menu-trigger {
    display: grid;
    width: calc(6.6666666667vw / 1px);
    height: calc(6.6666666667vw / 1px);
  }
}
@media (max-width: 768px) {
  .c-menu-trigger {
    display: grid;
    width: 12.8vw;
    height: 12.8vw;
  }
}
.c-menu-trigger .a-menu-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 1px;
  background-color: var(--white);
  width: 100%;
  will-change: transform, opacity;
  -webkit-transition: opacity 0.4s cubic-bezier(0.4, 0.01, 0.07, 0.98), -webkit-transform 0.4s cubic-bezier(0.4, 0.01, 0.07, 0.98);
  transition: opacity 0.4s cubic-bezier(0.4, 0.01, 0.07, 0.98), -webkit-transform 0.4s cubic-bezier(0.4, 0.01, 0.07, 0.98);
  transition: transform 0.4s cubic-bezier(0.4, 0.01, 0.07, 0.98), opacity 0.4s cubic-bezier(0.4, 0.01, 0.07, 0.98);
  transition: transform 0.4s cubic-bezier(0.4, 0.01, 0.07, 0.98), opacity 0.4s cubic-bezier(0.4, 0.01, 0.07, 0.98), -webkit-transform 0.4s cubic-bezier(0.4, 0.01, 0.07, 0.98);
}
@media (max-width: 960px) {
  .c-menu-trigger .a-menu-bar {
    width: calc(2.5vw / 1px);
  }
}
@media (max-width: 768px) {
  .c-menu-trigger .a-menu-bar {
    width: 5.3333333333vw;
  }
}
.c-menu-trigger .a-menu-bar:nth-child(1) {
  -webkit-transform: translate(-2.6666666667vw, -2.1333333333vw);
          transform: translate(-2.6666666667vw, -2.1333333333vw);
}
.c-menu-trigger .a-menu-bar:nth-child(2) {
  opacity: 1;
  -webkit-transform: translate(-2.6666666667vw, 0);
          transform: translate(-2.6666666667vw, 0);
}
.c-menu-trigger .a-menu-bar:nth-child(3) {
  -webkit-transform: translate(-2.6666666667vw, 2.1333333333vw);
          transform: translate(-2.6666666667vw, 2.1333333333vw);
}

.global-nav {
  position: relative;
  z-index: 2;
  top: 1rem;
}
@media (max-width: 1160px) {
  .global-nav {
    top: unset;
    width: 96%;
    margin-right: auto;
    margin-left: auto;
  }
}
#home .global-nav {
  top: unset;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}
#home .global-nav ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 3rem 2.4rem;
  background-color: var(--white);
  -webkit-box-shadow: 0 0 50px rgba(15, 23, 42, 0.05);
          box-shadow: 0 0 50px rgba(15, 23, 42, 0.05);
  border-radius: 0.5rem;
}
@media (max-width: 960px) {
  #home .global-nav ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 1.5rem;
    padding: 1.5rem 0.5rem;
  }
}
#home .global-nav li {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-right: dotted 1px #dddddd;
}
@media (max-width: 960px) {
  #home .global-nav li {
    border-right: none;
  }
}
#home .global-nav li:last-child {
  border-right: none;
}
#home .global-nav a {
  padding: 0.5rem 2rem;
}
@media (max-width: 960px) {
  #home .global-nav a {
    padding: 1rem;
  }
}
#home .global-nav .nav-title {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 16px;
  text-align: center;
}
@media (max-width: 960px) {
  #home .global-nav .nav-title {
    font-size: 3.2vw;
  }
}
#home .global-nav .nav-title::after {
  left: unset;
}
@media (max-width: 960px) {
  #home .global-nav .nav-desc {
    font-size: 2.6666666667vw;
  }
}
.global-nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1280px) {
  .global-nav ul {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 2vw;
  }
}
.global-nav li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
}
.global-nav li.safety .nav-title::after {
  background-color: #EC6C00;
}
.global-nav li.safety .nav-more {
  background-color: rgba(236, 108, 0, 0.64);
}
.global-nav li.safety a.is_active .nav-title {
  color: #EC6C00 !important;
}
.global-nav li.safety a:hover .nav-more {
  background-color: #C86337;
}
.global-nav li.points .nav-title::after {
  background-color: #A6C859;
}
.global-nav li.points .nav-more {
  background-color: rgba(166, 200, 89, 0.64);
}
.global-nav li.points a.is_active .nav-title {
  color: #A6C859 !important;
}
.global-nav li.points a:hover .nav-more {
  background-color: #7FAB39;
}
.global-nav li.situations .nav-title::after {
  background-color: #7FC9D8;
}
.global-nav li.situations .nav-more {
  background-color: rgba(127, 201, 216, 0.64);
}
.global-nav li.situations a.is_active .nav-title {
  color: #7FC9D8 !important;
}
.global-nav li.situations a:hover .nav-more {
  background-color: #4794A9;
}
.global-nav li.information .nav-title::after {
  background-color: #E89BB5;
}
.global-nav li.information .nav-more {
  background-color: rgba(232, 155, 181, 0.64);
}
.global-nav li.information a.is_active .nav-title {
  color: #E89BB5 !important;
}
.global-nav li.information a:hover .nav-more {
  background-color: #C0617E;
}
.global-nav a {
  display: block;
  padding: 0;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.global-nav a:hover .nav-title::after {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}
.global-nav a:hover .nav-title .category-icon::before {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform: translate(-145%, 110%);
          transform: translate(-145%, 110%);
  opacity: 0;
}
.global-nav a:hover .nav-title .category-icon::after {
  -webkit-transition: all 0.4s 0.24s ease-out;
  transition: all 0.4s 0.24s ease-out;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.nav-title {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1.2rem;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--navy);
}
@media (max-width: 1280px) {
  .nav-title {
    font-size: 1.25vw;
  }
}
@media (max-width: 1160px) {
  .nav-title {
    font-size: 1.5625vw;
  }
}
.nav-title::after {
  pointer-events: none;
  position: absolute;
  top: 1.2rem;
  left: -0.5rem;
  z-index: 1;
  content: "";
  display: block;
  width: 4rem;
  height: 2.5rem;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  -webkit-mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2064%2040%22%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M34.08.04C14.77-.72-1.15%2C9.23.07%2C21.3c1.01%2C9.95%2C13.93%2C18.03%2C29.86%2C18.66%2C19.31.76%2C35.23-9.19%2C34.01-21.26C62.93%2C8.75%2C50%2C.67%2C34.08.04ZM33.84%2C31.19c-11.38.7-20.87-5.23-19.75-12.34.83-5.27%2C7.65-9.52%2C16.07-10.05%2C11.38-.7%2C20.87%2C5.23%2C19.75%2C12.34-.83%2C5.27-7.65%2C9.52-16.07%2C10.05Z%22%2F%3E%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2064%2040%22%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M34.08.04C14.77-.72-1.15%2C9.23.07%2C21.3c1.01%2C9.95%2C13.93%2C18.03%2C29.86%2C18.66%2C19.31.76%2C35.23-9.19%2C34.01-21.26C62.93%2C8.75%2C50%2C.67%2C34.08.04ZM33.84%2C31.19c-11.38.7-20.87-5.23-19.75-12.34.83-5.27%2C7.65-9.52%2C16.07-10.05%2C11.38-.7%2C20.87%2C5.23%2C19.75%2C12.34-.83%2C5.27-7.65%2C9.52-16.07%2C10.05Z%22%2F%3E%3C%2Fsvg%3E");
  -webkit-mask-position: 50% 50%;
  mask-position: 50% 50%;
  -webkit-mask-size: auto;
  mask-size: auto;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.nav-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.nav-more {
  display: block;
  width: 100%;
  margin-top: 1.5rem;
  padding: 4px 10px;
  border-radius: 999px;
  -webkit-transition: all 0.32s ease-in;
  transition: all 0.32s ease-in;
  color: var(--white);
  font-size: 12px;
  text-align: center;
  font-weight: 700;
}

.category-icon {
  position: relative;
  display: inline-block;
  width: 3.2rem;
  height: 3.2rem;
}
.category-icon::before, .category-icon::after {
  pointer-events: none;
  position: absolute;
  z-index: 2;
  content: "";
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2017.01%2017.86%22%3E%3Cpath%20id%3D%22body%22%20fill%3D%22%23dcdddd%22%20d%3D%22M16.38%2C7.14v-3.01S10.35.64%2C10.35.64L2.52%2C5.16l6.02%2C3.5-.6%2C3.36-6.02-3.5-1.3%2C2.65v2.33s6.02%2C3.5%2C6.02%2C3.5l1.01-.58c0-.72.5-1.59%2C1.13-1.96s1.14-.07%2C1.14.65l3.42-1.97c0-.72.5-1.59%2C1.13-1.96.63-.36%2C1.13-.07%2C1.14.65l.79-.46v-4.23Z%22%2F%3E%3Cpath%20id%3D%22wheel%22%20fill%3D%22%23fff%22%20d%3D%22M15.6%2C11.83c0%2C.72-.5%2C1.59-1.13%2C1.96-.63.36-1.13.07-1.14-.65%2C0-.72.5-1.59%2C1.13-1.96.63-.36%2C1.13-.07%2C1.14.65ZM8.78%2C14.46c-.63.36-1.13%2C1.24-1.13%2C1.96%2C0%2C.72.51%2C1.01%2C1.14.65.63-.36%2C1.13-1.24%2C1.13-1.96%2C0-.72-.51-1.01-1.14-.65Z%22%2F%3E%3Cpolygon%20id%3D%22window%22%20fill%3D%22%23fff%22%20points%3D%221.92%208.52%207.93%2012.02%208.54%208.66%202.52%205.16%201.92%208.52%22%2F%3E%3Cpath%20id%3D%22outline%22%20fill%3D%22%231c2e6a%22%20d%3D%22M15.77%2C12.63s0%2C0%2C0-.01c.07-.2.12-.4.14-.59l.64-.37c.1-.06.17-.17.17-.29l-.02-7.23s-.02-.09-.03-.13c0-.01%2C0-.03%2C0-.04-.03-.05-.07-.09-.12-.12h0s0%2C0%2C0%2C0%2C0%2C0%2C0%2C0L10.52.35c-.1-.06-.23-.06-.33%2C0L2.35%2C4.87s-.02.03-.04.04c-.03.02-.05.04-.07.07-.01.02-.02.04-.03.06%2C0%2C.02-.02.04-.03.06l-.59%2C3.31-1.28%2C2.61s0%2C.02%2C0%2C.03c-.01.04-.03.08-.03.12v2.33c0%2C.12.07.23.17.29l6.02%2C3.5s0%2C0%2C0%2C0c0%2C0%2C0%2C0%2C0%2C0%2C.05.03.11.04.17.04s.12-.01.17-.04l.38-.22.62.36s0%2C0%2C0%2C0c0%2C0%2C0%2C0%2C0%2C0%2C.14.08.29.12.46.12.22%2C0%2C.45-.07.68-.2.16-.09.31-.21.45-.35.01-.01.02-.02.03-.03.14-.14.26-.3.37-.47%2C0-.01.02-.02.02-.04.11-.18.2-.36.27-.55%2C0%2C0%2C0%2C0%2C0-.01.07-.2.12-.4.14-.59l2.64-1.52.62.36s0%2C0%2C0%2C0c0%2C0%2C0%2C0%2C0%2C0%2C.14.08.29.12.46.12.22%2C0%2C.45-.07.68-.2.16-.09.31-.21.45-.35.01-.01.02-.02.03-.03.14-.14.26-.3.36-.47%2C0-.01.02-.02.02-.04.11-.18.2-.36.27-.55ZM16.06%2C11.18l-.22.12s-.02-.02-.02-.04c-.03-.06-.06-.12-.1-.17-.02-.03-.04-.06-.06-.09-.07-.08-.14-.14-.23-.19-.32-.18-.73-.15-1.14.08-.16.09-.31.21-.45.35-.01.01-.03.02-.04.04-.13.13-.24.28-.35.44-.02.02-.03.05-.05.07-.1.16-.18.33-.24.5-.01.03-.02.06-.03.09-.06.17-.1.35-.12.52%2C0%2C.01%2C0%2C.03%2C0%2C.04l-2.85%2C1.65s-.02-.02-.02-.04c-.03-.07-.06-.12-.1-.18-.02-.03-.03-.06-.06-.08-.07-.08-.14-.14-.23-.19-.32-.18-.73-.15-1.14.08-.16.09-.31.21-.44.35-.01.01-.03.02-.04.04-.13.13-.24.28-.35.44-.02.03-.03.05-.05.07-.1.16-.18.33-.24.5-.01.03-.02.06-.03.09-.06.17-.1.34-.12.52%2C0%2C.01%2C0%2C.03%2C0%2C.04l-.35.2v-1.67s1.22-2.49%2C1.22-2.49l7.86-4.54v3.46ZM16.04%2C6.95l-7.65%2C4.42.45-2.5%2C3.44-1.99%2C3.76-2.17v2.24ZM10.35%2C1.03l5.35%2C3.11-4.13%2C2.38-3.04%2C1.75-5.29-3.08-.06-.03L10.35%2C1.03ZM2.76%2C5.69l.96.56%2C4.44%2C2.58-.27%2C1.53-.2%2C1.13-5.4-3.14.48-2.66ZM.96%2C13.31v-1.55s5.35%2C3.11%2C5.35%2C3.11v1.55S.96%2C13.31.96%2C13.31ZM6.49%2C14.2l-5.44-3.16%2C1.01-2.05%2C5.44%2C3.16-.23.48-.77%2C1.58ZM8.62%2C16.77c-.19.11-.37.14-.47.08-.1-.06-.16-.22-.17-.44%2C0-.6.44-1.36.96-1.67.08-.05.16-.08.23-.09.01%2C0%2C.02%2C0%2C.03%2C0%2C0%2C0%2C.02%2C0%2C.03%2C0%2C.07%2C0%2C.13%2C0%2C.18.02.1.06.16.22.17.44%2C0%2C.6-.44%2C1.36-.96%2C1.67ZM13.83%2C13.57c-.1-.06-.16-.22-.17-.44%2C0-.6.44-1.36.96-1.67.19-.11.37-.14.47-.08.05.03.09.09.12.16s.04.17.04.28c0%2C.05-.02.1-.02.15-.02.17-.07.35-.14.52-.09.22-.22.43-.37.61-.02.02-.03.05-.06.08-.11.12-.24.23-.37.3-.19.11-.37.14-.47.08Z%22%2F%3E%3C%2Fsvg%3E");
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}
.category-icon::after {
  -webkit-transform: translate(145%, -110%);
          transform: translate(145%, -110%);
  opacity: 0;
}

.sp-menu {
  position: fixed;
  inset: 0;
  background-color: var(--white);
  display: block;
  z-index: 99;
  -webkit-transition: opacity 0.4s cubic-bezier(0.4, 0.01, 0.07, 0.98);
  transition: opacity 0.4s cubic-bezier(0.4, 0.01, 0.07, 0.98);
  opacity: 0;
  pointer-events: none;
  padding: 27.7333333333vw 12.8vw 0;
  overflow: scroll;
}
.sp-menu.is_active {
  opacity: 1;
  pointer-events: all;
}
.sp-menu ul {
  width: 100%;
  margin: 0 auto 6.4vw;
  list-style: none;
  text-align: center;
}
.sp-menu ul:before {
  content: "";
  display: block;
  width: 100%;
  height: 0.8533333333vw;
  border: 1px solid #dddddd;
  background-color: var(--white);
}
.sp-menu li {
  margin: 0;
  padding: 0;
}
.sp-menu li:after {
  content: "";
  display: block;
  width: 100%;
  height: 0.8533333333vw;
  border: 1px solid #dddddd;
  background-color: var(--white);
}
.sp-menu li a {
  display: block;
  padding: 0.9rem;
}
.sp-menu li.sp-menu-safety .nav-title::after {
  background-color: #EC6C00;
}
.sp-menu li.sp-menu-points .nav-title::after {
  background-color: #A6C859;
}
.sp-menu li.sp-menu-situations .nav-title::after {
  background-color: #7FC9D8;
}
.sp-menu li.sp-menu-information .nav-title::after {
  background-color: #E89BB5;
}
@media (max-width: 960px) {
  .sp-menu li .nav-title {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    font-size: 4.2666666667vw;
    text-align: left;
  }
}
.sp-menu li .nav-title::after {
  top: 2.6666666667vw;
  left: -0.5rem;
  width: 14.9333333333vw;
  height: 10.6666666667vw;
}
.sp-menu li .category-icon {
  width: 12vw;
  height: 12vw;
}
.sp-menu li .category-icon::before {
  top: 0;
  width: 10.6666666667vw;
  height: 10.6666666667vw;
}
.sp-menu li .category-icon::after {
  display: none;
}
.sp-menu .btn-wrapper {
  margin-bottom: 8.5333333333vw;
}
.sp-menu .btn-wrapper .btn {
  width: 100%;
  min-width: 48vw;
}
.sp-menu .bnr-wrapper .bnr {
  width: 72vw;
  min-width: unset;
}

footer.site-footer {
  background: var(--white);
  padding: 3rem 0;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
@media (max-width: 768px) {
  footer.site-footer {
    padding: 12.8vw 0;
  }
}
footer.site-footer .footer-inner .site-ID {
  display: grid;
  place-content: center;
  margin-bottom: 2rem;
  line-height: 0;
}
footer.site-footer .footer-inner .site-ID .logo,
footer.site-footer .footer-inner .site-ID .credit {
  display: inline-block;
  margin: 0 auto;
}
footer.site-footer .footer-inner .site-ID .logo {
  margin-bottom: 0.5rem;
}
footer.site-footer .footer-inner .site-ID .logo span {
  width: 20rem;
}
@media (max-width: 768px) {
  footer.site-footer .footer-inner .site-ID .logo span {
    width: 53.3333333333vw;
  }
}
footer.site-footer .footer-inner .site-ID .credit span {
  width: 12rem;
}
@media (max-width: 768px) {
  footer.site-footer .footer-inner .site-ID .credit span {
    width: 42.6666666667vw;
  }
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 0;
}
.hero-container {
  display: grid;
  background-color: var(--white);
  background-image: url("../img/bg_hero.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  padding: 80px 8vw 120px;
}
.hero-container .hero-card {
  -webkit-filter: drop-shadow(0 10px 24px rgba(15, 23, 42, 0.08));
          filter: drop-shadow(0 10px 24px rgba(15, 23, 42, 0.08));
}
.hero-container h2 {
  color: var(--navy);
  font-size: clamp(30px, 4.8vw, 40px);
  letter-spacing: 0.16rem;
  line-height: 1.8;
  font-weight: 400;
  margin: 0 0 20px;
}
@media (max-width: 768px) {
  .hero-container h2 {
    font-size: 6.6666666667vw;
    letter-spacing: 0.08em;
  }
}
.hero-container h2 span {
  display: inline;
  padding: 0 8px 3px;
  background-color: var(--white);
}
.hero-container p {
  color: var(--navy);
  font-size: clamp(12px, 2vw, 15px);
  max-width: 640px;
  line-height: 2.4;
  font-weight: 700;
  margin: 0;
}
.hero-container p span {
  display: inline;
  padding: 3px 6px;
  background-color: var(--white);
}
#home .hero {
  margin-bottom: -10vh;
  padding: 1rem;
}
@media (max-width: 960px) {
  #home .hero {
    padding: 0.5rem;
  }
}
#home .hero .hero-container {
  place-content: center flex-end;
}
@media (max-width: 960px) {
  #home .hero .hero-container {
    place-content: center;
    padding: 10vw 5vw 21.3333333333vw;
  }
}
#subpage .hero {
  min-height: 320px;
  margin-bottom: 2rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  #subpage .hero {
    min-height: unset;
    margin-bottom: 0;
  }
}
#subpage .hero .hero-container {
  position: relative;
  place-content: center flex-start;
  padding: 80px 5vw 80px;
}
@media (max-width: 768px) {
  #subpage .hero .hero-container {
    place-content: unset;
    padding: 10vw 5vw 21.3333333333vw;
  }
}
#subpage .hero .hero-container .hero-card {
  position: relative;
  z-index: 2;
}
#subpage .hero .hero-container h2 {
  font-size: clamp(28px, 3.5vw, 34px);
  margin-bottom: 0;
}
@media (max-width: 768px) {
  #subpage .hero .hero-container h2 {
    font-size: 6.4vw;
  }
}
#subpage .hero .hero-container::after {
  position: absolute;
  right: 4rem;
  bottom: 2.5rem;
  z-index: 1;
  content: "";
  display: block;
  width: 15rem;
  height: 15rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2017.01%2017.86%22%3E%3Cpath%20id%3D%22body%22%20fill%3D%22%23dcdddd%22%20d%3D%22M16.38%2C7.14v-3.01S10.35.64%2C10.35.64L2.52%2C5.16l6.02%2C3.5-.6%2C3.36-6.02-3.5-1.3%2C2.65v2.33s6.02%2C3.5%2C6.02%2C3.5l1.01-.58c0-.72.5-1.59%2C1.13-1.96s1.14-.07%2C1.14.65l3.42-1.97c0-.72.5-1.59%2C1.13-1.96.63-.36%2C1.13-.07%2C1.14.65l.79-.46v-4.23Z%22%2F%3E%3Cpath%20id%3D%22wheel%22%20fill%3D%22%23fff%22%20d%3D%22M15.6%2C11.83c0%2C.72-.5%2C1.59-1.13%2C1.96-.63.36-1.13.07-1.14-.65%2C0-.72.5-1.59%2C1.13-1.96.63-.36%2C1.13-.07%2C1.14.65ZM8.78%2C14.46c-.63.36-1.13%2C1.24-1.13%2C1.96%2C0%2C.72.51%2C1.01%2C1.14.65.63-.36%2C1.13-1.24%2C1.13-1.96%2C0-.72-.51-1.01-1.14-.65Z%22%2F%3E%3Cpolygon%20id%3D%22window%22%20fill%3D%22%23fff%22%20points%3D%221.92%208.52%207.93%2012.02%208.54%208.66%202.52%205.16%201.92%208.52%22%2F%3E%3Cpath%20id%3D%22outline%22%20fill%3D%22%231c2e6a%22%20d%3D%22M15.77%2C12.63s0%2C0%2C0-.01c.07-.2.12-.4.14-.59l.64-.37c.1-.06.17-.17.17-.29l-.02-7.23s-.02-.09-.03-.13c0-.01%2C0-.03%2C0-.04-.03-.05-.07-.09-.12-.12h0s0%2C0%2C0%2C0%2C0%2C0%2C0%2C0L10.52.35c-.1-.06-.23-.06-.33%2C0L2.35%2C4.87s-.02.03-.04.04c-.03.02-.05.04-.07.07-.01.02-.02.04-.03.06%2C0%2C.02-.02.04-.03.06l-.59%2C3.31-1.28%2C2.61s0%2C.02%2C0%2C.03c-.01.04-.03.08-.03.12v2.33c0%2C.12.07.23.17.29l6.02%2C3.5s0%2C0%2C0%2C0c0%2C0%2C0%2C0%2C0%2C0%2C.05.03.11.04.17.04s.12-.01.17-.04l.38-.22.62.36s0%2C0%2C0%2C0c0%2C0%2C0%2C0%2C0%2C0%2C.14.08.29.12.46.12.22%2C0%2C.45-.07.68-.2.16-.09.31-.21.45-.35.01-.01.02-.02.03-.03.14-.14.26-.3.37-.47%2C0-.01.02-.02.02-.04.11-.18.2-.36.27-.55%2C0%2C0%2C0%2C0%2C0-.01.07-.2.12-.4.14-.59l2.64-1.52.62.36s0%2C0%2C0%2C0c0%2C0%2C0%2C0%2C0%2C0%2C.14.08.29.12.46.12.22%2C0%2C.45-.07.68-.2.16-.09.31-.21.45-.35.01-.01.02-.02.03-.03.14-.14.26-.3.36-.47%2C0-.01.02-.02.02-.04.11-.18.2-.36.27-.55ZM16.06%2C11.18l-.22.12s-.02-.02-.02-.04c-.03-.06-.06-.12-.1-.17-.02-.03-.04-.06-.06-.09-.07-.08-.14-.14-.23-.19-.32-.18-.73-.15-1.14.08-.16.09-.31.21-.45.35-.01.01-.03.02-.04.04-.13.13-.24.28-.35.44-.02.02-.03.05-.05.07-.1.16-.18.33-.24.5-.01.03-.02.06-.03.09-.06.17-.1.35-.12.52%2C0%2C.01%2C0%2C.03%2C0%2C.04l-2.85%2C1.65s-.02-.02-.02-.04c-.03-.07-.06-.12-.1-.18-.02-.03-.03-.06-.06-.08-.07-.08-.14-.14-.23-.19-.32-.18-.73-.15-1.14.08-.16.09-.31.21-.44.35-.01.01-.03.02-.04.04-.13.13-.24.28-.35.44-.02.03-.03.05-.05.07-.1.16-.18.33-.24.5-.01.03-.02.06-.03.09-.06.17-.1.34-.12.52%2C0%2C.01%2C0%2C.03%2C0%2C.04l-.35.2v-1.67s1.22-2.49%2C1.22-2.49l7.86-4.54v3.46ZM16.04%2C6.95l-7.65%2C4.42.45-2.5%2C3.44-1.99%2C3.76-2.17v2.24ZM10.35%2C1.03l5.35%2C3.11-4.13%2C2.38-3.04%2C1.75-5.29-3.08-.06-.03L10.35%2C1.03ZM2.76%2C5.69l.96.56%2C4.44%2C2.58-.27%2C1.53-.2%2C1.13-5.4-3.14.48-2.66ZM.96%2C13.31v-1.55s5.35%2C3.11%2C5.35%2C3.11v1.55S.96%2C13.31.96%2C13.31ZM6.49%2C14.2l-5.44-3.16%2C1.01-2.05%2C5.44%2C3.16-.23.48-.77%2C1.58ZM8.62%2C16.77c-.19.11-.37.14-.47.08-.1-.06-.16-.22-.17-.44%2C0-.6.44-1.36.96-1.67.08-.05.16-.08.23-.09.01%2C0%2C.02%2C0%2C.03%2C0%2C0%2C0%2C.02%2C0%2C.03%2C0%2C.07%2C0%2C.13%2C0%2C.18.02.1.06.16.22.17.44%2C0%2C.6-.44%2C1.36-.96%2C1.67ZM13.83%2C13.57c-.1-.06-.16-.22-.17-.44%2C0-.6.44-1.36.96-1.67.19-.11.37-.14.47-.08.05.03.09.09.12.16s.04.17.04.28c0%2C.05-.02.1-.02.15-.02.17-.07.35-.14.52-.09.22-.22.43-.37.61-.02.02-.03.05-.06.08-.11.12-.24.23-.37.3-.19.11-.37.14-.47.08Z%22%2F%3E%3C%2Fsvg%3E");
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  mix-blend-mode: overlay;
  -webkit-transition: all 0.8s 0.24s ease-in-out;
  transition: all 0.8s 0.24s ease-in-out;
  -webkit-transform: translate(145%, -110%);
          transform: translate(145%, -110%);
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  #subpage .hero .hero-container::after {
    right: 1.5rem;
    bottom: 1rem;
    width: 8rem;
    height: 8rem;
  }
}
#subpage .hero.is_animated .hero-container::after {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.category-hero {
  display: grid;
  place-items: center;
  padding: 0;
}
.category-hero .hero-container {
  position: relative;
  width: 100%;
  min-width: 360px;
  padding: 3rem 1.5rem 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .category-hero .hero-container {
    place-content: unset;
    padding: 10vw 5vw 21.3333333333vw;
  }
}
.category-hero .hero-container .hero-card {
  position: relative;
  z-index: 2;
}
.category-hero .hero-container h2 {
  font-size: clamp(24px, 3.2vw, 30px);
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .category-hero .hero-container h2 {
    position: relative;
    z-index: 2;
    font-size: 6.4vw;
  }
}
.category-hero .hero-container::after {
  position: absolute;
  right: 1.5rem;
  bottom: 3rem;
  z-index: 2;
  content: "";
  display: block;
  width: 12rem;
  height: 12rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2017.01%2017.86%22%3E%3Cpath%20id%3D%22body%22%20fill%3D%22%23dcdddd%22%20d%3D%22M16.38%2C7.14v-3.01S10.35.64%2C10.35.64L2.52%2C5.16l6.02%2C3.5-.6%2C3.36-6.02-3.5-1.3%2C2.65v2.33s6.02%2C3.5%2C6.02%2C3.5l1.01-.58c0-.72.5-1.59%2C1.13-1.96s1.14-.07%2C1.14.65l3.42-1.97c0-.72.5-1.59%2C1.13-1.96.63-.36%2C1.13-.07%2C1.14.65l.79-.46v-4.23Z%22%2F%3E%3Cpath%20id%3D%22wheel%22%20fill%3D%22%23fff%22%20d%3D%22M15.6%2C11.83c0%2C.72-.5%2C1.59-1.13%2C1.96-.63.36-1.13.07-1.14-.65%2C0-.72.5-1.59%2C1.13-1.96.63-.36%2C1.13-.07%2C1.14.65ZM8.78%2C14.46c-.63.36-1.13%2C1.24-1.13%2C1.96%2C0%2C.72.51%2C1.01%2C1.14.65.63-.36%2C1.13-1.24%2C1.13-1.96%2C0-.72-.51-1.01-1.14-.65Z%22%2F%3E%3Cpolygon%20id%3D%22window%22%20fill%3D%22%23fff%22%20points%3D%221.92%208.52%207.93%2012.02%208.54%208.66%202.52%205.16%201.92%208.52%22%2F%3E%3Cpath%20id%3D%22outline%22%20fill%3D%22%231c2e6a%22%20d%3D%22M15.77%2C12.63s0%2C0%2C0-.01c.07-.2.12-.4.14-.59l.64-.37c.1-.06.17-.17.17-.29l-.02-7.23s-.02-.09-.03-.13c0-.01%2C0-.03%2C0-.04-.03-.05-.07-.09-.12-.12h0s0%2C0%2C0%2C0%2C0%2C0%2C0%2C0L10.52.35c-.1-.06-.23-.06-.33%2C0L2.35%2C4.87s-.02.03-.04.04c-.03.02-.05.04-.07.07-.01.02-.02.04-.03.06%2C0%2C.02-.02.04-.03.06l-.59%2C3.31-1.28%2C2.61s0%2C.02%2C0%2C.03c-.01.04-.03.08-.03.12v2.33c0%2C.12.07.23.17.29l6.02%2C3.5s0%2C0%2C0%2C0c0%2C0%2C0%2C0%2C0%2C0%2C.05.03.11.04.17.04s.12-.01.17-.04l.38-.22.62.36s0%2C0%2C0%2C0c0%2C0%2C0%2C0%2C0%2C0%2C.14.08.29.12.46.12.22%2C0%2C.45-.07.68-.2.16-.09.31-.21.45-.35.01-.01.02-.02.03-.03.14-.14.26-.3.37-.47%2C0-.01.02-.02.02-.04.11-.18.2-.36.27-.55%2C0%2C0%2C0%2C0%2C0-.01.07-.2.12-.4.14-.59l2.64-1.52.62.36s0%2C0%2C0%2C0c0%2C0%2C0%2C0%2C0%2C0%2C.14.08.29.12.46.12.22%2C0%2C.45-.07.68-.2.16-.09.31-.21.45-.35.01-.01.02-.02.03-.03.14-.14.26-.3.36-.47%2C0-.01.02-.02.02-.04.11-.18.2-.36.27-.55ZM16.06%2C11.18l-.22.12s-.02-.02-.02-.04c-.03-.06-.06-.12-.1-.17-.02-.03-.04-.06-.06-.09-.07-.08-.14-.14-.23-.19-.32-.18-.73-.15-1.14.08-.16.09-.31.21-.45.35-.01.01-.03.02-.04.04-.13.13-.24.28-.35.44-.02.02-.03.05-.05.07-.1.16-.18.33-.24.5-.01.03-.02.06-.03.09-.06.17-.1.35-.12.52%2C0%2C.01%2C0%2C.03%2C0%2C.04l-2.85%2C1.65s-.02-.02-.02-.04c-.03-.07-.06-.12-.1-.18-.02-.03-.03-.06-.06-.08-.07-.08-.14-.14-.23-.19-.32-.18-.73-.15-1.14.08-.16.09-.31.21-.44.35-.01.01-.03.02-.04.04-.13.13-.24.28-.35.44-.02.03-.03.05-.05.07-.1.16-.18.33-.24.5-.01.03-.02.06-.03.09-.06.17-.1.34-.12.52%2C0%2C.01%2C0%2C.03%2C0%2C.04l-.35.2v-1.67s1.22-2.49%2C1.22-2.49l7.86-4.54v3.46ZM16.04%2C6.95l-7.65%2C4.42.45-2.5%2C3.44-1.99%2C3.76-2.17v2.24ZM10.35%2C1.03l5.35%2C3.11-4.13%2C2.38-3.04%2C1.75-5.29-3.08-.06-.03L10.35%2C1.03ZM2.76%2C5.69l.96.56%2C4.44%2C2.58-.27%2C1.53-.2%2C1.13-5.4-3.14.48-2.66ZM.96%2C13.31v-1.55s5.35%2C3.11%2C5.35%2C3.11v1.55S.96%2C13.31.96%2C13.31ZM6.49%2C14.2l-5.44-3.16%2C1.01-2.05%2C5.44%2C3.16-.23.48-.77%2C1.58ZM8.62%2C16.77c-.19.11-.37.14-.47.08-.1-.06-.16-.22-.17-.44%2C0-.6.44-1.36.96-1.67.08-.05.16-.08.23-.09.01%2C0%2C.02%2C0%2C.03%2C0%2C0%2C0%2C.02%2C0%2C.03%2C0%2C.07%2C0%2C.13%2C0%2C.18.02.1.06.16.22.17.44%2C0%2C.6-.44%2C1.36-.96%2C1.67ZM13.83%2C13.57c-.1-.06-.16-.22-.17-.44%2C0-.6.44-1.36.96-1.67.19-.11.37-.14.47-.08.05.03.09.09.12.16s.04.17.04.28c0%2C.05-.02.1-.02.15-.02.17-.07.35-.14.52-.09.22-.22.43-.37.61-.02.02-.03.05-.06.08-.11.12-.24.23-.37.3-.19.11-.37.14-.47.08Z%22%2F%3E%3C%2Fsvg%3E");
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  mix-blend-mode: overlay;
  -webkit-transition: all 0.8s 0.24s ease-in-out;
  transition: all 0.8s 0.24s ease-in-out;
  -webkit-transform: translate(145%, -110%);
          transform: translate(145%, -110%);
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  .category-hero .hero-container::after {
    right: 1.5rem;
    bottom: 1rem;
    width: 8rem;
    height: 8rem;
  }
}
.category-hero.is_animated .hero-container::after {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

#safety .category-hero .hero-container {
  background-image: url("../img/bg_hero_01.webp");
}

#points .category-hero .hero-container {
  background-image: url("../img/bg_hero_02.webp");
}

#situations .category-hero .hero-container {
  background-image: url("../img/bg_hero_03.webp");
}

#information .category-hero .hero-container {
  background-image: url("../img/bg_hero_04.webp");
}

.template-child .box-content__header,
.template-child .box-content__body {
  padding: 0 4rem;
}
.template-child .box-content__header {
  padding-top: 2rem;
}
.template-child .box-content__header .section-title {
  position: relative;
  margin: 0 0 1rem;
  font-size: 3rem;
  line-height: 1.5;
  font-weight: 700;
}
.template-child .box-content__header .section-title .section-number {
  position: absolute;
  top: 0.8rem;
  left: -4rem;
  border-bottom: 4px solid #3a3a3a;
  font-size: clamp(22px, 3vw, 1.5rem);
  line-height: 1.4;
}
.template-child .box-content__header .section-title strong {
  font-weight: 700;
}
.template-child .box-content__header .bnr-wrapper {
  display: inline-block;
  width: auto !important;
  margin: 1.5rem 0 0;
}
.template-child .box-content__header .bnr-wrapper .bnr {
  border: none;
}
.template-child .box-content__header .bnr-wrapper .bnr span {
  display: block;
  text-align: center;
}
@media (max-width: 768px) {
  .template-child .box-content__header .bnr-wrapper .bnr span {
    margin: 0.5rem 0 0;
  }
}
.template-child .box-content__body {
  margin-bottom: 3rem;
  padding-right: 4rem;
}
.template-child .box-content__body.is_animated .content-title::before {
  -webkit-transform: translate(30%, 20%) scale(-1, 1);
          transform: translate(30%, 20%) scale(-1, 1);
  opacity: 1;
}
@media (max-width: 768px) {
  .template-child .box-content__body.is_animated .content-title::before {
    -webkit-transform: translate(1.3333333333vw, 1.3333333333vw) scale(-1, 1);
            transform: translate(1.3333333333vw, 1.3333333333vw) scale(-1, 1);
  }
}
.template-child .media-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-child .content-title {
  position: relative;
  margin: 0 0 3rem;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
}
.template-child .content-title::before {
  pointer-events: none;
  position: absolute;
  left: -4rem;
  z-index: 2;
  content: "";
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2017.01%2017.86%22%3E%3Cpath%20id%3D%22body%22%20fill%3D%22%23dcdddd%22%20d%3D%22M16.38%2C7.14v-3.01S10.35.64%2C10.35.64L2.52%2C5.16l6.02%2C3.5-.6%2C3.36-6.02-3.5-1.3%2C2.65v2.33s6.02%2C3.5%2C6.02%2C3.5l1.01-.58c0-.72.5-1.59%2C1.13-1.96s1.14-.07%2C1.14.65l3.42-1.97c0-.72.5-1.59%2C1.13-1.96.63-.36%2C1.13-.07%2C1.14.65l.79-.46v-4.23Z%22%2F%3E%3Cpath%20id%3D%22wheel%22%20fill%3D%22%23fff%22%20d%3D%22M15.6%2C11.83c0%2C.72-.5%2C1.59-1.13%2C1.96-.63.36-1.13.07-1.14-.65%2C0-.72.5-1.59%2C1.13-1.96.63-.36%2C1.13-.07%2C1.14.65ZM8.78%2C14.46c-.63.36-1.13%2C1.24-1.13%2C1.96%2C0%2C.72.51%2C1.01%2C1.14.65.63-.36%2C1.13-1.24%2C1.13-1.96%2C0-.72-.51-1.01-1.14-.65Z%22%2F%3E%3Cpolygon%20id%3D%22window%22%20fill%3D%22%23fff%22%20points%3D%221.92%208.52%207.93%2012.02%208.54%208.66%202.52%205.16%201.92%208.52%22%2F%3E%3Cpath%20id%3D%22outline%22%20fill%3D%22%231c2e6a%22%20d%3D%22M15.77%2C12.63s0%2C0%2C0-.01c.07-.2.12-.4.14-.59l.64-.37c.1-.06.17-.17.17-.29l-.02-7.23s-.02-.09-.03-.13c0-.01%2C0-.03%2C0-.04-.03-.05-.07-.09-.12-.12h0s0%2C0%2C0%2C0%2C0%2C0%2C0%2C0L10.52.35c-.1-.06-.23-.06-.33%2C0L2.35%2C4.87s-.02.03-.04.04c-.03.02-.05.04-.07.07-.01.02-.02.04-.03.06%2C0%2C.02-.02.04-.03.06l-.59%2C3.31-1.28%2C2.61s0%2C.02%2C0%2C.03c-.01.04-.03.08-.03.12v2.33c0%2C.12.07.23.17.29l6.02%2C3.5s0%2C0%2C0%2C0c0%2C0%2C0%2C0%2C0%2C0%2C.05.03.11.04.17.04s.12-.01.17-.04l.38-.22.62.36s0%2C0%2C0%2C0c0%2C0%2C0%2C0%2C0%2C0%2C.14.08.29.12.46.12.22%2C0%2C.45-.07.68-.2.16-.09.31-.21.45-.35.01-.01.02-.02.03-.03.14-.14.26-.3.37-.47%2C0-.01.02-.02.02-.04.11-.18.2-.36.27-.55%2C0%2C0%2C0%2C0%2C0-.01.07-.2.12-.4.14-.59l2.64-1.52.62.36s0%2C0%2C0%2C0c0%2C0%2C0%2C0%2C0%2C0%2C.14.08.29.12.46.12.22%2C0%2C.45-.07.68-.2.16-.09.31-.21.45-.35.01-.01.02-.02.03-.03.14-.14.26-.3.36-.47%2C0-.01.02-.02.02-.04.11-.18.2-.36.27-.55ZM16.06%2C11.18l-.22.12s-.02-.02-.02-.04c-.03-.06-.06-.12-.1-.17-.02-.03-.04-.06-.06-.09-.07-.08-.14-.14-.23-.19-.32-.18-.73-.15-1.14.08-.16.09-.31.21-.45.35-.01.01-.03.02-.04.04-.13.13-.24.28-.35.44-.02.02-.03.05-.05.07-.1.16-.18.33-.24.5-.01.03-.02.06-.03.09-.06.17-.1.35-.12.52%2C0%2C.01%2C0%2C.03%2C0%2C.04l-2.85%2C1.65s-.02-.02-.02-.04c-.03-.07-.06-.12-.1-.18-.02-.03-.03-.06-.06-.08-.07-.08-.14-.14-.23-.19-.32-.18-.73-.15-1.14.08-.16.09-.31.21-.44.35-.01.01-.03.02-.04.04-.13.13-.24.28-.35.44-.02.03-.03.05-.05.07-.1.16-.18.33-.24.5-.01.03-.02.06-.03.09-.06.17-.1.34-.12.52%2C0%2C.01%2C0%2C.03%2C0%2C.04l-.35.2v-1.67s1.22-2.49%2C1.22-2.49l7.86-4.54v3.46ZM16.04%2C6.95l-7.65%2C4.42.45-2.5%2C3.44-1.99%2C3.76-2.17v2.24ZM10.35%2C1.03l5.35%2C3.11-4.13%2C2.38-3.04%2C1.75-5.29-3.08-.06-.03L10.35%2C1.03ZM2.76%2C5.69l.96.56%2C4.44%2C2.58-.27%2C1.53-.2%2C1.13-5.4-3.14.48-2.66ZM.96%2C13.31v-1.55s5.35%2C3.11%2C5.35%2C3.11v1.55S.96%2C13.31.96%2C13.31ZM6.49%2C14.2l-5.44-3.16%2C1.01-2.05%2C5.44%2C3.16-.23.48-.77%2C1.58ZM8.62%2C16.77c-.19.11-.37.14-.47.08-.1-.06-.16-.22-.17-.44%2C0-.6.44-1.36.96-1.67.08-.05.16-.08.23-.09.01%2C0%2C.02%2C0%2C.03%2C0%2C0%2C0%2C.02%2C0%2C.03%2C0%2C.07%2C0%2C.13%2C0%2C.18.02.1.06.16.22.17.44%2C0%2C.6-.44%2C1.36-.96%2C1.67ZM13.83%2C13.57c-.1-.06-.16-.22-.17-.44%2C0-.6.44-1.36.96-1.67.19-.11.37-.14.47-.08.05.03.09.09.12.16s.04.17.04.28c0%2C.05-.02.1-.02.15-.02.17-.07.35-.14.52-.09.22-.22.43-.37.61-.02.02-.03.05-.06.08-.11.12-.24.23-.37.3-.19.11-.37.14-.47.08Z%22%2F%3E%3C%2Fsvg%3E");
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: all 0.4s 0.64s ease-in-out;
  transition: all 0.4s 0.64s ease-in-out;
  -webkit-transform: translate(-115%, -90%) scale(-1, 1);
          transform: translate(-115%, -90%) scale(-1, 1);
  opacity: 0;
}
@media (max-width: 768px) {
  .template-child .content-title::before {
    left: -10.6666666667vw;
    width: 7.4666666667vw;
    height: 7.4666666667vw;
    -webkit-transform: translate(-14.9333333333vw, -14.9333333333vw) scale(-1, 1);
            transform: translate(-14.9333333333vw, -14.9333333333vw) scale(-1, 1);
  }
}
.template-child .content-text .label,
.template-child .content-stack .label {
  display: inline-block;
  margin-bottom: 0.64rem;
  font-size: 106%;
  line-height: 1.6;
}
.template-child .content-text p + p {
  margin-top: 0.8rem;
}
.template-child .content-stack {
  width: 100%;
  max-width: 50rem;
  margin: 1rem auto auto;
}
.template-child .content-label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  color: #3a3a3a;
  font-size: 105%;
  line-height: 1;
  white-space: nowrap;
  font-weight: 700;
}
@media (max-width: 768px) {
  .template-child .content-label {
    line-height: 1.6;
  }
}
.template-child .content-label::after {
  background-color: #3a3a3a;
  content: "";
  display: block;
  height: 1px;
  position: relative;
  width: 100%;
}
.template-child .content-media img {
  width: 100%;
  height: auto;
}
.template-child .content-media iframe {
  width: 100%;
  height: 100%;
  border: 0;
  aspect-ratio: 16/9;
}
.template-child .box-attention {
  position: relative;
  padding: 1.6rem 1.6rem 1.6rem 5.6rem;
  border-radius: 0.5rem;
}
.template-child .box-attention.mark_off {
  padding: 1.5rem 1.75rem;
}
.template-child .box-attention.mark_off .attention__label::before {
  display: none;
}
.template-child .box-attention .attention__label {
  position: relative;
  font-size: 115%;
  font-weight: 700;
}
.template-child .box-attention .attention__label::before {
  position: absolute;
  left: -2.6em;
  display: grid;
  place-content: center;
  width: 2em;
  height: 2em;
  content: "i";
  border-radius: 2em;
  font-family: "Sora", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "YuGothic", "メイリオ", "Meiryo", "Osaka", sans-serif;
  color: var(--white);
  font-size: 1em;
  line-height: 1;
}
.template-child .box-attention .attention__text {
  margin-top: 0.64rem;
  font-weight: 500;
}
.template-child table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  border-top: 1px solid #bebebe;
  border-left: 1px solid #bebebe;
}
.template-child table tr {
  background-color: var(--white);
}
.template-child table thead tr {
  background-color: #f6f6f6;
  color: var(--white);
}
.template-child table thead tr th {
  padding: 0.5rem;
}
.template-child table tbody tr th, .template-child table tbody tr td {
  padding: 1rem;
  border-bottom: 1px solid #bebebe;
  text-align: left;
}
.template-child table tbody tr th {
  background-color: #f6f6f6;
  line-height: 1.6;
}
.template-child table tbody tr td {
  border-right: 1px solid #bebebe;
}

@media (max-width: 768px) {
  .template-child .box-content {
    margin-bottom: 3rem;
  }
  .template-child .box-content__header,
  .template-child .box-content__body {
    padding-left: 14.9333333333vw;
    padding-right: 4.2666666667vw;
  }
  .template-child .box-content__header {
    padding-top: 3rem;
  }
  .template-child .box-content__header .section-title {
    font-size: 6.6666666667vw;
  }
  .template-child .box-content__header .section-title .section-number {
    top: 1.0666666667vw;
    left: -10.6666666667vw;
    border-bottom-width: 0.15rem;
    font-size: 4.2666666667vw;
  }
  .template-child .box-content__body {
    margin-bottom: 0;
  }
  .template-child .content-title {
    font-size: 5.6vw;
    margin: 0 0 1.5rem;
  }
  .template-child .box-attention {
    padding: 1.5rem 1.2rem;
  }
  .template-child .box-attention .attention__label {
    text-align: center;
    line-height: 1.8;
  }
  .template-child .box-attention .attention__label + dd {
    margin-top: 1rem;
  }
  .template-child .box-attention .attention__label::before {
    position: relative;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-bottom: 0.5rem;
  }
  .template-child table tbody tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .template-child table tbody tr th {
    border-right: 1px solid #bebebe;
    border-bottom: none;
    font-size: 115%;
    line-height: 1.6;
  }
}
.category-nav {
  border-top: 1px solid var(--border);
  background-color: rgba(246, 246, 246, 0.48);
}
.category-nav .container {
  padding: 4rem 1.5rem;
}

.categoryList {
  padding: 2rem 1.5rem 0;
}
@media (max-width: 768px) {
  .categoryList {
    padding: 8.5333333333vw 2.6666666667vw;
  }
}

#home .categoryList {
  width: 100%;
  padding-top: 0;
}
@media (max-width: 768px) {
  #home .categoryList {
    padding: 0 2.6666666667vw 6.4vw;
  }
}
#home #safety .p-categoryList .p-categoryList__number {
  color: #EC6C00;
  border-bottom-color: #EC6C00;
}
#home #safety .p-categoryList .p-categoryList__label strong {
  color: #EC6C00;
}
#home #safety .p-categoryList .is_active .p-categoryList__thumb {
  border-color: #EC6C00;
}
#home #points .p-categoryList .p-categoryList__number {
  color: #A6C859;
  border-bottom-color: #A6C859;
}
#home #points .p-categoryList .p-categoryList__label strong {
  color: #A6C859;
}
#home #points .p-categoryList .is_active .p-categoryList__thumb {
  border-color: #A6C859;
}
#home #situations .p-categoryList .p-categoryList__number {
  color: #7FC9D8;
  border-bottom-color: #7FC9D8;
}
#home #situations .p-categoryList .p-categoryList__label strong {
  color: #7FC9D8;
}
#home #situations .p-categoryList .is_active .p-categoryList__thumb {
  border-color: #7FC9D8;
}
#home #information .p-categoryList .p-categoryList__number {
  color: #E89BB5;
  border-bottom-color: #E89BB5;
}
#home #information .p-categoryList .p-categoryList__label strong {
  color: #E89BB5;
}
#home #information .p-categoryList .is_active .p-categoryList__thumb {
  border-color: #E89BB5;
}

.p-categoryList {
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-categoryList .p-categoryList__item {
  margin: 0;
  padding: 1rem 0.5rem;
}
.p-categoryList .p-categoryList__item.is_active {
  pointer-events: none;
}
.p-categoryList .p-categoryList__item.is_active .p-categoryList__thumb {
  border: 0.3rem solid #3a3a3a;
}
.p-categoryList .p-categoryList__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 0;
}
@media (max-width: 768px) {
  .p-categoryList .p-categoryList__link {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-categoryList .p-categoryList__link:hover .p-categoryList__thumb {
  -webkit-filter: drop-shadow(0 10px 24px rgba(15, 23, 42, 0.08));
          filter: drop-shadow(0 10px 24px rgba(15, 23, 42, 0.08));
}
.p-categoryList .p-categoryList__link:hover .p-categoryList__thumb figure {
  -webkit-transform: scale(1.16);
          transform: scale(1.16);
}
.p-categoryList .p-categoryList__thumb {
  display: block;
  width: 45%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 0.5rem;
  overflow: hidden;
  -webkit-transition: -webkit-filter 1s var(--ease-up);
  transition: -webkit-filter 1s var(--ease-up);
  transition: filter 1s var(--ease-up);
  transition: filter 1s var(--ease-up), -webkit-filter 1s var(--ease-up);
}
@media (max-width: 768px) {
  .p-categoryList .p-categoryList__thumb {
    width: 100%;
  }
}
.p-categoryList .p-categoryList__thumb figure {
  -webkit-transition: -webkit-transform 1s var(--ease-up);
  transition: -webkit-transform 1s var(--ease-up);
  transition: transform 1s var(--ease-up);
  transition: transform 1s var(--ease-up), -webkit-transform 1s var(--ease-up);
}
.p-categoryList .p-categoryList__body {
  width: 50%;
  padding: 0.5rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .p-categoryList .p-categoryList__body {
    width: 100%;
    padding-bottom: 0;
  }
}
.p-categoryList .p-categoryList__number {
  border-bottom: 3px solid #3a3a3a;
  font-size: 105%;
  line-height: 1.4;
  text-align: left;
}
@media (max-width: 768px) {
  .p-categoryList .p-categoryList__number {
    font-size: 85%;
  }
}
.p-categoryList .p-categoryList__label {
  text-align: left;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .p-categoryList .p-categoryList__label {
    font-size: 105%;
  }
}
.p-categoryList .p-categoryList__label strong {
  color: #3a3a3a;
  font-weight: 700;
}

.theme-safety main a {
  color: inherit;
}
.theme-safety .hero .hero-container {
  background-image: url("../img/bg_hero_01.webp");
}
.theme-safety .box-content__header .section-title span {
  color: #EC6C00;
}
.theme-safety .box-content__header .section-title .section-number {
  border-bottom-color: #EC6C00;
  color: #EC6C00;
}
.theme-safety .box-content__header .section-title strong {
  color: #EC6C00;
}
.theme-safety .content-title {
  color: #EC6C00;
}
.theme-safety .content-text .label,
.theme-safety .content-stack .label {
  color: #3a3a3a;
}
.theme-safety .content-text .marker,
.theme-safety .content-stack .marker {
  color: #EC6C00;
}
.theme-safety .box-banner {
  display: inline-block;
}
.theme-safety .box-attention {
  background-color: rgba(236, 108, 0, 0.32);
}
.theme-safety .box-attention .attention__label {
  color: #C86337;
}
.theme-safety .box-attention .attention__label::before {
  background-color: #C86337;
}
.theme-safety .category-nav {
  background-color: rgba(242, 183, 142, 0.16);
}
.theme-safety .p-categoryList .p-categoryList__number {
  color: #EC6C00;
  border-bottom-color: #EC6C00;
}
.theme-safety .p-categoryList .p-categoryList__label strong {
  color: #EC6C00;
}
.theme-safety .p-categoryList .is_active .p-categoryList__thumb {
  border-color: #EC6C00;
}
.theme-points main a {
  color: inherit;
}
.theme-points .hero .hero-container {
  background-image: url("../img/bg_hero_02.webp");
}
.theme-points .box-content__header .section-title span {
  color: #A6C859;
}
.theme-points .box-content__header .section-title .section-number {
  border-bottom-color: #A6C859;
  color: #A6C859;
}
.theme-points .box-content__header .section-title strong {
  color: #A6C859;
}
.theme-points .content-title {
  color: #A6C859;
}
.theme-points .content-text .label,
.theme-points .content-stack .label {
  color: #3a3a3a;
}
.theme-points .content-text .marker,
.theme-points .content-stack .marker {
  color: #A6C859;
}
.theme-points .box-banner {
  display: inline-block;
}
.theme-points .box-attention {
  background-color: rgba(166, 200, 89, 0.32);
}
.theme-points .box-attention .attention__label {
  color: #7FAB39;
}
.theme-points .box-attention .attention__label::before {
  background-color: #7FAB39;
}
.theme-points .category-nav {
  background-color: rgba(201, 227, 144, 0.16);
}
.theme-points .p-categoryList .p-categoryList__number {
  color: #A6C859;
  border-bottom-color: #A6C859;
}
.theme-points .p-categoryList .p-categoryList__label strong {
  color: #A6C859;
}
.theme-points .p-categoryList .is_active .p-categoryList__thumb {
  border-color: #A6C859;
}
.theme-situations main a {
  color: inherit;
}
.theme-situations .hero .hero-container {
  background-image: url("../img/bg_hero_03.webp");
}
.theme-situations .box-content__header .section-title span {
  color: #7FC9D8;
}
.theme-situations .box-content__header .section-title .section-number {
  border-bottom-color: #7FC9D8;
  color: #7FC9D8;
}
.theme-situations .box-content__header .section-title strong {
  color: #7FC9D8;
}
.theme-situations .content-title {
  color: #7FC9D8;
}
.theme-situations .content-text .label,
.theme-situations .content-stack .label {
  color: #3a3a3a;
}
.theme-situations .content-text .marker,
.theme-situations .content-stack .marker {
  color: #7FC9D8;
}
.theme-situations .box-banner {
  display: inline-block;
}
.theme-situations .box-attention {
  background-color: rgba(127, 201, 216, 0.32);
}
.theme-situations .box-attention .attention__label {
  color: #4794A9;
}
.theme-situations .box-attention .attention__label::before {
  background-color: #4794A9;
}
.theme-situations .category-nav {
  background-color: rgba(160, 215, 226, 0.16);
}
.theme-situations .p-categoryList .p-categoryList__number {
  color: #7FC9D8;
  border-bottom-color: #7FC9D8;
}
.theme-situations .p-categoryList .p-categoryList__label strong {
  color: #7FC9D8;
}
.theme-situations .p-categoryList .is_active .p-categoryList__thumb {
  border-color: #7FC9D8;
}
.theme-information main a {
  color: #C0617E;
}
.theme-information .hero .hero-container {
  background-image: url("../img/bg_hero_04.webp");
}
.theme-information .box-content__header .section-title span {
  color: #E89BB5;
}
.theme-information .box-content__header .section-title .section-number {
  border-bottom-color: #E89BB5;
  color: #E89BB5;
}
.theme-information .box-content__header .section-title strong {
  color: #E89BB5;
}
.theme-information .content-title {
  color: #E89BB5;
}
.theme-information .content-text .label,
.theme-information .content-text .marker,
.theme-information .content-stack .label,
.theme-information .content-stack .marker {
  color: #C0617E;
}
.theme-information .box-banner {
  display: inline-block;
}
.theme-information .box-attention {
  background-color: rgba(232, 155, 181, 0.32);
}
.theme-information .box-attention .attention__label {
  color: #C0617E;
}
.theme-information .box-attention .attention__label::before {
  background-color: #C0617E;
}

@media (max-width: 960px) {
  .media-grid {
    grid-template-columns: 1fr;
  }
  body:not(#home) .global-nav {
    display: none;
  }
}
/* bnr
------------------------------------------------------------*/
.bnr {
  position: relative;
  cursor: pointer;
  width: 100%;
  min-width: 320px;
  padding: 0;
  border: 3px solid #dddddd;
  border-radius: 0.5rem;
  background-color: #fff;
}
@media (max-width: 768px) {
  .bnr {
    -webkit-transition: none;
    transition: none;
  }
}
.bnr-wrapper {
  display: grid;
  place-content: center;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* btn
------------------------------------------------------------*/
.btn {
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  min-width: 320px;
  padding: 0.8rem 0;
  background-color: #3a3a3a;
  border-radius: 100vw;
  color: var(--white) !important;
  letter-spacing: 0.05em;
  -webkit-transition: color 0.4s var(--ease-up), background-color 0.4s var(--ease-up);
  transition: color 0.4s var(--ease-up), background-color 0.4s var(--ease-up);
  font-weight: 700;
}
@media (max-width: 768px) {
  .btn {
    -webkit-transition: none;
    transition: none;
    padding: 3.2vw 0;
    font-size: 3.7333333333vw;
  }
}
.btn:hover {
  opacity: 1;
  color: var(--white) !important;
  background-color: var(--black);
}
@media (max-width: 768px) {
  .btn:hover {
    background-color: #555555;
  }
}
.btn-wrapper {
  display: grid;
  place-content: center;
  width: 100%;
  margin: 0;
  padding: 0;
}
.btn-secondary span {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
}
@media (max-width: 768px) {
  .btn-secondary span {
    gap: 2.1333333333vw;
  }
}
.btn-secondary span::before {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  -webkit-mask-position: 50% 50%;
  mask-position: 50% 50%;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-transition: none;
  transition: none;
  -webkit-mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M0%2C0h6.86v6.86H0V0ZM8.57%2C0h6.86v6.86h-6.86V0ZM17.14%2C0h6.86v6.86h-6.86V0ZM0%2C8.57h6.86v6.86H0v-6.86ZM8.57%2C8.57h6.86v6.86h-6.86v-6.86ZM17.14%2C8.57h6.86v6.86h-6.86v-6.86ZM0%2C17.14h6.86v6.86H0v-6.86ZM8.57%2C17.14h6.86v6.86h-6.86v-6.86ZM17.14%2C17.14h6.86v6.86h-6.86v-6.86Z%22%2F%3E%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M0%2C0h6.86v6.86H0V0ZM8.57%2C0h6.86v6.86h-6.86V0ZM17.14%2C0h6.86v6.86h-6.86V0ZM0%2C8.57h6.86v6.86H0v-6.86ZM8.57%2C8.57h6.86v6.86h-6.86v-6.86ZM17.14%2C8.57h6.86v6.86h-6.86v-6.86ZM0%2C17.14h6.86v6.86H0v-6.86ZM8.57%2C17.14h6.86v6.86h-6.86v-6.86ZM17.14%2C17.14h6.86v6.86h-6.86v-6.86Z%22%2F%3E%3C%2Fsvg%3E");
  background-color: var(--white);
}
@media (max-width: 768px) {
  .btn-secondary span::before {
    width: 3.7333333333vw;
    height: 3.7333333333vw;
  }
}

/* .btn-pagetop
------------------------------------------------------------*/
.btn-pagetop {
  position: fixed;
  z-index: 9;
  right: 2rem;
  bottom: 2rem;
  opacity: 0;
  -webkit-transition: opacity 0.64s var(--ease-up), transform 0.64svar --ease-up;
  -webkit-transition: opacity 0.64s var(--ease-up), -webkit-transform 0.64s var(--ease-up);
  transition: opacity 0.64s var(--ease-up), -webkit-transform 0.64s var(--ease-up);
  transition: opacity 0.64s var(--ease-up), transform 0.64s var(--ease-up);
  transition: opacity 0.64s var(--ease-up), transform 0.64s var(--ease-up), -webkit-transform 0.64s var(--ease-up);
  -webkit-transform: translateY(2.5rem);
  transform: translateY(2.5rem);
  will-change: opacity, transform;
}
.btn-pagetop.is_active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.btn-pagetop.btn-wrapper {
  display: grid;
  width: 4rem;
  height: 4rem;
}
@media (max-width: 768px) {
  .btn-pagetop.btn-wrapper {
    right: 1rem;
    bottom: 1rem;
  }
}
.btn-pagetop.btn-wrapper button {
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.btn-pagetop .btn-pagetop__icon {
  position: relative;
  display: grid;
  place-content: center;
  background-color: #3a3a3a;
  width: 4rem;
  height: 4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 100%;
  -webkit-transition: background-color 0.4s var(--ease-up);
  transition: background-color 0.4s var(--ease-up);
  will-change: background-color;
}
@media (max-width: 768px) {
  .btn-pagetop .btn-pagetop__icon {
    width: 3rem;
    height: 3rem;
  }
}
.btn-pagetop .btn-pagetop__icon::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  -webkit-mask-position: 50% 50%;
  mask-position: 50% 50%;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-transition: none;
  transition: none;
  -webkit-mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2029%2029%22%3E%3Cpath%20d%3D%22M13.829%2C18.827l3.851-3.854h-8.18v-.95h8.18l-3.851-3.851.673-.672%2C4.998%2C4.998-4.998%2C5.002-.673-.673Z%22%2F%3E%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2029%2029%22%3E%3Cpath%20d%3D%22M13.829%2C18.827l3.851-3.854h-8.18v-.95h8.18l-3.851-3.851.673-.672%2C4.998%2C4.998-4.998%2C5.002-.673-.673Z%22%2F%3E%3C%2Fsvg%3E");
  background-color: var(--white);
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media (max-width: 768px) {
  .btn-pagetop .btn-pagetop__icon::before {
    width: 2rem;
    height: 2rem;
  }
}
.btn-pagetop:hover .btn-pagetop__icon {
  background-color: var(--black);
}
@media (max-width: 768px) {
  .btn-pagetop:hover .btn-pagetop__icon {
    background-color: #3a3a3a;
  }
}

.long-url {
  word-break: break-all;
}

.eng {
  font-family: "Sora", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "YuGothic", "メイリオ", "Meiryo", "Osaka", sans-serif;
}

.tx-xlarge {
  font-size: 160%;
  line-height: 1.6;
}

.tx-large {
  font-size: 120%;
  line-height: 1.6;
}

.tx-normal {
  font-size: 100%;
  line-height: 1.8;
}

.tx-small {
  font-size: 85%;
}

.tx-xsmall {
  font-size: 70%;
}

.tx-center {
  text-align: center;
}

.tx-right {
  text-align: right;
}

.tx-left {
  text-align: left;
}

.mt-8 {
  margin-top: 0.5rem;
}

.mt-16 {
  margin-top: 1rem;
}

.mt-24 {
  margin-top: 1.5rem;
}

.mt-32 {
  margin-top: 2rem;
}

.mt-40 {
  margin-top: 2.5rem;
}

.mt-48 {
  margin-top: 3rem;
}

.mt-64 {
  margin-top: 4rem;
}

.mb-8 {
  margin-bottom: 0.5rem;
}

.mb-16 {
  margin-bottom: 1rem;
}

.mb-24 {
  margin-bottom: 1.5rem;
}

.mb-32 {
  margin-bottom: 2rem;
}

.mb-40 {
  margin-bottom: 2.5rem;
}

.mb-48 {
  margin-bottom: 3rem;
}

.mb-64 {
  margin-bottom: 4rem;
}

.pt-8 {
  padding-top: 0.5rem;
}

.pt-16 {
  padding-top: 1rem;
}

.pt-24 {
  padding-top: 1.5rem;
}

.pt-32 {
  padding-top: 2rem;
}

.pt-40 {
  padding-top: 2.5rem;
}

.pt-48 {
  padding-top: 3rem;
}

.pt-64 {
  padding-top: 4rem;
}

.pb-8 {
  padding-bottom: 0.5rem;
}

.pb-16 {
  padding-bottom: 1rem;
}

.pb-24 {
  padding-bottom: 1.5rem;
}

.pb-32 {
  padding-bottom: 2rem;
}

.pb-40 {
  padding-bottom: 2.5rem;
}

.pb-48 {
  padding-bottom: 3rem;
}

.pb-64 {
  padding-bottom: 4rem;
}

.gap-8 {
  gap: 0.5rem;
}

.gap-16 {
  gap: 1rem;
}

.gap-24 {
  gap: 1.5rem;
}

.gap-32 {
  gap: 2rem;
}

.gap-40 {
  gap: 2.5rem;
}

.gap-48 {
  gap: 3rem;
}

.gap-64 {
  gap: 4rem;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.align-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.align-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.align-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.align-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.items-stretch {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.items-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.items-start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.items-end {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.indent {
  display: inline-block;
  padding-left: 1.15em;
}

@media (max-width: 960px) {
  .flex-md {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .flex-col-md {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flex-wrap-md {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .align-between-md {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .align-center-md {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .align-start-md {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .align-end-md {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .items-stretch-md {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .items-center-md {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .items-start-md {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .items-end-md {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .tx-center-md {
    text-align: center;
  }
  .tx-right-md {
    text-align: right;
  }
  .tx-left-md {
    text-align: left;
  }
  .indent-md {
    display: inline-block;
    padding-left: 1.15em;
  }
}
.grid {
  display: grid;
}

.grid-center {
  place-content: center;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-2_2-1 {
  grid-template-columns: 2fr 1fr;
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.w100 {
  width: 100%;
}

.w80 {
  width: 80%;
}

.w70 {
  width: 70%;
}

.w60 {
  width: 60%;
}

.w50 {
  width: 50%;
}

.w40 {
  width: 40%;
}

.w30 {
  width: 30%;
}

.w20 {
  width: 20%;
}

.img-float-top {
  position: relative;
  top: -6rem;
  margin-bottom: -6rem;
}

@media (max-width: 960px) {
  .grid-cols-1-md {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-2-md {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gap-0-md {
    gap: unset;
  }
  .gap-8-md {
    gap: 0.5rem;
  }
  .gap-16-md {
    gap: 1rem;
  }
  .gap-24-md {
    gap: 1.5rem;
  }
  .gap-32-md {
    gap: 2rem;
  }
  .gap-40-md {
    gap: 2.5rem;
  }
  .w100-md {
    width: 100%;
  }
  .w80-md {
    width: 80%;
  }
  .w70-md {
    width: 70%;
  }
  .w60-md {
    width: 60%;
  }
  .w50-md {
    width: 50%;
  }
  .w40-md {
    width: 40%;
  }
  .w30-md {
    width: 30%;
  }
  .w20-md {
    width: 20%;
  }
}
@media (max-width: 768px) {
  .divider {
    margin: 3rem 0;
  }
  .grid-cols-1-sm {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-2-sm {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gap-0-sm {
    gap: unset;
  }
  .gap-8-sm {
    gap: 0.5rem;
  }
  .gap-16-sm {
    gap: 1rem;
  }
  .gap-24-sm {
    gap: 1.5rem;
  }
  .gap-32-sm {
    gap: 2rem;
  }
  .w100-sm {
    width: 100%;
  }
  .w80-sm {
    width: 80%;
  }
  .w70-sm {
    width: 70%;
  }
  .w60-sm {
    width: 60%;
  }
  .w50-sm {
    width: 50%;
  }
  .w40-sm {
    width: 40%;
  }
  .w30-sm {
    width: 30%;
  }
  .w20-sm {
    width: 20%;
  }
  .img-float-reset-sm {
    position: relative;
    top: unset;
    margin-bottom: unset;
  }
}
#home .box-spread {
  scroll-margin-top: 4rem;
}
@media (max-width: 768px) {
  #home .box-spread {
    scroll-margin-top: 3rem;
  }
}