@charset "UTF-8";
/*
@useで読み込むこと
*/
/** @format */
/** @format */
/** @format */
html {
  scroll-behavior: smooth;
}

body {
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 500;
  font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", "Noto Sans JP", sans-serif;
  color: #333;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

.link {
  color: #0077AA;
  font-weight: bold;
}
.link:hover {
  border-bottom: 1px solid #0077AA;
}
@media screen and (max-width: 1120px) {
  .link:hover {
    border-bottom: none;
  }
}

.wrapper {
  width: 100%;
  max-width: 1024px;
  padding: 80px 40px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .wrapper {
    padding: 40px 16px;
  }
}

.headingInner {
  background-color: #eee;
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .headingInner {
    margin-top: 49px;
  }
}

.post-password-form input {
  border: 1px solid #ccc;
}

.iframe_wrap {
  position: relative;
  width: 100%;
  height: 800px;
  overflow-y: scroll;
}
.iframe_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

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

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

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* 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 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

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

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

/**
 * 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; /* 1 */
  font-size: inherit; /* 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 {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

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

/**
 * 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 outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * 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. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

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

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/** @format */
/*
@useで読み込むこと
*/
.btn--contact {
  background: #00366f;
  color: #fff;
  border-radius: 4px;
  display: inline-block;
  transition: all 0.5s;
  position: relative;
}
.btn--contact::before {
  position: absolute;
  content: "";
  background: #fff;
  mask: url(../img/pages/front-page/mail.svg) no-repeat center/cover;
  -webkit-mask: url(../img/pages/front-page/mail.svg) no-repeat center/cover;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-65px, -50%);
  transition: all 0.5s;
}

.btn--partnerContact::before {
  position: absolute;
  content: "";
  background: #fff;
  mask: url(../img/pages/front-page/mail.svg) no-repeat center/cover;
  -webkit-mask: url(../img/pages/front-page/mail.svg) no-repeat center/cover;
  width: 20px;
  height: 20px;
  left: 46%;
  top: 50%;
  transform: translate(-65px, -50%);
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .btn--partnerContact::before {
    left: 48%;
  }
}

.btn--more {
  width: 295px;
  height: 54px;
  background: #00366f;
  color: #fff;
  border: solid 3px #00366f;
  border-radius: 162px;
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  padding: 12px 80px;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.5s;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 768px) {
  .btn--more {
    width: 100%;
  }
}
.btn--more::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  mask: url(../img/pages/front-page/ep_arrow-right.svg) no-repeat center/cover;
  -webkit-mask: url(../img/pages/front-page/ep_arrow-right.svg) no-repeat center/cover;
  background: #fff;
  transition: all 0.5s;
  left: 68%;
}
.btn--more:hover {
  color: #00366f;
  background: #fff;
}
.btn--more:hover::after {
  background: #00366f;
  transform: translate(8px);
}

.header__btn.btn--download {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0;
  gap: 6px;
  border-radius: 4px;
  transition: all 0.5s;
  color: #00366f;
  border: 1px solid #00366f;
}
.header__btn.btn--download::before {
  content: "";
  background-image: url("../img/pages/front-page/paper.svg");
  background-repeat: no-repeat;
  width: 13px;
  height: 16px;
}
.header__btn.btn--download:hover {
  background: #00366f;
  color: #fff;
}
.header__btn.btn--download:hover::before {
  background-image: url(../img/pages/front-page/paper.svg);
  background-repeat: no-repeat;
}

/** @format */
/** @format */
.heading--top {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  display: block;
  letter-spacing: 1.2px;
  background: var(--gradation-main, linear-gradient(91deg, #2D4072 0%, #29547A 16.72%, #36717C 58.97%, #335A53 76.88%, #2D4072 101.1%));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .heading--top {
    font-size: 24px;
  }
}
.heading--top::after {
  content: "";
  position: absolute;
  font-size: 80px;
  line-height: 1;
  font-family: "Lato", sans-serif;
  color: var(--main-4, rgba(0, 54, 111, 0.04));
  top: -16px;
  left: 0;
  letter-spacing: 2.4px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .heading--top::after {
    font-size: 48px;
    top: -6px;
  }
}

.heading__container {
  margin-top: 64px;
  padding: 120px 0px;
  background: var(--gradation-main, linear-gradient(91deg, #2D4072 0%, #29547A 16.72%, #36717C 58.97%, #335A53 76.88%, #2D4072 101.1%));
  text-align: center;
}
@media screen and (max-width: 768px) {
  .heading__container {
    margin-top: 49px;
    padding: 60px 0;
  }
}

.heading--page {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .heading--page {
    font-size: 24px;
  }
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }
}

/** @format */
/** @format */
.logo__img {
  display: inline-block;
  width: 95px;
  height: 25px;
  vertical-align: middle;
  transition: all 0.5s;
}
.logo__img:hover {
  opacity: 0.5;
}

/** @format */
.tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.12px;
  padding: 4px 16px;
  border-radius: 4px;
  background: #00366f;
  color: #fff;
}

/** @format */
/** @format */
.fixbanner {
  position: fixed;
  right: 0;
  bottom: 10%;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 900;
}
@media screen and (max-width: 768px) {
  .fixbanner {
    display: none;
  }
}
.fixbanner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #333;
  opacity: 0.7;
  z-index: -1;
  border-radius: 5px 0 0 5px;
}

.fixbanner__title {
  color: #fff;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
}

.fixbanner__btn {
  display: flex;
  gap: 8px;
  background-color: #09bc81;
  padding: 12px;
  border-radius: 4px;
  color: #fff;
  font-weight: bold;
  transition: all 0.3s;
}
.fixbanner__btn:hover {
  opacity: 0.5;
}

/** @format */
/** @format */
.bottom {
  display: none;
}
@media screen and (max-width: 768px) {
  .bottom {
    display: flex;
    gap: 2px;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 99;
  }
}

.header__hamburgerContact.bottom__btn {
  border-radius: 0;
  max-width: none;
  flex: 1;
  padding: 18px 0;
}
@media screen and (max-width: 480px) {
  .header__hamburgerContact.bottom__btn {
    font-size: 14px;
  }
}
.header__hamburgerContact.bottom__btn:hover {
  opacity: 1;
}

.header__hamburgerDownload.bottom__btn {
  border-radius: 0;
  max-width: none;
  flex: 1;
  padding: 18px 0;
}
@media screen and (max-width: 480px) {
  .header__hamburgerDownload.bottom__btn {
    font-size: 14px;
  }
}
.header__hamburgerDownload.bottom__btn:hover {
  opacity: 1;
}

/** @format */
/** @format */
.header {
  width: 100%;
  height: 64px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 3px -3px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  .header {
    height: 49px;
  }
}

.header__inner {
  max-width: 1200px;
  padding: 0 16px;
  margin: 0 auto;
  line-height: 64px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .header__inner {
    line-height: 49px;
  }
}

.header__nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}

.header__navWrapper {
  display: flex;
  justify-content: space-between;
}

.header__navItem {
  list-style: none;
  height: 64px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s;
  color: #333;
}
@media screen and (max-width: 768px) {
  .header__navItem:nth-of-type(3), .header__navItem:last-of-type {
    width: 100%;
  }
}
.header__navItem:hover {
  background: #00366f;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .header__navItem:hover {
    background: #fff;
    color: #00366f;
  }
}

.header__navLink {
  text-decoration: none;
  display: inline-block;
  width: 100%;
  padding: min(1.3vw, 24px);
  line-height: 1;
}

.header__navItem--service {
  color: #333;
}
.header__navItem--service > a {
  position: relative;
  padding: 24px;
}
@media screen and (max-width: 1024px) {
  .header__navItem--service > a {
    line-height: 0;
  }
}
.header__navItem--service > a::after {
  position: absolute;
  content: "";
  mask: url(../img/pages/front-page/ri_arrow-up-s-line.svg) no-repeat center/cover;
  -webkit-mask: url(../img/pages/front-page/ri_arrow-up-s-line.svg) no-repeat center/cover;
  background: #333;
  width: 24px;
  height: 24px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.5s;
}
.header__navItem--service > ul {
  max-height: 0;
  visibility: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}
.header__navItem--service:hover > ul {
  max-height: 1000px;
  opacity: 1;
  visibility: visible;
  color: #333;
}
.header__navItem--service:hover > a::after {
  background: #fff;
  transform: rotate(180deg) translateY(50%);
}

.header__navItem--accordion {
  pointer-events: none;
}

.header__navItem--ul {
  border: 1px solid #eee;
}

.header__navItem--serviceLink {
  list-style: none;
  line-height: 1;
  padding: 16px 24px;
  transition: all 0.5s;
  display: block;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #00366f;
}
.header__navItem--serviceLink:hover {
  background: #00366f;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .header__navItem--serviceLink {
    background: #f4f7fa;
    color: #00366f;
    padding: 12px 24px;
  }
}

.header__btn {
  width: 180px;
  height: 40px;
  line-height: 36px;
  margin-left: 12px;
  padding-left: 48px;
  border: solid 2px #00366f;
}
@media screen and (max-width: 1024px) {
  .header__btn {
    border-color: #fff;
    margin-left: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.header__btn:hover {
  background: #fff;
  color: #00366f;
}
.header__btn:hover::before {
  background: #00366f;
}

/*---------------------------
ハンバーガーメニュー
----------------------------*/
.header__hamburgerMenuBtn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__hamburgerMenuBtn {
    display: inline-block;
    width: 30px;
    height: 24px;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    z-index: 20;
    right: 0;
  }
  .header__hamburgerMenuBtn span {
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #00366f;
    border-radius: 5px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
  }
  .header__hamburgerMenuBtn span:nth-child(1) {
    top: 0;
  }
  .header__hamburgerMenuBtn span:nth-child(2) {
    top: 10px;
  }
  .header__hamburgerMenuBtn span:nth-child(3) {
    top: 20px;
  }
  .header__hamburgerMenuBtn.open span:nth-child(1) {
    top: 12px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .header__hamburgerMenuBtn.open span:nth-child(2), .header__hamburgerMenuBtn.open span:nth-child(3) {
    top: 12px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

.header__hamburgerMenu {
  position: fixed;
  width: 100%;
  top: 64px;
  right: -120%;
  overflow-y: scroll;
  height: 100vh;
  background: #f4f7fa;
  box-sizing: border-box;
  z-index: 10;
  transition: all 0.3s;
  padding: 40px 16px 0 16px;
}
@media screen and (max-width: 768px) {
  .header__hamburgerMenu {
    top: 49px;
  }
}
.header__hamburgerMenu.open {
  right: 0;
}

.header__hamburgerMenuItem {
  width: 100%;
  border-bottom: 1px solid #00366f;
  background: #00366f;
  color: #fff;
  display: block;
  height: auto;
}

.header__hamburgerMenuItem--service {
  color: #00366f;
  border-bottom: 1px solid #00366f;
  list-style: none;
  transition: all 0.5s;
  display: block;
  width: 100%;
  background: #f4f7fa;
}
.header__hamburgerMenuItem--service > a {
  position: relative;
}
.header__hamburgerMenuItem--service > a::after {
  position: absolute;
  content: "";
  mask: url(../img/pages/front-page/ri_arrow-up-s-line.svg) no-repeat center/cover;
  -webkit-mask: url(../img/pages/front-page/ri_arrow-up-s-line.svg) no-repeat center/cover;
  background: #00366f;
  width: 24px;
  height: 24px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.5s;
}

.header__hamburgerMenuUl {
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: height 0.5s ease, opacity 0.5s ease;
}

.header__hamburgerMenuLink--service {
  width: 100%;
  background: #f4f7fa;
  color: #00366f;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.5s;
  padding: 0 24px;
}

.header__hamburgerMenuItem--service.is-open .header__hamburgerMenuUl {
  height: auto;
  opacity: 1;
  visibility: visible;
  color: #333;
  display: block;
}
.header__hamburgerMenuItem--service.is-open > a::after {
  background: #00366f;
  transform: rotate(180deg) translateY(50%);
}

.header__hamburgerMenuLink {
  display: block;
  width: 100%;
  background: #f4f7fa;
  color: #00366f;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.5s;
  padding: 0 24px;
}
.header__hamburgerMenuLink:hover {
  background: #fff;
  color: #00366f;
}

.header__hamburgerDownload {
  background-color: #09bc81;
  color: #fff;
  padding: 13px 0;
  max-width: 343px;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  gap: 4px;
  line-height: 1.5;
  transition: all 0.3s;
}
.header__hamburgerDownload::before {
  background-image: url("../img/pages/front-page/paper-white.svg");
  background-repeat: no-repeat;
  content: "";
  width: 18px;
  height: 18px;
}
.header__hamburgerDownload:hover {
  opacity: 0.5;
}

.header__hamburgerContact {
  background-color: #00366f;
  color: #fff;
  padding: 13px 0;
  max-width: 343px;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  gap: 6px;
  line-height: 1.5;
  transition: all 0.3s;
}
.header__hamburgerContact::before {
  background-image: url("../img/pages/front-page/mail-white.svg");
  background-repeat: no-repeat;
  content: "";
  width: 14px;
  height: 12px;
}
.header__hamburgerContact:hover {
  opacity: 0.5;
}

/** @format */
/** @format */
.footer {
  background: #00366f;
}

.footer__inner {
  padding: 40px 0;
}
@media screen and (max-width: 480px) {
  .footer__inner {
    padding: 64px 0;
  }
}

.footer__container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .footer__container {
    flex-direction: column;
  }
}

.footer__nav li {
  margin-bottom: 20px;
}
.footer__nav li:last-of-type {
  margin-bottom: 0;
}
.footer__nav a {
  position: relative;
  color: #fff;
  transition: all 0.5s;
  padding-left: 24px;
}
.footer__nav a:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: #fff;
  transform: rotate(-90deg);
  mask: url(../img/pages/front-page/ri_arrow-up-s-line.svg) no-repeat center/cover;
  -webkit-mask: url(../img/pages/front-page/ri_arrow-up-s-line.svg) no-repeat center/cover;
  transition: color 0.5s;
  left: 0;
}
.footer__nav a:hover {
  color: #0077AA;
}
.footer__nav a:hover::before {
  background: #0077AA;
}

.footer__navItem--service {
  color: #fff;
}
.footer__navItem--service li {
  margin-top: 12px;
  margin-left: 24px;
  margin-bottom: 0;
}

.footer__btn {
  max-width: 240px;
  width: 100%;
  height: 56px;
  color: #fff;
  border: solid 1px #fff;
  padding: 16px 24px 16px 44px;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .footer__btn {
    max-width: 100%;
    margin: 0 auto;
  }
}
.footer__btn:hover {
  background: #0077AA;
}
.footer__btn::before:hover {
  background: #0077AA;
}

.footer__copyright {
  margin-top: 40px;
  color: #fff;
  text-align: center;
}

.navBtns {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

/** @format */
/* Slider */
.slick-loading .slick-list {
  background: #fff slick-image-url("ajax-loader.gif") center center no-repeat;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: none !important;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 25px;
}
[dir=rtl] .slick-prev {
  left: auto;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: 25px;
}
[dir=rtl] .slick-next {
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -35px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 30px;
  line-height: 20px;
  text-align: center;
  color: #dddddd;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: #dddddd;
  opacity: 0.75;
}/*# sourceMappingURL=global.css.map */