@charset "UTF-8";
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

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

article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

body {
  line-height: 1;
}

h1, h2, h3, h4, h5, h6 {
  -webkit-font-smoothing: antialiased;
}

img {
  vertical-align: top;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

html {
  overflow: auto;
  font-size: 62.5%;
}

body {
  color: #191919;
  font: 1.6rem/1.8 "Noto Sans JP", sans-serif;
  font-weight: 400;
  overflow-wrap: break-word;
  word-break: break-word;
  overflow: hidden;
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

a {
  color: #d90000;
}
a:hover, a:active, a:focus {
  color: #ff7373;
}
a {
  transition: 0.3s linear;
}

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

ol {
  padding-left: 1em;
}

em {
  font-style: normal;
  font-weight: bold;
}

h1 + h2,
h2 + h3,
h3 + h4 {
  margin-top: 0 !important;
}

.l-container {
  width: 100%;
  max-width: calc(1200px + 10rem);
  padding: 0 5rem;
  margin: 0 auto;
}
.l-container--sm {
  max-width: calc(720px + 10rem);
}
.l-container--md {
  max-width: calc(800px + 10rem);
}
.l-container--lg {
  max-width: calc(1200px + 10rem);
}
.l-container--xl {
  max-width: calc(1400px + 10rem);
}
@media (max-width: 575px) {
  .l-container {
    padding: 0 5%;
  }
}

.l-section {
  padding: 10rem 0;
}
@media (max-width: 767px) {
  .l-section {
    padding: 6rem 0;
  }
}

.l-header {
  position: relative;
  width: 100%;
  z-index: 100;
  background: #fff;
}
.l-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  animation: header-slide-down 0.4s ease;
}
.l-header--simple .l-header__inner {
  justify-content: center;
}
.l-header--simple .l-header__logo {
  margin-right: 0;
}
.l-header__inner {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  height: 90px;
  padding: 0 2.4rem 0 3.2rem;
}
@media (max-width: 767px) {
  .l-header__inner {
    height: 64px;
    padding: 0 1.6rem;
  }
}
.l-header__logo {
  margin-right: auto;
  line-height: 0;
}
.l-header__logo img {
  width: 276px;
}
@media (max-width: 1599px) {
  .l-header__logo img {
    width: 220px;
  }
}
@media (max-width: 767px) {
  .l-header__logo img {
    width: 200px;
  }
}
@media (max-width: 1399px) {
  .l-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 105;
    width: min(320px, 84%);
    height: 100vh;
    padding: 8rem 2.4rem 4rem;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .l-header__nav.is-open {
    transform: translateX(0);
  }
}
.l-header__menu {
  display: flex;
  align-items: center;
}
@media (max-width: 1399px) {
  .l-header__menu {
    display: block;
  }
}
.l-header__menu-item + .l-header__menu-item {
  border-left: 1px solid #dddddd;
}
@media (max-width: 1399px) {
  .l-header__menu-item + .l-header__menu-item {
    border-left: 0;
    border-top: 1px solid #dddddd;
  }
}
.l-header__menu-item a {
  display: block;
  padding: 0.4rem 1.2rem;
  color: #191919;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.4;
  white-space: nowrap;
  text-decoration: none;
}
.l-header__menu-item a:hover, .l-header__menu-item a:active, .l-header__menu-item a:focus {
  color: #d90000;
}
@media (max-width: 1399px) {
  .l-header__menu-item a {
    padding: 1.6rem 0.8rem;
  }
}
.l-header__btns {
  display: flex;
  gap: 1.2rem;
}
@media (max-width: 767px) {
  .l-header__btns {
    display: none;
  }
}
.l-header__burger {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 110;
}
@media (max-width: 1399px) {
  .l-header__burger {
    display: block;
  }
}
.l-header__burger span {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 2px;
  background: #191919;
  transform: translateX(-50%);
  transition: 0.3s ease;
}
.l-header__burger span:nth-of-type(1) {
  top: 14px;
}
.l-header__burger span:nth-of-type(2) {
  top: 21px;
}
.l-header__burger span:nth-of-type(3) {
  top: 28px;
}
.l-header__burger.is-open span:nth-of-type(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}
.l-header__burger.is-open span:nth-of-type(2) {
  opacity: 0;
}
.l-header__burger.is-open span:nth-of-type(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}
.l-header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}
.l-header__overlay.is-open {
  opacity: 1;
  visibility: visible;
}

@keyframes header-slide-down {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
body.is-locked {
  overflow: hidden;
}

body.has-fixed-header {
  padding-top: 90px;
}
@media (max-width: 767px) {
  body.has-fixed-header {
    padding-top: 64px;
  }
}

.l-footer {
  text-align: center;
  background: #fff;
  border-top: 1px solid #e6e6e6;
  padding: 5rem 0 4rem;
}
@media (max-width: 767px) {
  .l-footer {
    padding: 4rem 0 3rem;
  }
}
.l-footer__sme {
  padding-bottom: 4rem;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 4rem;
}
.l-footer__sme img {
  width: 400px;
}
@media (max-width: 767px) {
  .l-footer__sme img {
    width: 260px;
  }
}
.l-footer__link a {
  color: #191919;
  text-decoration: none;
}
.l-footer__link a:hover, .l-footer__link a:active, .l-footer__link a:focus {
  color: #d90000;
}
.l-footer__copy {
  display: block;
  margin-top: 2rem;
  color: #686868;
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .l-footer__copy {
    font-size: 1.2rem;
  }
}

.c-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 420px;
  max-width: 100%;
  min-height: 8.2rem;
  padding: 1rem 2rem;
  border-radius: 100px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, filter 0.3s ease;
}
@media (max-width: 1023px) {
  .c-btn {
    width: 100%;
    min-height: 6.4rem;
    font-size: 1.7rem;
  }
}
.c-btn__note {
  font-size: 1.4rem;
  font-weight: 500;
}
@media (max-width: 1023px) {
  .c-btn__note {
    font-size: 1.1rem;
  }
}
.c-btn--primary {
  background: linear-gradient(0deg, #f20000 0%, #d50000 100%);
  color: #fff;
}
@media (hover: hover) {
  .c-btn--primary:hover, .c-btn--primary:focus {
    color: #fff;
    filter: brightness(1.15);
  }
}
.c-btn--secondary {
  background: #fff;
  border: 3px solid #f20000;
  color: #d90000;
}
@media (hover: hover) {
  .c-btn--secondary:hover, .c-btn--secondary:focus {
    background: #d90000;
    border-color: #d90000;
    color: #fff;
  }
}
.c-btn--sm {
  width: auto;
  min-height: 0;
  padding: 1rem 2.4rem;
  font-size: 1.5rem;
  box-shadow: none;
}
.c-btn--lg {
  min-height: 9rem;
  font-size: 2.4rem;
}
@media (max-width: 1023px) {
  .c-btn--lg {
    min-height: 6.4rem;
    font-size: 1.7rem;
  }
}

.c-heading {
  text-align: center;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .c-heading {
    margin-bottom: 4rem;
  }
}
.c-heading__en {
  color: #d90000;
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
}
.c-heading__en::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  margin: 0.6rem auto 1rem;
  background: #d90000;
}
@media (max-width: 767px) {
  .c-heading__en {
    font-size: 1.4rem;
  }
}
.c-heading__jp {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 1023px) {
  .c-heading__jp {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) {
  .c-heading__jp {
    font-size: 2.2rem;
  }
}

.c-heading-lv3 {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 2rem;
}
@media (max-width: 1023px) {
  .c-heading-lv3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
}

.c-table {
  width: 100%;
  border-collapse: collapse;
}
.c-table th,
.c-table td {
  border-bottom: 1px solid #e6e6e6;
  padding: 2rem 1.5rem;
  text-align: left;
  vertical-align: top;
}
.c-table tr:last-child th,
.c-table tr:last-child td {
  border-bottom: 0;
}
.c-table th {
  white-space: nowrap;
  font-weight: bold;
}
@media (max-width: 767px) {
  .c-table th,
  .c-table td {
    padding: 1.4rem 1rem;
  }
}

.c-list-disc {
  list-style: disc;
  padding-left: 1.5em;
}

.c-list-indent {
  text-indent: -1em;
  padding-left: 1em;
}

.c-list-square > li {
  position: relative;
  padding-left: 0.8em;
  line-height: 1.6;
}
.c-list-square > li + li {
  margin-top: 0.4rem;
}
.c-list-square > li::before {
  content: "";
  position: absolute;
  top: calc(0.8em - 0.3rem);
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  background: #d90000;
}

.c-list-check > li {
  position: relative;
  padding-left: 2.6rem;
}
.c-list-check > li + li {
  margin-top: 1rem;
}
.c-list-check > li::before {
  content: "";
  position: absolute;
  top: calc(1em - 1rem);
  left: 0;
  width: 2rem;
  height: 2rem;
  background: url("../images/icon_check.svg") no-repeat center/contain;
}

.c-list-cross > li {
  position: relative;
  padding-left: 2.6rem;
}
.c-list-cross > li + li {
  margin-top: 1.6rem;
}
.c-list-cross > li::before {
  content: "";
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 2rem;
  height: 2rem;
  background: url("../images/icon_cross.svg") no-repeat center/contain;
}

.c-list-arrow > li {
  position: relative;
  padding-left: 2.7rem;
  font-weight: bold;
}
.c-list-arrow > li + li {
  margin-top: 1.4rem;
}
.c-list-arrow > li::before {
  content: "";
  position: absolute;
  top: calc(0.9em - 1rem);
  left: 0;
  width: 2rem;
  height: 2rem;
  background: url("../images/icon_arrow.svg") no-repeat center/contain;
}

.c-acc-icon {
  position: relative;
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #00299b;
}
.c-acc-icon::before, .c-acc-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%);
}
.c-acc-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.3s ease;
}

.is-open .c-acc-icon::after,
.is-open.c-acc-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.c-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 22px;
  background: #d90000;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
}
.c-badge--optional {
  background: #666;
}

.c-scroll-hint {
  position: relative;
}
.c-scroll-hint__label {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%);
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.8rem;
  border-radius: 100px;
  background: rgba(25, 25, 25, 0.72);
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  white-space: nowrap;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.c-scroll-hint__label::before, .c-scroll-hint__label::after {
  content: "";
  width: 0;
  height: 0;
  border-block: 4px solid transparent;
}
.c-scroll-hint__label::before {
  border-right: 6px solid #fff;
}
.c-scroll-hint__label::after {
  border-left: 6px solid #fff;
}
.c-scroll-hint.is-scrollable .c-scroll-hint__label {
  display: inline-flex;
}
.c-scroll-hint.is-scrolled .c-scroll-hint__label {
  opacity: 0;
}
.c-scroll-hint::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4rem;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.c-scroll-hint.is-scrollable:not(.is-end)::after {
  opacity: 1;
}

.c-pagetop {
  position: fixed;
  right: 2rem;
  bottom: 14rem;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.2rem;
  height: 6.2rem;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .c-pagetop {
    right: 1rem;
    bottom: 11rem;
    width: 40px;
    height: 40px;
  }
}
.c-pagetop::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #191919;
  border-right: 1px solid #191919;
  transform: rotate(-45deg) translate(-2px, 2px);
}
.c-pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

[id] {
  scroll-margin-top: 100px;
}
@media (max-width: 767px) {
  [id] {
    scroll-margin-top: 70px;
  }
}

html {
  scroll-behavior: smooth;
}

.p-hero {
  background-image: url("../images/bg_cross.svg"), linear-gradient(180deg, #f5f5f5 20%, #fff);
  background-repeat: repeat, no-repeat;
  background-size: auto, 100% 100%;
  padding: 6rem 0 8rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-hero {
    padding: 3rem 0 5rem;
  }
}
.p-hero__inner {
  display: flex;
  align-items: flex-end;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1599px) {
  .p-hero__inner {
    align-items: center;
  }
}
@media (max-width: 1023px) {
  .p-hero__inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
.p-hero__body {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 420px;
  padding-top: 2rem;
  text-align: center;
}
@media (max-width: 1023px) {
  .p-hero__body {
    display: contents;
  }
}
.p-hero__lead {
  color: #484848;
  font-size: clamp(1.6rem, 1.42vw, 1.8rem);
  font-weight: bold;
}
.p-hero__catch {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0 0.8rem;
  background: linear-gradient(transparent 58%, #ffdede 58%, #ffdede 93%, transparent 93%);
  background-size: calc(100% - 0.55em) 100%;
  background-repeat: no-repeat;
  color: #d90000;
  font-size: clamp(3.6rem, 4.58vw, 5.8rem);
  font-weight: 900;
  white-space: nowrap;
}
@media (max-width: 1023px) {
  .p-hero__catch {
    background-size: 100% 100%;
  }
}
.p-hero__catch-num {
  position: relative;
  top: 2px;
  font-family: "Roboto", sans-serif;
  font-size: clamp(9.4rem, 9.48vw, 12rem);
  font-weight: 900;
  line-height: 1;
}
.p-hero__sub {
  font-size: clamp(2rem, 1.9vw, 2.4rem);
  font-weight: bold;
  line-height: 1.5;
}
.p-hero__quote {
  display: inline-block;
  margin-top: 1rem;
  background: linear-gradient(transparent 60%, #dce9fa 0%);
  color: #00299b;
  font-size: clamp(1.6rem, 1.5vw, 1.9rem);
  font-weight: bold;
}
.p-hero__text {
  margin-top: 1.5rem;
  font-size: clamp(1.3rem, 1.11vw, 1.4rem);
  text-align: left;
}
.p-hero__btns {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 2rem;
}
@media (max-width: 1023px) {
  .p-hero__btns {
    order: 3;
    align-items: center;
    width: 100%;
    max-width: 460px;
    margin-top: 0;
  }
}
.p-hero__img {
  position: relative;
  flex: none;
  width: min(821px, 100% - 35rem);
  margin-left: -7rem;
}
@media (max-width: 1023px) {
  .p-hero__img {
    order: 2;
    width: 100%;
    max-width: 640px;
    margin-left: 0;
  }
}
.p-hero__illust {
  mix-blend-mode: darken;
}
@media (max-width: 767px) {
  .p-hero__illust {
    margin: 2rem 0 4rem;
  }
}
@media (min-width: 1024px) and (max-width: 1266px) {
  .p-hero__illust img {
    max-width: 109%;
  }
}
.p-hero__badge {
  position: absolute;
  right: -5rem;
  bottom: -4rem;
  width: 250px;
}
@media (min-width: 1024px) and (max-width: 1266px) {
  .p-hero__badge {
    bottom: -8rem;
  }
}
@media (max-width: 767px) {
  .p-hero__badge {
    right: -2rem;
    bottom: -2rem;
    width: 35vw;
  }
}

.p-intro {
  position: relative;
  overflow: hidden;
}
.p-intro > .l-container {
  position: relative;
  z-index: 1;
}
.p-intro > .l-container {
  position: relative;
  z-index: 1;
}
.p-intro::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4rem;
  z-index: 0;
  width: 118px;
  height: 134px;
  background: url("../images/deco_intro_br.png") no-repeat center/contain;
}
@media (max-width: 767px) {
  .p-intro::after {
    display: none;
  }
}
.p-intro::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 0;
  width: 222px;
  height: 263px;
  background: url("../images/deco_intro_tl.png") no-repeat center/contain;
}
@media (max-width: 767px) {
  .p-intro::before {
    display: none;
  }
}
.p-intro__catch {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.7;
}
.p-intro__catch em {
  font-size: 2.8rem;
}
@media (max-width: 1023px) {
  .p-intro__catch {
    font-size: 1.8rem;
  }
  .p-intro__catch em {
    font-size: 2.3rem;
  }
}
@media (max-width: 767px) {
  .p-intro__catch {
    font-size: 1.5rem;
  }
  .p-intro__catch em {
    font-size: 1.9rem;
  }
}
.p-intro__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 3rem;
}
.p-intro__tag {
  padding: 0.6rem 2rem;
  background: #ebf2fb;
  color: #00299b;
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .p-intro__tag {
    padding: 0.4rem 1.4rem;
    font-size: 1.4rem;
  }
}
.p-intro__cols {
  display: flex;
  justify-content: center;
  gap: 6rem;
  margin-top: 5rem;
}
@media (max-width: 1023px) {
  .p-intro__cols {
    gap: 3rem;
  }
}
@media (max-width: 767px) {
  .p-intro__cols {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }
}
.p-intro__col {
  width: 290px;
  text-align: center;
}
@media (max-width: 767px) {
  .p-intro__col {
    width: 260px;
  }
}
.p-intro__col-img {
  width: 250px;
}
.p-intro__col-text {
  margin-top: 1.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .p-intro__col-text {
    font-size: 1.6rem;
  }
}

.p-loss {
  position: relative;
  overflow: hidden;
}
.p-loss__box {
  background: #f5f5f5;
  border-radius: 40px;
  padding: 7rem 6rem;
}
@media (max-width: 767px) {
  .p-loss__box {
    border-radius: 20px;
    padding: 4rem 2rem;
  }
}
.p-loss__title {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.7;
}
.p-loss__title em {
  font-size: 3.6rem;
  padding: 0 0.4rem;
  background: linear-gradient(transparent 60%, #ffdede 60%, #ffdede 92%, transparent 92%);
}
.p-loss__title small {
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .p-loss__title {
    font-size: 1.7rem;
  }
  .p-loss__title em {
    font-size: 2.4rem;
  }
  .p-loss__title small {
    font-size: 1.1rem;
  }
}
.p-loss__note {
  margin-top: 1rem;
  font-size: 1.4rem;
  text-align: center;
  color: #666;
}
@media (max-width: 767px) {
  .p-loss__note {
    font-size: 1.1rem;
  }
}
.p-loss__lead {
  margin-top: 4rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .p-loss__lead {
    margin-top: 3rem;
    font-size: 1.5rem;
  }
}
.p-loss__cols {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 3rem auto 0;
}
@media (max-width: 1199px) {
  .p-loss__cols {
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
  }
}
.p-loss__list {
  flex-shrink: 0;
  width: 380px;
  padding: 2rem 1rem 2rem 2rem;
  background: #fff;
  border-radius: 20px;
  font-size: 1.6rem;
}
@media (max-width: 1023px) {
  .p-loss__list {
    flex-shrink: 1;
    width: 100%;
    max-width: 420px;
  }
}
@media (max-width: 767px) {
  .p-loss__list {
    font-size: 1.4rem;
  }
}
.p-loss__illust {
  flex-shrink: 0;
  width: 203px;
}
@media (max-width: 1023px) {
  .p-loss__illust {
    order: -1;
    width: 180px;
  }
}
.p-loss__arrow {
  width: 10rem;
  height: 3.6rem;
  margin: 2rem auto;
  background: #d90000;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media (max-width: 767px) {
  .p-loss__arrow {
    width: 6rem;
    height: 3rem;
    margin: 4rem auto 3rem;
  }
}
.p-loss__closing {
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-loss__closing {
    font-size: 1.4rem;
  }
}
.p-loss__inner-box {
  max-width: 1000px;
  background: #fff;
  border-radius: 12px;
  padding: 4rem;
  margin: 4rem auto 0;
  text-align: center;
}
@media (max-width: 767px) {
  .p-loss__inner-box {
    padding: 3rem 2rem;
  }
}
.p-loss__inner-title {
  display: inline;
  background: linear-gradient(transparent 60%, #ebf2fb 0%);
  padding: 0.6rem 1rem;
  color: #00299b;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .p-loss__inner-title {
    font-size: 1.7rem;
  }
}
.p-loss__inner-text {
  margin-top: 1rem;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .p-loss__inner-text {
    font-size: 1.4rem;
    text-align: left;
  }
}

.p-cause {
  position: relative;
  overflow: hidden;
}
.p-cause > .l-container {
  position: relative;
  z-index: 1;
}
.p-cause::before, .p-cause::after {
  content: "";
  position: absolute;
  z-index: 0;
}
@media (max-width: 767px) {
  .p-cause::before, .p-cause::after {
    display: none;
  }
}
.p-cause::before {
  top: 8rem;
  right: 0;
  width: 310px;
  height: 222px;
  background: url("../images/deco_cause_tr.png") no-repeat center/contain;
}
.p-cause::after {
  bottom: 6rem;
  left: 0;
  width: 175px;
  height: 193px;
  background: url("../images/deco_cause_bl.png") no-repeat center/contain;
}
.p-cause__lead {
  text-align: center;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .p-cause__lead {
    margin-bottom: 3rem;
  }
}
.p-cause__cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .p-cause__cards {
    flex-direction: column;
    align-items: center;
  }
}
.p-cause__card {
  flex: 1;
  max-width: 320px;
  border: 3px solid #e6e6e6;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  padding: 0.3rem 2.3rem 2.3rem;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .p-cause__card {
    flex: none;
    width: 100%;
    max-width: 420px;
  }
}
.p-cause__card-img {
  margin: -0.3rem -2.3rem 0;
  line-height: 0;
}
.p-cause__card-img img {
  width: 100%;
}
.p-cause__card-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.6rem;
}
.p-cause__card-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  flex-shrink: 0;
  width: 6.6rem;
  height: 6.6rem;
  border-radius: 50%;
  background: linear-gradient(0deg, #f20000 0%, #d50000 100%);
  color: #fff;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  font-size: 2.8rem;
  line-height: 1;
}
.p-cause__card-num span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
}
.p-cause__card-title {
  color: #d90000;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
}
.p-cause__card-text {
  margin-top: 1rem;
  font-size: 1.6rem;
  line-height: 1.6;
}
.p-cause__summary {
  max-width: 1000px;
  margin: 5rem auto 0;
  padding: 2.7rem 4.3rem;
  border: 3px solid #00299b;
  border-radius: 20px;
  background: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .p-cause__summary {
    padding: 2.4rem 2rem;
  }
}
.p-cause__summary-lead {
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .p-cause__summary-lead {
    font-size: 1.4rem;
  }
}
.p-cause__summary-lead em {
  color: #00299b;
}
.p-cause__summary-list {
  display: inline-block;
  margin: 1.2rem auto;
  text-align: left;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .p-cause__summary-list {
    font-size: 1.4rem;
  }
}
.p-cause__summary-list li::before {
  top: calc(0.8em - 0.3rem);
  width: 0.6rem;
  height: 0.6rem;
  background: #00299b;
}
.p-cause__summary-list li + li {
  margin-top: 0.2rem;
}
.p-cause__summary-closing {
  display: inline;
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(transparent 60%, #dce9fa 0%);
}
@media (max-width: 767px) {
  .p-cause__summary-closing {
    font-size: 1.5rem;
  }
}
.p-cause__summary-closing em {
  color: #00299b;
}

.p-band {
  background: linear-gradient(0deg, #f20000 0%, #d50000 100%);
  border-radius: 50px;
  margin: 0 2rem;
  padding: 3rem 3rem 4rem;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .p-band {
    border-radius: 20px;
    margin: 0 1rem;
    padding: 2.5rem 2rem 3.5rem;
  }
}
.p-band__icon {
  width: 110px;
  margin-bottom: 1.5rem;
}
.p-band__title {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 1023px) {
  .p-band__title {
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  .p-band__title {
    font-size: 1.8rem;
  }
}
.p-band__title em {
  color: #fff585;
}
.p-band__text {
  margin-top: 0.5rem;
  font-size: 2.2rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .p-band__text {
    font-size: 1.5rem;
  }
}

.p-reason {
  position: relative;
  overflow: hidden;
}
.p-reason > .l-container {
  position: relative;
  z-index: 1;
}
.p-reason::before, .p-reason::after {
  content: "";
  position: absolute;
  z-index: 0;
}
@media (max-width: 767px) {
  .p-reason::before, .p-reason::after {
    display: none;
  }
}
.p-reason::before {
  top: 6rem;
  right: 0;
  width: 208px;
  height: 199px;
  background: url("../images/deco_reason_tr.png") no-repeat center/contain;
}
.p-reason::after {
  bottom: 8rem;
  left: 0;
  width: 118px;
  height: 128px;
  background: url("../images/deco_reason_bl.png") no-repeat center/contain;
}
.p-reason__lead {
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .p-reason__lead {
    text-align: left;
    margin-bottom: 3rem;
  }
}
.p-reason__medals {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
@media (max-width: 767px) {
  .p-reason__medals {
    flex-wrap: wrap;
  }
}
.p-reason__medals img {
  width: 240px;
}
@media (max-width: 767px) {
  .p-reason__medals img {
    width: 200px;
  }
}
.p-reason__subtitle {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  max-width: 1000px;
  margin: 6rem auto 4rem;
  color: #d90000;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .p-reason__subtitle {
    gap: 1.4rem;
    margin: 4rem auto 3rem;
    font-size: 1.7rem;
  }
}
.p-reason__subtitle::before, .p-reason__subtitle::after {
  content: "";
  flex: 1;
  height: 2px;
  background: #d90000;
}
.p-reason__cards {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .p-reason__cards {
    flex-direction: column;
    align-items: center;
  }
}
.p-reason__card {
  flex: 1;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  border: 3px solid #ffe4e4;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  padding: 0.3rem 2.3rem 2.3rem;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .p-reason__card {
    flex: none;
    width: 100%;
    max-width: 420px;
  }
}
.p-reason__card-img {
  margin: -0.3rem -2.3rem 0;
  line-height: 0;
}
.p-reason__card-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: multiply;
}
.p-reason__card-body {
  flex: 1;
  padding-top: 1.6rem;
}
.p-reason__card-title {
  color: #d90000;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 0.8rem;
}
.p-reason__card-text {
  font-size: 1.6rem;
  line-height: 1.6;
}

.p-service {
  background-image: url("../images/bg_cross.svg"), linear-gradient(180deg, #fff4f4 0%, #f2f5fb 100%);
  background-repeat: repeat, no-repeat;
  background-size: auto, 100% 100%;
  border-radius: 80px;
  padding: 12rem 0;
}
@media (max-width: 767px) {
  .p-service {
    border-radius: 30px;
    padding: 6rem 0;
  }
}
.p-service__card {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border: 3px solid #d90000;
  border-radius: 14px;
  overflow: hidden;
}
.p-service__card + .p-service__card {
  margin-top: 4rem;
}
.p-service__card-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background: #d90000;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 1.3rem 2rem;
}
@media (max-width: 767px) {
  .p-service__card-head {
    font-size: 1.6rem;
    padding: 1.2rem 1.5rem;
  }
}
.p-service__card-num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: #fff;
  color: #d90000;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .p-service__card-num {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.5rem;
  }
}
.p-service__card-body {
  padding: 3.5rem 5rem;
}
@media (max-width: 767px) {
  .p-service__card-body {
    padding: 2.5rem 2rem;
  }
}
.p-service__card-target {
  margin-top: 1.5rem;
  font-weight: bold;
}
.p-service__card-cols {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-top: 3rem;
}
@media (max-width: 1023px) {
  .p-service__card-cols {
    flex-direction: column;
  }
}
.p-service__card-img {
  flex-shrink: 0;
  width: 380px;
}
@media (max-width: 1023px) {
  .p-service__card-img {
    width: 100%;
    max-width: 380px;
  }
}
.p-service__card-detail {
  flex: 1;
}
.p-service__label {
  background: #ebf2fb;
  color: #00299b;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0.6rem 1.6rem;
  margin-bottom: 2rem;
}
.p-service__check > li {
  font-weight: bold;
}
.p-service__check-sub {
  margin-top: 0.6rem;
  font-weight: normal;
}
.p-service__check-sub li + li {
  margin-top: 0.4rem;
}
.p-service__notes {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e6e6e6;
  color: #777;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .p-service__notes {
    font-size: 1.3rem;
  }
}

.p-flow__steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .p-flow__steps {
    flex-direction: column;
    gap: 2rem;
  }
}
.p-flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 260px;
  min-height: 222px;
  border-radius: 10px;
  background: #fef1f1;
  padding: 3rem 2rem;
  text-align: center;
}
.p-flow__step--gray {
  background: #f5f5f5;
}
@media (max-width: 1023px) {
  .p-flow__step {
    width: 100%;
    max-width: 400px;
  }
}
.p-flow__step-label {
  color: #cf1212;
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.p-flow__step-num {
  color: #cf1212;
  font-family: "Roboto", sans-serif;
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.2;
}
.p-flow__step-num::after {
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  margin: 0.4rem auto 0.8rem;
  background: #cf1212;
}
.p-flow__step-title {
  color: #cf1212;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 0.6rem;
}
.p-flow__step-text {
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-flow__step-text {
    font-size: 1.4rem;
  }
}
.p-flow__arrow {
  flex-shrink: 0;
  width: 1.5rem;
  height: 3.6rem;
  background: #cf1212;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media (max-width: 1023px) {
  .p-flow__arrow {
    width: 3.6rem;
    height: 1.5rem;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}

.p-change {
  background-image: url("../images/bg_cross.svg"), linear-gradient(180deg, #f6f6f6 0%, #fff4f4 100%);
  background-repeat: repeat, no-repeat;
  background-size: auto, 100% 100%;
  border-radius: 80px;
  padding: 12rem 0;
}
@media (max-width: 767px) {
  .p-change {
    border-radius: 30px;
    padding: 6rem 0;
  }
}
.p-change__cols {
  display: flex;
  align-items: center;
  gap: 4rem 3rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .p-change__cols {
    flex-direction: column;
  }
}
.p-change__list {
  flex: 1;
  font-size: 1.8rem;
}
.p-change__list li + li {
  margin-top: 0.8rem;
}
@media (max-width: 767px) {
  .p-change__list {
    font-size: 1.5rem;
  }
}
.p-change__photo {
  flex-shrink: 0;
  width: 412px;
  line-height: 0;
}
@media (max-width: 767px) {
  .p-change__photo {
    width: 100%;
    max-width: 340px;
  }
}
.p-change__btns {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  margin-top: 6rem;
}
@media (max-width: 1023px) {
  .p-change__btns {
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
    margin-top: 4rem;
  }
}

.p-inhouse {
  position: relative;
  overflow: hidden;
}
.p-inhouse > .l-container {
  position: relative;
  z-index: 1;
}
.p-inhouse::before, .p-inhouse::after {
  content: "";
  position: absolute;
  z-index: 0;
}
@media (max-width: 767px) {
  .p-inhouse::before, .p-inhouse::after {
    display: none;
  }
}
.p-inhouse::before {
  top: 6rem;
  left: 0;
  width: 305px;
  height: 285px;
  background: url("../images/deco_inhouse_tl.png") no-repeat center/contain;
}
.p-inhouse::after {
  bottom: 10rem;
  right: 0;
  width: 175px;
  height: 185px;
  background: url("../images/deco_inhouse_br.png") no-repeat center/contain;
}
.p-inhouse__lead {
  text-align: center;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .p-inhouse__lead {
    text-align: left;
    margin-bottom: 3rem;
  }
}
.p-inhouse__cols {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}
@media (max-width: 1023px) {
  .p-inhouse__cols {
    flex-direction: column;
    gap: 3rem;
  }
}
.p-inhouse__photo {
  flex-shrink: 0;
  width: 300px;
}
@media (max-width: 767px) {
  .p-inhouse__photo {
    width: 240px;
  }
}
.p-inhouse__detail {
  max-width: 610px;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .p-inhouse__detail {
    font-size: 1.4rem;
  }
}
.p-inhouse__list {
  margin: 1.5rem 0;
}
.p-inhouse__note-box {
  max-width: 640px;
  margin: 3rem auto 0;
  padding: 1.4rem 1.8rem;
  border: 3px solid #cacaca;
  border-radius: 8px;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .p-inhouse__note-box {
    padding: 2rem;
    font-size: 1.4rem;
  }
}
.p-inhouse__note-box em {
  color: #d90000;
}
.p-inhouse__table-wrap {
  max-width: 1000px;
  margin: 6rem auto 0;
  overflow-x: auto;
}
@media (max-width: 767px) {
  .p-inhouse__table-wrap {
    margin-top: 4rem;
  }
}
.p-inhouse__closing {
  margin-top: 4rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .p-inhouse__closing {
    margin-top: 3rem;
    font-size: 1.5rem;
    text-align: left;
  }
}

.p-compare-wrap {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.p-compare-wrap .p-compare-table {
  min-width: 560px;
}

.p-compare-table {
  width: 100%;
  min-width: 640px;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .p-compare-table {
    font-size: 1.3rem;
  }
}
.p-compare-table th,
.p-compare-table td {
  border: 1px solid #cacaca;
  padding: 1.8rem 2rem;
  text-align: left;
  vertical-align: middle;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-compare-table th,
  .p-compare-table td {
    padding: 1.2rem 1.4rem;
  }
}
.p-compare-table thead th {
  background: #f5f5f5;
  font-weight: bold;
}
.p-compare-table thead th:first-child {
  width: 220px;
}
@media (max-width: 767px) {
  .p-compare-table thead th:first-child {
    width: 130px;
  }
}
.p-compare-table thead th:not(:first-child) {
  text-align: center;
}
.p-compare-table thead th:last-child {
  background: #d90000;
  color: #fff;
}
.p-compare-table tbody th {
  background: #f5f5f5;
  font-weight: bold;
}
.p-compare-table tbody td {
  background: #fff;
}
.p-compare-table tbody td:last-child {
  background: #fff7f7;
  color: #cf1212;
  font-weight: bold;
}

.p-support {
  background-image: url("../images/bg_cross.svg"), linear-gradient(180deg, #f6f6f6 0%, #f2f5fb 100%);
  background-repeat: repeat, no-repeat;
  background-size: auto, 100% 100%;
  border-radius: 80px;
}
@media (max-width: 767px) {
  .p-support {
    border-radius: 30px;
  }
}
.p-support__lead {
  text-align: center;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .p-support__lead {
    text-align: left;
    margin-bottom: 3rem;
  }
}
.p-support__panel {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 4rem 5rem;
}
@media (max-width: 1023px) {
  .p-support__panel {
    padding: 3rem 2rem;
  }
}
.p-support__box {
  display: flex;
  gap: 3rem;
}
@media (max-width: 1023px) {
  .p-support__box {
    flex-direction: column;
  }
}
.p-support__box-col {
  flex: 1;
}
.p-support__box-col + .p-support__box-col {
  border-left: 1px dashed #dddddd;
  padding-left: 3rem;
}
@media (max-width: 1023px) {
  .p-support__box-col + .p-support__box-col {
    border-left: 0;
    border-top: 1px dashed #dddddd;
    padding-left: 0;
    padding-top: 3rem;
  }
}
.p-support__box-title {
  border-left: 6px solid #d90000;
  padding: 0.6rem 0 0.6rem 1.4rem;
  color: #d90000;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 1rem;
}
.p-support__box-title:not(:first-child) {
  margin-top: 2rem;
}
.p-support__box-text {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .p-support__box-text {
    font-size: 1.4rem;
  }
}
.p-support__note {
  color: #666;
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .p-support__note {
    font-size: 1.2rem;
  }
}
.p-support__cards {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 5rem;
}
@media (max-width: 1023px) {
  .p-support__cards {
    flex-direction: column;
    align-items: center;
  }
}
.p-support__card {
  flex: 1;
  max-width: 440px;
  background: #fff;
  border: 3px solid #e6e6e6;
  border-radius: 10px;
  padding: 2.3rem 2rem;
}
@media (max-width: 1023px) {
  .p-support__card {
    flex: none;
    width: 100%;
  }
}
.p-support__card-head {
  background: #e6e6e6;
  padding: 1rem;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  margin-bottom: 1rem;
}
.p-support__card-head--main {
  background: #d90000;
  color: #fff;
}
.p-support__card-img {
  line-height: 0;
}
.p-support__card-img img {
  width: 100%;
}

.p-case {
  background-image: url("../images/deco_case01.png"), url("../images/deco_case02.png");
  background-repeat: no-repeat;
  background-position: right top 10rem, left bottom 8rem;
}
@media (max-width: 767px) {
  .p-case {
    background-image: none;
  }
}
.p-case__item {
  max-width: 900px;
  margin: 0 auto;
  background: #fff7f7;
  border: 3px solid #ffe4e4;
  border-radius: 20px;
  padding: 4rem 6rem;
}
.p-case__item + .p-case__item {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .p-case__item {
    padding: 2rem;
  }
}
.p-case__head {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  color: inherit;
  -webkit-text-fill-color: currentColor;
  text-align: left;
  cursor: pointer;
}
@media (max-width: 767px) {
  .p-case__head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.6rem 1.4rem;
  }
}
@media (max-width: 767px) {
  .p-case__head .c-acc-icon {
    grid-column: 2;
    grid-row: 1;
  }
}
.p-case__avatar {
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .p-case__avatar {
    grid-column: 1/-1;
    grid-row: 2;
    justify-self: center;
    width: 110px;
    height: 110px;
    margin-top: 0.5rem;
  }
}
.p-case__head-body {
  flex: 1;
}
@media (max-width: 767px) {
  .p-case__head-body {
    grid-column: 1;
    grid-row: 1;
  }
}
.p-case__badges {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.p-case__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
  padding: 0.6rem 1rem;
  border-radius: 20px;
  background: #d90000;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
}
.p-case__badge span {
  font-family: "Roboto", sans-serif;
  font-size: 2.1rem;
}
.p-case__category {
  color: #d90000;
  font-size: 1.6rem;
  font-weight: bold;
}
.p-case__title {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-case__title {
    font-size: 1.6rem;
  }
}
.p-case__company {
  margin-top: 1rem;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .p-case__company {
    font-size: 1.2rem;
  }
}
.p-case__panel {
  display: none;
  background: #fff;
  border-radius: 10px;
  padding: 3rem 4rem;
  margin-top: 1.6rem;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .p-case__panel {
    padding: 2rem;
    font-size: 1.4rem;
  }
}
.is-open .p-case__panel {
  display: block;
}
.p-case__panel-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
}
.p-case__panel-title:not(:first-child) {
  margin-top: 2rem;
}

.p-faq {
  position: relative;
  overflow: hidden;
}
.p-faq > .l-container {
  position: relative;
  z-index: 1;
}
.p-faq::before, .p-faq::after {
  content: "";
  position: absolute;
  z-index: 0;
}
@media (max-width: 767px) {
  .p-faq::before, .p-faq::after {
    display: none;
  }
}
.p-faq::before {
  top: 6rem;
  left: 0;
  width: 315px;
  height: 213px;
  background: url("../images/deco_faq_tl.png") no-repeat center/contain;
}
.p-faq::after {
  bottom: 8rem;
  right: 0;
  width: 175px;
  height: 185px;
  background: url("../images/deco_faq_br.png") no-repeat center/contain;
}
.p-faq__item {
  background: #fff;
  border: 3px solid #e0e9f4 !important;
  border-radius: 10px;
  padding: 3rem 3rem 3rem 4rem;
}
.p-faq__item + .p-faq__item {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .p-faq__item {
    padding: 1.8rem 1.6rem;
  }
}
.p-faq__q {
  display: flex;
  align-items: center;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  color: inherit;
  -webkit-text-fill-color: currentColor;
  text-align: left;
  cursor: pointer;
}
.p-faq__q-mark {
  flex-shrink: 0;
  width: 5.3rem;
  color: #d90000;
  font-family: "Roboto", sans-serif;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-faq__q-mark {
    width: 3.6rem;
    font-size: 2.6rem;
  }
}
.p-faq__q-text {
  flex: 1;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-faq__q-text {
    font-size: 1.5rem;
  }
}
.p-faq__a {
  display: none;
  padding-top: 2rem;
}
.is-open .p-faq__a {
  display: flex;
}
.p-faq__a-mark {
  flex-shrink: 0;
  width: 5.3rem;
  color: #00299b;
  font-family: "Roboto", sans-serif;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 767px) {
  .p-faq__a-mark {
    width: 3.6rem;
    font-size: 2.6rem;
  }
}
.p-faq__a-text {
  flex: 1;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .p-faq__a-text {
    font-size: 1.4rem;
  }
}
.p-faq__a-text em {
  display: block;
}

.p-company {
  background-image: url("../images/bg_cross.svg"), linear-gradient(180deg, #f6f6f6 0%, #fff4f4 100%);
  background-repeat: repeat, no-repeat;
  background-size: auto, 100% 100%;
  border-radius: 80px;
}
@media (max-width: 767px) {
  .p-company {
    border-radius: 30px;
  }
}
.p-company__box {
  background: #fff;
  border-radius: 14px;
  padding: 3rem 6rem;
}
@media (max-width: 767px) {
  .p-company__box {
    padding: 1rem 2rem;
  }
}
.p-company__catch {
  color: #d90000;
  font-weight: bold;
  text-decoration: underline;
  margin-bottom: 1.6rem;
}
.p-company__biz-title {
  font-weight: bold;
}
.p-company__biz-title:not(:first-child) {
  margin-top: 2rem;
}
.p-company__biz-list {
  list-style: disc;
  padding-left: 1.5em;
  font-size: 1.4rem;
}
.p-company__biz-note {
  font-size: 1.2rem;
  color: #666;
}

.p-contact {
  position: relative;
  overflow: hidden;
}
.p-contact > .l-container {
  position: relative;
  z-index: 1;
}
.p-contact::before, .p-contact::after {
  content: "";
  position: absolute;
  z-index: 0;
}
@media (max-width: 767px) {
  .p-contact::before, .p-contact::after {
    display: none;
  }
}
.p-contact::before {
  top: 6rem;
  right: 0;
  width: 286px;
  height: 285px;
  background: url("../images/deco_contact_tr.png") no-repeat center/contain;
}
.p-contact::after {
  bottom: 10rem;
  left: 0;
  width: 118px;
  height: 128px;
  background: url("../images/deco_contact_bl.png") no-repeat center/contain;
}
.p-contact__lead {
  text-align: center;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .p-contact__lead {
    text-align: left;
    margin-bottom: 3rem;
  }
}
.p-contact__form {
  max-width: 800px;
  margin: 0 auto;
}
.p-contact__row {
  display: flex;
  align-items: flex-start;
  padding: 2.1rem 0;
  border-top: 1px solid #cacaca;
}
.p-contact__row:last-of-type {
  border-bottom: 1px solid #cacaca;
}
@media (max-width: 767px) {
  .p-contact__row {
    flex-direction: column;
    gap: 1rem;
    padding: 1.8rem 0;
  }
}
.p-contact__label {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-shrink: 0;
  width: 267px;
  padding-top: 1rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .p-contact__label {
    width: auto;
    padding-top: 0;
  }
}
.p-contact__field {
  flex: 1;
  width: 100%;
}
.p-contact__field input[type=text],
.p-contact__field input[type=email],
.p-contact__field input[type=tel],
.p-contact__field textarea {
  width: 100%;
  height: 50px;
  padding: 1rem 1.4rem;
  border: 0;
  border-radius: 0;
  background: #ececec;
  font: inherit;
}
.p-contact__field input[type=text]::-moz-placeholder, .p-contact__field input[type=email]::-moz-placeholder, .p-contact__field input[type=tel]::-moz-placeholder, .p-contact__field textarea::-moz-placeholder {
  color: #a1a1a1;
}
.p-contact__field input[type=text]::placeholder,
.p-contact__field input[type=email]::placeholder,
.p-contact__field input[type=tel]::placeholder,
.p-contact__field textarea::placeholder {
  color: #a1a1a1;
}
.p-contact__field input[type=text]:focus,
.p-contact__field input[type=email]:focus,
.p-contact__field input[type=tel]:focus,
.p-contact__field textarea:focus {
  outline: 2px solid #d90000;
}
.p-contact__field input[type=tel] {
  max-width: 293px;
}
.p-contact__field textarea {
  height: auto;
  min-height: 281px;
  resize: vertical;
}
.p-contact__radios {
  display: flex;
  gap: 2.6rem;
}
.p-contact__radios label {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  cursor: pointer;
}
.p-contact__radios input {
  accent-color: #00299b;
  width: 2.4rem;
  height: 2.4rem;
}
.p-contact__row:first-of-type .p-contact__label {
  padding-top: 0;
}
.p-contact__privacy {
  margin-top: 3rem;
  text-align: center;
}
.p-contact__privacy label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}
.p-contact__privacy input {
  width: 1.8rem;
  height: 1.8rem;
  accent-color: #d90000;
}
.p-contact__submit {
  position: relative;
  margin-top: 3rem;
  text-align: center;
}
.p-contact__submit .wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: 2rem;
  margin: 0;
  transform: translateY(-50%);
}
.p-contact button.c-btn {
  border: 0;
  cursor: pointer;
  font-family: inherit;
  -webkit-text-fill-color: currentColor;
  border-color: none;
}
.p-contact {
  /* 「プライバシーポリシーに同意する」未チェック時 */
}
.p-contact .wpcf7-submit:disabled {
  background: #999;
}
.p-contact {
  /* ボタンの線を削除 */
}
.p-contact .wpcf7 input[type=submit],
.p-contact .wpcf7 button {
  border: none;
  outline: none;
  box-shadow: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.p-contact {
  /* ラジオボタンの余白を右側に */
}
.p-contact .wpcf7-list-item {
  margin: 0 1rem 0 0;
}

.p-floating-cta {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 95;
  display: flex;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  padding: 1.2rem 2rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.p-floating-cta.is-hidden {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
@media (max-width: 767px) {
  .p-floating-cta {
    gap: 1rem;
    padding: 1rem;
  }
}
.p-floating-cta .c-btn {
  width: 420px;
  min-height: 9rem;
  font-size: 2.4rem;
}
@media (max-width: 1199px) {
  .p-floating-cta .c-btn {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .p-floating-cta .c-btn {
    width: 50%;
    min-height: 5.6rem;
    font-size: 1.3rem;
    padding: 0.8rem 1rem;
  }
}
@media (min-width: 768px) and (max-height: 850px) {
  .p-floating-cta .c-btn {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .p-floating-cta .c-btn__note {
    display: none;
  }
}

.p-thanks {
  background-image: url("../images/bg_cross.svg"), linear-gradient(180deg, #fcf4f4 0%, #f2f5fa 100%);
  background-repeat: repeat, no-repeat;
  background-size: auto, 100% 100%;
  padding: 10rem 0 12rem;
}
@media (max-width: 767px) {
  .p-thanks {
    padding: 5rem 0 6rem;
  }
}
.p-thanks__title {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 767px) {
  .p-thanks__title {
    font-size: 2.4rem;
  }
}
.p-thanks__title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  margin: 3rem auto 0;
  background: #d90000;
}
@media (max-width: 767px) {
  .p-thanks__title::after {
    margin-top: 2rem;
  }
}
.p-thanks__box {
  max-width: 880px;
  margin: 5rem auto 0;
  padding: 5rem;
  background: #fff;
  border-radius: 20px;
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
}
@media (max-width: 767px) {
  .p-thanks__box {
    margin-top: 3rem;
    padding: 3rem 2rem;
    font-size: 1.4rem;
    text-align: left;
  }
}
.p-thanks__box p {
  margin: 0;
}

.u-flex {
  display: flex;
}

@media (max-width: 1199px) {
  .u-flex--xl {
    display: flex !important;
  }
}
@media (max-width: 1023px) {
  .u-flex--lg {
    display: flex !important;
  }
}
@media (max-width: 767px) {
  .u-flex--md {
    display: flex !important;
  }
}
@media (max-width: 575px) {
  .u-flex--sm {
    display: flex !important;
  }
}
.u-justify-start {
  justify-content: flex-start;
}

@media (max-width: 1199px) {
  .u-justify-start--xl {
    justify-content: flex-start !important;
  }
}
@media (max-width: 1023px) {
  .u-justify-start--lg {
    justify-content: flex-start !important;
  }
}
@media (max-width: 767px) {
  .u-justify-start--md {
    justify-content: flex-start !important;
  }
}
@media (max-width: 575px) {
  .u-justify-start--sm {
    justify-content: flex-start !important;
  }
}
.u-justify-center {
  justify-content: center;
}

@media (max-width: 1199px) {
  .u-justify-center--xl {
    justify-content: center !important;
  }
}
@media (max-width: 1023px) {
  .u-justify-center--lg {
    justify-content: center !important;
  }
}
@media (max-width: 767px) {
  .u-justify-center--md {
    justify-content: center !important;
  }
}
@media (max-width: 575px) {
  .u-justify-center--sm {
    justify-content: center !important;
  }
}
.u-justify-between {
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .u-justify-between--xl {
    justify-content: space-between !important;
  }
}
@media (max-width: 1023px) {
  .u-justify-between--lg {
    justify-content: space-between !important;
  }
}
@media (max-width: 767px) {
  .u-justify-between--md {
    justify-content: space-between !important;
  }
}
@media (max-width: 575px) {
  .u-justify-between--sm {
    justify-content: space-between !important;
  }
}
.u-justify-around {
  justify-content: space-around;
}

@media (max-width: 1199px) {
  .u-justify-around--xl {
    justify-content: space-around !important;
  }
}
@media (max-width: 1023px) {
  .u-justify-around--lg {
    justify-content: space-around !important;
  }
}
@media (max-width: 767px) {
  .u-justify-around--md {
    justify-content: space-around !important;
  }
}
@media (max-width: 575px) {
  .u-justify-around--sm {
    justify-content: space-around !important;
  }
}
.u-justify-end {
  justify-content: flex-end;
}

@media (max-width: 1199px) {
  .u-justify-end--xl {
    justify-content: flex-end !important;
  }
}
@media (max-width: 1023px) {
  .u-justify-end--lg {
    justify-content: flex-end !important;
  }
}
@media (max-width: 767px) {
  .u-justify-end--md {
    justify-content: flex-end !important;
  }
}
@media (max-width: 575px) {
  .u-justify-end--sm {
    justify-content: flex-end !important;
  }
}
.u-items-start {
  align-items: flex-start;
}

@media (max-width: 1199px) {
  .u-items-start--xl {
    align-items: flex-start !important;
  }
}
@media (max-width: 1023px) {
  .u-items-start--lg {
    align-items: flex-start !important;
  }
}
@media (max-width: 767px) {
  .u-items-start--md {
    align-items: flex-start !important;
  }
}
@media (max-width: 575px) {
  .u-items-start--sm {
    align-items: flex-start !important;
  }
}
.u-items-center {
  align-items: center;
}

@media (max-width: 1199px) {
  .u-items-center--xl {
    align-items: center !important;
  }
}
@media (max-width: 1023px) {
  .u-items-center--lg {
    align-items: center !important;
  }
}
@media (max-width: 767px) {
  .u-items-center--md {
    align-items: center !important;
  }
}
@media (max-width: 575px) {
  .u-items-center--sm {
    align-items: center !important;
  }
}
.u-items-end {
  align-items: flex-end;
}

@media (max-width: 1199px) {
  .u-items-end--xl {
    align-items: flex-end !important;
  }
}
@media (max-width: 1023px) {
  .u-items-end--lg {
    align-items: flex-end !important;
  }
}
@media (max-width: 767px) {
  .u-items-end--md {
    align-items: flex-end !important;
  }
}
@media (max-width: 575px) {
  .u-items-end--sm {
    align-items: flex-end !important;
  }
}
.u-flex-wrap {
  flex-wrap: wrap;
}

@media (max-width: 1199px) {
  .u-flex-wrap--xl {
    flex-wrap: wrap !important;
  }
}
@media (max-width: 1023px) {
  .u-flex-wrap--lg {
    flex-wrap: wrap !important;
  }
}
@media (max-width: 767px) {
  .u-flex-wrap--md {
    flex-wrap: wrap !important;
  }
}
@media (max-width: 575px) {
  .u-flex-wrap--sm {
    flex-wrap: wrap !important;
  }
}
.u-flex-nowrap {
  flex-wrap: nowrap;
}

@media (max-width: 1199px) {
  .u-flex-nowrap--xl {
    flex-wrap: nowrap !important;
  }
}
@media (max-width: 1023px) {
  .u-flex-nowrap--lg {
    flex-wrap: nowrap !important;
  }
}
@media (max-width: 767px) {
  .u-flex-nowrap--md {
    flex-wrap: nowrap !important;
  }
}
@media (max-width: 575px) {
  .u-flex-nowrap--sm {
    flex-wrap: nowrap !important;
  }
}
.u-flex-column {
  flex-direction: column;
}

@media (max-width: 1199px) {
  .u-flex-column--xl {
    flex-direction: column !important;
  }
}
@media (max-width: 1023px) {
  .u-flex-column--lg {
    flex-direction: column !important;
  }
}
@media (max-width: 767px) {
  .u-flex-column--md {
    flex-direction: column !important;
  }
}
@media (max-width: 575px) {
  .u-flex-column--sm {
    flex-direction: column !important;
  }
}
.u-flex-row-reverse {
  flex-direction: row-reverse;
}

@media (max-width: 1199px) {
  .u-flex-row-reverse--xl {
    flex-direction: row-reverse !important;
  }
}
@media (max-width: 1023px) {
  .u-flex-row-reverse--lg {
    flex-direction: row-reverse !important;
  }
}
@media (max-width: 767px) {
  .u-flex-row-reverse--md {
    flex-direction: row-reverse !important;
  }
}
@media (max-width: 575px) {
  .u-flex-row-reverse--sm {
    flex-direction: row-reverse !important;
  }
}
.block {
  display: block;
}

@media (max-width: 1599px) {
  .block-xxl {
    display: block !important;
  }
}
@media (max-width: 1199px) {
  .block-xl {
    display: block !important;
  }
}
@media (max-width: 1023px) {
  .block-lg {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .block-md {
    display: block !important;
  }
}
@media (max-width: 575px) {
  .block-sm {
    display: block !important;
  }
}
.inline-block {
  display: inline-block;
}

@media (max-width: 1599px) {
  .inline-block-xxl {
    display: inline-block !important;
  }
}
@media (max-width: 1199px) {
  .inline-block-xl {
    display: inline-block !important;
  }
}
@media (max-width: 1023px) {
  .inline-block-lg {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .inline-block-md {
    display: inline-block !important;
  }
}
@media (max-width: 575px) {
  .inline-block-sm {
    display: inline-block !important;
  }
}
.none {
  display: none;
}

@media (max-width: 1599px) {
  .none-xxl {
    display: none !important;
  }
}
@media (max-width: 1199px) {
  .none-xl {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  .none-lg {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .none-md {
    display: none !important;
  }
}
@media (max-width: 575px) {
  .none-sm {
    display: none !important;
  }
}
.u-text-left {
  text-align: left;
}

@media (max-width: 1199px) {
  .u-text-left--xl {
    text-align: left !important;
  }
}
@media (max-width: 1023px) {
  .u-text-left--lg {
    text-align: left !important;
  }
}
@media (max-width: 767px) {
  .u-text-left--md {
    text-align: left !important;
  }
}
@media (max-width: 575px) {
  .u-text-left--sm {
    text-align: left !important;
  }
}
.u-text-center {
  text-align: center;
}

@media (max-width: 1199px) {
  .u-text-center--xl {
    text-align: center !important;
  }
}
@media (max-width: 1023px) {
  .u-text-center--lg {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .u-text-center--md {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .u-text-center--sm {
    text-align: center !important;
  }
}
.u-text-right {
  text-align: right;
}

@media (max-width: 1199px) {
  .u-text-right--xl {
    text-align: right !important;
  }
}
@media (max-width: 1023px) {
  .u-text-right--lg {
    text-align: right !important;
  }
}
@media (max-width: 767px) {
  .u-text-right--md {
    text-align: right !important;
  }
}
@media (max-width: 575px) {
  .u-text-right--sm {
    text-align: right !important;
  }
}
.u-bold {
  font-weight: bold;
}

.u-normal {
  font-weight: normal;
}

.u-font-en {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
}

.u-font-mincho {
  font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

.u-marker {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 80%, #fffa73 0%) repeat scroll 0 0;
}

.u-fs-10 {
  font-size: 1rem;
}

@media (max-width: 1199px) {
  .u-fs-10--xl {
    font-size: 1rem !important;
  }
}
@media (max-width: 1023px) {
  .u-fs-10--lg {
    font-size: 1rem !important;
  }
}
@media (max-width: 767px) {
  .u-fs-10--md {
    font-size: 1rem !important;
  }
}
@media (max-width: 575px) {
  .u-fs-10--sm {
    font-size: 1rem !important;
  }
}
.u-fs-11 {
  font-size: 1.1rem;
}

@media (max-width: 1199px) {
  .u-fs-11--xl {
    font-size: 1.1rem !important;
  }
}
@media (max-width: 1023px) {
  .u-fs-11--lg {
    font-size: 1.1rem !important;
  }
}
@media (max-width: 767px) {
  .u-fs-11--md {
    font-size: 1.1rem !important;
  }
}
@media (max-width: 575px) {
  .u-fs-11--sm {
    font-size: 1.1rem !important;
  }
}
.u-fs-12 {
  font-size: 1.2rem;
}

@media (max-width: 1199px) {
  .u-fs-12--xl {
    font-size: 1.2rem !important;
  }
}
@media (max-width: 1023px) {
  .u-fs-12--lg {
    font-size: 1.2rem !important;
  }
}
@media (max-width: 767px) {
  .u-fs-12--md {
    font-size: 1.2rem !important;
  }
}
@media (max-width: 575px) {
  .u-fs-12--sm {
    font-size: 1.2rem !important;
  }
}
.u-fs-13 {
  font-size: 1.3rem;
}

@media (max-width: 1199px) {
  .u-fs-13--xl {
    font-size: 1.3rem !important;
  }
}
@media (max-width: 1023px) {
  .u-fs-13--lg {
    font-size: 1.3rem !important;
  }
}
@media (max-width: 767px) {
  .u-fs-13--md {
    font-size: 1.3rem !important;
  }
}
@media (max-width: 575px) {
  .u-fs-13--sm {
    font-size: 1.3rem !important;
  }
}
.u-fs-14 {
  font-size: 1.4rem;
}

@media (max-width: 1199px) {
  .u-fs-14--xl {
    font-size: 1.4rem !important;
  }
}
@media (max-width: 1023px) {
  .u-fs-14--lg {
    font-size: 1.4rem !important;
  }
}
@media (max-width: 767px) {
  .u-fs-14--md {
    font-size: 1.4rem !important;
  }
}
@media (max-width: 575px) {
  .u-fs-14--sm {
    font-size: 1.4rem !important;
  }
}
.u-fs-15 {
  font-size: 1.5rem;
}

@media (max-width: 1199px) {
  .u-fs-15--xl {
    font-size: 1.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-fs-15--lg {
    font-size: 1.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-fs-15--md {
    font-size: 1.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-fs-15--sm {
    font-size: 1.5rem !important;
  }
}
.u-fs-16 {
  font-size: 1.6rem;
}

@media (max-width: 1199px) {
  .u-fs-16--xl {
    font-size: 1.6rem !important;
  }
}
@media (max-width: 1023px) {
  .u-fs-16--lg {
    font-size: 1.6rem !important;
  }
}
@media (max-width: 767px) {
  .u-fs-16--md {
    font-size: 1.6rem !important;
  }
}
@media (max-width: 575px) {
  .u-fs-16--sm {
    font-size: 1.6rem !important;
  }
}
.u-fs-17 {
  font-size: 1.7rem;
}

@media (max-width: 1199px) {
  .u-fs-17--xl {
    font-size: 1.7rem !important;
  }
}
@media (max-width: 1023px) {
  .u-fs-17--lg {
    font-size: 1.7rem !important;
  }
}
@media (max-width: 767px) {
  .u-fs-17--md {
    font-size: 1.7rem !important;
  }
}
@media (max-width: 575px) {
  .u-fs-17--sm {
    font-size: 1.7rem !important;
  }
}
.u-fs-18 {
  font-size: 1.8rem;
}

@media (max-width: 1199px) {
  .u-fs-18--xl {
    font-size: 1.8rem !important;
  }
}
@media (max-width: 1023px) {
  .u-fs-18--lg {
    font-size: 1.8rem !important;
  }
}
@media (max-width: 767px) {
  .u-fs-18--md {
    font-size: 1.8rem !important;
  }
}
@media (max-width: 575px) {
  .u-fs-18--sm {
    font-size: 1.8rem !important;
  }
}
.u-fs-19 {
  font-size: 1.9rem;
}

@media (max-width: 1199px) {
  .u-fs-19--xl {
    font-size: 1.9rem !important;
  }
}
@media (max-width: 1023px) {
  .u-fs-19--lg {
    font-size: 1.9rem !important;
  }
}
@media (max-width: 767px) {
  .u-fs-19--md {
    font-size: 1.9rem !important;
  }
}
@media (max-width: 575px) {
  .u-fs-19--sm {
    font-size: 1.9rem !important;
  }
}
.u-fs-20 {
  font-size: 2rem;
}

@media (max-width: 1199px) {
  .u-fs-20--xl {
    font-size: 2rem !important;
  }
}
@media (max-width: 1023px) {
  .u-fs-20--lg {
    font-size: 2rem !important;
  }
}
@media (max-width: 767px) {
  .u-fs-20--md {
    font-size: 2rem !important;
  }
}
@media (max-width: 575px) {
  .u-fs-20--sm {
    font-size: 2rem !important;
  }
}
.u-fs-21 {
  font-size: 2.1rem;
}

@media (max-width: 1199px) {
  .u-fs-21--xl {
    font-size: 2.1rem !important;
  }
}
@media (max-width: 1023px) {
  .u-fs-21--lg {
    font-size: 2.1rem !important;
  }
}
@media (max-width: 767px) {
  .u-fs-21--md {
    font-size: 2.1rem !important;
  }
}
@media (max-width: 575px) {
  .u-fs-21--sm {
    font-size: 2.1rem !important;
  }
}
.u-fs-22 {
  font-size: 2.2rem;
}

@media (max-width: 1199px) {
  .u-fs-22--xl {
    font-size: 2.2rem !important;
  }
}
@media (max-width: 1023px) {
  .u-fs-22--lg {
    font-size: 2.2rem !important;
  }
}
@media (max-width: 767px) {
  .u-fs-22--md {
    font-size: 2.2rem !important;
  }
}
@media (max-width: 575px) {
  .u-fs-22--sm {
    font-size: 2.2rem !important;
  }
}
.u-fs-23 {
  font-size: 2.3rem;
}

@media (max-width: 1199px) {
  .u-fs-23--xl {
    font-size: 2.3rem !important;
  }
}
@media (max-width: 1023px) {
  .u-fs-23--lg {
    font-size: 2.3rem !important;
  }
}
@media (max-width: 767px) {
  .u-fs-23--md {
    font-size: 2.3rem !important;
  }
}
@media (max-width: 575px) {
  .u-fs-23--sm {
    font-size: 2.3rem !important;
  }
}
.u-fs-24 {
  font-size: 2.4rem;
}

@media (max-width: 1199px) {
  .u-fs-24--xl {
    font-size: 2.4rem !important;
  }
}
@media (max-width: 1023px) {
  .u-fs-24--lg {
    font-size: 2.4rem !important;
  }
}
@media (max-width: 767px) {
  .u-fs-24--md {
    font-size: 2.4rem !important;
  }
}
@media (max-width: 575px) {
  .u-fs-24--sm {
    font-size: 2.4rem !important;
  }
}
.u-fs-25 {
  font-size: 2.5rem;
}

@media (max-width: 1199px) {
  .u-fs-25--xl {
    font-size: 2.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-fs-25--lg {
    font-size: 2.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-fs-25--md {
    font-size: 2.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-fs-25--sm {
    font-size: 2.5rem !important;
  }
}
.u-fs-26 {
  font-size: 2.6rem;
}

@media (max-width: 1199px) {
  .u-fs-26--xl {
    font-size: 2.6rem !important;
  }
}
@media (max-width: 1023px) {
  .u-fs-26--lg {
    font-size: 2.6rem !important;
  }
}
@media (max-width: 767px) {
  .u-fs-26--md {
    font-size: 2.6rem !important;
  }
}
@media (max-width: 575px) {
  .u-fs-26--sm {
    font-size: 2.6rem !important;
  }
}
.u-fs-27 {
  font-size: 2.7rem;
}

@media (max-width: 1199px) {
  .u-fs-27--xl {
    font-size: 2.7rem !important;
  }
}
@media (max-width: 1023px) {
  .u-fs-27--lg {
    font-size: 2.7rem !important;
  }
}
@media (max-width: 767px) {
  .u-fs-27--md {
    font-size: 2.7rem !important;
  }
}
@media (max-width: 575px) {
  .u-fs-27--sm {
    font-size: 2.7rem !important;
  }
}
.u-fs-28 {
  font-size: 2.8rem;
}

@media (max-width: 1199px) {
  .u-fs-28--xl {
    font-size: 2.8rem !important;
  }
}
@media (max-width: 1023px) {
  .u-fs-28--lg {
    font-size: 2.8rem !important;
  }
}
@media (max-width: 767px) {
  .u-fs-28--md {
    font-size: 2.8rem !important;
  }
}
@media (max-width: 575px) {
  .u-fs-28--sm {
    font-size: 2.8rem !important;
  }
}
.u-fs-29 {
  font-size: 2.9rem;
}

@media (max-width: 1199px) {
  .u-fs-29--xl {
    font-size: 2.9rem !important;
  }
}
@media (max-width: 1023px) {
  .u-fs-29--lg {
    font-size: 2.9rem !important;
  }
}
@media (max-width: 767px) {
  .u-fs-29--md {
    font-size: 2.9rem !important;
  }
}
@media (max-width: 575px) {
  .u-fs-29--sm {
    font-size: 2.9rem !important;
  }
}
.u-fs-30 {
  font-size: 3rem;
}

@media (max-width: 1199px) {
  .u-fs-30--xl {
    font-size: 3rem !important;
  }
}
@media (max-width: 1023px) {
  .u-fs-30--lg {
    font-size: 3rem !important;
  }
}
@media (max-width: 767px) {
  .u-fs-30--md {
    font-size: 3rem !important;
  }
}
@media (max-width: 575px) {
  .u-fs-30--sm {
    font-size: 3rem !important;
  }
}
.u-lh-1 {
  line-height: 1.1;
}

@media (max-width: 1199px) {
  .u-lh-1--xl {
    line-height: 1.1 !important;
  }
}
@media (max-width: 1023px) {
  .u-lh-1--lg {
    line-height: 1.1 !important;
  }
}
@media (max-width: 767px) {
  .u-lh-1--md {
    line-height: 1.1 !important;
  }
}
@media (max-width: 575px) {
  .u-lh-1--sm {
    line-height: 1.1 !important;
  }
}
.u-lh-2 {
  line-height: 1.2;
}

@media (max-width: 1199px) {
  .u-lh-2--xl {
    line-height: 1.2 !important;
  }
}
@media (max-width: 1023px) {
  .u-lh-2--lg {
    line-height: 1.2 !important;
  }
}
@media (max-width: 767px) {
  .u-lh-2--md {
    line-height: 1.2 !important;
  }
}
@media (max-width: 575px) {
  .u-lh-2--sm {
    line-height: 1.2 !important;
  }
}
.u-lh-3 {
  line-height: 1.3;
}

@media (max-width: 1199px) {
  .u-lh-3--xl {
    line-height: 1.3 !important;
  }
}
@media (max-width: 1023px) {
  .u-lh-3--lg {
    line-height: 1.3 !important;
  }
}
@media (max-width: 767px) {
  .u-lh-3--md {
    line-height: 1.3 !important;
  }
}
@media (max-width: 575px) {
  .u-lh-3--sm {
    line-height: 1.3 !important;
  }
}
.u-lh-4 {
  line-height: 1.4;
}

@media (max-width: 1199px) {
  .u-lh-4--xl {
    line-height: 1.4 !important;
  }
}
@media (max-width: 1023px) {
  .u-lh-4--lg {
    line-height: 1.4 !important;
  }
}
@media (max-width: 767px) {
  .u-lh-4--md {
    line-height: 1.4 !important;
  }
}
@media (max-width: 575px) {
  .u-lh-4--sm {
    line-height: 1.4 !important;
  }
}
.u-lh-5 {
  line-height: 1.5;
}

@media (max-width: 1199px) {
  .u-lh-5--xl {
    line-height: 1.5 !important;
  }
}
@media (max-width: 1023px) {
  .u-lh-5--lg {
    line-height: 1.5 !important;
  }
}
@media (max-width: 767px) {
  .u-lh-5--md {
    line-height: 1.5 !important;
  }
}
@media (max-width: 575px) {
  .u-lh-5--sm {
    line-height: 1.5 !important;
  }
}
.u-lh-6 {
  line-height: 1.6;
}

@media (max-width: 1199px) {
  .u-lh-6--xl {
    line-height: 1.6 !important;
  }
}
@media (max-width: 1023px) {
  .u-lh-6--lg {
    line-height: 1.6 !important;
  }
}
@media (max-width: 767px) {
  .u-lh-6--md {
    line-height: 1.6 !important;
  }
}
@media (max-width: 575px) {
  .u-lh-6--sm {
    line-height: 1.6 !important;
  }
}
.u-color-main {
  color: #d90000 !important;
}

.u-bg-main {
  background: #d90000 !important;
}

.u-color-main-dark {
  color: #cf1212 !important;
}

.u-bg-main-dark {
  background: #cf1212 !important;
}

.u-color-red-bright {
  color: #f20000 !important;
}

.u-bg-red-bright {
  background: #f20000 !important;
}

.u-color-accent01 {
  color: #00299b !important;
}

.u-bg-accent01 {
  background: #00299b !important;
}

.u-color-text {
  color: #191919 !important;
}

.u-bg-text {
  background: #191919 !important;
}

.u-color-gray01 {
  color: #484848 !important;
}

.u-bg-gray01 {
  background: #484848 !important;
}

.u-color-pink01 {
  color: #fef3f3 !important;
}

.u-bg-pink01 {
  background: #fef3f3 !important;
}

.u-color-pink02 {
  color: #ffdede !important;
}

.u-bg-pink02 {
  background: #ffdede !important;
}

.u-color-pink03 {
  color: #fef1f1 !important;
}

.u-bg-pink03 {
  background: #fef1f1 !important;
}

.u-color-light-blue01 {
  color: #ebf2fb !important;
}

.u-bg-light-blue01 {
  background: #ebf2fb !important;
}

.u-color-light-blue02 {
  color: #dce9fa !important;
}

.u-bg-light-blue02 {
  background: #dce9fa !important;
}

.u-color-light-blue03 {
  color: #f4f7fd !important;
}

.u-bg-light-blue03 {
  background: #f4f7fd !important;
}

.u-color-light-blue05 {
  color: #e0e9f4 !important;
}

.u-bg-light-blue05 {
  background: #e0e9f4 !important;
}

.u-color-light-blue04 {
  color: #f2f5fb !important;
}

.u-bg-light-blue04 {
  background: #f2f5fb !important;
}

.u-color-yellow01 {
  color: #fff585 !important;
}

.u-bg-yellow01 {
  background: #fff585 !important;
}

.u-color-pink04 {
  color: #ffe4e4 !important;
}

.u-bg-pink04 {
  background: #ffe4e4 !important;
}

.u-color-pink05 {
  color: #fff4f4 !important;
}

.u-bg-pink05 {
  background: #fff4f4 !important;
}

.u-color-light-gray01 {
  color: #f7f7f7 !important;
}

.u-bg-light-gray01 {
  background: #f7f7f7 !important;
}

.u-color-light-gray02 {
  color: #f5f5f5 !important;
}

.u-bg-light-gray02 {
  background: #f5f5f5 !important;
}

.u-color-light-gray03 {
  color: #e6e6e6 !important;
}

.u-bg-light-gray03 {
  background: #e6e6e6 !important;
}

.u-color-pink06 {
  color: #fff7f7 !important;
}

.u-bg-pink06 {
  background: #fff7f7 !important;
}

.u-color-border {
  color: #dddddd !important;
}

.u-bg-border {
  background: #dddddd !important;
}

.u-color-border02 {
  color: #cacaca !important;
}

.u-bg-border02 {
  background: #cacaca !important;
}

.u-bg-stripe-main {
  background: repeating-linear-gradient(-45deg, #d90000, #d90000 10px, #e63333 0, #e63333 20px);
}

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

@media (max-width: 1199px) {
  .u-mt-0--xl {
    margin-top: 0rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mt-0--lg {
    margin-top: 0rem !important;
  }
}
@media (max-width: 767px) {
  .u-mt-0--md {
    margin-top: 0rem !important;
  }
}
@media (max-width: 575px) {
  .u-mt-0--sm {
    margin-top: 0rem !important;
  }
}
.u-pt-0 {
  padding-top: 0rem;
}

@media (max-width: 1199px) {
  .u-pt-0--xl {
    padding-top: 0rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pt-0--lg {
    padding-top: 0rem !important;
  }
}
@media (max-width: 767px) {
  .u-pt-0--md {
    padding-top: 0rem !important;
  }
}
@media (max-width: 575px) {
  .u-pt-0--sm {
    padding-top: 0rem !important;
  }
}
.u-mb-0 {
  margin-bottom: 0rem;
}

@media (max-width: 1199px) {
  .u-mb-0--xl {
    margin-bottom: 0rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mb-0--lg {
    margin-bottom: 0rem !important;
  }
}
@media (max-width: 767px) {
  .u-mb-0--md {
    margin-bottom: 0rem !important;
  }
}
@media (max-width: 575px) {
  .u-mb-0--sm {
    margin-bottom: 0rem !important;
  }
}
.u-pb-0 {
  padding-bottom: 0rem;
}

@media (max-width: 1199px) {
  .u-pb-0--xl {
    padding-bottom: 0rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pb-0--lg {
    padding-bottom: 0rem !important;
  }
}
@media (max-width: 767px) {
  .u-pb-0--md {
    padding-bottom: 0rem !important;
  }
}
@media (max-width: 575px) {
  .u-pb-0--sm {
    padding-bottom: 0rem !important;
  }
}
.u-ml-0 {
  margin-left: 0rem;
}

@media (max-width: 1199px) {
  .u-ml-0--xl {
    margin-left: 0rem !important;
  }
}
@media (max-width: 1023px) {
  .u-ml-0--lg {
    margin-left: 0rem !important;
  }
}
@media (max-width: 767px) {
  .u-ml-0--md {
    margin-left: 0rem !important;
  }
}
@media (max-width: 575px) {
  .u-ml-0--sm {
    margin-left: 0rem !important;
  }
}
.u-pl-0 {
  padding-left: 0rem;
}

@media (max-width: 1199px) {
  .u-pl-0--xl {
    padding-left: 0rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pl-0--lg {
    padding-left: 0rem !important;
  }
}
@media (max-width: 767px) {
  .u-pl-0--md {
    padding-left: 0rem !important;
  }
}
@media (max-width: 575px) {
  .u-pl-0--sm {
    padding-left: 0rem !important;
  }
}
.u-mr-0 {
  margin-right: 0rem;
}

@media (max-width: 1199px) {
  .u-mr-0--xl {
    margin-right: 0rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mr-0--lg {
    margin-right: 0rem !important;
  }
}
@media (max-width: 767px) {
  .u-mr-0--md {
    margin-right: 0rem !important;
  }
}
@media (max-width: 575px) {
  .u-mr-0--sm {
    margin-right: 0rem !important;
  }
}
.u-pr-0 {
  padding-right: 0rem;
}

@media (max-width: 1199px) {
  .u-pr-0--xl {
    padding-right: 0rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pr-0--lg {
    padding-right: 0rem !important;
  }
}
@media (max-width: 767px) {
  .u-pr-0--md {
    padding-right: 0rem !important;
  }
}
@media (max-width: 575px) {
  .u-pr-0--sm {
    padding-right: 0rem !important;
  }
}
.u-mt-10 {
  margin-top: 1rem;
}

@media (max-width: 1199px) {
  .u-mt-10--xl {
    margin-top: 1rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mt-10--lg {
    margin-top: 1rem !important;
  }
}
@media (max-width: 767px) {
  .u-mt-10--md {
    margin-top: 1rem !important;
  }
}
@media (max-width: 575px) {
  .u-mt-10--sm {
    margin-top: 1rem !important;
  }
}
.u-pt-10 {
  padding-top: 1rem;
}

@media (max-width: 1199px) {
  .u-pt-10--xl {
    padding-top: 1rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pt-10--lg {
    padding-top: 1rem !important;
  }
}
@media (max-width: 767px) {
  .u-pt-10--md {
    padding-top: 1rem !important;
  }
}
@media (max-width: 575px) {
  .u-pt-10--sm {
    padding-top: 1rem !important;
  }
}
.u-mb-10 {
  margin-bottom: 1rem;
}

@media (max-width: 1199px) {
  .u-mb-10--xl {
    margin-bottom: 1rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mb-10--lg {
    margin-bottom: 1rem !important;
  }
}
@media (max-width: 767px) {
  .u-mb-10--md {
    margin-bottom: 1rem !important;
  }
}
@media (max-width: 575px) {
  .u-mb-10--sm {
    margin-bottom: 1rem !important;
  }
}
.u-pb-10 {
  padding-bottom: 1rem;
}

@media (max-width: 1199px) {
  .u-pb-10--xl {
    padding-bottom: 1rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pb-10--lg {
    padding-bottom: 1rem !important;
  }
}
@media (max-width: 767px) {
  .u-pb-10--md {
    padding-bottom: 1rem !important;
  }
}
@media (max-width: 575px) {
  .u-pb-10--sm {
    padding-bottom: 1rem !important;
  }
}
.u-ml-10 {
  margin-left: 1rem;
}

@media (max-width: 1199px) {
  .u-ml-10--xl {
    margin-left: 1rem !important;
  }
}
@media (max-width: 1023px) {
  .u-ml-10--lg {
    margin-left: 1rem !important;
  }
}
@media (max-width: 767px) {
  .u-ml-10--md {
    margin-left: 1rem !important;
  }
}
@media (max-width: 575px) {
  .u-ml-10--sm {
    margin-left: 1rem !important;
  }
}
.u-pl-10 {
  padding-left: 1rem;
}

@media (max-width: 1199px) {
  .u-pl-10--xl {
    padding-left: 1rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pl-10--lg {
    padding-left: 1rem !important;
  }
}
@media (max-width: 767px) {
  .u-pl-10--md {
    padding-left: 1rem !important;
  }
}
@media (max-width: 575px) {
  .u-pl-10--sm {
    padding-left: 1rem !important;
  }
}
.u-mr-10 {
  margin-right: 1rem;
}

@media (max-width: 1199px) {
  .u-mr-10--xl {
    margin-right: 1rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mr-10--lg {
    margin-right: 1rem !important;
  }
}
@media (max-width: 767px) {
  .u-mr-10--md {
    margin-right: 1rem !important;
  }
}
@media (max-width: 575px) {
  .u-mr-10--sm {
    margin-right: 1rem !important;
  }
}
.u-pr-10 {
  padding-right: 1rem;
}

@media (max-width: 1199px) {
  .u-pr-10--xl {
    padding-right: 1rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pr-10--lg {
    padding-right: 1rem !important;
  }
}
@media (max-width: 767px) {
  .u-pr-10--md {
    padding-right: 1rem !important;
  }
}
@media (max-width: 575px) {
  .u-pr-10--sm {
    padding-right: 1rem !important;
  }
}
.u-mt-15 {
  margin-top: 1.5rem;
}

@media (max-width: 1199px) {
  .u-mt-15--xl {
    margin-top: 1.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mt-15--lg {
    margin-top: 1.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-mt-15--md {
    margin-top: 1.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-mt-15--sm {
    margin-top: 1.5rem !important;
  }
}
.u-pt-15 {
  padding-top: 1.5rem;
}

@media (max-width: 1199px) {
  .u-pt-15--xl {
    padding-top: 1.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pt-15--lg {
    padding-top: 1.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-pt-15--md {
    padding-top: 1.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-pt-15--sm {
    padding-top: 1.5rem !important;
  }
}
.u-mb-15 {
  margin-bottom: 1.5rem;
}

@media (max-width: 1199px) {
  .u-mb-15--xl {
    margin-bottom: 1.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mb-15--lg {
    margin-bottom: 1.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-mb-15--md {
    margin-bottom: 1.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-mb-15--sm {
    margin-bottom: 1.5rem !important;
  }
}
.u-pb-15 {
  padding-bottom: 1.5rem;
}

@media (max-width: 1199px) {
  .u-pb-15--xl {
    padding-bottom: 1.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pb-15--lg {
    padding-bottom: 1.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-pb-15--md {
    padding-bottom: 1.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-pb-15--sm {
    padding-bottom: 1.5rem !important;
  }
}
.u-ml-15 {
  margin-left: 1.5rem;
}

@media (max-width: 1199px) {
  .u-ml-15--xl {
    margin-left: 1.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-ml-15--lg {
    margin-left: 1.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-ml-15--md {
    margin-left: 1.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-ml-15--sm {
    margin-left: 1.5rem !important;
  }
}
.u-pl-15 {
  padding-left: 1.5rem;
}

@media (max-width: 1199px) {
  .u-pl-15--xl {
    padding-left: 1.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pl-15--lg {
    padding-left: 1.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-pl-15--md {
    padding-left: 1.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-pl-15--sm {
    padding-left: 1.5rem !important;
  }
}
.u-mr-15 {
  margin-right: 1.5rem;
}

@media (max-width: 1199px) {
  .u-mr-15--xl {
    margin-right: 1.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mr-15--lg {
    margin-right: 1.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-mr-15--md {
    margin-right: 1.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-mr-15--sm {
    margin-right: 1.5rem !important;
  }
}
.u-pr-15 {
  padding-right: 1.5rem;
}

@media (max-width: 1199px) {
  .u-pr-15--xl {
    padding-right: 1.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pr-15--lg {
    padding-right: 1.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-pr-15--md {
    padding-right: 1.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-pr-15--sm {
    padding-right: 1.5rem !important;
  }
}
.u-mt-20 {
  margin-top: 2rem;
}

@media (max-width: 1199px) {
  .u-mt-20--xl {
    margin-top: 2rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mt-20--lg {
    margin-top: 2rem !important;
  }
}
@media (max-width: 767px) {
  .u-mt-20--md {
    margin-top: 2rem !important;
  }
}
@media (max-width: 575px) {
  .u-mt-20--sm {
    margin-top: 2rem !important;
  }
}
.u-pt-20 {
  padding-top: 2rem;
}

@media (max-width: 1199px) {
  .u-pt-20--xl {
    padding-top: 2rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pt-20--lg {
    padding-top: 2rem !important;
  }
}
@media (max-width: 767px) {
  .u-pt-20--md {
    padding-top: 2rem !important;
  }
}
@media (max-width: 575px) {
  .u-pt-20--sm {
    padding-top: 2rem !important;
  }
}
.u-mb-20 {
  margin-bottom: 2rem;
}

@media (max-width: 1199px) {
  .u-mb-20--xl {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mb-20--lg {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 767px) {
  .u-mb-20--md {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 575px) {
  .u-mb-20--sm {
    margin-bottom: 2rem !important;
  }
}
.u-pb-20 {
  padding-bottom: 2rem;
}

@media (max-width: 1199px) {
  .u-pb-20--xl {
    padding-bottom: 2rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pb-20--lg {
    padding-bottom: 2rem !important;
  }
}
@media (max-width: 767px) {
  .u-pb-20--md {
    padding-bottom: 2rem !important;
  }
}
@media (max-width: 575px) {
  .u-pb-20--sm {
    padding-bottom: 2rem !important;
  }
}
.u-ml-20 {
  margin-left: 2rem;
}

@media (max-width: 1199px) {
  .u-ml-20--xl {
    margin-left: 2rem !important;
  }
}
@media (max-width: 1023px) {
  .u-ml-20--lg {
    margin-left: 2rem !important;
  }
}
@media (max-width: 767px) {
  .u-ml-20--md {
    margin-left: 2rem !important;
  }
}
@media (max-width: 575px) {
  .u-ml-20--sm {
    margin-left: 2rem !important;
  }
}
.u-pl-20 {
  padding-left: 2rem;
}

@media (max-width: 1199px) {
  .u-pl-20--xl {
    padding-left: 2rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pl-20--lg {
    padding-left: 2rem !important;
  }
}
@media (max-width: 767px) {
  .u-pl-20--md {
    padding-left: 2rem !important;
  }
}
@media (max-width: 575px) {
  .u-pl-20--sm {
    padding-left: 2rem !important;
  }
}
.u-mr-20 {
  margin-right: 2rem;
}

@media (max-width: 1199px) {
  .u-mr-20--xl {
    margin-right: 2rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mr-20--lg {
    margin-right: 2rem !important;
  }
}
@media (max-width: 767px) {
  .u-mr-20--md {
    margin-right: 2rem !important;
  }
}
@media (max-width: 575px) {
  .u-mr-20--sm {
    margin-right: 2rem !important;
  }
}
.u-pr-20 {
  padding-right: 2rem;
}

@media (max-width: 1199px) {
  .u-pr-20--xl {
    padding-right: 2rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pr-20--lg {
    padding-right: 2rem !important;
  }
}
@media (max-width: 767px) {
  .u-pr-20--md {
    padding-right: 2rem !important;
  }
}
@media (max-width: 575px) {
  .u-pr-20--sm {
    padding-right: 2rem !important;
  }
}
.u-mt-25 {
  margin-top: 2.5rem;
}

@media (max-width: 1199px) {
  .u-mt-25--xl {
    margin-top: 2.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mt-25--lg {
    margin-top: 2.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-mt-25--md {
    margin-top: 2.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-mt-25--sm {
    margin-top: 2.5rem !important;
  }
}
.u-pt-25 {
  padding-top: 2.5rem;
}

@media (max-width: 1199px) {
  .u-pt-25--xl {
    padding-top: 2.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pt-25--lg {
    padding-top: 2.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-pt-25--md {
    padding-top: 2.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-pt-25--sm {
    padding-top: 2.5rem !important;
  }
}
.u-mb-25 {
  margin-bottom: 2.5rem;
}

@media (max-width: 1199px) {
  .u-mb-25--xl {
    margin-bottom: 2.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mb-25--lg {
    margin-bottom: 2.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-mb-25--md {
    margin-bottom: 2.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-mb-25--sm {
    margin-bottom: 2.5rem !important;
  }
}
.u-pb-25 {
  padding-bottom: 2.5rem;
}

@media (max-width: 1199px) {
  .u-pb-25--xl {
    padding-bottom: 2.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pb-25--lg {
    padding-bottom: 2.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-pb-25--md {
    padding-bottom: 2.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-pb-25--sm {
    padding-bottom: 2.5rem !important;
  }
}
.u-ml-25 {
  margin-left: 2.5rem;
}

@media (max-width: 1199px) {
  .u-ml-25--xl {
    margin-left: 2.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-ml-25--lg {
    margin-left: 2.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-ml-25--md {
    margin-left: 2.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-ml-25--sm {
    margin-left: 2.5rem !important;
  }
}
.u-pl-25 {
  padding-left: 2.5rem;
}

@media (max-width: 1199px) {
  .u-pl-25--xl {
    padding-left: 2.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pl-25--lg {
    padding-left: 2.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-pl-25--md {
    padding-left: 2.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-pl-25--sm {
    padding-left: 2.5rem !important;
  }
}
.u-mr-25 {
  margin-right: 2.5rem;
}

@media (max-width: 1199px) {
  .u-mr-25--xl {
    margin-right: 2.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mr-25--lg {
    margin-right: 2.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-mr-25--md {
    margin-right: 2.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-mr-25--sm {
    margin-right: 2.5rem !important;
  }
}
.u-pr-25 {
  padding-right: 2.5rem;
}

@media (max-width: 1199px) {
  .u-pr-25--xl {
    padding-right: 2.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pr-25--lg {
    padding-right: 2.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-pr-25--md {
    padding-right: 2.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-pr-25--sm {
    padding-right: 2.5rem !important;
  }
}
.u-mt-30 {
  margin-top: 3rem;
}

@media (max-width: 1199px) {
  .u-mt-30--xl {
    margin-top: 3rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mt-30--lg {
    margin-top: 3rem !important;
  }
}
@media (max-width: 767px) {
  .u-mt-30--md {
    margin-top: 3rem !important;
  }
}
@media (max-width: 575px) {
  .u-mt-30--sm {
    margin-top: 3rem !important;
  }
}
.u-pt-30 {
  padding-top: 3rem;
}

@media (max-width: 1199px) {
  .u-pt-30--xl {
    padding-top: 3rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pt-30--lg {
    padding-top: 3rem !important;
  }
}
@media (max-width: 767px) {
  .u-pt-30--md {
    padding-top: 3rem !important;
  }
}
@media (max-width: 575px) {
  .u-pt-30--sm {
    padding-top: 3rem !important;
  }
}
.u-mb-30 {
  margin-bottom: 3rem;
}

@media (max-width: 1199px) {
  .u-mb-30--xl {
    margin-bottom: 3rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mb-30--lg {
    margin-bottom: 3rem !important;
  }
}
@media (max-width: 767px) {
  .u-mb-30--md {
    margin-bottom: 3rem !important;
  }
}
@media (max-width: 575px) {
  .u-mb-30--sm {
    margin-bottom: 3rem !important;
  }
}
.u-pb-30 {
  padding-bottom: 3rem;
}

@media (max-width: 1199px) {
  .u-pb-30--xl {
    padding-bottom: 3rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pb-30--lg {
    padding-bottom: 3rem !important;
  }
}
@media (max-width: 767px) {
  .u-pb-30--md {
    padding-bottom: 3rem !important;
  }
}
@media (max-width: 575px) {
  .u-pb-30--sm {
    padding-bottom: 3rem !important;
  }
}
.u-ml-30 {
  margin-left: 3rem;
}

@media (max-width: 1199px) {
  .u-ml-30--xl {
    margin-left: 3rem !important;
  }
}
@media (max-width: 1023px) {
  .u-ml-30--lg {
    margin-left: 3rem !important;
  }
}
@media (max-width: 767px) {
  .u-ml-30--md {
    margin-left: 3rem !important;
  }
}
@media (max-width: 575px) {
  .u-ml-30--sm {
    margin-left: 3rem !important;
  }
}
.u-pl-30 {
  padding-left: 3rem;
}

@media (max-width: 1199px) {
  .u-pl-30--xl {
    padding-left: 3rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pl-30--lg {
    padding-left: 3rem !important;
  }
}
@media (max-width: 767px) {
  .u-pl-30--md {
    padding-left: 3rem !important;
  }
}
@media (max-width: 575px) {
  .u-pl-30--sm {
    padding-left: 3rem !important;
  }
}
.u-mr-30 {
  margin-right: 3rem;
}

@media (max-width: 1199px) {
  .u-mr-30--xl {
    margin-right: 3rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mr-30--lg {
    margin-right: 3rem !important;
  }
}
@media (max-width: 767px) {
  .u-mr-30--md {
    margin-right: 3rem !important;
  }
}
@media (max-width: 575px) {
  .u-mr-30--sm {
    margin-right: 3rem !important;
  }
}
.u-pr-30 {
  padding-right: 3rem;
}

@media (max-width: 1199px) {
  .u-pr-30--xl {
    padding-right: 3rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pr-30--lg {
    padding-right: 3rem !important;
  }
}
@media (max-width: 767px) {
  .u-pr-30--md {
    padding-right: 3rem !important;
  }
}
@media (max-width: 575px) {
  .u-pr-30--sm {
    padding-right: 3rem !important;
  }
}
.u-mt-35 {
  margin-top: 3.5rem;
}

@media (max-width: 1199px) {
  .u-mt-35--xl {
    margin-top: 3.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mt-35--lg {
    margin-top: 3.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-mt-35--md {
    margin-top: 3.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-mt-35--sm {
    margin-top: 3.5rem !important;
  }
}
.u-pt-35 {
  padding-top: 3.5rem;
}

@media (max-width: 1199px) {
  .u-pt-35--xl {
    padding-top: 3.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pt-35--lg {
    padding-top: 3.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-pt-35--md {
    padding-top: 3.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-pt-35--sm {
    padding-top: 3.5rem !important;
  }
}
.u-mb-35 {
  margin-bottom: 3.5rem;
}

@media (max-width: 1199px) {
  .u-mb-35--xl {
    margin-bottom: 3.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mb-35--lg {
    margin-bottom: 3.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-mb-35--md {
    margin-bottom: 3.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-mb-35--sm {
    margin-bottom: 3.5rem !important;
  }
}
.u-pb-35 {
  padding-bottom: 3.5rem;
}

@media (max-width: 1199px) {
  .u-pb-35--xl {
    padding-bottom: 3.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pb-35--lg {
    padding-bottom: 3.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-pb-35--md {
    padding-bottom: 3.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-pb-35--sm {
    padding-bottom: 3.5rem !important;
  }
}
.u-ml-35 {
  margin-left: 3.5rem;
}

@media (max-width: 1199px) {
  .u-ml-35--xl {
    margin-left: 3.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-ml-35--lg {
    margin-left: 3.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-ml-35--md {
    margin-left: 3.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-ml-35--sm {
    margin-left: 3.5rem !important;
  }
}
.u-pl-35 {
  padding-left: 3.5rem;
}

@media (max-width: 1199px) {
  .u-pl-35--xl {
    padding-left: 3.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pl-35--lg {
    padding-left: 3.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-pl-35--md {
    padding-left: 3.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-pl-35--sm {
    padding-left: 3.5rem !important;
  }
}
.u-mr-35 {
  margin-right: 3.5rem;
}

@media (max-width: 1199px) {
  .u-mr-35--xl {
    margin-right: 3.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mr-35--lg {
    margin-right: 3.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-mr-35--md {
    margin-right: 3.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-mr-35--sm {
    margin-right: 3.5rem !important;
  }
}
.u-pr-35 {
  padding-right: 3.5rem;
}

@media (max-width: 1199px) {
  .u-pr-35--xl {
    padding-right: 3.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pr-35--lg {
    padding-right: 3.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-pr-35--md {
    padding-right: 3.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-pr-35--sm {
    padding-right: 3.5rem !important;
  }
}
.u-mt-40 {
  margin-top: 4rem;
}

@media (max-width: 1199px) {
  .u-mt-40--xl {
    margin-top: 4rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mt-40--lg {
    margin-top: 4rem !important;
  }
}
@media (max-width: 767px) {
  .u-mt-40--md {
    margin-top: 4rem !important;
  }
}
@media (max-width: 575px) {
  .u-mt-40--sm {
    margin-top: 4rem !important;
  }
}
.u-pt-40 {
  padding-top: 4rem;
}

@media (max-width: 1199px) {
  .u-pt-40--xl {
    padding-top: 4rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pt-40--lg {
    padding-top: 4rem !important;
  }
}
@media (max-width: 767px) {
  .u-pt-40--md {
    padding-top: 4rem !important;
  }
}
@media (max-width: 575px) {
  .u-pt-40--sm {
    padding-top: 4rem !important;
  }
}
.u-mb-40 {
  margin-bottom: 4rem;
}

@media (max-width: 1199px) {
  .u-mb-40--xl {
    margin-bottom: 4rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mb-40--lg {
    margin-bottom: 4rem !important;
  }
}
@media (max-width: 767px) {
  .u-mb-40--md {
    margin-bottom: 4rem !important;
  }
}
@media (max-width: 575px) {
  .u-mb-40--sm {
    margin-bottom: 4rem !important;
  }
}
.u-pb-40 {
  padding-bottom: 4rem;
}

@media (max-width: 1199px) {
  .u-pb-40--xl {
    padding-bottom: 4rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pb-40--lg {
    padding-bottom: 4rem !important;
  }
}
@media (max-width: 767px) {
  .u-pb-40--md {
    padding-bottom: 4rem !important;
  }
}
@media (max-width: 575px) {
  .u-pb-40--sm {
    padding-bottom: 4rem !important;
  }
}
.u-ml-40 {
  margin-left: 4rem;
}

@media (max-width: 1199px) {
  .u-ml-40--xl {
    margin-left: 4rem !important;
  }
}
@media (max-width: 1023px) {
  .u-ml-40--lg {
    margin-left: 4rem !important;
  }
}
@media (max-width: 767px) {
  .u-ml-40--md {
    margin-left: 4rem !important;
  }
}
@media (max-width: 575px) {
  .u-ml-40--sm {
    margin-left: 4rem !important;
  }
}
.u-pl-40 {
  padding-left: 4rem;
}

@media (max-width: 1199px) {
  .u-pl-40--xl {
    padding-left: 4rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pl-40--lg {
    padding-left: 4rem !important;
  }
}
@media (max-width: 767px) {
  .u-pl-40--md {
    padding-left: 4rem !important;
  }
}
@media (max-width: 575px) {
  .u-pl-40--sm {
    padding-left: 4rem !important;
  }
}
.u-mr-40 {
  margin-right: 4rem;
}

@media (max-width: 1199px) {
  .u-mr-40--xl {
    margin-right: 4rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mr-40--lg {
    margin-right: 4rem !important;
  }
}
@media (max-width: 767px) {
  .u-mr-40--md {
    margin-right: 4rem !important;
  }
}
@media (max-width: 575px) {
  .u-mr-40--sm {
    margin-right: 4rem !important;
  }
}
.u-pr-40 {
  padding-right: 4rem;
}

@media (max-width: 1199px) {
  .u-pr-40--xl {
    padding-right: 4rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pr-40--lg {
    padding-right: 4rem !important;
  }
}
@media (max-width: 767px) {
  .u-pr-40--md {
    padding-right: 4rem !important;
  }
}
@media (max-width: 575px) {
  .u-pr-40--sm {
    padding-right: 4rem !important;
  }
}
.u-mt-45 {
  margin-top: 4.5rem;
}

@media (max-width: 1199px) {
  .u-mt-45--xl {
    margin-top: 4.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mt-45--lg {
    margin-top: 4.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-mt-45--md {
    margin-top: 4.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-mt-45--sm {
    margin-top: 4.5rem !important;
  }
}
.u-pt-45 {
  padding-top: 4.5rem;
}

@media (max-width: 1199px) {
  .u-pt-45--xl {
    padding-top: 4.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pt-45--lg {
    padding-top: 4.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-pt-45--md {
    padding-top: 4.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-pt-45--sm {
    padding-top: 4.5rem !important;
  }
}
.u-mb-45 {
  margin-bottom: 4.5rem;
}

@media (max-width: 1199px) {
  .u-mb-45--xl {
    margin-bottom: 4.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mb-45--lg {
    margin-bottom: 4.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-mb-45--md {
    margin-bottom: 4.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-mb-45--sm {
    margin-bottom: 4.5rem !important;
  }
}
.u-pb-45 {
  padding-bottom: 4.5rem;
}

@media (max-width: 1199px) {
  .u-pb-45--xl {
    padding-bottom: 4.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pb-45--lg {
    padding-bottom: 4.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-pb-45--md {
    padding-bottom: 4.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-pb-45--sm {
    padding-bottom: 4.5rem !important;
  }
}
.u-ml-45 {
  margin-left: 4.5rem;
}

@media (max-width: 1199px) {
  .u-ml-45--xl {
    margin-left: 4.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-ml-45--lg {
    margin-left: 4.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-ml-45--md {
    margin-left: 4.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-ml-45--sm {
    margin-left: 4.5rem !important;
  }
}
.u-pl-45 {
  padding-left: 4.5rem;
}

@media (max-width: 1199px) {
  .u-pl-45--xl {
    padding-left: 4.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pl-45--lg {
    padding-left: 4.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-pl-45--md {
    padding-left: 4.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-pl-45--sm {
    padding-left: 4.5rem !important;
  }
}
.u-mr-45 {
  margin-right: 4.5rem;
}

@media (max-width: 1199px) {
  .u-mr-45--xl {
    margin-right: 4.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mr-45--lg {
    margin-right: 4.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-mr-45--md {
    margin-right: 4.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-mr-45--sm {
    margin-right: 4.5rem !important;
  }
}
.u-pr-45 {
  padding-right: 4.5rem;
}

@media (max-width: 1199px) {
  .u-pr-45--xl {
    padding-right: 4.5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pr-45--lg {
    padding-right: 4.5rem !important;
  }
}
@media (max-width: 767px) {
  .u-pr-45--md {
    padding-right: 4.5rem !important;
  }
}
@media (max-width: 575px) {
  .u-pr-45--sm {
    padding-right: 4.5rem !important;
  }
}
.u-mt-50 {
  margin-top: 5rem;
}

@media (max-width: 1199px) {
  .u-mt-50--xl {
    margin-top: 5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mt-50--lg {
    margin-top: 5rem !important;
  }
}
@media (max-width: 767px) {
  .u-mt-50--md {
    margin-top: 5rem !important;
  }
}
@media (max-width: 575px) {
  .u-mt-50--sm {
    margin-top: 5rem !important;
  }
}
.u-pt-50 {
  padding-top: 5rem;
}

@media (max-width: 1199px) {
  .u-pt-50--xl {
    padding-top: 5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pt-50--lg {
    padding-top: 5rem !important;
  }
}
@media (max-width: 767px) {
  .u-pt-50--md {
    padding-top: 5rem !important;
  }
}
@media (max-width: 575px) {
  .u-pt-50--sm {
    padding-top: 5rem !important;
  }
}
.u-mb-50 {
  margin-bottom: 5rem;
}

@media (max-width: 1199px) {
  .u-mb-50--xl {
    margin-bottom: 5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mb-50--lg {
    margin-bottom: 5rem !important;
  }
}
@media (max-width: 767px) {
  .u-mb-50--md {
    margin-bottom: 5rem !important;
  }
}
@media (max-width: 575px) {
  .u-mb-50--sm {
    margin-bottom: 5rem !important;
  }
}
.u-pb-50 {
  padding-bottom: 5rem;
}

@media (max-width: 1199px) {
  .u-pb-50--xl {
    padding-bottom: 5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pb-50--lg {
    padding-bottom: 5rem !important;
  }
}
@media (max-width: 767px) {
  .u-pb-50--md {
    padding-bottom: 5rem !important;
  }
}
@media (max-width: 575px) {
  .u-pb-50--sm {
    padding-bottom: 5rem !important;
  }
}
.u-ml-50 {
  margin-left: 5rem;
}

@media (max-width: 1199px) {
  .u-ml-50--xl {
    margin-left: 5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-ml-50--lg {
    margin-left: 5rem !important;
  }
}
@media (max-width: 767px) {
  .u-ml-50--md {
    margin-left: 5rem !important;
  }
}
@media (max-width: 575px) {
  .u-ml-50--sm {
    margin-left: 5rem !important;
  }
}
.u-pl-50 {
  padding-left: 5rem;
}

@media (max-width: 1199px) {
  .u-pl-50--xl {
    padding-left: 5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pl-50--lg {
    padding-left: 5rem !important;
  }
}
@media (max-width: 767px) {
  .u-pl-50--md {
    padding-left: 5rem !important;
  }
}
@media (max-width: 575px) {
  .u-pl-50--sm {
    padding-left: 5rem !important;
  }
}
.u-mr-50 {
  margin-right: 5rem;
}

@media (max-width: 1199px) {
  .u-mr-50--xl {
    margin-right: 5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mr-50--lg {
    margin-right: 5rem !important;
  }
}
@media (max-width: 767px) {
  .u-mr-50--md {
    margin-right: 5rem !important;
  }
}
@media (max-width: 575px) {
  .u-mr-50--sm {
    margin-right: 5rem !important;
  }
}
.u-pr-50 {
  padding-right: 5rem;
}

@media (max-width: 1199px) {
  .u-pr-50--xl {
    padding-right: 5rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pr-50--lg {
    padding-right: 5rem !important;
  }
}
@media (max-width: 767px) {
  .u-pr-50--md {
    padding-right: 5rem !important;
  }
}
@media (max-width: 575px) {
  .u-pr-50--sm {
    padding-right: 5rem !important;
  }
}
.u-mt-60 {
  margin-top: 6rem;
}

@media (max-width: 1199px) {
  .u-mt-60--xl {
    margin-top: 6rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mt-60--lg {
    margin-top: 6rem !important;
  }
}
@media (max-width: 767px) {
  .u-mt-60--md {
    margin-top: 6rem !important;
  }
}
@media (max-width: 575px) {
  .u-mt-60--sm {
    margin-top: 6rem !important;
  }
}
.u-pt-60 {
  padding-top: 6rem;
}

@media (max-width: 1199px) {
  .u-pt-60--xl {
    padding-top: 6rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pt-60--lg {
    padding-top: 6rem !important;
  }
}
@media (max-width: 767px) {
  .u-pt-60--md {
    padding-top: 6rem !important;
  }
}
@media (max-width: 575px) {
  .u-pt-60--sm {
    padding-top: 6rem !important;
  }
}
.u-mb-60 {
  margin-bottom: 6rem;
}

@media (max-width: 1199px) {
  .u-mb-60--xl {
    margin-bottom: 6rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mb-60--lg {
    margin-bottom: 6rem !important;
  }
}
@media (max-width: 767px) {
  .u-mb-60--md {
    margin-bottom: 6rem !important;
  }
}
@media (max-width: 575px) {
  .u-mb-60--sm {
    margin-bottom: 6rem !important;
  }
}
.u-pb-60 {
  padding-bottom: 6rem;
}

@media (max-width: 1199px) {
  .u-pb-60--xl {
    padding-bottom: 6rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pb-60--lg {
    padding-bottom: 6rem !important;
  }
}
@media (max-width: 767px) {
  .u-pb-60--md {
    padding-bottom: 6rem !important;
  }
}
@media (max-width: 575px) {
  .u-pb-60--sm {
    padding-bottom: 6rem !important;
  }
}
.u-ml-60 {
  margin-left: 6rem;
}

@media (max-width: 1199px) {
  .u-ml-60--xl {
    margin-left: 6rem !important;
  }
}
@media (max-width: 1023px) {
  .u-ml-60--lg {
    margin-left: 6rem !important;
  }
}
@media (max-width: 767px) {
  .u-ml-60--md {
    margin-left: 6rem !important;
  }
}
@media (max-width: 575px) {
  .u-ml-60--sm {
    margin-left: 6rem !important;
  }
}
.u-pl-60 {
  padding-left: 6rem;
}

@media (max-width: 1199px) {
  .u-pl-60--xl {
    padding-left: 6rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pl-60--lg {
    padding-left: 6rem !important;
  }
}
@media (max-width: 767px) {
  .u-pl-60--md {
    padding-left: 6rem !important;
  }
}
@media (max-width: 575px) {
  .u-pl-60--sm {
    padding-left: 6rem !important;
  }
}
.u-mr-60 {
  margin-right: 6rem;
}

@media (max-width: 1199px) {
  .u-mr-60--xl {
    margin-right: 6rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mr-60--lg {
    margin-right: 6rem !important;
  }
}
@media (max-width: 767px) {
  .u-mr-60--md {
    margin-right: 6rem !important;
  }
}
@media (max-width: 575px) {
  .u-mr-60--sm {
    margin-right: 6rem !important;
  }
}
.u-pr-60 {
  padding-right: 6rem;
}

@media (max-width: 1199px) {
  .u-pr-60--xl {
    padding-right: 6rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pr-60--lg {
    padding-right: 6rem !important;
  }
}
@media (max-width: 767px) {
  .u-pr-60--md {
    padding-right: 6rem !important;
  }
}
@media (max-width: 575px) {
  .u-pr-60--sm {
    padding-right: 6rem !important;
  }
}
.u-mt-70 {
  margin-top: 7rem;
}

@media (max-width: 1199px) {
  .u-mt-70--xl {
    margin-top: 7rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mt-70--lg {
    margin-top: 7rem !important;
  }
}
@media (max-width: 767px) {
  .u-mt-70--md {
    margin-top: 7rem !important;
  }
}
@media (max-width: 575px) {
  .u-mt-70--sm {
    margin-top: 7rem !important;
  }
}
.u-pt-70 {
  padding-top: 7rem;
}

@media (max-width: 1199px) {
  .u-pt-70--xl {
    padding-top: 7rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pt-70--lg {
    padding-top: 7rem !important;
  }
}
@media (max-width: 767px) {
  .u-pt-70--md {
    padding-top: 7rem !important;
  }
}
@media (max-width: 575px) {
  .u-pt-70--sm {
    padding-top: 7rem !important;
  }
}
.u-mb-70 {
  margin-bottom: 7rem;
}

@media (max-width: 1199px) {
  .u-mb-70--xl {
    margin-bottom: 7rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mb-70--lg {
    margin-bottom: 7rem !important;
  }
}
@media (max-width: 767px) {
  .u-mb-70--md {
    margin-bottom: 7rem !important;
  }
}
@media (max-width: 575px) {
  .u-mb-70--sm {
    margin-bottom: 7rem !important;
  }
}
.u-pb-70 {
  padding-bottom: 7rem;
}

@media (max-width: 1199px) {
  .u-pb-70--xl {
    padding-bottom: 7rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pb-70--lg {
    padding-bottom: 7rem !important;
  }
}
@media (max-width: 767px) {
  .u-pb-70--md {
    padding-bottom: 7rem !important;
  }
}
@media (max-width: 575px) {
  .u-pb-70--sm {
    padding-bottom: 7rem !important;
  }
}
.u-ml-70 {
  margin-left: 7rem;
}

@media (max-width: 1199px) {
  .u-ml-70--xl {
    margin-left: 7rem !important;
  }
}
@media (max-width: 1023px) {
  .u-ml-70--lg {
    margin-left: 7rem !important;
  }
}
@media (max-width: 767px) {
  .u-ml-70--md {
    margin-left: 7rem !important;
  }
}
@media (max-width: 575px) {
  .u-ml-70--sm {
    margin-left: 7rem !important;
  }
}
.u-pl-70 {
  padding-left: 7rem;
}

@media (max-width: 1199px) {
  .u-pl-70--xl {
    padding-left: 7rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pl-70--lg {
    padding-left: 7rem !important;
  }
}
@media (max-width: 767px) {
  .u-pl-70--md {
    padding-left: 7rem !important;
  }
}
@media (max-width: 575px) {
  .u-pl-70--sm {
    padding-left: 7rem !important;
  }
}
.u-mr-70 {
  margin-right: 7rem;
}

@media (max-width: 1199px) {
  .u-mr-70--xl {
    margin-right: 7rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mr-70--lg {
    margin-right: 7rem !important;
  }
}
@media (max-width: 767px) {
  .u-mr-70--md {
    margin-right: 7rem !important;
  }
}
@media (max-width: 575px) {
  .u-mr-70--sm {
    margin-right: 7rem !important;
  }
}
.u-pr-70 {
  padding-right: 7rem;
}

@media (max-width: 1199px) {
  .u-pr-70--xl {
    padding-right: 7rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pr-70--lg {
    padding-right: 7rem !important;
  }
}
@media (max-width: 767px) {
  .u-pr-70--md {
    padding-right: 7rem !important;
  }
}
@media (max-width: 575px) {
  .u-pr-70--sm {
    padding-right: 7rem !important;
  }
}
.u-mt-80 {
  margin-top: 8rem;
}

@media (max-width: 1199px) {
  .u-mt-80--xl {
    margin-top: 8rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mt-80--lg {
    margin-top: 8rem !important;
  }
}
@media (max-width: 767px) {
  .u-mt-80--md {
    margin-top: 8rem !important;
  }
}
@media (max-width: 575px) {
  .u-mt-80--sm {
    margin-top: 8rem !important;
  }
}
.u-pt-80 {
  padding-top: 8rem;
}

@media (max-width: 1199px) {
  .u-pt-80--xl {
    padding-top: 8rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pt-80--lg {
    padding-top: 8rem !important;
  }
}
@media (max-width: 767px) {
  .u-pt-80--md {
    padding-top: 8rem !important;
  }
}
@media (max-width: 575px) {
  .u-pt-80--sm {
    padding-top: 8rem !important;
  }
}
.u-mb-80 {
  margin-bottom: 8rem;
}

@media (max-width: 1199px) {
  .u-mb-80--xl {
    margin-bottom: 8rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mb-80--lg {
    margin-bottom: 8rem !important;
  }
}
@media (max-width: 767px) {
  .u-mb-80--md {
    margin-bottom: 8rem !important;
  }
}
@media (max-width: 575px) {
  .u-mb-80--sm {
    margin-bottom: 8rem !important;
  }
}
.u-pb-80 {
  padding-bottom: 8rem;
}

@media (max-width: 1199px) {
  .u-pb-80--xl {
    padding-bottom: 8rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pb-80--lg {
    padding-bottom: 8rem !important;
  }
}
@media (max-width: 767px) {
  .u-pb-80--md {
    padding-bottom: 8rem !important;
  }
}
@media (max-width: 575px) {
  .u-pb-80--sm {
    padding-bottom: 8rem !important;
  }
}
.u-ml-80 {
  margin-left: 8rem;
}

@media (max-width: 1199px) {
  .u-ml-80--xl {
    margin-left: 8rem !important;
  }
}
@media (max-width: 1023px) {
  .u-ml-80--lg {
    margin-left: 8rem !important;
  }
}
@media (max-width: 767px) {
  .u-ml-80--md {
    margin-left: 8rem !important;
  }
}
@media (max-width: 575px) {
  .u-ml-80--sm {
    margin-left: 8rem !important;
  }
}
.u-pl-80 {
  padding-left: 8rem;
}

@media (max-width: 1199px) {
  .u-pl-80--xl {
    padding-left: 8rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pl-80--lg {
    padding-left: 8rem !important;
  }
}
@media (max-width: 767px) {
  .u-pl-80--md {
    padding-left: 8rem !important;
  }
}
@media (max-width: 575px) {
  .u-pl-80--sm {
    padding-left: 8rem !important;
  }
}
.u-mr-80 {
  margin-right: 8rem;
}

@media (max-width: 1199px) {
  .u-mr-80--xl {
    margin-right: 8rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mr-80--lg {
    margin-right: 8rem !important;
  }
}
@media (max-width: 767px) {
  .u-mr-80--md {
    margin-right: 8rem !important;
  }
}
@media (max-width: 575px) {
  .u-mr-80--sm {
    margin-right: 8rem !important;
  }
}
.u-pr-80 {
  padding-right: 8rem;
}

@media (max-width: 1199px) {
  .u-pr-80--xl {
    padding-right: 8rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pr-80--lg {
    padding-right: 8rem !important;
  }
}
@media (max-width: 767px) {
  .u-pr-80--md {
    padding-right: 8rem !important;
  }
}
@media (max-width: 575px) {
  .u-pr-80--sm {
    padding-right: 8rem !important;
  }
}
.u-mt-100 {
  margin-top: 10rem;
}

@media (max-width: 1199px) {
  .u-mt-100--xl {
    margin-top: 10rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mt-100--lg {
    margin-top: 10rem !important;
  }
}
@media (max-width: 767px) {
  .u-mt-100--md {
    margin-top: 10rem !important;
  }
}
@media (max-width: 575px) {
  .u-mt-100--sm {
    margin-top: 10rem !important;
  }
}
.u-pt-100 {
  padding-top: 10rem;
}

@media (max-width: 1199px) {
  .u-pt-100--xl {
    padding-top: 10rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pt-100--lg {
    padding-top: 10rem !important;
  }
}
@media (max-width: 767px) {
  .u-pt-100--md {
    padding-top: 10rem !important;
  }
}
@media (max-width: 575px) {
  .u-pt-100--sm {
    padding-top: 10rem !important;
  }
}
.u-mb-100 {
  margin-bottom: 10rem;
}

@media (max-width: 1199px) {
  .u-mb-100--xl {
    margin-bottom: 10rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mb-100--lg {
    margin-bottom: 10rem !important;
  }
}
@media (max-width: 767px) {
  .u-mb-100--md {
    margin-bottom: 10rem !important;
  }
}
@media (max-width: 575px) {
  .u-mb-100--sm {
    margin-bottom: 10rem !important;
  }
}
.u-pb-100 {
  padding-bottom: 10rem;
}

@media (max-width: 1199px) {
  .u-pb-100--xl {
    padding-bottom: 10rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pb-100--lg {
    padding-bottom: 10rem !important;
  }
}
@media (max-width: 767px) {
  .u-pb-100--md {
    padding-bottom: 10rem !important;
  }
}
@media (max-width: 575px) {
  .u-pb-100--sm {
    padding-bottom: 10rem !important;
  }
}
.u-ml-100 {
  margin-left: 10rem;
}

@media (max-width: 1199px) {
  .u-ml-100--xl {
    margin-left: 10rem !important;
  }
}
@media (max-width: 1023px) {
  .u-ml-100--lg {
    margin-left: 10rem !important;
  }
}
@media (max-width: 767px) {
  .u-ml-100--md {
    margin-left: 10rem !important;
  }
}
@media (max-width: 575px) {
  .u-ml-100--sm {
    margin-left: 10rem !important;
  }
}
.u-pl-100 {
  padding-left: 10rem;
}

@media (max-width: 1199px) {
  .u-pl-100--xl {
    padding-left: 10rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pl-100--lg {
    padding-left: 10rem !important;
  }
}
@media (max-width: 767px) {
  .u-pl-100--md {
    padding-left: 10rem !important;
  }
}
@media (max-width: 575px) {
  .u-pl-100--sm {
    padding-left: 10rem !important;
  }
}
.u-mr-100 {
  margin-right: 10rem;
}

@media (max-width: 1199px) {
  .u-mr-100--xl {
    margin-right: 10rem !important;
  }
}
@media (max-width: 1023px) {
  .u-mr-100--lg {
    margin-right: 10rem !important;
  }
}
@media (max-width: 767px) {
  .u-mr-100--md {
    margin-right: 10rem !important;
  }
}
@media (max-width: 575px) {
  .u-mr-100--sm {
    margin-right: 10rem !important;
  }
}
.u-pr-100 {
  padding-right: 10rem;
}

@media (max-width: 1199px) {
  .u-pr-100--xl {
    padding-right: 10rem !important;
  }
}
@media (max-width: 1023px) {
  .u-pr-100--lg {
    padding-right: 10rem !important;
  }
}
@media (max-width: 767px) {
  .u-pr-100--md {
    padding-right: 10rem !important;
  }
}
@media (max-width: 575px) {
  .u-pr-100--sm {
    padding-right: 10rem !important;
  }
}
.u-float-l {
  float: left;
}

.u-float-r {
  float: right;
}

.u-pos-r {
  position: relative;
}

.u-shadow {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}/*# sourceMappingURL=style.css.map */