/*! 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;
}

@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  box-sizing: border-box;
  width: 120px;
  height: auto;
  border-radius: 5px;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  animation: scroll-hint-appear 1.2s linear;
  animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #FFF;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

.scroll-hint-shadow-wrap {
  position: relative;
}

.scroll-hint-shadow-wrap::after {
  content: "";
  width: 20px;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.scroll-hint-shadow-wrap::before {
  content: "";
  width: 20px;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.scroll-hint-shadow-wrap:has(.scroll-hint.is-right-scrollable)::after,
.scroll-hint-shadow-wrap.is-right-scrollable::after {
  opacity: 1;
  visibility: visible;
}

.scroll-hint-shadow-wrap:has(.scroll-hint.is-left-scrollable)::before,
.scroll-hint-shadow-wrap.is-left-scrollable::before {
  opacity: 1;
  visibility: visible;
}@charset "UTF-8";
/* ======================================================================
 * setting
====================================================================== *//* ------------------------------------------------------------
 * tag setting
------------------------------------------------------------ */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1.5em 0 1em;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6: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: 1em 0;
  border: 0;
  border-top: 1px solid #000;
}

input,
select {
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

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

html {
  font-size: min(2.56vw, 10px);
}
@media screen and (max-width: 1080px) and (min-width: 768px) {
  html {
    font-size: clamp(8px, 0.926vw, 10px);
  }
}

body {
  font-size: 1.6rem;
  font-family: Noto Sans JP, sans-serif;
  color: #1C1214;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

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

button {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}@charset "UTF-8";
/* ======================================================================
 * デフォルトのモジュールを拡張したい場合など、必要なものは要確認,
====================================================================== */@charset "UTF-8";
/* ======================================================================
 * dndセクション初期設定
====================================================================== */
.dnd-section {
  padding: 80px 30px 100px;
}
@media screen and (max-width: 768px) {
  .dnd-section {
    padding-top: 60px;
  }
}
.dnd-section > .row-fluid {
  max-width: 1080px;
  margin-right: auto;
  margin-left: 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: 1080px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .adjust-width {
    width: 100%;
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

.adjust-width-small {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}@charset "UTF-8";
/* ======================================================================
 * ボタンスタイル
====================================================================== */
/* ------------------------------------------------------------
 * c-button
------------------------------------------------------------ */
.c-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.4rem;
  padding: 0.7rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 17px;
  transition: background-color 0.3s, color 0.3s, border 0.3s;
}
.c-button span {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.c-button i {
  display: inline-block;
  width: 15.71px;
  height: 10px;
  background: currentcolor;
  -webkit-mask: url("/hubfs/243203747/common/contact-icon.svg") 100% 50%/contain no-repeat;
  mask: url("/hubfs/243203747/common/contact-icon.svg") 100% 50%/contain no-repeat;
  transition: background 0.3s;
}
.c-button.contact {
  width: 14rem;
  background-color: #004f7d;
}
.c-button.contact:hover {
  color: #004f7d;
  background-color: #fff;
  border: 2px solid #004f7d;
  opacity: 1;
}
.c-button.download {
  width: 14.4rem;
  line-height: 1.7;
  background-color: #f89125;
}
.c-button.download:hover {
  color: #f89125;
  background-color: #fff;
  border: 2px solid #f89125;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .c-button {
    width: 100% !important;
    height: 6rem;
    font-size: 1.4rem;
    border-radius: 30px;
  }
  .c-button i {
    width: 19px !important;
    height: 12px !important;
  }
}@charset "UTF-8";
/* ======================================================================
 * hs form
====================================================================== */
form fieldset {
  max-width: 100% !important;
  padding: 0;
}
form label {
  display: block;
}
form a {
  color: #004f7d;
  text-decoration: underline;
}
form .form-columns-2 .hs-form-field {
  width: 47.5% !important;
}
form .form-columns-2 .hs-form-field:last-child {
  margin-left: 5%;
}
@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: 0;
  }
}
form .hs-form-field {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  form .hs-form-field {
    margin-bottom: 2rem;
  }
}
form .hs-form-field > label {
  font-weight: 500;
}
form .hs-form-field label {
  margin-bottom: 8px;
}
form .hs-form-field .input {
  margin-right: 0 !important;
  font-size: 1.5rem;
}
form .form-columns-0 .hs-richtext {
  margin-bottom: 2rem;
}
form .form-columns-0 .title {
  font-size: 2.8rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  form .form-columns-0 .title {
    font-size: 2.4rem;
  }
}
form .form-columns-0 .subtitle {
  margin-bottom: 7rem;
}
@media screen and (max-width: 768px) {
  form .form-columns-0 .subtitle {
    margin-bottom: 3rem;
  }
}
form .hs-richtext {
  margin-bottom: 2.5rem;
  text-align: center;
}
form .hs-richtext img {
  max-width: 100% !important;
  height: auto;
}
form .inputs-list {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
form .inputs-list li {
  display: block;
  margin: 0;
}
form .inputs-list li label {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  form .inputs-list {
    flex-direction: column;
    gap: 1.2rem;
  }
}
form .hs-form-required {
  display: inline-flex;
  color: transparent;
}
form .hs-form-required::after {
  margin-top: 2px;
  margin-left: -8px;
  font-size: 1.1rem;
  color: #ff0000;
  content: "※";
}
form .hs-error-msg,
form .hs-error-msgs {
  font-size: 1.3rem;
  line-height: 1.4;
  color: #d10000;
}
form .hs-error-msgs {
  margin-top: 6.5px;
}
form .hs_error_rollup {
  text-align: center;
}
form .hs_error_rollup .inputs-list li {
  margin: 0;
}
form .hs-field-desc {
  margin-bottom: 0.2em;
  font-size: 1.4rem;
}
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] {
  width: 100% !important;
  height: 4.8rem;
  padding: 1.2rem 2rem;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  outline: none;
}
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: #cecece;
}
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 {
  position: absolute;
  top: 50%;
  right: 1.6rem;
  z-index: 1;
  display: block;
  width: 8px;
  height: 8px;
  margin-top: -7px;
  pointer-events: none;
  content: "";
  border-top: 2px solid #888888;
  border-right: 2px solid #888888;
  transform: rotate(135deg);
}
form .hs-fieldtype-select .input select {
  padding-right: 34px;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background-color: #fff;
}
form .hs-fieldtype-select .input select::-ms-expand {
  display: none;
}
form textarea {
  display: block;
  min-height: 12rem;
  resize: vertical;
}
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 .hs-fieldtype-checkbox > label {
  margin-bottom: 1.3rem;
}
form .hs-fieldtype-checkbox .inputs-list {
  gap: 1.4rem 2.8rem;
}
form input[type=checkbox] {
  display: none;
}
form input[type=checkbox] + span {
  position: relative;
  display: inline-block;
  padding-left: 3.2rem;
  cursor: pointer;
}
form input[type=checkbox] + span::before, form input[type=checkbox] + span::after {
  position: absolute;
  box-sizing: border-box;
  display: block;
  content: "";
}
form input[type=checkbox] + span::before {
  top: 0.1rem;
  left: 0;
  width: 2.4rem;
  height: 2.4rem;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
}
form input[type=checkbox] + span::after {
  top: 0.8rem;
  left: 0.4rem;
  width: 1.6rem;
  height: 1.1rem;
  background: url("/hubfs/243203747/common/form-check-icon.svg") no-repeat center/contain;
  opacity: 0;
}
form input[type=checkbox]:checked + span::after {
  opacity: 1;
}
form .hs-form-booleancheckbox input[type=checkbox] + span {
  padding-left: 3rem;
}
form .hs-form-booleancheckbox input[type=checkbox] + span::before {
  top: 0.3rem;
  width: 2rem;
  height: 2rem;
}
form .hs-form-booleancheckbox input[type=checkbox] + span::after {
  left: 0.2rem;
}
form .hs-fieldtype-radio > label {
  margin-bottom: 1.3rem;
}
form .hs-fieldtype-radio .inputs-list {
  gap: 1.4rem 3rem;
}
form input[type=radio] {
  display: none;
}
form input[type=radio] + span {
  position: relative;
  display: inline-block;
  padding-left: 3.2rem;
  cursor: pointer;
}
form input[type=radio] + span::before, form input[type=radio] + span::after {
  position: absolute;
  box-sizing: border-box;
  display: block;
  content: "";
  border-radius: 50%;
}
form input[type=radio] + span::before {
  top: 0.1rem;
  left: 0;
  width: 2.4rem;
  height: 2.4rem;
  background-color: #fff;
  border: 1px solid #e0e0e0;
}
form input[type=radio] + span::after {
  top: 0.8rem;
  left: 0.7rem;
  width: 1rem;
  height: 1rem;
  background: #004f7d;
  opacity: 0;
}
form input[type=radio]:checked + span::after {
  opacity: 1;
}
form input[type=number]::-webkit-inner-spin-button,
form input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: inner-spin-button;
  opacity: 1;
}
form input[type=number] {
  -moz-appearance: textfield;
}
form .legal-consent-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
}
form .legal-consent-container .hs-dependent-field {
  margin-bottom: 2.5rem;
}
form .legal-consent-container .hs-form-field {
  margin-bottom: 0 !important;
}
form .legal-consent-container .hs-form-booleancheckbox-display > span {
  margin-left: 0 !important;
}
form .grecaptcha-badge {
  margin: 30px auto;
}
form .hs-submit {
  width: 90%;
  max-width: 34rem;
  margin: 1rem auto 0;
}
@media screen and (max-width: 768px) {
  form .hs-submit {
    width: 100%;
    max-width: 100%;
  }
}
form .hs-submit .actions {
  position: relative;
}
form .hs-submit .actions::after {
  position: absolute;
  top: 0;
  right: 2rem;
  bottom: 0;
  display: inline-block;
  width: 2.4rem;
  height: 1.6rem;
  margin: auto 0;
  content: "";
  background: url("/hubfs/243203747/common/button-arrow.svg") no-repeat center/contain;
  transition: background 0.3s;
}
form .hs-submit .actions:hover::after {
  background: url("/hubfs/243203747/common/button-arrow-hover.svg") no-repeat center/contain;
}
form .hs-submit .actions:hover input[type=submit] {
  color: #f89125;
  background-color: #fff;
  border: 2px solid #f89125;
}
form input[type=submit] {
  display: block;
  width: 100%;
  height: 7rem;
  padding: 1rem 5rem 1rem 4rem;
  margin: 0 auto;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background: #f89125;
  border: 2px solid transparent;
  border-radius: 3.5rem;
  outline: none;
  transition: border 0.3s, background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 768px) {
  form input[type=submit] {
    height: 6rem;
  }
}
form .submitted-message {
  text-align: center;
}

.form-title {
  margin-bottom: 0 0 2rem;
  font-size: 2.8rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .form-title {
    font-size: 2.4rem;
  }
}@charset "UTF-8";
/* ======================================================================
 * Header
====================================================================== */
.c-container {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .c-container {
    padding-top: 60px;
  }
}

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

/* ------------------------------------------------------------
 * header
------------------------------------------------------------ */
.c-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  min-height: 80px;
  padding: 13px 28px 0 50px;
  background-color: #fff;
}
.c-header.-js-opened {
  height: 100%;
}
@media screen and (max-width: 1055px) {
  .c-header {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .c-header {
    min-height: 60px;
    padding: 10px 25px 10px 20px;
  }
}

.header-inner .main-menu ul {
  padding: 0;
  list-style: none;
  display: flex;
  gap: 4.8rem;
  justify-content: flex-end;
}
.header-inner .main-menu li {
  position: relative;
}
.header-inner .main-menu li.hs-item-has-children > a {
  position: relative;
  padding-right: 1.2rem;
}
.header-inner .main-menu li.hs-item-has-children > a::after {
  position: absolute;
  top: 2.5rem;
  right: 0;
  width: 0.7rem;
  height: 0.7rem;
  content: "";
  background: url("/hubfs/243203747/common/arrow.svg") no-repeat center center;
  transition: background 0.3s ease-in-out;
}
@media screen and (min-width: 769px) {
  .header-inner .main-menu li.hs-item-has-children:hover {
    border-bottom: 2px solid #004f7d;
  }
}
.header-inner .main-menu li a {
  display: block;
  padding: 1.7rem 0;
  font-family: "Jost", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  color: #004f7d;
  text-align: right;
  text-decoration: none;
}
.header-inner .main-menu li.-current {
  border-bottom: 2px solid;
}
.header-inner .main-menu .hs-menu-item {
  padding-bottom: 1.1rem;
}
.header-inner .main-menu .hs-menu-children-wrapper {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  z-index: 1;
  display: none;
  min-width: 100%;
  padding: 0;
  margin: 0;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  transform: translateX(-50%);
}
.header-inner .main-menu .hs-menu-children-wrapper li {
  display: block;
  padding: 1.6rem 2.327rem 0;
  white-space: nowrap;
  background-color: #fff;
  transition: background-color 0.3s;
}
.header-inner .main-menu .hs-menu-children-wrapper li:not(:last-child) a {
  border-bottom: 1px solid #e2e2e2;
}
@media screen and (min-width: 769px) {
  .header-inner .main-menu .hs-menu-children-wrapper li:hover {
    background-color: #004f7d;
  }
  .header-inner .main-menu .hs-menu-children-wrapper li:hover a {
    color: #fff;
  }
}
.header-inner .main-menu .hs-menu-children-wrapper a {
  position: relative;
  padding: 0 3.6rem 0 0;
  padding-bottom: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: left;
  transition: color 0.3s;
}
.header-inner .main-menu .hs-menu-children-wrapper a::after {
  position: absolute;
  top: 0.6rem;
  right: 0;
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  content: "";
  background: currentcolor;
  -webkit-mask: url("/hubfs/243203747/common/arrow-right.svg") 100% 50%/contain no-repeat;
  mask: url("/hubfs/243203747/common/arrow-right.svg") 100% 50%/contain no-repeat;
  transition: background 0.3s;
}
.header-inner .main-menu .hs-menu-children-wrapper a:hover {
  color: #79a6ff;
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .header-inner .main-menu li.hs-item-has-children:hover .hs-menu-children-wrapper {
    display: block !important;
  }
}
@media screen and (max-width: 1055px) {
  .header-inner .main-menu ul {
    gap: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .header-inner .main-menu {
    display: block;
    width: 100%;
    margin-top: 0;
  }
  .header-inner .main-menu ul {
    display: block;
    width: 100%;
    padding: 67px 0 49px;
  }
  .header-inner .main-menu li.hs-item-has-children > a::after {
    top: 12px;
    right: -6px;
    width: 10px;
    height: 10px;
    background: url("/hubfs/243203747/common/arrow-sp.svg") no-repeat center center;
    transition: transform 0.3s;
  }
  .header-inner .main-menu li.hs-item-has-children.-js-opened > a::after {
    transform: rotate(180deg);
  }
  .header-inner .main-menu li a {
    display: inline-block;
    padding: 0 10px;
    font-size: 2.2rem;
    text-align: center;
  }
  .header-inner .main-menu .hs-menu-item {
    padding-bottom: 36px;
    text-align: center;
  }
  .header-inner .main-menu .hs-menu-children-wrapper {
    position: relative;
    left: 0;
    padding-top: 20px;
    box-shadow: none;
    transform: none;
  }
  .header-inner .main-menu .hs-menu-children-wrapper li {
    padding-top: 13px;
    padding-bottom: 13px;
  }
  .header-inner .main-menu .hs-menu-children-wrapper li:not(:last-child) {
    border-bottom: 1px solid #e2e2e2;
  }
  .header-inner .main-menu .hs-menu-children-wrapper li:not(:last-child) a {
    border: none;
  }
  .header-inner .main-menu .hs-menu-children-wrapper a {
    padding: 0;
    font-size: 1.4rem;
  }
  .header-inner .main-menu .hs-menu-children-wrapper a::after {
    display: none;
  }
  .header-inner .main-menu .hs-menu-children-wrapper.-js-opened {
    display: block;
  }
}
.header-inner .toggle-btn {
  position: relative;
  top: 10px;
  display: flex;
  flex: 0 0 auto;
  align-items: flex-end;
  justify-content: center;
  width: 32px;
  height: 18px;
  padding: 10px 0;
  margin-left: auto;
}
.header-inner .toggle-btn i {
  position: absolute;
  inset: 0;
  width: 32px;
  height: 2px;
  margin: auto 0;
}
.header-inner .toggle-btn i:nth-child(1) {
  top: -15px;
}
.header-inner .toggle-btn i:nth-child(2) {
  width: 16px;
}
.header-inner .toggle-btn i:nth-child(3) {
  top: 17px;
}
@media screen and (min-width: 769px) {
  .header-inner .toggle-btn {
    display: none;
  }
}/* ======================================================================
 * footer
====================================================================== */
.c-footer {
  padding: 4rem 0 5rem;
  color: #fff;
  background: url("/hubfs/243203747/common/footer-bg.png") no-repeat center/cover;
}
.c-footer .logo {
  margin-bottom: 1rem;
}
.c-footer .adress {
  font-size: 1.4rem;
}
.c-footer .adress p {
  margin-top: 0;
}
.c-footer .adress p:last-child {
  margin-bottom: 0;
}
.c-footer .adress p a {
  color: #fff;
  text-decoration: none;
}
.c-footer .adress .name {
  font-size: 1.6rem;
  font-weight: bold;
}
.c-footer .copyright {
  margin-top: auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #8dc8ea;
}
@media screen and (max-width: 768px) {
  .c-footer {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: url("/hubfs/243203747/common/footer-bg-sp1.png") no-repeat center/cover;
  }
  .c-footer .copyright {
    margin-top: 5rem;
    text-align-last: left;
  }
}

.pagetop {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: #004f7d;
  border: 1px solid #fff;
  border-radius: 50%;
}
.pagetop svg {
  transform: rotate(-90deg);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
.footer-inner .footer-right {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .footer-inner {
    display: block;
  }
  .footer-inner .footer-left {
    width: 100%;
    margin-bottom: 4.8rem;
  }
  .footer-inner .footer-left .logo {
    width: 200px;
  }
  .footer-inner .footer-right {
    gap: 0;
    align-items: flex-start;
  }
  .footer-inner .nav-info {
    display: none;
  }
}

.footer-nav ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 4.8rem;
  justify-content: flex-end;
}
.footer-nav li {
  position: relative;
  padding: 0.8rem 0;
}
.footer-nav li.hs-item-has-children > a {
  position: relative;
  padding-right: 1.2rem;
}
.footer-nav li.hs-item-has-children > a::after {
  position: absolute;
  top: 0.9rem;
  right: 0;
  width: 0.7rem;
  height: 0.7rem;
  content: "";
  background-color: currentcolor;
  -webkit-mask: url("/hubfs/243203747/common/arrow.svg") no-repeat center center;
  mask: url("/hubfs/243203747/common/arrow.svg") no-repeat center center;
}
@media screen and (min-width: 769px) {
  .footer-nav li.hs-item-has-children:hover .hs-menu-children-wrapper {
    display: block;
  }
}
.footer-nav a {
  font-family: "Jost", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  color: #fff;
  text-decoration: none;
}
.footer-nav .menu-item {
  float: left;
  min-width: 16.5rem;
}
.footer-nav .hs-menu-children-wrapper {
  position: absolute;
  left: 50%;
  z-index: 1;
  display: none;
  padding: 0;
  margin-top: 0.8rem;
  background-color: #fff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  transform: translateX(-50%);
}
.footer-nav .hs-menu-children-wrapper li {
  display: block;
  padding: 0.3rem 1rem 0;
  white-space: nowrap;
  background-color: #fff;
  transition: background-color 0.3s;
}
.footer-nav .hs-menu-children-wrapper li:not(:last-child) a {
  border-bottom: 1px solid #e2e2e2;
}
.footer-nav .hs-menu-children-wrapper li:first-child {
  padding-top: 0.5rem;
}
.footer-nav .hs-menu-children-wrapper li:last-child a {
  padding-bottom: 0.8rem;
}
@media screen and (min-width: 769px) {
  .footer-nav .hs-menu-children-wrapper li:hover {
    background-color: #004f7d;
  }
  .footer-nav .hs-menu-children-wrapper li:hover a {
    color: #fff;
  }
}
.footer-nav .hs-menu-children-wrapper a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 0 1.6rem 0.6rem 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #004f7d;
  text-align: left;
  transition: color 0.3s;
}
.footer-nav .hs-menu-children-wrapper a::after {
  position: absolute;
  top: 0.4rem;
  right: 0;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: currentcolor;
  -webkit-mask: url("/hubfs/243203747/common/arrow-right.svg") 100% 50%/contain no-repeat;
  mask: url("/hubfs/243203747/common/arrow-right.svg") 100% 50%/contain no-repeat;
  transition: background 0.3s;
}
.footer-nav .hs-menu-children-wrapper a:hover {
  color: #79a6ff;
  opacity: 1;
}
.footer-nav .tel {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .footer-nav {
    width: 100%;
  }
  .footer-nav ul {
    gap: 1.6rem 4rem;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 4.8rem;
  }
  .footer-nav li {
    margin-bottom: 0;
  }
  .footer-nav li a {
    line-height: 1;
  }
  .footer-nav .menu-item {
    float: left;
    width: 50%;
    min-width: auto;
  }
}@charset "UTF-8";
/* ======================================================================
 * カスタムセクション
====================================================================== */
.c-section {
  position: relative;
  z-index: 1;
}
.c-section::before {
  position: absolute;
  top: 80px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 14.65vw;
  content: "";
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .c-section::before {
    top: 60px;
    height: 24.28vw;
  }
}

/* ------------------------------------------------------------
 * wave1
------------------------------------------------------------ */
.wave1::before {
  background: url("/hubfs/243203747/service/wave1-bg.png") no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .wave1::before {
    background: url("/hubfs/243203747/service/wave1-bg-sp.png") no-repeat center/cover;
  }
}

/* ------------------------------------------------------------
 * wave2
------------------------------------------------------------ */
.wave2::before {
  background: url("/hubfs/243203747/service/wave2-bg.png") no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .wave2::before {
    background: url("/hubfs/243203747/service/wave2-bg-sp.png") no-repeat center/cover;
  }
}

/* ------------------------------------------------------------
 * contact
------------------------------------------------------------ */
.contact-section::before {
  top: auto;
  bottom: 86px;
  background: url("/hubfs/243203747/service/wave1-bg.png") no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .contact-section::before {
    bottom: 40px;
    background: url("/hubfs/243203747/service/wave1-bg-sp.png") no-repeat center/cover;
  }
}/* ======================================================================
 * pager
====================================================================== */
.c-pagination {
  margin-top: 20px;
}
.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: currentcolor;
  font-weight: bold;
  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
====================================================================== *//* Missing Template at Path: \'b-story2025\/assets\/css\/templates\/blog\/_blog-listing.css\' *//* Missing Template at Path: \'b-story2025\/assets\/css\/templates\/blog\/_blog-post.css\' */@charset "UTF-8";
/* ------------------------------------------------------------
 * responsive
------------------------------------------------------------ */
@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;
  }
}
/* ------------------------------------------------------------
 * 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;
  }
}