@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;700&display=swap");
:root {
  --blue: #27B6D6;
  --indigo: #0B1D38;
  --purple: #6f42c1;
  --pink: #d63384;
  --red: #FF070B;
  --orange: #fd7e14;
  --yellow: #FBC70D;
  --green: #198754;
  --teal: #20c997;
  --cyan: #0dcaf0;
  --white: #fff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --black: #000;
  --primary: #FBC70D;
  --secondary: #adb5bd;
  --info: #27B6D6;
  --danger: #FF070B;
  --light: #f8f9fa;
  --dark: #0B1D38;
  --body-color:#212529;
  --body-bg:#fff;
  --mark-color:#FBC70D;
  --link-color:#27B6D6;
  --link-hover-color:#7cd4e7;
  --border-color:#dee2e6;
  --component-active-color:#fff;
  --component-active-bg:#FBC70D;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  will-change: transform;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.25s ease;
  transition: height 0.25s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    -webkit-transition: none;
    transition: none;
  }
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  -webkit-overflow-scrolling: touch;
}

body {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--body-color);
  background-color: var(--body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 2px solid var(--border-color);
  opacity: 1;
}

h6, h5, h4, h3, h2, h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  color: var(--body-color);
}

h1 {
  font-size: 1.875rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

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

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 1em;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: 700;
}

small {
  font-size: 0.875rem;
}

mark {
  padding: 0.1875em;
  color: var(--body-color);
  background-color: var(--mark-color);
}

sub,
sup {
  position: relative;
  font-size: 75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #27B6D6;
  text-decoration: none;
}
a:hover {
  color: #7cd4e7;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875rem;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875rem;
  color: inherit;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875rem;
  color: var(--body-bg);
  background-color: var(--body-color);
  border-radius: 0.125rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: inherit;
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

html {
  font-size: 100%;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  scroll-behavior: smooth;
}
main {
  position: relative;
  z-index: 1;
}

button {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  inline-size: -webkit-fit-content;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
button:focus {
  outline: none;
}

img {
  max-width: 100%;
}
img[src$=".svg"] {
  width: 100%;
}

a {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
a:hover {
  text-decoration: none;
}
a.disabled {
  color: #ced4da;
  pointer-events: none;
}

@media (max-width: 767.98px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
.c-accordion {
  --accordion-color:#212529;
  --accordion-bg:#fff;
  --accordion-border-color:#dee2e6;
}
.c-accordion:not(:last-of-type) {
  margin-bottom: 1rem;
}
.c-accordion-head, .c-accordion-body {
  background-color: var(--accordion-bg);
}
.c-accordion-head {
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding: 1rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1rem;
  width: 100%;
  border-radius: 0.35rem;
  text-align: left;
  border: 2px solid var(--accordion-border-color);
  color: var(--accordion-color);
  margin: 0;
}
.c-accordion-head::after {
  font-family: "icon";
  content: "\e902";
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-left: auto;
  color: var(--accordion-color);
}
.c-accordion-head.is-open, .c-accordion-head:not(.collapsed) {
  border-radius: 0.35rem 0.35rem 0 0;
}
.c-accordion-head.is-open::after, .c-accordion-head:not(.collapsed)::after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.c-accordion-head:hover {
  background-color: #f2f2f2;
}
.c-accordion-body {
  position: relative;
  border: 2px solid var(--accordion-border-color);
  border-top: none;
  padding: 1rem 1rem;
  border-radius: 0 0 0.35rem 0.35rem;
}

.c-badge {
  --badge-padding-x: 1em;
  --badge-padding-y: 0.5em;
  --badge-color: #212529;
  --badge-bg: #fff;
  --badge-border-color: #dee2e6;
  display: inline-block;
  padding: var(--badge-padding-y) var(--badge-padding-x);
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  color: var(--badge-color);
  background-color: var(--badge-bg);
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.125rem;
  border: 2px solid var(--badge-border-color);
}
.c-badge:empty {
  display: none;
}
.c-badge.c-badge-primary {
  --badge-color: #fff;
  --badge-bg: #FBC70D;
  --badge-border-color: #FBC70D;
}
.c-badge.c-badge-secondary {
  --badge-color: #fff;
  --badge-bg: #adb5bd;
  --badge-border-color: #adb5bd;
}
.c-badge.c-badge-info {
  --badge-color: #fff;
  --badge-bg: #27B6D6;
  --badge-border-color: #27B6D6;
}
.c-badge.c-badge-danger {
  --badge-color: #fff;
  --badge-bg: #FF070B;
  --badge-border-color: #FF070B;
}
.c-badge.c-badge-light {
  --badge-color: #212529;
  --badge-bg: #f8f9fa;
  --badge-border-color: #f8f9fa;
}
.c-badge.c-badge-dark {
  --badge-color: #fff;
  --badge-bg: #0B1D38;
  --badge-border-color: #0B1D38;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.c-btn {
  --btn-color:#212529;
  --btn-border-color:#dee2e6;
  display: inline-block;
  padding: 0.75rem 1rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: inherit;
  font-weight: 400;
  line-height: 1.75;
  color: var(--btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 2px solid var(--btn-border-color);
  border-radius: 0.35rem;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.c-btn:hover {
  color: #7cd4e7;
  border-color: #7cd4e7;
}
.c-btn.disabled {
  color: #ced4da;
  border-color: #ced4da;
}
.c-btn.c-btn-sm {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
}
.c-btn.c-btn-lg {
  padding: 2rem 2.5rem;
  font-size: 1.25rem;
}
.c-btn-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0 0.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-btn-icon-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-btn-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 25rem;
  margin-left: auto;
  margin-right: auto;
}

.c-btn-link {
  background-color: transparent;
  border-color: transparent;
  color: #27B6D6;
}
.c-btn-link:hover {
  color: #7cd4e7;
  background-color: transparent;
  border-color: transparent;
}

.c-btn-primary {
  --btn-bg:#FBC70D;
  --btn-color: #fff;
  --btn-border-color:#FBC70D;
  --btn-hover-bg:#d5a90b;
  background-color: var(--btn-bg);
  border-color: var(--btn-bg);
  color: var(--btn-color);
}
.c-btn-primary:hover {
  background-color: var(--success);
  border-color: var(--success);
  color: var(--btn-color);
}
.c-btn-primary:hover svg {
  fill: var(--btn-color);
}

.c-btn-outline-primary {
  --btn-bg:#FBC70D;
  --btn-color: #FBC70D;
  --btn-border-color:#FBC70D;
  background-color: #fff;
  border-color: var(--btn-border-color);
  color: var(--btn-color);
}
.c-btn-outline-primary svg {
  fill: var(--btn-color);
}
.c-btn-outline-primary:hover {
  background-color: var(--btn-bg);
  border-color: var(--btn-border-color);
  color: var(--white);
}
.c-btn-outline-primary:hover svg {
  fill: var(--btn-color);
}
.c-btn-outline-primary.disabled {
  border-color: var(--btn-bg);
  color: var(--btn-color);
  opacity: 0.5;
}
.c-btn-outline-primary.disabled svg {
  fill: var(--btn-color);
}

.c-btn-check {
  display: none;
}
.c-btn-check + .c-btn {
  --btn-active-bg:#FBC70D;
  --btn-active-color:#fff;
  --btn-active-border-color:#FBC70D;
  background-color: transparent;
  border-color: var(--btn-active-bg);
  color: var(--btn-active-bg);
}
.c-btn-check:checked + .c-btn {
  background-color: var(--btn-active-bg);
  border-color: var(--btn-active-bg);
  color: var(--btn-active-color);
}

.c-btn-secondary {
  --btn-bg:#adb5bd;
  --btn-color: #fff;
  --btn-border-color:#adb5bd;
  --btn-hover-bg:#939aa1;
  background-color: var(--btn-bg);
  border-color: var(--btn-bg);
  color: var(--btn-color);
}
.c-btn-secondary svg {
  fill: var(--btn-color);
}
.c-btn-secondary:hover {
  background-color: var(--btn-hover-bg);
  border-color: var(--btn-hover-bg);
  color: var(--btn-color);
}
.c-btn-secondary:hover svg {
  fill: var(--btn-color);
}
.c-btn-secondary.disabled {
  border-color: var(--btn-bg);
  color: var(--btn-color);
  opacity: 0.5;
}

.c-btn-outline-secondary {
  --btn-bg:#adb5bd;
  --btn-color: #adb5bd;
  --btn-border-color:#adb5bd;
  background-color: #fff;
  border-color: var(--btn-border-color);
  color: var(--btn-color);
}
.c-btn-outline-secondary svg {
  fill: var(--btn-color);
}
.c-btn-outline-secondary:hover {
  background-color: var(--btn-bg);
  border-color: var(--btn-border-color);
  color: var(--white);
}
.c-btn-outline-secondary:hover svg {
  fill: var(--btn-color);
}
.c-btn-outline-secondary.disabled {
  border-color: var(--btn-bg);
  color: var(--btn-color);
  opacity: 0.5;
}
.c-btn-outline-secondary.disabled svg {
  fill: var(--btn-color);
}

.c-btn-check {
  display: none;
}
.c-btn-check + .c-btn {
  --btn-active-bg:#FBC70D;
  --btn-active-color:#fff;
  --btn-active-border-color:#FBC70D;
  background-color: transparent;
  border-color: var(--btn-active-bg);
  color: var(--btn-active-bg);
}
.c-btn-check:checked + .c-btn {
  background-color: var(--btn-active-bg);
  border-color: var(--btn-active-bg);
  color: var(--btn-active-color);
}

.c-btn-info {
  --btn-bg:#27B6D6;
  --btn-color: #fff;
  --btn-border-color:#27B6D6;
  --btn-hover-bg:#219bb6;
  background-color: var(--btn-bg);
  border-color: var(--btn-bg);
  color: var(--btn-color);
}
.c-btn-info svg {
  fill: var(--btn-color);
}
.c-btn-info:hover {
  background-color: var(--btn-hover-bg);
  border-color: var(--btn-hover-bg);
  color: var(--btn-color);
}
.c-btn-info:hover svg {
  fill: var(--btn-color);
}
.c-btn-info.disabled {
  border-color: var(--btn-bg);
  color: var(--btn-color);
  opacity: 0.5;
}

.c-btn-outline-info {
  --btn-bg:#27B6D6;
  --btn-color: #27B6D6;
  --btn-border-color:#27B6D6;
  background-color: #fff;
  border-color: var(--btn-border-color);
  color: var(--btn-color);
}
.c-btn-outline-info svg {
  fill: var(--btn-color);
}
.c-btn-outline-info:hover {
  background-color: var(--btn-bg);
  border-color: var(--btn-border-color);
  color: var(--white);
}
.c-btn-outline-info:hover svg {
  fill: var(--btn-color);
}
.c-btn-outline-info.disabled {
  border-color: var(--btn-bg);
  color: var(--btn-color);
  opacity: 0.5;
}
.c-btn-outline-info.disabled svg {
  fill: var(--btn-color);
}

.c-btn-check {
  display: none;
}
.c-btn-check + .c-btn {
  --btn-active-bg:#FBC70D;
  --btn-active-color:#fff;
  --btn-active-border-color:#FBC70D;
  background-color: transparent;
  border-color: var(--btn-active-bg);
  color: var(--btn-active-bg);
}
.c-btn-check:checked + .c-btn {
  background-color: var(--btn-active-bg);
  border-color: var(--btn-active-bg);
  color: var(--btn-active-color);
}

.c-btn-light {
  --btn-bg:#f8f9fa;
  --btn-color: #fff;
  --btn-border-color:#f8f9fa;
  --btn-hover-bg:#d3d4d5;
  --btn-color: #212529;
  background-color: var(--btn-bg);
  border-color: var(--btn-bg);
  color: var(--btn-color);
}
.c-btn-light svg {
  fill: var(--btn-color);
}
.c-btn-light:hover {
  background-color: var(--btn-hover-bg);
  border-color: var(--btn-hover-bg);
  color: var(--btn-color);
}
.c-btn-light:hover svg {
  fill: var(--btn-color);
}
.c-btn-light.disabled {
  border-color: var(--btn-bg);
  color: var(--btn-color);
  opacity: 0.5;
}

.c-btn-outline-light {
  --btn-bg:#f8f9fa;
  --btn-color: #f8f9fa;
  --btn-border-color:#f8f9fa;
  background-color: #fff;
  border-color: var(--btn-border-color);
  color: var(--btn-bg);
}
.c-btn-outline-light svg {
  fill: var(--btn-color);
}
.c-btn-outline-light:hover {
  background-color: var(--btn-bg);
  border-color: var(--btn-border-color);
  color: var(--body-color);
}
.c-btn-outline-light:hover svg {
  fill: var(--btn-color);
}
.c-btn-outline-light.disabled {
  border-color: var(--btn-bg);
  color: var(--btn-color);
  opacity: 0.5;
}
.c-btn-outline-light.disabled svg {
  fill: var(--btn-color);
}

.c-btn-check {
  display: none;
}
.c-btn-check + .c-btn {
  --btn-active-bg:#FBC70D;
  --btn-active-color:#fff;
  --btn-active-border-color:#FBC70D;
  background-color: transparent;
  border-color: var(--btn-active-bg);
  color: var(--btn-active-bg);
}
.c-btn-check:checked + .c-btn {
  background-color: var(--btn-active-bg);
  border-color: var(--btn-active-bg);
  color: var(--btn-active-color);
}

.c-btn-dark {
  --btn-bg:#0B1D38;
  --btn-color: #fff;
  --btn-border-color:#0B1D38;
  --btn-hover-bg:#091930;
  --btn-hover-bg:#303f56;
  background-color: var(--btn-bg);
  border-color: var(--btn-bg);
  color: var(--btn-color);
}
.c-btn-dark svg {
  fill: var(--btn-color);
}
.c-btn-dark:hover {
  background-color: var(--btn-hover-bg);
  border-color: var(--btn-hover-bg);
  color: var(--btn-color);
}
.c-btn-dark:hover svg {
  fill: var(--btn-color);
}
.c-btn-dark.disabled {
  border-color: var(--btn-bg);
  color: var(--btn-color);
  opacity: 0.5;
}

.c-btn-outline-dark {
  --btn-bg:#0B1D38;
  --btn-color: #0B1D38;
  --btn-border-color:#0B1D38;
  background-color: #fff;
  border-color: var(--btn-border-color);
  color: var(--btn-color);
}
.c-btn-outline-dark svg {
  fill: var(--btn-color);
}
.c-btn-outline-dark:hover {
  background-color: var(--btn-bg);
  border-color: var(--btn-border-color);
  color: var(--white);
}
.c-btn-outline-dark:hover svg {
  fill: var(--btn-color);
}
.c-btn-outline-dark.disabled {
  border-color: var(--btn-bg);
  color: var(--btn-color);
  opacity: 0.5;
}
.c-btn-outline-dark.disabled svg {
  fill: var(--btn-color);
}

.c-btn-check {
  display: none;
}
.c-btn-check + .c-btn {
  --btn-active-bg:#FBC70D;
  --btn-active-color:#fff;
  --btn-active-border-color:#FBC70D;
  background-color: transparent;
  border-color: var(--btn-active-bg);
  color: var(--btn-active-bg);
}
.c-btn-check:checked + .c-btn {
  background-color: var(--btn-active-bg);
  border-color: var(--btn-active-bg);
  color: var(--btn-active-color);
}

.c-card {
  --card-bg:#f8f9fa;
  --card-color:#212529;
  --card-header-bg:#FBC70D;
  --card-header-color:#fff;
  --card-border-color:#f8f9fa;
  color: var(--card-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: none;
          box-shadow: none;
  word-wrap: break-word;
  position: relative;
  border-radius: 0.35rem;
}
.c-card > *:first-child {
  border-radius: 0.35rem 0.35rem 0 0;
}
.c-card > *:last-child {
  border-radius: 0 0 0.35rem 0.35rem;
}
.c-card > *:only-child {
  border-radius: 0.35rem;
}
.c-card-thum {
  aspect-ratio: 1.7777777778;
}
.c-card-head {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background-color: var(--card-header-bg);
  color: var(--card-header-color);
  padding: 1rem 1rem;
  border-bottom: var(--card-border-color) solid 2px;
  border-radius: 0.35rem 0.35rem 0 0;
  border: var(--card-border-color) solid 2px;
  background-color: var(--card-header-bg);
}
.c-card-head h1,
.c-card-head h2,
.c-card-head h3,
.c-card-head h4,
.c-card-head h5,
.c-card-head h6,
.c-card-head p {
  margin-bottom: 0;
}
.c-card-head + .c-card-body {
  border-top: none;
}
.c-card-body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 1rem 1rem;
  border: var(--card-border-color) solid 2px;
  background-color: var(--card-bg);
}
.c-card-body + .c-card-foot {
  border-top: none;
}
.c-card-foot {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-top: auto;
  padding: 1rem 1rem;
  border: var(--card-border-color) solid 2px;
  background-color: var(--card-bg);
}

.c-frame-video,
.wp-block-embed-youtube {
  overflow: hidden;
  border-radius: 0.35rem;
}
.c-frame-video iframe,
.c-frame-video video,
.wp-block-embed-youtube iframe,
.wp-block-embed-youtube video {
  width: 100%;
  height: auto;
  aspect-ratio: 1.7777777778;
}

.c-frame-x,
.wp-block-embed-twitter {
  aspect-ratio: 1.3333333333;
  overflow: auto;
}
@media (max-width: 767.98px) {
  .c-frame-x,
  .wp-block-embed-twitter {
    aspect-ratio: 1;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.c-frame-x iframe,
.c-frame-x video,
.wp-block-embed-twitter iframe,
.wp-block-embed-twitter video {
  width: 100%;
  height: auto;
}

.c-title-sec {
  margin-bottom: clamp(2rem, 4.1666666667vw, 3rem);
  text-align: center;
}
.c-title-sec-icon {
  width: 6.25rem;
  margin: 0 auto 1rem;
}
.c-title-sec h1,
.c-title-sec h2,
.c-title-sec h3,
.c-title-sec h4,
.c-title-sec h5,
.c-title-sec h6,
.c-title-sec p {
  font-size: clamp(1.5rem, 3.125vw, 1.875rem);
  font-variant: 700;
}
.c-title-sec h1 strong,
.c-title-sec h2 strong,
.c-title-sec h3 strong,
.c-title-sec h4 strong,
.c-title-sec h5 strong,
.c-title-sec h6 strong,
.c-title-sec p strong {
  font-size: 1.25em;
  line-height: 1;
}
@media (max-width: 575.98px) {
  .c-title-sec h1 span,
  .c-title-sec h2 span,
  .c-title-sec h3 span,
  .c-title-sec h4 span,
  .c-title-sec h5 span,
  .c-title-sec h6 span,
  .c-title-sec p span {
    font-size: clamp(1rem, 3.125vw, 1.875rem);
  }
}

.c-title-box {
  text-align: center;
  font-size: clamp(1.25rem, 2.4193548387vw, 1.625rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 4.1666666667vw, 2rem);
}
.c-title-box::after {
  content: "";
  display: block;
  margin: 1rem auto 0;
  width: 6.25rem;
  height: 0.3125rem;
  background-image: url(../images/line.svg);
  background-repeat: repeat-y;
}

.c-lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(1.125rem, 3.125vw, 1.875rem);
  letter-spacing: 0.025em;
}
.c-lead-sm {
  font-size: clamp(1rem, 2.6041666667vw, 1.25rem);
}

.c-icon .b {
  fill: var(--body-color);
}
.c-icon .bl {
  fill: var(--info);
}
.c-icon .y {
  fill: var(--primary);
}

@font-face {
  font-family: "icon";
  src: url("fonts/icon.eot?v3h12v");
  src: url("fonts/icon.eot?v3h12v#iefix") format("embedded-opentype"), url("fonts/icon.ttf?v3h12v") format("truetype"), url("fonts/icon.woff?v3h12v") format("woff"), url("fonts/icon.svg?v3h12v#icon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-calculator:before {
  content: "\e906";
}

.icon-check-circle-fill:before {
  content: "\e905";
}

.icon-envelope:before {
  content: "\e900";
}

.icon-telephone-fill:before {
  content: "\e901";
}

.icon-caret-down:before {
  content: "\e902";
}

.icon-arrow-down:before {
  content: "\e903";
}

.icon-arrow-right:before {
  content: "\e904";
}

.list-brackets {
  counter-reset: brackets;
  list-style: none;
}
.list-brackets > li {
  position: relative;
  padding-left: 2.25em;
}
.list-brackets > li::before {
  counter-increment: brackets;
  content: "( " counter(brackets) " ) ";
  position: absolute;
  top: 0;
  left: 0;
  min-width: 2.125rem;
}

.c-list-astor {
  list-style: none;
  padding-left: 1.5em;
}
.c-list-astor li {
  position: relative;
}
.c-list-astor li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: -1em;
}

.c-list-border {
  list-style: none;
  padding-left: 1.5em;
}
.c-list-border li {
  position: relative;
}
.c-list-border li::before {
  content: "";
  position: absolute;
  top: 0.875em;
  left: -1.5em;
  width: 1em;
  height: 2px;
  background-color: #212529;
}

.c-list-check {
  list-style: none;
  padding-left: 0;
}
.c-list-check li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1.5em;
}
.c-list-check li::before {
  font-family: "icon";
  content: "\e905";
  font-size: 1em;
  position: absolute;
  top: 0em;
  left: 0;
}
.c-list-check li:last-child {
  margin-bottom: 0;
}

#c-loading {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  z-index: 9999;
  top: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  background-color: var(--body-bg);
  -webkit-transition: all 1s;
  transition: all 1s;
}
@media (max-width: 575.98px) {
  #c-loading {
    height: 100svh;
  }
}
#c-loading.-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

table {
  caption-side: top;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--table-caption-color);
  text-align: left;
}

th {
  font-weight: 700;
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

.c-table {
  --table-color:#212529;
  --table-bg:#fff;
  --table-striped-color:#212529;
  --table-striped-bg:rgba(33, 37, 41, 0.05);
  --table-active-color:#212529;
  --table-active-bg:rgba(33, 37, 41, 0.1);
  --table-hover-color:#212529;
  --table-hover-bg:rgba(33, 37, 41, 0.075);
  --table-border-color:#dee2e6;
  --table-caption-color:#adb5bd;
  width: 100%;
  margin-bottom: 1rem;
  vertical-align: top;
  border-color: var(--table-border-color);
}
.c-table > :not(caption) > * > * {
  padding: 1rem 0.75rem;
  color: var(--table-color);
  background-color: var(--table-bg);
  border-bottom-width: 2px;
}
.c-table.c-table-sm > :not(caption) > * > * {
  padding: 0.5rem 0.25rem;
}

.c-table-bordered > :not(caption) > * {
  border-width: 2px 0;
}
.c-table-bordered > :not(caption) > * > * {
  border-width: 0 2px;
}

.c-table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

.c-table-scroll-hint {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
}
.c-table-scroll-hint .i {
  width: 2em;
  fill: var(--white);
}
.c-table-scroll-hint-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 7.5rem;
  position: relative;
  z-index: 1;
}
.c-table-scroll-hint .i-arrow-left,
.c-table-scroll-hint .i-arrow-right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
.c-table-scroll-hint .i-hand {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}

.c-table-striped > tbody > tr:nth-of-type(odd) > * {
  background-color: var(--table-striped-bg);
  color: var(--table-striped-color);
}

.c-page-nav-item {
  background-color: var(--gray-200);
  width: 100%;
  text-align: center;
  display: block;
  padding: 0.75rem calc(1rem + 1em);
  color: var(--body-color);
  border-radius: 0.35rem;
  position: relative;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.5;
  height: 5.625rem;
}
.c-page-nav-item .arrow {
  position: absolute;
  top: 50%;
  right: 1em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--info);
  width: 1.25em;
  height: 1.25em;
  line-height: 1.25em;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.c-page-nav-item .arrow::after, .c-page-nav-item .arrow::before {
  display: inline-block;
  font-family: "icon";
  content: "\e903";
  font-size: 1.25em;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-page-nav-item .arrow::before {
  color: var(--body-bg);
}
.c-page-nav-item .arrow::after {
  color: var(--body-color);
  -webkit-transform: translate(-50%, -150%);
          transform: translate(-50%, -150%);
}
.c-page-nav-item:hover .arrow {
  background-color: var(--primary);
}
.c-page-nav-item:hover .arrow::before {
  -webkit-transform: translate(-50%, 150%);
          transform: translate(-50%, 150%);
}
.c-page-nav-item:hover .arrow::after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.l-container, .l-block-row, .l-container-fluid, .l-header-container {
  width: 100%;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .l-container, .l-block-row, .l-container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .l-container-md, .l-container, .l-block-row, .l-container-sm {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .l-container-lg, .l-container-md, .l-container, .l-block-row, .l-container-sm {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .l-container-xl, .l-container-lg, .l-container-md, .l-container, .l-block-row, .l-container-sm {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .l-container-xxl, .l-container-xl, .l-container-lg, .l-container-md, .l-container, .l-block-row, .l-container-sm {
    max-width: 1320px;
  }
}
:root {
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1400px;
  --breakpoint-drawer: 992px;
}

.l-row {
  --gutter-x: 2.5rem;
  --gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: calc(-1 * var(--gutter-y));
  margin-right: calc(-0.5 * var(--gutter-x));
  margin-left: calc(-0.5 * var(--gutter-x));
}
.l-row > * {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--gutter-x) * 0.5);
  padding-left: calc(var(--gutter-x) * 0.5);
  margin-top: var(--gutter-y);
}

.l-col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 8.33333333%;
}

.l-col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.66666667%;
}

.l-col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
}

.l-col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.33333333%;
}

.l-col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 41.66666667%;
}

.l-col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}

.l-col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 58.33333333%;
}

.l-col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 66.66666667%;
}

.l-col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 75%;
}

.l-col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 83.33333333%;
}

.l-col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 91.66666667%;
}

.l-col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

.l-offset-0 {
  margin-left: 0;
}

.l-offset-1 {
  margin-left: 8.33333333%;
}

.l-offset-2 {
  margin-left: 16.66666667%;
}

.l-offset-3 {
  margin-left: 25%;
}

.l-offset-4 {
  margin-left: 33.33333333%;
}

.l-offset-5 {
  margin-left: 41.66666667%;
}

.l-offset-6 {
  margin-left: 50%;
}

.l-offset-7 {
  margin-left: 58.33333333%;
}

.l-offset-8 {
  margin-left: 66.66666667%;
}

.l-offset-9 {
  margin-left: 75%;
}

.l-offset-10 {
  margin-left: 83.33333333%;
}

.l-offset-11 {
  margin-left: 91.66666667%;
}

.l-g-0,
.l-gx-0 {
  --gutter-x: 0;
}

.l-g-0,
.l-gy-0 {
  --gutter-y: 0;
}

.l-g-1,
.l-gx-1 {
  --gutter-x: 0.25rem;
}

.l-g-1,
.l-gy-1 {
  --gutter-y: 0.25rem;
}

.l-g-2,
.l-gx-2 {
  --gutter-x: 0.5rem;
}

.l-g-2,
.l-gy-2 {
  --gutter-y: 0.5rem;
}

.l-g-3,
.l-gx-3 {
  --gutter-x: 1rem;
}

.l-g-3,
.l-gy-3 {
  --gutter-y: 1rem;
}

.l-g-4,
.l-gx-4 {
  --gutter-x: 1.5rem;
}

.l-g-4,
.l-gy-4 {
  --gutter-y: 1.5rem;
}

.l-g-5,
.l-gx-5 {
  --gutter-x: 3rem;
}

.l-g-5,
.l-gy-5 {
  --gutter-y: 3rem;
}

@media (min-width: 576px) {
  .l-col-sm {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .l-col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .l-col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .l-col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .l-col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .l-col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .l-col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .l-col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .l-col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .l-col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .l-col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .l-col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .l-col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .l-col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .l-offset-sm-0 {
    margin-left: 0;
  }
  .l-offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .l-offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .l-offset-sm-3 {
    margin-left: 25%;
  }
  .l-offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .l-offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .l-offset-sm-6 {
    margin-left: 50%;
  }
  .l-offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .l-offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .l-offset-sm-9 {
    margin-left: 75%;
  }
  .l-offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .l-offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .l-g-sm-0,
  .l-gx-sm-0 {
    --gutter-x: 0;
  }
  .l-g-sm-0,
  .l-gy-sm-0 {
    --gutter-y: 0;
  }
  .l-g-sm-1,
  .l-gx-sm-1 {
    --gutter-x: 0.25rem;
  }
  .l-g-sm-1,
  .l-gy-sm-1 {
    --gutter-y: 0.25rem;
  }
  .l-g-sm-2,
  .l-gx-sm-2 {
    --gutter-x: 0.5rem;
  }
  .l-g-sm-2,
  .l-gy-sm-2 {
    --gutter-y: 0.5rem;
  }
  .l-g-sm-3,
  .l-gx-sm-3 {
    --gutter-x: 1rem;
  }
  .l-g-sm-3,
  .l-gy-sm-3 {
    --gutter-y: 1rem;
  }
  .l-g-sm-4,
  .l-gx-sm-4 {
    --gutter-x: 1.5rem;
  }
  .l-g-sm-4,
  .l-gy-sm-4 {
    --gutter-y: 1.5rem;
  }
  .l-g-sm-5,
  .l-gx-sm-5 {
    --gutter-x: 3rem;
  }
  .l-g-sm-5,
  .l-gy-sm-5 {
    --gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .l-col-md {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .l-col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .l-col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .l-col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .l-col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .l-col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .l-col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .l-col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .l-col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .l-col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .l-col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .l-col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .l-col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .l-col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .l-offset-md-0 {
    margin-left: 0;
  }
  .l-offset-md-1 {
    margin-left: 8.33333333%;
  }
  .l-offset-md-2 {
    margin-left: 16.66666667%;
  }
  .l-offset-md-3 {
    margin-left: 25%;
  }
  .l-offset-md-4 {
    margin-left: 33.33333333%;
  }
  .l-offset-md-5 {
    margin-left: 41.66666667%;
  }
  .l-offset-md-6 {
    margin-left: 50%;
  }
  .l-offset-md-7 {
    margin-left: 58.33333333%;
  }
  .l-offset-md-8 {
    margin-left: 66.66666667%;
  }
  .l-offset-md-9 {
    margin-left: 75%;
  }
  .l-offset-md-10 {
    margin-left: 83.33333333%;
  }
  .l-offset-md-11 {
    margin-left: 91.66666667%;
  }
  .l-g-md-0,
  .l-gx-md-0 {
    --gutter-x: 0;
  }
  .l-g-md-0,
  .l-gy-md-0 {
    --gutter-y: 0;
  }
  .l-g-md-1,
  .l-gx-md-1 {
    --gutter-x: 0.25rem;
  }
  .l-g-md-1,
  .l-gy-md-1 {
    --gutter-y: 0.25rem;
  }
  .l-g-md-2,
  .l-gx-md-2 {
    --gutter-x: 0.5rem;
  }
  .l-g-md-2,
  .l-gy-md-2 {
    --gutter-y: 0.5rem;
  }
  .l-g-md-3,
  .l-gx-md-3 {
    --gutter-x: 1rem;
  }
  .l-g-md-3,
  .l-gy-md-3 {
    --gutter-y: 1rem;
  }
  .l-g-md-4,
  .l-gx-md-4 {
    --gutter-x: 1.5rem;
  }
  .l-g-md-4,
  .l-gy-md-4 {
    --gutter-y: 1.5rem;
  }
  .l-g-md-5,
  .l-gx-md-5 {
    --gutter-x: 3rem;
  }
  .l-g-md-5,
  .l-gy-md-5 {
    --gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .l-col-lg {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .l-col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .l-col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .l-col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .l-col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .l-col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .l-col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .l-col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .l-col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .l-col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .l-col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .l-col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .l-col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .l-col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .l-offset-lg-0 {
    margin-left: 0;
  }
  .l-offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .l-offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .l-offset-lg-3 {
    margin-left: 25%;
  }
  .l-offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .l-offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .l-offset-lg-6 {
    margin-left: 50%;
  }
  .l-offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .l-offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .l-offset-lg-9 {
    margin-left: 75%;
  }
  .l-offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .l-offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .l-g-lg-0,
  .l-gx-lg-0 {
    --gutter-x: 0;
  }
  .l-g-lg-0,
  .l-gy-lg-0 {
    --gutter-y: 0;
  }
  .l-g-lg-1,
  .l-gx-lg-1 {
    --gutter-x: 0.25rem;
  }
  .l-g-lg-1,
  .l-gy-lg-1 {
    --gutter-y: 0.25rem;
  }
  .l-g-lg-2,
  .l-gx-lg-2 {
    --gutter-x: 0.5rem;
  }
  .l-g-lg-2,
  .l-gy-lg-2 {
    --gutter-y: 0.5rem;
  }
  .l-g-lg-3,
  .l-gx-lg-3 {
    --gutter-x: 1rem;
  }
  .l-g-lg-3,
  .l-gy-lg-3 {
    --gutter-y: 1rem;
  }
  .l-g-lg-4,
  .l-gx-lg-4 {
    --gutter-x: 1.5rem;
  }
  .l-g-lg-4,
  .l-gy-lg-4 {
    --gutter-y: 1.5rem;
  }
  .l-g-lg-5,
  .l-gx-lg-5 {
    --gutter-x: 3rem;
  }
  .l-g-lg-5,
  .l-gy-lg-5 {
    --gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .l-col-xl {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .l-col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .l-col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .l-col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .l-col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .l-col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .l-col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .l-col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .l-col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .l-col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .l-col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .l-col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .l-col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .l-col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .l-offset-xl-0 {
    margin-left: 0;
  }
  .l-offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .l-offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .l-offset-xl-3 {
    margin-left: 25%;
  }
  .l-offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .l-offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .l-offset-xl-6 {
    margin-left: 50%;
  }
  .l-offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .l-offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .l-offset-xl-9 {
    margin-left: 75%;
  }
  .l-offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .l-offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .l-g-xl-0,
  .l-gx-xl-0 {
    --gutter-x: 0;
  }
  .l-g-xl-0,
  .l-gy-xl-0 {
    --gutter-y: 0;
  }
  .l-g-xl-1,
  .l-gx-xl-1 {
    --gutter-x: 0.25rem;
  }
  .l-g-xl-1,
  .l-gy-xl-1 {
    --gutter-y: 0.25rem;
  }
  .l-g-xl-2,
  .l-gx-xl-2 {
    --gutter-x: 0.5rem;
  }
  .l-g-xl-2,
  .l-gy-xl-2 {
    --gutter-y: 0.5rem;
  }
  .l-g-xl-3,
  .l-gx-xl-3 {
    --gutter-x: 1rem;
  }
  .l-g-xl-3,
  .l-gy-xl-3 {
    --gutter-y: 1rem;
  }
  .l-g-xl-4,
  .l-gx-xl-4 {
    --gutter-x: 1.5rem;
  }
  .l-g-xl-4,
  .l-gy-xl-4 {
    --gutter-y: 1.5rem;
  }
  .l-g-xl-5,
  .l-gx-xl-5 {
    --gutter-x: 3rem;
  }
  .l-g-xl-5,
  .l-gy-xl-5 {
    --gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .l-col-xxl {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .l-col-xxl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .l-col-xxl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .l-col-xxl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .l-col-xxl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .l-col-xxl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .l-col-xxl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .l-col-xxl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .l-col-xxl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .l-col-xxl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .l-col-xxl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .l-col-xxl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .l-col-xxl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .l-col-xxl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .l-offset-xxl-0 {
    margin-left: 0;
  }
  .l-offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .l-offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .l-offset-xxl-3 {
    margin-left: 25%;
  }
  .l-offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .l-offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .l-offset-xxl-6 {
    margin-left: 50%;
  }
  .l-offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .l-offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .l-offset-xxl-9 {
    margin-left: 75%;
  }
  .l-offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .l-offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .l-g-xxl-0,
  .l-gx-xxl-0 {
    --gutter-x: 0;
  }
  .l-g-xxl-0,
  .l-gy-xxl-0 {
    --gutter-y: 0;
  }
  .l-g-xxl-1,
  .l-gx-xxl-1 {
    --gutter-x: 0.25rem;
  }
  .l-g-xxl-1,
  .l-gy-xxl-1 {
    --gutter-y: 0.25rem;
  }
  .l-g-xxl-2,
  .l-gx-xxl-2 {
    --gutter-x: 0.5rem;
  }
  .l-g-xxl-2,
  .l-gy-xxl-2 {
    --gutter-y: 0.5rem;
  }
  .l-g-xxl-3,
  .l-gx-xxl-3 {
    --gutter-x: 1rem;
  }
  .l-g-xxl-3,
  .l-gy-xxl-3 {
    --gutter-y: 1rem;
  }
  .l-g-xxl-4,
  .l-gx-xxl-4 {
    --gutter-x: 1.5rem;
  }
  .l-g-xxl-4,
  .l-gy-xxl-4 {
    --gutter-y: 1.5rem;
  }
  .l-g-xxl-5,
  .l-gx-xxl-5 {
    --gutter-x: 3rem;
  }
  .l-g-xxl-5,
  .l-gy-xxl-5 {
    --gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .l-col-drawer {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .l-col-drawer-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .l-col-drawer-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .l-col-drawer-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .l-col-drawer-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .l-col-drawer-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .l-col-drawer-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .l-col-drawer-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .l-col-drawer-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .l-col-drawer-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .l-col-drawer-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .l-col-drawer-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .l-col-drawer-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .l-col-drawer-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .l-offset-drawer-0 {
    margin-left: 0;
  }
  .l-offset-drawer-1 {
    margin-left: 8.33333333%;
  }
  .l-offset-drawer-2 {
    margin-left: 16.66666667%;
  }
  .l-offset-drawer-3 {
    margin-left: 25%;
  }
  .l-offset-drawer-4 {
    margin-left: 33.33333333%;
  }
  .l-offset-drawer-5 {
    margin-left: 41.66666667%;
  }
  .l-offset-drawer-6 {
    margin-left: 50%;
  }
  .l-offset-drawer-7 {
    margin-left: 58.33333333%;
  }
  .l-offset-drawer-8 {
    margin-left: 66.66666667%;
  }
  .l-offset-drawer-9 {
    margin-left: 75%;
  }
  .l-offset-drawer-10 {
    margin-left: 83.33333333%;
  }
  .l-offset-drawer-11 {
    margin-left: 91.66666667%;
  }
  .l-g-drawer-0,
  .l-gx-drawer-0 {
    --gutter-x: 0;
  }
  .l-g-drawer-0,
  .l-gy-drawer-0 {
    --gutter-y: 0;
  }
  .l-g-drawer-1,
  .l-gx-drawer-1 {
    --gutter-x: 0.25rem;
  }
  .l-g-drawer-1,
  .l-gy-drawer-1 {
    --gutter-y: 0.25rem;
  }
  .l-g-drawer-2,
  .l-gx-drawer-2 {
    --gutter-x: 0.5rem;
  }
  .l-g-drawer-2,
  .l-gy-drawer-2 {
    --gutter-y: 0.5rem;
  }
  .l-g-drawer-3,
  .l-gx-drawer-3 {
    --gutter-x: 1rem;
  }
  .l-g-drawer-3,
  .l-gy-drawer-3 {
    --gutter-y: 1rem;
  }
  .l-g-drawer-4,
  .l-gx-drawer-4 {
    --gutter-x: 1.5rem;
  }
  .l-g-drawer-4,
  .l-gy-drawer-4 {
    --gutter-y: 1.5rem;
  }
  .l-g-drawer-5,
  .l-gx-drawer-5 {
    --gutter-x: 3rem;
  }
  .l-g-drawer-5,
  .l-gy-drawer-5 {
    --gutter-y: 3rem;
  }
}
.l-header {
  padding-top: clamp(1rem, 2.0833333333vw, 2.25rem);
  padding-bottom: clamp(1rem, 2.0833333333vw, 2.25rem);
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1041;
  font-size: 0.875rem;
  height: clamp(5rem, 13.0208333333vw, 6.25rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1199.98px) {
  .l-header {
    font-size: 0.75rem;
  }
}
.l-header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 clamp(1rem, 2.0833333333vw, 2rem);
}
.l-header-start, .l-header-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 clamp(1rem, 2.0833333333vw, 2rem);
}
.l-header-end {
  margin-left: auto;
}
.l-header-brand {
  margin: 0;
  width: clamp(8.125rem, 19.53125vw, 9.375rem);
  white-space: nowrap;
}
@media (min-width: 992px) {
  .l-header-brand {
    margin-left: 5%;
  }
}
.l-header-brand a {
  display: block;
  width: 100%;
  text-decoration: none;
  line-height: 0;
  vertical-align: top;
}
.l-header-nav ul,
.l-header-nav ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.l-header-nav ul li,
.l-header-nav ol li {
  font-weight: 700;
}
.l-header-nav ul li a:not(.c-btn),
.l-header-nav ol li a:not(.c-btn) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem 1rem;
  color: var(--body-color);
  border-radius: 0.125rem;
}
.l-header-nav ul li a:not(.c-btn):hover,
.l-header-nav ol li a:not(.c-btn):hover {
  color: var(--primary);
}
.l-header-nav ul li .c-btn,
.l-header-nav ol li .c-btn {
  margin-left: 1rem;
  padding: 0.5rem 2.5rem;
}
@media (max-width: 991.98px) {
  .l-header-nav {
    display: none;
  }
}

.l-header-brand .st0 {
  fill: #212529;
}
.l-header-brand .st1 {
  fill: #FBC70D;
}

.l-footer {
  --footer-bg: var(--body-color);
  --footer-color: var(--white);
  padding: clamp(1rem, 4.1666666667vw, 2rem) 0;
  margin-top: auto;
  background-color: var(--footer-bg);
  color: var(--footer-color);
}
.l-footer .l-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767.98px) {
  .l-footer .l-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1rem;
  }
}
.l-footer-copy {
  text-align: center;
  margin-bottom: 0;
  font-size: 0.6875rem;
  color: var(--secondary);
}

.l-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100svh;
}

.l-block, .l-block-row {
  width: 100%;
  margin: 0 auto;
  padding-top: clamp(3rem, 8.3333333333vw, 4rem);
  padding-bottom: clamp(3rem, 8.3333333333vw, 4rem);
}

.l-block-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 3rem;
}
@media (min-width: 992px) {
  .l-block-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3rem;
  }
}

.l-block-main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.l-block-sub {
  width: 100%;
  height: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media (min-width: 992px) {
  .l-block-sub {
    width: clamp(13.75rem, 23.3333333333vw, 17.5rem);
  }
}
.l-block-sub.is-sticky {
  position: sticky;
  top: 1rem;
}
@media (min-width: 992px) {
  .l-block-sub.is-sticky {
    top: 1rem;
  }
}

.l-box {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  display: block;
}
.l-box:not(:last-child) {
  margin-bottom: 3rem;
}

.l-box-sm {
  max-width: 540px;
}

.l-box-md {
  max-width: 720px;
}

.l-box-lg {
  max-width: 960px;
}

.p-phone-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  line-height: 1.5;
  font-weight: 700;
}
.p-phone-link::before {
  font-family: "icon";
  content: "\e901";
  line-height: 1;
}
.p-phone-link + p {
  font-size: 0.875rem;
  margin: 0;
}

.p-cta {
  background-image: url(../images/cta.jpg);
  background-position: center;
  background-size: cover;
  text-align: center;
  padding-top: clamp(1rem, 4.1666666667vw, 2rem);
  padding-bottom: clamp(1rem, 4.1666666667vw, 2rem);
}
@media (min-width: 768px) {
  .p-cta {
    background-attachment: fixed;
  }
}
.p-cta .l-box {
  margin-bottom: 1rem;
}
.p-cta .c-title-sec {
  margin-bottom: clamp(1rem, 4.1666666667vw, 2rem);
}
.p-cta .c-title-sec h1,
.p-cta .c-title-sec h2,
.p-cta .c-title-sec h3,
.p-cta .c-title-sec h4,
.p-cta .c-title-sec h5,
.p-cta .c-title-sec h6,
.p-cta .c-title-sec p {
  font-size: clamp(1rem, 2.6041666667vw, 1.5rem);
}
.p-cta .p-phone-link {
  color: var(--body-color);
  font-size: clamp(1.875rem, 3.90625vw, 2.25rem);
}
.p-cta-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.5rem;
  max-width: 31.25rem;
  margin: 0 auto;
  font-size: clamp(1.125rem, 2.6041666667vw, 1.625rem);
  border-radius: 50rem;
  font-weight: 700;
  padding: 1.75rem 2.5rem;
}
.p-cta-btn.c-btn-info::before {
  content: "\e906";
}
.p-cta-btn.c-btn-light::before {
  content: "\e900";
}
.p-cta-btn::before {
  content: "";
  font-family: "icon";
  font-size: 1.5em;
  line-height: 1;
}
.p-cta-btn .arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--white);
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  position: relative;
}
.p-cta-btn .arrow::after, .p-cta-btn .arrow::before {
  display: inline-block;
  font-family: "icon";
  content: "\e904";
  font-size: 1.25em;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-cta-btn .arrow::before {
  color: var(--info);
}
.p-cta-btn .arrow::after {
  color: var(--info);
  -webkit-transform: translate(-150%, -50%);
          transform: translate(-150%, -50%);
}
.p-cta-btn:hover .arrow {
  background-color: var(--primary);
}
.p-cta-btn:hover .arrow::before {
  -webkit-transform: translate(150%, -50%);
          transform: translate(150%, -50%);
}
.p-cta-btn:hover .arrow::after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--body-bg);
}
@media (min-width: 768px) {
  .p-hero {
    height: 100vh;
  }
}
.p-hero-body {
  position: relative;
  background-image: url(../images/hero.jpg);
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-top: clamp(5rem, 13.0208333333vw, 6.25rem);
}
@media (min-width: 992px) {
  .p-hero-body {
    padding-bottom: clamp(5rem, 13.0208333333vw, 6.25rem);
  }
}
@media (max-width: 991.98px) {
  .p-hero-body {
    min-height: 31.25rem;
  }
}
@media (min-width: 768px) {
  .p-hero-body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media (max-width: 767.98px) {
  .p-hero-body {
    height: 90vh;
  }
}
.p-hero-foot {
  color: var(--body-color);
}
@media (min-width: 992px) {
  .p-hero-foot {
    height: 8.125rem;
  }
}
.p-hero-foot-col {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 992px) {
  .p-hero-foot-col {
    height: 100%;
  }
}
@media (min-width: 576px) {
  .p-hero-foot-col {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-hero-foot-col:nth-child(1) {
  background-color: var(--gray-100);
}
.p-hero-foot-col:nth-child(2) {
  background-color: var(--gray-200);
}
.p-hero-foot-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  line-height: 1.5;
}
.p-hero-foot-item-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-hero-foot-item-content p {
  margin-bottom: 0;
  font-size: clamp(1rem, 2.34375vw, 1.375rem), 1200;
  font-weight: 700;
}
.p-hero-foot-item-content p strong {
  font-size: 1.75em;
  color: var(--danger);
}
.p-hero-foot-item-content small {
  display: block;
  font-size: 0.75rem;
}
.p-hero-foot-item-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 6.875rem;
          flex: 0 0 6.875rem;
  text-align: center;
}
.p-hero-foot-item img {
  width: 5rem;
}
.p-hero-badge {
  background-color: var(--primary);
  color: var(--body-color);
  font-size: 0.875rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2rem;
}
.p-hero-badge img {
  width: 6.875rem;
}
.p-hero-badge ul {
  line-height: 1.5;
  margin: 0.5rem 2em 0;
}
@media (max-width: 575.98px) {
  .p-hero-badge ul {
    margin-right: 0;
    margin-left: 1em;
  }
}
.p-hero-badge p {
  font-size: 0.6875rem;
  margin: 0;
  font-weight: 400;
  text-align: center;
}
@media (max-width: 991.98px) {
  .p-hero-badge p {
    margin: 0 2em;
    text-align: left;
  }
}
@media (max-width: 575.98px) {
  .p-hero-badge p {
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .p-hero-badge {
    position: absolute;
    bottom: clamp(5rem, 13.0208333333vw, 6.25rem);
    right: 5%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 13.125rem;
    aspect-ratio: 1;
    border-radius: 50%;
  }
}
@media (max-width: 991.98px) {
  .p-hero-badge {
    padding: 1rem;
    font-size: clamp(1rem, 2.0833333333vw, 1.125rem);
  }
}

.p-mcopy {
  line-height: 1.5;
  font-weight: 700;
  font-size: clamp(1.875rem, 3.3333333333vw, 2.875rem);
}
@media (max-width: 575.98px) {
  .p-mcopy {
    font-size: 1.5rem;
  }
}
.p-mcopy span {
  display: block;
  margin-top: 0.5rem;
  font-size: clamp(1.875rem, 3.3333333333vw, 2.875rem);
}
@media (max-width: 575.98px) {
  .p-mcopy span {
    font-size: 1.125rem;
  }
}

.p-scopy {
  line-height: 1.5;
  font-weight: 700;
  font-size: clamp(1.125rem, 1.8333333333vw, 1.625rem);
}
@media (max-width: 575.98px) {
  .p-scopy {
    font-size: 1rem;
  }
}

#worry > .l-block {
  --arrow-width: 500px;
  --arrow-space: 80px;
}
@media (max-width: 767.98px) {
  #worry > .l-block {
    --arrow-width: 200px;
    --arrow-space: 40px;
  }
}
#worry > .l-block:first-child {
  position: relative;
  z-index: 1;
  background-color: var(--gray-200);
}
#worry > .l-block:first-child::before {
  content: "";
  border-style: solid;
  height: 0;
  width: 0;
  border-color: var(--gray-200) transparent transparent transparent;
  border-width: var(--arrow-space) calc(var(--arrow-width) * 0.5) 0 calc(var(--arrow-width) * 0.5);
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#worry > .l-block:first-child + .l-block {
  margin-top: calc(var(--arrow-space) * 0.5);
}
#worry .l-row > div {
  position: relative;
}
@media (max-width: 991.98px) {
  #worry .l-row > div {
    margin-top: 3.75rem;
  }
}
#worry .l-row > div > img {
  position: absolute;
  bottom: calc(100% - 50px);
  width: 10.625rem;
}
@media (max-width: 1199.98px) {
  #worry .l-row > div > img {
    width: 6.25rem;
    bottom: calc(100% - 25px);
  }
}
#worry .l-row > div:nth-child(1) > img {
  left: 1.25rem;
}
#worry .l-row > div:nth-child(2) > img {
  right: 1.25rem;
}

.p-worry-card {
  --worry-card-color: null;
  height: 100%;
}
.p-worry-card .c-card-body {
  border-width: 3px;
  border-color: var(--worry-card-color);
}
.p-worry-card .c-card-body .c-list-check {
  margin-bottom: 0;
  font-size: clamp(1rem, 1.3333333333vw, 1.125rem);
}
.p-worry-card .c-card-body .c-list-check li {
  font-weight: 700;
}
.p-worry-card .c-card-body .c-list-check li::before {
  color: var(--worry-card-color);
}
.p-worry-card-primary {
  --worry-card-color:#FBC70D;
}
.p-worry-card-info {
  --worry-card-color:#27B6D6;
}

#reason {
  position: relative;
  z-index: 0;
}
#reason .l-row {
  counter-reset: titlenum;
}
#reason .l-row > div .p-reason-card::before {
  counter-increment: titlenum;
  /* counter-resetと同じ文字列 */
  content: counter(titlenum, decimal-leading-zero);
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0.5rem;
  font-weight: 700;
  font-size: 4.375rem;
  line-height: 1;
  color: rgba(251, 199, 13, 0.6);
}

.p-reason-card {
  text-align: center;
}
.p-reason-card .c-card-thum {
  position: relative;
  z-index: 0;
}
.p-reason-card .c-card-body {
  position: relative;
  z-index: 1;
}
.p-reason-card .c-card-body p:not([class]) {
  font-weight: 700;
  font-size: clamp(1rem, 1.3333333333vw, 1.25rem);
  margin-bottom: 0;
}
@media (max-width: 575.98px) {
  .p-reason-card .c-card-body p:not([class]) {
    font-size: 1.125rem;
  }
}
.p-reason-card .c-badge {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: clamp(0.875rem, 1.8229166667vw, 1rem);
  background-color: var(--primary);
  border-color: var(--primary);
}
.p-reason-card .c-badge + p {
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .p-reason-card .l-row > div:not(:last-child) {
    border-right: 2px solid #dee2e6;
  }
}
@media (max-width: 767.98px) {
  .p-reason-card .l-row > div:not(:last-child) {
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 1rem;
  }
}

.p-reason-value {
  font-size: clamp(1.75rem, 3.6458333333vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 0;
}
.p-reason-value span {
  color: var(--info);
  font-size: 3em;
  line-height: 1;
}
@media (max-width: 1199.98px) {
  .p-reason-value span {
    font-size: 2em;
  }
}

.p-flow-accordion {
  --flow-bg:#FBC70D;
  --flow-color:#212529;
  --accordion-border-color:#FBC70D;
  --flow-space: 3rem;
  --flow-hover:#e2b30c;
}
.p-flow-accordion.-info {
  --flow-bg:#27B6D6;
  --flow-color:#fff;
  --accordion-border-color:#27B6D6;
  --flow-hover:#23a4c1 ;
}
.p-flow-accordion small {
  font-size: clamp(0.75rem, 1.5625vw, 0.875rem);
  display: block;
  font-weight: 400;
}
.p-flow-accordion .c-accordion-head {
  background-color: var(--flow-bg);
  border-color: var(--flow-bg);
  color: var(--flow-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  font-size: clamp(1.125rem, 2.6041666667vw, 1.5rem);
  font-weight: 700;
}
.p-flow-accordion .c-accordion-head::after {
  color: var(--flow-color);
}
.p-flow-accordion .c-accordion-head > span {
  color: var(--body-color);
  background-color: var(--body-bg);
  border-radius: 50%;
  font-weight: 700;
  width: 2.75em;
  height: 2.75em;
  line-height: 2.75em;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2.75em;
          flex: 0 0 2.75em;
  text-align: center;
}
.p-flow-accordion .c-accordion-head > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-flow-accordion .c-accordion-head:hover {
  background-color: var(--flow-hover);
}
.p-flow-accordion .c-accordion-body {
  background-color: var(--flow-bg);
  font-weight: 700;
  font-size: clamp(1rem, 2.6041666667vw, 1.25rem);
}
.p-flow-accordion .c-accordion-body ul {
  counter-reset: flownum;
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-flow-accordion .c-accordion-body ul li {
  position: relative;
  background-color: var(--body-bg);
  border-radius: 0.35rem;
  color: var(--body-color);
  padding: 1rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media (min-width: 576px) {
  .p-flow-accordion .c-accordion-body ul li {
    padding: calc(var(--flow-space) * 0.75) 1rem;
  }
}
@media (max-width: 575.98px) {
  .p-flow-accordion .c-accordion-body ul li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-flow-accordion .c-accordion-body ul li:not(:last-child) {
  margin-bottom: var(--flow-space);
}
.p-flow-accordion .c-accordion-body ul li:not(:last-child)::after {
  content: "";
  border-style: solid;
  height: 0;
  width: 0;
  border-color: var(--body-bg) transparent transparent transparent;
  border-width: calc(var(--flow-space) * 0.75) calc(var(--flow-space) * 1.5 * 0.5) 0 calc(var(--flow-space) * 1.5 * 0.5);
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 575.98px) {
  .p-flow-accordion .c-accordion-body ul li:not(:last-child)::after {
    border-style: solid;
    height: 0;
    width: 0;
    border-color: var(--body-bg) transparent transparent transparent;
    border-width: calc(var(--flow-space) * 0.25) calc(var(--flow-space) * 0.5 * 0.5) 0 calc(var(--flow-space) * 0.5 * 0.5);
  }
}
.p-flow-accordion .c-accordion-body ul li::before {
  counter-increment: flownum;
  content: "step. " counter(flownum);
  text-transform: uppercase;
  background-color: var(--flow-bg);
  color: var(--flow-color);
  border-radius: 0.35rem;
  padding: 0.5rem 1rem;
  line-height: 1;
}
.p-flow-accordion .c-accordion-body ul li .p-flow-period-sm {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  top: 100%;
  left: 0;
  color: var(--body-bg);
  white-space: nowrap;
  font-size: clamp(0.75rem, 1.8229166667vw, 1rem);
  line-height: var(--flow-space);
  padding-left: 0.5em;
}
.p-flow-accordion .c-accordion-body ul li .p-flow-period-sm .-arrow {
  height: calc(var(--flow-space) * 0.75);
  width: 4px;
  background-color: var(--body-bg);
}
.p-flow-accordion .c-accordion-body ul li .p-flow-period-sm .-arrow::before, .p-flow-accordion .c-accordion-body ul li .p-flow-period-sm .-arrow::after {
  font-family: "icon";
  content: "\e902";
  -webkit-transform-origin: center center;
          transform-origin: center center;
  position: absolute;
  left: 0;
  font-size: 1.25em;
  line-height: 0.5;
}
.p-flow-accordion .c-accordion-body ul li .p-flow-period-sm .-arrow::before {
  top: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p-flow-accordion .c-accordion-body ul li .p-flow-period-sm .-arrow::after {
  bottom: 0;
}
.p-flow-accordion .c-accordion-body ul li .p-flow-period-lg {
  position: absolute;
  top: 0;
  left: calc(var(--flow-space) * -1.125);
  background-color: var(--body-bg);
  color: var(--body-color);
  font-size: 0.875rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  height: 100%;
  text-align: center;
}
.p-flow-accordion .c-accordion-body ul li .p-flow-period-lg .-num {
  display: inline-block;
  margin-bottom: 0.125em;
  text-combine-upright: all;
  margin-right: -0.25em;
}
.p-flow-accordion .c-accordion-body ul li .p-flow-period-lg .-arrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-flow-accordion .c-accordion-body ul li .p-flow-period-lg .-arrow::before, .p-flow-accordion .c-accordion-body ul li .p-flow-period-lg .-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-flow-accordion .c-accordion-body ul li .p-flow-period-lg .-arrow::before {
  top: calc(var(--flow-space) * -0.5);
  border-style: solid;
  height: 0;
  width: 0;
  border-color: transparent transparent var(--body-bg) transparent;
  border-width: 0 calc(var(--flow-space) * 1 * 0.5) calc(var(--flow-space) * 0.5) calc(var(--flow-space) * 1 * 0.5);
}
.p-flow-accordion .c-accordion-body ul li .p-flow-period-lg .-arrow::after {
  bottom: calc(var(--flow-space) * -0.5);
  border-style: solid;
  height: 0;
  width: 0;
  border-color: var(--body-bg) transparent transparent transparent;
  border-width: calc(var(--flow-space) * 0.5) calc(var(--flow-space) * 1 * 0.5) 0 calc(var(--flow-space) * 1 * 0.5);
}
.p-flow-accordion .c-accordion-body ul li:has(.p-flow-period-lg) {
  margin-left: calc(var(--flow-space) * 1.5);
}
.p-flow-accordion .c-accordion-body ul li:has(.p-flow-period-lg)::after {
  left: calc(50% - var(--flow-space));
}
.p-flow-accordion .c-accordion-body ul li:nth-child(3):has(.p-flow-period-lg) .p-flow-period-lg {
  top: calc(var(--flow-space) * -0.5);
  height: calc(100% + var(--flow-space) * 1);
}
.p-flow-accordion .c-accordion-body ul li:nth-child(4):has(.p-flow-period-lg) .p-flow-period-lg {
  top: calc(var(--flow-space) * 0.5);
}

.p-service-card {
  height: 100%;
}
.p-service-card .c-card-body {
  height: 100%;
}
.p-service-card .c-card-body > img {
  width: 7.8125rem;
  display: block;
  margin: 0 auto 1rem;
}
.p-service-card .c-card-title {
  font-size: clamp(1rem, 2.0833333333vw, 1.25rem);
  margin: 0 auto;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.p-service-card ul {
  margin: 1rem 0 0;
  font-size: clamp(0.875rem, 1.8229166667vw, 1rem);
}

.p-faq-accordion .c-accordion-head,
.p-faq-accordion .c-accordion-body {
  position: relative;
  padding-left: calc(1rem + 3em);
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.p-faq-accordion .c-accordion-head::before,
.p-faq-accordion .c-accordion-body::before {
  position: absolute;
  top: calc(2rem * 0.5 + 0.5em);
  left: 0.75rem;
  font-size: 1.25em;
  font-weight: 700;
  text-transform: capitalize;
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  background-color: var(--primary);
  border-radius: 50%;
}
.p-faq-accordion .c-accordion-head::before {
  content: "q";
}
.p-faq-accordion .c-accordion-body::before {
  content: "a";
}

#support .c-accordion-body {
  font-size: 0.875rem;
}
#support .c-accordion-body p:last-child,
#support .c-accordion-body ul:last-child {
  margin-bottom: 0;
}

.f-mark {
  -webkit-box-shadow: inset 0 -0.4em 0 #FBC70D;
          box-shadow: inset 0 -0.4em 0 #FBC70D;
}

.u-media {
  overflow: hidden;
  position: relative;
}
.u-media > img {
  display: block;
  max-width: 100%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  position: relative;
  z-index: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.u-media::after {
  content: "";
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.bg-info {
  background-color: var(--info) !important;
}

.bg-danger {
  background-color: var(--danger) !important;
}

.bg-light {
  background-color: var(--light) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.text-primary {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.text-info {
  color: var(--info) !important;
}

.text-danger {
  color: var(--danger) !important;
}

.text-light {
  color: var(--light) !important;
}

.text-dark {
  color: var(--dark) !important;
}

.m-0 {
  margin: 0;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.me-0 {
  margin-right: 0 !important;
}

.m-1 {
  margin: 0.25rem;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.m-3 {
  margin: 1rem;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.m-4 {
  margin: 1.5rem;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.m-5 {
  margin: 3rem;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.m-auto {
  margin: auto;
}

.mt-auto {
  margin-top: auto !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-auto {
  margin-left: auto !important;
}

.me-auto {
  margin-right: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: -ms-grid !important;
  display: grid !important;
}

.d-inline-grid {
  display: -ms-inline-grid !important;
  display: inline-grid !important;
}

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

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .m-sm-auto {
    margin: auto;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: -ms-grid !important;
    display: grid !important;
  }
  .d-sm-inline-grid {
    display: -ms-inline-grid !important;
    display: inline-grid !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .m-md-auto {
    margin: auto;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: -ms-grid !important;
    display: grid !important;
  }
  .d-md-inline-grid {
    display: -ms-inline-grid !important;
    display: inline-grid !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .m-lg-auto {
    margin: auto;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: -ms-grid !important;
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: -ms-inline-grid !important;
    display: inline-grid !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .m-xl-auto {
    margin: auto;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: -ms-grid !important;
    display: grid !important;
  }
  .d-xl-inline-grid {
    display: -ms-inline-grid !important;
    display: inline-grid !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.fd-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.fd-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.fd-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

.fd-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

.fw-wrap {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}

.fw-nowrap {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
}

.fw-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
}

.jc-start {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.jc-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.jc-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.jc-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.jc-around {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}

.jc-evenly {
  -webkit-box-pack: space-evenly !important;
      -ms-flex-pack: space-evenly !important;
          justify-content: space-evenly !important;
}

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

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

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

.ai-baseline {
  -webkit-box-align: baseline !important;
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
}

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

@media (min-width: 576px) {
  .fd-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .fd-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .fd-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .fd-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .fw-sm-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .fw-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .fw-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .jc-sm-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .jc-sm-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .jc-sm-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .jc-sm-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .jc-sm-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .jc-sm-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .ai-sm-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .ai-sm-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .ai-sm-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .ai-sm-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .ai-sm-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
}
@media (min-width: 768px) {
  .fd-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .fd-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .fd-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .fd-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .fw-md-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .fw-md-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .fw-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .jc-md-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .jc-md-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .jc-md-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .jc-md-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .jc-md-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .jc-md-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .ai-md-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .ai-md-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .ai-md-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .ai-md-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .ai-md-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
}
@media (min-width: 992px) {
  .fd-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .fd-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .fd-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .fd-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .fw-lg-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .fw-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .fw-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .jc-lg-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .jc-lg-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .jc-lg-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .jc-lg-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .jc-lg-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .jc-lg-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .ai-lg-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .ai-lg-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .ai-lg-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .ai-lg-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .ai-lg-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
}
@media (min-width: 1200px) {
  .fd-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .fd-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .fd-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .fd-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .fw-xl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .fw-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .fw-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .jc-xl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .jc-xl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .jc-xl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .jc-xl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .jc-xl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .jc-xl-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .ai-xl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .ai-xl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .ai-xl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .ai-xl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .ai-xl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
}
.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.fs-1 {
  font-size: 1.875rem !important;
}

.fs-2 {
  font-size: 1.75rem !important;
}

.fs-3 {
  font-size: 1.5rem !important;
}

.fs-4 {
  font-size: 1.25rem !important;
}

.fs-5 {
  font-size: 1.125rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fs-7 {
  font-size: 0.875rem !important;
}

.fs-8 {
  font-size: 0.75rem !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.f-sans-serif {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.f-serif {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif !important;
}

.f-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.f-icon {
  font-family: "bootstrap-icons" !important;
}

.f-web {
  font-family: "Zen Kaku Gothic New", sans-serif !important;
}

.border-radius-sm {
  border-radius: 0.125rem !important;
}

.border-radius-md {
  border-radius: 0.35rem !important;
}

.border-radius-lg {
  border-radius: 0.5rem !important;
}

.border-radius-xl {
  border-radius: 1rem !important;
}

.border-radius-xxl {
  border-radius: 2rem !important;
}

.border-radius-pill {
  border-radius: 50rem !important;
}
/*# sourceMappingURL=style.css.map */