@charset "UTF-8";
:root {
  --font-color: #000000;
  --main-color: #e60013;
  --main-color-dark: #001751;
  --bg-color: #fafafa;
}

:root {
  --main-font: YuGothic, "Yu Gothic Medium", "Yu Gothic", -apple-system,
    BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue,
    Verdana, Meiryo, sans-serif;
  --sub-font: "Outfit", "NotoSansJP", sans-serif;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?88orz2");
  src: url("../fonts/icomoon.eot?88orz2#iefix") format("embedded-opentype"),
    url("../fonts/icomoon.ttf?88orz2") format("truetype"),
    url("../fonts/icomoon.woff?88orz2") format("woff"),
    url("../fonts/icomoon.svg?88orz2#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-right:before {
  content: "\e900";
  color: #fff;
}

.icon-down:before {
  content: "\e901";
  color: #fff;
}

.icon-arrow-right:before {
  content: "\e902";
}

:root {
  --container-padding-x: 6.25rem;
  --container-max-width: 67.5rem;
  --header-height: 5rem;
  --outer-width: 85.375rem;
}
@media (max-width: 767px) {
  :root {
    --container-padding-x: 1.25rem;
    --header-height: 2.875rem;
  }
}

:target {
  scroll-margin-top: var(--header-height);
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 0;
  min-width: 0;
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@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: 0.875rem;
  font-weight: 500;
  width: 100%;
  line-height: 1.7142857143;
  color: var(--font-color);
  margin: 0;
  overflow-x: clip;
}
@media (max-width: 767px) {
  body {
    font-size: max(10px, 0.875rem);
    line-height: 1.75;
  }
}

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

h2 {
  font-size: 1.25rem;
  font-weight: 700;
}

p {
  margin: 0;
}

figure {
  margin: 0;
}

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

img {
  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;
  cursor: pointer;
}

#autozip {
  display: none !important;
}

.l-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 3.25rem;
  height: 100%;
}
.l-header__logo {
  padding-left: 3.125rem;
  padding-right: 1.875rem;
  padding-bottom: 1.625rem;
  padding-top: 2.75rem;
  border-radius: 0 0 0.625rem 0;
  background: var(--main-color);
}
.l-header__logo:where(.l-header--white .l-header__logo) {
  background: #fff;
}
@media (max-width: 767px) {
  .l-header__logo {
    padding-left: 1.25rem;
    padding-top: 1.8125rem;
    padding-right: 1.125rem;
    padding-bottom: 1.125rem;
  }
}
.l-header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.l-header__logo a:hover {
  opacity: 0.6;
}
.l-header__logo img {
  width: max(80px, 5rem);
}
.l-header__nav {
  margin-top: 2.75rem;
  margin-right: 2.875rem;
  background: var(--main-color);
  border-radius: 0.625rem;
  padding: 1.375rem 1.875rem;
  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;
  color: #fff;
}
.l-header__nav:where(.l-header--white .l-header__nav) {
  background: #fff;
  color: var(--font-color);
}
@media (max-width: 767px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
}
.l-header__item a {
  font-size: max(10px, 1rem);
  font-weight: 700;
}
.l-header__item a.is-current {
  color: var(--font-color);
}
.l-header__hamburger-wrap {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  z-index: 1001;
  width: 44px;
  height: 44px;
  background: var(--main-color);
  border-radius: 50%;
  border: 0.0625rem solid #fff;
  position: fixed;
  right: 1.25rem;
  top: 1.25rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5rem;
}
@media (max-width: 767px) {
  .l-header__hamburger-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.l-header__hamburger {
  width: 100%;
  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;
}
.l-header__hamburger[aria-expanded="true"] .l-header__hamburger-line {
  background: transparent;
  height: 0;
}
.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(135deg);
  transform: rotate(135deg);
}
.l-header__hamburger[aria-expanded="true"] .l-header__hamburger-line:after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.l-header__hamburger-line {
  width: 20px;
  height: 2px;
  display: block;
  color: #fff;
  background-color: currentColor;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.l-header__hamburger-line:before,
.l-header__hamburger-line:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: inherit;
  background-color: currentColor;
  content: "";
  -webkit-transition: inherit;
  transition: inherit;
}
.l-header__hamburger-line:before {
  top: -7px;
}
.l-header__hamburger-line:after {
  top: 7px;
}
.l-header__hamburger-text {
  font-size: max(10px, 0.625rem);
  color: #fff;
  font-weight: 500;
}
.l-header__sp-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  left: 0;
  top: 0;
  z-index: 1000;
  -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;
  display: none;
}

.l-footer {
  background: #000;
  color: #fff;
}
.l-footer__inner {
  padding: 3.125rem;
}
@media (max-width: 767px) {
  .l-footer__inner {
    padding: 6.25rem var(--container-padding-x);
  }
}
@media (min-width: 768px) {
  .l-footer__top {
    display: grid;
    grid-template-columns: 1fr auto;
  }
}
@media (max-width: 767px) {
  .l-footer__logo {
    text-align: center;
  }
}
.l-footer__logo img {
  width: 8.75rem;
}
.l-footer__sns-list {
  margin-top: 2.375rem;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
@media (max-width: 767px) {
  .l-footer__sns-list {
    margin-top: 2.5rem;
    max-width: 100%;
  }
}
.l-footer__sns-item {
  border-bottom: 0.0625rem solid #434343;
}
.l-footer__sns-item:first-child {
  border-top: 0.0625rem solid #434343;
}
.l-footer__sns-link {
  display: grid;
  grid-template-columns: 1.125rem auto;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: max(10px, 0.75rem);
  font-weight: 500;
  padding-top: 0.40625rem;
  padding-bottom: 0.40625rem;
}
@media (max-width: 767px) {
  .l-footer__sns-link {
    font-size: max(10px, 0.875rem);
    grid-template-columns: 1.3125rem auto;
    padding-block: 0.8125rem;
  }
}
.l-footer__right {
  margin-top: 3.125rem;
}
@media (min-width: 768px) {
  .l-footer__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.75rem 3.625rem;
  }
}
@media (max-width: 767px) {
  .l-footer__nav {
    display: grid;
    gap: 1.75rem;
  }
}
.l-footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.75rem;
}
@media (max-width: 767px) {
  .l-footer__nav-list {
    gap: 1.75rem;
  }
}
.l-footer__nav-link {
  font-size: max(10px, 1rem);
  font-weight: 700;
}
@media (max-width: 767px) {
  .l-footer__nav-link {
    font-size: max(10px, 1.25rem);
  }
}
.l-footer__nav-sub-list {
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .l-footer__nav-sub-list {
    padding-left: 1.25rem;
  }
}
.l-footer__nav-sub-link {
  font-size: max(10px, 0.875rem);
  line-height: 2;
}
@media (max-width: 767px) {
  .l-footer__nav-sub-link {
    font-size: max(10px, 1rem);
    line-height: 2.375;
  }
}
.l-footer__bottom {
  margin-top: 5.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .l-footer__bottom {
    margin-top: 5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 6.25rem;
  }
}
.l-footer__copyright {
  font-size: max(10px, 0.625rem);
  font-weight: 500;
}
.l-footer__bottom-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
}
@media (max-width: 767px) {
  .l-footer__bottom-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.5rem;
  }
}
.l-footer__bottom-link {
  font-size: max(10px, 0.875rem);
  font-weight: 500;
}
@media (max-width: 767px) {
  .l-footer__bottom-link {
    font-size: max(10px, 1rem);
  }
}

.l-container {
  margin: 0 auto;
  padding: 0 var(--container-padding-x);
  width: 100%;
  max-width: calc(var(--container-max-width) + var(--container-padding-x) * 2);
}
.l-container--sm {
  --container-max-width: 47.5rem;
}

.l-sp-menu {
  background: var(--main-color);
  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;
  position: relative;
}
.l-sp-menu__logo {
  position: absolute;
  left: 1.25rem;
  top: 1.8125rem;
}
.l-sp-menu__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.l-sp-menu__logo a:hover {
  opacity: 0.6;
}
.l-sp-menu__logo img {
  width: max(80px, 5rem);
}
.l-sp-menu__list {
  display: grid;
  gap: 1.875rem;
}
.l-sp-menu__item {
  text-align: center;
  line-height: 1;
}
.l-sp-menu__item-link {
  color: #fff;
  font-size: max(10px, 1.5rem);
  font-weight: 700;
}

.l-outer {
  max-width: var(--outer-width);
  margin-left: auto;
  margin-right: auto;
}

.l-main {
  position: relative;
  overflow: clip;
}

.l-main {
  position: relative;
  overflow: clip;
}

.l-main .bn_corp {
  position: absolute;
  right: 43px;
  top: 130px;
  z-index: 100;
}

.l-main .bn_corp a {
  display: block;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.l-main .bn_corp a:hover {
  filter: brightness(1.2);
}

.sp_block {
  display: none;
}

@media (max-width: 767px) {
  .pc_block {
    display: none;
  }

  .sp_block {
    display: block;
  }

  .l-section {
    position: relative;
  }

  .l-section .bn_corp {
    position: absolute;
    top: -15px;
    right: 10px;
  }
  .l-section .bn_corp a img {
    width: 300px;
  }

  .l-main .bn_corp a {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
}

.l-main__inner {
  border-top: 0.0625rem solid rgba(10, 28, 74, 0.15);
  padding-top: 5.625rem;
}

.l-columns {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .l-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .l-columns {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 768px) {
  .l-columns--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.l-section {
  padding-top: 4.1875rem;
  padding-bottom: 6.25rem;
}

.l-bg-box {
  background: var(--bg-color);
  padding: 3.125rem;
  border-radius: 0.625rem;
}
@media (max-width: 767px) {
  .l-section {
    padding-top: 7.1875rem;
  }

  .l-bg-box {
    margin-inline: calc(50% - 50vi);
    padding-inline: var(--container-padding-x);
    padding-block: 1.875rem;
  }

  .l-section .bn_corp {
    position: absolute;
    width: 300px;
    top: -15px;
    right: 50%;
    transform: translateX(50%);
  }
}

:root {
  --font-color: #000000;
  --main-color: #e60013;
  --main-color-dark: #001751;
  --bg-color: #fafafa;
}

:root {
  --main-font: YuGothic, "Yu Gothic Medium", "Yu Gothic", -apple-system,
    BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue,
    Verdana, Meiryo, sans-serif;
  --sub-font: "Outfit", "NotoSansJP", sans-serif;
}

.c-button {
  --button-color: var(--main-color);
  --button-bg-color: #fff;
  font-size: max(10px, 1.125rem);
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.625rem;
  background: var(--button-bg-color);
  color: var(--button-color);
  padding: 0.5rem 0.625rem;
  border-radius: calc(infinity * 1px);
  min-width: 14.6875rem;
}

.c-button__text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}

.c-button__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

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

.c-button--secondary .c-button__icon {
  background: var(--button-color);
  color: var(--button-bg-color);
}

.c-link-icon {
  --icon-bg-color: var(--main-color);
  --icon-color: #fff;
  --icon-size: 2.75rem;
  width: var(--icon-size);
  height: var(--icon-size);
  border-radius: 50%;
  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;
  background: var(--icon-bg-color);
  color: var(--icon-color);
  font-size: max(10px, 0.75rem);
}

.c-link-icon:where(a:hover *, button:hover *, .c-link-icon__wrap:hover *)
  .c-link-icon__icon,
.c-link-icon:hover .c-link-icon__icon {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-animation-name: ArrowMoveNext;
  animation-name: ArrowMoveNext;
}

@-webkit-keyframes ArrowMoveNext {
  0% {
    opacity: 1;
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
  40% {
    opacity: 0;
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
  40.01% {
    opacity: 0;
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
  100% {
    opacity: 1;
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes ArrowMoveNext {
  0% {
    opacity: 1;
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
  40% {
    opacity: 0;
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
  40.01% {
    opacity: 0;
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
  100% {
    opacity: 1;
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.c-link {
  position: relative;
  background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(currentcolor),
      to(currentcolor)
    )
    right bottom/0 0.0625rem no-repeat;
  background: linear-gradient(currentcolor, currentcolor) right bottom/0
    0.0625rem no-repeat;
  -webkit-transition: background-size 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: background-size 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  padding-bottom: 0.125rem;
  background-size: 0 0.0625rem;
}

.c-link:is(a):hover,
.c-link:where(a:hover *, button:hover) {
  background-position: left bottom;
  background-size: 100% 0.0625rem;
}

.c-link--underline {
  background-size: 100% 0.0625rem;
  background-position: left bottom;
  padding-bottom: 0;
}

.c-link--underline:hover,
.c-link--underline:where(a:hover *, button:hover) {
  background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(currentcolor),
      to(currentcolor)
    )
    right bottom/0 0.0625rem no-repeat;
  background: linear-gradient(currentcolor, currentcolor) right bottom/0
    0.0625rem no-repeat;
}

.c-heading {
  text-align: center;
  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;
  gap: 1.25rem;
  position: relative;
  z-index: 0;
  padding-top: 2rem;
  padding-bottom: 1.0625rem;
}

.c-heading__title-ja {
  font-size: max(10px, 1.25rem);
  font-weight: 700;
}

.c-heading__title-en {
  font-size: max(10px, 2.5rem);
  font-weight: 700;
}

.c-heading__bg-text {
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
}

.c-flow-text {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

.c-flow-text__item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 7.5rem;
  padding-inline: 0.15em;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.1;
}

.c-flow-text:not(.no-tick) .c-flow-text__item:nth-child(odd) {
  -webkit-animation: MoveLeft var(--tick-duration, 60s) var(--tick-delay, -30s)
    infinite linear;
  animation: MoveLeft var(--tick-duration, 60s) var(--tick-delay, -30s) infinite
    linear;
}

.c-flow-text:not(.no-tick) .c-flow-text__item:nth-child(even) {
  -webkit-animation: MoveLeft2 var(--tick-duration, 60s) infinite linear;
  animation: MoveLeft2 var(--tick-duration, 60s) infinite linear;
}

.c-post-card-list {
  position: relative;
}

@media (max-width: 767px) {
  .c-post-card-list .swiper {
    overflow: visible;
  }
}
.c-post-card-list .swiper-slide {
  height: auto;
}

@media (max-width: 767px) {
  .c-post-card-list__controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 1.875rem;
  }
}
.c-post-card-list__controls--secondary .c-post-card-list__controls-button {
  background: var(--main-color);
  color: #fff;
}

.c-post-card-list__controls-button {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  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;
  font-size: max(10px, 1.25rem);
  font-weight: 700;
  color: var(--main-color);
}

@media (min-width: 768px) {
  .c-post-card-list__controls-button {
    position: absolute;
    top: 50%;
    translate: 0 -50%;
  }
}
.c-post-card-list__controls-button:first-of-type {
  right: calc(100% + 1.5625rem);
}

.c-post-card-list__controls-button:last-of-type {
  left: calc(100% + 1.5625rem);
}

.c-post-card-list__controls-button:hover .c-post-card-list__prev {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-animation-name: ArrowMovePrev;
  animation-name: ArrowMovePrev;
}

.c-post-card-list__controls-button:hover .c-post-card-list__next {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-animation-name: ArrowMoveNext;
  animation-name: ArrowMoveNext;
}

@-webkit-keyframes ArrowMovePrev {
  0% {
    opacity: 1;
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
  40% {
    opacity: 0;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
  40.01% {
    opacity: 0;
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
  100% {
    opacity: 1;
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes ArrowMovePrev {
  0% {
    opacity: 1;
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
  40% {
    opacity: 0;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
  40.01% {
    opacity: 0;
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
  100% {
    opacity: 1;
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes ArrowMoveNext {
  0% {
    opacity: 1;
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
  40% {
    opacity: 0;
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
  40.01% {
    opacity: 0;
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
  100% {
    opacity: 1;
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.c-post-card__figure {
  aspect-ratio: 1/1;
  border-radius: 0.625rem;
  overflow: hidden;
}

.c-post-card__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -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;
}

.c-post-card__figure img:where(a:hover .c-post-card__figure img) {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.c-post-card__body {
  padding-top: 1rem;
}

.c-post-card__category {
  font-size: max(10px, 0.75rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.c-post-card__title {
  font-size: max(10px, 1rem);
  font-weight: 700;
  line-height: 1.7142857143;
}

.c-service-card {
  background: #fff;
  color: var(--font-color);
  border-radius: 0.625rem;
  height: 100%;
}

.c-service-card__figure {
  text-align: center;
  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;
  aspect-ratio: 3/2;
}

.c-service-card__figure img {
  max-width: 100%;
}

.c-service-card__body {
  border-top: 0.0625rem solid #cccccc;
  padding: 2.5rem;
}

@media (max-width: 767px) {
  .c-service-card__body {
    padding: 1.875rem 1.875rem 2.5rem;
  }
}
.c-service-card__heading {
  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;
  gap: 0.625rem;
}

.c-service-card__title {
  font-size: max(10px, 1.25rem);
  font-weight: 700;
}

@media (max-width: 767px) {
  .c-service-card__title {
    font-size: max(10px, 0.8125rem);
  }
}
.c-service-card__subtitle {
  font-size: max(10px, 0.875rem);
  font-weight: 500;
}

@media (max-width: 767px) {
  .c-service-card__subtitle {
    font-size: max(10px, 0.625rem);
  }
}
.c-service-card__text {
  margin-top: 2.5rem;
  font-size: max(10px, 0.75rem);
  line-height: 2.0833333333;
}

@media (max-width: 767px) {
  .c-service-card__text {
    margin-top: 1.875rem;
  }
}
.c-post-card-list2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8125rem;
}

@media (max-width: 767px) {
  .c-post-card-list2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-post-content {
  font-size: max(10px, 1rem);
  font-weight: 500;
  line-height: 2;
}

.c-post-content > :first-child {
  margin-top: 0 !important;
}

.c-post-content > :last-child {
  margin-bottom: 0 !important;
}

@media (max-width: 767px) {
  .c-post-content {
    font-size: max(10px, 1rem);
  }
}
.c-post-content h2 {
  margin-top: 2em;
  margin-bottom: 1.5em;
  font-size: max(10px, 1.875rem);
  font-weight: 700;
  padding-left: 0.625rem;
  border-left: 0.25rem solid var(--main-color);
}

@media (max-width: 767px) {
  .c-post-content h2 {
    font-size: max(10px, 1.5rem);
  }
}
.c-post-content h3 {
  margin-block: 2em;
  font-size: max(10px, 1.5rem);
  font-weight: 700;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #ccc;
}

@media (max-width: 767px) {
  .c-post-content h3 {
    font-size: max(10px, 1.125rem);
  }
}
.c-post-content h4 {
  margin-block: 2em;
  font-size: max(10px, 1.3125rem);
  font-weight: 700;
}

@media (max-width: 767px) {
  .c-post-content h4 {
    font-size: max(10px, 1rem);
  }
}
.c-post-content p {
  margin-block: 1em;
}

.c-post-content a {
  text-decoration: underline;
  color: var(--main-color);
  font-weight: 700;
}

.c-post-content img {
  margin-top: 3.125rem;
  margin-bottom: 1.875rem;
}

@media (max-width: 767px) {
  .c-post-content img {
    margin-top: 1.875rem;
    margin-bottom: 1.25rem;
  }
}
.c-post-content ul {
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
  padding-left: 1.25rem;
  list-style-type: disc;
}

.c-form label {
  display: block;
}

.c-form__group {
  display: grid;
  gap: 2.5rem;
}

.c-form__label {
  display: block;
  font-size: max(10px, 1.25rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: max(10px, 1.125rem);
}

.c-form__label + input,
.c-form__label + select,
.c-form__label + textarea {
  width: 100%;
  padding: max(10px, 1.25rem) max(10px, 2rem);
  border: 1px solid #ccc;
  border-radius: max(10px, 0.625rem);
  font-size: max(10px, 1.25rem);
}

.c-form__label + select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../img/contact/select_bg.svg);
  background-repeat: no-repeat;
  background-position: right 2.5rem center;
  background-size: 1rem;
}

.c-form__label + textarea {
  height: 18.75rem;
}

.c-form__required {
  color: var(--main-color);
  margin-left: 0.5em;
}

.c-form__checkbox {
  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: 1.25rem;
  font-size: max(10px, 0.875rem);
  font-weight: 700;
}

.c-form__checkbox input {
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #ccc;
  border-radius: max(10px, 0.3125rem);
  margin: 0;
}

.c-form__note {
  font-size: max(10px, 0.75rem);
  font-weight: 500;
  line-height: 2;
}

.c-form__submit-wrap {
  margin-top: 3rem;
  text-align: center;
}

:root {
  --font-color: #000000;
  --main-color: #e60013;
  --main-color-dark: #001751;
  --bg-color: #fafafa;
}

:root {
  --main-font: YuGothic, "Yu Gothic Medium", "Yu Gothic", -apple-system,
    BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue,
    Verdana, Meiryo, sans-serif;
  --sub-font: "Outfit", "NotoSansJP", sans-serif;
}

.p-fp-fv {
  padding: 1.4375rem 1.875rem 1.875rem;
  height: max(31.25rem, 100vh);
  position: relative;
}

@media (max-width: 767px) {
  .p-fp-fv {
    padding: 0.625rem 0.625rem 1.625rem;
  }
}
.p-fp-fv::before {
  content: "";
  position: absolute;
  display: block;
  width: 8.125rem;
  height: 5.4375rem;
  background: #fff;
  top: 1.4375rem;
  left: 1.875rem;
  border-radius: 0 0 0.625rem 0;
}

@media (max-width: 767px) {
  .p-fp-fv::before {
    width: 6.75rem;
    height: 4.5rem;
    top: 0.625rem;
    left: 0.625rem;
  }
}
.p-fp-fv__inner {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  color: #fff;
}

.p-fp-fv__inner::before,
.p-fp-fv__inner::after {
  content: "";
  position: absolute;
  width: 0.625rem;
  height: 0.625rem;
  background: url(../img/common/shapes_corner.svg) center/cover no-repeat;
  display: block;
  rotate: 180deg;
}

.p-fp-fv__inner::before {
  left: 0;
  top: 5.4375rem;
}

@media (max-width: 767px) {
  .p-fp-fv__inner::before {
    top: 4.5rem;
  }
}
.p-fp-fv__inner::after {
  top: 0;
  left: 8.125rem;
}

@media (max-width: 767px) {
  .p-fp-fv__inner::after {
    left: 6.75rem;
  }
}
.p-fp-fv__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 0.625rem;
  overflow: hidden;
}

.p-fp-fv__bg .swiper {
  width: 100%;
  height: 100%;
}

.p-fp-fv__bg .swiper video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-fp-fv__contents {
  width: 100%;
}

.p-fp-fv__sentense {
  padding-left: 1.25rem;
}

@media (max-width: 767px) {
  .p-fp-fv__sentense {
    padding-left: 0.625rem;
  }
}
.p-fp-fv__title {
  font-size: max(10px, 3.125rem);
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .p-fp-fv__title {
    font-size: max(10px, 1.625rem);
  }
}
.p-fp-fv__text {
  margin-top: 1.125rem;
  font-size: max(10px, 0.875rem);
  font-weight: 700;
}

@media (max-width: 767px) {
  .p-fp-fv__text {
    margin-top: 0.9375rem;
    font-size: max(10px, 0.8125rem);
  }
}
.p-fp-fv__bottom {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: auto 19.375rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media (max-width: 767px) {
  .p-fp-fv__bottom {
    margin-top: 3.125rem;
    display: block;
  }
  .p-fp-fv__bottom .bn_corp {
    top: inherit;
    bottom: -133px;
  }
}
.p-fp-fv__bottom-text {
  font-size: max(10px, 6.25rem);
  font-weight: 700;
  line-height: 0.75;
}

@media (max-width: 767px) {
  .p-fp-fv__bottom-text {
    font-size: max(10px, 3.8125rem);
    line-height: 0.8461538462;
  }
}
.p-fp-fv__bottom-link-wrap {
  background: #fff;
  border-radius: 0.625rem 0 0 0;
  padding: 1rem 0 1rem 1.5625rem;
  position: relative;
}

@media (max-width: 767px) {
  .p-fp-fv__bottom-link-wrap {
    margin-top: 2rem;
    width: 20rem;
    margin-inline: auto 0;
  }
}
.p-fp-fv__bottom-link-wrap::before,
.p-fp-fv__bottom-link-wrap::after {
  content: "";
  position: absolute;
  width: 0.625rem;
  height: 0.625rem;
  background: url(../img/common/shapes_corner.svg) center/cover no-repeat;
  display: block;
}

.p-fp-fv__bottom-link-wrap::before {
  bottom: 100%;
  right: 0;
}

.p-fp-fv__bottom-link-wrap::after {
  bottom: 0;
  right: 100%;
}

.p-fp-fv__bottom-link {
  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;
  gap: 1.25rem;
  color: var(--font-color);
}

.p-fp-fv__bottom-link-category {
  font-size: max(10px, 1.25rem);
  font-weight: 700;
}

.p-fp-fv__bottom-link-title {
  font-size: max(10px, 0.625rem);
  line-height: 1.4;
}

.p-section-service {
  background: url(../img/common/bg_service.png) center/cover no-repeat;
  color: #fff;
}

.p-section-service__block1 {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 28.75rem;
  gap: 5rem;
}

@media (max-width: 767px) {
  .p-section-service__block1 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.p-section-service__block1-title {
  font-size: max(10px, 1.875rem);
  font-weight: 700;
}

.p-section-service__block1-title-small {
  display: block;
  font-size: max(10px, 0.875rem);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.p-section-service__block1-text {
  margin-top: 2.25rem;
  font-size: max(10px, 1rem);
  font-weight: 500;
  line-height: 2;
}

@media (max-width: 767px) {
  .p-section-service__block1-text {
    margin-top: 1.875rem;
  }
}
.p-section-service__block2 {
  margin-top: 3rem;
}

.p-section-service__block2-title {
  font-size: max(10px, 1rem);
  font-weight: 700;
}

.p-section-about {
  padding-block: 6.25rem;
  color: var(--main-color);
}

@media (max-width: 767px) {
  .p-section-about {
    padding-top: 5.75rem;
  }
}
.p-section-about__title {
  font-size: max(10px, 3.75rem);
  line-height: 1.5;
  font-weight: 700;
}

@media (max-width: 767px) {
  .p-section-about__title {
    font-size: max(10px, 1.875rem);
    white-space: nowrap;
    line-height: 1.6666666667;
  }
}
.p-section-about__block {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 1fr 25rem;
  gap: 3.125rem;
}

@media (max-width: 767px) {
  .p-section-about__block {
    margin-top: 3.125rem;
    grid-template-columns: 1fr;
  }
}
.p-section-about__text {
  font-size: max(10px, 1.125rem);
  line-height: 2.2222222222;
  font-weight: 700;
}

.p-section-about__item {
  border-top: 0.0625rem solid var(--main-color);
  padding-block: 0.9375rem;
}

.p-section-about__item:last-of-type {
  border-bottom: 0.0625rem solid var(--main-color);
}

.p-section-about__link {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.625rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  font-size: max(10px, 1.25rem);
}

.p-section-dx__block {
  margin-top: 5.625rem;
  max-width: 50.0625rem;
  margin-inline: auto;
}

@media (max-width: 767px) {
  .p-section-dx__block {
    margin-top: 2.5rem;
    grid-template-columns: 1fr;
    gap: 3.125rem;
  }
}
.p-section-dx__block-title {
  font-size: max(10px, 3.125rem);
  font-weight: 700;
  line-height: 1.2941176471;
}

@media (max-width: 767px) {
  .p-section-dx__block-title {
    font-size: max(10px, 1.25rem);
    line-height: 1.4166666667;
  }
}
.p-section-dx__block-text {
  margin-top: 3.125rem;
  font-size: max(10px, 1.125rem);
  font-weight: 700;
  line-height: 2.2222222222;
}

.p-section-culture__block {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 28.125rem;
  gap: 5rem;
}

@media (max-width: 767px) {
  .p-section-culture__block {
    margin-top: 2.5rem;
    grid-template-columns: 1fr;
    gap: 3.125rem;
  }
}
.p-section-culture__block-title {
  font-size: max(10px, 1.5rem);
  font-weight: 700;
  line-height: 1.6666666667;
}

.p-section-culture__block-text {
  margin-top: 1.125rem;
  font-size: max(10px, 1.125rem);
  line-height: 2.2222222222;
  font-weight: 700;
}

@media (max-width: 767px) {
  .p-section-culture__block-text {
    margin-top: 2.5rem;
  }
}
.p-section-recruit {
  padding-bottom: 8.625rem;
}

@media (max-width: 767px) {
  .p-section-recruit {
    padding-bottom: 6.625rem;
  }
}
.p-section-recruit__inner {
  background: #fafafa;
  border-radius: 0.625rem;
  padding: 1.875rem 3.125rem 3.125rem;
  position: relative;
}

@media (max-width: 767px) {
  .p-section-recruit__inner {
    padding: 1.5rem 0 6.25rem;
  }
}
.p-section-recruit__title {
  margin-top: 1.75rem;
  font-size: max(10px, 2.1875rem);
  font-weight: 700;
  line-height: 1.4285714286;
}

@media (max-width: 767px) {
  .p-section-recruit__title {
    margin-top: 3.125rem;
    padding-inline: 2rem;
    font-size: max(10px, 1.5rem);
    line-height: 1.4166666667;
  }
}
.p-section-recruit__text {
  margin-top: 3.125rem;
  font-size: max(10px, 1.125rem);
  font-weight: 700;
  line-height: 2.2222222222;
}

@media (min-width: 768px) {
  .p-section-recruit__text {
    max-width: 30.625rem;
  }
}
@media (max-width: 767px) {
  .p-section-recruit__text {
    padding-inline: 2rem;
  }
}
.p-section-recruit__image {
  position: absolute;
  top: 3.125rem;
  right: -2.375rem;
  width: 28.75rem;
}

@media (max-width: 767px) {
  .p-section-recruit__image {
    margin-top: 1.75rem;
    position: static;
    display: block;
    margin-inline: auto;
  }
}
.p-link-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6.25rem;
}

@media (max-width: 767px) {
  .p-link-list {
    grid-template-columns: 1fr;
    gap: 3.125rem;
  }
}
@media (min-width: 768px) {
  .p-link-list--3col {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
.p-link-list__link {
  display: block;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
  border-radius: 0.625rem;
  overflow: hidden;
}

.p-link-list__link-img {
  aspect-ratio: 3/2;
  background: #9d9d9d;
  overflow: hidden;
  border-bottom: 0.03125rem solid rgba(112, 112, 112, 0.16);
}

.p-link-list__link-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -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;
}

.p-link-list__link-img img:where(a:hover .p-link-list__link-img img) {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.p-link-list__link-title {
  padding: 1.25rem;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 2.75rem;
  gap: 1.25rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: max(10px, 1.25rem);
  font-weight: 500;
}

.p-page-company__dlist {
  max-width: 43.75rem;
  margin-inline: auto;
}

.p-page-company__dlist-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.25rem;
  font-size: max(10px, 1rem);
  line-height: 1.5;
  padding-block: 1.75rem;
  border-bottom: 0.0625rem solid #ccc;
}

@media (max-width: 767px) {
  .p-page-company__dlist-item {
    grid-template-columns: 1fr;
  }
}
.p-page-company__dlist-term {
  font-weight: 700;
}

@media (max-width: 767px) {
  .p-page-company__dlist-desc {
    font-size: max(10px, 0.875rem);
  }
}
.p-page-company__dlist-desc a {
  text-decoration: underline;
}

.p-page-company__access-list {
  display: grid;
  gap: 5rem;
}

.p-page-company__access-title {
  font-size: max(10px, 1.875rem);
  font-weight: 700;
}

.p-page-company__access-text {
  margin-top: 1.5rem;
  font-size: max(10px, 1.125rem);
  font-weight: 500;
}

.p-page-company__access-map-wrap {
  margin-top: 1.5rem;
}

.p-page-company__access-map-wrap iframe {
  width: 100%;
  aspect-ratio: 98/40;
}

.p-page-message__inner {
  color: var(--main-color);
  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: 4.6875rem;
}

@media (max-width: 767px) {
  .p-page-message__inner {
    gap: 3.125rem;
  }
}
.p-page-message__title {
  font-size: max(10px, 3.75rem);
  font-weight: 700;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .p-page-message__title {
    font-size: max(10px, 1.75rem);
  }
}
.p-page-message__lead-text {
  font-size: max(10px, 1.5rem);
  font-weight: 700;
  line-height: 1.6666666667;
}

@media (max-width: 767px) {
  .p-page-message__lead-text {
    font-size: max(10px, 1.25rem);
  }
}
.p-page-message__sentense {
  font-size: max(10px, 1.5rem);
  font-weight: 700;
  line-height: 1.6666666667;
}

@media (max-width: 767px) {
  .p-page-message__sentense {
    font-size: max(10px, 1.25rem);
  }
}
.p-page-message__sentense-text {
  font-size: max(10px, 1.25rem);
  font-weight: 700;
  line-height: 1.875;
  word-break: auto-phrase;
}

@media (max-width: 767px) {
  .p-page-message__sentense-text {
    font-size: max(10px, 0.875rem);
  }
}
.p-page-message__name {
  margin-top: 3rem;
  font-size: max(10px, 1.125rem);
  font-weight: 700;
  color: var(--font-color);
  line-height: 1.6666666667;
}

@media (max-width: 767px) {
  .p-page-message__name {
    margin-top: 2rem;
    font-size: max(10px, 1rem);
  }
}
.p-page-philosophy__inner {
  display: grid;
  gap: 6.25rem;
}

@media (max-width: 767px) {
  .p-page-philosophy__inner {
    gap: 3.125rem;
  }
}
.p-page-philosophy__block {
  display: grid;
  grid-template-columns: auto 53.125rem;
  gap: 2rem;
}

@media (max-width: 767px) {
  .p-page-philosophy__block {
    grid-template-columns: 1fr;
  }
}
.p-page-philosophy__title-inner {
  font-size: max(10px, 1.5rem);
  font-weight: 700;
  padding-bottom: 0.625rem;
  border-bottom: 0.125rem solid var(--main-color);
}

@media (max-width: 767px) {
  .p-page-philosophy__title-inner {
    font-size: max(10px, 1.125rem);
  }
}
.p-page-philosophy__contents {
  display: grid;
  gap: 3.125rem;
}

@media (max-width: 767px) {
  .p-page-philosophy__contents {
    gap: 1.25rem;
  }
}
.p-page-philosophy__subtitle {
  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;
  gap: 0.75rem;
  color: var(--main-color);
  margin-bottom: 2.5rem;
}

@media (max-width: 767px) {
  .p-page-philosophy__subtitle {
    margin-bottom: 1.25rem;
    gap: 0.25rem;
  }
}
.p-page-philosophy__subtitle-ja {
  font-size: max(10px, 0.875rem);
  font-weight: 700;
}

.p-page-philosophy__subtitle-en {
  font-size: max(10px, 2.5rem);
  font-weight: 700;
}

@media (max-width: 767px) {
  .p-page-philosophy__subtitle-en {
    font-size: max(10px, 2.25rem);
  }
}
.p-page-philosophy__lgtext {
  margin-top: 2.5rem;
  font-size: max(10px, 1.875rem);
  font-weight: 700;
  line-height: 1.6666666667;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .p-page-philosophy__lgtext {
    margin-top: 2rem;
    font-size: max(10px, 1.5rem);
  }
}
.p-page-philosophy__text {
  font-size: max(10px, 1.125rem);
  font-weight: 500;
  line-height: 1.7777777778;
}

@media (max-width: 767px) {
  .p-page-philosophy__text {
    font-size: max(10px, 1rem);
  }
}
.p-page-philosophy__text--border-bottom {
  padding-bottom: 3rem;
  border-bottom: 0.0625rem solid #ccc;
}

@media (max-width: 767px) {
  .p-page-philosophy__text--border-bottom {
    padding-bottom: 1.5rem;
  }
}
.p-page-news__header {
  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-bottom: 3.125rem;
}

@media (max-width: 767px) {
  .p-page-news__header {
    margin-bottom: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .p-page-news__category-nav {
    width: 100%;
  }
}
.p-page-news__category-list {
  background: var(--bg-color);
  border-radius: calc(infinity * 1px);
  padding: 1.875rem 2.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .p-page-news__category-list {
    padding: 1.5rem 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    row-gap: 0.5rem;
  }
}
.p-page-news__category-item {
  color: var(--main-color);
  padding-inline: 1em;
}

@media (max-width: 767px) {
  .p-page-news__category-item {
    padding-inline: 1em;
  }
}
.p-page-news__category-item:not(:first-of-type) {
  position: relative;
}

.p-page-news__category-item:not(:first-of-type)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.0625rem;
  translate: 0 -50%;
  height: 80%;
  background: currentColor;
}

.p-page-news__category-link {
  font-size: max(10px, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: calc(infinity * 1px);
  padding-inline: 1em;
  padding-block: 0.4375rem;
}

@media (max-width: 767px) {
  .p-page-news__category-link {
    font-size: max(10px, 0.875rem);
  }
}
.p-page-news__category-link.is-current {
  color: #fff;
  background: var(--main-color);
}

.p-page-news__year-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-page-news__year-item {
  color: var(--main-color);
  padding-inline: 0.25em;
}

.p-page-news__year-item:not(:last-of-type) {
  position: relative;
}

.p-page-news__year-item:not(:last-of-type)::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.0625rem;
  translate: 0 -50%;
  height: 80%;
  background: currentColor;
}

.p-page-news__year-link {
  font-size: max(10px, 1rem);
  font-weight: 700;
  padding-inline: 0.25em;
}

@media (max-width: 767px) {
  .p-page-news__year-link {
    font-size: max(10px, 0.875rem);
  }
}
.p-page-news__year-link.is-current {
  color: #fff;
  background: var(--main-color);
}

.p-page-news__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4.625rem 2.5rem;
}

@media (max-width: 767px) {
  .p-page-news__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.75rem 1.5rem;
  }
}
.p-page-service__inner {
  display: grid;
  gap: 6.25rem;
}

@media (max-width: 767px) {
  .p-page-service__inner {
    gap: 5rem;
  }
}
.p-page-service__block {
  display: grid;
  grid-template-columns: 1fr 33.25rem;
  gap: 2.5rem;
}

.p-page-service__block:not(:first-of-type) {
  padding-top: 6.25rem;
  border-top: 0.0625rem solid #cccccc;
}

@media (max-width: 767px) {
  .p-page-service__block:not(:first-of-type) {
    padding-top: 5rem;
  }
}
@media (max-width: 767px) {
  .p-page-service__block {
    grid-template-columns: 1fr;
  }
}
.p-page-service__img img {
  border-radius: 0.625rem;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
}

.p-page-service__title {
  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;
  gap: 0.5rem;
}

.p-page-service__title-main {
  font-size: 1.875rem;
  font-weight: 700;
}

.p-page-service__title-sub {
  font-size: 0.875rem;
  font-weight: 500;
}

.p-page-service__text {
  /* font-size: max(10px, 1rem);
  font-weight: 500;
  line-height: 2; */
  font-size: max(10px, 1.25rem);
  line-height: 1.7857142857;
  font-weight: 500;
}

.p-page-service__text a {
  text-decoration: underline;
}

.p-page-dx__leadtext {
  text-align: center;
  font-size: max(10px, 2.5rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 3.125rem;
}

@media (max-width: 767px) {
  .p-page-dx__leadtext {
    font-size: max(10px, 2rem);
  }
  .p-page-service__text {
    margin-top: 20px;
    font-size: max(10px, 1.41rem);
  }
}
@media (max-width: 767px) {
  .p-page-dx__block1 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.p-page-dx__block1-title {
  font-size: max(10px, 1.5rem);
  font-weight: 700;
  color: var(--main-color);
  line-height: 1.6666666667;
  margin-bottom: 2.5rem;
}

@media (max-width: 767px) {
  .p-page-dx__block1-title {
    font-size: max(10px, 1.25rem);
    margin-bottom: 1.875rem;
    word-break: auto-phrase;
  }
}
.p-page-dx__block1-text {
  font-size: max(10px, 1.25rem);
  line-height: 1.875;
  font-weight: 500;
  max-width: 50rem;
  margin-inline: auto;
}

@media (max-width: 767px) {
  .p-page-dx__block1-text {
    font-size: max(10px, 0.875rem);
    line-height: 1.7857142857;
  }
}
.p-page-dx__feature-list {
  display: grid;
  gap: 6.25rem;
}

@media (max-width: 767px) {
  .p-page-dx__feature-list {
    gap: 4rem;
  }
}
.p-page-dx__feature-item {
  display: grid;
  grid-template-columns: 1fr 34.6875rem;
  gap: 4rem;
}

@media (max-width: 767px) {
  .p-page-dx__feature-item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.p-page-dx__feature-title {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1.875rem;
  font-size: max(10px, 1.875rem);
  font-weight: 700;
}

@media (max-width: 767px) {
  .p-page-dx__feature-title {
    font-size: max(10px, 1.5rem);
    margin-bottom: 1.25rem;
    word-break: auto-phrase;
  }
}
.p-page-dx__feature-num {
  width: 4.375rem;
  height: 4.375rem;
  border-radius: 50%;
  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;
  background: var(--main-color);
  color: #fff;
  font-size: max(10px, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .p-page-dx__feature-num {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    font-size: max(10px, 1.25rem);
  }
}
.p-page-dx__feature-num span {
  font-size: max(10px, 0.875rem);
}

@media (max-width: 767px) {
  .p-page-dx__feature-num span {
    font-size: max(10px, 0.75rem);
  }
}
.p-page-dx__feature-text {
  font-size: max(10px, 1.25rem);
  line-height: 1.7857142857;
  font-weight: 500;
}

.p-page-culture__block1 {
  display: grid;
  gap: 4.5rem;
  place-items: center;
}

@media (max-width: 767px) {
  .p-page-culture__block1 {
    gap: 2.5rem;
  }
}
.p-page-culture__block1-title {
  text-align: center;
  font-size: max(10px, 2.5rem);
  font-weight: 700;
}

@media (max-width: 767px) {
  .p-page-culture__block1-title {
    font-size: max(10px, 1.5rem);
  }
}
.p-page-culture__block1-text {
  font-size: max(10px, 1.25rem);
  line-height: 2;
  max-width: 50rem;
}

.p-page-culture__block1-list-wrap {
  width: 100%;
  max-width: 50rem;
}

@media (max-width: 767px) {
  .p-page-culture__block1-list {
    display: grid;
    gap: 0.5em;
  }
}
.p-page-culture__block1-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 0.625rem;
}

.p-page-culture__block1-item::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  display: block;
  background: var(--main-color);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-page-culture__block1-item a {
  text-decoration: underline;
  font-size: max(10px, 1rem);
  line-height: 2;
  font-weight: 700;
}

.p-page-culture__block2 {
  margin-top: 5.75rem;
  display: grid;
  gap: 6.25rem;
}

@media (max-width: 767px) {
  .p-page-culture__block2 {
    gap: 3.75rem;
    margin-top: 3.75rem;
  }
}
.p-page-culture__block2-title {
  font-size: max(10px, 1.5rem);
  font-weight: 700;
  line-height: 1.6666666667;
}

@media (max-width: 767px) {
  .p-page-culture__block2-title {
    font-size: max(10px, 1.25rem);
  }
}
.p-page-culture__block2-contents {
  margin-top: 3.125rem;
  display: grid;
  grid-template-columns: 650fr 200fr;
  gap: 5.625rem;
}

@media (max-width: 767px) {
  .p-page-culture__block2-contents {
    grid-template-columns: 1fr;
    gap: 3.75rem;
    margin-top: 2.5rem;
  }
}
.p-page-culture__block2-left-title {
  margin-top: 5rem;
  font-size: max(10px, 1.25rem);
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
}

.p-page-culture__block2-left-title::before {
  content: "— ";
}

@media (max-width: 767px) {
  .p-page-culture__block2-left-title {
    margin-top: 2.5rem;
    font-size: max(10px, 1.125rem);
  }
}
.p-page-culture__block2-left-text {
  margin-top: 1.875rem;
  font-size: max(10px, 1rem);
  font-weight: 500;
  line-height: 2;
}

@media (max-width: 767px) {
  .p-page-culture__block2-left-text {
    margin-top: 1.25rem;
  }
}
.p-page-culture__block2-left-text a {
  color: var(--main-color);
  text-decoration: underline;
}

@media (max-width: 767px) {
  .p-page-culture__block2-right-figure {
    max-width: 12.5rem;
    margin-inline: auto;
  }
}
.p-page-culture__block2-right-name {
  margin-top: 1.125rem;
  text-align: center;
  font-weight: 700;
  font-size: max(10px, 1rem);
}

@media (max-width: 767px) {
  .p-page-culture__block2-right-name {
    font-size: max(10px, 1rem);
    margin-top: 0.625rem;
  }
}
.p-page-culture__block2-right-position {
  margin-top: 0.625rem;
  text-align: center;
  font-size: max(10px, 0.875rem);
  font-weight: 500;
}

@media (max-width: 767px) {
  .p-page-culture__block2-right-position {
    font-size: max(10px, 0.75rem);
  }
}
.p-page-culture__block2-right-text {
  margin-top: 1.75rem;
  font-size: max(10px, 0.875rem);
  font-weight: 500;
  line-height: 2;
}

@media (max-width: 767px) {
  .p-page-culture__block2-right-text {
    margin-top: 1.25rem;
  }
}
.p-page-recruit__fv {
  padding-block: 7.0625rem;
  color: var(--main-color);
}

.p-page-recruit__fv-title {
  font-size: max(10px, 4.375rem);
  font-weight: 700;
  line-height: 1.2857142857;
}

@media (max-width: 767px) {
  .p-page-recruit__fv-title {
    font-size: max(10px, 2.5rem);
  }
}
.p-page-recruit__fv-text {
  margin-top: 3rem;
  font-size: max(10px, 1.5rem);
  font-weight: 700;
  line-height: 1.6666666667;
  word-break: auto-phrase;
}

@media (max-width: 767px) {
  .p-page-recruit__fv-text {
    font-size: max(10px, 1rem);
  }
}
.p-page-recruit__message-title {
  font-size: max(10px, 1.5rem);
  font-weight: 700;
  color: var(--main-color);
}

@media (max-width: 767px) {
  .p-page-recruit__message-title {
    font-size: max(10px, 1.25rem);
  }
}
.p-page-recruit__message-inner {
  margin-top: 3.125rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

@media (max-width: 767px) {
  .p-page-recruit__message-inner {
    margin-top: 1.875rem;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.p-page-recruit__message-text {
  font-size: max(10px, 1rem);
  font-weight: 500;
  line-height: 2;
}

.p-page-recruit__message-name {
  margin-top: 3rem;
  font-weight: 700;
  font-size: max(10px, 1.125rem);
  text-align: right;
}

@media (max-width: 767px) {
  .p-page-recruit__message-name {
    margin-top: 1.875rem;
    font-size: max(10px, 1rem);
  }
}
.p-page-content h2 {
  color: var(--main-color);
  font-size: max(10px, 1.25rem);
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.p-page-content p {
  line-height: 2;
  font-size: max(10px, 0.875rem);
  font-weight: 500;
  margin-block: 1em;
}

.p-page-content h2.p-page-content__main-title {
  font-size: max(10px, 1.5rem);
  color: var(--font-color);
}

.p-page-content__img--pdf {
  width: 9.875rem;
}

.p-page-single__inner {
  padding-top: 9.625rem;
  padding-bottom: 100px;
  max-width: 50rem;
  margin-inline: auto;
}

@media (max-width: 767px) {
  .p-page-single__inner {
    padding-top: 6.25rem;
    padding-bottom: 3.75rem;
  }
}
.p-page-single__category {
  font-size: max(10px, 0.875rem);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.p-page-single__title {
  font-size: max(10px, 1.5rem);
  font-weight: 700;
  line-height: 1.6666666667;
}

@media (max-width: 767px) {
  .p-page-single__title {
    font-size: max(10px, 1.25rem);
  }
}
.p-page-single__content {
  margin-top: 2.5rem;
  margin-top: 3rem;
  border-top: 1px solid #cccccc;
  padding-top: 3rem;
}

@media (max-width: 767px) {
  .p-page-single__content {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
}
.p-page-single__button {
  margin-top: 6.25rem;
  text-align: center;
}

@media (max-width: 767px) {
  .p-page-single__button {
    margin-top: 3.75rem;
  }
}
:root {
  --font-color: #000000;
  --main-color: #e60013;
  --main-color-dark: #001751;
  --bg-color: #fafafa;
}

:root {
  --main-font: YuGothic, "Yu Gothic Medium", "Yu Gothic", -apple-system,
    BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue,
    Verdana, Meiryo, sans-serif;
  --sub-font: "Outfit", "NotoSansJP", sans-serif;
}

/*=======================
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;
  }
}
@media (min-width: 768px) {
  .u-d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.u-bg-1 {
  background: var(--bg-color);
}

.u-bg-texture {
  background: url(../img/common/bg_noise-white.webp);
}

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

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

.u-bg-sub {
  background: var(--sub-color-1);
}

.u-bg-white {
  background: #fff;
}

.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;
}

@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;
  }
}
@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-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;
}

@media (min-width: 768px) {
  .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;
  }
}
@media (max-width: 767px) {
  .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-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;
}

@media (min-width: 768px) {
  .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;
  }
}
@media (max-width: 767px) {
  .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-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;
}

@media (min-width: 768px) {
  .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;
  }
}
@media (max-width: 767px) {
  .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-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;
}

@media (min-width: 768px) {
  .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;
  }
}
@media (max-width: 767px) {
  .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-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;
}

@media (min-width: 768px) {
  .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;
  }
}
@media (max-width: 767px) {
  .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-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;
}

@media (min-width: 768px) {
  .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;
  }
}
@media (max-width: 767px) {
  .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-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;
}

@media (min-width: 768px) {
  .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;
  }
}
@media (max-width: 767px) {
  .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-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;
}

@media (min-width: 768px) {
  .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;
  }
}
@media (max-width: 767px) {
  .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-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;
}

@media (min-width: 768px) {
  .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;
  }
}
@media (max-width: 767px) {
  .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-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;
}

@media (min-width: 768px) {
  .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;
  }
}
@media (max-width: 767px) {
  .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-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;
}

@media (min-width: 768px) {
  .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;
  }
}
@media (max-width: 767px) {
  .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-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;
}

@media (min-width: 768px) {
  .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;
  }
}
@media (max-width: 767px) {
  .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-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;
}

@media (min-width: 768px) {
  .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;
  }
}
@media (max-width: 767px) {
  .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-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;
}

@media (min-width: 768px) {
  .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;
  }
}
@media (max-width: 767px) {
  .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-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;
}

@media (min-width: 768px) {
  .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;
  }
}
@media (max-width: 767px) {
  .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-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;
}

@media (min-width: 768px) {
  .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;
  }
}
@media (max-width: 767px) {
  .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-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;
}

@media (min-width: 768px) {
  .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;
  }
}
@media (max-width: 767px) {
  .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-17 {
    padding-top: 4rem !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;
}

@media (min-width: 768px) {
  .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;
  }
}
@media (max-width: 767px) {
  .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-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;
}

@media (min-width: 768px) {
  .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;
  }
}
@media (max-width: 767px) {
  .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-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-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-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;
  }
}
@media (min-width: 768px) {
  .u-color-pc-font {
    color: var(--font-color);
  }
}
.u-color-font {
  color: var(--font-color);
}

@media (min-width: 768px) {
  .u-color-pc-main {
    color: var(--main-color);
  }
}
.u-color-main {
  color: var(--main-color);
}

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

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

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

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

@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: 767px) {
  .u-text-sm-center {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .u-text-sm-left {
    text-align: left !important;
  }
}
@media (max-width: 767px) {
  .u-text-sm-right {
    text-align: right !important;
  }
}
.u-font-sub {
  font-family: var(--sub-font);
}

.u-font-en {
  font-family: var(--en-font);
}

.u-gap--0 {
  gap: 0rem !important;
}

.u-gap-column-0 {
  -webkit-column-gap: 0rem !important;
  -moz-column-gap: 0rem !important;
  column-gap: 0rem !important;
}

.u-gap-row-0 {
  row-gap: 0rem !important;
}

@media (max-width: 767px) {
  .u-gap--sm-0 {
    gap: 0rem !important;
  }
  .u-gap-column-sm-0 {
    -webkit-column-gap: 0rem !important;
    -moz-column-gap: 0rem !important;
    column-gap: 0rem !important;
  }
  .u-gap-row-sm-0 {
    row-gap: 0rem !important;
  }
}
@media (min-width: 768px) {
  .u-gap--md-0 {
    gap: 0rem !important;
  }
  .u-gap-column-md-0 {
    -webkit-column-gap: 0rem !important;
    -moz-column-gap: 0rem !important;
    column-gap: 0rem !important;
  }
  .u-gap-row-md-0 {
    row-gap: 0rem !important;
  }
}
.u-gap--1 {
  gap: 0.5rem !important;
}

.u-gap-column-1 {
  -webkit-column-gap: 0.5rem !important;
  -moz-column-gap: 0.5rem !important;
  column-gap: 0.5rem !important;
}

.u-gap-row-1 {
  row-gap: 0.5rem !important;
}

@media (max-width: 767px) {
  .u-gap--sm-1 {
    gap: 0.5rem !important;
  }
  .u-gap-column-sm-1 {
    -webkit-column-gap: 0.5rem !important;
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  .u-gap-row-sm-1 {
    row-gap: 0.5rem !important;
  }
}
@media (min-width: 768px) {
  .u-gap--md-1 {
    gap: 0.5rem !important;
  }
  .u-gap-column-md-1 {
    -webkit-column-gap: 0.5rem !important;
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  .u-gap-row-md-1 {
    row-gap: 0.5rem !important;
  }
}
.u-gap--2 {
  gap: 1rem !important;
}

.u-gap-column-2 {
  -webkit-column-gap: 1rem !important;
  -moz-column-gap: 1rem !important;
  column-gap: 1rem !important;
}

.u-gap-row-2 {
  row-gap: 1rem !important;
}

@media (max-width: 767px) {
  .u-gap--sm-2 {
    gap: 1rem !important;
  }
  .u-gap-column-sm-2 {
    -webkit-column-gap: 1rem !important;
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .u-gap-row-sm-2 {
    row-gap: 1rem !important;
  }
}
@media (min-width: 768px) {
  .u-gap--md-2 {
    gap: 1rem !important;
  }
  .u-gap-column-md-2 {
    -webkit-column-gap: 1rem !important;
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .u-gap-row-md-2 {
    row-gap: 1rem !important;
  }
}
.u-gap--3 {
  gap: 1.5rem !important;
}

.u-gap-column-3 {
  -webkit-column-gap: 1.5rem !important;
  -moz-column-gap: 1.5rem !important;
  column-gap: 1.5rem !important;
}

.u-gap-row-3 {
  row-gap: 1.5rem !important;
}

@media (max-width: 767px) {
  .u-gap--sm-3 {
    gap: 1.5rem !important;
  }
  .u-gap-column-sm-3 {
    -webkit-column-gap: 1.5rem !important;
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .u-gap-row-sm-3 {
    row-gap: 1.5rem !important;
  }
}
@media (min-width: 768px) {
  .u-gap--md-3 {
    gap: 1.5rem !important;
  }
  .u-gap-column-md-3 {
    -webkit-column-gap: 1.5rem !important;
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .u-gap-row-md-3 {
    row-gap: 1.5rem !important;
  }
}
.u-gap--4 {
  gap: 2rem !important;
}

.u-gap-column-4 {
  -webkit-column-gap: 2rem !important;
  -moz-column-gap: 2rem !important;
  column-gap: 2rem !important;
}

.u-gap-row-4 {
  row-gap: 2rem !important;
}

@media (max-width: 767px) {
  .u-gap--sm-4 {
    gap: 2rem !important;
  }
  .u-gap-column-sm-4 {
    -webkit-column-gap: 2rem !important;
    -moz-column-gap: 2rem !important;
    column-gap: 2rem !important;
  }
  .u-gap-row-sm-4 {
    row-gap: 2rem !important;
  }
}
@media (min-width: 768px) {
  .u-gap--md-4 {
    gap: 2rem !important;
  }
  .u-gap-column-md-4 {
    -webkit-column-gap: 2rem !important;
    -moz-column-gap: 2rem !important;
    column-gap: 2rem !important;
  }
  .u-gap-row-md-4 {
    row-gap: 2rem !important;
  }
}
.u-gap--5 {
  gap: 2.5rem !important;
}

.u-gap-column-5 {
  -webkit-column-gap: 2.5rem !important;
  -moz-column-gap: 2.5rem !important;
  column-gap: 2.5rem !important;
}

.u-gap-row-5 {
  row-gap: 2.5rem !important;
}

@media (max-width: 767px) {
  .u-gap--sm-5 {
    gap: 2.5rem !important;
  }
  .u-gap-column-sm-5 {
    -webkit-column-gap: 2.5rem !important;
    -moz-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
  }
  .u-gap-row-sm-5 {
    row-gap: 2.5rem !important;
  }
}
@media (min-width: 768px) {
  .u-gap--md-5 {
    gap: 2.5rem !important;
  }
  .u-gap-column-md-5 {
    -webkit-column-gap: 2.5rem !important;
    -moz-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
  }
  .u-gap-row-md-5 {
    row-gap: 2.5rem !important;
  }
}
.u-gap--6 {
  gap: 3rem !important;
}

.u-gap-column-6 {
  -webkit-column-gap: 3rem !important;
  -moz-column-gap: 3rem !important;
  column-gap: 3rem !important;
}

.u-gap-row-6 {
  row-gap: 3rem !important;
}

@media (max-width: 767px) {
  .u-gap--sm-6 {
    gap: 3rem !important;
  }
  .u-gap-column-sm-6 {
    -webkit-column-gap: 3rem !important;
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }
  .u-gap-row-sm-6 {
    row-gap: 3rem !important;
  }
}
@media (min-width: 768px) {
  .u-gap--md-6 {
    gap: 3rem !important;
  }
  .u-gap-column-md-6 {
    -webkit-column-gap: 3rem !important;
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }
  .u-gap-row-md-6 {
    row-gap: 3rem !important;
  }
}
.u-gap--7 {
  gap: 3.5rem !important;
}

.u-gap-column-7 {
  -webkit-column-gap: 3.5rem !important;
  -moz-column-gap: 3.5rem !important;
  column-gap: 3.5rem !important;
}

.u-gap-row-7 {
  row-gap: 3.5rem !important;
}

@media (max-width: 767px) {
  .u-gap--sm-7 {
    gap: 3.5rem !important;
  }
  .u-gap-column-sm-7 {
    -webkit-column-gap: 3.5rem !important;
    -moz-column-gap: 3.5rem !important;
    column-gap: 3.5rem !important;
  }
  .u-gap-row-sm-7 {
    row-gap: 3.5rem !important;
  }
}
@media (min-width: 768px) {
  .u-gap--md-7 {
    gap: 3.5rem !important;
  }
  .u-gap-column-md-7 {
    -webkit-column-gap: 3.5rem !important;
    -moz-column-gap: 3.5rem !important;
    column-gap: 3.5rem !important;
  }
  .u-gap-row-md-7 {
    row-gap: 3.5rem !important;
  }
}
.u-gap--8 {
  gap: 4rem !important;
}

.u-gap-column-8 {
  -webkit-column-gap: 4rem !important;
  -moz-column-gap: 4rem !important;
  column-gap: 4rem !important;
}

.u-gap-row-8 {
  row-gap: 4rem !important;
}

@media (max-width: 767px) {
  .u-gap--sm-8 {
    gap: 4rem !important;
  }
  .u-gap-column-sm-8 {
    -webkit-column-gap: 4rem !important;
    -moz-column-gap: 4rem !important;
    column-gap: 4rem !important;
  }
  .u-gap-row-sm-8 {
    row-gap: 4rem !important;
  }
}
@media (min-width: 768px) {
  .u-gap--md-8 {
    gap: 4rem !important;
  }
  .u-gap-column-md-8 {
    -webkit-column-gap: 4rem !important;
    -moz-column-gap: 4rem !important;
    column-gap: 4rem !important;
  }
  .u-gap-row-md-8 {
    row-gap: 4rem !important;
  }
}
.u-gap--9 {
  gap: 4.5rem !important;
}

.u-gap-column-9 {
  -webkit-column-gap: 4.5rem !important;
  -moz-column-gap: 4.5rem !important;
  column-gap: 4.5rem !important;
}

.u-gap-row-9 {
  row-gap: 4.5rem !important;
}

@media (max-width: 767px) {
  .u-gap--sm-9 {
    gap: 4.5rem !important;
  }
  .u-gap-column-sm-9 {
    -webkit-column-gap: 4.5rem !important;
    -moz-column-gap: 4.5rem !important;
    column-gap: 4.5rem !important;
  }
  .u-gap-row-sm-9 {
    row-gap: 4.5rem !important;
  }
}
@media (min-width: 768px) {
  .u-gap--md-9 {
    gap: 4.5rem !important;
  }
  .u-gap-column-md-9 {
    -webkit-column-gap: 4.5rem !important;
    -moz-column-gap: 4.5rem !important;
    column-gap: 4.5rem !important;
  }
  .u-gap-row-md-9 {
    row-gap: 4.5rem !important;
  }
}
.u-gap--10 {
  gap: 5rem !important;
}

.u-gap-column-10 {
  -webkit-column-gap: 5rem !important;
  -moz-column-gap: 5rem !important;
  column-gap: 5rem !important;
}

.u-gap-row-10 {
  row-gap: 5rem !important;
}

@media (max-width: 767px) {
  .u-gap--sm-10 {
    gap: 5rem !important;
  }
  .u-gap-column-sm-10 {
    -webkit-column-gap: 5rem !important;
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
  }
  .u-gap-row-sm-10 {
    row-gap: 5rem !important;
  }
}
@media (min-width: 768px) {
  .u-gap--md-10 {
    gap: 5rem !important;
  }
  .u-gap-column-md-10 {
    -webkit-column-gap: 5rem !important;
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
  }
  .u-gap-row-md-10 {
    row-gap: 5rem !important;
  }
}
.u-gap--11 {
  gap: 5.5rem !important;
}

.u-gap-column-11 {
  -webkit-column-gap: 5.5rem !important;
  -moz-column-gap: 5.5rem !important;
  column-gap: 5.5rem !important;
}

.u-gap-row-11 {
  row-gap: 5.5rem !important;
}

@media (max-width: 767px) {
  .u-gap--sm-11 {
    gap: 5.5rem !important;
  }
  .u-gap-column-sm-11 {
    -webkit-column-gap: 5.5rem !important;
    -moz-column-gap: 5.5rem !important;
    column-gap: 5.5rem !important;
  }
  .u-gap-row-sm-11 {
    row-gap: 5.5rem !important;
  }
}
@media (min-width: 768px) {
  .u-gap--md-11 {
    gap: 5.5rem !important;
  }
  .u-gap-column-md-11 {
    -webkit-column-gap: 5.5rem !important;
    -moz-column-gap: 5.5rem !important;
    column-gap: 5.5rem !important;
  }
  .u-gap-row-md-11 {
    row-gap: 5.5rem !important;
  }
}
.u-gap--12 {
  gap: 6rem !important;
}

.u-gap-column-12 {
  -webkit-column-gap: 6rem !important;
  -moz-column-gap: 6rem !important;
  column-gap: 6rem !important;
}

.u-gap-row-12 {
  row-gap: 6rem !important;
}

@media (max-width: 767px) {
  .u-gap--sm-12 {
    gap: 6rem !important;
  }
  .u-gap-column-sm-12 {
    -webkit-column-gap: 6rem !important;
    -moz-column-gap: 6rem !important;
    column-gap: 6rem !important;
  }
  .u-gap-row-sm-12 {
    row-gap: 6rem !important;
  }
}
@media (min-width: 768px) {
  .u-gap--md-12 {
    gap: 6rem !important;
  }
  .u-gap-column-md-12 {
    -webkit-column-gap: 6rem !important;
    -moz-column-gap: 6rem !important;
    column-gap: 6rem !important;
  }
  .u-gap-row-md-12 {
    row-gap: 6rem !important;
  }
}
.u-gap--13 {
  gap: 6.5rem !important;
}

.u-gap-column-13 {
  -webkit-column-gap: 6.5rem !important;
  -moz-column-gap: 6.5rem !important;
  column-gap: 6.5rem !important;
}

.u-gap-row-13 {
  row-gap: 6.5rem !important;
}

@media (max-width: 767px) {
  .u-gap--sm-13 {
    gap: 6.5rem !important;
  }
  .u-gap-column-sm-13 {
    -webkit-column-gap: 6.5rem !important;
    -moz-column-gap: 6.5rem !important;
    column-gap: 6.5rem !important;
  }
  .u-gap-row-sm-13 {
    row-gap: 6.5rem !important;
  }
}
@media (min-width: 768px) {
  .u-gap--md-13 {
    gap: 6.5rem !important;
  }
  .u-gap-column-md-13 {
    -webkit-column-gap: 6.5rem !important;
    -moz-column-gap: 6.5rem !important;
    column-gap: 6.5rem !important;
  }
  .u-gap-row-md-13 {
    row-gap: 6.5rem !important;
  }
}
.u-gap--14 {
  gap: 7rem !important;
}

.u-gap-column-14 {
  -webkit-column-gap: 7rem !important;
  -moz-column-gap: 7rem !important;
  column-gap: 7rem !important;
}

.u-gap-row-14 {
  row-gap: 7rem !important;
}

@media (max-width: 767px) {
  .u-gap--sm-14 {
    gap: 7rem !important;
  }
  .u-gap-column-sm-14 {
    -webkit-column-gap: 7rem !important;
    -moz-column-gap: 7rem !important;
    column-gap: 7rem !important;
  }
  .u-gap-row-sm-14 {
    row-gap: 7rem !important;
  }
}
@media (min-width: 768px) {
  .u-gap--md-14 {
    gap: 7rem !important;
  }
  .u-gap-column-md-14 {
    -webkit-column-gap: 7rem !important;
    -moz-column-gap: 7rem !important;
    column-gap: 7rem !important;
  }
  .u-gap-row-md-14 {
    row-gap: 7rem !important;
  }
}
.u-gap--15 {
  gap: 7.5rem !important;
}

.u-gap-column-15 {
  -webkit-column-gap: 7.5rem !important;
  -moz-column-gap: 7.5rem !important;
  column-gap: 7.5rem !important;
}

.u-gap-row-15 {
  row-gap: 7.5rem !important;
}

@media (max-width: 767px) {
  .u-gap--sm-15 {
    gap: 7.5rem !important;
  }
  .u-gap-column-sm-15 {
    -webkit-column-gap: 7.5rem !important;
    -moz-column-gap: 7.5rem !important;
    column-gap: 7.5rem !important;
  }
  .u-gap-row-sm-15 {
    row-gap: 7.5rem !important;
  }
}
@media (min-width: 768px) {
  .u-gap--md-15 {
    gap: 7.5rem !important;
  }
  .u-gap-column-md-15 {
    -webkit-column-gap: 7.5rem !important;
    -moz-column-gap: 7.5rem !important;
    column-gap: 7.5rem !important;
  }
  .u-gap-row-md-15 {
    row-gap: 7.5rem !important;
  }
}
.u-gap--16 {
  gap: 8rem !important;
}

.u-gap-column-16 {
  -webkit-column-gap: 8rem !important;
  -moz-column-gap: 8rem !important;
  column-gap: 8rem !important;
}

.u-gap-row-16 {
  row-gap: 8rem !important;
}

@media (max-width: 767px) {
  .u-gap--sm-16 {
    gap: 8rem !important;
  }
  .u-gap-column-sm-16 {
    -webkit-column-gap: 8rem !important;
    -moz-column-gap: 8rem !important;
    column-gap: 8rem !important;
  }
  .u-gap-row-sm-16 {
    row-gap: 8rem !important;
  }
}
@media (min-width: 768px) {
  .u-gap--md-16 {
    gap: 8rem !important;
  }
  .u-gap-column-md-16 {
    -webkit-column-gap: 8rem !important;
    -moz-column-gap: 8rem !important;
    column-gap: 8rem !important;
  }
  .u-gap-row-md-16 {
    row-gap: 8rem !important;
  }
}
.u-gap--17 {
  gap: 8.5rem !important;
}

.u-gap-column-17 {
  -webkit-column-gap: 8.5rem !important;
  -moz-column-gap: 8.5rem !important;
  column-gap: 8.5rem !important;
}

.u-gap-row-17 {
  row-gap: 8.5rem !important;
}

@media (max-width: 767px) {
  .u-gap--sm-17 {
    gap: 8.5rem !important;
  }
  .u-gap-column-sm-17 {
    -webkit-column-gap: 8.5rem !important;
    -moz-column-gap: 8.5rem !important;
    column-gap: 8.5rem !important;
  }
  .u-gap-row-sm-17 {
    row-gap: 8.5rem !important;
  }
}
@media (min-width: 768px) {
  .u-gap--md-17 {
    gap: 8.5rem !important;
  }
  .u-gap-column-md-17 {
    -webkit-column-gap: 8.5rem !important;
    -moz-column-gap: 8.5rem !important;
    column-gap: 8.5rem !important;
  }
  .u-gap-row-md-17 {
    row-gap: 8.5rem !important;
  }
}
.u-gap--18 {
  gap: 9rem !important;
}

.u-gap-column-18 {
  -webkit-column-gap: 9rem !important;
  -moz-column-gap: 9rem !important;
  column-gap: 9rem !important;
}

.u-gap-row-18 {
  row-gap: 9rem !important;
}

@media (max-width: 767px) {
  .u-gap--sm-18 {
    gap: 9rem !important;
  }
  .u-gap-column-sm-18 {
    -webkit-column-gap: 9rem !important;
    -moz-column-gap: 9rem !important;
    column-gap: 9rem !important;
  }
  .u-gap-row-sm-18 {
    row-gap: 9rem !important;
  }
}
@media (min-width: 768px) {
  .u-gap--md-18 {
    gap: 9rem !important;
  }
  .u-gap-column-md-18 {
    -webkit-column-gap: 9rem !important;
    -moz-column-gap: 9rem !important;
    column-gap: 9rem !important;
  }
  .u-gap-row-md-18 {
    row-gap: 9rem !important;
  }
}
.u-gap--19 {
  gap: 9.5rem !important;
}

.u-gap-column-19 {
  -webkit-column-gap: 9.5rem !important;
  -moz-column-gap: 9.5rem !important;
  column-gap: 9.5rem !important;
}

.u-gap-row-19 {
  row-gap: 9.5rem !important;
}

@media (max-width: 767px) {
  .u-gap--sm-19 {
    gap: 9.5rem !important;
  }
  .u-gap-column-sm-19 {
    -webkit-column-gap: 9.5rem !important;
    -moz-column-gap: 9.5rem !important;
    column-gap: 9.5rem !important;
  }
  .u-gap-row-sm-19 {
    row-gap: 9.5rem !important;
  }
}
@media (min-width: 768px) {
  .u-gap--md-19 {
    gap: 9.5rem !important;
  }
  .u-gap-column-md-19 {
    -webkit-column-gap: 9.5rem !important;
    -moz-column-gap: 9.5rem !important;
    column-gap: 9.5rem !important;
  }
  .u-gap-row-md-19 {
    row-gap: 9.5rem !important;
  }
}
.u-gap--20 {
  gap: 10rem !important;
}

.u-gap-column-20 {
  -webkit-column-gap: 10rem !important;
  -moz-column-gap: 10rem !important;
  column-gap: 10rem !important;
}

.u-gap-row-20 {
  row-gap: 10rem !important;
}

@media (max-width: 767px) {
  .u-gap--sm-20 {
    gap: 10rem !important;
  }
  .u-gap-column-sm-20 {
    -webkit-column-gap: 10rem !important;
    -moz-column-gap: 10rem !important;
    column-gap: 10rem !important;
  }
  .u-gap-row-sm-20 {
    row-gap: 10rem !important;
  }
}
@media (min-width: 768px) {
  .u-gap--md-20 {
    gap: 10rem !important;
  }
  .u-gap-column-md-20 {
    -webkit-column-gap: 10rem !important;
    -moz-column-gap: 10rem !important;
    column-gap: 10rem !important;
  }
  .u-gap-row-md-20 {
    row-gap: 10rem !important;
  }
}
.u-position-relative {
  position: relative;
}

.u-position-absolute {
  position: absolute;
}

.u-width-full {
  width: 100% !important;
}

.u-text-shadow {
  text-shadow: var(--text-shadow);
}

.js-fade-in {
  -webkit-transform: translate3d(0, 3.125rem, 0);
  transform: translate3d(0, 3.125rem, 0);
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0;
}

.js-fade-in.is-visible {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.js-tab__buttons input[name="tab_item"] {
  display: none;
}

.js-accordion__content {
  overflow: hidden;
  height: 0;
  -webkit-transition: height 0.5s;
  transition: height 0.5s;
}

.u-fullscreen {
  margin-inline: calc(50% - 50vi);
}
