@charset "UTF-8";
:root {
  --main-color: #1b2d73;
  --sub-color: #FFFE54;
  --font-color: var(--main-color);
  --main-font: "Inter", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --header-height: 4.3125rem;
  --bg-gradient: linear-gradient(90deg, #1FDDAC 0%, #3BDDD9 100%);
}


.glow {
  filter: drop-shadow(0 0 2px white)
          drop-shadow(0 0 3px white)
          drop-shadow(0 0 4px white);
}

@media (max-width: 767px) {
  :root {
    --header-height: 4.312rem;
  }
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}
@media (min-width: 768px) and (max-width: 1280px) {
  html {
    font-size: 1.25vw;
  }
}
@media (min-width: 1280px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: var(--main-font);
  font-size: 1rem;
  font-weight: 350;
  width: 100%;
  color: var(--font-color);
  margin: 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
body ::-webkit-scrollbar {
  display: none;
}
@media (max-width: 767px) {
  body {
    font-size: 0.75rem;
    overflow-x: hidden;
  }
}

h1,
h2,
h3,
h4 {
  line-height: inherit;
  margin: 0;
  font-weight: inherit;
}

p {
  margin: 0;
}

figure {
  margin: 0;
}

iframe,
video,
img,
svg {
  height: auto;
  max-width: 100%;
}

b,
strong {
  font-weight: bold;
}

iframe,
img {
  vertical-align: bottom;
}

dl,
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

dd {
  margin: 0;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.5;
}

#autozip {
  display: none !important;
}

.l-header {
  z-index: 1000;
  background: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  height: var(--header-height);
}
@media (max-width: 767px) {
  .l-header {
    background: var(--main-color);
    border-bottom: 0.1rem solid #fff;
  }
}
.l-header__logo {
  position: relative;
  z-index: 10;
  margin: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
@media (min-width: 768px) {
  .l-header__logo {
    background: var(--main-color);
    width: 16rem;
  }
}
@media (max-width: 767px) {
  .l-header__logo {
    width: 14.6rem;
  }
}
.l-header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-header__logo img {
  width: 9.188rem;
}
.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  height: 100%;
}
.l-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-header__item {
  padding: 0 1.5rem;
}
.l-header__item a {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
}
.l-header__item a:hover {
  opacity: 1;
}
.l-header__item a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: currentColor;
  left: 0;
  bottom: -0.3125rem;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.l-header__item a:hover::after {
  width: 100%;
}
.l-header__button-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
@media (max-width: 767px) {
  .l-header__button-list {
    border-left: 0.1rem solid #fff;
  }
}
.l-header__button-link {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  padding: 0 1.5rem;
}
@media (max-width: 767px) {
  .l-header__button-link {
    font-size: 1rem;
    padding: 0 1.2rem;
  }
}
.l-header__button-link::before {
  content: "▶";
  padding-right: 0.625rem;
}
@media (max-width: 767px) {
  .l-header__button-link::before {
    padding-right: 0.5rem;
    font-size: 1rem;
  }
}
.l-header__button-link--pdf {
  background: var(--main-color);
  color: #fff;
}
.l-header__button-link--apply {
  background: var(--sub-color);
  color: var(--main-color);
}
.l-header__hamburger-wrap {
  height: 100%;
}
.l-header__hamburger {
  width: 7.6rem;
  height: 100%;
  background: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  cursor: pointer;
  margin: auto;
  outline: none;
  -webkit-transition: transform 0.3s ease-in-out;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-header__hamburger[aria-expanded=true] .l-header__hamburger-line {
  background: transparent;
}
.l-header__hamburger[aria-expanded=true] .l-header__hamburger-line:before, .l-header__hamburger[aria-expanded=true] .l-header__hamburger-line:after {
  top: 50%;
}
.l-header__hamburger[aria-expanded=true] .l-header__hamburger-line:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.l-header__hamburger[aria-expanded=true] .l-header__hamburger-line:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 100%;
}
.l-header__hamburger[aria-expanded=true] .l-header__hamburger-text {
  display: none;
}
.l-header__hamburger-line {
  width: 1.625rem;
  height: 0.09375rem;
  display: block;
  -webkit-transition: inherit;
  transition: inherit;
  background: #fff;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  position: relative;
}
.l-header__hamburger-line:before, .l-header__hamburger-line:after {
  position: absolute;
  display: block;
  width: 100%;
  height: inherit;
  background-color: #fff;
  content: "";
  -webkit-transition: inherit;
  transition: inherit;
}
.l-header__hamburger-line:before {
  top: -0.7rem;
}
.l-header__hamburger-line:after {
  bottom: -0.7rem;
  width: 80%;
}
.l-header__sp-menu {
  position: fixed;
  z-index: 1001;
  width: 100vw;
  height: calc(100vh - var(--header-height));
  background: #edf8ff;
  overflow-y: scroll;
  left: 0;
  top: var(--header-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.l-sp-menu {
  padding-top: 3.3rem;
}
.l-sp-menu__item {
  padding: 1.7rem 0 1.4rem;
  border-bottom: 0.05rem solid var(--main-color);
}
.l-sp-menu__item a {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-sp-menu__item a::before {
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  content: "";
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url(../img/icon_arrow_right.svg);
  mask-image: url(../img/icon_arrow_right.svg);
  background-color: var(--main-color);
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 1.24rem;
}

.l-footer {
  background: var(--main-color);
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
.l-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}
.l-footer__title {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.9;
  border-top: 0.125rem solid;
  text-align: center;
}
.l-footer__title img {
  width: 100%;
  display: block;
}
.l-footer__text {
  color: #fff;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.9;
}
.l-footer__button-wrap {
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}
.l-footer__logo {
  margin-top: 1.25rem;
}
.l-footer__logo img {
  width: 13.1875rem;
}
.l-footer__sns-list {
  margin-top: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.15rem;
}
.l-footer__sns-link img {
  width: 2.5625rem;
}

.l-container {
  padding: 0 2.5rem;
}

.l-main__inner {
  overflow: hidden;
}
.l-main__inner--pt-header {
  padding-top: var(--header-height);
}

.l-main-sidebar {
  --main-width: 37.5rem;
}
.l-main-sidebar__fixed-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .l-main-sidebar__fixed-side {
    display: none;
  }
}
.l-main-sidebar__aside {
  width: calc((100% - var(--main-width)) / 2);
  height: calc(100vh - var(--header-height));
  overflow: scroll;
  background: #EDF8FF;
}
@media (max-width: 767px) {
  .l-main-sidebar__aside {
    display: none;
  }
}
.l-main-sidebar__main {
  margin-top: var(--header-height);
}
@media (min-width: 768px) {
  .l-main-sidebar__main {
    width: var(--main-width);
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
  }
}

.c-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  height: 5rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.6875;
  font-size: 1.5rem;
  max-width: 100%;
  max-height: 100%;
  border-radius: calc(infinity * 1px);
  width: 27.5rem;
  padding: 0.9375rem 2.5rem;
  --button-color: var(--main-color);
  --button-bg: var(--bg-gradient);
  background: var(--button-bg);
  color: var(--button-color);
}

.c-button--main-color {
  --button-color: #fff;
  --button-bg: var(--main-color);
}

.c-button--about {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0;
  position: relative;
}

.c-button--about::after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../img/icon_arrow_right-white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 50%;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-button--shutsugan {
  width: 32.5rem;
  height: 5.1875rem;
  background: var(--sub-color);
  border: 0.125rem solid var(--main-color);
  font-size: 1.875rem;
}

.c-button--shutsugan::before {
  content: "▶︎";
  font-size: 2rem;
  font-weight: 500;
  margin-right: 0.625rem;
}

.c-button__lgtext {
  font-size: 1.375rem;
}

.c-button__smtext {
  font-size: 1rem;
}

.c-title1 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1rem;
  position: relative;
  padding-bottom: 1.25rem;
}

.c-title1::after {
  content: "";
  width: 5rem;
  height: 0.25rem;
  background: currentColor;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
}

.c-date {
  font-weight: 700;
}

.c-date__year {
  font-size: 1.5rem;
  vertical-align: top;
  line-height: 1;
  margin-top: 0.15em;
  display: inline-block;
}

.c-date__year--sm {
  font-size: 1.125rem;
}

.c-date__month-day {
  margin-left: 0.25rem;
  font-size: 2.875rem;
  line-height: 1;
}

.c-date__month-day--sm {
  font-size: 2.5rem;
}

.c-date__month-day--lg {
  font-size: 3.25rem;
}

.c-date__youbi {
  font-size: 1.125rem;
  background: #d9d9d9;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 0.25rem;
  line-height: 1;
}

.c-date__youbi--sm {
  font-size: 1rem;
}

.c-date__youbi--sat {
  color: #0086E8;
}

.c-date__youbi--sun {
  color: #dc3246;
}

.c-date__symbol {
  font-size: 2rem;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  line-height: 1;
}

.c-box1 {
  border-radius: 0.75rem;
  border: 0.25rem solid #d4e6f2;
  background: #fff;
  padding: 2.5rem;
  display: grid;
  gap: 2.5rem;
}

.c-box1__dlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}

.c-box1__dlist-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04rem;
  border-radius: 0.25rem;
  border: 0.125rem solid;
  padding: 0.3125rem 1.0625rem;
}

.c-title2 {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 2.5rem;
  background: linear-gradient(97deg, rgba(31, 221, 172, 0.4) 36.92%, rgba(59, 221, 217, 0.4) 71.15%);
  padding: 2.5rem 0 3.75rem;
  position: relative;
  z-index: 1;
  line-height: 1;
}

.c-title2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: calc(100% - 3.75rem);
  height: calc(100% - 1.25rem);
  background: url(../img/title2_bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.c-title3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  text-align: center;
}

.c-title3__en {
  color: #fff;
  font-size: 7.5rem;
  font-weight: 700;
  line-height: 1;
}

.c-title3__ja {
  margin-top: -1.875rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  padding: 1.0625rem 2.5rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}

.c-title3__ja::before, .c-title3__ja::after {
  content: "";
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  position: absolute;
  top: 0;
  border-top: 0.125rem solid;
}

.c-title3__ja::before {
  left: 0;
  border-left: 0.125rem solid;
}

.c-title3__ja::after {
  right: 0;
  border-right: 0.125rem solid;
}

.c-title3__ja-inner::before, .c-title3__ja-inner::after {
  content: "";
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  position: absolute;
  bottom: 0;
  border-bottom: 0.125rem solid;
}

.c-title3__ja-inner::before {
  left: 0;
  border-left: 0.125rem solid;
}

.c-title3__ja-inner::after {
  right: 0;
  border-right: 0.125rem solid;
}

.c-cta {
  position: fixed;
  top: calc(var(--header-height) + 1.25rem);
  left: calc(50% + 8.125rem);
  z-index: 10;
  width: 12.5rem;
  height: 12.5rem;
  border-radius: 50%;
  background: var(--sub-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-filter: drop-shadow(0.25rem 0.25rem 0px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0.25rem 0.25rem 0px rgba(0, 0, 0, 0.25));
}

@media (max-width: 767px) {
  .c-cta {
    width: 11.25rem;
    height: 11.25rem;
    border-radius: 50%;
    top: calc(var(--header-height) + 1.575rem);
    left: auto;
    right: 0.625rem;
  }
}
.c-cta__text1 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0.05rem;
  border-top: 0.0625rem solid;
  border-bottom: 0.0625rem solid;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

@media (max-width: 767px) {
  .c-cta__text1 {
    margin-top: 0.8rem;
    font-size: 1.25rem;
  }
}
.c-cta__text2 {
  margin-top: 0.21875rem;
  font-size: 1.6875rem;
  font-weight: 700;
  letter-spacing: 0.0675rem;
  line-height: 1.22;
}

@media (max-width: 767px) {
  .c-cta__text2 {
    font-size: 1.6875rem;
  }
}
.c-cta__text3 {
  margin-top: 1.0625rem;
  font-size: 1rem;
  line-height: 1.22;
  font-weight: 700;
}

@media (max-width: 767px) {
  .c-cta__text3 {
    margin-top: 0.597rem;
    font-size: 1rem;
  }
}
.p-fv {
  position: relative;
}

.p-fv__bg {
  width: 100%;
}

.p-fv__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.25rem 1.5625rem 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-fv__heading {
  color: #fff;
  max-width: 25rem;
}

@media (max-width: 767px) {
  .p-fv__heading {
    max-width: 23.8rem;
  }
}
.p-fv__heading-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
}

@media (max-width: 767px) {
  .p-fv__heading-title {
    font-size: 2.375rem;
  }
}
.p-fv__heading-title strong {
  font-size: 5rem;
  line-height: 1.3;
}

@media (max-width: 767px) {
  .p-fv__heading-title strong {
    font-size: 4.75rem;
  }
}
.p-fv__heading-title span {
  display: block;
  font-size: 2.75rem;
  line-height: 1.3;
}

.p-fv__heading-text {
  margin-top: 0.125rem;
  font-size: 1.25rem;
  line-height: 1.6;
}

.p-fv__text {
  margin-top: 4.9375rem;
  margin-left: 0.9375rem;
}

.p-fv__text img {
  width: 11.875rem;
}

.p-fv__box {
  margin-top: auto;
  margin-bottom: 0;
  background: #fff;
  border-radius: 0.75rem;
  -webkit-box-shadow: 0px 0.25rem 0.625rem 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0.25rem 0.625rem 0px rgba(0, 0, 0, 0.25);
  padding: 1.25rem 1.625rem;
  width: 32.5rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.p-fv__box-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.p-fv__box-title small {
  display: block;
  font-size: 1.5625rem;
  letter-spacing: 0.0625rem;
}

.p-fv__dlist-title {
  margin-top: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.78125rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  line-height: 1.8;
}

.p-fv__dlist-title::before, .p-fv__dlist-title::after {
  content: "";
  height: 0.125rem;
  width: 0.0625rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background: currentColor;
}

.p-fv__dlist-text {
  margin-top: 0.5rem;
}

.p-fv__schedule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}

.p-fv__schedule-title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.25rem;
  color: #fff;
  background: var(--main-color);
  padding: 0.625rem 0.46875rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  line-height: 1;
}

.p-sidebar {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 37.5rem;
}

.p-sidebar__logo {
  padding-top: 10rem;
}

.p-sidebar__logo img {
  width: 10.4375rem;
}

.p-sidebar__title {
  margin-top: 1.625rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.1;
}

.p-sidebar__title strong {
  margin-top: 0.25rem;
  display: block;
  font-size: 3.3125rem;
}

.p-sidebar__title span {
  font-size: 2.5rem;
}

.p-sidebar__button-list {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.p-sidebar__button-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0.66875rem;
  height: 3.3125rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  width: 16.35625rem;
}

.p-sidebar__button-link--pdf {
  background: var(--main-color);
  color: #fff;
}

.p-sidebar__button-link--apply {
  background: var(--bg-gradient);
  color: var(--main-color);
}

.p-sidebar__sns-list {
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.3125rem;
}

.p-sidebar__sns-link {
  width: 2.375rem;
}

.p-sidebar__menu-title {
  margin-top: 13.0625rem;
  font-size: 2.8125rem;
  font-weight: 700;
  line-height: 1.3;
}

.p-sidebar__menu-list {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}

.p-sidebar__menu-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05625rem;
}

.p-sidebar__menu-link::after {
  content: "";
  margin-top: 0.1em;
  width: 1.5625rem;
  height: 0.625rem;
  background: url(../img/icon_half-arrow_right.svg) center/contain no-repeat;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-sidebar__menu-link:hover {
  opacity: 1;
}

.p-sidebar__menu-link:hover::after {
  -webkit-transform: translateX(0.3125rem);
          transform: translateX(0.3125rem);
}

.p-about-senbatsu {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}

.p-about-senbatsu__box {
  border-radius: 0.75rem;
  background: #d4e6f2;
  padding: 2.5rem;
  display: grid;
  gap: 2.5rem;
}

.p-about-senbatsu__text {
  text-align: center;
  color: #202020;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05rem;
}

.p-about-shutsugan {
  padding-bottom: 7.5rem;
}

.p-about-shutsugan__title {
  margin-top: 3.75rem;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.75rem 0 0.75rem 0.75rem;
  border-top: 0.125rem solid;
  position: relative;
  margin-bottom: 0.846875rem;
}

.p-about-shutsugan__title span {
  color: #3bddd9;
  font-size: 2.25rem;
  font-weight: 600;
  margin-right: 0.75rem;
  vertical-align: sub;
  font-style: italic;
}

.p-about-shutsugan__title::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 518/16;
  background-image: url(../img/shutsugan_title_bottom-line.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 100%;
  left: 0;
}

.p-about-shutsugan__box {
  margin-top: 2.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  gap: 1.25rem;
}

.p-about-shutsugan__text {
  color: #202020;
  text-align: justify;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  width: 21.25rem;
}

.p-about-shutsugan__text small {
  font-size: 0.8125rem;
  display: block;
  margin-top: 0.75rem;
}

.p-about-shutsugan__icon {
  width: 7.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-about-shutsugan__contact {
  padding: 2.5rem;
  background: #f5f5f5;
}

.p-about-shutsugan__contact-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
  padding-bottom: 1.25rem;
  border-bottom: 0.125rem solid;
}

.p-about-shutsugan__contact-list {
  margin-top: 2.5rem;
  display: grid;
  gap: 2.5rem;
}

.p-about-shutsugan__contact-item {
  padding-left: 1.5rem;
  color: #202020;
  position: relative;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.65;
}

.p-about-shutsugan__contact-item::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 2.125rem;
  background-image: url(../img/icon_dot.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

.p-about-shutsugan__contact-subtitle {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-about-shutsugan__contact-subtitle::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.75rem;
  background-image: url(../img/icon_dot-outline.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.p-about-shutsugan__contact-button {
  min-height: 4rem;
  margin-top: 1.25rem;
  border: 0.125rem solid;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.2;
}

.p-about-shutsugan__contact-button::after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  background-image: url(../img/icon_arrow_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 0.5rem;
}

.p-about-shutsugan__contact-img-link {
  display: block;
  margin-top: 0.75rem;
}

.p-narrow-section {
  padding-bottom: 3.75rem;
  overflow: hidden;
}

.p-narrow-section__inner {
  margin-left: 2.5rem;
  border-top: 0.5rem solid var(--main-color);
  background: #e9f3f9;
  padding: 1.875rem 1.25rem 3.75rem;
}

.p-narrow-section__box {
  margin-top: 3.75rem;
  border-radius: 0.75rem;
  background: #fff;
  padding: 2.5rem;
  position: relative;
}

.p-narrow-section__number {
  position: absolute;
  font-size: 4.5rem;
  color: #fff;
  font-style: italic;
  letter-spacing: 0.18rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 400;
  width: 7.5rem;
  height: 8rem;
  border-radius: 0px 1rem 1rem 0px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(31, 221, 172, 0.3)), to(rgba(59, 221, 217, 0.3)));
  background: linear-gradient(90deg, rgba(31, 221, 172, 0.3) 0%, rgba(59, 221, 217, 0.3) 100%);
  left: -3.75rem;
  top: -2.2275rem;
}

.p-narrow-section__title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.07rem;
  margin-bottom: 1.25rem;
}

.p-narrow-section__text {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.05rem;
}

.p-narrow-section__img {
  margin-top: 1.25rem;
  text-align: center;
}

.p-narrow-section__img-caption {
  margin-top: 0.625rem;
  color: #202020;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.075rem;
}

.p-narrow-section__video {
  margin-top: 1.25rem;
  aspect-ratio: 440/249.45;
}

.p-narrow-section__video iframe {
  width: 100%;
  height: 100%;
}

.p-narrow-section--fit-left .p-narrow-section__inner {
  margin-left: 0;
  margin-right: 2.5rem;
}

.p-narrow-section--fit-left .p-narrow-section__number {
  left: auto;
  right: -3.75rem;
  border-radius: 1rem 0px 0px 1rem;
}

.p-next-schedule {
  background: #d4e6f2;
  padding-bottom: 3.75rem;
}

.p-next-schedule__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 0.125rem solid;
  background: #fff;
  color: #202020;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 1.25rem 0.75rem;
}

.p-next-schedule__button::after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/icon_arrow_right.svg) no-repeat center center/contain;
}

.p-preparation {
  padding-bottom: 4.5rem;
}

.p-preparation__inner {
  max-width: 27.5rem;
  margin: 0 auto;
}

.p-preparation__text {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.65;
}

.p-preparation__list {
  display: grid;
  gap: 1.5rem;
}

.p-preparation__item-text {
  text-align: center;
  background: var(--main-color);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 1.25rem 0.625rem;
}

.p-preparation__icon {
  display: block;
  margin: 0 auto;
  width: 3.4375rem;
  margin-bottom: 1.5rem;
}

.p-preparation__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0.125rem solid var(--main-color);
  color: #202020;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 1.25rem 0.625rem;
}

/*=======================
display
=======================*/
.u-d-none {
  display: none !important;
}

@media (min-width: 768px) {
  .u-d-md-none {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .u-d-sm-none {
    display: none !important;
  }
}
.u-bg-main {
  background: var(--main-color);
}

.u-bg-main-light {
  background: var(--main-color) -light;
}

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

.u-mr-0 {
  margin-right: 0rem !important;
}

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

.u-ml-0 {
  margin-left: 0rem !important;
}

.u-my-0 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

.u-mx-0 {
  margin-left: 0rem !important;
  margin-right: 0rem !important;
}

@media (max-width: 767px) {
  .u-mt-sm-0 {
    margin-top: 0rem !important;
  }
  .u-mr-sm-0 {
    margin-right: 0rem !important;
  }
  .u-mb-sm-0 {
    margin-bottom: 0rem !important;
  }
  .u-ml-sm-0 {
    margin-left: 0rem !important;
  }
  .u-my-sm-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
  .u-mx-sm-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
}
@media (min-width: 768px) {
  .u-mt-md-0 {
    margin-top: 0rem !important;
  }
  .u-mr-md-0 {
    margin-right: 0rem !important;
  }
  .u-mb-md-0 {
    margin-bottom: 0rem !important;
  }
  .u-ml-md-0 {
    margin-left: 0rem !important;
  }
  .u-my-md-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
  .u-mx-md-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
}
.u-mt-1 {
  margin-top: 0.5rem !important;
}

.u-mr-1 {
  margin-right: 0.5rem !important;
}

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

.u-ml-1 {
  margin-left: 0.5rem !important;
}

.u-my-1 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.u-mx-1 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

@media (max-width: 767px) {
  .u-mt-sm-1 {
    margin-top: 0.5rem !important;
  }
  .u-mr-sm-1 {
    margin-right: 0.5rem !important;
  }
  .u-mb-sm-1 {
    margin-bottom: 0.5rem !important;
  }
  .u-ml-sm-1 {
    margin-left: 0.5rem !important;
  }
  .u-my-sm-1 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .u-mx-sm-1 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
}
@media (min-width: 768px) {
  .u-mt-md-1 {
    margin-top: 0.5rem !important;
  }
  .u-mr-md-1 {
    margin-right: 0.5rem !important;
  }
  .u-mb-md-1 {
    margin-bottom: 0.5rem !important;
  }
  .u-ml-md-1 {
    margin-left: 0.5rem !important;
  }
  .u-my-md-1 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .u-mx-md-1 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
}
.u-mt-2 {
  margin-top: 1rem !important;
}

.u-mr-2 {
  margin-right: 1rem !important;
}

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

.u-ml-2 {
  margin-left: 1rem !important;
}

.u-my-2 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.u-mx-2 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

@media (max-width: 767px) {
  .u-mt-sm-2 {
    margin-top: 1rem !important;
  }
  .u-mr-sm-2 {
    margin-right: 1rem !important;
  }
  .u-mb-sm-2 {
    margin-bottom: 1rem !important;
  }
  .u-ml-sm-2 {
    margin-left: 1rem !important;
  }
  .u-my-sm-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .u-mx-sm-2 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
@media (min-width: 768px) {
  .u-mt-md-2 {
    margin-top: 1rem !important;
  }
  .u-mr-md-2 {
    margin-right: 1rem !important;
  }
  .u-mb-md-2 {
    margin-bottom: 1rem !important;
  }
  .u-ml-md-2 {
    margin-left: 1rem !important;
  }
  .u-my-md-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .u-mx-md-2 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.u-mt-3 {
  margin-top: 1.5rem !important;
}

.u-mr-3 {
  margin-right: 1.5rem !important;
}

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

.u-ml-3 {
  margin-left: 1.5rem !important;
}

.u-my-3 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.u-mx-3 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

@media (max-width: 767px) {
  .u-mt-sm-3 {
    margin-top: 1.5rem !important;
  }
  .u-mr-sm-3 {
    margin-right: 1.5rem !important;
  }
  .u-mb-sm-3 {
    margin-bottom: 1.5rem !important;
  }
  .u-ml-sm-3 {
    margin-left: 1.5rem !important;
  }
  .u-my-sm-3 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .u-mx-sm-3 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
}
@media (min-width: 768px) {
  .u-mt-md-3 {
    margin-top: 1.5rem !important;
  }
  .u-mr-md-3 {
    margin-right: 1.5rem !important;
  }
  .u-mb-md-3 {
    margin-bottom: 1.5rem !important;
  }
  .u-ml-md-3 {
    margin-left: 1.5rem !important;
  }
  .u-my-md-3 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .u-mx-md-3 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
}
.u-mt-4 {
  margin-top: 2rem !important;
}

.u-mr-4 {
  margin-right: 2rem !important;
}

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

.u-ml-4 {
  margin-left: 2rem !important;
}

.u-my-4 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.u-mx-4 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

@media (max-width: 767px) {
  .u-mt-sm-4 {
    margin-top: 2rem !important;
  }
  .u-mr-sm-4 {
    margin-right: 2rem !important;
  }
  .u-mb-sm-4 {
    margin-bottom: 2rem !important;
  }
  .u-ml-sm-4 {
    margin-left: 2rem !important;
  }
  .u-my-sm-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .u-mx-sm-4 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
}
@media (min-width: 768px) {
  .u-mt-md-4 {
    margin-top: 2rem !important;
  }
  .u-mr-md-4 {
    margin-right: 2rem !important;
  }
  .u-mb-md-4 {
    margin-bottom: 2rem !important;
  }
  .u-ml-md-4 {
    margin-left: 2rem !important;
  }
  .u-my-md-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .u-mx-md-4 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
}
.u-mt-5 {
  margin-top: 2.5rem !important;
}

.u-mr-5 {
  margin-right: 2.5rem !important;
}

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

.u-ml-5 {
  margin-left: 2.5rem !important;
}

.u-my-5 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.u-mx-5 {
  margin-left: 2.5rem !important;
  margin-right: 2.5rem !important;
}

@media (max-width: 767px) {
  .u-mt-sm-5 {
    margin-top: 2.5rem !important;
  }
  .u-mr-sm-5 {
    margin-right: 2.5rem !important;
  }
  .u-mb-sm-5 {
    margin-bottom: 2.5rem !important;
  }
  .u-ml-sm-5 {
    margin-left: 2.5rem !important;
  }
  .u-my-sm-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .u-mx-sm-5 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
}
@media (min-width: 768px) {
  .u-mt-md-5 {
    margin-top: 2.5rem !important;
  }
  .u-mr-md-5 {
    margin-right: 2.5rem !important;
  }
  .u-mb-md-5 {
    margin-bottom: 2.5rem !important;
  }
  .u-ml-md-5 {
    margin-left: 2.5rem !important;
  }
  .u-my-md-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .u-mx-md-5 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
}
.u-mt-6 {
  margin-top: 3rem !important;
}

.u-mr-6 {
  margin-right: 3rem !important;
}

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

.u-ml-6 {
  margin-left: 3rem !important;
}

.u-my-6 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.u-mx-6 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

@media (max-width: 767px) {
  .u-mt-sm-6 {
    margin-top: 3rem !important;
  }
  .u-mr-sm-6 {
    margin-right: 3rem !important;
  }
  .u-mb-sm-6 {
    margin-bottom: 3rem !important;
  }
  .u-ml-sm-6 {
    margin-left: 3rem !important;
  }
  .u-my-sm-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .u-mx-sm-6 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
}
@media (min-width: 768px) {
  .u-mt-md-6 {
    margin-top: 3rem !important;
  }
  .u-mr-md-6 {
    margin-right: 3rem !important;
  }
  .u-mb-md-6 {
    margin-bottom: 3rem !important;
  }
  .u-ml-md-6 {
    margin-left: 3rem !important;
  }
  .u-my-md-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .u-mx-md-6 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
}
.u-mt-7 {
  margin-top: 3.5rem !important;
}

.u-mr-7 {
  margin-right: 3.5rem !important;
}

.u-mb-7 {
  margin-bottom: 3.5rem !important;
}

.u-ml-7 {
  margin-left: 3.5rem !important;
}

.u-my-7 {
  margin-top: 3.5rem !important;
  margin-bottom: 3.5rem !important;
}

.u-mx-7 {
  margin-left: 3.5rem !important;
  margin-right: 3.5rem !important;
}

@media (max-width: 767px) {
  .u-mt-sm-7 {
    margin-top: 3.5rem !important;
  }
  .u-mr-sm-7 {
    margin-right: 3.5rem !important;
  }
  .u-mb-sm-7 {
    margin-bottom: 3.5rem !important;
  }
  .u-ml-sm-7 {
    margin-left: 3.5rem !important;
  }
  .u-my-sm-7 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .u-mx-sm-7 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }
}
@media (min-width: 768px) {
  .u-mt-md-7 {
    margin-top: 3.5rem !important;
  }
  .u-mr-md-7 {
    margin-right: 3.5rem !important;
  }
  .u-mb-md-7 {
    margin-bottom: 3.5rem !important;
  }
  .u-ml-md-7 {
    margin-left: 3.5rem !important;
  }
  .u-my-md-7 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .u-mx-md-7 {
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }
}
.u-mt-8 {
  margin-top: 4rem !important;
}

.u-mr-8 {
  margin-right: 4rem !important;
}

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

.u-ml-8 {
  margin-left: 4rem !important;
}

.u-my-8 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.u-mx-8 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

@media (max-width: 767px) {
  .u-mt-sm-8 {
    margin-top: 4rem !important;
  }
  .u-mr-sm-8 {
    margin-right: 4rem !important;
  }
  .u-mb-sm-8 {
    margin-bottom: 4rem !important;
  }
  .u-ml-sm-8 {
    margin-left: 4rem !important;
  }
  .u-my-sm-8 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .u-mx-sm-8 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
}
@media (min-width: 768px) {
  .u-mt-md-8 {
    margin-top: 4rem !important;
  }
  .u-mr-md-8 {
    margin-right: 4rem !important;
  }
  .u-mb-md-8 {
    margin-bottom: 4rem !important;
  }
  .u-ml-md-8 {
    margin-left: 4rem !important;
  }
  .u-my-md-8 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .u-mx-md-8 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }
}
.u-mt-9 {
  margin-top: 4.5rem !important;
}

.u-mr-9 {
  margin-right: 4.5rem !important;
}

.u-mb-9 {
  margin-bottom: 4.5rem !important;
}

.u-ml-9 {
  margin-left: 4.5rem !important;
}

.u-my-9 {
  margin-top: 4.5rem !important;
  margin-bottom: 4.5rem !important;
}

.u-mx-9 {
  margin-left: 4.5rem !important;
  margin-right: 4.5rem !important;
}

@media (max-width: 767px) {
  .u-mt-sm-9 {
    margin-top: 4.5rem !important;
  }
  .u-mr-sm-9 {
    margin-right: 4.5rem !important;
  }
  .u-mb-sm-9 {
    margin-bottom: 4.5rem !important;
  }
  .u-ml-sm-9 {
    margin-left: 4.5rem !important;
  }
  .u-my-sm-9 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .u-mx-sm-9 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }
}
@media (min-width: 768px) {
  .u-mt-md-9 {
    margin-top: 4.5rem !important;
  }
  .u-mr-md-9 {
    margin-right: 4.5rem !important;
  }
  .u-mb-md-9 {
    margin-bottom: 4.5rem !important;
  }
  .u-ml-md-9 {
    margin-left: 4.5rem !important;
  }
  .u-my-md-9 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .u-mx-md-9 {
    margin-left: 4.5rem !important;
    margin-right: 4.5rem !important;
  }
}
.u-mt-10 {
  margin-top: 5rem !important;
}

.u-mr-10 {
  margin-right: 5rem !important;
}

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

.u-ml-10 {
  margin-left: 5rem !important;
}

.u-my-10 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.u-mx-10 {
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}

@media (max-width: 767px) {
  .u-mt-sm-10 {
    margin-top: 5rem !important;
  }
  .u-mr-sm-10 {
    margin-right: 5rem !important;
  }
  .u-mb-sm-10 {
    margin-bottom: 5rem !important;
  }
  .u-ml-sm-10 {
    margin-left: 5rem !important;
  }
  .u-my-sm-10 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .u-mx-sm-10 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
}
@media (min-width: 768px) {
  .u-mt-md-10 {
    margin-top: 5rem !important;
  }
  .u-mr-md-10 {
    margin-right: 5rem !important;
  }
  .u-mb-md-10 {
    margin-bottom: 5rem !important;
  }
  .u-ml-md-10 {
    margin-left: 5rem !important;
  }
  .u-my-md-10 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .u-mx-md-10 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }
}
.u-mt-11 {
  margin-top: 5.5rem !important;
}

.u-mr-11 {
  margin-right: 5.5rem !important;
}

.u-mb-11 {
  margin-bottom: 5.5rem !important;
}

.u-ml-11 {
  margin-left: 5.5rem !important;
}

.u-my-11 {
  margin-top: 5.5rem !important;
  margin-bottom: 5.5rem !important;
}

.u-mx-11 {
  margin-left: 5.5rem !important;
  margin-right: 5.5rem !important;
}

@media (max-width: 767px) {
  .u-mt-sm-11 {
    margin-top: 5.5rem !important;
  }
  .u-mr-sm-11 {
    margin-right: 5.5rem !important;
  }
  .u-mb-sm-11 {
    margin-bottom: 5.5rem !important;
  }
  .u-ml-sm-11 {
    margin-left: 5.5rem !important;
  }
  .u-my-sm-11 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }
  .u-mx-sm-11 {
    margin-left: 5.5rem !important;
    margin-right: 5.5rem !important;
  }
}
@media (min-width: 768px) {
  .u-mt-md-11 {
    margin-top: 5.5rem !important;
  }
  .u-mr-md-11 {
    margin-right: 5.5rem !important;
  }
  .u-mb-md-11 {
    margin-bottom: 5.5rem !important;
  }
  .u-ml-md-11 {
    margin-left: 5.5rem !important;
  }
  .u-my-md-11 {
    margin-top: 5.5rem !important;
    margin-bottom: 5.5rem !important;
  }
  .u-mx-md-11 {
    margin-left: 5.5rem !important;
    margin-right: 5.5rem !important;
  }
}
.u-mt-12 {
  margin-top: 6rem !important;
}

.u-mr-12 {
  margin-right: 6rem !important;
}

.u-mb-12 {
  margin-bottom: 6rem !important;
}

.u-ml-12 {
  margin-left: 6rem !important;
}

.u-my-12 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

.u-mx-12 {
  margin-left: 6rem !important;
  margin-right: 6rem !important;
}

@media (max-width: 767px) {
  .u-mt-sm-12 {
    margin-top: 6rem !important;
  }
  .u-mr-sm-12 {
    margin-right: 6rem !important;
  }
  .u-mb-sm-12 {
    margin-bottom: 6rem !important;
  }
  .u-ml-sm-12 {
    margin-left: 6rem !important;
  }
  .u-my-sm-12 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .u-mx-sm-12 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
}
@media (min-width: 768px) {
  .u-mt-md-12 {
    margin-top: 6rem !important;
  }
  .u-mr-md-12 {
    margin-right: 6rem !important;
  }
  .u-mb-md-12 {
    margin-bottom: 6rem !important;
  }
  .u-ml-md-12 {
    margin-left: 6rem !important;
  }
  .u-my-md-12 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .u-mx-md-12 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }
}
.u-mt-13 {
  margin-top: 6.5rem !important;
}

.u-mr-13 {
  margin-right: 6.5rem !important;
}

.u-mb-13 {
  margin-bottom: 6.5rem !important;
}

.u-ml-13 {
  margin-left: 6.5rem !important;
}

.u-my-13 {
  margin-top: 6.5rem !important;
  margin-bottom: 6.5rem !important;
}

.u-mx-13 {
  margin-left: 6.5rem !important;
  margin-right: 6.5rem !important;
}

@media (max-width: 767px) {
  .u-mt-sm-13 {
    margin-top: 6.5rem !important;
  }
  .u-mr-sm-13 {
    margin-right: 6.5rem !important;
  }
  .u-mb-sm-13 {
    margin-bottom: 6.5rem !important;
  }
  .u-ml-sm-13 {
    margin-left: 6.5rem !important;
  }
  .u-my-sm-13 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }
  .u-mx-sm-13 {
    margin-left: 6.5rem !important;
    margin-right: 6.5rem !important;
  }
}
@media (min-width: 768px) {
  .u-mt-md-13 {
    margin-top: 6.5rem !important;
  }
  .u-mr-md-13 {
    margin-right: 6.5rem !important;
  }
  .u-mb-md-13 {
    margin-bottom: 6.5rem !important;
  }
  .u-ml-md-13 {
    margin-left: 6.5rem !important;
  }
  .u-my-md-13 {
    margin-top: 6.5rem !important;
    margin-bottom: 6.5rem !important;
  }
  .u-mx-md-13 {
    margin-left: 6.5rem !important;
    margin-right: 6.5rem !important;
  }
}
.u-mt-14 {
  margin-top: 7rem !important;
}

.u-mr-14 {
  margin-right: 7rem !important;
}

.u-mb-14 {
  margin-bottom: 7rem !important;
}

.u-ml-14 {
  margin-left: 7rem !important;
}

.u-my-14 {
  margin-top: 7rem !important;
  margin-bottom: 7rem !important;
}

.u-mx-14 {
  margin-left: 7rem !important;
  margin-right: 7rem !important;
}

@media (max-width: 767px) {
  .u-mt-sm-14 {
    margin-top: 7rem !important;
  }
  .u-mr-sm-14 {
    margin-right: 7rem !important;
  }
  .u-mb-sm-14 {
    margin-bottom: 7rem !important;
  }
  .u-ml-sm-14 {
    margin-left: 7rem !important;
  }
  .u-my-sm-14 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .u-mx-sm-14 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
}
@media (min-width: 768px) {
  .u-mt-md-14 {
    margin-top: 7rem !important;
  }
  .u-mr-md-14 {
    margin-right: 7rem !important;
  }
  .u-mb-md-14 {
    margin-bottom: 7rem !important;
  }
  .u-ml-md-14 {
    margin-left: 7rem !important;
  }
  .u-my-md-14 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .u-mx-md-14 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }
}
.u-mt-15 {
  margin-top: 7.5rem !important;
}

.u-mr-15 {
  margin-right: 7.5rem !important;
}

.u-mb-15 {
  margin-bottom: 7.5rem !important;
}

.u-ml-15 {
  margin-left: 7.5rem !important;
}

.u-my-15 {
  margin-top: 7.5rem !important;
  margin-bottom: 7.5rem !important;
}

.u-mx-15 {
  margin-left: 7.5rem !important;
  margin-right: 7.5rem !important;
}

@media (max-width: 767px) {
  .u-mt-sm-15 {
    margin-top: 7.5rem !important;
  }
  .u-mr-sm-15 {
    margin-right: 7.5rem !important;
  }
  .u-mb-sm-15 {
    margin-bottom: 7.5rem !important;
  }
  .u-ml-sm-15 {
    margin-left: 7.5rem !important;
  }
  .u-my-sm-15 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
  .u-mx-sm-15 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }
}
@media (min-width: 768px) {
  .u-mt-md-15 {
    margin-top: 7.5rem !important;
  }
  .u-mr-md-15 {
    margin-right: 7.5rem !important;
  }
  .u-mb-md-15 {
    margin-bottom: 7.5rem !important;
  }
  .u-ml-md-15 {
    margin-left: 7.5rem !important;
  }
  .u-my-md-15 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
  .u-mx-md-15 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }
}
.u-mt-16 {
  margin-top: 8rem !important;
}

.u-mr-16 {
  margin-right: 8rem !important;
}

.u-mb-16 {
  margin-bottom: 8rem !important;
}

.u-ml-16 {
  margin-left: 8rem !important;
}

.u-my-16 {
  margin-top: 8rem !important;
  margin-bottom: 8rem !important;
}

.u-mx-16 {
  margin-left: 8rem !important;
  margin-right: 8rem !important;
}

@media (max-width: 767px) {
  .u-mt-sm-16 {
    margin-top: 8rem !important;
  }
  .u-mr-sm-16 {
    margin-right: 8rem !important;
  }
  .u-mb-sm-16 {
    margin-bottom: 8rem !important;
  }
  .u-ml-sm-16 {
    margin-left: 8rem !important;
  }
  .u-my-sm-16 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .u-mx-sm-16 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
}
@media (min-width: 768px) {
  .u-mt-md-16 {
    margin-top: 8rem !important;
  }
  .u-mr-md-16 {
    margin-right: 8rem !important;
  }
  .u-mb-md-16 {
    margin-bottom: 8rem !important;
  }
  .u-ml-md-16 {
    margin-left: 8rem !important;
  }
  .u-my-md-16 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .u-mx-md-16 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }
}
.u-mt-17 {
  margin-top: 8.5rem !important;
}

.u-mr-17 {
  margin-right: 8.5rem !important;
}

.u-mb-17 {
  margin-bottom: 8.5rem !important;
}

.u-ml-17 {
  margin-left: 8.5rem !important;
}

.u-my-17 {
  margin-top: 8.5rem !important;
  margin-bottom: 8.5rem !important;
}

.u-mx-17 {
  margin-left: 8.5rem !important;
  margin-right: 8.5rem !important;
}

@media (max-width: 767px) {
  .u-mt-sm-17 {
    margin-top: 8.5rem !important;
  }
  .u-mr-sm-17 {
    margin-right: 8.5rem !important;
  }
  .u-mb-sm-17 {
    margin-bottom: 8.5rem !important;
  }
  .u-ml-sm-17 {
    margin-left: 8.5rem !important;
  }
  .u-my-sm-17 {
    margin-top: 8.5rem !important;
    margin-bottom: 8.5rem !important;
  }
  .u-mx-sm-17 {
    margin-left: 8.5rem !important;
    margin-right: 8.5rem !important;
  }
}
@media (min-width: 768px) {
  .u-mt-md-17 {
    margin-top: 8.5rem !important;
  }
  .u-mr-md-17 {
    margin-right: 8.5rem !important;
  }
  .u-mb-md-17 {
    margin-bottom: 8.5rem !important;
  }
  .u-ml-md-17 {
    margin-left: 8.5rem !important;
  }
  .u-my-md-17 {
    margin-top: 8.5rem !important;
    margin-bottom: 8.5rem !important;
  }
  .u-mx-md-17 {
    margin-left: 8.5rem !important;
    margin-right: 8.5rem !important;
  }
}
.u-mt-18 {
  margin-top: 9rem !important;
}

.u-mr-18 {
  margin-right: 9rem !important;
}

.u-mb-18 {
  margin-bottom: 9rem !important;
}

.u-ml-18 {
  margin-left: 9rem !important;
}

.u-my-18 {
  margin-top: 9rem !important;
  margin-bottom: 9rem !important;
}

.u-mx-18 {
  margin-left: 9rem !important;
  margin-right: 9rem !important;
}

@media (max-width: 767px) {
  .u-mt-sm-18 {
    margin-top: 9rem !important;
  }
  .u-mr-sm-18 {
    margin-right: 9rem !important;
  }
  .u-mb-sm-18 {
    margin-bottom: 9rem !important;
  }
  .u-ml-sm-18 {
    margin-left: 9rem !important;
  }
  .u-my-sm-18 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .u-mx-sm-18 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }
}
@media (min-width: 768px) {
  .u-mt-md-18 {
    margin-top: 9rem !important;
  }
  .u-mr-md-18 {
    margin-right: 9rem !important;
  }
  .u-mb-md-18 {
    margin-bottom: 9rem !important;
  }
  .u-ml-md-18 {
    margin-left: 9rem !important;
  }
  .u-my-md-18 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .u-mx-md-18 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }
}
.u-mt-19 {
  margin-top: 9.5rem !important;
}

.u-mr-19 {
  margin-right: 9.5rem !important;
}

.u-mb-19 {
  margin-bottom: 9.5rem !important;
}

.u-ml-19 {
  margin-left: 9.5rem !important;
}

.u-my-19 {
  margin-top: 9.5rem !important;
  margin-bottom: 9.5rem !important;
}

.u-mx-19 {
  margin-left: 9.5rem !important;
  margin-right: 9.5rem !important;
}

@media (max-width: 767px) {
  .u-mt-sm-19 {
    margin-top: 9.5rem !important;
  }
  .u-mr-sm-19 {
    margin-right: 9.5rem !important;
  }
  .u-mb-sm-19 {
    margin-bottom: 9.5rem !important;
  }
  .u-ml-sm-19 {
    margin-left: 9.5rem !important;
  }
  .u-my-sm-19 {
    margin-top: 9.5rem !important;
    margin-bottom: 9.5rem !important;
  }
  .u-mx-sm-19 {
    margin-left: 9.5rem !important;
    margin-right: 9.5rem !important;
  }
}
@media (min-width: 768px) {
  .u-mt-md-19 {
    margin-top: 9.5rem !important;
  }
  .u-mr-md-19 {
    margin-right: 9.5rem !important;
  }
  .u-mb-md-19 {
    margin-bottom: 9.5rem !important;
  }
  .u-ml-md-19 {
    margin-left: 9.5rem !important;
  }
  .u-my-md-19 {
    margin-top: 9.5rem !important;
    margin-bottom: 9.5rem !important;
  }
  .u-mx-md-19 {
    margin-left: 9.5rem !important;
    margin-right: 9.5rem !important;
  }
}
.u-mt-20 {
  margin-top: 10rem !important;
}

.u-mr-20 {
  margin-right: 10rem !important;
}

.u-mb-20 {
  margin-bottom: 10rem !important;
}

.u-ml-20 {
  margin-left: 10rem !important;
}

.u-my-20 {
  margin-top: 10rem !important;
  margin-bottom: 10rem !important;
}

.u-mx-20 {
  margin-left: 10rem !important;
  margin-right: 10rem !important;
}

@media (max-width: 767px) {
  .u-mt-sm-20 {
    margin-top: 10rem !important;
  }
  .u-mr-sm-20 {
    margin-right: 10rem !important;
  }
  .u-mb-sm-20 {
    margin-bottom: 10rem !important;
  }
  .u-ml-sm-20 {
    margin-left: 10rem !important;
  }
  .u-my-sm-20 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .u-mx-sm-20 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
}
@media (min-width: 768px) {
  .u-mt-md-20 {
    margin-top: 10rem !important;
  }
  .u-mr-md-20 {
    margin-right: 10rem !important;
  }
  .u-mb-md-20 {
    margin-bottom: 10rem !important;
  }
  .u-ml-md-20 {
    margin-left: 10rem !important;
  }
  .u-my-md-20 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .u-mx-md-20 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }
}
.u-py-default {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (max-width: 767px) {
  .u-py-default {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}
.u-pt-0 {
  padding-top: 0rem !important;
}

.u-pr-0 {
  padding-right: 0rem !important;
}

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

.u-pl-0 {
  padding-left: 0rem !important;
}

.u-py-0 {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}

.u-px-0 {
  padding-left: 0rem !important;
  padding-right: 0rem !important;
}

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

.u-pr-1 {
  padding-right: 0.5rem !important;
}

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

.u-pl-1 {
  padding-left: 0.5rem !important;
}

.u-py-1 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.u-px-1 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

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

.u-pr-2 {
  padding-right: 1rem !important;
}

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

.u-pl-2 {
  padding-left: 1rem !important;
}

.u-py-2 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.u-px-2 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

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

.u-pr-3 {
  padding-right: 1.5rem !important;
}

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

.u-pl-3 {
  padding-left: 1.5rem !important;
}

.u-py-3 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.u-px-3 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

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

.u-pr-4 {
  padding-right: 2rem !important;
}

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

.u-pl-4 {
  padding-left: 2rem !important;
}

.u-py-4 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.u-px-4 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

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

.u-pr-5 {
  padding-right: 2.5rem !important;
}

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

.u-pl-5 {
  padding-left: 2.5rem !important;
}

.u-py-5 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.u-px-5 {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}

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

.u-pr-6 {
  padding-right: 3rem !important;
}

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

.u-pl-6 {
  padding-left: 3rem !important;
}

.u-py-6 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.u-px-6 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.u-pt-7 {
  padding-top: 3.5rem !important;
}

.u-pr-7 {
  padding-right: 3.5rem !important;
}

.u-pb-7 {
  padding-bottom: 3.5rem !important;
}

.u-pl-7 {
  padding-left: 3.5rem !important;
}

.u-py-7 {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

.u-px-7 {
  padding-left: 3.5rem !important;
  padding-right: 3.5rem !important;
}

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

.u-pr-8 {
  padding-right: 4rem !important;
}

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

.u-pl-8 {
  padding-left: 4rem !important;
}

.u-py-8 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.u-px-8 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.u-pt-9 {
  padding-top: 4.5rem !important;
}

.u-pr-9 {
  padding-right: 4.5rem !important;
}

.u-pb-9 {
  padding-bottom: 4.5rem !important;
}

.u-pl-9 {
  padding-left: 4.5rem !important;
}

.u-py-9 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

.u-px-9 {
  padding-left: 4.5rem !important;
  padding-right: 4.5rem !important;
}

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

.u-pr-10 {
  padding-right: 5rem !important;
}

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

.u-pl-10 {
  padding-left: 5rem !important;
}

.u-py-10 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.u-px-10 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.u-pt-11 {
  padding-top: 5.5rem !important;
}

.u-pr-11 {
  padding-right: 5.5rem !important;
}

.u-pb-11 {
  padding-bottom: 5.5rem !important;
}

.u-pl-11 {
  padding-left: 5.5rem !important;
}

.u-py-11 {
  padding-top: 5.5rem !important;
  padding-bottom: 5.5rem !important;
}

.u-px-11 {
  padding-left: 5.5rem !important;
  padding-right: 5.5rem !important;
}

.u-pt-12 {
  padding-top: 6rem !important;
}

.u-pr-12 {
  padding-right: 6rem !important;
}

.u-pb-12 {
  padding-bottom: 6rem !important;
}

.u-pl-12 {
  padding-left: 6rem !important;
}

.u-py-12 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.u-px-12 {
  padding-left: 6rem !important;
  padding-right: 6rem !important;
}

.u-pt-13 {
  padding-top: 6.5rem !important;
}

.u-pr-13 {
  padding-right: 6.5rem !important;
}

.u-pb-13 {
  padding-bottom: 6.5rem !important;
}

.u-pl-13 {
  padding-left: 6.5rem !important;
}

.u-py-13 {
  padding-top: 6.5rem !important;
  padding-bottom: 6.5rem !important;
}

.u-px-13 {
  padding-left: 6.5rem !important;
  padding-right: 6.5rem !important;
}

.u-pt-14 {
  padding-top: 7rem !important;
}

.u-pr-14 {
  padding-right: 7rem !important;
}

.u-pb-14 {
  padding-bottom: 7rem !important;
}

.u-pl-14 {
  padding-left: 7rem !important;
}

.u-py-14 {
  padding-top: 7rem !important;
  padding-bottom: 7rem !important;
}

.u-px-14 {
  padding-left: 7rem !important;
  padding-right: 7rem !important;
}

.u-pt-15 {
  padding-top: 7.5rem !important;
}

.u-pr-15 {
  padding-right: 7.5rem !important;
}

.u-pb-15 {
  padding-bottom: 7.5rem !important;
}

.u-pl-15 {
  padding-left: 7.5rem !important;
}

.u-py-15 {
  padding-top: 7.5rem !important;
  padding-bottom: 7.5rem !important;
}

.u-px-15 {
  padding-left: 7.5rem !important;
  padding-right: 7.5rem !important;
}

.u-pt-16 {
  padding-top: 8rem !important;
}

.u-pr-16 {
  padding-right: 8rem !important;
}

.u-pb-16 {
  padding-bottom: 8rem !important;
}

.u-pl-16 {
  padding-left: 8rem !important;
}

.u-py-16 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

.u-px-16 {
  padding-left: 8rem !important;
  padding-right: 8rem !important;
}

.u-pt-17 {
  padding-top: 8.5rem !important;
}

.u-pr-17 {
  padding-right: 8.5rem !important;
}

.u-pb-17 {
  padding-bottom: 8.5rem !important;
}

.u-pl-17 {
  padding-left: 8.5rem !important;
}

.u-py-17 {
  padding-top: 8.5rem !important;
  padding-bottom: 8.5rem !important;
}

.u-px-17 {
  padding-left: 8.5rem !important;
  padding-right: 8.5rem !important;
}

.u-pt-18 {
  padding-top: 9rem !important;
}

.u-pr-18 {
  padding-right: 9rem !important;
}

.u-pb-18 {
  padding-bottom: 9rem !important;
}

.u-pl-18 {
  padding-left: 9rem !important;
}

.u-py-18 {
  padding-top: 9rem !important;
  padding-bottom: 9rem !important;
}

.u-px-18 {
  padding-left: 9rem !important;
  padding-right: 9rem !important;
}

.u-pt-19 {
  padding-top: 9.5rem !important;
}

.u-pr-19 {
  padding-right: 9.5rem !important;
}

.u-pb-19 {
  padding-bottom: 9.5rem !important;
}

.u-pl-19 {
  padding-left: 9.5rem !important;
}

.u-py-19 {
  padding-top: 9.5rem !important;
  padding-bottom: 9.5rem !important;
}

.u-px-19 {
  padding-left: 9.5rem !important;
  padding-right: 9.5rem !important;
}

.u-pt-20 {
  padding-top: 10rem !important;
}

.u-pr-20 {
  padding-right: 10rem !important;
}

.u-pb-20 {
  padding-bottom: 10rem !important;
}

.u-pl-20 {
  padding-left: 10rem !important;
}

.u-py-20 {
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
}

.u-px-20 {
  padding-left: 10rem !important;
  padding-right: 10rem !important;
}

@media (min-width: 768px) {
  .u-pt-md-0 {
    padding-top: 0rem !important;
  }
  .u-pr-md-0 {
    padding-right: 0rem !important;
  }
  .u-pb-md-0 {
    padding-bottom: 0rem !important;
  }
  .u-pl-md-0 {
    padding-left: 0rem !important;
  }
  .u-py-md-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .u-px-md-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .u-pt-md-1 {
    padding-top: 0.5rem !important;
  }
  .u-pr-md-1 {
    padding-right: 0.5rem !important;
  }
  .u-pb-md-1 {
    padding-bottom: 0.5rem !important;
  }
  .u-pl-md-1 {
    padding-left: 0.5rem !important;
  }
  .u-py-md-1 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .u-px-md-1 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .u-pt-md-2 {
    padding-top: 1rem !important;
  }
  .u-pr-md-2 {
    padding-right: 1rem !important;
  }
  .u-pb-md-2 {
    padding-bottom: 1rem !important;
  }
  .u-pl-md-2 {
    padding-left: 1rem !important;
  }
  .u-py-md-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .u-px-md-2 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .u-pt-md-3 {
    padding-top: 1.5rem !important;
  }
  .u-pr-md-3 {
    padding-right: 1.5rem !important;
  }
  .u-pb-md-3 {
    padding-bottom: 1.5rem !important;
  }
  .u-pl-md-3 {
    padding-left: 1.5rem !important;
  }
  .u-py-md-3 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .u-px-md-3 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .u-pt-md-4 {
    padding-top: 2rem !important;
  }
  .u-pr-md-4 {
    padding-right: 2rem !important;
  }
  .u-pb-md-4 {
    padding-bottom: 2rem !important;
  }
  .u-pl-md-4 {
    padding-left: 2rem !important;
  }
  .u-py-md-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .u-px-md-4 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .u-pt-md-5 {
    padding-top: 2.5rem !important;
  }
  .u-pr-md-5 {
    padding-right: 2.5rem !important;
  }
  .u-pb-md-5 {
    padding-bottom: 2.5rem !important;
  }
  .u-pl-md-5 {
    padding-left: 2.5rem !important;
  }
  .u-py-md-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .u-px-md-5 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .u-pt-md-6 {
    padding-top: 3rem !important;
  }
  .u-pr-md-6 {
    padding-right: 3rem !important;
  }
  .u-pb-md-6 {
    padding-bottom: 3rem !important;
  }
  .u-pl-md-6 {
    padding-left: 3rem !important;
  }
  .u-py-md-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .u-px-md-6 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .u-pt-md-7 {
    padding-top: 3.5rem !important;
  }
  .u-pr-md-7 {
    padding-right: 3.5rem !important;
  }
  .u-pb-md-7 {
    padding-bottom: 3.5rem !important;
  }
  .u-pl-md-7 {
    padding-left: 3.5rem !important;
  }
  .u-py-md-7 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .u-px-md-7 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }
  .u-pt-md-8 {
    padding-top: 4rem !important;
  }
  .u-pr-md-8 {
    padding-right: 4rem !important;
  }
  .u-pb-md-8 {
    padding-bottom: 4rem !important;
  }
  .u-pl-md-8 {
    padding-left: 4rem !important;
  }
  .u-py-md-8 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .u-px-md-8 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .u-pt-md-9 {
    padding-top: 4.5rem !important;
  }
  .u-pr-md-9 {
    padding-right: 4.5rem !important;
  }
  .u-pb-md-9 {
    padding-bottom: 4.5rem !important;
  }
  .u-pl-md-9 {
    padding-left: 4.5rem !important;
  }
  .u-py-md-9 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .u-px-md-9 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }
  .u-pt-md-10 {
    padding-top: 5rem !important;
  }
  .u-pr-md-10 {
    padding-right: 5rem !important;
  }
  .u-pb-md-10 {
    padding-bottom: 5rem !important;
  }
  .u-pl-md-10 {
    padding-left: 5rem !important;
  }
  .u-py-md-10 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .u-px-md-10 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .u-pt-md-11 {
    padding-top: 5.5rem !important;
  }
  .u-pr-md-11 {
    padding-right: 5.5rem !important;
  }
  .u-pb-md-11 {
    padding-bottom: 5.5rem !important;
  }
  .u-pl-md-11 {
    padding-left: 5.5rem !important;
  }
  .u-py-md-11 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }
  .u-px-md-11 {
    padding-left: 5.5rem !important;
    padding-right: 5.5rem !important;
  }
  .u-pt-md-12 {
    padding-top: 6rem !important;
  }
  .u-pr-md-12 {
    padding-right: 6rem !important;
  }
  .u-pb-md-12 {
    padding-bottom: 6rem !important;
  }
  .u-pl-md-12 {
    padding-left: 6rem !important;
  }
  .u-py-md-12 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .u-px-md-12 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .u-pt-md-13 {
    padding-top: 6.5rem !important;
  }
  .u-pr-md-13 {
    padding-right: 6.5rem !important;
  }
  .u-pb-md-13 {
    padding-bottom: 6.5rem !important;
  }
  .u-pl-md-13 {
    padding-left: 6.5rem !important;
  }
  .u-py-md-13 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }
  .u-px-md-13 {
    padding-left: 6.5rem !important;
    padding-right: 6.5rem !important;
  }
  .u-pt-md-14 {
    padding-top: 7rem !important;
  }
  .u-pr-md-14 {
    padding-right: 7rem !important;
  }
  .u-pb-md-14 {
    padding-bottom: 7rem !important;
  }
  .u-pl-md-14 {
    padding-left: 7rem !important;
  }
  .u-py-md-14 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .u-px-md-14 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
  .u-pt-md-15 {
    padding-top: 7.5rem !important;
  }
  .u-pr-md-15 {
    padding-right: 7.5rem !important;
  }
  .u-pb-md-15 {
    padding-bottom: 7.5rem !important;
  }
  .u-pl-md-15 {
    padding-left: 7.5rem !important;
  }
  .u-py-md-15 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
  .u-px-md-15 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }
  .u-pt-md-16 {
    padding-top: 8rem !important;
  }
  .u-pr-md-16 {
    padding-right: 8rem !important;
  }
  .u-pb-md-16 {
    padding-bottom: 8rem !important;
  }
  .u-pl-md-16 {
    padding-left: 8rem !important;
  }
  .u-py-md-16 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .u-px-md-16 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .u-pt-md-17 {
    padding-top: 8.5rem !important;
  }
  .u-pr-md-17 {
    padding-right: 8.5rem !important;
  }
  .u-pb-md-17 {
    padding-bottom: 8.5rem !important;
  }
  .u-pl-md-17 {
    padding-left: 8.5rem !important;
  }
  .u-py-md-17 {
    padding-top: 8.5rem !important;
    padding-bottom: 8.5rem !important;
  }
  .u-px-md-17 {
    padding-left: 8.5rem !important;
    padding-right: 8.5rem !important;
  }
  .u-pt-md-18 {
    padding-top: 9rem !important;
  }
  .u-pr-md-18 {
    padding-right: 9rem !important;
  }
  .u-pb-md-18 {
    padding-bottom: 9rem !important;
  }
  .u-pl-md-18 {
    padding-left: 9rem !important;
  }
  .u-py-md-18 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .u-px-md-18 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }
  .u-pt-md-19 {
    padding-top: 9.5rem !important;
  }
  .u-pr-md-19 {
    padding-right: 9.5rem !important;
  }
  .u-pb-md-19 {
    padding-bottom: 9.5rem !important;
  }
  .u-pl-md-19 {
    padding-left: 9.5rem !important;
  }
  .u-py-md-19 {
    padding-top: 9.5rem !important;
    padding-bottom: 9.5rem !important;
  }
  .u-px-md-19 {
    padding-left: 9.5rem !important;
    padding-right: 9.5rem !important;
  }
  .u-pt-md-20 {
    padding-top: 10rem !important;
  }
  .u-pr-md-20 {
    padding-right: 10rem !important;
  }
  .u-pb-md-20 {
    padding-bottom: 10rem !important;
  }
  .u-pl-md-20 {
    padding-left: 10rem !important;
  }
  .u-py-md-20 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .u-px-md-20 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
}
@media (max-width: 767px) {
  .u-pt-sm-0 {
    padding-top: 0rem !important;
  }
  .u-pr-sm-0 {
    padding-right: 0rem !important;
  }
  .u-pb-sm-0 {
    padding-bottom: 0rem !important;
  }
  .u-pl-sm-0 {
    padding-left: 0rem !important;
  }
  .u-py-sm-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .u-px-sm-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .u-pt-sm-1 {
    padding-top: 0.5rem !important;
  }
  .u-pr-sm-1 {
    padding-right: 0.5rem !important;
  }
  .u-pb-sm-1 {
    padding-bottom: 0.5rem !important;
  }
  .u-pl-sm-1 {
    padding-left: 0.5rem !important;
  }
  .u-py-sm-1 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .u-px-sm-1 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .u-pt-sm-2 {
    padding-top: 1rem !important;
  }
  .u-pr-sm-2 {
    padding-right: 1rem !important;
  }
  .u-pb-sm-2 {
    padding-bottom: 1rem !important;
  }
  .u-pl-sm-2 {
    padding-left: 1rem !important;
  }
  .u-py-sm-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .u-px-sm-2 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .u-pt-sm-3 {
    padding-top: 1.5rem !important;
  }
  .u-pr-sm-3 {
    padding-right: 1.5rem !important;
  }
  .u-pb-sm-3 {
    padding-bottom: 1.5rem !important;
  }
  .u-pl-sm-3 {
    padding-left: 1.5rem !important;
  }
  .u-py-sm-3 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .u-px-sm-3 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .u-pt-sm-4 {
    padding-top: 2rem !important;
  }
  .u-pr-sm-4 {
    padding-right: 2rem !important;
  }
  .u-pb-sm-4 {
    padding-bottom: 2rem !important;
  }
  .u-pl-sm-4 {
    padding-left: 2rem !important;
  }
  .u-py-sm-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .u-px-sm-4 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .u-pt-sm-5 {
    padding-top: 2.5rem !important;
  }
  .u-pr-sm-5 {
    padding-right: 2.5rem !important;
  }
  .u-pb-sm-5 {
    padding-bottom: 2.5rem !important;
  }
  .u-pl-sm-5 {
    padding-left: 2.5rem !important;
  }
  .u-py-sm-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .u-px-sm-5 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
  .u-pt-sm-6 {
    padding-top: 3rem !important;
  }
  .u-pr-sm-6 {
    padding-right: 3rem !important;
  }
  .u-pb-sm-6 {
    padding-bottom: 3rem !important;
  }
  .u-pl-sm-6 {
    padding-left: 3rem !important;
  }
  .u-py-sm-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .u-px-sm-6 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  .u-pt-sm-7 {
    padding-top: 3.5rem !important;
  }
  .u-pr-sm-7 {
    padding-right: 3.5rem !important;
  }
  .u-pb-sm-7 {
    padding-bottom: 3.5rem !important;
  }
  .u-pl-sm-7 {
    padding-left: 3.5rem !important;
  }
  .u-py-sm-7 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .u-px-sm-7 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }
  .u-pt-sm-8 {
    padding-top: 4rem !important;
  }
  .u-pr-sm-8 {
    padding-right: 4rem !important;
  }
  .u-pb-sm-8 {
    padding-bottom: 4rem !important;
  }
  .u-pl-sm-8 {
    padding-left: 4rem !important;
  }
  .u-py-sm-8 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .u-px-sm-8 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .u-pt-sm-9 {
    padding-top: 4.5rem !important;
  }
  .u-pr-sm-9 {
    padding-right: 4.5rem !important;
  }
  .u-pb-sm-9 {
    padding-bottom: 4.5rem !important;
  }
  .u-pl-sm-9 {
    padding-left: 4.5rem !important;
  }
  .u-py-sm-9 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .u-px-sm-9 {
    padding-left: 4.5rem !important;
    padding-right: 4.5rem !important;
  }
  .u-pt-sm-10 {
    padding-top: 5rem !important;
  }
  .u-pr-sm-10 {
    padding-right: 5rem !important;
  }
  .u-pb-sm-10 {
    padding-bottom: 5rem !important;
  }
  .u-pl-sm-10 {
    padding-left: 5rem !important;
  }
  .u-py-sm-10 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .u-px-sm-10 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
  .u-pt-sm-11 {
    padding-top: 5.5rem !important;
  }
  .u-pr-sm-11 {
    padding-right: 5.5rem !important;
  }
  .u-pb-sm-11 {
    padding-bottom: 5.5rem !important;
  }
  .u-pl-sm-11 {
    padding-left: 5.5rem !important;
  }
  .u-py-sm-11 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
  }
  .u-px-sm-11 {
    padding-left: 5.5rem !important;
    padding-right: 5.5rem !important;
  }
  .u-pt-sm-12 {
    padding-top: 6rem !important;
  }
  .u-pr-sm-12 {
    padding-right: 6rem !important;
  }
  .u-pb-sm-12 {
    padding-bottom: 6rem !important;
  }
  .u-pl-sm-12 {
    padding-left: 6rem !important;
  }
  .u-py-sm-12 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .u-px-sm-12 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .u-pt-sm-13 {
    padding-top: 6.5rem !important;
  }
  .u-pr-sm-13 {
    padding-right: 6.5rem !important;
  }
  .u-pb-sm-13 {
    padding-bottom: 6.5rem !important;
  }
  .u-pl-sm-13 {
    padding-left: 6.5rem !important;
  }
  .u-py-sm-13 {
    padding-top: 6.5rem !important;
    padding-bottom: 6.5rem !important;
  }
  .u-px-sm-13 {
    padding-left: 6.5rem !important;
    padding-right: 6.5rem !important;
  }
  .u-pt-sm-14 {
    padding-top: 7rem !important;
  }
  .u-pr-sm-14 {
    padding-right: 7rem !important;
  }
  .u-pb-sm-14 {
    padding-bottom: 7rem !important;
  }
  .u-pl-sm-14 {
    padding-left: 7rem !important;
  }
  .u-py-sm-14 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .u-px-sm-14 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }
  .u-pt-sm-15 {
    padding-top: 7.5rem !important;
  }
  .u-pr-sm-15 {
    padding-right: 7.5rem !important;
  }
  .u-pb-sm-15 {
    padding-bottom: 7.5rem !important;
  }
  .u-pl-sm-15 {
    padding-left: 7.5rem !important;
  }
  .u-py-sm-15 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
  .u-px-sm-15 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }
  .u-pt-sm-16 {
    padding-top: 8rem !important;
  }
  .u-pr-sm-16 {
    padding-right: 8rem !important;
  }
  .u-pb-sm-16 {
    padding-bottom: 8rem !important;
  }
  .u-pl-sm-16 {
    padding-left: 8rem !important;
  }
  .u-py-sm-16 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .u-px-sm-16 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }
  .u-pt-sm-17 {
    padding-top: 8.5rem !important;
  }
  .u-pr-sm-17 {
    padding-right: 8.5rem !important;
  }
  .u-pb-sm-17 {
    padding-bottom: 8.5rem !important;
  }
  .u-pl-sm-17 {
    padding-left: 8.5rem !important;
  }
  .u-py-sm-17 {
    padding-top: 8.5rem !important;
    padding-bottom: 8.5rem !important;
  }
  .u-px-sm-17 {
    padding-left: 8.5rem !important;
    padding-right: 8.5rem !important;
  }
  .u-pt-sm-18 {
    padding-top: 9rem !important;
  }
  .u-pr-sm-18 {
    padding-right: 9rem !important;
  }
  .u-pb-sm-18 {
    padding-bottom: 9rem !important;
  }
  .u-pl-sm-18 {
    padding-left: 9rem !important;
  }
  .u-py-sm-18 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .u-px-sm-18 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }
  .u-pt-sm-19 {
    padding-top: 9.5rem !important;
  }
  .u-pr-sm-19 {
    padding-right: 9.5rem !important;
  }
  .u-pb-sm-19 {
    padding-bottom: 9.5rem !important;
  }
  .u-pl-sm-19 {
    padding-left: 9.5rem !important;
  }
  .u-py-sm-19 {
    padding-top: 9.5rem !important;
    padding-bottom: 9.5rem !important;
  }
  .u-px-sm-19 {
    padding-left: 9.5rem !important;
    padding-right: 9.5rem !important;
  }
  .u-pt-sm-20 {
    padding-top: 10rem !important;
  }
  .u-pr-sm-20 {
    padding-right: 10rem !important;
  }
  .u-pb-sm-20 {
    padding-bottom: 10rem !important;
  }
  .u-pl-sm-20 {
    padding-left: 10rem !important;
  }
  .u-py-sm-20 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .u-px-sm-20 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }
}
.u-color-font {
  color: var(--font-color);
}

.u-color-white {
  color: #fff;
}

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

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

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

@media (min-width: 768px) {
  .u-text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .u-text-md-left {
    text-align: left !important;
  }
}
@media (min-width: 768px) {
  .u-text-md-right {
    text-align: right !important;
  }
}
@media (max-width: 580px) {
  .u-text-sm-center {
    text-align: center !important;
  }
}
@media (max-width: 580px) {
  .u-text-sm-left {
    text-align: left !important;
  }
}
@media (max-width: 580px) {
  .u-text-sm-right {
    text-align: right !important;
  }
}