@charset "UTF-8";
/*********************************

_main.scss

*********************************/
/*********************************

_mixins.scss

*********************************/
/*********************************

_base.scss

*********************************/
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  word-break: break-word;
  font-family: "Noto Sans JP", Hiragino Sans, ヒラギノ角ゴシック, Hiragino Kaku Gothic ProN, ヒラギノ角ゴ ProN W3, Roboto, Droid Sans, YuGothic, 游ゴシック, Meiryo, メイリオ, Verdana, ＭＳ Ｐゴシック, sans-serif;
}

body {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: normal;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  color: #000;
}

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

section {
  position: relative;
}

.main-wrapper {
  overflow: hidden;
}

main {
  margin: 0 auto;
  display: block;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  line-height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Hide HTML5 Up and Down arrows. */
input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

textarea {
  resize: none;
}

p {
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: normal;
  color: inherit;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s linear;
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
}
a:hover {
  text-decoration: none !important;
  opacity: 0.8;
}

img {
  margin: 0 auto;
  display: block;
  width: 100%;
  height: auto;
}

ul {
  list-style-position: inside;
}

::-webkit-input-placeholder {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
}

::placeholder,
::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
}

button {
  cursor: pointer;
  transition: opacity 0.2s linear;
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
}
button:hover {
  text-decoration: none !important;
  opacity: 0.8;
}

@media print, screen and (max-width: 1440px) and (min-width: 769px) {
  p {
    font-size: 0.8333333333vw;
  }
}
@media print, screen and (max-width: 768px) {
  p {
    font-size: 3.7333333333vw;
  }
}
/*********************************

_misc.scss

*********************************/
.loaderScreen {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 9999;
}

.header__dropdown {
  position: relative;
}
@media print, screen and (min-width: 769px) {
  .header__dropdown:hover .langDropdown {
    opacity: 1;
    z-index: 5;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    height: 105px;
  }
}
.header__dropdown.hide .langDropdown {
  opacity: 0 !important;
  z-index: -1 !important;
  -webkit-transform: translateY(-20px) !important;
          transform: translateY(-20px) !important;
  height: 0;
}

.langDropdown {
  padding: 10px 0 0;
  position: absolute;
  top: 100%;
  width: 100%;
  height: 0;
  opacity: 0;
  z-index: -1;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}
.langDropdown__wrapper {
  padding: 15px 5px;
  width: 100%;
  height: 90px;
  overflow: hidden;
  text-align: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("./../images/common/language.svg");
}
.langDropdown__item {
  padding: 5px 0;
  display: block;
  transition: opacity 0.2s linear;
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
}

.toTop {
  position: fixed;
  content: "";
  width: 70px;
  height: 60px;
  right: 20px;
  bottom: -10px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("./../images/common/toTop.png");
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
}
.toTop.is-active {
  bottom: 15px;
  visibility: visible;
  opacity: 1;
  z-index: 9;
}
.toTop a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.loader {
  display: block;
  border: 4px solid #f3f3f3;
  border-radius: 50%;
  border-top: 4px solid #C8A44E;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@media print, screen and (max-width: 1440px) and (min-width: 769px) {
  .toTop {
    width: 3.6458333333vw;
    height: 3.125vw;
    right: 1.0416666667vw;
    bottom: -0.5208333333vw;
  }
  .toTop.is-active {
    bottom: 0.78125vw;
  }
  .header__dropdown {
    position: relative;
  }
  .header__dropdown:hover .langDropdown {
    opacity: 1;
    z-index: 5;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    height: 5.46875vw;
  }
  .header__dropdown.hide .langDropdown {
    opacity: 0 !important;
    z-index: -1 !important;
    -webkit-transform: translateY(-20px) !important;
            transform: translateY(-20px) !important;
    height: 0;
  }
  .langDropdown {
    padding: 10px 0 0;
    position: absolute;
    top: 100%;
    width: 100%;
    opacity: 0;
    z-index: -1;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
  }
  .langDropdown__wrapper {
    padding: 0.78125vw 0.2604166667vw;
    width: 100%;
    height: 4.6875vw;
    overflow: hidden;
    text-align: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("./../images/common/language.svg");
  }
  .langDropdown__item {
    padding: 0.2604166667vw 0;
    display: block;
    transition: opacity 0.2s linear;
    -webkit-transition: opacity 0.2s linear;
    -o-transition: opacity 0.2s linear;
  }
}
@media print, screen and (max-width: 768px) {
  .toTop {
    width: 16vw;
    height: 13.3333333333vw;
    right: 0;
    bottom: -2.6666666667vw;
  }
  .toTop.is-active {
    bottom: 15.4666666667vw;
  }
  .header__dropdown {
    position: relative;
  }
  .header__dropdown.show .langDropdown {
    opacity: 1;
    z-index: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    height: 28vw;
  }
  .header__dropdown.hide .langDropdown {
    opacity: 0 !important;
    z-index: -1 !important;
    -webkit-transform: translateY(-20px) !important;
            transform: translateY(-20px) !important;
    height: 0;
  }
  .langDropdown {
    padding: 10px 0 0;
    position: absolute;
    top: 100%;
    width: 100%;
    opacity: 0;
    z-index: -1;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
  }
  .langDropdown__wrapper {
    padding: 4vw 1.3333333333vw;
    width: 100%;
    height: 24vw;
    overflow: hidden;
    text-align: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("./../images/common/language.svg");
  }
  .langDropdown__item {
    padding: 1.3333333333vw 0;
    display: block;
    transition: opacity 0.2s linear;
    -webkit-transition: opacity 0.2s linear;
    -o-transition: opacity 0.2s linear;
  }
}
/*********************************

_utilities.scss

*********************************/
.textCenter {
  text-align: center;
}

.fontBold {
  font-weight: bold;
}

.displayNone {
  display: none;
}

.sectionWidth {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 57.2916666667vw;
}
@media print, screen and (max-width: 768px) {
  .sectionWidth {
    max-width: initial;
  }
}

.wrapperWidth {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 57.2916666667vw;
}
@media print, screen and (max-width: 768px) {
  .wrapperWidth {
    padding: 0 4vw;
    max-width: initial;
  }
}

.colorBlue {
  color: #0500ff;
}

.colorBlack {
  color: #000;
}

.underlineGreen {
  text-decoration: underline;
  text-underline-position: under;
  text-decoration-thickness: 0.1041666667vw;
  text-underline-offset: 0.1041666667vw;
  text-decoration-color: #0500ff;
}
@media print, screen and (max-width: 768px) {
  .underlineGreen {
    text-decoration-thickness: 0.1041666667vw;
    text-underline-offset: 0.1041666667vw;
  }
}

.polyImg01 {
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}

.checkMark {
  padding-left: 1.5625vw;
  position: relative;
}
.checkMark::before {
  content: "✓";
  font-size: 1.0416666667vw;
  font-weight: bold;
  color: #0500ff;
  position: absolute;
  top: 0.625vw;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media print, screen and (max-width: 768px) {
  .checkMark {
    padding-left: 4.8vw;
    position: relative;
  }
  .checkMark::before {
    font-size: 4.2666666667vw;
    top: 2.6666666667vw;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}

.dlIcon {
  padding-left: 2.5em;
  position: relative;
}
.dlIcon::before {
  position: absolute;
  content: "";
  font-size: 0;
  top: 15%;
  left: 0;
  background-image: url("./../images/common/dl-icon.svg");
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-filter: invert(8%) sepia(100%) saturate(7467%) hue-rotate(250deg) brightness(95%) contrast(146%);
          filter: invert(8%) sepia(100%) saturate(7467%) hue-rotate(250deg) brightness(95%) contrast(146%);
}
@media print, screen and (max-width: 768px) {
  .dlIcon {
    padding-left: 1.8em;
  }
  .dlIcon::before {
    top: 15%;
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
}

.btnAnimate1 {
  -webkit-animation: scaleAnimation 1.5s ease-in infinite;
  animation: scaleAnimation 1.5s ease-in infinite;
}
.btnAnimate1:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.btnAnimate2 {
  -webkit-animation: upDownAnimation 1.2s ease-in infinite;
  animation: upDownAnimation 1.2s ease-in infinite;
}

.wow {
  visibility: hidden;
}

.sectionHeaderSpace {
  padding-top: 6.9791666667vw;
}
@media print, screen and (max-width: 768px) {
  .sectionHeaderSpace {
    padding-top: 16.8vw;
  }
}

@-webkit-keyframes upDownAnimation {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes upDownAnimation {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes scaleAnimation {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.025);
            transform: scale(1.025);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scaleAnimation {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.025);
            transform: scale(1.025);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@media print, screen and (min-width: 769px) {
  .pcBlock {
    display: block;
  }
  .spBlock {
    display: none !important;
  }
}
@media print, screen and (max-width: 768px) {
  .pcBlock {
    display: none !important;
  }
  .spBlock {
    display: block;
  }
}
/*********************************

_header.scss

*********************************/
.header {
  margin: 0 auto;
  padding: 0.78125vw 0.78125vw 1.0416666667vw;
  width: 100vw;
  height: auto;
  position: fixed;
  color: #000;
  background-color: #fff;
  z-index: 10;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -webkit-box-shadow: 0 0 22px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 1px 1px 22px 1px rgba(0, 0, 0, 0.4);
}
.header__wrapper {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__left {
  width: 18.75vw;
}
.header__right {
  width: calc(100% - 18.75vw);
}
.header__rightWrapper {
  width: 100%;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.header__logo h1 {
  width: 6.3541666667vw;
  font-size: 1.4583333333vw;
  line-height: 1.2;
}
.header__hambuger {
  display: none;
}
.header__ctaWrapper {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__ctaBtn:not(:last-of-type) {
  margin: 0 0.5208333333vw 0 0;
}
.header__ctaBtn:hover {
  -webkit-filter: drop-shadow(3px 2px 5px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(3px 2px 5px rgba(0, 0, 0, 0.5));
}
.header__nav {
  margin: 1.5625vw 0 0;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  list-style: none;
}
.header__navItem {
  position: relative;
}
.header__navItem:not(:last-of-type) {
  margin: 0 1.5625vw 0 0;
}
.header__navItem:hover > .header__navSub {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.header__navItem.language--toggle {
  margin-left: 0.5208333333vw;
}
.header__navItem.language--toggle .header__navSubItem a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5208333333vw;
}
.header__navItem.language--toggle .header__navSubItem a img {
  margin: 0;
  width: 2.0833333333vw;
}
.header__navItemLink {
  font-size: 0.9375vw;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
  transition: color 0.2s linear;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
}
.header__navItemLink.isActive {
  opacity: 1;
  color: #0500ff;
}
.header__navItemLink:hover {
  opacity: 1;
  color: #0500ff;
}
.header__navSub {
  margin: auto;
  padding: 0.5208333333vw 0 0;
}
.header__navSubItem {
  padding: 0.4166666667vw 0.4166666667vw 0.4166666667vw 1em;
  list-style: none;
}
.header__navSubItemLink {
  display: inline-block;
  font-size: 0.7291666667vw;
  line-height: 1.35;
}
.header__navSubItemLink.isActive {
  color: #0500ff;
}
.header__navSubItemLink:hover {
  color: #0500ff;
  opacity: 1;
}
.header__navItemLink {
  position: relative;
}
.header__navLang__list {
  margin: auto !important;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
  background-color: #0500ff;
  color: #fff;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  z-index: 1;
}
.header__navLang__list a {
  display: block;
}

@media print, screen and (min-width: 769px) {
  .header__right {
    display: block !important;
  }
  .header__navItem--withSub {
    padding-right: 1.2em;
    cursor: pointer;
  }
  .header__navItem--withSub:after {
    margin: auto;
    content: "";
    position: absolute;
    top: 0.2083333333vw;
    right: 0;
    bottom: 0;
    left: auto;
    background-image: url("./../images/common/chevron-down.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 0.625vw;
    height: 0.625vw;
  }
  .header__navSub {
    position: absolute;
    top: 100%;
    left: 0;
    width: 9.375vw;
    height: auto;
    display: block;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    z-index: 1;
    -webkit-filter: drop-shadow(2px 8px 4px rgba(0, 0, 0, 0.5));
    filter: drop-shadow(2px 8px 4px rgba(0, 0, 0, 0.5));
  }
  .header__navSub.isActive {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .header__navSubList {
    background-color: #fff;
    color: #000;
    border-top: 0.1041666667vw solid #0500ff;
  }
}
@media print, screen and (max-width: 768px) {
  .header {
    padding: 2.6666666667vw 4vw;
    -webkit-filter: drop-shadow(3px 2px 5px rgba(0, 0, 0, 0.5));
    filter: drop-shadow(3px 2px 5px rgba(0, 0, 0, 0.5));
  }
  .header__right {
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    height: auto;
    width: 100%;
    display: none;
  }
  .header__rightWrapper {
    padding: 5.3333333333vw 4vw;
    background-color: #eee;
    border-top: 0.2666666667vw solid #c1c2c5;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .header__left {
    width: 70.4vw;
  }
  .header__logo h1 {
    width: 18.1333333333vw;
    font-size: 5.3333333333vw;
  }
  .header__hambuger {
    position: relative;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    width: 9.6vw;
    height: 6.4vw;
    cursor: pointer;
  }
  .header__hambugerInner, .header__hambuger:before, .header__hambuger:after {
    margin: auto;
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    height: 1.0666666667vw;
    width: 100%;
    background-color: #333;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
  }
  .header__hambugerInner {
    top: 0;
    bottom: 0;
  }
  .header__hambuger:before {
    top: 0;
    bottom: auto;
  }
  .header__hambuger:after {
    top: auto;
    bottom: 0;
  }
  .header__hambuger.isActive .header__hambugerInner {
    opacity: 0;
  }
  .header__hambuger.isActive::before {
    top: 2.6666666667vw;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .header__hambuger.isActive::after {
    bottom: 2.6666666667vw;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .header__nav {
    margin: 0 auto;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .header__navItem:not(:first-of-type) {
    margin-top: 2.6666666667vw;
  }
  .header__navItem.language--toggle {
    display: block;
    margin: 8vw auto 0;
    width: 100%;
    max-width: 100%;
  }
  .header__navItem.language--toggle .header__navSubItem a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.3333333333vw;
  }
  .header__navItem.language--toggle .header__navSubItem a img {
    margin: 0;
    width: 5.3333333333vw;
  }
  .header__navItemLink {
    padding-left: 4vw;
    font-size: 4vw;
    position: relative;
    display: inline-block;
  }
  .header__navItemLink:before {
    margin: 0;
    content: "";
    position: absolute;
    top: 1.3333333333vw;
    left: 0;
    right: auto;
    bottom: auto;
    background-image: url("./../images/common/chevron-down.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 3.2vw;
    height: 3.2vw;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .header__navSub {
    padding: 2.6666666667vw 0 0;
  }
  .header__navSubItem {
    padding: 2.1333333333vw 2.1333333333vw 2.1333333333vw 1em;
  }
  .header__navSubItemLink {
    padding-left: 4vw;
    font-size: 4vw;
    position: relative;
    display: inline-block;
  }
  .header__navSubItemLink:before {
    margin: 0;
    content: "";
    position: absolute;
    top: 1.3333333333vw;
    left: 0;
    right: auto;
    bottom: auto;
    background-image: url("./../images/common/chevron-down.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 3.2vw;
    height: 3.2vw;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .header__ctaWrapper {
    margin: 6.6666666667vw 0 0;
    padding-top: 6.6666666667vw;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-top: 0.2666666667vw solid #c1c2c5;
  }
  .header__ctaBtn:not(:last-of-type) {
    margin-right: 2.6666666667vw;
  }
}
/*********************************

_footer.scss

*********************************/
.footer {
  margin: 0 auto;
  padding: 0;
  display: block;
  width: 100%;
  background-color: #fff;
  color: #000;
}
.footer__logo {
  font-size: 1.25vw;
  font-weight: bold;
}
.footer__menu {
  margin: 0 auto;
  padding: 2.6041666667vw 0;
  max-width: 75vw;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
.footer__menu__col--01 {
  width: 32%;
}
.footer__menu__col--02 {
  width: 32%;
}
.footer__menu__col--03 {
  width: 36%;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer__nav {
  margin: 1.0416666667vw 0 0;
  list-style: none;
}
.footer__navItem:not(:first-of-type) {
  margin-top: 1.0416666667vw;
}
.footer__navItemLink {
  padding-left: 1.0416666667vw;
  position: relative;
  display: inline-block;
  font-size: 0.9375vw;
  font-weight: 500;
  line-height: 1.35;
  transition: color 0.2s linear;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
}
.footer__navItemLink:before {
  margin: 0;
  content: "";
  position: absolute;
  top: 0.2604166667vw;
  left: 0;
  right: auto;
  bottom: auto;
  background-image: url("./../images/common/chevron-down.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.8333333333vw;
  height: 0.8333333333vw;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.footer__navItemLink:hover {
  opacity: 1;
  color: #0500ff;
}
.footer__info:not(:first-of-type) {
  margin-top: 1.3020833333vw;
}
.footer__infoHeading {
  font-size: 0.9375vw;
  font-weight: bold;
  line-height: 1.35;
}
.footer__infoText {
  margin-top: 0.3125vw;
  font-size: 0.8333333333vw;
  font-weight: normal;
  line-height: 1.35;
  color: #333;
}
.footer__copyText {
  padding: 0.78125vw;
  font-size: 0.8333333333vw;
  text-align: center;
  line-height: 1.35;
  border-width: 0.0520833333vw 0 0.0520833333vw;
  border-color: #c1c2c5;
  border-style: solid;
}
.footer__notes {
  margin: 0 auto;
  padding: 1.8229166667vw 0 1.3020833333vw;
}
.footer__notesWrapper {
  margin: 0 auto;
  max-width: 75vw;
}
.footer__notesItem {
  font-size: 0.6770833333vw;
  color: #333;
}
.footer__notesItem:not(:first-of-type) {
  margin-top: 1.3020833333vw;
}

@media print, screen and (max-width: 768px) {
  .footer__logo {
    font-size: 6.4vw;
    text-align: center;
  }
  .footer__menu {
    margin: 0 auto;
    padding: 6.6666666667vw 4vw;
    max-width: initial;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__menu__col--01 {
    width: 100%;
  }
  .footer__menu__col--02 {
    width: 100%;
  }
  .footer__menu__col--03 {
    width: 100%;
  }
  .footer__menu__col:not(:first-of-type) {
    margin: 8vw 0 0;
    padding-top: 8vw;
    border-top: 0.2666666667vw solid #c1c2c5;
  }
  .footer__nav {
    margin: 5.3333333333vw 0 0;
    list-style: none;
  }
  .footer__navItem:not(:first-of-type) {
    margin-top: 2.6666666667vw;
  }
  .footer__navItemLink {
    padding-left: 4vw;
    font-size: 4vw;
  }
  .footer__navItemLink:before {
    margin: 0;
    top: 1.3333333333vw;
    width: 3.2vw;
    height: 3.2vw;
  }
  .footer__info:not(:first-of-type) {
    margin-top: 4vw;
  }
  .footer__infoHeading {
    font-size: 4.2666666667vw;
  }
  .footer__infoText {
    margin-top: 1.6vw;
    font-size: 4vw;
  }
  .footer__copyText {
    padding: 4vw;
    font-size: 3.2vw;
    text-align: center;
    line-height: 1.35;
    border-width: 0.2666666667vw 0 0.2666666667vw;
    border-color: #c1c2c5;
    border-style: solid;
  }
  .footer__notes {
    margin: 0 auto;
    padding: 6.6666666667vw 4vw;
  }
  .footer__notesWrapper {
    margin: 0 auto;
    max-width: initial;
  }
  .footer__notesItem {
    font-size: 2.6666666667vw;
    color: #333;
  }
  .footer__notesItem:not(:first-of-type) {
    margin-top: 2.6666666667vw;
  }
}
.section {
  padding: 3.6458333333vw 0;
}
.section__heading {
  font-size: 1.9791666667vw;
  line-height: 1.35;
  text-align: center;
  color: #0500ff;
}
.section__subheading {
  margin: 0.5208333333vw auto 0;
  font-size: 1.1458333333vw;
  line-height: 1.35;
  text-align: center;
  color: #000;
}

@media print, screen and (max-width: 768px) {
  .section {
    padding: 9.3333333333vw 0;
  }
  .section__heading {
    font-size: 6.9333333333vw;
  }
  .section__subheading {
    margin: 2.6666666667vw auto 0;
    font-size: 4vw;
  }
}
/*********************************

_btn.scss

*********************************/
.btn {
  padding: 0.4166666667vw 1.0416666667vw;
  min-width: 8.3333333333vw;
  max-width: 10.3125vw;
  min-height: 2.2916666667vw;
  display: inline-block;
  font-size: 0.8333333333vw;
  line-height: 1.45;
  font-weight: 600;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  border: 0.15625vw solid #0500ff;
  color: #fff;
  background-color: #0500ff;
  border-radius: 1.5625vw;
  position: relative;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
}
.btn:hover {
  -webkit-filter: brightness(120%);
  filter: brightness(120%);
}
.btn--inverted {
  border: 0.15625vw solid #0500ff;
  color: #0500ff;
  background-color: #fff;
}
.btn--inverted:hover {
  color: #fff;
  background-color: #0500ff;
}
.btn--ctav1 {
  margin: 0 auto;
  padding: 0.625vw 0.78125vw;
  font-size: 1.1458333333vw;
  min-width: 10.3125vw;
  max-width: 13.0208333333vw;
}
.btn--ctav2 {
  padding: 0.625vw 0.78125vw;
  font-size: 1.1458333333vw;
  min-width: 10.3125vw;
  max-width: 17.7083333333vw;
}

@media print, screen and (max-width: 768px) {
  .btn {
    padding: 1.6vw 3.2vw;
    min-width: 32vw;
    max-width: 45.8666666667vw;
    min-height: 11.7333333333vw;
    font-size: 3.7333333333vw;
    border: 0.8vw solid #0500ff;
    border-radius: 8vw;
  }
  .btn--inverted {
    border: 0.8vw solid #0500ff;
  }
  .btn--ctav1 {
    padding: 2.6666666667vw 3.2vw;
    font-size: 4.2666666667vw;
    max-width: 52.8vw;
  }
  .btn--ctav2 {
    padding: 2.6666666667vw 3.2vw;
    font-size: 4.2666666667vw;
    max-width: 90.6666666667vw;
  }
}
.select-box {
  margin: 0 auto 0 0;
  position: relative;
  width: 23.4375vw;
}

.select-box input {
  width: 100%;
  padding: 0.78125vw;
  font-size: 0.8333333333vw;
  border: 1px solid transparent;
  outline: none;
}

input[type=tel] {
  border-radius: 0 0.4166666667vw 0.4166666667vw 0;
}

.coutry-code {
  font-size: 0.8333333333vw;
  margin-left: 0.2083333333vw;
}

.selected-option {
  overflow: hidden;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #eee;
  border-radius: 0.4166666667vw;
}

.selected-option div {
  padding: 0 0.78125vw;
  position: relative;
  width: 8.3333333333vw;
  text-align: left;
  cursor: pointer;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.selected-option div svg {
  width: 1.1458333333vw;
  height: 0.8333333333vw;
}
.selected-option div.full {
  padding: 0;
  width: 100%;
}
.selected-option div.full:after {
  right: 0.78125vw;
}

.selected-option div::after {
  position: absolute;
  content: "";
  right: 0.2604166667vw;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 0.4166666667vw;
  height: 0.4166666667vw;
  border-right: 0.1041666667vw solid #0500ff;
  border-bottom: 0.1041666667vw solid #0500ff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.selected-option div.active::after {
  top: 68%;
  -webkit-transform: translateY(-50%) rotate(225deg);
          transform: translateY(-50%) rotate(225deg);
}

.select-box .options {
  position: absolute;
  top: 3.3333333333vw;
  width: 100%;
  background-color: #eee;
  border-radius: 0.4166666667vw;
  display: none;
  z-index: 2;
  border: 1px solid #c1c2c5;
}

.select-box .options.active {
  display: block;
}

input.search-box {
  padding: 0.78125vw;
  color: #000;
  border-radius: 0.4166666667vw 0.4166666667vw 0 0;
}

.select-box ol {
  list-style: none;
  max-height: 19.1666666667vw;
  overflow: overlay;
}

.select-box ol::-webkit-scrollbar {
  width: 0.6rem;
}

.select-box ol::-webkit-scrollbar-thumb {
  width: 0.4rem;
  height: 3rem;
  background-color: #ccc;
  border-radius: 0.4rem;
}

.select-box ol li {
  padding: 0.5208333333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  font-size: 0.8333333333vw;
}

.select-box ol li.hide {
  display: none;
}

.select-box ol li:not(:last-child) {
  border-bottom: 1px solid #c1c2c5;
}

.select-box ol li:hover {
  background-color: #c1c2c5;
}

.select-box ol li .country-name {
  margin-left: 0.2083333333vw;
}

.type-option .type-name {
  padding: 0 !important;
  background-color: transparent !important;
}

@media print, screen and (max-width: 768px) {
  .select-box {
    width: 100%;
    max-width: 100vw;
  }
  .select-box input {
    width: 100%;
    padding: 4vw;
    font-size: 3.7333333333vw;
  }
  input[type=tel] {
    border-radius: 0 2.1333333333vw 2.1333333333vw 0;
  }
  .coutry-code {
    font-size: 3.7333333333vw;
    margin-left: 1.0666666667vw;
  }
  .selected-option {
    border-radius: 2.1333333333vw;
  }
  .selected-option div {
    padding: 0 4vw;
    width: 38.9333333333vw;
  }
  .selected-option div svg {
    width: 5.8666666667vw;
    height: 4.2666666667vw;
  }
  .selected-option div.full:after {
    right: 4vw;
  }
  .selected-option div::after {
    right: 1.3333333333vw;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    width: 2.1333333333vw;
    height: 2.1333333333vw;
    border-right: 0.5333333333vw solid #0500ff;
    border-bottom: 0.5333333333vw solid #0500ff;
  }
  .selected-option div.active::after {
    top: 68%;
    -webkit-transform: translateY(-50%) rotate(225deg);
            transform: translateY(-50%) rotate(225deg);
  }
  .select-box .options {
    top: 17.0666666667vw;
    border-radius: 2.1333333333vw;
  }
  input.search-box {
    padding: 4vw;
    border-radius: 2.1333333333vw 2.1333333333vw 0 0;
  }
  .select-box ol {
    max-height: 40vw;
  }
  .select-box ol li {
    padding: 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
  .select-box ol li .country-name {
    margin-left: 1.0666666667vw;
  }
}
.cta01__content {
  margin: 0 auto;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background-color: #eee;
  overflow: hidden;
}
.cta01__contentLeft {
  width: 52%;
}
.cta01__contentRight {
  width: 48%;
  padding: 1.0416666667vw 1.0416666667vw 1.0416666667vw 2.6041666667vw;
  color: #fff;
}
.cta01__contentRight__wrapper {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28.6458333333vw;
  height: 100%;
}
.cta01__contentRight__heading {
  font-size: 1.9791666667vw;
  line-height: 1.35;
  color: #000;
}
.cta01__contentRight__subheading {
  margin: 0.5208333333vw 0 0;
  font-size: 1.0416666667vw;
  line-height: 1.35;
  color: #333;
}
.cta01__contentFigWrapper {
  overflow: hidden;
  height: 100%;
  width: 100%;
  background-color: #0500ff;
}
.cta01__contentFig {
  position: relative;
  height: 100%;
  width: 100%;
}
.cta01__contentFig img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.cta01__contentFig:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.cta01__contentListHeading {
  margin: 2.0833333333vw 0 0;
  font-size: 1.1458333333vw;
  line-height: 1.35;
  color: #333;
}
.cta01__contentList {
  margin: 1.0416666667vw 0 0;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cta01__contentList__item {
  font-size: 0.9375vw;
  line-height: 1.35;
  color: #000;
  list-style: none;
}
.cta01__contentList__item .highlight {
  font-size: 110%;
  font-weight: bold;
}
.cta01__contentList__item small {
  margin: 0.5em 0 0;
  display: inline-block;
  line-height: 1.35;
  font-size: 75%;
}
.cta01__contentList__item:not(:first-of-type) {
  margin: 1.0416666667vw 0 0;
}
.cta01__cta {
  margin: 1.5625vw auto 0;
  width: 100%;
}
.cta01__cta .btn {
  margin: 0;
}

@media print, screen and (max-width: 768px) {
  .cta01__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cta01__contentLeft {
    width: 100%;
  }
  .cta01__contentRight {
    width: 100%;
    padding: 5.3333333333vw 5.3333333333vw 9.3333333333vw;
  }
  .cta01__contentFigWrapper.polyImg01 {
    clip-path: initial;
  }
  .cta01__contentRight__wrapper {
    width: 100%;
    height: auto;
  }
  .cta01__contentRight__heading {
    font-size: 6.9333333333vw;
  }
  .cta01__contentRight__subheading {
    margin: 2.6666666667vw 0 0;
    font-size: 4vw;
  }
  .cta01__contentListHeading {
    margin: 4vw 0 0;
    font-size: 4.2666666667vw;
  }
  .cta01__contentList {
    margin: 2.6666666667vw 0 0;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .cta01__contentList__item {
    font-size: 4vw;
  }
  .cta01__contentList__item:not(:first-of-type) {
    margin: 2.1333333333vw 0 0;
  }
  .cta01__cta {
    margin: 6.6666666667vw auto 0;
  }
  .cta01__cta .btn {
    margin: 0 auto;
  }
}
.cta02__content {
  margin: 0 auto;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background-color: #eee;
  overflow: hidden;
}
.cta02__contentLeft {
  width: 52%;
}
.cta02__contentRight {
  width: 48%;
  padding: 1.0416666667vw 1.0416666667vw 1.0416666667vw 2.6041666667vw;
  color: #fff;
}
.cta02__contentRight__wrapper {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36.4583333333vw;
  height: 100%;
}
.cta02__contentRight__heading {
  width: 100%;
  font-size: 1.9791666667vw;
  line-height: 1.35;
  color: #000;
  text-align: center;
}
.cta02__contentRight__subheading {
  margin: 0.5208333333vw auto 0;
  font-size: 1.0416666667vw;
  line-height: 1.35;
  color: #333;
}
.cta02__contentFigWrapper {
  overflow: hidden;
  height: 100%;
  width: 100%;
  background-color: #0500ff;
}
.cta02__contentFig {
  position: relative;
  height: 100%;
  width: 100%;
}
.cta02__contentFig img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.cta02__contentFig:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.cta02__cta {
  margin: 1.5625vw auto 0;
  width: auto;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  justify-items: center;
}
.cta02__cta .btn {
  margin: 0;
}
.cta02__cta .btn:not(:last-of-type) {
  margin: 0 0.5208333333vw 0 0;
}

@media print, screen and (max-width: 768px) {
  .cta02__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cta02__contentLeft {
    width: 100%;
  }
  .cta02__contentRight {
    width: 100%;
    padding: 5.3333333333vw 2.6666666667vw 9.3333333333vw;
  }
  .cta02__contentFigWrapper.polyImg01 {
    clip-path: initial;
  }
  .cta02__contentRight__wrapper {
    width: 100%;
    height: auto;
  }
  .cta02__contentRight__heading {
    font-size: 6.9333333333vw;
  }
  .cta02__contentRight__subheading {
    margin: 2.6666666667vw auto 0;
    font-size: 4vw;
  }
  .cta02__cta {
    margin: 6.6666666667vw auto 0;
  }
  .cta02__cta .btn {
    margin: 0 auto;
    font-size: 4vw;
  }
  .cta02__cta .btn:not(:last-of-type) {
    margin: 0 2.6666666667vw 0 0;
  }
  .cta02__cta.mobile--cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.6666666667vw;
  }
  .cta02__cta.mobile--cta .btn {
    margin: 0 auto;
  }
}
.cta03.borderBottom {
  border-bottom: 0.1041666667vw solid #eee;
}
.cta03__cta {
  margin: 1.5625vw auto 0;
  width: auto;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cta03__cta .btn {
  margin: 0;
}
.cta03__cta .btn:not(:last-of-type) {
  margin: 0 0.5208333333vw 0 0;
}

@media print, screen and (max-width: 768px) {
  .cta03.borderBottom {
    border-bottom: 0.5333333333vw solid #eee;
  }
  .cta03__cta {
    margin: 6.6666666667vw auto 0;
  }
  .cta03__cta .btn {
    margin: 0;
    font-size: 4vw;
  }
  .cta03__cta .btn:not(:last-of-type) {
    margin: 0 2.6666666667vw 0 0;
  }
}
.sns__heading {
  margin-left: 1.5625vw;
  font-size: 1.9791666667vw;
  line-height: 1.35;
  color: #333;
}
.sns__subheading {
  margin: 0.5208333333vw auto 0 1.5625vw;
  font-size: 1.0416666667vw;
  line-height: 1.35;
  color: #333;
}
.sns__list {
  margin: 0.78125vw auto 0;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  list-style: none;
}
.sns__listItem {
  padding: 0.5208333333vw 0.78125vw;
  width: 3.3854166667vw;
}
.sns__listItem img {
  -webkit-filter: invert(8%) sepia(100%) saturate(7467%) hue-rotate(250deg) brightness(95%) contrast(146%);
          filter: invert(8%) sepia(100%) saturate(7467%) hue-rotate(250deg) brightness(95%) contrast(146%);
}

@media print, screen and (max-width: 768px) {
  .sns__heading {
    margin-left: 0;
    font-size: 5.3333333333vw;
  }
  .sns__subheading {
    margin: 2.6666666667vw auto;
    font-size: 4vw;
  }
  .sns__list {
    margin: 4vw auto 0;
    position: relative;
    left: -2.6666666667vw;
    max-width: 92vw;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    list-style: none;
  }
  .sns__listItem {
    padding: 0 2.6666666667vw;
    width: 13.3333333333vw;
  }
}
/*********************************

_kv.scss

*********************************/
.kv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  color: #000;
  /** Icons by SVGBackgrounds.com **/
  background-image: url("./../images/common/subtle-prism.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.kv__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
.kv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.kv__bgScreen {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAEklEQVQImWMQFBT8z0AUwKkSAGfcAmWen5AnAAAAAElFTkSuQmCC") repeat;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.kv__content {
  margin: 0 auto;
  max-width: 75vw;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
}
.kv__contentWrapper {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  height: 100%;
}
.kv__contentRight {
  padding-top: 6.9270833333vw;
  width: 55%;
  height: 100%;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.kv__contentLeft {
  padding-top: 6.9270833333vw;
  width: 55%;
  height: 100%;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.kv__contentText__main {
  font-size: 4.2708333333vw;
  line-height: 1.2;
}
.kv__contentText__sub {
  margin: 1.0416666667vw 0 0;
  font-size: 1.25vw;
  letter-spacing: 0.01em;
  line-height: 1.45;
  -webkit-filter: drop-shadow(3px 2px 5px rgba(255, 255, 255, 0.8));
  filter: drop-shadow(3px 2px 5px rgba(255, 255, 255, 0.8));
}
.kv__cta {
  margin: 1.5625vw 0 0;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.kv__ctaItem:not(:last-of-type) {
  margin: 0 0.5208333333vw 0 0;
}
.kv__fig {
  max-width: 25vw;
}
.kv__fig img {
  -webkit-filter: drop-shadow(3px 2px 5px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(3px 2px 5px rgba(0, 0, 0, 0.5));
}
.kv__scrollIndicator {
  margin: auto;
  position: absolute;
  top: auto;
  bottom: 2.0833333333vw;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("./../images/common/chevron-down.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 2.0833333333vw;
  height: 2.0833333333vw;
}

@media print, screen and (max-width: 768px) {
  .kv__content {
    max-width: initial;
  }
  .kv__contentRight {
    padding: 0 5.3333333333vw;
    padding-top: 18.6666666667vw;
    width: 100%;
  }
  .kv__contentText__main {
    font-size: 10.1333333333vw;
  }
  .kv__contentText__sub {
    margin: 5.3333333333vw 0 0;
    font-size: 4.2666666667vw;
    line-height: 1.35;
  }
  .kv__cta {
    margin: 8vw 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .kv__ctaItem:not(:last-of-type) {
    margin: 0 0 4vw 0;
  }
  .kv__scrollIndicator {
    bottom: 6.6666666667vw;
    width: 6.6666666667vw;
    height: 6.6666666667vw;
  }
  .kv__fig {
    padding: 2.6666666667vw;
    max-width: 74.6666666667vw;
  }
  .kv__fig img {
    -webkit-filter: drop-shadow(3px 2px 5px rgba(0, 0, 0, 0.5));
    filter: drop-shadow(3px 2px 5px rgba(0, 0, 0, 0.5));
  }
  .kv__fig.spBlock {
    margin: 8vw auto 0;
  }
}
/*********************************

_tradingTime.scss

*********************************/
.tradingTime {
  padding: 3.6458333333vw 0;
  /** Icons by SVGBackgrounds.com **/
  background-image: url("./../images/common/scattered-forcefields.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  border-top: 0.1041666667vw solid #eee;
}
.tradingTime__list {
  margin: 0 auto 0;
  max-width: 41.6666666667vw;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
}
.tradingTime__content {
  margin: 2.0833333333vw auto 0;
}
.tradingTime__listItem {
  padding: 1.3020833333vw 1.0416666667vw;
  width: calc(50% - 0.5208333333vw);
  min-height: 13.6458333333vw;
  border: 0.15625vw solid #0500ff;
  border-radius: 0.9375vw;
  background-color: #fff;
}
.tradingTime__listItem:nth-child(n+3) {
  margin-top: 1.0416666667vw;
}
.tradingTime__listItem__fig {
  margin: 0 auto;
  width: 4.6875vw;
}
.tradingTime__listItem__fig img {
  -webkit-filter: invert(8%) sepia(100%) saturate(7467%) hue-rotate(250deg) brightness(95%) contrast(146%);
          filter: invert(8%) sepia(100%) saturate(7467%) hue-rotate(250deg) brightness(95%) contrast(146%);
}
.tradingTime__listItem__heading {
  margin: 0.78125vw auto 0;
  font-size: 1.25vw;
  line-height: 1.35;
  text-align: center;
}
.tradingTime__listItem__text {
  margin: 0.5208333333vw auto 0;
  text-align: center;
}
.tradingTime__cta {
  margin: 1.5625vw auto 0;
  text-align: center;
}
.tradingTime__cta .btn {
  margin: 0 auto;
}

@media print, screen and (max-width: 768px) {
  .tradingTime {
    padding: 9.3333333333vw 0;
    /** Icons by SVGBackgrounds.com **/
    background-image: url("./../images/common/scattered-forcefields-sp.png");
    background-size: 115%;
    background-repeat: repeat;
    background-position: top center;
  }
  .tradingTime__list {
    margin: 0 auto 0;
    max-width: 80vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .tradingTime__content {
    margin: 6.6666666667vw auto 0;
  }
  .tradingTime__listItem {
    padding: 4vw;
    width: 100%;
    min-height: initial;
    border: 0.8vw solid #0500ff;
    border-radius: 3.7333333333vw;
  }
  .tradingTime__listItem:nth-child(n+3) {
    margin-top: 4vw;
  }
  .tradingTime__listItem:not(:first-of-type) {
    margin-top: 4vw;
  }
  .tradingTime__listItem__fig {
    margin: 0 auto;
    width: 21.3333333333vw;
  }
  .tradingTime__listItem__heading {
    margin: 4vw auto 0;
    font-size: 4.8vw;
  }
  .tradingTime__listItem__text {
    margin: 2.6666666667vw auto 0;
  }
  .tradingTime__cta {
    margin: 8vw auto 0;
  }
}
.partners__list {
  margin: 2.6041666667vw auto 0;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
}
.partners__listItem {
  width: 33.33%;
}
.partners__listItem:nth-child(n+4) {
  margin-top: 1.0416666667vw;
}
.partners__listItem__link {
  display: block;
  width: 100%;
}
.partners__listItem__img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 11.9791666667vw;
  height: 2.1354166667vw;
}

@media print, screen and (max-width: 768px) {
  .partners__list {
    margin: 6.6666666667vw auto 0;
  }
  .partners__listItem:nth-child(n+4) {
    margin-top: 4vw;
  }
  .partners__listItem__img {
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
    width: 29.3333333333vw;
    height: 5.0666666667vw;
  }
}
.getStarted__list {
  margin: 2.6041666667vw auto 0;
  max-width: 77.0833333333vw;
  list-style: none;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #000;
}
.getStarted__listItem {
  padding: 1.0416666667vw 0.78125vw;
  width: calc(25% - 2.34375vw);
  border: solid 0.15625vw #0500ff;
  position: relative;
  background-color: #fff;
  border-radius: 0.9375vw;
  -webkit-filter: drop-shadow(3px 2px 5px rgba(238, 238, 238, 0.8));
  filter: drop-shadow(3px 2px 5px rgba(238, 238, 238, 0.8));
}
.getStarted__listItem:not(:last-of-type):after {
  margin: auto;
  position: absolute;
  content: "";
  top: 0.8333333333vw;
  right: -2.2395833333vw;
  bottom: 0;
  left: auto;
  width: 0;
  height: 0;
  border-left: 1.3020833333vw solid transparent;
  border-right: 1.3020833333vw solid #0500ff;
  border-top: 1.3020833333vw solid transparent;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.getStarted__listItem__icon {
  padding: 0.5208333333vw;
  text-align: center;
}
.getStarted__listItem__icon svg {
  scale: 1.2;
  -webkit-filter: invert(8%) sepia(100%) saturate(7467%) hue-rotate(250deg) brightness(95%) contrast(146%);
          filter: invert(8%) sepia(100%) saturate(7467%) hue-rotate(250deg) brightness(95%) contrast(146%);
}
.getStarted__listItem__heading {
  margin: 0.5208333333vw auto 0;
  font-size: 1.1458333333vw;
  line-height: 1.35;
  color: #333;
  text-align: center;
}
.getStarted__listItem__text {
  margin: 0.5208333333vw auto 0;
  font-size: 0.9375vw;
  line-height: 1.35;
  color: #333;
}

@media print, screen and (max-width: 768px) {
  .getStarted__wrapper {
    padding: 0 2.6666666667vw;
  }
  .getStarted__list {
    margin: 6.6666666667vw auto 0;
    max-width: initial;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .getStarted__listItem {
    padding: 2.6666666667vw 2.1333333333vw;
    width: calc(50% - 2.1333333333vw);
    border: solid 0.8vw #0500ff;
    border-radius: 3.7333333333vw;
  }
  .getStarted__listItem:not(:last-of-type):after {
    top: 2.1333333333vw;
    right: -3.7333333333vw;
    border-left: 2.6666666667vw solid transparent;
    border-right: 2.6666666667vw solid #0500ff;
    border-top: 2.6666666667vw solid transparent;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .getStarted__listItem:nth-child(n+3) {
    margin-top: 5.3333333333vw;
  }
  .getStarted__listItem:nth-child(2n):after {
    display: none;
  }
  .getStarted__listItem__icon {
    padding: 2.6666666667vw;
  }
  .getStarted__listItem__heading {
    margin: 2.6666666667vw auto 0;
    font-size: 4.2666666667vw;
  }
  .getStarted__listItem__text {
    margin: 2.6666666667vw auto 0;
    font-size: 3.7333333333vw;
  }
}
.chooseMarket {
  padding: 4.1666666667vw 0;
  background-image: url("./../images/common/bg-pattern-01.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.chooseMarket__heading {
  font-size: 3.0208333333vw;
  line-height: 1.35;
  text-align: center;
  color: #000;
}
.chooseMarket__subheading {
  margin: 0.5208333333vw auto 0;
  font-size: 1.1458333333vw;
  line-height: 1.35;
  text-align: center;
  color: #333;
}
.chooseMarket__list {
  margin: 2.6041666667vw auto 0;
  max-width: 66.6666666667vw;
  list-style: none;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #000;
}
.chooseMarket__listItem {
  padding: 1.0416666667vw 0.78125vw;
  width: calc(33.33% - 1.0416666667vw);
  position: relative;
}
.chooseMarket__listItem__icon {
  padding: 0.5208333333vw;
  text-align: center;
}
.chooseMarket__listItem__icon svg {
  scale: 1.2;
  -webkit-filter: invert(8%) sepia(100%) saturate(7467%) hue-rotate(250deg) brightness(95%) contrast(146%);
          filter: invert(8%) sepia(100%) saturate(7467%) hue-rotate(250deg) brightness(95%) contrast(146%);
}
.chooseMarket__listItem__icon.mdScale svg {
  scale: 1.4;
}
.chooseMarket__listItem__icon.lgScale svg {
  scale: 1.6;
}
.chooseMarket__listItem__heading {
  margin: 0.5208333333vw auto 0;
  font-size: 1.1458333333vw;
  line-height: 1.35;
  color: #333;
  text-align: center;
}
.chooseMarket__listItem__text {
  margin: 0.5208333333vw auto 0;
  font-size: 0.9375vw;
  line-height: 1.35;
  color: #333;
}
.chooseMarket__cta {
  margin: 1.5625vw auto 0;
  text-align: center;
}
.chooseMarket__cta .btn {
  margin: 0 auto;
}

@media print, screen and (max-width: 768px) {
  .chooseMarket {
    padding: 10.6666666667vw 0;
  }
  .chooseMarket__heading {
    font-size: 8.5333333333vw;
  }
  .chooseMarket__subheading {
    margin: 2.6666666667vw auto 0;
    font-size: 4vw;
  }
  .chooseMarket__wrapper {
    padding: 0 2.6666666667vw;
  }
  .chooseMarket__list {
    margin: 6.6666666667vw auto 0;
    max-width: initial;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .chooseMarket__listItem {
    padding: 5.3333333333vw 4vw;
    width: 100%;
  }
  .chooseMarket__listItem__icon {
    padding: 2.6666666667vw;
  }
  .chooseMarket__listItem__heading {
    margin: 2.6666666667vw auto 0;
    font-size: 4.2666666667vw;
  }
  .chooseMarket__listItem__text {
    margin: 2.6666666667vw auto 0;
    font-size: 3.7333333333vw;
  }
  .chooseMarket__cta {
    margin: 8vw auto 0;
  }
}
.pageKv {
  padding: 4.1666666667vw 0;
  background-image: url("./../images/common/bg-pattern-01.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.pageKv__heading {
  font-size: 3.0208333333vw;
  line-height: 1.35;
  text-align: center;
  color: #333;
}
.pageKv__subheading {
  margin: 0.5208333333vw auto 0;
  font-size: 1.1458333333vw;
  line-height: 1.35;
  text-align: center;
  color: #000;
}
.pageKv__cta {
  margin: 1.5625vw auto 0;
  text-align: center;
}
.pageKv__cta .btn {
  margin: 0 auto;
}

@media print, screen and (max-width: 768px) {
  .pageKv {
    padding: 10.6666666667vw 0;
  }
  .pageKv__heading {
    font-size: 8.5333333333vw;
  }
  .pageKv__subheading {
    margin: 2.6666666667vw auto 0;
    font-size: 4vw;
  }
  .pageKv__wrapper {
    padding: 0 2.6666666667vw;
  }
  .pageKv__cta {
    margin: 8vw auto 0;
  }
}
.service {
  padding: 3.6458333333vw 0 4.1666666667vw;
  /** Icons by SVGBackgrounds.com **/
  background-image: url("./../images/common/scattered-forcefields.svg");
  background-size: 90%;
  background-repeat: repeat;
  background-position: top center;
  border-top: 0.1041666667vw solid #eee;
}
.service__content {
  margin: 2.6041666667vw auto 0;
  max-width: 66.6666666667vw;
}
.service__list {
  margin: 1.5625vw auto 0;
  width: 100%;
  list-style: none;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #000;
}
.service__listItem {
  padding: 1.0416666667vw 0.78125vw 1.3020833333vw;
  width: calc(25% - 1.8229166667vw);
  border: solid 0.15625vw #0500ff;
  position: relative;
  background-color: #fff;
  border-radius: 0.9375vw;
}
.service__listItem__icon {
  margin: 0 auto;
  padding: 1.0416666667vw;
  text-align: center;
  width: 4.1666666667vw;
  height: 4.1666666667vw;
  background-color: #0500ff;
  border-radius: 100%;
}
.service__listItem__icon img {
  -webkit-filter: invert(100%);
          filter: invert(100%);
}
.service__listItem__heading {
  margin: 0.5208333333vw auto 0;
  font-size: 0.9375vw;
  line-height: 1.35;
  color: #000;
  text-align: center;
}
.service__listItem__text {
  margin: 0.5208333333vw auto 0;
  font-size: 0.8333333333vw;
  line-height: 1.35;
  color: #333;
}
.service__contentH3 {
  padding-left: 1.3020833333vw;
  padding-bottom: 0.5208333333vw;
  font-size: 1.25vw;
  line-height: 1.35;
  position: relative;
}
.service__contentH3:before {
  margin: auto;
  position: absolute;
  top: 0.3125vw;
  right: auto;
  bottom: auto;
  left: 0;
  content: "";
  height: 1.1458333333vw;
  width: 1.1458333333vw;
  background-image: url(./../images/common/chevron-down.png);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.service__contentH3:after {
  position: absolute;
  bottom: 0;
  left: 1.3020833333vw;
  content: "";
  height: 0.2083333333vw;
  width: 2.2916666667vw;
  background-color: #0500ff;
}

@media print, screen and (max-width: 768px) {
  .service {
    padding: 10.6666666667vw 0;
    /** Icons by SVGBackgrounds.com **/
    background-image: url("./../images/common/scattered-forcefields-sp.png");
    background-size: cover;
    background-repeat: repeat;
    background-position: bottom center;
    border-top: 0.5333333333vw solid #eee;
  }
  .service__wrapper {
    padding: 0 2.6666666667vw;
  }
  .service__content {
    margin: 6.6666666667vw auto 0;
    max-width: initial;
  }
  .service__list {
    margin: 4vw auto 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .service__listItem {
    padding: 2.6666666667vw 2.1333333333vw;
    width: calc(50% - 2.1333333333vw);
    min-height: 32vw;
    border: solid 0.5333333333vw #0500ff;
    border-radius: 3.7333333333vw;
  }
  .service__listItem:nth-child(n+3) {
    margin-top: 5.3333333333vw;
  }
  .service__listItem:nth-child(2n):after {
    display: none;
  }
  .service__listItem__icon {
    padding: 2.1333333333vw;
    width: 12vw;
    height: 12vw;
  }
  .service__listItem__heading {
    margin: 2.6666666667vw auto 0;
    font-size: 4vw;
  }
  .service__listItem__text {
    margin: 2.6666666667vw auto 0;
    font-size: 3.2vw;
  }
  .service__contentH3 {
    padding-bottom: 2.6666666667vw;
    padding-left: 6.6666666667vw;
    font-size: 4.8vw;
  }
  .service__contentH3:before {
    top: 1.6vw;
    height: 4.2666666667vw;
    width: 4.2666666667vw;
  }
  .service__contentH3:after {
    left: 6.6666666667vw;
    height: 1.0666666667vw;
    width: 8.5333333333vw;
  }
}
.accountType {
  border-top: 0.1041666667vw solid #eee;
}
.accountType__list {
  margin: 2.6041666667vw auto 0;
  max-width: 66.6666666667vw;
  min-height: 19.0625vw;
  list-style: none;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #000;
}
.accountType__listItem {
  padding: 1.0416666667vw 0.78125vw 1.5625vw;
  width: calc(33.33% - 1.0416666667vw);
  border: solid 0.15625vw #0500ff;
  position: relative;
  background-color: #fff;
  border-radius: 0.9375vw;
  -webkit-filter: drop-shadow(3px 2px 5px rgba(238, 238, 238, 0.8));
  filter: drop-shadow(3px 2px 5px rgba(238, 238, 238, 0.8));
}
.accountType__listItem__icon {
  padding: 0.5208333333vw;
  text-align: center;
}
.accountType__listItem__icon svg {
  scale: 1.2;
  -webkit-filter: invert(8%) sepia(100%) saturate(7467%) hue-rotate(250deg) brightness(95%) contrast(146%);
          filter: invert(8%) sepia(100%) saturate(7467%) hue-rotate(250deg) brightness(95%) contrast(146%);
}
.accountType__listItem__heading {
  margin: 0.5208333333vw auto 0;
  font-size: 1.1458333333vw;
  line-height: 1.35;
  color: #333;
  text-align: center;
}
.accountType__listItem__text {
  margin: 0.5208333333vw auto 0;
  font-size: 0.9375vw;
  line-height: 1.35;
  color: #333;
}
.accountType__contentList {
  margin: 1.0416666667vw auto 0;
  width: 15.3125vw;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.accountType__contentList__item {
  font-size: 0.9375vw;
  line-height: 1.35;
  color: #000;
  list-style: none;
}
.accountType__contentList__item .highlight {
  font-size: 110%;
  font-weight: bold;
}
.accountType__contentList__item small {
  margin: 0.5em 0 0;
  display: inline-block;
  line-height: 1.35;
  font-size: 75%;
}
.accountType__contentList__item:not(:first-of-type) {
  margin: 1.0416666667vw 0 0;
}
.accountType__listItem__cta {
  margin: 1.5625vw auto 0;
  text-align: center;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media print, screen and (max-width: 768px) {
  .accountType {
    border-top: 0.5333333333vw solid #eee;
  }
  .accountType__wrapper {
    padding: 0 2.6666666667vw;
  }
  .accountType__list {
    margin: 6.6666666667vw auto 0;
    max-width: initial;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .accountType__listItem {
    margin: 0 auto;
    padding: 2.6666666667vw 2.1333333333vw 5.3333333333vw;
    width: 80vw;
    border: solid 0.8vw #0500ff;
    border-radius: 3.7333333333vw;
  }
  .accountType__listItem:not(:first-of-type) {
    margin-top: 5.3333333333vw;
  }
  .accountType__listItem__icon {
    padding: 2.6666666667vw;
  }
  .accountType__listItem__heading {
    margin: 2.6666666667vw auto 0;
    font-size: 4.2666666667vw;
  }
  .accountType__listItem__text {
    margin: 2.6666666667vw auto 0;
    font-size: 3.7333333333vw;
  }
  .accountType__contentList {
    margin: 4vw auto 0;
    width: 58.6666666667vw;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .accountType__contentList__item {
    font-size: 4vw;
  }
  .accountType__contentList__item:not(:first-of-type) {
    margin: 2.1333333333vw 0 0;
  }
}
.tab {
  margin: 1.5625vw auto 0;
  max-width: 66.6666666667vw;
}
.tab__control {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tab__controlItem {
  padding: 0.4166666667vw;
  display: inline-block;
  font-size: 1.1458333333vw;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
  transition: opacity 0.2s linear;
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  cursor: pointer;
}
.tab__controlItem:not(:last-of-type) {
  margin: 0 1.0416666667vw 0 0;
}
.tab__controlItem.isActive {
  text-decoration: underline;
  text-underline-position: under;
  text-decoration-thickness: 0.1041666667vw;
  text-underline-offset: 0.2083333333vw;
  text-decoration-color: #0500ff;
}
.tab__controlItem:hover {
  opacity: 0.8;
}
.tab__list {
  margin: 1.5625vw auto 0;
  position: relative;
  width: 100%;
  min-height: 19.0625vw;
}
.tab__listItem {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  visibility: hidden;
}
.tab__listItem.isActive {
  visibility: visible;
}

@media print, screen and (max-width: 768px) {
  .tab {
    margin: 4vw auto 0;
    max-width: initial;
  }
  .tab__controlItem {
    padding: 2.1333333333vw;
    font-size: 4.2666666667vw;
  }
  .tab__controlItem:not(:last-of-type) {
    margin: 0 4vw 0 0;
  }
  .tab__controlItem.isActive {
    text-decoration-thickness: 0.5333333333vw;
    text-underline-offset: 1.0666666667vw;
  }
  .tab__list {
    margin: 4vw auto 0;
    min-height: 84.2666666667vw;
    overflow: scroll;
  }
  .tab__listItem {
    padding-left: 4vw;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    visibility: hidden;
  }
  .tab__listItem.isActive {
    visibility: visible;
  }
}
.table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: center;
  table-layout: fixed;
}
.table tr, .table th, .table td {
  border-style: solid;
  border-color: #0500ff;
  border-width: 0 0 0.1041666667vw 0;
  font-size: 0.7291666667vw;
  font-weight: 500;
  line-height: 1.35;
  overflow: hidden;
}
.table th {
  padding: 1.0416666667vw 0.5208333333vw;
  color: #333;
}
.table td {
  padding: 1.0416666667vw 0.5208333333vw;
  background-color: #fff;
  color: #333;
}
.table thead th {
  font-size: 0.8333333333vw;
  line-height: 1.2;
  font-weight: 500;
  background-color: #0500ff;
  color: #fff;
}
.table thead th:nth-child(1) {
  width: 2.6041666667vw;
}
.table thead th:nth-child(2), .table thead th:nth-child(3), .table thead th:nth-child(4), .table thead th:nth-child(5), .table thead th:nth-child(6) {
  width: 12.8125vw;
}

@media print, screen and (max-width: 768px) {
  .table {
    width: 500px;
  }
  .table tr, .table th, .table td {
    border-width: 0 0 0.5333333333vw 0;
    font-size: 3.2vw;
  }
  .table th {
    padding: 2.1333333333vw 1.6vw;
    color: #333;
  }
  .table td {
    padding: 4vw 1.6vw;
  }
  .table thead th {
    font-size: 2.6666666667vw;
  }
  .table thead th:nth-child(1) {
    width: 6.6666666667vw;
  }
  .table thead th:nth-child(2), .table thead th:nth-child(3), .table thead th:nth-child(4), .table thead th:nth-child(5), .table thead th:nth-child(6) {
    width: 25.3333333333vw;
  }
}
.fees {
  border-bottom: 0.1041666667vw solid #eee;
}
.fees__terms {
  margin: 2.0833333333vw auto 0;
  max-width: 66.6666666667vw;
}
.fees__termsHeading {
  font-size: 0.8333333333vw;
  line-height: 1.35;
}
.fees__termsText {
  margin: 0.78125vw auto 0;
  font-size: 0.7291666667vw;
  line-height: 1.35;
}

@media print, screen and (max-width: 768px) {
  .fees {
    border-bottom: 0.5333333333vw solid #eee;
  }
  .fees__terms {
    margin: 5.3333333333vw auto 0;
    padding: 4vw;
    max-width: initial;
  }
  .fees__termsHeading {
    font-size: 3.7333333333vw;
  }
  .fees__termsText {
    margin: 4vw auto 0;
    font-size: 3.2vw;
  }
}
/*********************************

_chooseMt5.scss

*********************************/
.chooseMt5 {
  padding: 3.6458333333vw 0;
  /** Icons by SVGBackgrounds.com **/
  background-image: url("./../images/common/scattered-forcefields.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  border-top: 0.1041666667vw solid #eee;
}
.chooseMt5__list {
  margin: 0 auto 0;
  max-width: 41.6666666667vw;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
}
.chooseMt5__content {
  margin: 2.0833333333vw auto 0;
}
.chooseMt5__listItem {
  padding: 1.3020833333vw 1.0416666667vw;
  width: calc(50% - 0.5208333333vw);
  border: 0.15625vw solid #0500ff;
  border-radius: 0.9375vw;
  background-color: #fff;
}
.chooseMt5__listItem:nth-child(n+3) {
  margin-top: 1.0416666667vw;
}
.chooseMt5__listItem__fig {
  margin: 0 auto;
  width: 4.6875vw;
}
.chooseMt5__listItem__fig img {
  -webkit-filter: invert(8%) sepia(100%) saturate(7467%) hue-rotate(250deg) brightness(95%) contrast(146%);
          filter: invert(8%) sepia(100%) saturate(7467%) hue-rotate(250deg) brightness(95%) contrast(146%);
}
.chooseMt5__listItem__heading {
  margin: 0.78125vw auto 0;
  font-size: 1.25vw;
  line-height: 1.35;
}
.chooseMt5__listItem__text {
  margin: 0.5208333333vw auto 0;
}
.chooseMt5__cta {
  margin: 1.5625vw auto 0;
  text-align: center;
}
.chooseMt5__cta .btn {
  margin: 0 auto;
}

@media print, screen and (max-width: 768px) {
  .chooseMt5 {
    padding: 9.3333333333vw 0;
    /** Icons by SVGBackgrounds.com **/
    background-image: url("./../images/common/scattered-forcefields-sp.png");
    background-size: 115%;
    background-repeat: repeat;
    background-position: top center;
    border-top: 0.5333333333vw solid #eee;
  }
  .chooseMt5__list {
    margin: 0 auto 0;
    max-width: 80vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .chooseMt5__content {
    margin: 6.6666666667vw auto 0;
  }
  .chooseMt5__listItem {
    padding: 4vw;
    width: 100%;
    min-height: initial;
    border: 0.8vw solid #0500ff;
    border-radius: 3.7333333333vw;
  }
  .chooseMt5__listItem:nth-child(n+3) {
    margin-top: 4vw;
  }
  .chooseMt5__listItem:not(:first-of-type) {
    margin-top: 4vw;
  }
  .chooseMt5__listItem__fig {
    margin: 0 auto;
    width: 21.3333333333vw;
  }
  .chooseMt5__listItem__heading {
    margin: 4vw auto 0;
    font-size: 4.8vw;
  }
  .chooseMt5__listItem__text {
    margin: 2.6666666667vw auto 0;
  }
  .chooseMt5__cta {
    margin: 8vw auto 0;
  }
}
.dlMt5__content {
  margin: 0 auto;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background-color: #eee;
  overflow: hidden;
}
.dlMt5__contentLeft {
  width: 52%;
}
.dlMt5__contentRight {
  width: 48%;
  padding: 2.6041666667vw 1.0416666667vw 2.0833333333vw 2.6041666667vw;
  color: #fff;
}
.dlMt5__contentRight__wrapper {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 22.9166666667vw;
  height: 100%;
}
.dlMt5__contentRight__heading {
  font-size: 1.9791666667vw;
  line-height: 1.35;
  color: #000;
}
.dlMt5__contentRight__subheading {
  margin: 0.5208333333vw auto 0;
  font-size: 1.0416666667vw;
  line-height: 1.35;
  color: #333;
}
.dlMt5__contentFigWrapper {
  overflow: hidden;
  height: 100%;
  width: 100%;
  background-color: #0500ff;
}
.dlMt5__contentFig {
  position: relative;
  height: 100%;
  width: 100%;
}
.dlMt5__contentFig img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.dlMt5__contentFig:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.dlMt5__contentListHeading {
  margin: 2.0833333333vw 0 0;
  font-size: 1.1458333333vw;
  line-height: 1.35;
  color: #333;
}
.dlMt5__contentList {
  margin: 1.0416666667vw 0 0;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.dlMt5__contentList__item {
  padding: 0.78125vw 0;
  list-style: none;
  width: 100%;
}
.dlMt5__contentList__item:not(:last-of-type) {
  border-bottom: 0.1041666667vw solid #c1c2c5;
}
.dlMt5__contentList__itemLink {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dlMt5__contentList__itemIcon {
  width: 3.90625vw;
}
.dlMt5__contentList__itemIcon img {
  -webkit-filter: invert(8%) sepia(100%) saturate(7467%) hue-rotate(250deg) brightness(95%) contrast(146%);
          filter: invert(8%) sepia(100%) saturate(7467%) hue-rotate(250deg) brightness(95%) contrast(146%);
}
.dlMt5__contentList__itemText {
  padding-left: 1em;
  font-size: 0.9375vw;
  line-height: 1.35;
  color: #000;
}
.dlMt5__contentList__itemTitle {
  font-weight: 600;
  display: block;
}
.dlMt5__contentList__itemInfo {
  display: block;
  font-size: 0.7291666667vw;
  color: #333;
}
.dlMt5__cta {
  margin: 1.5625vw auto 0;
  width: 100%;
}
.dlMt5__cta .btn {
  margin: 0;
}

@media print, screen and (max-width: 768px) {
  .dlMt5__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .dlMt5__contentLeft {
    width: 100%;
  }
  .dlMt5__contentRight {
    width: 100%;
    padding: 5.3333333333vw 5.3333333333vw 9.3333333333vw;
  }
  .dlMt5__contentFigWrapper.polyImg01 {
    clip-path: initial;
  }
  .dlMt5__contentRight__wrapper {
    width: 100%;
    height: auto;
  }
  .dlMt5__contentRight__heading {
    font-size: 6.9333333333vw;
  }
  .dlMt5__contentRight__subheading {
    margin: 2.6666666667vw auto 0;
    font-size: 4vw;
  }
  .dlMt5__contentListHeading {
    margin: 4vw 0 0;
    font-size: 4.2666666667vw;
  }
  .dlMt5__contentList {
    margin: 5.3333333333vw 0 0;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .dlMt5__contentList__item {
    padding: 2.6666666667vw 0;
    font-size: 4vw;
  }
  .dlMt5__contentList__item:not(:last-of-type) {
    border-bottom: 0.2666666667vw solid #c1c2c5;
  }
  .dlMt5__contentList__itemIcon {
    width: 10.6666666667vw;
  }
  .dlMt5__contentList__itemText {
    font-size: 4vw;
  }
  .dlMt5__contentList__itemInfo {
    font-size: 3.2vw;
  }
  .dlMt5__cta {
    margin: 6.6666666667vw auto 0;
  }
  .dlMt5__cta .btn {
    margin: 0 auto;
  }
}
/*********************************

_dlDocs.scss

*********************************/
.dlDocs {
  padding: 3.6458333333vw 0;
  /** Icons by SVGBackgrounds.com **/
  background-image: url("./../images/common/scattered-forcefields.svg");
  background-size: 110%;
  background-repeat: repeat;
  background-position: bottom center;
  border-top: 0.1041666667vw solid #eee;
  border-bottom: 0.1041666667vw solid #eee;
}
.dlDocs__list {
  margin: 0 auto 0;
  max-width: 41.6666666667vw;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
}
.dlDocs__listItem {
  padding: 1.3020833333vw 1.0416666667vw;
  width: calc(50% - 0.5208333333vw);
  min-height: 5.7291666667vw;
  border: 0.1041666667vw solid #0500ff;
  border-radius: 0.9375vw;
  background-color: #fff;
  color: #333;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.dlDocs__listItem:nth-child(n+3) {
  margin-top: 1.0416666667vw;
}
.dlDocs__listItem:hover {
  color: #0500ff;
}
.dlDocs__listItem__heading {
  margin: 0 auto;
  font-size: 1.0416666667vw;
  line-height: 1.35;
}
.dlDocs__listItem__text {
  margin: 0.5208333333vw auto 0;
}
.dlDocs__cta {
  margin: 1.5625vw auto 0;
  text-align: center;
}
.dlDocs__cta .btn {
  margin: 0 auto;
}

@media print, screen and (max-width: 768px) {
  .dlDocs {
    padding: 9.3333333333vw 0;
    /** Icons by SVGBackgrounds.com **/
    background-image: url("./../images/common/scattered-forcefields-sp.png");
    background-size: 115%;
    background-repeat: repeat;
    background-position: top center;
    border-top: 0.5333333333vw solid #eee;
    border-bottom: 0.5333333333vw solid #eee;
  }
  .dlDocs__list {
    margin: 0 auto 0;
    max-width: 80vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .dlDocs__listItem {
    padding: 4vw 2.6666666667vw;
    width: 100%;
    min-height: 20.8vw;
    border: 0.5333333333vw solid #0500ff;
    border-radius: 3.7333333333vw;
  }
  .dlDocs__listItem:nth-child(n+3) {
    margin-top: 4vw;
  }
  .dlDocs__listItem:not(:first-of-type) {
    margin-top: 4vw;
  }
  .dlDocs__listItem__heading {
    margin: 0 auto;
    font-size: 4.2666666667vw;
  }
  .dlDocs__listItem__text {
    margin: 2.6666666667vw auto 0;
  }
  .dlDocs__cta {
    margin: 8vw auto 0;
  }
}
.info {
  padding: 3.6458333333vw 0;
  border-top: 0.1041666667vw solid #eee;
}
.info__item {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.info__itemVis {
  width: calc(100% - 29.1666666667vw);
  min-height: 20.3125vw;
  background: #c1c2c5;
  position: relative;
}
.info__itemVis img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.info__itemVisMain {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
}
.info__itemInfoBox {
  padding: 0 3.6458333333vw 0 5.2083333333vw;
  width: 29.1666666667vw;
  color: #000;
}
.info__itemInfoWrapper {
  margin: 0 auto 0 0;
  width: 100%;
  height: 100%;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.info__itemInfoTitle {
  padding-bottom: 0.5208333333vw;
  font-size: 1.25vw;
  line-height: 1.35;
  position: relative;
}
.info__itemInfoTitle:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 0.2083333333vw;
  width: 3.3333333333vw;
  background-color: #0500ff;
}
.info__itemInfoDesc {
  margin: 1.5625vw auto 0;
  font-size: 0.8333333333vw;
  line-height: 1.5;
}

@media print, screen and (min-width: 769px) {
  .info__item--reversed {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .info__item--reversed .info__itemInfoWrapper {
    margin: 0 0 0 auto;
  }
  .info__item--reversed .info__itemInfoBox {
    padding: 0 5.2083333333vw 0 3.6458333333vw;
  }
  .info__item:not(:first-of-type) {
    margin: 80px auto 0;
  }
}
@media print, screen and (max-width: 768px) {
  .info {
    padding: 10.6666666667vw 0 0;
    border-top: 0.5333333333vw solid #eee;
  }
  .info__wrapper {
    padding-bottom: 5.3333333333vw;
  }
  .info__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .info__itemInfoWrapper {
    margin: 0 auto;
  }
  .info__itemVis {
    width: 100%;
    min-height: initial;
    height: 53.3333333333vw;
  }
  .info__itemInfoBox {
    padding: 8vw 6.6666666667vw;
    width: 100%;
  }
  .info__itemInfoWrapper {
    margin: 0 auto;
    width: 100%;
    height: 100%;
  }
  .info__itemInfoTitle {
    padding-bottom: 2.6666666667vw;
    font-size: 4.8vw;
  }
  .info__itemInfoTitle:after {
    height: 1.0666666667vw;
    width: 16.5333333333vw;
  }
  .info__itemInfoDesc {
    margin: 2.6666666667vw auto 0;
    font-size: 4vw;
  }
  .info__itemInfoActions {
    margin: 5.3333333333vw auto 0;
    text-align: center;
  }
}
.weBelieve {
  padding: 4.1666666667vw 0;
  /** Icons by SVGBackgrounds.com **/
  background-image: url("./../images/common/subtle-prism-white.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.weBelieve__heading {
  font-size: 3.0208333333vw;
  line-height: 1.35;
  text-align: center;
  color: #000;
}
.weBelieve__subheading {
  margin: 0.5208333333vw auto 0;
  font-size: 1.1458333333vw;
  line-height: 1.35;
  text-align: center;
  color: #333;
}
.weBelieve__list {
  margin: 2.6041666667vw auto 0;
  max-width: 66.6666666667vw;
  list-style: none;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #000;
}
.weBelieve__listItem {
  padding: 1.0416666667vw 0.78125vw;
  width: calc(33.33% - 1.0416666667vw);
  position: relative;
}
.weBelieve__listItem__icon {
  padding: 0.5208333333vw;
  text-align: center;
}
.weBelieve__listItem__icon svg {
  scale: 1.2;
  -webkit-filter: invert(8%) sepia(100%) saturate(7467%) hue-rotate(250deg) brightness(95%) contrast(146%);
          filter: invert(8%) sepia(100%) saturate(7467%) hue-rotate(250deg) brightness(95%) contrast(146%);
}
.weBelieve__listItem__icon.mdScale svg {
  scale: 1.4;
}
.weBelieve__listItem__icon.lgScale svg {
  scale: 1.6;
}
.weBelieve__listItem__heading {
  margin: 0.5208333333vw auto 0;
  font-size: 1.1458333333vw;
  line-height: 1.35;
  color: #000;
  text-align: center;
}
.weBelieve__listItem__text {
  margin: 0.5208333333vw auto 0;
  font-size: 0.9375vw;
  line-height: 1.35;
  color: #000;
}
.weBelieve__cta {
  margin: 1.5625vw auto 0;
  text-align: center;
}
.weBelieve__cta .btn {
  margin: 0 auto;
}

@media print, screen and (max-width: 768px) {
  .weBelieve {
    padding: 10.6666666667vw 0;
  }
  .weBelieve__heading {
    font-size: 8.5333333333vw;
  }
  .weBelieve__subheading {
    margin: 2.6666666667vw auto 0;
    font-size: 4vw;
  }
  .weBelieve__wrapper {
    padding: 0 2.6666666667vw;
  }
  .weBelieve__list {
    margin: 6.6666666667vw auto 0;
    max-width: initial;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .weBelieve__listItem {
    padding: 5.3333333333vw 4vw;
    width: 100%;
  }
  .weBelieve__listItem__icon {
    padding: 2.6666666667vw;
  }
  .weBelieve__listItem__heading {
    margin: 2.6666666667vw auto 0;
    font-size: 4.2666666667vw;
    -webkit-filter: drop-shadow(3px 2px 5px rgba(255, 255, 255, 0.8));
    filter: drop-shadow(3px 2px 5px rgba(255, 255, 255, 0.8));
  }
  .weBelieve__listItem__text {
    margin: 2.6666666667vw auto 0;
    font-size: 3.7333333333vw;
  }
  .weBelieve__cta {
    margin: 8vw auto 0;
  }
}
.contactUs {
  padding: 3.6458333333vw 0;
  border-top: 0.1041666667vw solid #eee;
  border-bottom: 0.1041666667vw solid #eee;
}
.contactUs__content {
  margin: 1.3020833333vw auto 0;
  max-width: 31.25vw;
}
.contactUs__formRow {
  padding: 0.4166666667vw 0.5208333333vw;
  position: relative;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contactUs__formRow:first-of-type {
  border-top: 1px solid #c1c2c5;
}
.contactUs__formRow.has-error .errTxt {
  display: block;
}
.contactUs__formLabel {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contactUs__formLabel label {
  font-size: 0.8333333333vw;
  font-weight: 500;
}
.contactUs__formFieldBox {
  width: 100%;
  margin: 0.5rem auto 0;
  position: relative;
}
.contactUs__formFieldBox input {
  height: auto;
}
.contactUs__formFieldBox textarea {
  min-height: 9.375vw;
}
.contactUs__formFieldBox input,
.contactUs__formFieldBox textarea,
.contactUs__formFieldBox .type-name {
  margin: 0;
  padding: 0.8333333333vw 0.78125vw;
  background-color: #eee;
  font-size: 0.8333333333vw;
  border-radius: 0.4166666667vw;
}
.contactUs__formFieldBox .type-name {
  padding: 0.8333333333vw 1.5625vw 0.8333333333vw 0.78125vw;
  display: inline-block;
  width: 100%;
}
.contactUs__formField {
  display: block;
  width: 100%;
  background-color: #fff;
  font-size: 0.8333333333vw;
  letter-spacing: normal;
  color: #000;
}
.contactUs__formBtnBox {
  margin: 1.3020833333vw auto 0;
  text-align: center;
}
.contactUs__formBtnBox .btn {
  margin: 0 auto;
}
.contactUs__formNoteText {
  margin: 2rem auto !important;
  text-align: center;
  font-size: 0.9375vw;
  font-weight: normal;
}
.contactUs__formNoteText.required, .contactUs__formNoteText.failed {
  color: #FF0000 !important;
}
.contactUs__formNoteText.success {
  color: #00b900 !important;
}
.contactUs .require {
  margin-left: 0.2083333333vw;
}
.contactUs .errTxt,
.contactUs .contact__acceptanceErrTxt {
  margin-top: 0.5rem;
  display: none;
  font-size: 0.6770833333vw;
  color: #FF0000;
}
.contactUs .errTxt.is-active,
.contactUs .contact__acceptanceErrTxt.is-active {
  display: block;
}
.contactUs .contact__acceptanceErrTxt {
  text-align: center;
}
.contactUs .loader {
  display: none;
}
.contactUs .loader.is-active {
  display: block;
}

.loaderBox {
  display: none;
  margin: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  z-index: 11;
}
.loaderBox.is-active {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.loaderBox.is-active .loader {
  display: block;
}

.loader {
  margin: 0;
  display: block;
  border: 4px solid #fff;
  border-radius: 50%;
  border-top: 4px solid #0500ff;
  width: 3rem;
  height: 3rem;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
  position: relative;
  top: 2%;
  z-index: 9;
}

.contactMap iframe {
  width: 100%;
  height: 23.4375vw;
}

@media print, screen and (max-width: 768px) {
  .contactUs {
    padding: 9.3333333333vw 4vw;
    border-top: 0.5333333333vw solid #eee;
    border-bottom: 0.5333333333vw solid #eee;
  }
  .contactUs__content {
    margin: 6.6666666667vw auto 0;
    max-width: 100vw;
  }
  .contactUs__formRow {
    padding: 2.1333333333vw 2.6666666667vw;
  }
  .contactUs__formLabel label {
    font-size: 4.2666666667vw;
  }
  .contactUs__formFieldBox textarea {
    min-height: 48vw;
  }
  .contactUs__formFieldBox input,
  .contactUs__formFieldBox textarea,
  .contactUs__formFieldBox .type-name {
    margin: 0;
    padding: 4.2666666667vw 4vw;
    font-size: 3.7333333333vw;
    border-radius: 2.1333333333vw;
  }
  .contactUs__formFieldBox .type-name {
    padding: 4.2666666667vw 8vw 4.2666666667vw 4vw;
  }
  .contactUs__formField {
    font-size: 3.7333333333vw;
  }
  .contactUs__formBtnBox {
    margin: 6.6666666667vw auto 0;
  }
  .contactUs__formNoteText {
    font-size: 3.7333333333vw;
  }
  .contactUs .require {
    margin-left: 1.0666666667vw;
  }
  .contactUs .errTxt,
  .contactUs .contact__acceptanceErrTxt {
    font-size: 2.6666666667vw;
  }
  .contactMap iframe {
    width: 100%;
    height: 66.6666666667vw;
  }
}
/*********************************

_support.scss

*********************************/
.helpBox {
  margin: 0 auto;
  width: 100%;
  background-color: #2187ab;
}
.helpBox__wrapper {
  padding: 12% 0 5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.helpBox__header {
  margin: 0 auto 1.0416666667vw;
  color: #fff;
}
.helpBox__searchWrapper {
  margin: auto;
  width: 100%;
  max-width: 26.0416666667vw;
  display: block;
}
.helpBox__searchField {
  padding: 0.15625vw 0.2604166667vw 0.15625vw 0.5208333333vw;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 3.125vw;
  border: 0.1041666667vw solid #fff;
  border-radius: 0.5208333333vw;
  -webkit-box-shadow: rgba(19, 19, 23, 0.4) 0px 0.5208333333vw 2.6041666667vw 0px;
          box-shadow: rgba(19, 19, 23, 0.4) 0px 0.5208333333vw 2.6041666667vw 0px;
  background-color: #fff;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.helpBox__searchFieldInput {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 0.9375vw;
  line-height: 1.35;
}
.helpBox__searchFilterBtn {
  padding: 0 0.5208333333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0;
  height: 100%;
  border-radius: 0.5208333333vw;
  background-color: #2187ab;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.helpBox__searchFilterBtn svg {
  width: 1.25vw;
  height: 1.25vw;
  stroke: #fff;
}
.helpBox__searchClearBtn {
  margin-right: 0.5208333333vw;
  font-size: 0;
  display: none;
}
.helpBox__searchClearBtn svg {
  width: 1.0416666667vw;
  height: 1.0416666667vw;
}
.helpBox__searchResult {
  position: absolute;
  top: calc(100% - 4.1666666667vw);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 52.0833333333vw;
  display: none;
  padding: 1.5625vw 1.875vw;
  border-radius: 0.3125vw;
  background: #fff;
  -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 1.3020833333vw 2.6041666667vw -0.625vw, rgba(0, 0, 0, 0.14) 0px 0px 1.0416666667vw -0.3125vw;
          box-shadow: rgba(0, 0, 0, 0.25) 0px 1.3020833333vw 2.6041666667vw -0.625vw, rgba(0, 0, 0, 0.14) 0px 0px 1.0416666667vw -0.3125vw;
  z-index: 3;
  max-height: 70vh;
  overflow: auto;
}
.helpBox__searchResult .highlight {
  background-color: lightblue;
  font-weight: bold;
}
.helpBox__searchResultWrapper.no--result {
  padding: 4.1666666667vw 0;
  text-align: center;
}
.helpBox__searchResultWrapper.with--result {
  padding: 1.5625vw 0;
}
.helpBox__searchResultWrapper.with--result .section__heading {
  padding-bottom: 2.0833333333vw;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
.helpBox__searchResultList {
  margin-top: 1.0416666667vw;
  list-style: none;
}
.helpBox__searchResultItm {
  width: 100%;
  display: block;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  border-radius: 0.5208333333vw;
}
.helpBox__searchResultItm a {
  padding: 1.0416666667vw 1.0416666667vw;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.helpBox__searchResultItm:hover {
  background-color: rgba(5, 0, 255, 0.1);
}
.helpBox__searchResultItm:hover .helpBox__searchResultTtl {
  color: #0500ff;
}
.helpBox__searchResultTtl {
  margin-bottom: 0.5208333333vw;
  font-size: 1.25vw;
  line-height: 1.35;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
}
.helpBox__searchResultDesc {
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media print, screen and (max-width: 768px) {
  .helpBox__wrapper {
    padding: 26.6666666667vw 0 8vw;
  }
  .helpBox__header {
    margin: 0 auto 2.6666666667vw;
  }
  .helpBox__searchWrapper {
    max-width: 66.6666666667vw;
  }
  .helpBox__searchField {
    padding: 0.8vw 0.5333333333vw 0.8vw 1.3333333333vw;
    height: 9.3333333333vw;
    border: 0.5333333333vw solid #fff;
    border-radius: 1.3333333333vw;
    -webkit-box-shadow: rgba(19, 19, 23, 0.4) 0px 2.6666666667vw 13.3333333333vw 0px;
            box-shadow: rgba(19, 19, 23, 0.4) 0px 2.6666666667vw 13.3333333333vw 0px;
  }
  .helpBox__searchFieldInput {
    font-size: 3.7333333333vw;
    line-height: 1.5;
  }
  .helpBox__searchFieldInput input:focus,
  .helpBox__searchFieldInput input:-webkit-autofill,
  .helpBox__searchFieldInput input:-internal-autofill-selected,
  .helpBox__searchFieldInput input:-internal-autofill-previewed,
  .helpBox__searchFieldInput input:focus-visible {
    background-color: white;
  }
  .helpBox__searchFilterBtn {
    padding: 0 1.3333333333vw;
    border-radius: 1.3333333333vw;
  }
  .helpBox__searchFilterBtn svg {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
  }
  .helpBox__searchClearBtn {
    margin-right: 1.3333333333vw;
  }
  .helpBox__searchClearBtn svg {
    width: 4vw;
    height: 4vw;
  }
  .helpBox__searchResult {
    top: calc(100% - 5.3333333333vw);
    width: 95%;
    gap: 0.78125vw;
    padding: 5.3333333333vw 2.6666666667vw;
    border-radius: 1.6vw;
    -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 6.6666666667vw 13.3333333333vw -3.2vw, rgba(0, 0, 0, 0.14) 0px 0px 5.3333333333vw -1.6vw;
            box-shadow: rgba(0, 0, 0, 0.25) 0px 6.6666666667vw 13.3333333333vw -3.2vw, rgba(0, 0, 0, 0.14) 0px 0px 5.3333333333vw -1.6vw;
    max-height: 70vh;
  }
  .helpBox__searchResultWrapper.no--result {
    padding: 13.3333333333vw 0;
  }
  .helpBox__searchResultWrapper.with--result {
    padding: 5.3333333333vw 0;
  }
  .helpBox__searchResultWrapper.with--result .section__heading {
    padding-bottom: 2.6666666667vw;
    border-bottom: 0.2666666667vw solid rgba(0, 0, 0, 0.5);
  }
  .helpBox__searchResultList {
    margin-top: 2.6666666667vw;
  }
  .helpBox__searchResultItm {
    border-radius: 1.3333333333vw;
  }
  .helpBox__searchResultItm a {
    padding: 2.6666666667vw 2.6666666667vw;
  }
  .helpBox__searchResultTtl {
    margin-bottom: 2.6666666667vw;
    font-size: 4.8vw;
  }
}
.categories {
  margin: 0 auto;
  width: 100%;
}
.categories__header {
  margin: 4.1666666667vw auto 2.8645833333vw;
  text-align: center;
  color: #0500ff;
}
.categories__itmsList {
  margin: 0 auto 5.2083333333vw;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5625vw;
}
.categories__itm {
  padding: 2.0833333333vw 1.0416666667vw;
  width: calc(50% - 1.5625vw);
  border: 0.1041666667vw solid #0500ff;
  border-radius: 0.9375vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 0.0520833333vw 0.2083333333vw 0px, rgba(0, 0, 0, 0.1) 0px 0px 0.1041666667vw 0px, rgba(0, 0, 0, 0.1) 0px 0.4166666667vw 1.25vw 0px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 0.0520833333vw 0.2083333333vw 0px, rgba(0, 0, 0, 0.1) 0px 0px 0.1041666667vw 0px, rgba(0, 0, 0, 0.1) 0px 0.4166666667vw 1.25vw 0px;
}
.categories__ttl {
  margin-bottom: 0.5208333333vw;
  font-size: 1.5625vw;
  line-height: 1.35;
  font-weight: bold;
  text-align: center;
}
.categories__postCount {
  font-size: 1.0416666667vw;
  font-weight: 300;
  text-align: center;
}
.categories__itmArticlesList {
  margin: 2.0833333333vw auto 2.0833333333vw;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.5208333333vw;
  list-style: none;
}
.categories__itmArticle {
  padding: 0.5208333333vw 0;
  width: 100%;
  font-size: 1.0416666667vw;
  font-weight: bold;
  position: relative;
  border-bottom: 0.0520833333vw solid rgba(0, 0, 0, 0.3);
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  cursor: pointer;
}
.categories__itmArticle:hover {
  color: #0500ff;
  border-color: #0500ff;
}
.categories__itmArticle:last-child {
  margin-bottom: 0;
}
.categories__itmArticleAnswer {
  padding-top: 0.5208333333vw;
  font-size: 0.9375vw;
  line-height: 1.35;
  display: none;
}
.categories__itmShowAllBtn {
  margin: 1.0416666667vw auto 0;
  text-align: center;
}

@media print, screen and (max-width: 768px) {
  .categories__header {
    margin: 13.3333333333vw auto 8vw;
  }
  .categories__itmsList {
    margin: 0 auto 16vw;
    gap: 4vw;
  }
  .categories__itm {
    padding: 6.6666666667vw 5.3333333333vw;
    width: 100%;
    border: 0.5333333333vw solid #0500ff;
    border-radius: 1.3333333333vw;
  }
  .categories__ttl {
    margin-bottom: 1.3333333333vw;
    font-size: 4.8vw;
  }
  .categories__postCount {
    font-size: 3.7333333333vw;
  }
  .categories__itmArticlesList {
    margin: 5.3333333333vw auto 5.3333333333vw;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0;
  }
  .categories__itmArticle {
    padding: 2.6666666667vw 0;
    width: 100%;
    font-size: 4vw;
    border-bottom: 0.2666666667vw solid rgba(0, 0, 0, 0.3);
  }
  .categories__itmArticleAnswer {
    padding-top: 1.3333333333vw;
    font-size: 3.7333333333vw;
  }
  .categories__itmShowAllBtn {
    margin: 8vw auto 0;
  }
}
.popularArticles {
  margin: 0 auto;
  width: 100%;
  background-color: #0f3c4c;
  background-image: -webkit-gradient(linear, left top, right top, from(#0f3c4c), color-stop(#2187ab), to(#0f3c4c));
  background-image: linear-gradient(to right, #0f3c4c, #2187ab, #0f3c4c);
}
.popularArticles__wrapper {
  padding-top: 0.78125vw;
  padding-bottom: 1.0416666667vw;
}
.popularArticles__header {
  margin: 4.1666666667vw auto 2.8645833333vw;
  text-align: center;
  color: #fff;
}
.popularArticles__itms {
  margin: 0 auto 5.2083333333vw;
  width: 100%;
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5625vw;
}
.popularArticles__itm {
  padding: 1.5625vw 1.0416666667vw;
  width: calc(33.33% - 1.5625vw);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 1.0416666667vw;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 0.0520833333vw 0.2083333333vw 0px, rgba(0, 0, 0, 0.1) 0px 0px 0.1041666667vw 0px, rgba(0, 0, 0, 0.1) 0px 0.4166666667vw 1.25vw 0px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 0.0520833333vw 0.2083333333vw 0px, rgba(0, 0, 0, 0.1) 0px 0px 0.1041666667vw 0px, rgba(0, 0, 0, 0.1) 0px 0.4166666667vw 1.25vw 0px;
  background-color: #fff;
}
.popularArticles__ttl {
  margin-bottom: 1.0416666667vw;
  font-size: 1.1458333333vw;
  line-height: 1.35;
  color: #333;
}
.popularArticles__desc {
  font-family: Rubik, -apple-system, "system-ui", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9375vw;
  line-height: 1.35;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media print, screen and (max-width: 768px) {
  .popularArticles__wrapper {
    padding-top: 4vw;
    padding-bottom: 5.3333333333vw;
  }
  .popularArticles__header {
    margin: 8vw auto 10.6666666667vw;
  }
  .popularArticles__itms {
    margin: 0 auto 8vw;
    gap: 4vw;
  }
  .popularArticles__itm {
    padding: 8vw 5.3333333333vw;
    width: 100%;
    border-radius: 2.6666666667vw;
  }
  .popularArticles__ttl {
    margin-bottom: 2.6666666667vw;
    font-size: 4.8vw;
  }
  .popularArticles__desc {
    font-size: 3.7333333333vw;
  }
}
/*-----------------------------------------------
Anchor
------------------------------------------------*/
.anchor {
  position: relative;
}
.anchor__box {
  margin: auto;
  position: absolute;
  top: -11.4583333333vw;
  left: 0;
  right: 0;
  width: 11.4583333333vw;
  height: 11.4583333333vw;
  outline: none;
  pointer-events: none;
  cursor: default;
  z-index: -1;
}
@media print, screen and (max-width: 768px) {
  .anchor__box {
    top: -21.3333333333vw;
    left: 0;
    right: 0;
    width: 21.3333333333vw;
    height: 21.3333333333vw;
  }
}
/*# sourceMappingURL=main.css.map */