/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  /* stylelint-disable-next-line font-family-no-duplicate-names */
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted; /* 2 */
  border-bottom: none; /* 1 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */ /* stylelint-disable-line */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  margin: 0; /* 2 */
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  color: inherit; /* 2 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  font: inherit; /* 2 */
  -webkit-appearance: button; /* 1 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571429em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714286em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right {
  margin-left: 0.3em;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}

.fa.pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}

:root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical {
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

.fa-glass:before {
  content: "\f000";
}

.fa-music:before {
  content: "\f001";
}

.fa-search:before {
  content: "\f002";
}

.fa-envelope-o:before {
  content: "\f003";
}

.fa-heart:before {
  content: "\f004";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-o:before {
  content: "\f006";
}

.fa-user:before {
  content: "\f007";
}

.fa-film:before {
  content: "\f008";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-check:before {
  content: "\f00c";
}

.fa-remove:before, .fa-close:before, .fa-times:before {
  content: "\f00d";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-signal:before {
  content: "\f012";
}

.fa-gear:before, .fa-cog:before {
  content: "\f013";
}

.fa-trash-o:before {
  content: "\f014";
}

.fa-home:before {
  content: "\f015";
}

.fa-file-o:before {
  content: "\f016";
}

.fa-clock-o:before {
  content: "\f017";
}

.fa-road:before {
  content: "\f018";
}

.fa-download:before {
  content: "\f019";
}

.fa-arrow-circle-o-down:before {
  content: "\f01a";
}

.fa-arrow-circle-o-up:before {
  content: "\f01b";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-play-circle-o:before {
  content: "\f01d";
}

.fa-rotate-right:before, .fa-repeat:before {
  content: "\f01e";
}

.fa-refresh:before {
  content: "\f021";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-lock:before {
  content: "\f023";
}

.fa-flag:before {
  content: "\f024";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-print:before {
  content: "\f02f";
}

.fa-camera:before {
  content: "\f030";
}

.fa-font:before {
  content: "\f031";
}

.fa-bold:before {
  content: "\f032";
}

.fa-italic:before {
  content: "\f033";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-list:before {
  content: "\f03a";
}

.fa-dedent:before, .fa-outdent:before {
  content: "\f03b";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-video-camera:before {
  content: "\f03d";
}

.fa-photo:before, .fa-image:before, .fa-picture-o:before {
  content: "\f03e";
}

.fa-pencil:before {
  content: "\f040";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-tint:before {
  content: "\f043";
}

.fa-edit:before, .fa-pencil-square-o:before {
  content: "\f044";
}

.fa-share-square-o:before {
  content: "\f045";
}

.fa-check-square-o:before {
  content: "\f046";
}

.fa-arrows:before {
  content: "\f047";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-play:before {
  content: "\f04b";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-eject:before {
  content: "\f052";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-times-circle-o:before {
  content: "\f05c";
}

.fa-check-circle-o:before {
  content: "\f05d";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-mail-forward:before, .fa-share:before {
  content: "\f064";
}

.fa-expand:before {
  content: "\f065";
}

.fa-compress:before {
  content: "\f066";
}

.fa-plus:before {
  content: "\f067";
}

.fa-minus:before {
  content: "\f068";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-warning:before, .fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-plane:before {
  content: "\f072";
}

.fa-calendar:before {
  content: "\f073";
}

.fa-random:before {
  content: "\f074";
}

.fa-comment:before {
  content: "\f075";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-arrows-v:before {
  content: "\f07d";
}

.fa-arrows-h:before {
  content: "\f07e";
}

.fa-bar-chart-o:before, .fa-bar-chart:before {
  content: "\f080";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-key:before {
  content: "\f084";
}

.fa-gears:before, .fa-cogs:before {
  content: "\f085";
}

.fa-comments:before {
  content: "\f086";
}

.fa-thumbs-o-up:before {
  content: "\f087";
}

.fa-thumbs-o-down:before {
  content: "\f088";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-heart-o:before {
  content: "\f08a";
}

.fa-sign-out:before {
  content: "\f08b";
}

.fa-linkedin-square:before {
  content: "\f08c";
}

.fa-thumb-tack:before {
  content: "\f08d";
}

.fa-external-link:before {
  content: "\f08e";
}

.fa-sign-in:before {
  content: "\f090";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-upload:before {
  content: "\f093";
}

.fa-lemon-o:before {
  content: "\f094";
}

.fa-phone:before {
  content: "\f095";
}

.fa-square-o:before {
  content: "\f096";
}

.fa-bookmark-o:before {
  content: "\f097";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-facebook-f:before, .fa-facebook:before {
  content: "\f09a";
}

.fa-github:before {
  content: "\f09b";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-feed:before, .fa-rss:before {
  content: "\f09e";
}

.fa-hdd-o:before {
  content: "\f0a0";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-hand-o-right:before {
  content: "\f0a4";
}

.fa-hand-o-left:before {
  content: "\f0a5";
}

.fa-hand-o-up:before {
  content: "\f0a6";
}

.fa-hand-o-down:before {
  content: "\f0a7";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-group:before, .fa-users:before {
  content: "\f0c0";
}

.fa-chain:before, .fa-link:before {
  content: "\f0c1";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-cut:before, .fa-scissors:before {
  content: "\f0c4";
}

.fa-copy:before, .fa-files-o:before {
  content: "\f0c5";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-save:before, .fa-floppy-o:before {
  content: "\f0c7";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-navicon:before, .fa-reorder:before, .fa-bars:before {
  content: "\f0c9";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-plus:before {
  content: "\f0d5";
}

.fa-money:before {
  content: "\f0d6";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-unsorted:before, .fa-sort:before {
  content: "\f0dc";
}

.fa-sort-down:before, .fa-sort-desc:before {
  content: "\f0dd";
}

.fa-sort-up:before, .fa-sort-asc:before {
  content: "\f0de";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-linkedin:before {
  content: "\f0e1";
}

.fa-rotate-left:before, .fa-undo:before {
  content: "\f0e2";
}

.fa-legal:before, .fa-gavel:before {
  content: "\f0e3";
}

.fa-dashboard:before, .fa-tachometer:before {
  content: "\f0e4";
}

.fa-comment-o:before {
  content: "\f0e5";
}

.fa-comments-o:before {
  content: "\f0e6";
}

.fa-flash:before, .fa-bolt:before {
  content: "\f0e7";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-paste:before, .fa-clipboard:before {
  content: "\f0ea";
}

.fa-lightbulb-o:before {
  content: "\f0eb";
}

.fa-exchange:before {
  content: "\f0ec";
}

.fa-cloud-download:before {
  content: "\f0ed";
}

.fa-cloud-upload:before {
  content: "\f0ee";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-bell-o:before {
  content: "\f0a2";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cutlery:before {
  content: "\f0f5";
}

.fa-file-text-o:before {
  content: "\f0f6";
}

.fa-building-o:before {
  content: "\f0f7";
}

.fa-hospital-o:before {
  content: "\f0f8";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-mobile-phone:before, .fa-mobile:before {
  content: "\f10b";
}

.fa-circle-o:before {
  content: "\f10c";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-circle:before {
  content: "\f111";
}

.fa-mail-reply:before, .fa-reply:before {
  content: "\f112";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-folder-o:before {
  content: "\f114";
}

.fa-folder-open-o:before {
  content: "\f115";
}

.fa-smile-o:before {
  content: "\f118";
}

.fa-frown-o:before {
  content: "\f119";
}

.fa-meh-o:before {
  content: "\f11a";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-keyboard-o:before {
  content: "\f11c";
}

.fa-flag-o:before {
  content: "\f11d";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-code:before {
  content: "\f121";
}

.fa-mail-reply-all:before, .fa-reply-all:before {
  content: "\f122";
}

.fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
  content: "\f123";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-crop:before {
  content: "\f125";
}

.fa-code-fork:before {
  content: "\f126";
}

.fa-unlink:before, .fa-chain-broken:before {
  content: "\f127";
}

.fa-question:before {
  content: "\f128";
}

.fa-info:before {
  content: "\f129";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-shield:before {
  content: "\f132";
}

.fa-calendar-o:before {
  content: "\f133";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-ticket:before {
  content: "\f145";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-minus-square-o:before {
  content: "\f147";
}

.fa-level-up:before {
  content: "\f148";
}

.fa-level-down:before {
  content: "\f149";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-pencil-square:before {
  content: "\f14b";
}

.fa-external-link-square:before {
  content: "\f14c";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-toggle-down:before, .fa-caret-square-o-down:before {
  content: "\f150";
}

.fa-toggle-up:before, .fa-caret-square-o-up:before {
  content: "\f151";
}

.fa-toggle-right:before, .fa-caret-square-o-right:before {
  content: "\f152";
}

.fa-euro:before, .fa-eur:before {
  content: "\f153";
}

.fa-gbp:before {
  content: "\f154";
}

.fa-dollar:before, .fa-usd:before {
  content: "\f155";
}

.fa-rupee:before, .fa-inr:before {
  content: "\f156";
}

.fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before {
  content: "\f157";
}

.fa-ruble:before, .fa-rouble:before, .fa-rub:before {
  content: "\f158";
}

.fa-won:before, .fa-krw:before {
  content: "\f159";
}

.fa-bitcoin:before, .fa-btc:before {
  content: "\f15a";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-text:before {
  content: "\f15c";
}

.fa-sort-alpha-asc:before {
  content: "\f15d";
}

.fa-sort-alpha-desc:before {
  content: "\f15e";
}

.fa-sort-amount-asc:before {
  content: "\f160";
}

.fa-sort-amount-desc:before {
  content: "\f161";
}

.fa-sort-numeric-asc:before {
  content: "\f162";
}

.fa-sort-numeric-desc:before {
  content: "\f163";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-youtube-square:before {
  content: "\f166";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-youtube-play:before {
  content: "\f16a";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-adn:before {
  content: "\f170";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitbucket-square:before {
  content: "\f172";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-long-arrow-down:before {
  content: "\f175";
}

.fa-long-arrow-up:before {
  content: "\f176";
}

.fa-long-arrow-left:before {
  content: "\f177";
}

.fa-long-arrow-right:before {
  content: "\f178";
}

.fa-apple:before {
  content: "\f179";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-android:before {
  content: "\f17b";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-trello:before {
  content: "\f181";
}

.fa-female:before {
  content: "\f182";
}

.fa-male:before {
  content: "\f183";
}

.fa-gittip:before, .fa-gratipay:before {
  content: "\f184";
}

.fa-sun-o:before {
  content: "\f185";
}

.fa-moon-o:before {
  content: "\f186";
}

.fa-archive:before {
  content: "\f187";
}

.fa-bug:before {
  content: "\f188";
}

.fa-vk:before {
  content: "\f189";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-arrow-circle-o-right:before {
  content: "\f18e";
}

.fa-arrow-circle-o-left:before {
  content: "\f190";
}

.fa-toggle-left:before, .fa-caret-square-o-left:before {
  content: "\f191";
}

.fa-dot-circle-o:before {
  content: "\f192";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-turkish-lira:before, .fa-try:before {
  content: "\f195";
}

.fa-plus-square-o:before {
  content: "\f196";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-slack:before {
  content: "\f198";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-institution:before, .fa-bank:before, .fa-university:before {
  content: "\f19c";
}

.fa-mortar-board:before, .fa-graduation-cap:before {
  content: "\f19d";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-spoon:before {
  content: "\f1b1";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-automobile:before, .fa-car:before {
  content: "\f1b9";
}

.fa-cab:before, .fa-taxi:before {
  content: "\f1ba";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-file-pdf-o:before {
  content: "\f1c1";
}

.fa-file-word-o:before {
  content: "\f1c2";
}

.fa-file-excel-o:before {
  content: "\f1c3";
}

.fa-file-powerpoint-o:before {
  content: "\f1c4";
}

.fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before {
  content: "\f1c5";
}

.fa-file-zip-o:before, .fa-file-archive-o:before {
  content: "\f1c6";
}

.fa-file-sound-o:before, .fa-file-audio-o:before {
  content: "\f1c7";
}

.fa-file-movie-o:before, .fa-file-video-o:before {
  content: "\f1c8";
}

.fa-file-code-o:before {
  content: "\f1c9";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, .fa-support:before, .fa-life-ring:before {
  content: "\f1cd";
}

.fa-circle-o-notch:before {
  content: "\f1ce";
}

.fa-ra:before, .fa-resistance:before, .fa-rebel:before {
  content: "\f1d0";
}

.fa-ge:before, .fa-empire:before {
  content: "\f1d1";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-y-combinator-square:before, .fa-yc-square:before, .fa-hacker-news:before {
  content: "\f1d4";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-wechat:before, .fa-weixin:before {
  content: "\f1d7";
}

.fa-send:before, .fa-paper-plane:before {
  content: "\f1d8";
}

.fa-send-o:before, .fa-paper-plane-o:before {
  content: "\f1d9";
}

.fa-history:before {
  content: "\f1da";
}

.fa-circle-thin:before {
  content: "\f1db";
}

.fa-header:before {
  content: "\f1dc";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-sliders:before {
  content: "\f1de";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-soccer-ball-o:before, .fa-futbol-o:before {
  content: "\f1e3";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-newspaper-o:before {
  content: "\f1ea";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bell-slash-o:before {
  content: "\f1f7";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-eyedropper:before {
  content: "\f1fb";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-area-chart:before {
  content: "\f1fe";
}

.fa-pie-chart:before {
  content: "\f200";
}

.fa-line-chart:before {
  content: "\f201";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-bus:before {
  content: "\f207";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-cc:before {
  content: "\f20a";
}

.fa-shekel:before, .fa-sheqel:before, .fa-ils:before {
  content: "\f20b";
}

.fa-meanpath:before {
  content: "\f20c";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-diamond:before {
  content: "\f219";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-venus:before {
  content: "\f221";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-intersex:before, .fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-facebook-official:before {
  content: "\f230";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-server:before {
  content: "\f233";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-hotel:before, .fa-bed:before {
  content: "\f236";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-train:before {
  content: "\f238";
}

.fa-subway:before {
  content: "\f239";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-yc:before, .fa-y-combinator:before {
  content: "\f23b";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-battery-4:before, .fa-battery:before, .fa-battery-full:before {
  content: "\f240";
}

.fa-battery-3:before, .fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battery-2:before, .fa-battery-half:before {
  content: "\f242";
}

.fa-battery-1:before, .fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-0:before, .fa-battery-empty:before {
  content: "\f244";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-sticky-note-o:before {
  content: "\f24a";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-hourglass-o:before {
  content: "\f250";
}

.fa-hourglass-1:before, .fa-hourglass-start:before {
  content: "\f251";
}

.fa-hourglass-2:before, .fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-3:before, .fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hand-grab-o:before, .fa-hand-rock-o:before {
  content: "\f255";
}

.fa-hand-stop-o:before, .fa-hand-paper-o:before {
  content: "\f256";
}

.fa-hand-scissors-o:before {
  content: "\f257";
}

.fa-hand-lizard-o:before {
  content: "\f258";
}

.fa-hand-spock-o:before {
  content: "\f259";
}

.fa-hand-pointer-o:before {
  content: "\f25a";
}

.fa-hand-peace-o:before {
  content: "\f25b";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-safari:before {
  content: "\f267";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-tv:before, .fa-television:before {
  content: "\f26c";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-500px:before {
  content: "\f26e";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-calendar-plus-o:before {
  content: "\f271";
}

.fa-calendar-minus-o:before {
  content: "\f272";
}

.fa-calendar-times-o:before {
  content: "\f273";
}

.fa-calendar-check-o:before {
  content: "\f274";
}

.fa-industry:before {
  content: "\f275";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-map-o:before {
  content: "\f278";
}

.fa-map:before {
  content: "\f279";
}

.fa-commenting:before {
  content: "\f27a";
}

.fa-commenting-o:before {
  content: "\f27b";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-vimeo:before {
  content: "\f27d";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-edge:before {
  content: "\f282";
}

.fa-credit-card-alt:before {
  content: "\f283";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-modx:before {
  content: "\f285";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-usb:before {
  content: "\f287";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-pause-circle-o:before {
  content: "\f28c";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stop-circle-o:before {
  content: "\f28e";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-percent:before {
  content: "\f295";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-envira:before {
  content: "\f299";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-wheelchair-alt:before {
  content: "\f29b";
}

.fa-question-circle-o:before {
  content: "\f29c";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-volume-control-phone:before {
  content: "\f2a0";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asl-interpreting:before, .fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-deafness:before, .fa-hard-of-hearing:before, .fa-deaf:before {
  content: "\f2a4";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-signing:before, .fa-sign-language:before {
  content: "\f2a7";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-google-plus-circle:before, .fa-google-plus-official:before {
  content: "\f2b3";
}

.fa-fa:before, .fa-font-awesome:before {
  content: "\f2b4";
}

.fa-handshake-o:before {
  content: "\f2b5";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-o:before {
  content: "\f2b7";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-book-o:before {
  content: "\f2ba";
}

.fa-vcard:before, .fa-address-card:before {
  content: "\f2bb";
}

.fa-vcard-o:before, .fa-address-card-o:before {
  content: "\f2bc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-circle-o:before {
  content: "\f2be";
}

.fa-user-o:before {
  content: "\f2c0";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-drivers-license:before, .fa-id-card:before {
  content: "\f2c2";
}

.fa-drivers-license-o:before, .fa-id-card-o:before {
  content: "\f2c3";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-thermometer-4:before, .fa-thermometer:before, .fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-3:before, .fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-thermometer-2:before, .fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-1:before, .fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-0:before, .fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-bathtub:before, .fa-s15:before, .fa-bath:before {
  content: "\f2cd";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-times-rectangle:before, .fa-window-close:before {
  content: "\f2d3";
}

.fa-times-rectangle-o:before, .fa-window-close-o:before {
  content: "\f2d4";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-eercast:before {
  content: "\f2da";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-snowflake-o:before {
  content: "\f2dc";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-meetup:before {
  content: "\f2e0";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}@charset "UTF-8";
/* ======================================================================
 * setting
====================================================================== */@font-face {
  font-family: "FontAwesome";
  src: url("https://23961337.fs1.hubspotusercontent-na1.net/hubfs/23961337/sunstaff.co.jp/sunstaff2024/assets/fonts/fontawesome-webfont.woff2"), format("woff2");
  font-weight: normal;
  font-style: normal;
}/* ------------------------------------------------------------
 * tag setting
------------------------------------------------------------ */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1.5em 0 1em;
}

h1:first-child {
  margin-top: 0;
}

p,
ul,
ol,
table {
  margin: 1em 0;
}
p:last-child,
ul:last-child,
ol:last-child,
table:last-child {
  margin-bottom: 0;
}
p:first-child,
ul:first-child,
ol:first-child,
table:first-child {
  margin-top: 0;
}

hr {
  display: block;
  height: 1px;
  padding: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

input,
select {
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

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

html {
  font-size: 10px;
}

body {
  font-size: 1.6rem;
  font-family: "Verdana", 游ゴシック, YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;;
  line-height: 2;
  font-weight: 400;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 575px) {
  body {
    line-height: 1.5;
  }
}

a {
  color: #0063b7;
}
@media screen and (min-width: 769px) {
  a {
    transition: opacity 0.3s;
  }
  a:hover {
    opacity: 0.5;
  }
}

mark,
.marker {
  background: linear-gradient(transparent 50%, #ff6 50%);
  padding: 0.2em;
}

button {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}@charset "UTF-8";
/* ======================================================================
 * デフォルトのモジュールを拡張したい場合など、必要なものは要確認,
====================================================================== */
.hs_cos_wrapper_type_rich_text .lead-text {
  font-size: 2.3rem;
  color: #0063b7;
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  text-align: center;
  margin: 0;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .hs_cos_wrapper_type_rich_text .lead-text {
    font-size: 2rem;
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 575px) {
  .hs_cos_wrapper_type_rich_text .lead-text {
    margin-bottom: 32px;
    line-height: 1.5;
  }
}
.hs_cos_wrapper_type_rich_text .notes,
.hs_cos_wrapper_type_rich_text .notes-list li {
  color: #706e76;
  text-indent: -1em !important;
  padding-left: 1em;
  font-size: 90%;
}
.hs_cos_wrapper_type_rich_text .notes-list li {
  margin-bottom: 8px;
}
.hs_cos_wrapper_type_rich_text .flex-list {
  display: flex;
  flex-wrap: wrap;
}
.hs_cos_wrapper_type_rich_text .flex-list dt {
  margin-top: 8px;
  margin-bottom: 8px;
  font-weight: 700;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .hs_cos_wrapper_type_rich_text .flex-list dt {
    width: 17em;
  }
}
@media screen and (min-width: 576px) {
  .hs_cos_wrapper_type_rich_text .flex-list dt:first-child {
    margin-top: 16px;
  }
  .hs_cos_wrapper_type_rich_text .flex-list dt:first-child + dd {
    margin-top: 16px;
  }
}
@media screen and (min-width: 576px) {
  .hs_cos_wrapper_type_rich_text .flex-list dt + dd {
    margin-top: 8px;
    margin-left: 0;
  }
}
.hs_cos_wrapper_type_rich_text .flex-list dd {
  margin-bottom: 8px;
  margin-left: 0;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .hs_cos_wrapper_type_rich_text .flex-list dd {
    width: calc(100% - 17em);
    margin-left: 17em;
  }
}
.hs_cos_wrapper_type_rich_text .manual-list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.hs_cos_wrapper_type_rich_text .manual-list > ol {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
@media screen and (min-width: 769px) {
  .hs_cos_wrapper_type_rich_text .manual-list > ol {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.hs_cos_wrapper_type_rich_text .manual-list > ol + ol {
  margin-top: 0;
}
.hs_cos_wrapper_type_rich_text .manual-list ol > li {
  border-top: 1px solid #e5e5e5;
  padding-top: 8px;
  font-weight: 700;
}
.hs_cos_wrapper_type_rich_text .manual-list ol > li::before {
  display: none;
}
.hs_cos_wrapper_type_rich_text .manual-list ol > li > ol {
  margin-top: 8px;
}
.hs_cos_wrapper_type_rich_text .manual-list ol > li > ol > li {
  font-weight: normal;
  border: none;
  padding-top: 0;
}
.hs_cos_wrapper_type_rich_text .manual-list ol li {
  text-indent: 0;
  padding-left: 15px;
}
.hs_cos_wrapper_type_rich_text .manual-list ol a::after {
  content: "\f1c1";
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
  font-family: "FontAwesome";
}
.hs_cos_wrapper_type_rich_text .manual-list ol a:hover {
  text-decoration: none;
  opacity: 1;
}
.hs_cos_wrapper_type_rich_text .sitemap-list > li {
  margin-bottom: 32px;
}
@media screen and (max-width: 575px) {
  .hs_cos_wrapper_type_rich_text .sitemap-list > li {
    margin-bottom: 16px;
  }
}
.hs_cos_wrapper_type_rich_text .sitemap-list > li > a {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  background: #f2f2f2;
  margin-bottom: 16px;
  padding: 16px 30px;
}
@media screen and (max-width: 575px) {
  .hs_cos_wrapper_type_rich_text .sitemap-list > li > a {
    font-size: 1.6rem;
    padding: 8px 15px;
  }
}
.hs_cos_wrapper_type_rich_text .sitemap-list > li > ul {
  padding-left: 30px;
}
.hs_cos_wrapper_type_rich_text .sitemap-list li {
  padding: 0;
  text-indent: 0;
}
.hs_cos_wrapper_type_rich_text .sitemap-list li > ul > li {
  margin-top: 8px;
}
.hs_cos_wrapper_type_rich_text .sitemap-list li > ul > li > a {
  font-size: 1.8rem;
  font-weight: bold;
}
.hs_cos_wrapper_type_rich_text .sitemap-list li ul {
  margin-top: 8px;
}
.hs_cos_wrapper_type_rich_text .sitemap-list .links > li {
  padding-left: 32px;
  margin-top: 0;
  margin-bottom: 8px;
  position: relative;
  text-indent: 0;
}
.hs_cos_wrapper_type_rich_text .sitemap-list .links > li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-image: url("https://23961337.fs1.hubspotusercontent-na1.net/hubfs/23961337/sunstaff.co.jp/sunstaff2024/assets/common/ico_arrow-blue01.svg");
  background-size: 17px 4px;
  width: 17px;
  height: 4px;
}
.hs_cos_wrapper_type_rich_text .sitemap-list .links > li > a {
  font-weight: normal;
  font-size: 1.6rem;
}
.hs_cos_wrapper_type_rich_text .sitemap-list .links li {
  display: inline-block;
  margin-right: 30px;
  font-weight: normal;
}
.hs_cos_wrapper_type_rich_text .sitemap-list a:hover {
  text-decoration: none;
  opacity: 1;
}
.hs_cos_wrapper_type_rich_text .sitemap-list a[target=_blank] {
  position: relative;
  padding-right: 26px;
}
.hs_cos_wrapper_type_rich_text .sitemap-list a[target=_blank]::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  margin: auto;
  background-size: 16px 16px;
  width: 16px;
  height: 16px;
  background-image: url(//23961337.fs1.hubspotusercontent-na1.net/hubfs/23961337/raw_assets/public/sunstaff/sunstaff2024/assets/images/common/ico_external-white01.svg)
}@charset "UTF-8";
/* ======================================================================
 * dndセクション初期設定
====================================================================== */
.dnd-section {
  padding: 0 2rem;
}
.dnd-section > .row-fluid {
  margin-left: auto;
  margin-right: auto;
}@charset "UTF-8";
/* ======================================================================
 * layout初期設定
====================================================================== */
.row-fluid {
  width: 100%;
  *zoom: 1;
}
.row-fluid::before, .row-fluid::after {
  content: "";
  display: table;
}
.row-fluid::after {
  clear: both;
}
.row-fluid [class*=span] {
  display: block;
  float: left;
  width: 100%;
  min-height: 1px;
  margin-left: 2.127659574%;
}
.row-fluid [class*=span]:first-child {
  margin-left: 0;
}
.row-fluid .span12 {
  width: 100%;
}
.row-fluid .span11 {
  width: 91.489361693%;
}
.row-fluid .span10 {
  width: 82.978723396%;
}
.row-fluid .span9 {
  width: 74.468085099%;
}
.row-fluid .span8 {
  width: 65.957446802%;
}
.row-fluid .span7 {
  width: 57.446808505%;
}
.row-fluid .span6 {
  width: 48.936170208%;
}
.row-fluid .span5 {
  width: 40.425531911%;
}
.row-fluid .span4 {
  width: 31.914893614%;
}
.row-fluid .span3 {
  width: 23.404255317%;
}
.row-fluid .span2 {
  width: 14.89361702%;
}
.row-fluid .span1 {
  width: 6.382978723%;
}
@media screen and (max-width: 768px) {
  .row-fluid [class*=span] {
    display: block;
    float: none;
    width: auto;
    margin-left: 0;
  }
}/* ======================================================================
 * adjust-width
====================================================================== */
.adjust-width {
  width: 95%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .adjust-width {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}@charset "UTF-8";
/* ======================================================================
 * ボタンスタイル
====================================================================== */
/* ------------------------------------------------------------
 * c-button
------------------------------------------------------------ */
.c-button {
  cursor: pointer;
  background-color: #fff;
  box-shadow: 1px 2px 20px 1px #e5e5e5;
  border-radius: 0;
  margin-bottom: 16px;
  padding: 16px 30px;
  white-space: normal;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  font-size: 1.6rem;
  color: #0063b7;
  text-decoration: none;
}
.c-button:hover {
  opacity: 1;
  color: #fff;
  background-color: #0063b7;
}
.c-button.-large {
  padding: 32px 60px;
  font-size: 2rem;
}
.c-button.-small {
  padding: 16px 30px;
  font-size: 1.6rem;
}
.c-button.icon {
  padding-left: 61px;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.c-button.icon::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
  background-image: url("https://23961337.fs1.hubspotusercontent-na1.net/hubfs/23961337/sunstaff.co.jp/sunstaff2024/assets/common/ico_arrow-blue01.svg");
  background-size: 26px 6px;
  width: 26px;
  height: 6px;
  transition: all 0.2s ease-in-out;
}
.c-button.icon:hover::before {
  left: 25px;
  background-image: url("https://23961337.fs1.hubspotusercontent-na1.net/hubfs/23961337/sunstaff.co.jp/sunstaff2024/assets/common/ico_arrow-white01.svg");
}
.c-button.-mail::before {
  content: "\f0e0";
  display: inline-block;
  margin-left: 0;
  margin-right: 10px;
  font-family: "FontAwesome";
  background-image: none;
}
.c-button.reverse::before {
  transform: scale(-1, 1);
}
.c-button.-blue {
  background-color: #0063b7;
  color: #fff;
}
.c-button.-blue::before {
  background-image: url("https://23961337.fs1.hubspotusercontent-na1.net/hubfs/23961337/sunstaff.co.jp/sunstaff2024/assets/common/ico_arrow-white01.svg");
}
.c-button.-blue:hover {
  background-color: #fff;
  color: #0063b7;
}
.c-button.-blue:hover::before {
  background-image: url("https://23961337.fs1.hubspotusercontent-na1.net/hubfs/23961337/sunstaff.co.jp/sunstaff2024/assets/common/ico_arrow-blue01.svg");
}
.c-button.-white {
  background-color: #fff;
  color: #0063b7;
}
.c-button.-white::before {
  background-image: url("https://23961337.fs1.hubspotusercontent-na1.net/hubfs/23961337/sunstaff.co.jp/sunstaff2024/assets/common/ico_arrow-blue01.svg");
}
.c-button.-white:hover {
  background-color: #0063b7;
  color: #fff;
}
.c-button.-white:hover::before {
  background-image: url("https://23961337.fs1.hubspotusercontent-na1.net/hubfs/23961337/sunstaff.co.jp/sunstaff2024/assets/common/ico_arrow-white01.svg");
}
.c-button.-red {
  background-color: #e60012;
  padding: 0.5rem 2rem;
  color: #fff;
  line-height: 2;
  position: relative;
  transition: opacity 0.3s;
}
.c-button.-red::before {
  content: "\f105";
  display: inline-block;
  font-family: "FontAwesome";
  margin-left: 0;
  margin-right: 10px;
  background-image: none;
  width: auto;
  height: auto;
  position: relative;
  top: 0;
  left: 0;
}
.c-button.-red:hover {
  opacity: 0.5;
  background-color: #e60012;
  color: #fff;
}
.c-button.-red:hover::before {
  background-image: none;
  left: 0;
  color: #fff;
}@charset "UTF-8";
/* ======================================================================
 * hs form
====================================================================== */
form fieldset {
  max-width: 100% !important;
  padding: 0;
  border-top: 1px solid #e5e5e5 !important;
}
form fieldset:has(.hs-form-booleancheckbox) {
  border-top: none !important;
}
form .form-columns-2 {
  border-top: 1px solid #e5e5e5;
}
form .form-columns-2 .hs-form-field {
  width: 48% !important;
}
@media screen and (max-width: 768px) {
  form .form-columns-2 .hs-form-field {
    width: 100% !important;
  }
}
form .form-columns-2 .hs-form-field:last-child {
  margin-left: 4%;
}
@media screen and (max-width: 768px) {
  form .form-columns-2 .hs-form-field:last-child {
    margin-left: 0;
  }
}
form .hs-form-field {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 100% !important;
  padding: 0;
  border-top: 1px solid #e5e5e5 !important;
}
form .hs-form-field > label {
  font-size: 2.4rem;
  text-align: left;
  margin-top: 16px;
  margin-bottom: 16px;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: none;
  padding-left: 30px;
  position: relative;
  display: block;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  form .hs-form-field > label {
    font-size: 2.2rem;
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 7.5px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 575px) {
  form .hs-form-field > label {
    margin-top: 16px;
    margin-bottom: 8px;
  }
}
form .hs-form-field > label::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-image: url("https://23961337.fs1.hubspotusercontent-na1.net/hubfs/23961337/sunstaff.co.jp/sunstaff2024/assets/common/ico_tit03.svg");
  background-size: 16px 31px;
  width: 16px;
  height: 31px;
}
form .hs-form-field + div:has(.hs-fieldtype-booleancheckbox) {
  border-top: 1px solid #e5e5e5 !important;
}
form .hs-form-field:has(.hs-form-booleancheckbox) {
  border-top: none !important;
}
form .hs-form-field .input {
  display: flex;
  align-items: center;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
  margin-right: 0 !important;
  margin-top: auto;
  margin-bottom: auto;
}
form .hs-form-field .input:has(.check-button) {
  flex-wrap: wrap;
}
form .hs-form-field .input:has(.check-button) .inputs-list {
  margin-top: 16px;
}
form .hs-form-field .input:has(.check-button) .error {
  margin-bottom: 16px;
}
form .hs-form-field .input:has(textarea) {
  margin-top: 16px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  form .hs-form-field .input:has(textarea) {
    margin-top: 8px;
  }
}
@media screen and (max-width: 768px) {
  form .hs-form-field .input {
    margin-top: 7.5px;
    margin-bottom: 16px;
    max-width: 100%;
    flex: 0 0 100%;
  }
}
form .form-columns-0 {
  border: none !important;
}
form .form-columns-0 .hs-richtext {
  margin-bottom: 1.6rem;
}
form .hs-richtext {
  margin-bottom: 0.5em;
  border-top: 1px solid #e5e5e5 !important;
}
form .hs-richtext:not(.hs-form-field) {
  border-top: none !important;
}
form .hs-richtext img {
  max-width: 100% !important;
  height: auto;
}
form .inputs-list {
  padding: 0;
  list-style: none;
}
form .inputs-list li {
  display: block;
  margin: 0.7rem 0;
}
form .hs-form-required {
  visibility: hidden;
}
form .hs-form-required::after {
  content: "必須";
  visibility: visible;
  font-size: 1.6rem;
  color: #e60012;
  display: inline-block;
  border: 1px solid #e60012;
  vertical-align: 3px;
  line-height: 1.5;
  padding: 0 0.25rem;
  margin-left: 0;
  background-color: #fff;
}
form .hs-error-msg,
form .hs-error-msgs {
  color: #e60012;
  font-size: 1.6rem;
  margin-top: -12px;
  margin-bottom: 8px;
  display: block;
  padding: 0;
}
@media screen and (max-width: 768px) {
  form .hs-error-msg,
  form .hs-error-msgs {
    margin-top: -8px;
  }
}
form .hs-error-msg::before,
form .hs-error-msgs::before {
  display: none;
}
form .hs-error-msgs {
  margin-left: 33.333333%;
}
@media screen and (max-width: 768px) {
  form .hs-error-msgs {
    margin-left: 0;
  }
}
form .hs_error_rollup {
  margin: 3em auto -2em;
  text-align: center;
}
form .hs_error_rollup .hs-error-msgs {
  margin-left: 0;
}
form .hs_error_rollup .inputs-list li {
  margin: 0;
}
form .hs_error_rollup label {
  text-align: center;
}
form .hs_error_rollup label::before {
  display: none;
}
form .hs-field-desc {
  margin-top: -16px;
  margin-bottom: 16px;
  width: auto;
  order: 3;
  margin-left: 33.333333%;
  font-size: 80%;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  form .hs-field-desc {
    margin-left: 0;
    margin-top: -8px;
  }
}
form select,
form textarea, form input[type=text], form input[type=email], form input[type=password], form input[type=tel], form input[type=number], form input[type=file], form input[type=search], form input[type=date] {
  display: block;
  width: 100% !important;
  padding: 8px 12px;
  font-size: 1.6rem;
  line-height: 1.25;
  color: #464a4c;
  background-color: #fff;
  background-image: none;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  outline-color: #005fcc;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
form select::placeholder,
form textarea::placeholder, form input[type=text]::placeholder, form input[type=email]::placeholder, form input[type=password]::placeholder, form input[type=tel]::placeholder, form input[type=number]::placeholder, form input[type=file]::placeholder, form input[type=search]::placeholder, form input[type=date]::placeholder {
  color: #ccc;
}
form select:focus,
form textarea:focus, form input[type=text]:focus, form input[type=email]:focus, form input[type=password]:focus, form input[type=tel]:focus, form input[type=number]:focus, form input[type=file]:focus, form input[type=search]:focus, form input[type=date]:focus {
  color: #464a4c;
  background-color: #fff;
  border-color: #5cb3fd;
  outline: 0;
}
form select:focus::placeholder,
form textarea:focus::placeholder, form input[type=text]:focus::placeholder, form input[type=email]:focus::placeholder, form input[type=password]:focus::placeholder, form input[type=tel]:focus::placeholder, form input[type=number]:focus::placeholder, form input[type=file]:focus::placeholder, form input[type=search]:focus::placeholder, form input[type=date]:focus::placeholder {
  color: transparent;
}
form .hs-fieldtype-select .input {
  position: relative;
}
form .hs-fieldtype-select .input::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 13px;
  z-index: 1;
  display: block;
  width: 10px;
  height: 10px;
  margin-top: -9px;
  pointer-events: none;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(135deg);
}
form .hs-fieldtype-select .input select {
  padding-right: 34px;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
  background-color: inherit;
}
form .hs-fieldtype-select .input select::-ms-expand {
  display: none;
}
form textarea {
  display: block;
  resize: vertical;
  min-height: 117px;
}
form input[type=file] {
  padding: initial;
  cursor: pointer;
  background-color: transparent;
  border: initial;
}
form .fn-date-picker .pika-button {
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}
form .fn-date-picker .pika-button:hover, form .fn-date-picker .pika-button:focus {
  color: #fff;
  background: #000 !important;
  border-radius: 0 !important;
}
form .fn-date-picker .is-today .pika-button {
  color: #000;
}
form .fn-date-picker .is-selected .pika-button {
  background: #000;
  border-radius: 0 !important;
  box-shadow: none;
}
form input[type=checkbox] {
  opacity: 0;
  position: absolute;
  z-index: -1;
}
form input[type=checkbox] + span {
  position: relative;
  display: inline-block;
  padding-left: 2.5rem;
  cursor: pointer;
}
form input[type=checkbox] + span::before, form input[type=checkbox] + span::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  display: block;
}
form input[type=checkbox] + span::before {
  position: absolute;
  top: 7px;
  left: 0;
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  background-color: #ddd;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
  border-radius: 4px;
}
form input[type=checkbox] + span::after {
  top: 0.7rem;
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  opacity: 0;
}
form input[type=checkbox]:checked + span::before {
  background-color: #0275d8;
}
form input[type=checkbox]:checked + span::after {
  opacity: 1;
  background-size: 50% 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'><path fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/></svg>");
}
form input[type=checkbox]:focus + span::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 3px #0275d8;
}
form .hs-fieldtype-checkbox:has(.hs-error-msgs) .inputs-list {
  margin-top: 0;
  margin-bottom: 0;
}
form .hs-fieldtype-checkbox:has(.hs-error-msgs) .inputs-list label {
  color: #d9534f;
}
form .hs-fieldtype-checkbox .inputs-list {
  display: flex;
  gap: 8px 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  form .hs-fieldtype-checkbox .inputs-list {
    gap: 8px 24px;
    margin-top: 5px;
    margin-bottom: 8px;
  }
}
form .hs-fieldtype-checkbox .inputs-list .hs-form-checkbox {
  margin-top: 0;
  margin-bottom: 0;
}
form .inputs-list:has(input[type=radio]) {
  display: flex;
  gap: 0 20px;
}
form input[type=radio] {
  opacity: 0;
  position: absolute;
  z-index: -1;
}
form input[type=radio] + span {
  position: relative;
  display: inline-block;
  padding-left: 2.5rem;
  cursor: pointer;
  font-size: 1.6rem;
}
form input[type=radio] + span:focus::after {
  box-shadow: 0 0 0 1px #fff, 0 0 0 3px #0275d8;
}
form input[type=radio] + span::after {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: 0;
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  background-color: #ddd;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
  border-radius: 50%;
}
form input[type=radio]:focus + span::after {
  box-shadow: 0 0 0 1px #fff, 0 0 0 3px #0275d8;
}
form input[type=radio]:checked + span::after {
  opacity: 1;
  color: #fff;
  background-color: #0275d8;
  background-image: url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'><circle r='3' fill='%23fff'/></svg>");
}
form .legal-consent-container .hs-form-booleancheckbox-display > span {
  margin-left: 0 !important;
}
form .hs-fieldtype-booleancheckbox .input {
  flex: 0 0 100%;
  display: block;
  max-width: 100%;
  margin: 0;
}
form .hs-fieldtype-booleancheckbox .hs-error-msg,
form .hs-fieldtype-booleancheckbox .hs-error-msgs {
  text-align: center;
  margin: 0 auto;
}
form .hs-form-booleancheckbox {
  position: relative;
  border-top: 1px solid #c8c8c8;
  border-bottom: 1px solid #c8c8c8;
  padding: 16px;
  margin: 8px 0 0 !important;
  font-size: 1.6rem;
  text-align: center;
}
form .hs-form-booleancheckbox label {
  margin: 0 auto;
  padding: 0;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  form .hs-form-booleancheckbox label {
    text-align: left;
  }
}
form .hs-form-booleancheckbox label::before {
  display: none;
}
form .hs-form-booleancheckbox span {
  font-size: 1.6rem;
  font-weight: 500;
}
form .hs-form-booleancheckbox .input {
  width: 100%;
  flex: 0 0 100%;
}
form .hs-form-booleancheckbox .inputs-list {
  justify-content: center;
}
@media screen and (max-width: 768px) {
  form .hs-form-booleancheckbox .inputs-list {
    justify-content: flex-start;
  }
}
form .hs-form-booleancheckbox .hs-error-msg,
form .hs-form-booleancheckbox .hs-error-msgs {
  margin-left: 0;
}
form .grecaptcha-badge {
  margin: 30px auto;
}
form .hs-submit {
  width: 100%;
  margin: 3em auto 0;
  padding: 16px;
  background-color: #ebf3fa;
  text-align: center;
}
form .actions {
  position: relative;
  display: inline-block;
}
form .actions::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
  background-image: url("https://23961337.fs1.hubspotusercontent-na1.net/hubfs/23961337/sunstaff.co.jp/sunstaff2024/assets/common/ico_arrow-white01.svg");
  background-size: 26px 6px;
  width: 26px;
  height: 6px;
  transition: all 0.2s ease-in-out;
}
form .actions:hover::before {
  left: 25px;
  background-image: url("https://23961337.fs1.hubspotusercontent-na1.net/hubfs/23961337/sunstaff.co.jp/sunstaff2024/assets/common/ico_arrow-blue01.svg");
}
form .actions:hover input[type=submit] {
  color: #0063bd;
  background-color: #fff;
}
form input[type=submit] {
  display: inline-block;
  padding: 32px 45px;
  padding-left: 60px;
  margin: 0 auto;
  font-size: 2rem;
  line-height: 1.25;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background: #0063bd;
  border: none;
  outline: none;
  transition: all 0.2s ease-in-out;
}
form .submitted-message {
  text-align: center;
}

.form-title {
  margin: 0;
}

.hs-zip > label {
  display: flex !important;
  align-items: center !important;
}
@media screen and (max-width: 992px) {
  .hs-zip > label {
    flex-wrap: wrap;
  }
}
.hs-zip .input {
  align-items: stretch !important;
  position: relative;
}
@media screen and (max-width: 768px) {
  .hs-zip .input {
    flex-wrap: wrap;
  }
}
.hs-zip .input::before {
  content: "";
  display: inline-block;
  position: a;
  width: 18px;
  height: 18px;
  background-image: url("https://23961337.fs1.hubspotusercontent-na1.net/hubfs/23961337/sunstaff.co.jp/sunstaff2024/assets/common/ico_post.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin: auto;
  margin-right: 8px;
}
.hs-zip input {
  flex-basis: 75%;
}
@media screen and (max-width: 768px) {
  .hs-zip input {
    flex-basis: calc(100% - 26px);
  }
}

.js-zip-input,
.check-button {
  cursor: pointer;
  padding: 0.25em 0.75em;
  background-color: #eceeef;
  font-size: 1.2rem;
  transition: all 0.2s ease-in-out;
  margin: 0 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  text-align: center;
  width: 25%;
}
@media screen and (max-width: 768px) {
  .js-zip-input,
  .check-button {
    width: auto;
    margin: 10px 0;
    display: inline-block;
  }
}
.js-zip-input:hover,
.check-button:hover {
  opacity: 0.5;
}

.check-button {
  margin: 24px 0 0 !important;
}

.scroll-area {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: auto;
  border: 1px solid #ccc;
  padding: 30px 30px 46px;
}

form .form-columns-0 .hs-richtext:has(.birth-label) {
  margin-bottom: 0;
  border-top: 2px solid #e5e5e5 !important;
}
form .form-columns-3 {
  display: flex;
  align-items: flex-start;
  border-top: none !important;
}
@media screen and (max-width: 768px) {
  form .form-columns-3 {
    flex-wrap: wrap;
    margin-bottom: 16px !important;
  }
}
form .birth-label {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  font-size: 2.4rem;
  font-weight: 400;
  padding: 25px;
  pointer-events: none;
  text-align: left;
}
form .birth-label::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-image: url("https://23961337.fs1.hubspotusercontent-na1.net/hubfs/23961337/sunstaff.co.jp/sunstaff2024/assets/common/ico_tit03.svg");
  background-size: 16px 31px;
  width: 16px;
  height: 31px;
}
@media screen and (max-width: 768px) {
  form .birth-label {
    align-items: center;
    display: flex;
    font-size: 2.2rem;
    justify-content: flex-start;
    padding: 16px 14px;
    padding-left: 30px;
    margin-top: 16px;
    width: 100%;
  }
}
form .birth-label::after {
  content: "必須";
  visibility: visible;
  font-size: 1.6rem;
  color: #e60012;
  display: inline-block;
  border: 1px solid #e60012;
  vertical-align: 3px;
  line-height: 1.5;
  padding: 0 0.25rem;
  margin-left: 16px;
  background-color: #fff;
}
form .hs_sunstaff_birth_year,
form .hs_sunstaff_birth_month,
form .hs_sunstaff_birth_date {
  width: 33.3333333333% !important;
  border-top: none !important;
  padding: 0 0 20px;
}
@media screen and (max-width: 768px) {
  form .hs_sunstaff_birth_year,
  form .hs_sunstaff_birth_month,
  form .hs_sunstaff_birth_date {
    width: 100% !important;
    padding-bottom: 0;
  }
}
form .hs_sunstaff_birth_year > label,
form .hs_sunstaff_birth_month > label,
form .hs_sunstaff_birth_date > label {
  display: none !important;
}
form .hs_sunstaff_birth_year .input,
form .hs_sunstaff_birth_month .input,
form .hs_sunstaff_birth_date .input {
  width: 100% !important;
  max-width: 95% !important;
  flex: 0 0 100%;
}
@media screen and (max-width: 768px) {
  form .hs_sunstaff_birth_year .input,
  form .hs_sunstaff_birth_month .input,
  form .hs_sunstaff_birth_date .input {
    margin-bottom: 0 !important;
    max-width: 100% !important;
  }
}
form .hs_sunstaff_birth_year .input::after,
form .hs_sunstaff_birth_month .input::after,
form .hs_sunstaff_birth_date .input::after {
  right: 33px !important;
}
form .hs_sunstaff_birth_year .hs-error-msgs,
form .hs_sunstaff_birth_month .hs-error-msgs,
form .hs_sunstaff_birth_date .hs-error-msgs {
  padding: 10px;
  margin: 0;
  width: 100%;
}@charset "UTF-8";
/* ======================================================================
 * Header
====================================================================== */
.c-container {
  margin-top: 100px;
}
@media screen and (max-width: 991px) {
  .c-container {
    margin-top: 60px;
  }
}

/* ------------------------------------------------------------
 * 管理画面用 css
------------------------------------------------------------ */
.-is-in-editor {
  padding-top: 0;
  margin-top: 0;
}
.-is-in-editor .c-header {
  position: relative;
}
.-is-in-editor .c-header .gnav-overlay {
  display: none;
}

/* ------------------------------------------------------------
 * header
------------------------------------------------------------ */
.c-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  height: 100px;
  min-width: 320px;
  width: 100%;
  padding: 0 1.5rem;
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #e5e5e5;
}
@media screen and (min-width: 1200px) {
  .c-header {
    padding: 0 30px;
  }
}
@media screen and (max-width: 991px) {
  .c-header {
    padding: 0;
    height: 60px;
  }
}
.c-header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .c-header .header-inner {
    display: block;
    position: relative;
  }
}
.c-header .logo {
  height: 100%;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  font-size: inherit;
  margin-bottom: 0;
  line-height: inherit;
}
@media screen and (max-width: 991px) {
  .c-header .logo {
    margin-left: 15px;
  }
}
@media screen and (max-width: 1199px) {
  .c-header .logo .group-logo img {
    width: 100px !important;
  }
}
@media screen and (max-width: 991px) {
  .c-header .logo .group-logo img {
    width: 82px !important;
  }
}
@media screen and (max-width: 390px) {
  .c-header .logo .group-logo img {
    width: 55px !important;
  }
}
.c-header .logo .company-logo img {
  vertical-align: middle;
}
@media screen and (max-width: 1199px) {
  .c-header .logo .company-logo img {
    width: 290px !important;
  }
}
@media screen and (max-width: 991px) {
  .c-header .logo .company-logo img {
    width: 150px !important;
  }
}
@media screen and (max-width: 390px) {
  .c-header .logo .company-logo img {
    width: 130px !important;
  }
}
.c-header .logo .companies-logo {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.c-header .logo .companies-logo > div {
  font-size: 0;
}
.c-header .global-nav-button {
  float: right;
  margin-right: 15px;
  display: none;
}
@media screen and (max-width: 991px) {
  .c-header .global-nav-button {
    display: block;
  }
}
.c-header .global-nav-button a {
  display: inline-block;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
  position: relative;
  width: 22px;
  height: 16px;
  margin-top: 22px;
}
.c-header .global-nav-button a span {
  display: inline-block;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ccc;
  border-radius: 2px;
}
.c-header .global-nav-button a span:nth-of-type(1) {
  top: 0;
  animation: menu-bar01 0.75s forwards;
}
.c-header .global-nav-button a span:nth-of-type(2) {
  top: 7px;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}
.c-header .global-nav-button a span:nth-of-type(3) {
  bottom: 0;
  animation: menu-bar02 0.75s forwards;
}
.c-header .global-nav-button a.-js-opened span:nth-of-type(1) {
  animation: active-menu-bar01 0.75s forwards;
}
.c-header .global-nav-button a.-js-opened span:nth-of-type(2) {
  opacity: 0;
}
.c-header .global-nav-button a.-js-opened span:nth-of-type(3) {
  animation: active-menu-bar03 0.75s forwards;
}
@keyframes menu-bar01 {
  0% {
    transform: translateY(7px) rotate(45deg);
  }
  50% {
    transform: translateY(7px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-7px) rotate(-45deg);
  }
  50% {
    transform: translateY(-7px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(7px) rotate(0);
  }
  100% {
    transform: translateY(7px) rotate(45deg);
  }
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-7px) rotate(0);
  }
  100% {
    transform: translateY(-7px) rotate(-45deg);
  }
}
.c-header .header-right {
  text-align: right;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .c-header .header-right {
    float: inherit;
    text-align: left;
  }
}
.c-header .header-right .header-sub-nav {
  padding: 0;
  list-style: none;
  display: inline-flex;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .c-header .header-right .header-sub-nav {
    position: absolute;
    right: 52px;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
  }
}
.c-header .header-right .en {
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .c-header .header-right .en {
    display: none;
  }
}
.c-header .header-right .en a {
  padding: 0.5rem 20px 0.5rem 46px;
  position: relative;
  text-decoration: none;
  font-weight: 400;
  line-height: 2;
  display: block;
  color: #100e1a;
}
.c-header .header-right .en a::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
  background-size: 16px 16px;
  width: 16px;
  height: 16px;
  background-image: url(//23961337.fs1.hubspotusercontent-na1.net/hubfs/23961337/raw_assets/public/sunstaff/sunstaff2024/assets/images/common/ico_world01.svg)
}
.c-header .header-right .job-search {
  background-color: #e60012;
  display: flex;
  align-items: center;
}
.c-header .header-right .job-search a {
  padding: 0.5rem 2rem 0.5rem 4.5rem;
  color: #fff;
  padding-left: 2rem;
  position: relative;
  text-decoration: none;
  line-height: 2;
}
@media screen and (max-width: 991px) {
  .c-header .header-right .job-search a {
    line-height: 1.5;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 575px) {
  .c-header .header-right .job-search a {
    font-size: 0.8rem;
    padding: 8px;
    display: flex;
    text-align: center;
  }
}
.c-header .header-right .job-search a::before {
  content: "\f105";
  display: inline-block;
  margin-left: 0;
  margin-right: 10px;
  font-family: "FontAwesome";
}
@media screen and (max-width: 575px) {
  .c-header .header-right .job-search a::before {
    display: none;
  }
}
.c-header .header-right .job-search a br {
  display: none;
}
@media screen and (max-width: 575px) {
  .c-header .header-right .job-search a br {
    display: block;
  }
}

@media screen and (max-width: 991px) {
  .gnav {
    display: none;
    box-shadow: 0 1px 10px 1px #e5e5e5;
  }
}
.gnav .main ul:first-child {
  display: flex;
}
.gnav ul {
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 991px) {
  .gnav ul {
    display: flex;
    flex-direction: column;
    background-color: #fff;
  }
  .gnav ul li {
    position: relative;
    border-bottom: 1px solid #e5e5e5;
  }
  .gnav ul li a {
    padding: 10px 15px;
  }
}
.gnav .hs-menu-item {
  position: relative;
  padding: 0;
  margin: 0;
  text-indent: 0;
  display: inline-flex;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 991px) {
  .gnav .hs-menu-item {
    flex-wrap: wrap;
    align-items: center;
  }
}
.gnav .hs-menu-item:nth-child(4) > ul {
  display: none;
}
.gnav .hs-menu-item a {
  text-decoration: none;
  padding: 1.3rem 1.5rem;
  display: block;
  color: #100e1a;
}
@media screen and (min-width: 1200px) {
  .gnav .hs-menu-item a {
    padding: 1.3rem 2rem;
  }
}
@media screen and (max-width: 991px) {
  .gnav .hs-menu-item a {
    width: calc(100% - 44px);
  }
}
.gnav .hs-menu-item .hs-menu-children-wrapper {
  top: 150%;
  left: 0;
  overflow: hidden;
  opacity: 0;
  height: 0;
  transition: all 0.2s linear;
  z-index: -1;
  flex-direction: column;
  text-align: left;
  position: absolute;
  margin: -1px 0 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
}
@media screen and (max-width: 991px) {
  .gnav .hs-menu-item .hs-menu-children-wrapper {
    display: none;
    position: static;
    width: 100%;
    background-color: #f2f2f2;
    border: none;
    z-index: 1;
    height: auto;
    opacity: 1;
  }
}
@media screen and (min-width: 991px) {
  .gnav .hs-item-has-children:hover > .hs-menu-children-wrapper {
    opacity: 1;
    height: inherit;
    z-index: 1;
    top: 100%;
    overflow: visible;
  }
}
.gnav .hs-item-has-children .toggle {
  display: none;
}
@media screen and (max-width: 991px) {
  .gnav .hs-item-has-children .toggle {
    display: inline-block;
  }
}
.gnav .hs-item-has-children .toggle.-js-opened i::before {
  content: "\f146";
}
.gnav .hs-item-has-children .toggle i {
  padding: 10px 15px;
  color: #0063bd;
}
.gnav .hs-menu-depth-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #0063bd;
  transition: all 0.2s ease-in-out;
  z-index: -1;
  display: block;
  transform-origin: left top;
  transform: scale(0, 1);
}
.gnav .hs-menu-depth-1:hover::before {
  transform: scale(1, 1);
}
.gnav .hs-menu-depth-1.active-branch::before {
  transform: scale(1, 1);
}
.gnav .hs-menu-depth-1:has(.active-branch)::before {
  transform: scale(1, 1);
}
.gnav .hs-menu-depth-1:has(.-js-opened) {
  background-color: #f2f2f2;
}
.gnav .hs-menu-depth-2 {
  position: relative;
  white-space: nowrap;
  padding: 0;
  border-bottom: 1px solid #e5e5e5;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
}
@media screen and (max-width: 991px) {
  .gnav .hs-menu-depth-2 {
    flex-wrap: wrap;
    border-top: 1px solid #e5e5e5;
    border-bottom: none;
    margin-left: 15px;
    width: calc(100% - 15px);
    background-color: #f2f2f2;
    align-items: center;
    font-size: 1.4rem;
  }
  .gnav .hs-menu-depth-2:has(.-js-opened) {
    background-color: #fff;
  }
}
.gnav .hs-menu-depth-2.hs-item-has-children::after {
  content: "\f105";
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  margin: auto;
  height: 34px;
  font-family: "FontAwesome";
  color: #0063bd;
}
@media screen and (max-width: 991px) {
  .gnav .hs-menu-depth-2.hs-item-has-children::after {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .gnav .hs-menu-depth-2.hs-item-has-children:has(.toggle) {
    background-color: #f2f2f2;
  }
  .gnav .hs-menu-depth-2.hs-item-has-children:has(.-js-opened) {
    background-color: #fff;
  }
}
.gnav .hs-menu-depth-2 > .hs-menu-children-wrapper {
  display: flex;
  top: 0;
  left: 120%;
}
@media screen and (max-width: 991px) {
  .gnav .hs-menu-depth-2 > .hs-menu-children-wrapper {
    display: none;
  }
}
.gnav .hs-menu-depth-2:hover {
  background-color: #fff;
}
.gnav .hs-menu-depth-2:hover > .hs-menu-children-wrapper {
  top: 0;
  left: 100%;
}
.gnav .hs-menu-depth-2:hover > a {
  color: #0063b7;
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .gnav .hs-menu-depth-2:hover > a {
    color: #100e1a;
  }
}
.gnav .hs-menu-depth-2 a {
  text-decoration: none;
  padding: 5px 40px 5px 20px;
  padding-right: 30px;
}
@media screen and (max-width: 991px) {
  .gnav .hs-menu-depth-2 a {
    padding: 10px 15px;
  }
}
.gnav .hs-menu-depth-2 a[target=_blank] {
  position: relative;
  width: 100%;
}
.gnav .hs-menu-depth-2 a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 10px;
  margin-bottom: -0.2rem;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(//23961337.fs1.hubspotusercontent-na1.net/hubfs/23961337/raw_assets/public/sunstaff/sunstaff2024/assets/images/common/ico_external-white01.svg)
}
.gnav .hs-menu-depth-2 .toggle.-js-opened i::before {
  content: "\f147";
}
.gnav .hs-menu-depth-3 {
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #e5e5e5;
}
@media screen and (max-width: 991px) {
  .gnav .hs-menu-depth-3 {
    display: block;
    width: 100%;
    font-size: 12px;
    padding-left: 15px;
    border-top: 1px solid #e5e5e5;
    border-bottom: none;
  }
}
@media screen and (max-width: 991px) {
  .gnav .hs-menu-depth-3 a {
    padding: 5px 15px;
  }
}
.gnav .hs-menu-depth-3:hover {
  background-color: #fff;
}
.gnav .hs-menu-depth-3:hover > a {
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .gnav .hs-menu-depth-3 a[target=_blank]::after {
    position: static;
    transform: none;
    width: 12px;
    height: 12px;
    margin-left: 5px;
    background-size: 12px 12px;
  }
}
.gnav .hs-menu-depth-3 > ul {
  display: none;
}
.gnav .sub {
  display: none;
}
@media screen and (max-width: 991px) {
  .gnav .sub {
    display: block;
    font-size: 14px;
    border-top: 10px solid #f2f2f2;
  }
}
@media screen and (max-width: 991px) {
  .gnav .inner {
    max-height: 80vh;
    overflow: scroll;
  }
}

.header-menu {
  display: flex;
  justify-content: space-between;
  padding: 0;
  list-style: none;
}
.header-menu li {
  flex: 0 1 auto;
}
.header-menu li a {
  display: block;
  color: #e20001;
  text-decoration: none;
  background: #0063b7;
}
.header-menu li.-current {
  border-bottom: 2px solid;
}@charset "UTF-8";
/* ======================================================================
 * footer上のバナーエリア
====================================================================== */
.c-footer-banner {
  background-size: auto 100%;
  background-position: center center;
  padding-top: 48px;
  padding-bottom: 32px;
  background-image: url(//23961337.fs1.hubspotusercontent-na1.net/hubfs/23961337/raw_assets/public/sunstaff/sunstaff2024/assets/images/common/bg_footer_bnr01.png)
}
.c-footer-banner .banner-inner {
  padding-right: 15px;
  padding-left: 15px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .c-footer-banner .banner-inner {
    width: 100%;
  }
}
.c-footer-banner .banner-inner a:hover {
  opacity: 1;
}@charset "UTF-8";
/* ======================================================================
 * footer
====================================================================== */
.c-footer {
  background: #fff;
  display: flex;
  flex-direction: column;
}
.c-footer .footer-left {
  max-width: 356px;
  width: 40%;
}
@media screen and (max-width: 1110px) {
  .c-footer .footer-left {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .c-footer .footer-left {
    order: 2;
    flex-direction: column;
    margin-bottom: 40px;
  }
}
.c-footer .footer-right {
  margin-left: 3.75rem;
  width: 60%;
  flex-grow: 1;
}
@media screen and (max-width: 1110px) {
  .c-footer .footer-right {
    width: 100%;
    margin-left: 4.5rem;
  }
}
@media screen and (max-width: 768px) {
  .c-footer .footer-right {
    margin-left: 0;
    order: 1;
  }
}
.c-footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  padding-top: 16px;
  padding-bottom: 16px;
  background: #001e38;
}
.c-footer .copyright p {
  font-size: 1.4rem;
  color: #fff;
  opacity: 0.7;
}
@media screen and (max-width: 991px) {
  .c-footer .copyright.-js-cv-bottom {
    padding-bottom: 48px;
  }
}

.pagetop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 90;
  width: 50px;
  height: 50px;
  padding: 18px 20px;
  margin: 0;
  cursor: pointer;
  background: rgba(0, 94, 184, 0.7);
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .pagetop {
    width: 40px;
    height: 40px;
    border-radius: 2px;
    bottom: 10px;
    right: 10px;
  }
}
.pagetop::before {
  content: "";
  width: 16.66667px;
  height: 16.66667px;
  inset: 50% 0 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  position: absolute;
  margin: -4px auto 0;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .pagetop::before {
    width: 13.33333px;
    height: 13.33333px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}

.footer-inner {
  display: flex;
  width: 100%;
  padding: 48px 15px;
}
@media screen and (max-width: 1200px) {
  .footer-inner {
    max-width: 100%;
  }
}
@media screen and (max-width: 1110px) {
  .footer-inner {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .footer-inner {
    position: relative;
    padding: 0;
  }
}
.footer-inner .logo {
  margin: 0;
  padding: 0;
  border: none;
  text-align: inherit;
  margin-top: 0;
  margin-bottom: 96px;
  padding-top: 0;
  border-top: none;
  width: 270px;
}
@media screen and (max-width: 1110px) {
  .footer-inner .logo {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .footer-inner .logo {
    margin: 32px auto;
  }
}
.footer-inner .logo a:hover {
  opacity: 1;
}
@media screen and (max-width: 1110px) {
  .footer-inner .privacy-mark {
    width: 50%;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .footer-inner .privacy-mark {
    width: 100%;
  }
}
.footer-inner .privacy-mark .privacy {
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .footer-inner .privacy-mark .privacy {
    margin: 0 30px 16px;
  }
}
.footer-inner .privacy-mark a {
  text-decoration: none;
  color: #100e1a;
}
.footer-inner .privacy-mark img {
  float: right;
  background: #fff;
  padding: 5px;
  margin-left: 10px;
  width: 70px;
}
.footer-inner .privacy-mark figcaption {
  opacity: 0.7;
  text-align: left;
  line-height: 2;
  font-size: 13px;
  margin-top: 0;
}
@media screen and (max-width: 575px) {
  .footer-inner .privacy-mark figcaption {
    line-height: 1.5;
  }
}

.footer-nav {
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer-nav {
    position: static;
  }
}
.footer-nav ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-nav .footer-main ul:first-child {
  display: grid;
  grid-template-columns: max-content max-content 1fr;
  grid-template-rows: min-content min-content 1fr;
  grid-gap: 0;
}
@media screen and (max-width: 1110px) {
  .footer-nav .footer-main ul:first-child {
    grid-template-columns: 30% 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .footer-nav .footer-main ul:first-child {
    display: flex;
    flex-direction: column;
  }
}
.footer-nav .footer-main ul:first-child > .hs-menu-item:nth-child(1) {
  grid-area: 1/1/4/2;
}
.footer-nav .footer-main ul:first-child > .hs-menu-item:nth-child(2) {
  grid-area: 1/2/4/3;
}
.footer-nav .footer-main a {
  color: #100e1a;
  font-size: 1.4rem;
  font-weight: 400;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .footer-nav .footer-main .hs-menu-depth-1 {
    border-bottom: 1px solid #e5e5e5;
    text-align: center;
  }
}
.footer-nav .footer-main .hs-menu-depth-1 > a {
  position: relative;
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .footer-nav .footer-main .hs-menu-depth-1 > a {
    display: block;
    padding: 15px;
  }
}
.footer-nav .footer-main .hs-menu-depth-1 > a::before {
  content: "\f105";
  color: #0063bd;
  display: inline-block;
  margin-left: 0;
  margin-right: 10px;
  font-family: "FontAwesome";
}
.footer-nav .footer-main .hs-menu-depth-1 > a:hover {
  text-decoration: underline;
  opacity: 1;
}
.footer-nav .footer-main .hs-item-has-children {
  margin-right: 3.75rem;
}
@media screen and (max-width: 1110px) {
  .footer-nav .footer-main .hs-item-has-children {
    margin-right: 0;
  }
}
.footer-nav .footer-main .hs-menu-children-wrapper {
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .footer-nav .footer-main .hs-menu-children-wrapper {
    display: none;
  }
}
.footer-nav .footer-main .hs-menu-depth-2 > a {
  font-size: 1.4rem;
  font-weight: 400;
  position: relative;
  padding-left: 1.6rem;
  text-indent: -1.6rem;
  display: block;
  line-height: 2;
}
.footer-nav .footer-main .hs-menu-depth-2 > a::before {
  content: "-";
  display: inline-block;
  margin-left: 0;
  margin-right: 10px;
  color: #0063bd;
  opacity: 0.6;
  text-indent: 0;
}
.footer-nav .footer-main .hs-menu-depth-2 > a:hover {
  text-decoration: underline;
  opacity: 1;
}
.footer-nav .footer-main .hs-menu-depth-2 > a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 0.8rem;
  margin-bottom: -0.2rem;
  background-image: url(//23961337.fs1.hubspotusercontent-na1.net/hubfs/23961337/raw_assets/public/sunstaff/sunstaff2024/assets/images/common/ico_external-white01.svg)
}
.footer-nav .footer-sub {
  position: absolute;
  right: 2px;
  bottom: 0;
  margin-top: 0;
  font-size: 1.4rem;
  margin-left: 0;
}
@media screen and (max-width: 1110px) {
  .footer-nav .footer-sub {
    left: 66%;
  }
}
@media screen and (max-width: 768px) {
  .footer-nav .footer-sub {
    bottom: 0;
    left: 0;
    width: 100%;
    margin-bottom: 16px;
  }
}
.footer-nav .footer-sub ul {
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .footer-nav .footer-sub ul {
    flex-direction: row;
    justify-content: center;
  }
  .footer-nav .footer-sub ul li {
    display: flex;
  }
  .footer-nav .footer-sub ul li:nth-of-type(n + 2)::before {
    content: "｜";
    opacity: 1;
    margin-left: 0;
    margin-right: 0;
  }
}
.footer-nav .footer-sub a {
  position: relative;
  padding-left: 1.6rem;
  text-indent: -1.6rem;
  display: block;
  text-decoration: none;
  color: #100e1a;
}
@media screen and (max-width: 768px) {
  .footer-nav .footer-sub a {
    font-size: 1.2rem;
  }
}
.footer-nav .footer-sub a::before {
  content: "-";
  display: inline-block;
  margin-left: 0;
  margin-right: 10px;
  color: #0063bd;
  opacity: 0.6;
  text-indent: 0;
}
@media screen and (max-width: 768px) {
  .footer-nav .footer-sub a::before {
    display: none;
  }
}
.footer-nav .footer-sub a:hover {
  text-decoration: underline;
  opacity: 1;
}@charset "UTF-8";
/* ======================================================================
 * カスタムセクション
====================================================================== */
/* ------------------------------------------------------------
 * ページタイトルのセクション
------------------------------------------------------------ */
.c-title-section .page-header,
.c-service-title-section .page-header {
  background-image: url("https://23961337.fs1.hubspotusercontent-na1.net/hubfs/23961337/sunstaff.co.jp/sunstaff2024/assets/common/bg_tit01.png");
  background-size: auto 100%;
  background-position: center center;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 575px) {
  .c-title-section .page-header,
  .c-service-title-section .page-header {
    height: 95px;
  }
}
.c-title-section h1,
.c-title-section .h1,
.c-service-title-section h1,
.c-service-title-section .h1 {
  color: #fff;
  font-size: 4.4rem;
  margin-bottom: 12px;
  line-height: 1.3;
  font-weight: 500;
}
@media screen and (max-width: 991px) {
  .c-title-section h1,
  .c-title-section .h1,
  .c-service-title-section h1,
  .c-service-title-section .h1 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .c-title-section h1,
  .c-title-section .h1,
  .c-service-title-section h1,
  .c-service-title-section .h1 {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 575px) {
  .c-title-section h1,
  .c-title-section .h1,
  .c-service-title-section h1,
  .c-service-title-section .h1 {
    font-size: 2.4rem;
  }
}

/* ------------------------------------------------------------
 * サービスページフッターコンタクトセクション
------------------------------------------------------------ */
.row-fluid-wrapper.c-service-footer-contact {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: 40% 50% !important;
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  .row-fluid-wrapper.c-service-footer-contact {
    background-position: 30% 50% !important;
  }
}

/* ------------------------------------------------------------
 * グリッドセクション
------------------------------------------------------------ */
.grid-section .flex {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
}
@media screen and (min-width: 769px) {
  .grid-section .flex:has(> :nth-child(3)) .column1 {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}
@media screen and (min-width: 992px) {
  .grid-section .flex:has(> :nth-child(3)) .column1 {
    flex: 0 0 calc(33.333333% - 20px);
    max-width: calc(33.333333% - 20px);
  }
}
@media screen and (max-width: 768px) {
  .grid-section .flex:has(> :nth-child(3)) .column1 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .grid-section .column2 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .grid-section .column2 {
    flex: 0 0 calc(66.666667% - 15px);
    max-width: calc(66.666667% - 15px);
  }
}
@media screen and (max-width: 768px) {
  .grid-section .column2 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .grid-section .column1 {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}
@media screen and (min-width: 992px) {
  .grid-section .column1 {
    flex: 0 0 calc(33.333333% - 15px);
    max-width: calc(33.333333% - 15px);
  }
}
@media screen and (max-width: 768px) {
  .grid-section .column1 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ------------------------------------------------------------
 * 角丸セクション
------------------------------------------------------------ */
.border-radius-section > .row-fluid {
  border: 1px solid #e6f3ff;
  border-radius: 4px;
}/* ======================================================================
 * pager
====================================================================== */
.c-pagination {
  margin-top: 40px;
}
.c-pagination .inner {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
}
.c-pagination a,
.c-pagination span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #000;
  font-weight: normal;
  line-height: 1;
}
.c-pagination .latest-link,
.c-pagination .prev-link,
.c-pagination .next-link,
.c-pagination .oldest-link {
  position: relative;
}
.c-pagination .latest-link.-disabled,
.c-pagination .prev-link.-disabled,
.c-pagination .next-link.-disabled,
.c-pagination .oldest-link.-disabled {
  opacity: 0.4;
}
.c-pagination .latest-link::before, .c-pagination .latest-link::after,
.c-pagination .oldest-link::before,
.c-pagination .oldest-link::after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 0;
  width: 1rem;
  height: 1rem;
  border: 2px solid currentcolor;
  border-width: 2px 2px 0 0;
}
.c-pagination .latest-link {
  padding-left: 20px;
}
.c-pagination .latest-link::before, .c-pagination .latest-link::after {
  transform: rotate(-135deg);
}
.c-pagination .latest-link::before {
  left: 3px;
}
.c-pagination .latest-link::after {
  left: 8px;
}
.c-pagination .oldest-link {
  padding-right: 20px;
}
.c-pagination .oldest-link::before, .c-pagination .oldest-link::after {
  transform: rotate(45deg);
}
.c-pagination .oldest-link::before {
  right: 3px;
}
.c-pagination .oldest-link::after {
  right: 8px;
}
.c-pagination .prev-link::before,
.c-pagination .next-link::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 0;
  width: 1rem;
  height: 1rem;
  border: 2px solid currentcolor;
  border-width: 2px 2px 0 0;
}
.c-pagination .prev-link {
  padding-left: 15px;
}
.c-pagination .prev-link::before {
  transform: rotate(-135deg);
  left: 3px;
}
.c-pagination .prev-link::after {
  left: 8px;
}
.c-pagination .next-link {
  padding-right: 15px;
}
.c-pagination .next-link::before {
  transform: rotate(45deg);
  right: 3px;
}
.c-pagination .number-link.-current {
  color: #e20001;
}/* ======================================================================
 * sidebar
====================================================================== */@charset "UTF-8";
/* ======================================================================
 * パンくずリスト
====================================================================== */
.c-breadcrumb {
  z-index: 1;
  font-size: 1.4rem;
  text-align: center;
  position: relative;
  margin-left: 15px;
  margin-right: 15px;
  margin-top: -23px;
}
@media screen and (max-width: 768px) {
  .c-breadcrumb {
    font-size: 1.2rem;
    margin-top: -17px;
    margin-left: 10px;
    margin-right: 10px;
  }
}
.c-breadcrumb ol {
  padding: 0;
  list-style: none;
}
.c-breadcrumb .breadcrumb-list {
  height: 48px;
  list-style: none;
  padding: 0;
  background: #fff;
  display: inline-flex;
  color: #706e76;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .c-breadcrumb .breadcrumb-list {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 575px) {
  .c-breadcrumb .breadcrumb-list {
    height: 32px;
  }
}
.c-breadcrumb .breadcrumb-list > li.menu-item {
  align-self: center;
  padding: 0;
  margin: 0;
  text-indent: 0;
  font-size: 1.4rem;
}
.c-breadcrumb .breadcrumb-list > li.menu-item::before {
  content: none;
  left: inherit;
  top: inherit;
  position: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border-radius: 0;
  width: inherit;
  height: inherit;
  display: inherit;
  font-style: italic;
  font-family: "Times New Roman", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
@media screen and (max-width: 768px) {
  .c-breadcrumb .breadcrumb-list > li.menu-item {
    font-size: 1.2rem;
  }
  .c-breadcrumb .breadcrumb-list > li.menu-item:last-child {
    display: none;
  }
}
.c-breadcrumb .breadcrumb-list > li.menu-item + li {
  margin-left: 15px;
}
@media screen and (max-width: 768px) {
  .c-breadcrumb .breadcrumb-list > li.menu-item + li {
    margin-left: 6px;
  }
}
.c-breadcrumb .breadcrumb-list > li.menu-item + li::before {
  content: ">";
  margin-right: 15px;
  position: relative;
  text-align: center;
  display: inline;
}
@media screen and (max-width: 768px) {
  .c-breadcrumb .breadcrumb-list > li.menu-item + li::before {
    margin-right: 6px;
  }
}
.c-breadcrumb .breadcrumb-list > li.menu-item a {
  text-decoration: none;
  color: #706e76;
}
.c-breadcrumb .breadcrumb-list > li.menu-item a:hover {
  text-decoration: underline;
  opacity: 1;
}@charset "UTF-8";
/* ======================================================================
 * ブログ一覧用
====================================================================== */
.c-post-list {
  padding: 0;
  list-style: none;
  padding: 0;
  border-top: 1px solid #e5e5e5;
}
.c-post-list > article, .c-post-list > li {
  border-bottom: 1px solid #e5e5e5;
  margin: 0;
  padding: 0;
  text-indent: 0;
}
.c-post-list > article a, .c-post-list > li a {
  display: flex;
  padding: 16px 15px;
  transition: all 0.2s ease-in-out;
  color: #100e1a;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .c-post-list > article a, .c-post-list > li a {
    display: block;
  }
}
@media screen and (max-width: 575px) {
  .c-post-list > article a, .c-post-list > li a {
    line-height: 1.5;
  }
}
.c-post-list > article a:hover, .c-post-list > li a:hover {
  background-color: #fff3cd;
  opacity: 1;
}
.c-post-list > article .date, .c-post-list > li .date {
  width: 20em;
}
@media screen and (max-width: 768px) {
  .c-post-list > article .date, .c-post-list > li .date {
    width: 100%;
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
}
.c-post-list > article .date time, .c-post-list > li .date time {
  margin-right: 1.2em;
}
@media screen and (max-width: 768px) {
  .c-post-list > article .date time, .c-post-list > li .date time {
    margin-right: 0.5em;
  }
}
.c-post-list > article .date .category, .c-post-list > li .date .category {
  font-size: 1.4rem;
  display: inline-block;
  color: #fff;
  width: 10em;
  text-align: center;
  vertical-align: baseline;
  padding: 0 5px;
}
@media screen and (max-width: 768px) {
  .c-post-list > article .date .category, .c-post-list > li .date .category {
    width: auto;
    min-width: 9.5em;
  }
}
.c-post-list > article .title, .c-post-list > li .title {
  width: calc(100% - 20em);
}
@media screen and (max-width: 768px) {
  .c-post-list > article .title, .c-post-list > li .title {
    width: 100%;
  }
}@charset "UTF-8";
/* ======================================================================
 * ブログタグ用
====================================================================== */
.tag {
  font-size: 1.4rem;
  display: inline-block;
  color: #fff;
  width: 10em;
  text-align: center;
  vertical-align: baseline;
  padding: 0 5px;
}@charset "UTF-8";
/* ======================================================================
 * 見出しタグ用
====================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  line-height: 1.1;
}
h1 .ex,
h2 .ex,
h3 .ex,
h4 .ex,
h5 .ex,
h6 .ex {
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  color: #0063b7;
  font-size: 4rem;
  margin-right: 20px;
}
h1 .sub-text,
h2 .sub-text,
h3 .sub-text,
h4 .sub-text,
h5 .sub-text,
h6 .sub-text {
  color: #0063b7;
  display: inline-block;
  margin-bottom: 8px;
  font-size: 80%;
}
h1.no-style::before,
h2.no-style::before,
h3.no-style::before,
h4.no-style::before,
h5.no-style::before,
h6.no-style::before {
  display: none;
}
h1.-no-before,
h2.-no-before,
h3.-no-before,
h4.-no-before,
h5.-no-before,
h6.-no-before {
  border-top: none;
  border-bottom: none;
}
h1.-no-before::before,
h2.-no-before::before,
h3.-no-before::before,
h4.-no-before::before,
h5.-no-before::before,
h6.-no-before::before {
  display: none;
}

h2,
.h2 {
  font-size: 4rem;
  text-align: center;
  margin-top: 48px;
  margin-bottom: 32px;
  padding-top: 32px;
  padding-bottom: 32px;
  border-top: 3px solid #0063b7;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 991px) {
  h2,
  .h2 {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 768px) {
  h2,
  .h2 {
    font-size: 3rem;
    margin-top: 48px;
  }
}
@media screen and (max-width: 575px) {
  h2,
  .h2 {
    font-size: 2.6rem;
    margin-top: 32px;
    margin-bottom: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

h3,
.h3 {
  font-size: 3.2rem;
  text-align: left;
  margin-top: 48px;
  margin-bottom: 32px;
  padding: 0 0 0 45px;
  position: relative;
  border-top: none;
  border-bottom: none;
}
@media screen and (max-width: 991px) {
  h3,
  .h3 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  h3,
  .h3 {
    font-size: 2.6rem;
    margin-top: 64px;
  }
}
@media screen and (max-width: 575px) {
  h3,
  .h3 {
    font-size: 2.2rem;
    margin-top: 32px;
    margin-bottom: 16px;
    padding-left: 39px;
  }
}
h3::before,
.h3::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-image: url("https://23961337.fs1.hubspotusercontent-na1.net/hubfs/23961337/sunstaff.co.jp/sunstaff2024/assets/common/ico_tit01.svg");
  background-size: 26px 60px;
  width: 26px;
  height: 60px;
}
@media screen and (max-width: 575px) {
  h3::before,
  .h3::before {
    background-size: 20px 40px;
    width: 20px;
    height: 40px;
  }
}
h3:has(.ex),
.h3:has(.ex) {
  padding-left: 54px;
}
@media screen and (max-width: 991px) {
  h3:has(.ex),
  .h3:has(.ex) {
    padding-left: 49px;
  }
}
h3:has(.ex)::before,
.h3:has(.ex)::before {
  background-size: 35px 80px;
  width: 35px;
  height: 80px;
}
@media screen and (max-width: 991px) {
  h3:has(.ex)::before,
  .h3:has(.ex)::before {
    background-size: 30px 70px;
    width: 30px;
    height: 70px;
  }
}
h3:has(.-big-group)::before,
.h3:has(.-big-group)::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-size: 35px 80px;
  width: 35px;
  height: 80px;
  transform: scaleX(0.8);
}
@media screen and (max-width: 991px) {
  h3:has(.-big-group)::before,
  .h3:has(.-big-group)::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background-size: 30px 70px;
    width: 30px;
    height: 70px;
  }
}

h4,
.h4 {
  font-size: 2.8rem;
  text-align: left;
  margin-top: 48px;
  margin-bottom: 32px;
  padding: 0 0 0 45px;
  border-top: none;
  border-bottom: none;
  position: relative;
}
@media screen and (max-width: 991px) {
  h4,
  .h4 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 575px) {
  h4,
  .h4 {
    font-size: 2rem;
    margin-top: 32px;
    margin-bottom: 16px;
    padding-left: 24px;
  }
}
h4::before,
.h4::before {
  content: "";
  display: inline-block;
  width: 21px;
  height: 51px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-image: url("https://23961337.fs1.hubspotusercontent-na1.net/hubfs/23961337/sunstaff.co.jp/sunstaff2024/assets/common/ico_tit02.svg");
  background-size: 21px 51px;
}
@media screen and (max-width: 575px) {
  h4::before,
  .h4::before {
    content: "";
    background-size: 15px 30px;
    width: 15px;
    height: 30px;
  }
}

h5,
.h5 {
  font-size: 2.4rem;
  text-align: left;
  margin-top: 48px;
  margin-bottom: 32px;
  padding-top: 0;
  padding-bottom: 0;
  border-top: none;
  border-bottom: none;
  padding-left: 30px;
  position: relative;
}
@media screen and (max-width: 575px) {
  h5,
  .h5 {
    font-size: 1.8rem;
    margin-top: 32px;
    margin-bottom: 16px;
  }
}
h5::before,
.h5::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-image: url("https://23961337.fs1.hubspotusercontent-na1.net/hubfs/23961337/sunstaff.co.jp/sunstaff2024/assets/common/ico_tit03.svg");
  background-size: 16px 31px;
  width: 16px;
  height: 31px;
}

h6,
.h6 {
  font-size: 2rem;
  text-align: left;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-top: 0;
  padding-bottom: 0;
  border-top: none;
  border-bottom: none;
  padding-left: 22px;
  position: relative;
}
h6::before,
.h6::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-image: url("https://23961337.fs1.hubspotusercontent-na1.net/hubfs/23961337/sunstaff.co.jp/sunstaff2024/assets/common/ico_tit04.svg");
  background-size: 7px 20px;
  width: 7px;
  height: 20px;
}@charset "UTF-8";
/* ======================================================================
 * footer上の各コンテンツごとのリンク
====================================================================== */
.c-content-menu {
  background-color: #f2f2f2;
  padding-top: 64px;
  padding-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .c-content-menu {
    padding-top: 32px;
  }
}
@media screen and (max-width: 575px) {
  .c-content-menu {
    padding-bottom: 32px;
  }
}
.c-content-menu .menu-inner {
  max-width: 100%;
  width: 100%;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8px;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 576px) {
  .c-content-menu .menu-inner {
    width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .c-content-menu .menu-inner {
    width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .c-content-menu .menu-inner {
    width: 960px;
  }
}
@media screen and (max-width: 1199px) {
  .c-content-menu .menu-inner {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .c-content-menu .menu-inner {
    width: 1140px;
  }
}
.c-content-menu .menu-inner:has(.-en) {
  padding-left: 0;
  padding-right: 0;
}
.c-content-menu .title-wrapper {
  margin-bottom: 48px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-content-menu .title-wrapper {
    margin-bottom: 32px;
  }
}
.c-content-menu .title-wrapper h2 {
  margin: 0;
  padding: 0;
  font-size: 2.4rem;
  display: inline-block;
  font-weight: normal;
  border: none;
}
.c-content-menu .title-wrapper a {
  text-decoration: none;
  display: inline-block;
  margin-right: 22px;
  padding-left: 47px;
  position: relative;
  color: #0063b7;
}
.c-content-menu .title-wrapper a::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
  background-image: url("https://23961337.fs1.hubspotusercontent-na1.net/hubfs/23961337/sunstaff.co.jp/sunstaff2024/assets/common/ico_arrow-blue01.svg");
  background-size: 17px 4px;
  width: 17px;
  height: 4px;
}
.c-content-menu .title-wrapper a:hover {
  opacity: 1;
  text-decoration: underline;
}
.c-content-menu .menu-list {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 30px;
}
@media screen and (max-width: 575px) {
  .c-content-menu .menu-list {
    row-gap: 16px;
  }
}
.c-content-menu .menu-list > li {
  text-indent: 0;
  margin: 0;
  padding: 0;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .c-content-menu .menu-list > li {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (min-width: 992px) {
  .c-content-menu .menu-list > li {
    width: calc((100% - 60px) / 3);
  }
}
.c-content-menu .menu-list > li::before {
  display: none;
}
@media screen and (min-width: 576px) {
  .c-content-menu .menu-list.-col4 > li {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (min-width: 992px) {
  .c-content-menu .menu-list.-col4 > li {
    width: calc((100% - 90px) / 4);
  }
}
.c-content-menu .menu-list.-col4 a {
  padding: 16px 10px;
}
.c-content-menu .menu-list a {
  display: inline-block;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  vertical-align: middle;
  border: 1px solid transparent;
  font-size: 1.6rem;
  width: 100%;
  text-decoration: none;
  color: #0063b7;
  cursor: pointer;
  background-color: #fff;
  box-shadow: 1px 2px 20px 1px #e5e5e5;
  border-radius: 0;
  padding: 16px 30px;
  white-space: normal;
  transition: all 0.2s ease-in-out;
}
.c-content-menu .menu-list a:hover {
  opacity: 1;
  box-shadow: 0 0 5px 0 #f2f2f2;
  color: #fff;
  background-color: #0063b7;
}
.c-content-menu .menu-list a[target=_blank] {
  position: relative;
}
.c-content-menu .menu-list a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  background-size: 16px 16px;
  transition: all 0.2s ease-in-out;
  background-image: url("https://23961337.fs1.hubspotusercontent-na1.net/hubfs/23961337/sunstaff.co.jp/sunstaff2024/assets/common/ico_external-white01.svg");
}
.c-content-menu .menu-list a[target=_blank]:hover::after {
  background-image: url("https://23961337.fs1.hubspotusercontent-na1.net/hubfs/23961337/sunstaff.co.jp/sunstaff2024/assets/common/ico_external-blue01.svg");
}
.c-content-menu .menu-list.-en {
  column-gap: 45px;
  padding: 0 15px 8px;
}
.c-content-menu .menu-list.-en > li {
  width: auto;
}@charset "UTF-8";
/* ======================================================================
 * カードスタイル
====================================================================== */
.c-card {
  margin-bottom: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 4px;
}
.c-card .card-header {
  padding: 12px 20px;
  margin-bottom: 0;
  background-color: #f7f7f9;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.c-card .card-header:first-child {
  border-radius: 3px 3px 0 0;
}
.c-card .card-header h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 0;
}
.c-card .card-header h3::before {
  display: none;
}
.c-card.column3 .card-block {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
}
@media screen and (max-width: 992px) {
  .c-card.column3 .card-block {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 10px;
  }
}
@media screen and (max-width: 575px) {
  .c-card.column3 .card-block {
    grid-template-columns: 1fr;
    gap: 10px 0;
  }
}
.c-card .card-block {
  padding: 20px;
  margin-right: -15px;
  margin-left: -15px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
}
@media screen and (max-width: 992px) {
  .c-card .card-block {
    grid-template-columns: auto;
    margin-right: 0;
    margin-left: 0;
  }
}
.c-card .card-block:has(.half) {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
}
@media screen and (max-width: 992px) {
  .c-card .card-block:has(.half) {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 10px;
  }
}
@media screen and (max-width: 575px) {
  .c-card .card-block:has(.half) {
    grid-template-columns: 1fr;
    gap: 10px 0;
  }
}
.c-card .card-block .inner {
  padding-right: 15px;
  padding-left: 15px;
}
@media screen and (max-width: 992px) {
  .c-card .card-block .inner {
    padding-right: 0;
    padding-left: 0;
  }
}
.c-card .card-block .half {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
}
.c-card .card-block .card-title {
  font-size: 18px;
  display: flex;
  align-items: center;
  margin-top: 8px;
  padding-left: 18px;
  color: #0063bd;
}
.c-card .card-block .card-text {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
}
.c-card .card-block dl {
  margin: 0 0 16px;
}
.c-card .card-block dt {
  margin-bottom: 8px;
  line-height: 1.5;
  font-weight: 700;
}
.c-card .card-block dd {
  margin: 0;
}
.c-card .card-block .c-button[target=_blank] {
  padding-right: 61px;
  position: relative;
}
.c-card .card-block .c-button[target=_blank]::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  background-size: 16px 16px;
  width: 16px;
  height: 16px;
  background-image: url(//23961337.fs1.hubspotusercontent-na1.net/hubfs/23961337/raw_assets/public/sunstaff/sunstaff2024/assets/images/common/ico_external-white01.svg)
}
.c-card .card-block .c-button[target=_blank]:hover {
  opacity: 1;
  text-decoration: none;
}@charset "UTF-8";
/* ======================================================================
 * ブログ一覧レイアウト
====================================================================== */
.post-data.-listing {
  display: flex;
  gap: 30px;
}
.post-data.-listing article a {
  color: inherit;
  text-decoration: none;
}

.tag-list {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2px 5px;
  margin: 0;
}
.tag-list li {
  display: block;
}
.tag-list li a,
.tag-list li span {
  padding: 0.3em 1em;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.2;
  text-decoration: none;
  background: #000;
}@charset "UTF-8";
/* ======================================================================
 * ブログ記事レイアウト
====================================================================== */
.col2-container {
  padding: 80px 20px;
}
@media screen and (min-width: 769px) {
  .col2-container {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 769px) {
  .col2-container .main-content {
    width: calc(100% - 380px);
  }
}
.col2-container .post-body::after {
  content: " ";
  display: table;
  clear: both;
}
.col2-container .sidebar {
  width: 100%;
  margin-top: 60px;
}
@media screen and (min-width: 769px) {
  .col2-container .sidebar {
    position: sticky;
    top: 100px;
    width: 330px;
    height: 100%;
    margin-top: 0;
  }
}@charset "UTF-8";
/* ------------------------------------------------------------
 * responsive
------------------------------------------------------------ */
@media screen and (max-width: 1200px) {
  .u-large-pc-only {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  /* PC/SP表示切替 */
  .u-sp-only {
    display: none;
  }
  /* href="tel:〜"の場合、PC/タブレットではリンク判定無しを前提とする */
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: inherit;
  }
}
@media screen and (max-width: 768px) {
  /* PC/SP表示切替 */
  .u-pc-only {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .u-xs-none {
    display: none !important;
  }
}
/* ------------------------------------------------------------
 * margin
 * カスタムモジュールの共通余白設定用
------------------------------------------------------------ */
.u-mt-none {
  margin-top: 0;
}
.u-mt-small {
  margin-top: 40px;
}
.u-mt-default {
  margin-top: 60px;
}
.u-mt-large {
  margin-top: 80px;
}

.u-mb-none {
  margin-bottom: 0;
}
.u-mb-small {
  margin-bottom: 40px;
}
.u-mb-default {
  margin-bottom: 60px;
}
.u-mb-large {
  margin-bottom: 80px;
}

/* ------------------------------------------------------------
 * 画像
------------------------------------------------------------ */
.u-ofi {
  object-fit: cover;
  object-position: 50% 50%;
  font-family: "object-fit: cover; object-position: 50% 50%;";
}
.u-ofi.-contain {
  object-fit: contain;
  font-family: "object-fit: contain; object-position: 50% 50%;";
}

/* ------------------------------------------------------------
 * サイト内共通 js class
------------------------------------------------------------ */
.-js-slide-toggle-trig,
[data-tab-target],
[data-tab-switch] {
  -webkit-user-select: none;
  user-select: none;
}

.u-tab-switch-target,
.-js-tab-target-hide,
.-js-tab-switch-hide {
  display: none;
}

.-js-tab-target-show,
.-js-tab-switch-show {
  animation: fade-in 0.25s ease-out;
  display: block;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}