@charset "UTF-8";
/* font
-----------------------------------------------------*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/NotoSerifCJKjp-Light.woff2") format("woff2"), url("../fonts/NotoSerifCJKjp-Light.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2"), url("../fonts/NotoSansJP-Regular.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/NotoSerifCJKjp-Medium.woff2") format("woff2"), url("../fonts/NotoSerifCJKjp-Medium.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: bold;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/NotoSansJP-Bold.woff2") format("woff2"), url("../fonts/NotoSansJP-Bold.woff") format("woff");
}
/* mixin var
-----------------------------------------------------*/
/* reset
-----------------------------------------------------*/
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;
}

img {
  vertical-align: top;
}

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

body {
  line-height: 1;
}

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

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 #cccccc;
  margin: 1em 0;
  padding: 0;
}

/* html
-----------------------------------------------------*/
html {
  overflow: auto;
  font-size: 62.5%;
  scroll-padding-top: 66px;
  scroll-behavior: smooth;
}
@media (max-width: 575px) {
  html {
    scroll-padding-top: 60px;
  }
}

body {
  color: #222;
  font: 1.8rem/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;
    font-weight: 400;
  }
}

/* link
-----------------------------------------------------*/
a {
  transition: 0.3s linear;
}

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

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

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

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

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

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

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

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

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

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

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

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

.fs-11 {
  font-size: 1.1rem;
}

.fs-12 {
  font-size: 1.2rem;
}

.fs-13 {
  font-size: 1.3rem;
}

.fs-14 {
  font-size: 1.4rem;
}

.fs-15 {
  font-size: 1.5rem;
}

.fs-16 {
  font-size: 1.6rem;
}

.fs-17 {
  font-size: 1.7rem;
}

.fs-18 {
  font-size: 1.8rem;
}

.fs-19 {
  font-size: 1.9rem;
}

.fs-20 {
  font-size: 2rem;
}

.fs-21 {
  font-size: 2.1rem;
}

.fs-22 {
  font-size: 2.2rem;
}

.fs-23 {
  font-size: 2.3rem;
}

.fs-24 {
  font-size: 2.4rem;
}

.fs-25 {
  font-size: 2.5rem;
}

.fs-26 {
  font-size: 2.6rem;
}

.fs-27 {
  font-size: 2.7rem;
}

.fs-28 {
  font-size: 2.8rem;
}

.fs-29 {
  font-size: 2.9rem;
}

.fs-30 {
  font-size: 3rem;
}

.fs-31 {
  font-size: 3.1rem;
}

.fs-32 {
  font-size: 3.2rem;
}

.fs-33 {
  font-size: 3.3rem;
}

.fs-34 {
  font-size: 3.4rem;
}

.fs-35 {
  font-size: 3.5rem;
}

.fs-36 {
  font-size: 3.6rem;
}

.fs-37 {
  font-size: 3.7rem;
}

.fs-38 {
  font-size: 3.8rem;
}

.fs-39 {
  font-size: 3.9rem;
}

.fs-40 {
  font-size: 4rem;
}

.fs-41 {
  font-size: 4.1rem;
}

.fs-42 {
  font-size: 4.2rem;
}

.fs-43 {
  font-size: 4.3rem;
}

.fs-44 {
  font-size: 4.4rem;
}

.fs-45 {
  font-size: 4.5rem;
}

.fs-46 {
  font-size: 4.6rem;
}

.fs-47 {
  font-size: 4.7rem;
}

.fs-48 {
  font-size: 4.8rem;
}

.fs-49 {
  font-size: 4.9rem;
}

.fs-50 {
  font-size: 5rem;
}

.fs-51 {
  font-size: 5.1rem;
}

.fs-52 {
  font-size: 5.2rem;
}

.fs-53 {
  font-size: 5.3rem;
}

.fs-54 {
  font-size: 5.4rem;
}

.fs-55 {
  font-size: 5.5rem;
}

.fs-56 {
  font-size: 5.6rem;
}

.fs-57 {
  font-size: 5.7rem;
}

.fs-58 {
  font-size: 5.8rem;
}

.fs-59 {
  font-size: 5.9rem;
}

.fs-60 {
  font-size: 6rem;
}

.fs-61 {
  font-size: 6.1rem;
}

.fs-62 {
  font-size: 6.2rem;
}

.fs-63 {
  font-size: 6.3rem;
}

.fs-64 {
  font-size: 6.4rem;
}

.fs-65 {
  font-size: 6.5rem;
}

.fs-66 {
  font-size: 6.6rem;
}

.fs-67 {
  font-size: 6.7rem;
}

.fs-68 {
  font-size: 6.8rem;
}

.fs-69 {
  font-size: 6.9rem;
}

.fs-70 {
  font-size: 7rem;
}

.fs-71 {
  font-size: 7.1rem;
}

.fs-72 {
  font-size: 7.2rem;
}

.fs-73 {
  font-size: 7.3rem;
}

.fs-74 {
  font-size: 7.4rem;
}

.fs-75 {
  font-size: 7.5rem;
}

.fs-76 {
  font-size: 7.6rem;
}

.fs-77 {
  font-size: 7.7rem;
}

.fs-78 {
  font-size: 7.8rem;
}

.fs-79 {
  font-size: 7.9rem;
}

.fs-80 {
  font-size: 8rem;
}

.fs-81 {
  font-size: 8.1rem;
}

.fs-82 {
  font-size: 8.2rem;
}

.fs-83 {
  font-size: 8.3rem;
}

.fs-84 {
  font-size: 8.4rem;
}

.fs-85 {
  font-size: 8.5rem;
}

.fs-86 {
  font-size: 8.6rem;
}

.fs-87 {
  font-size: 8.7rem;
}

.fs-88 {
  font-size: 8.8rem;
}

.fs-89 {
  font-size: 8.9rem;
}

.fs-90 {
  font-size: 9rem;
}

.fs-91 {
  font-size: 9.1rem;
}

.fs-92 {
  font-size: 9.2rem;
}

.fs-93 {
  font-size: 9.3rem;
}

.fs-94 {
  font-size: 9.4rem;
}

.fs-95 {
  font-size: 9.5rem;
}

.fs-96 {
  font-size: 9.6rem;
}

.fs-97 {
  font-size: 9.7rem;
}

.fs-98 {
  font-size: 9.8rem;
}

.fs-99 {
  font-size: 9.9rem;
}

.fs-100 {
  font-size: 10rem;
}

@media (max-width: 1599px) {
  .fs-10-xxl {
    font-size: 1rem;
  }
  .fs-11-xxl {
    font-size: 1.1rem;
  }
  .fs-12-xxl {
    font-size: 1.2rem;
  }
  .fs-13-xxl {
    font-size: 1.3rem;
  }
  .fs-14-xxl {
    font-size: 1.4rem;
  }
  .fs-15-xxl {
    font-size: 1.5rem;
  }
  .fs-16-xxl {
    font-size: 1.6rem;
  }
  .fs-17-xxl {
    font-size: 1.7rem;
  }
  .fs-18-xxl {
    font-size: 1.8rem;
  }
  .fs-19-xxl {
    font-size: 1.9rem;
  }
  .fs-20-xxl {
    font-size: 2rem;
  }
  .fs-21-xxl {
    font-size: 2.1rem;
  }
  .fs-22-xxl {
    font-size: 2.2rem;
  }
  .fs-23-xxl {
    font-size: 2.3rem;
  }
  .fs-24-xxl {
    font-size: 2.4rem;
  }
  .fs-25-xxl {
    font-size: 2.5rem;
  }
  .fs-26-xxl {
    font-size: 2.6rem;
  }
  .fs-27-xxl {
    font-size: 2.7rem;
  }
  .fs-28-xxl {
    font-size: 2.8rem;
  }
  .fs-29-xxl {
    font-size: 2.9rem;
  }
  .fs-30-xxl {
    font-size: 3rem;
  }
  .fs-31-xxl {
    font-size: 3.1rem;
  }
  .fs-32-xxl {
    font-size: 3.2rem;
  }
  .fs-33-xxl {
    font-size: 3.3rem;
  }
  .fs-34-xxl {
    font-size: 3.4rem;
  }
  .fs-35-xxl {
    font-size: 3.5rem;
  }
  .fs-36-xxl {
    font-size: 3.6rem;
  }
  .fs-37-xxl {
    font-size: 3.7rem;
  }
  .fs-38-xxl {
    font-size: 3.8rem;
  }
  .fs-39-xxl {
    font-size: 3.9rem;
  }
  .fs-40-xxl {
    font-size: 4rem;
  }
  .fs-41-xxl {
    font-size: 4.1rem;
  }
  .fs-42-xxl {
    font-size: 4.2rem;
  }
  .fs-43-xxl {
    font-size: 4.3rem;
  }
  .fs-44-xxl {
    font-size: 4.4rem;
  }
  .fs-45-xxl {
    font-size: 4.5rem;
  }
  .fs-46-xxl {
    font-size: 4.6rem;
  }
  .fs-47-xxl {
    font-size: 4.7rem;
  }
  .fs-48-xxl {
    font-size: 4.8rem;
  }
  .fs-49-xxl {
    font-size: 4.9rem;
  }
  .fs-50-xxl {
    font-size: 5rem;
  }
  .fs-51-xxl {
    font-size: 5.1rem;
  }
  .fs-52-xxl {
    font-size: 5.2rem;
  }
  .fs-53-xxl {
    font-size: 5.3rem;
  }
  .fs-54-xxl {
    font-size: 5.4rem;
  }
  .fs-55-xxl {
    font-size: 5.5rem;
  }
  .fs-56-xxl {
    font-size: 5.6rem;
  }
  .fs-57-xxl {
    font-size: 5.7rem;
  }
  .fs-58-xxl {
    font-size: 5.8rem;
  }
  .fs-59-xxl {
    font-size: 5.9rem;
  }
  .fs-60-xxl {
    font-size: 6rem;
  }
  .fs-61-xxl {
    font-size: 6.1rem;
  }
  .fs-62-xxl {
    font-size: 6.2rem;
  }
  .fs-63-xxl {
    font-size: 6.3rem;
  }
  .fs-64-xxl {
    font-size: 6.4rem;
  }
  .fs-65-xxl {
    font-size: 6.5rem;
  }
  .fs-66-xxl {
    font-size: 6.6rem;
  }
  .fs-67-xxl {
    font-size: 6.7rem;
  }
  .fs-68-xxl {
    font-size: 6.8rem;
  }
  .fs-69-xxl {
    font-size: 6.9rem;
  }
  .fs-70-xxl {
    font-size: 7rem;
  }
  .fs-71-xxl {
    font-size: 7.1rem;
  }
  .fs-72-xxl {
    font-size: 7.2rem;
  }
  .fs-73-xxl {
    font-size: 7.3rem;
  }
  .fs-74-xxl {
    font-size: 7.4rem;
  }
  .fs-75-xxl {
    font-size: 7.5rem;
  }
  .fs-76-xxl {
    font-size: 7.6rem;
  }
  .fs-77-xxl {
    font-size: 7.7rem;
  }
  .fs-78-xxl {
    font-size: 7.8rem;
  }
  .fs-79-xxl {
    font-size: 7.9rem;
  }
  .fs-80-xxl {
    font-size: 8rem;
  }
  .fs-81-xxl {
    font-size: 8.1rem;
  }
  .fs-82-xxl {
    font-size: 8.2rem;
  }
  .fs-83-xxl {
    font-size: 8.3rem;
  }
  .fs-84-xxl {
    font-size: 8.4rem;
  }
  .fs-85-xxl {
    font-size: 8.5rem;
  }
  .fs-86-xxl {
    font-size: 8.6rem;
  }
  .fs-87-xxl {
    font-size: 8.7rem;
  }
  .fs-88-xxl {
    font-size: 8.8rem;
  }
  .fs-89-xxl {
    font-size: 8.9rem;
  }
  .fs-90-xxl {
    font-size: 9rem;
  }
  .fs-91-xxl {
    font-size: 9.1rem;
  }
  .fs-92-xxl {
    font-size: 9.2rem;
  }
  .fs-93-xxl {
    font-size: 9.3rem;
  }
  .fs-94-xxl {
    font-size: 9.4rem;
  }
  .fs-95-xxl {
    font-size: 9.5rem;
  }
  .fs-96-xxl {
    font-size: 9.6rem;
  }
  .fs-97-xxl {
    font-size: 9.7rem;
  }
  .fs-98-xxl {
    font-size: 9.8rem;
  }
  .fs-99-xxl {
    font-size: 9.9rem;
  }
  .fs-100-xxl {
    font-size: 10rem;
  }
}
@media (max-width: 1199px) {
  .fs-10-xl {
    font-size: 1rem;
  }
  .fs-11-xl {
    font-size: 1.1rem;
  }
  .fs-12-xl {
    font-size: 1.2rem;
  }
  .fs-13-xl {
    font-size: 1.3rem;
  }
  .fs-14-xl {
    font-size: 1.4rem;
  }
  .fs-15-xl {
    font-size: 1.5rem;
  }
  .fs-16-xl {
    font-size: 1.6rem;
  }
  .fs-17-xl {
    font-size: 1.7rem;
  }
  .fs-18-xl {
    font-size: 1.8rem;
  }
  .fs-19-xl {
    font-size: 1.9rem;
  }
  .fs-20-xl {
    font-size: 2rem;
  }
  .fs-21-xl {
    font-size: 2.1rem;
  }
  .fs-22-xl {
    font-size: 2.2rem;
  }
  .fs-23-xl {
    font-size: 2.3rem;
  }
  .fs-24-xl {
    font-size: 2.4rem;
  }
  .fs-25-xl {
    font-size: 2.5rem;
  }
  .fs-26-xl {
    font-size: 2.6rem;
  }
  .fs-27-xl {
    font-size: 2.7rem;
  }
  .fs-28-xl {
    font-size: 2.8rem;
  }
  .fs-29-xl {
    font-size: 2.9rem;
  }
  .fs-30-xl {
    font-size: 3rem;
  }
  .fs-31-xl {
    font-size: 3.1rem;
  }
  .fs-32-xl {
    font-size: 3.2rem;
  }
  .fs-33-xl {
    font-size: 3.3rem;
  }
  .fs-34-xl {
    font-size: 3.4rem;
  }
  .fs-35-xl {
    font-size: 3.5rem;
  }
  .fs-36-xl {
    font-size: 3.6rem;
  }
  .fs-37-xl {
    font-size: 3.7rem;
  }
  .fs-38-xl {
    font-size: 3.8rem;
  }
  .fs-39-xl {
    font-size: 3.9rem;
  }
  .fs-40-xl {
    font-size: 4rem;
  }
  .fs-41-xl {
    font-size: 4.1rem;
  }
  .fs-42-xl {
    font-size: 4.2rem;
  }
  .fs-43-xl {
    font-size: 4.3rem;
  }
  .fs-44-xl {
    font-size: 4.4rem;
  }
  .fs-45-xl {
    font-size: 4.5rem;
  }
  .fs-46-xl {
    font-size: 4.6rem;
  }
  .fs-47-xl {
    font-size: 4.7rem;
  }
  .fs-48-xl {
    font-size: 4.8rem;
  }
  .fs-49-xl {
    font-size: 4.9rem;
  }
  .fs-50-xl {
    font-size: 5rem;
  }
  .fs-51-xl {
    font-size: 5.1rem;
  }
  .fs-52-xl {
    font-size: 5.2rem;
  }
  .fs-53-xl {
    font-size: 5.3rem;
  }
  .fs-54-xl {
    font-size: 5.4rem;
  }
  .fs-55-xl {
    font-size: 5.5rem;
  }
  .fs-56-xl {
    font-size: 5.6rem;
  }
  .fs-57-xl {
    font-size: 5.7rem;
  }
  .fs-58-xl {
    font-size: 5.8rem;
  }
  .fs-59-xl {
    font-size: 5.9rem;
  }
  .fs-60-xl {
    font-size: 6rem;
  }
  .fs-61-xl {
    font-size: 6.1rem;
  }
  .fs-62-xl {
    font-size: 6.2rem;
  }
  .fs-63-xl {
    font-size: 6.3rem;
  }
  .fs-64-xl {
    font-size: 6.4rem;
  }
  .fs-65-xl {
    font-size: 6.5rem;
  }
  .fs-66-xl {
    font-size: 6.6rem;
  }
  .fs-67-xl {
    font-size: 6.7rem;
  }
  .fs-68-xl {
    font-size: 6.8rem;
  }
  .fs-69-xl {
    font-size: 6.9rem;
  }
  .fs-70-xl {
    font-size: 7rem;
  }
  .fs-71-xl {
    font-size: 7.1rem;
  }
  .fs-72-xl {
    font-size: 7.2rem;
  }
  .fs-73-xl {
    font-size: 7.3rem;
  }
  .fs-74-xl {
    font-size: 7.4rem;
  }
  .fs-75-xl {
    font-size: 7.5rem;
  }
  .fs-76-xl {
    font-size: 7.6rem;
  }
  .fs-77-xl {
    font-size: 7.7rem;
  }
  .fs-78-xl {
    font-size: 7.8rem;
  }
  .fs-79-xl {
    font-size: 7.9rem;
  }
  .fs-80-xl {
    font-size: 8rem;
  }
  .fs-81-xl {
    font-size: 8.1rem;
  }
  .fs-82-xl {
    font-size: 8.2rem;
  }
  .fs-83-xl {
    font-size: 8.3rem;
  }
  .fs-84-xl {
    font-size: 8.4rem;
  }
  .fs-85-xl {
    font-size: 8.5rem;
  }
  .fs-86-xl {
    font-size: 8.6rem;
  }
  .fs-87-xl {
    font-size: 8.7rem;
  }
  .fs-88-xl {
    font-size: 8.8rem;
  }
  .fs-89-xl {
    font-size: 8.9rem;
  }
  .fs-90-xl {
    font-size: 9rem;
  }
  .fs-91-xl {
    font-size: 9.1rem;
  }
  .fs-92-xl {
    font-size: 9.2rem;
  }
  .fs-93-xl {
    font-size: 9.3rem;
  }
  .fs-94-xl {
    font-size: 9.4rem;
  }
  .fs-95-xl {
    font-size: 9.5rem;
  }
  .fs-96-xl {
    font-size: 9.6rem;
  }
  .fs-97-xl {
    font-size: 9.7rem;
  }
  .fs-98-xl {
    font-size: 9.8rem;
  }
  .fs-99-xl {
    font-size: 9.9rem;
  }
  .fs-100-xl {
    font-size: 10rem;
  }
}
@media (max-width: 1023px) {
  .fs-10-lg {
    font-size: 1rem;
  }
  .fs-11-lg {
    font-size: 1.1rem;
  }
  .fs-12-lg {
    font-size: 1.2rem;
  }
  .fs-13-lg {
    font-size: 1.3rem;
  }
  .fs-14-lg {
    font-size: 1.4rem;
  }
  .fs-15-lg {
    font-size: 1.5rem;
  }
  .fs-16-lg {
    font-size: 1.6rem;
  }
  .fs-17-lg {
    font-size: 1.7rem;
  }
  .fs-18-lg {
    font-size: 1.8rem;
  }
  .fs-19-lg {
    font-size: 1.9rem;
  }
  .fs-20-lg {
    font-size: 2rem;
  }
  .fs-21-lg {
    font-size: 2.1rem;
  }
  .fs-22-lg {
    font-size: 2.2rem;
  }
  .fs-23-lg {
    font-size: 2.3rem;
  }
  .fs-24-lg {
    font-size: 2.4rem;
  }
  .fs-25-lg {
    font-size: 2.5rem;
  }
  .fs-26-lg {
    font-size: 2.6rem;
  }
  .fs-27-lg {
    font-size: 2.7rem;
  }
  .fs-28-lg {
    font-size: 2.8rem;
  }
  .fs-29-lg {
    font-size: 2.9rem;
  }
  .fs-30-lg {
    font-size: 3rem;
  }
  .fs-31-lg {
    font-size: 3.1rem;
  }
  .fs-32-lg {
    font-size: 3.2rem;
  }
  .fs-33-lg {
    font-size: 3.3rem;
  }
  .fs-34-lg {
    font-size: 3.4rem;
  }
  .fs-35-lg {
    font-size: 3.5rem;
  }
  .fs-36-lg {
    font-size: 3.6rem;
  }
  .fs-37-lg {
    font-size: 3.7rem;
  }
  .fs-38-lg {
    font-size: 3.8rem;
  }
  .fs-39-lg {
    font-size: 3.9rem;
  }
  .fs-40-lg {
    font-size: 4rem;
  }
  .fs-41-lg {
    font-size: 4.1rem;
  }
  .fs-42-lg {
    font-size: 4.2rem;
  }
  .fs-43-lg {
    font-size: 4.3rem;
  }
  .fs-44-lg {
    font-size: 4.4rem;
  }
  .fs-45-lg {
    font-size: 4.5rem;
  }
  .fs-46-lg {
    font-size: 4.6rem;
  }
  .fs-47-lg {
    font-size: 4.7rem;
  }
  .fs-48-lg {
    font-size: 4.8rem;
  }
  .fs-49-lg {
    font-size: 4.9rem;
  }
  .fs-50-lg {
    font-size: 5rem;
  }
  .fs-51-lg {
    font-size: 5.1rem;
  }
  .fs-52-lg {
    font-size: 5.2rem;
  }
  .fs-53-lg {
    font-size: 5.3rem;
  }
  .fs-54-lg {
    font-size: 5.4rem;
  }
  .fs-55-lg {
    font-size: 5.5rem;
  }
  .fs-56-lg {
    font-size: 5.6rem;
  }
  .fs-57-lg {
    font-size: 5.7rem;
  }
  .fs-58-lg {
    font-size: 5.8rem;
  }
  .fs-59-lg {
    font-size: 5.9rem;
  }
  .fs-60-lg {
    font-size: 6rem;
  }
  .fs-61-lg {
    font-size: 6.1rem;
  }
  .fs-62-lg {
    font-size: 6.2rem;
  }
  .fs-63-lg {
    font-size: 6.3rem;
  }
  .fs-64-lg {
    font-size: 6.4rem;
  }
  .fs-65-lg {
    font-size: 6.5rem;
  }
  .fs-66-lg {
    font-size: 6.6rem;
  }
  .fs-67-lg {
    font-size: 6.7rem;
  }
  .fs-68-lg {
    font-size: 6.8rem;
  }
  .fs-69-lg {
    font-size: 6.9rem;
  }
  .fs-70-lg {
    font-size: 7rem;
  }
  .fs-71-lg {
    font-size: 7.1rem;
  }
  .fs-72-lg {
    font-size: 7.2rem;
  }
  .fs-73-lg {
    font-size: 7.3rem;
  }
  .fs-74-lg {
    font-size: 7.4rem;
  }
  .fs-75-lg {
    font-size: 7.5rem;
  }
  .fs-76-lg {
    font-size: 7.6rem;
  }
  .fs-77-lg {
    font-size: 7.7rem;
  }
  .fs-78-lg {
    font-size: 7.8rem;
  }
  .fs-79-lg {
    font-size: 7.9rem;
  }
  .fs-80-lg {
    font-size: 8rem;
  }
  .fs-81-lg {
    font-size: 8.1rem;
  }
  .fs-82-lg {
    font-size: 8.2rem;
  }
  .fs-83-lg {
    font-size: 8.3rem;
  }
  .fs-84-lg {
    font-size: 8.4rem;
  }
  .fs-85-lg {
    font-size: 8.5rem;
  }
  .fs-86-lg {
    font-size: 8.6rem;
  }
  .fs-87-lg {
    font-size: 8.7rem;
  }
  .fs-88-lg {
    font-size: 8.8rem;
  }
  .fs-89-lg {
    font-size: 8.9rem;
  }
  .fs-90-lg {
    font-size: 9rem;
  }
  .fs-91-lg {
    font-size: 9.1rem;
  }
  .fs-92-lg {
    font-size: 9.2rem;
  }
  .fs-93-lg {
    font-size: 9.3rem;
  }
  .fs-94-lg {
    font-size: 9.4rem;
  }
  .fs-95-lg {
    font-size: 9.5rem;
  }
  .fs-96-lg {
    font-size: 9.6rem;
  }
  .fs-97-lg {
    font-size: 9.7rem;
  }
  .fs-98-lg {
    font-size: 9.8rem;
  }
  .fs-99-lg {
    font-size: 9.9rem;
  }
  .fs-100-lg {
    font-size: 10rem;
  }
}
@media (max-width: 767px) {
  .fs-10-md {
    font-size: 1rem;
  }
  .fs-11-md {
    font-size: 1.1rem;
  }
  .fs-12-md {
    font-size: 1.2rem;
  }
  .fs-13-md {
    font-size: 1.3rem;
  }
  .fs-14-md {
    font-size: 1.4rem;
  }
  .fs-15-md {
    font-size: 1.5rem;
  }
  .fs-16-md {
    font-size: 1.6rem;
  }
  .fs-17-md {
    font-size: 1.7rem;
  }
  .fs-18-md {
    font-size: 1.8rem;
  }
  .fs-19-md {
    font-size: 1.9rem;
  }
  .fs-20-md {
    font-size: 2rem;
  }
  .fs-21-md {
    font-size: 2.1rem;
  }
  .fs-22-md {
    font-size: 2.2rem;
  }
  .fs-23-md {
    font-size: 2.3rem;
  }
  .fs-24-md {
    font-size: 2.4rem;
  }
  .fs-25-md {
    font-size: 2.5rem;
  }
  .fs-26-md {
    font-size: 2.6rem;
  }
  .fs-27-md {
    font-size: 2.7rem;
  }
  .fs-28-md {
    font-size: 2.8rem;
  }
  .fs-29-md {
    font-size: 2.9rem;
  }
  .fs-30-md {
    font-size: 3rem;
  }
  .fs-31-md {
    font-size: 3.1rem;
  }
  .fs-32-md {
    font-size: 3.2rem;
  }
  .fs-33-md {
    font-size: 3.3rem;
  }
  .fs-34-md {
    font-size: 3.4rem;
  }
  .fs-35-md {
    font-size: 3.5rem;
  }
  .fs-36-md {
    font-size: 3.6rem;
  }
  .fs-37-md {
    font-size: 3.7rem;
  }
  .fs-38-md {
    font-size: 3.8rem;
  }
  .fs-39-md {
    font-size: 3.9rem;
  }
  .fs-40-md {
    font-size: 4rem;
  }
  .fs-41-md {
    font-size: 4.1rem;
  }
  .fs-42-md {
    font-size: 4.2rem;
  }
  .fs-43-md {
    font-size: 4.3rem;
  }
  .fs-44-md {
    font-size: 4.4rem;
  }
  .fs-45-md {
    font-size: 4.5rem;
  }
  .fs-46-md {
    font-size: 4.6rem;
  }
  .fs-47-md {
    font-size: 4.7rem;
  }
  .fs-48-md {
    font-size: 4.8rem;
  }
  .fs-49-md {
    font-size: 4.9rem;
  }
  .fs-50-md {
    font-size: 5rem;
  }
  .fs-51-md {
    font-size: 5.1rem;
  }
  .fs-52-md {
    font-size: 5.2rem;
  }
  .fs-53-md {
    font-size: 5.3rem;
  }
  .fs-54-md {
    font-size: 5.4rem;
  }
  .fs-55-md {
    font-size: 5.5rem;
  }
  .fs-56-md {
    font-size: 5.6rem;
  }
  .fs-57-md {
    font-size: 5.7rem;
  }
  .fs-58-md {
    font-size: 5.8rem;
  }
  .fs-59-md {
    font-size: 5.9rem;
  }
  .fs-60-md {
    font-size: 6rem;
  }
  .fs-61-md {
    font-size: 6.1rem;
  }
  .fs-62-md {
    font-size: 6.2rem;
  }
  .fs-63-md {
    font-size: 6.3rem;
  }
  .fs-64-md {
    font-size: 6.4rem;
  }
  .fs-65-md {
    font-size: 6.5rem;
  }
  .fs-66-md {
    font-size: 6.6rem;
  }
  .fs-67-md {
    font-size: 6.7rem;
  }
  .fs-68-md {
    font-size: 6.8rem;
  }
  .fs-69-md {
    font-size: 6.9rem;
  }
  .fs-70-md {
    font-size: 7rem;
  }
  .fs-71-md {
    font-size: 7.1rem;
  }
  .fs-72-md {
    font-size: 7.2rem;
  }
  .fs-73-md {
    font-size: 7.3rem;
  }
  .fs-74-md {
    font-size: 7.4rem;
  }
  .fs-75-md {
    font-size: 7.5rem;
  }
  .fs-76-md {
    font-size: 7.6rem;
  }
  .fs-77-md {
    font-size: 7.7rem;
  }
  .fs-78-md {
    font-size: 7.8rem;
  }
  .fs-79-md {
    font-size: 7.9rem;
  }
  .fs-80-md {
    font-size: 8rem;
  }
  .fs-81-md {
    font-size: 8.1rem;
  }
  .fs-82-md {
    font-size: 8.2rem;
  }
  .fs-83-md {
    font-size: 8.3rem;
  }
  .fs-84-md {
    font-size: 8.4rem;
  }
  .fs-85-md {
    font-size: 8.5rem;
  }
  .fs-86-md {
    font-size: 8.6rem;
  }
  .fs-87-md {
    font-size: 8.7rem;
  }
  .fs-88-md {
    font-size: 8.8rem;
  }
  .fs-89-md {
    font-size: 8.9rem;
  }
  .fs-90-md {
    font-size: 9rem;
  }
  .fs-91-md {
    font-size: 9.1rem;
  }
  .fs-92-md {
    font-size: 9.2rem;
  }
  .fs-93-md {
    font-size: 9.3rem;
  }
  .fs-94-md {
    font-size: 9.4rem;
  }
  .fs-95-md {
    font-size: 9.5rem;
  }
  .fs-96-md {
    font-size: 9.6rem;
  }
  .fs-97-md {
    font-size: 9.7rem;
  }
  .fs-98-md {
    font-size: 9.8rem;
  }
  .fs-99-md {
    font-size: 9.9rem;
  }
  .fs-100-md {
    font-size: 10rem;
  }
}
@media (max-width: 575px) {
  .fs-10-sm {
    font-size: 1rem;
  }
  .fs-11-sm {
    font-size: 1.1rem;
  }
  .fs-12-sm {
    font-size: 1.2rem;
  }
  .fs-13-sm {
    font-size: 1.3rem;
  }
  .fs-14-sm {
    font-size: 1.4rem;
  }
  .fs-15-sm {
    font-size: 1.5rem;
  }
  .fs-16-sm {
    font-size: 1.6rem;
  }
  .fs-17-sm {
    font-size: 1.7rem;
  }
  .fs-18-sm {
    font-size: 1.8rem;
  }
  .fs-19-sm {
    font-size: 1.9rem;
  }
  .fs-20-sm {
    font-size: 2rem;
  }
  .fs-21-sm {
    font-size: 2.1rem;
  }
  .fs-22-sm {
    font-size: 2.2rem;
  }
  .fs-23-sm {
    font-size: 2.3rem;
  }
  .fs-24-sm {
    font-size: 2.4rem;
  }
  .fs-25-sm {
    font-size: 2.5rem;
  }
  .fs-26-sm {
    font-size: 2.6rem;
  }
  .fs-27-sm {
    font-size: 2.7rem;
  }
  .fs-28-sm {
    font-size: 2.8rem;
  }
  .fs-29-sm {
    font-size: 2.9rem;
  }
  .fs-30-sm {
    font-size: 3rem;
  }
  .fs-31-sm {
    font-size: 3.1rem;
  }
  .fs-32-sm {
    font-size: 3.2rem;
  }
  .fs-33-sm {
    font-size: 3.3rem;
  }
  .fs-34-sm {
    font-size: 3.4rem;
  }
  .fs-35-sm {
    font-size: 3.5rem;
  }
  .fs-36-sm {
    font-size: 3.6rem;
  }
  .fs-37-sm {
    font-size: 3.7rem;
  }
  .fs-38-sm {
    font-size: 3.8rem;
  }
  .fs-39-sm {
    font-size: 3.9rem;
  }
  .fs-40-sm {
    font-size: 4rem;
  }
  .fs-41-sm {
    font-size: 4.1rem;
  }
  .fs-42-sm {
    font-size: 4.2rem;
  }
  .fs-43-sm {
    font-size: 4.3rem;
  }
  .fs-44-sm {
    font-size: 4.4rem;
  }
  .fs-45-sm {
    font-size: 4.5rem;
  }
  .fs-46-sm {
    font-size: 4.6rem;
  }
  .fs-47-sm {
    font-size: 4.7rem;
  }
  .fs-48-sm {
    font-size: 4.8rem;
  }
  .fs-49-sm {
    font-size: 4.9rem;
  }
  .fs-50-sm {
    font-size: 5rem;
  }
  .fs-51-sm {
    font-size: 5.1rem;
  }
  .fs-52-sm {
    font-size: 5.2rem;
  }
  .fs-53-sm {
    font-size: 5.3rem;
  }
  .fs-54-sm {
    font-size: 5.4rem;
  }
  .fs-55-sm {
    font-size: 5.5rem;
  }
  .fs-56-sm {
    font-size: 5.6rem;
  }
  .fs-57-sm {
    font-size: 5.7rem;
  }
  .fs-58-sm {
    font-size: 5.8rem;
  }
  .fs-59-sm {
    font-size: 5.9rem;
  }
  .fs-60-sm {
    font-size: 6rem;
  }
  .fs-61-sm {
    font-size: 6.1rem;
  }
  .fs-62-sm {
    font-size: 6.2rem;
  }
  .fs-63-sm {
    font-size: 6.3rem;
  }
  .fs-64-sm {
    font-size: 6.4rem;
  }
  .fs-65-sm {
    font-size: 6.5rem;
  }
  .fs-66-sm {
    font-size: 6.6rem;
  }
  .fs-67-sm {
    font-size: 6.7rem;
  }
  .fs-68-sm {
    font-size: 6.8rem;
  }
  .fs-69-sm {
    font-size: 6.9rem;
  }
  .fs-70-sm {
    font-size: 7rem;
  }
  .fs-71-sm {
    font-size: 7.1rem;
  }
  .fs-72-sm {
    font-size: 7.2rem;
  }
  .fs-73-sm {
    font-size: 7.3rem;
  }
  .fs-74-sm {
    font-size: 7.4rem;
  }
  .fs-75-sm {
    font-size: 7.5rem;
  }
  .fs-76-sm {
    font-size: 7.6rem;
  }
  .fs-77-sm {
    font-size: 7.7rem;
  }
  .fs-78-sm {
    font-size: 7.8rem;
  }
  .fs-79-sm {
    font-size: 7.9rem;
  }
  .fs-80-sm {
    font-size: 8rem;
  }
  .fs-81-sm {
    font-size: 8.1rem;
  }
  .fs-82-sm {
    font-size: 8.2rem;
  }
  .fs-83-sm {
    font-size: 8.3rem;
  }
  .fs-84-sm {
    font-size: 8.4rem;
  }
  .fs-85-sm {
    font-size: 8.5rem;
  }
  .fs-86-sm {
    font-size: 8.6rem;
  }
  .fs-87-sm {
    font-size: 8.7rem;
  }
  .fs-88-sm {
    font-size: 8.8rem;
  }
  .fs-89-sm {
    font-size: 8.9rem;
  }
  .fs-90-sm {
    font-size: 9rem;
  }
  .fs-91-sm {
    font-size: 9.1rem;
  }
  .fs-92-sm {
    font-size: 9.2rem;
  }
  .fs-93-sm {
    font-size: 9.3rem;
  }
  .fs-94-sm {
    font-size: 9.4rem;
  }
  .fs-95-sm {
    font-size: 9.5rem;
  }
  .fs-96-sm {
    font-size: 9.6rem;
  }
  .fs-97-sm {
    font-size: 9.7rem;
  }
  .fs-98-sm {
    font-size: 9.8rem;
  }
  .fs-99-sm {
    font-size: 9.9rem;
  }
  .fs-100-sm {
    font-size: 10rem;
  }
}
.lh-1 {
  line-height: 1.1;
}

.lh-2 {
  line-height: 1.2;
}

.lh-3 {
  line-height: 1.3;
}

.lh-4 {
  line-height: 1.4;
}

.lh-5 {
  line-height: 1.5;
}

.lh-6 {
  line-height: 1.6;
}

.lh-7 {
  line-height: 1.7;
}

.lh-8 {
  line-height: 1.8;
}

.lh-9 {
  line-height: 1.9;
}

.lh-10 {
  line-height: 2;
}

.lh-11 {
  line-height: 2.1;
}

.lh-12 {
  line-height: 2.2;
}

.lh-13 {
  line-height: 2.3;
}

.lh-14 {
  line-height: 2.4;
}

.lh-15 {
  line-height: 2.5;
}

@media (max-width: 1599px) {
  .lh-1-xxl {
    line-height: 1.1;
  }
  .lh-2-xxl {
    line-height: 1.2;
  }
  .lh-3-xxl {
    line-height: 1.3;
  }
  .lh-4-xxl {
    line-height: 1.4;
  }
  .lh-5-xxl {
    line-height: 1.5;
  }
  .lh-6-xxl {
    line-height: 1.6;
  }
  .lh-7-xxl {
    line-height: 1.7;
  }
  .lh-8-xxl {
    line-height: 1.8;
  }
  .lh-9-xxl {
    line-height: 1.9;
  }
  .lh-10-xxl {
    line-height: 2;
  }
  .lh-11-xxl {
    line-height: 2.1;
  }
  .lh-12-xxl {
    line-height: 2.2;
  }
  .lh-13-xxl {
    line-height: 2.3;
  }
  .lh-14-xxl {
    line-height: 2.4;
  }
  .lh-15-xxl {
    line-height: 2.5;
  }
}
@media (max-width: 1199px) {
  .lh-1-xl {
    line-height: 1.1;
  }
  .lh-2-xl {
    line-height: 1.2;
  }
  .lh-3-xl {
    line-height: 1.3;
  }
  .lh-4-xl {
    line-height: 1.4;
  }
  .lh-5-xl {
    line-height: 1.5;
  }
  .lh-6-xl {
    line-height: 1.6;
  }
  .lh-7-xl {
    line-height: 1.7;
  }
  .lh-8-xl {
    line-height: 1.8;
  }
  .lh-9-xl {
    line-height: 1.9;
  }
  .lh-10-xl {
    line-height: 2;
  }
  .lh-11-xl {
    line-height: 2.1;
  }
  .lh-12-xl {
    line-height: 2.2;
  }
  .lh-13-xl {
    line-height: 2.3;
  }
  .lh-14-xl {
    line-height: 2.4;
  }
  .lh-15-xl {
    line-height: 2.5;
  }
}
@media (max-width: 1023px) {
  .lh-1-lg {
    line-height: 1.1;
  }
  .lh-2-lg {
    line-height: 1.2;
  }
  .lh-3-lg {
    line-height: 1.3;
  }
  .lh-4-lg {
    line-height: 1.4;
  }
  .lh-5-lg {
    line-height: 1.5;
  }
  .lh-6-lg {
    line-height: 1.6;
  }
  .lh-7-lg {
    line-height: 1.7;
  }
  .lh-8-lg {
    line-height: 1.8;
  }
  .lh-9-lg {
    line-height: 1.9;
  }
  .lh-10-lg {
    line-height: 2;
  }
  .lh-11-lg {
    line-height: 2.1;
  }
  .lh-12-lg {
    line-height: 2.2;
  }
  .lh-13-lg {
    line-height: 2.3;
  }
  .lh-14-lg {
    line-height: 2.4;
  }
  .lh-15-lg {
    line-height: 2.5;
  }
}
@media (max-width: 767px) {
  .lh-1-md {
    line-height: 1.1;
  }
  .lh-2-md {
    line-height: 1.2;
  }
  .lh-3-md {
    line-height: 1.3;
  }
  .lh-4-md {
    line-height: 1.4;
  }
  .lh-5-md {
    line-height: 1.5;
  }
  .lh-6-md {
    line-height: 1.6;
  }
  .lh-7-md {
    line-height: 1.7;
  }
  .lh-8-md {
    line-height: 1.8;
  }
  .lh-9-md {
    line-height: 1.9;
  }
  .lh-10-md {
    line-height: 2;
  }
  .lh-11-md {
    line-height: 2.1;
  }
  .lh-12-md {
    line-height: 2.2;
  }
  .lh-13-md {
    line-height: 2.3;
  }
  .lh-14-md {
    line-height: 2.4;
  }
  .lh-15-md {
    line-height: 2.5;
  }
}
@media (max-width: 575px) {
  .lh-1-sm {
    line-height: 1.1;
  }
  .lh-2-sm {
    line-height: 1.2;
  }
  .lh-3-sm {
    line-height: 1.3;
  }
  .lh-4-sm {
    line-height: 1.4;
  }
  .lh-5-sm {
    line-height: 1.5;
  }
  .lh-6-sm {
    line-height: 1.6;
  }
  .lh-7-sm {
    line-height: 1.7;
  }
  .lh-8-sm {
    line-height: 1.8;
  }
  .lh-9-sm {
    line-height: 1.9;
  }
  .lh-10-sm {
    line-height: 2;
  }
  .lh-11-sm {
    line-height: 2.1;
  }
  .lh-12-sm {
    line-height: 2.2;
  }
  .lh-13-sm {
    line-height: 2.3;
  }
  .lh-14-sm {
    line-height: 2.4;
  }
  .lh-15-sm {
    line-height: 2.5;
  }
}
/*utility
-----------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
}

ol {
  padding-left: 1em;
}

.float-l {
  float: left;
}

.float-r {
  float: right;
}

.en {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.mincho {
  font-family: "Noto Serif JP", serif;
}

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

.line {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #F2EEE6 0%) repeat scroll 0 0;
}

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

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

.color-main {
  color: #0A3A60 !important;
}

.color-accent01 {
  color: #073190 !important;
}

.color-accent02 {
  color: #F4EB51 !important;
}

.color-white {
  color: #fff;
}

.color-gray {
  color: #666 !important;
}

.color-caution {
  color: #E60000 !important;
}

.bold, .page-header .page-title .heading {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

.underline {
  text-decoration: underline !important;
}

.radius-100 {
  border-radius: 100px;
}

.radius-20 {
  border-radius: 20px;
}

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

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

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

.pos-r {
  position: relative;
}

.box-shadow {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.bg-main {
  background: #0A3A60;
}

.bg-white {
  background: #fff;
}

.block {
  display: block !important;
}
@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;
  }
}

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

.inline-block {
  display: none;
}
@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;
  }
}

/* margin padding gap
-----------------------------------------------------*/
/*
https://gist.github.com/jacurtis/30da4bf9a6c9b9b5cc0aebac512ca7c9
This .scss loop will create "margin helpers" and "padding helpers" for use in your web projects.
It will generate several classes such as:
.m-r-10 which gives margin-right 10 pixels.
.m-r-15 gives MARGIN to the RIGHT 15 pixels.
.m-t-15 gives MARGIN to the TOP 15 pixels and so on.
.p-b-5 gives PADDING to the BOTTOM of 5 pixels
.p-l-40 gives PADDING to the LEFT of 40 pixels
The first letter is "m" or "p" for MARGIN or PADDING
Second letter is "t", "b", "l", or "r" for TOP, BOTTOM, LEFT, or RIGHT
Third letter is the number of spacing in pixels. Adjust the amounts generated by editing the $spaceamounts variable below.
     m-[tblr]-[0,10, 15, 20, 25, 30, 35, 40, 45, 50, 60, 70, 80, 100]
     p-[tblr]-[0,10, 15, 20, 25, 30, 35, 40, 45, 50, 60, 70, 80, 100]
*/
.mt-0 {
  margin-top: 0rem !important;
}

.pt-0 {
  padding-top: 0rem !important;
}

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

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

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

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

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

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

.mt-5 {
  margin-top: 0.5rem !important;
}

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

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

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

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

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

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

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

.mt-10 {
  margin-top: 1rem !important;
}

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

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

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

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

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

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

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

.mt-15 {
  margin-top: 1.5rem !important;
}

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

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

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

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

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

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

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

.mt-20 {
  margin-top: 2rem !important;
}

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

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

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

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

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

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

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

.mt-25 {
  margin-top: 2.5rem !important;
}

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

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

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

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

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

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

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

.mt-30 {
  margin-top: 3rem !important;
}

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

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

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

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

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

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

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

.mt-35 {
  margin-top: 3.5rem !important;
}

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

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

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

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

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

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

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

.mt-40 {
  margin-top: 4rem !important;
}

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

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

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

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

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

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

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

.mt-45 {
  margin-top: 4.5rem !important;
}

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

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

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

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

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

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

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

.mt-50 {
  margin-top: 5rem !important;
}

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

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

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

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

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

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

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

.mt-60 {
  margin-top: 6rem !important;
}

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

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

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

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

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

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

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

.mt-70 {
  margin-top: 7rem !important;
}

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

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

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

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

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

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

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

.mt-80 {
  margin-top: 8rem !important;
}

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

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

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

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

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

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

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

.mt-90 {
  margin-top: 9rem !important;
}

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

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

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

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

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

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

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

.mt-100 {
  margin-top: 10rem !important;
}

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

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

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

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

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

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

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

@media (max-width: 1599px) {
  .mt-0-xxl {
    margin-top: 0rem !important;
  }
  .pt-0-xxl {
    padding-top: 0rem !important;
  }
  .mb-0-xxl {
    margin-bottom: 0rem !important;
  }
  .pb-0-xxl {
    padding-bottom: 0rem !important;
  }
  .ml-0-xxl {
    margin-left: 0rem !important;
  }
  .pl-0-xxl {
    padding-left: 0rem !important;
  }
  .mr-0-xxl {
    margin-right: 0rem !important;
  }
  .pr-0-xxl {
    padding-right: 0rem !important;
  }
  .mt-5-xxl {
    margin-top: 0.5rem !important;
  }
  .pt-5-xxl {
    padding-top: 0.5rem !important;
  }
  .mb-5-xxl {
    margin-bottom: 0.5rem !important;
  }
  .pb-5-xxl {
    padding-bottom: 0.5rem !important;
  }
  .ml-5-xxl {
    margin-left: 0.5rem !important;
  }
  .pl-5-xxl {
    padding-left: 0.5rem !important;
  }
  .mr-5-xxl {
    margin-right: 0.5rem !important;
  }
  .pr-5-xxl {
    padding-right: 0.5rem !important;
  }
  .mt-10-xxl {
    margin-top: 1rem !important;
  }
  .pt-10-xxl {
    padding-top: 1rem !important;
  }
  .mb-10-xxl {
    margin-bottom: 1rem !important;
  }
  .pb-10-xxl {
    padding-bottom: 1rem !important;
  }
  .ml-10-xxl {
    margin-left: 1rem !important;
  }
  .pl-10-xxl {
    padding-left: 1rem !important;
  }
  .mr-10-xxl {
    margin-right: 1rem !important;
  }
  .pr-10-xxl {
    padding-right: 1rem !important;
  }
  .mt-15-xxl {
    margin-top: 1.5rem !important;
  }
  .pt-15-xxl {
    padding-top: 1.5rem !important;
  }
  .mb-15-xxl {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-xxl {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-xxl {
    margin-left: 1.5rem !important;
  }
  .pl-15-xxl {
    padding-left: 1.5rem !important;
  }
  .mr-15-xxl {
    margin-right: 1.5rem !important;
  }
  .pr-15-xxl {
    padding-right: 1.5rem !important;
  }
  .mt-20-xxl {
    margin-top: 2rem !important;
  }
  .pt-20-xxl {
    padding-top: 2rem !important;
  }
  .mb-20-xxl {
    margin-bottom: 2rem !important;
  }
  .pb-20-xxl {
    padding-bottom: 2rem !important;
  }
  .ml-20-xxl {
    margin-left: 2rem !important;
  }
  .pl-20-xxl {
    padding-left: 2rem !important;
  }
  .mr-20-xxl {
    margin-right: 2rem !important;
  }
  .pr-20-xxl {
    padding-right: 2rem !important;
  }
  .mt-25-xxl {
    margin-top: 2.5rem !important;
  }
  .pt-25-xxl {
    padding-top: 2.5rem !important;
  }
  .mb-25-xxl {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-xxl {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-xxl {
    margin-left: 2.5rem !important;
  }
  .pl-25-xxl {
    padding-left: 2.5rem !important;
  }
  .mr-25-xxl {
    margin-right: 2.5rem !important;
  }
  .pr-25-xxl {
    padding-right: 2.5rem !important;
  }
  .mt-30-xxl {
    margin-top: 3rem !important;
  }
  .pt-30-xxl {
    padding-top: 3rem !important;
  }
  .mb-30-xxl {
    margin-bottom: 3rem !important;
  }
  .pb-30-xxl {
    padding-bottom: 3rem !important;
  }
  .ml-30-xxl {
    margin-left: 3rem !important;
  }
  .pl-30-xxl {
    padding-left: 3rem !important;
  }
  .mr-30-xxl {
    margin-right: 3rem !important;
  }
  .pr-30-xxl {
    padding-right: 3rem !important;
  }
  .mt-35-xxl {
    margin-top: 3.5rem !important;
  }
  .pt-35-xxl {
    padding-top: 3.5rem !important;
  }
  .mb-35-xxl {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-xxl {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-xxl {
    margin-left: 3.5rem !important;
  }
  .pl-35-xxl {
    padding-left: 3.5rem !important;
  }
  .mr-35-xxl {
    margin-right: 3.5rem !important;
  }
  .pr-35-xxl {
    padding-right: 3.5rem !important;
  }
  .mt-40-xxl {
    margin-top: 4rem !important;
  }
  .pt-40-xxl {
    padding-top: 4rem !important;
  }
  .mb-40-xxl {
    margin-bottom: 4rem !important;
  }
  .pb-40-xxl {
    padding-bottom: 4rem !important;
  }
  .ml-40-xxl {
    margin-left: 4rem !important;
  }
  .pl-40-xxl {
    padding-left: 4rem !important;
  }
  .mr-40-xxl {
    margin-right: 4rem !important;
  }
  .pr-40-xxl {
    padding-right: 4rem !important;
  }
  .mt-45-xxl {
    margin-top: 4.5rem !important;
  }
  .pt-45-xxl {
    padding-top: 4.5rem !important;
  }
  .mb-45-xxl {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-xxl {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-xxl {
    margin-left: 4.5rem !important;
  }
  .pl-45-xxl {
    padding-left: 4.5rem !important;
  }
  .mr-45-xxl {
    margin-right: 4.5rem !important;
  }
  .pr-45-xxl {
    padding-right: 4.5rem !important;
  }
  .mt-50-xxl {
    margin-top: 5rem !important;
  }
  .pt-50-xxl {
    padding-top: 5rem !important;
  }
  .mb-50-xxl {
    margin-bottom: 5rem !important;
  }
  .pb-50-xxl {
    padding-bottom: 5rem !important;
  }
  .ml-50-xxl {
    margin-left: 5rem !important;
  }
  .pl-50-xxl {
    padding-left: 5rem !important;
  }
  .mr-50-xxl {
    margin-right: 5rem !important;
  }
  .pr-50-xxl {
    padding-right: 5rem !important;
  }
  .mt-60-xxl {
    margin-top: 6rem !important;
  }
  .pt-60-xxl {
    padding-top: 6rem !important;
  }
  .mb-60-xxl {
    margin-bottom: 6rem !important;
  }
  .pb-60-xxl {
    padding-bottom: 6rem !important;
  }
  .ml-60-xxl {
    margin-left: 6rem !important;
  }
  .pl-60-xxl {
    padding-left: 6rem !important;
  }
  .mr-60-xxl {
    margin-right: 6rem !important;
  }
  .pr-60-xxl {
    padding-right: 6rem !important;
  }
  .mt-70-xxl {
    margin-top: 7rem !important;
  }
  .pt-70-xxl {
    padding-top: 7rem !important;
  }
  .mb-70-xxl {
    margin-bottom: 7rem !important;
  }
  .pb-70-xxl {
    padding-bottom: 7rem !important;
  }
  .ml-70-xxl {
    margin-left: 7rem !important;
  }
  .pl-70-xxl {
    padding-left: 7rem !important;
  }
  .mr-70-xxl {
    margin-right: 7rem !important;
  }
  .pr-70-xxl {
    padding-right: 7rem !important;
  }
  .mt-80-xxl {
    margin-top: 8rem !important;
  }
  .pt-80-xxl {
    padding-top: 8rem !important;
  }
  .mb-80-xxl {
    margin-bottom: 8rem !important;
  }
  .pb-80-xxl {
    padding-bottom: 8rem !important;
  }
  .ml-80-xxl {
    margin-left: 8rem !important;
  }
  .pl-80-xxl {
    padding-left: 8rem !important;
  }
  .mr-80-xxl {
    margin-right: 8rem !important;
  }
  .pr-80-xxl {
    padding-right: 8rem !important;
  }
  .mt-90-xxl {
    margin-top: 9rem !important;
  }
  .pt-90-xxl {
    padding-top: 9rem !important;
  }
  .mb-90-xxl {
    margin-bottom: 9rem !important;
  }
  .pb-90-xxl {
    padding-bottom: 9rem !important;
  }
  .ml-90-xxl {
    margin-left: 9rem !important;
  }
  .pl-90-xxl {
    padding-left: 9rem !important;
  }
  .mr-90-xxl {
    margin-right: 9rem !important;
  }
  .pr-90-xxl {
    padding-right: 9rem !important;
  }
  .mt-100-xxl {
    margin-top: 10rem !important;
  }
  .pt-100-xxl {
    padding-top: 10rem !important;
  }
  .mb-100-xxl {
    margin-bottom: 10rem !important;
  }
  .pb-100-xxl {
    padding-bottom: 10rem !important;
  }
  .ml-100-xxl {
    margin-left: 10rem !important;
  }
  .pl-100-xxl {
    padding-left: 10rem !important;
  }
  .mr-100-xxl {
    margin-right: 10rem !important;
  }
  .pr-100-xxl {
    padding-right: 10rem !important;
  }
}
@media (max-width: 1199px) {
  .mt-0-xl {
    margin-top: 0rem !important;
  }
  .pt-0-xl {
    padding-top: 0rem !important;
  }
  .mb-0-xl {
    margin-bottom: 0rem !important;
  }
  .pb-0-xl {
    padding-bottom: 0rem !important;
  }
  .ml-0-xl {
    margin-left: 0rem !important;
  }
  .pl-0-xl {
    padding-left: 0rem !important;
  }
  .mr-0-xl {
    margin-right: 0rem !important;
  }
  .pr-0-xl {
    padding-right: 0rem !important;
  }
  .mt-5-xl {
    margin-top: 0.5rem !important;
  }
  .pt-5-xl {
    padding-top: 0.5rem !important;
  }
  .mb-5-xl {
    margin-bottom: 0.5rem !important;
  }
  .pb-5-xl {
    padding-bottom: 0.5rem !important;
  }
  .ml-5-xl {
    margin-left: 0.5rem !important;
  }
  .pl-5-xl {
    padding-left: 0.5rem !important;
  }
  .mr-5-xl {
    margin-right: 0.5rem !important;
  }
  .pr-5-xl {
    padding-right: 0.5rem !important;
  }
  .mt-10-xl {
    margin-top: 1rem !important;
  }
  .pt-10-xl {
    padding-top: 1rem !important;
  }
  .mb-10-xl {
    margin-bottom: 1rem !important;
  }
  .pb-10-xl {
    padding-bottom: 1rem !important;
  }
  .ml-10-xl {
    margin-left: 1rem !important;
  }
  .pl-10-xl {
    padding-left: 1rem !important;
  }
  .mr-10-xl {
    margin-right: 1rem !important;
  }
  .pr-10-xl {
    padding-right: 1rem !important;
  }
  .mt-15-xl {
    margin-top: 1.5rem !important;
  }
  .pt-15-xl {
    padding-top: 1.5rem !important;
  }
  .mb-15-xl {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-xl {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-xl {
    margin-left: 1.5rem !important;
  }
  .pl-15-xl {
    padding-left: 1.5rem !important;
  }
  .mr-15-xl {
    margin-right: 1.5rem !important;
  }
  .pr-15-xl {
    padding-right: 1.5rem !important;
  }
  .mt-20-xl {
    margin-top: 2rem !important;
  }
  .pt-20-xl {
    padding-top: 2rem !important;
  }
  .mb-20-xl {
    margin-bottom: 2rem !important;
  }
  .pb-20-xl {
    padding-bottom: 2rem !important;
  }
  .ml-20-xl {
    margin-left: 2rem !important;
  }
  .pl-20-xl {
    padding-left: 2rem !important;
  }
  .mr-20-xl {
    margin-right: 2rem !important;
  }
  .pr-20-xl {
    padding-right: 2rem !important;
  }
  .mt-25-xl {
    margin-top: 2.5rem !important;
  }
  .pt-25-xl {
    padding-top: 2.5rem !important;
  }
  .mb-25-xl {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-xl {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-xl {
    margin-left: 2.5rem !important;
  }
  .pl-25-xl {
    padding-left: 2.5rem !important;
  }
  .mr-25-xl {
    margin-right: 2.5rem !important;
  }
  .pr-25-xl {
    padding-right: 2.5rem !important;
  }
  .mt-30-xl {
    margin-top: 3rem !important;
  }
  .pt-30-xl {
    padding-top: 3rem !important;
  }
  .mb-30-xl {
    margin-bottom: 3rem !important;
  }
  .pb-30-xl {
    padding-bottom: 3rem !important;
  }
  .ml-30-xl {
    margin-left: 3rem !important;
  }
  .pl-30-xl {
    padding-left: 3rem !important;
  }
  .mr-30-xl {
    margin-right: 3rem !important;
  }
  .pr-30-xl {
    padding-right: 3rem !important;
  }
  .mt-35-xl {
    margin-top: 3.5rem !important;
  }
  .pt-35-xl {
    padding-top: 3.5rem !important;
  }
  .mb-35-xl {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-xl {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-xl {
    margin-left: 3.5rem !important;
  }
  .pl-35-xl {
    padding-left: 3.5rem !important;
  }
  .mr-35-xl {
    margin-right: 3.5rem !important;
  }
  .pr-35-xl {
    padding-right: 3.5rem !important;
  }
  .mt-40-xl {
    margin-top: 4rem !important;
  }
  .pt-40-xl {
    padding-top: 4rem !important;
  }
  .mb-40-xl {
    margin-bottom: 4rem !important;
  }
  .pb-40-xl {
    padding-bottom: 4rem !important;
  }
  .ml-40-xl {
    margin-left: 4rem !important;
  }
  .pl-40-xl {
    padding-left: 4rem !important;
  }
  .mr-40-xl {
    margin-right: 4rem !important;
  }
  .pr-40-xl {
    padding-right: 4rem !important;
  }
  .mt-45-xl {
    margin-top: 4.5rem !important;
  }
  .pt-45-xl {
    padding-top: 4.5rem !important;
  }
  .mb-45-xl {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-xl {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-xl {
    margin-left: 4.5rem !important;
  }
  .pl-45-xl {
    padding-left: 4.5rem !important;
  }
  .mr-45-xl {
    margin-right: 4.5rem !important;
  }
  .pr-45-xl {
    padding-right: 4.5rem !important;
  }
  .mt-50-xl {
    margin-top: 5rem !important;
  }
  .pt-50-xl {
    padding-top: 5rem !important;
  }
  .mb-50-xl {
    margin-bottom: 5rem !important;
  }
  .pb-50-xl {
    padding-bottom: 5rem !important;
  }
  .ml-50-xl {
    margin-left: 5rem !important;
  }
  .pl-50-xl {
    padding-left: 5rem !important;
  }
  .mr-50-xl {
    margin-right: 5rem !important;
  }
  .pr-50-xl {
    padding-right: 5rem !important;
  }
  .mt-60-xl {
    margin-top: 6rem !important;
  }
  .pt-60-xl {
    padding-top: 6rem !important;
  }
  .mb-60-xl {
    margin-bottom: 6rem !important;
  }
  .pb-60-xl {
    padding-bottom: 6rem !important;
  }
  .ml-60-xl {
    margin-left: 6rem !important;
  }
  .pl-60-xl {
    padding-left: 6rem !important;
  }
  .mr-60-xl {
    margin-right: 6rem !important;
  }
  .pr-60-xl {
    padding-right: 6rem !important;
  }
  .mt-70-xl {
    margin-top: 7rem !important;
  }
  .pt-70-xl {
    padding-top: 7rem !important;
  }
  .mb-70-xl {
    margin-bottom: 7rem !important;
  }
  .pb-70-xl {
    padding-bottom: 7rem !important;
  }
  .ml-70-xl {
    margin-left: 7rem !important;
  }
  .pl-70-xl {
    padding-left: 7rem !important;
  }
  .mr-70-xl {
    margin-right: 7rem !important;
  }
  .pr-70-xl {
    padding-right: 7rem !important;
  }
  .mt-80-xl {
    margin-top: 8rem !important;
  }
  .pt-80-xl {
    padding-top: 8rem !important;
  }
  .mb-80-xl {
    margin-bottom: 8rem !important;
  }
  .pb-80-xl {
    padding-bottom: 8rem !important;
  }
  .ml-80-xl {
    margin-left: 8rem !important;
  }
  .pl-80-xl {
    padding-left: 8rem !important;
  }
  .mr-80-xl {
    margin-right: 8rem !important;
  }
  .pr-80-xl {
    padding-right: 8rem !important;
  }
  .mt-90-xl {
    margin-top: 9rem !important;
  }
  .pt-90-xl {
    padding-top: 9rem !important;
  }
  .mb-90-xl {
    margin-bottom: 9rem !important;
  }
  .pb-90-xl {
    padding-bottom: 9rem !important;
  }
  .ml-90-xl {
    margin-left: 9rem !important;
  }
  .pl-90-xl {
    padding-left: 9rem !important;
  }
  .mr-90-xl {
    margin-right: 9rem !important;
  }
  .pr-90-xl {
    padding-right: 9rem !important;
  }
  .mt-100-xl {
    margin-top: 10rem !important;
  }
  .pt-100-xl {
    padding-top: 10rem !important;
  }
  .mb-100-xl {
    margin-bottom: 10rem !important;
  }
  .pb-100-xl {
    padding-bottom: 10rem !important;
  }
  .ml-100-xl {
    margin-left: 10rem !important;
  }
  .pl-100-xl {
    padding-left: 10rem !important;
  }
  .mr-100-xl {
    margin-right: 10rem !important;
  }
  .pr-100-xl {
    padding-right: 10rem !important;
  }
}
@media (max-width: 1023px) {
  .mt-0-lg {
    margin-top: 0rem !important;
  }
  .pt-0-lg {
    padding-top: 0rem !important;
  }
  .mb-0-lg {
    margin-bottom: 0rem !important;
  }
  .pb-0-lg {
    padding-bottom: 0rem !important;
  }
  .ml-0-lg {
    margin-left: 0rem !important;
  }
  .pl-0-lg {
    padding-left: 0rem !important;
  }
  .mr-0-lg {
    margin-right: 0rem !important;
  }
  .pr-0-lg {
    padding-right: 0rem !important;
  }
  .mt-5-lg {
    margin-top: 0.5rem !important;
  }
  .pt-5-lg {
    padding-top: 0.5rem !important;
  }
  .mb-5-lg {
    margin-bottom: 0.5rem !important;
  }
  .pb-5-lg {
    padding-bottom: 0.5rem !important;
  }
  .ml-5-lg {
    margin-left: 0.5rem !important;
  }
  .pl-5-lg {
    padding-left: 0.5rem !important;
  }
  .mr-5-lg {
    margin-right: 0.5rem !important;
  }
  .pr-5-lg {
    padding-right: 0.5rem !important;
  }
  .mt-10-lg {
    margin-top: 1rem !important;
  }
  .pt-10-lg {
    padding-top: 1rem !important;
  }
  .mb-10-lg {
    margin-bottom: 1rem !important;
  }
  .pb-10-lg {
    padding-bottom: 1rem !important;
  }
  .ml-10-lg {
    margin-left: 1rem !important;
  }
  .pl-10-lg {
    padding-left: 1rem !important;
  }
  .mr-10-lg {
    margin-right: 1rem !important;
  }
  .pr-10-lg {
    padding-right: 1rem !important;
  }
  .mt-15-lg {
    margin-top: 1.5rem !important;
  }
  .pt-15-lg {
    padding-top: 1.5rem !important;
  }
  .mb-15-lg {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-lg {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-lg {
    margin-left: 1.5rem !important;
  }
  .pl-15-lg {
    padding-left: 1.5rem !important;
  }
  .mr-15-lg {
    margin-right: 1.5rem !important;
  }
  .pr-15-lg {
    padding-right: 1.5rem !important;
  }
  .mt-20-lg {
    margin-top: 2rem !important;
  }
  .pt-20-lg {
    padding-top: 2rem !important;
  }
  .mb-20-lg {
    margin-bottom: 2rem !important;
  }
  .pb-20-lg {
    padding-bottom: 2rem !important;
  }
  .ml-20-lg {
    margin-left: 2rem !important;
  }
  .pl-20-lg {
    padding-left: 2rem !important;
  }
  .mr-20-lg {
    margin-right: 2rem !important;
  }
  .pr-20-lg {
    padding-right: 2rem !important;
  }
  .mt-25-lg {
    margin-top: 2.5rem !important;
  }
  .pt-25-lg {
    padding-top: 2.5rem !important;
  }
  .mb-25-lg {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-lg {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-lg {
    margin-left: 2.5rem !important;
  }
  .pl-25-lg {
    padding-left: 2.5rem !important;
  }
  .mr-25-lg {
    margin-right: 2.5rem !important;
  }
  .pr-25-lg {
    padding-right: 2.5rem !important;
  }
  .mt-30-lg {
    margin-top: 3rem !important;
  }
  .pt-30-lg {
    padding-top: 3rem !important;
  }
  .mb-30-lg {
    margin-bottom: 3rem !important;
  }
  .pb-30-lg {
    padding-bottom: 3rem !important;
  }
  .ml-30-lg {
    margin-left: 3rem !important;
  }
  .pl-30-lg {
    padding-left: 3rem !important;
  }
  .mr-30-lg {
    margin-right: 3rem !important;
  }
  .pr-30-lg {
    padding-right: 3rem !important;
  }
  .mt-35-lg {
    margin-top: 3.5rem !important;
  }
  .pt-35-lg {
    padding-top: 3.5rem !important;
  }
  .mb-35-lg {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-lg {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-lg {
    margin-left: 3.5rem !important;
  }
  .pl-35-lg {
    padding-left: 3.5rem !important;
  }
  .mr-35-lg {
    margin-right: 3.5rem !important;
  }
  .pr-35-lg {
    padding-right: 3.5rem !important;
  }
  .mt-40-lg {
    margin-top: 4rem !important;
  }
  .pt-40-lg {
    padding-top: 4rem !important;
  }
  .mb-40-lg {
    margin-bottom: 4rem !important;
  }
  .pb-40-lg {
    padding-bottom: 4rem !important;
  }
  .ml-40-lg {
    margin-left: 4rem !important;
  }
  .pl-40-lg {
    padding-left: 4rem !important;
  }
  .mr-40-lg {
    margin-right: 4rem !important;
  }
  .pr-40-lg {
    padding-right: 4rem !important;
  }
  .mt-45-lg {
    margin-top: 4.5rem !important;
  }
  .pt-45-lg {
    padding-top: 4.5rem !important;
  }
  .mb-45-lg {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-lg {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-lg {
    margin-left: 4.5rem !important;
  }
  .pl-45-lg {
    padding-left: 4.5rem !important;
  }
  .mr-45-lg {
    margin-right: 4.5rem !important;
  }
  .pr-45-lg {
    padding-right: 4.5rem !important;
  }
  .mt-50-lg {
    margin-top: 5rem !important;
  }
  .pt-50-lg {
    padding-top: 5rem !important;
  }
  .mb-50-lg {
    margin-bottom: 5rem !important;
  }
  .pb-50-lg {
    padding-bottom: 5rem !important;
  }
  .ml-50-lg {
    margin-left: 5rem !important;
  }
  .pl-50-lg {
    padding-left: 5rem !important;
  }
  .mr-50-lg {
    margin-right: 5rem !important;
  }
  .pr-50-lg {
    padding-right: 5rem !important;
  }
  .mt-60-lg {
    margin-top: 6rem !important;
  }
  .pt-60-lg {
    padding-top: 6rem !important;
  }
  .mb-60-lg {
    margin-bottom: 6rem !important;
  }
  .pb-60-lg {
    padding-bottom: 6rem !important;
  }
  .ml-60-lg {
    margin-left: 6rem !important;
  }
  .pl-60-lg {
    padding-left: 6rem !important;
  }
  .mr-60-lg {
    margin-right: 6rem !important;
  }
  .pr-60-lg {
    padding-right: 6rem !important;
  }
  .mt-70-lg {
    margin-top: 7rem !important;
  }
  .pt-70-lg {
    padding-top: 7rem !important;
  }
  .mb-70-lg {
    margin-bottom: 7rem !important;
  }
  .pb-70-lg {
    padding-bottom: 7rem !important;
  }
  .ml-70-lg {
    margin-left: 7rem !important;
  }
  .pl-70-lg {
    padding-left: 7rem !important;
  }
  .mr-70-lg {
    margin-right: 7rem !important;
  }
  .pr-70-lg {
    padding-right: 7rem !important;
  }
  .mt-80-lg {
    margin-top: 8rem !important;
  }
  .pt-80-lg {
    padding-top: 8rem !important;
  }
  .mb-80-lg {
    margin-bottom: 8rem !important;
  }
  .pb-80-lg {
    padding-bottom: 8rem !important;
  }
  .ml-80-lg {
    margin-left: 8rem !important;
  }
  .pl-80-lg {
    padding-left: 8rem !important;
  }
  .mr-80-lg {
    margin-right: 8rem !important;
  }
  .pr-80-lg {
    padding-right: 8rem !important;
  }
  .mt-90-lg {
    margin-top: 9rem !important;
  }
  .pt-90-lg {
    padding-top: 9rem !important;
  }
  .mb-90-lg {
    margin-bottom: 9rem !important;
  }
  .pb-90-lg {
    padding-bottom: 9rem !important;
  }
  .ml-90-lg {
    margin-left: 9rem !important;
  }
  .pl-90-lg {
    padding-left: 9rem !important;
  }
  .mr-90-lg {
    margin-right: 9rem !important;
  }
  .pr-90-lg {
    padding-right: 9rem !important;
  }
  .mt-100-lg {
    margin-top: 10rem !important;
  }
  .pt-100-lg {
    padding-top: 10rem !important;
  }
  .mb-100-lg {
    margin-bottom: 10rem !important;
  }
  .pb-100-lg {
    padding-bottom: 10rem !important;
  }
  .ml-100-lg {
    margin-left: 10rem !important;
  }
  .pl-100-lg {
    padding-left: 10rem !important;
  }
  .mr-100-lg {
    margin-right: 10rem !important;
  }
  .pr-100-lg {
    padding-right: 10rem !important;
  }
}
@media (max-width: 767px) {
  .mt-0-md {
    margin-top: 0rem !important;
  }
  .pt-0-md {
    padding-top: 0rem !important;
  }
  .mb-0-md {
    margin-bottom: 0rem !important;
  }
  .pb-0-md {
    padding-bottom: 0rem !important;
  }
  .ml-0-md {
    margin-left: 0rem !important;
  }
  .pl-0-md {
    padding-left: 0rem !important;
  }
  .mr-0-md {
    margin-right: 0rem !important;
  }
  .pr-0-md {
    padding-right: 0rem !important;
  }
  .mt-5-md {
    margin-top: 0.5rem !important;
  }
  .pt-5-md {
    padding-top: 0.5rem !important;
  }
  .mb-5-md {
    margin-bottom: 0.5rem !important;
  }
  .pb-5-md {
    padding-bottom: 0.5rem !important;
  }
  .ml-5-md {
    margin-left: 0.5rem !important;
  }
  .pl-5-md {
    padding-left: 0.5rem !important;
  }
  .mr-5-md {
    margin-right: 0.5rem !important;
  }
  .pr-5-md {
    padding-right: 0.5rem !important;
  }
  .mt-10-md {
    margin-top: 1rem !important;
  }
  .pt-10-md {
    padding-top: 1rem !important;
  }
  .mb-10-md {
    margin-bottom: 1rem !important;
  }
  .pb-10-md {
    padding-bottom: 1rem !important;
  }
  .ml-10-md {
    margin-left: 1rem !important;
  }
  .pl-10-md {
    padding-left: 1rem !important;
  }
  .mr-10-md {
    margin-right: 1rem !important;
  }
  .pr-10-md {
    padding-right: 1rem !important;
  }
  .mt-15-md {
    margin-top: 1.5rem !important;
  }
  .pt-15-md {
    padding-top: 1.5rem !important;
  }
  .mb-15-md {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-md {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-md {
    margin-left: 1.5rem !important;
  }
  .pl-15-md {
    padding-left: 1.5rem !important;
  }
  .mr-15-md {
    margin-right: 1.5rem !important;
  }
  .pr-15-md {
    padding-right: 1.5rem !important;
  }
  .mt-20-md {
    margin-top: 2rem !important;
  }
  .pt-20-md {
    padding-top: 2rem !important;
  }
  .mb-20-md {
    margin-bottom: 2rem !important;
  }
  .pb-20-md {
    padding-bottom: 2rem !important;
  }
  .ml-20-md {
    margin-left: 2rem !important;
  }
  .pl-20-md {
    padding-left: 2rem !important;
  }
  .mr-20-md {
    margin-right: 2rem !important;
  }
  .pr-20-md {
    padding-right: 2rem !important;
  }
  .mt-25-md {
    margin-top: 2.5rem !important;
  }
  .pt-25-md {
    padding-top: 2.5rem !important;
  }
  .mb-25-md {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-md {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-md {
    margin-left: 2.5rem !important;
  }
  .pl-25-md {
    padding-left: 2.5rem !important;
  }
  .mr-25-md {
    margin-right: 2.5rem !important;
  }
  .pr-25-md {
    padding-right: 2.5rem !important;
  }
  .mt-30-md {
    margin-top: 3rem !important;
  }
  .pt-30-md {
    padding-top: 3rem !important;
  }
  .mb-30-md {
    margin-bottom: 3rem !important;
  }
  .pb-30-md {
    padding-bottom: 3rem !important;
  }
  .ml-30-md {
    margin-left: 3rem !important;
  }
  .pl-30-md {
    padding-left: 3rem !important;
  }
  .mr-30-md {
    margin-right: 3rem !important;
  }
  .pr-30-md {
    padding-right: 3rem !important;
  }
  .mt-35-md {
    margin-top: 3.5rem !important;
  }
  .pt-35-md {
    padding-top: 3.5rem !important;
  }
  .mb-35-md {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-md {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-md {
    margin-left: 3.5rem !important;
  }
  .pl-35-md {
    padding-left: 3.5rem !important;
  }
  .mr-35-md {
    margin-right: 3.5rem !important;
  }
  .pr-35-md {
    padding-right: 3.5rem !important;
  }
  .mt-40-md {
    margin-top: 4rem !important;
  }
  .pt-40-md {
    padding-top: 4rem !important;
  }
  .mb-40-md {
    margin-bottom: 4rem !important;
  }
  .pb-40-md {
    padding-bottom: 4rem !important;
  }
  .ml-40-md {
    margin-left: 4rem !important;
  }
  .pl-40-md {
    padding-left: 4rem !important;
  }
  .mr-40-md {
    margin-right: 4rem !important;
  }
  .pr-40-md {
    padding-right: 4rem !important;
  }
  .mt-45-md {
    margin-top: 4.5rem !important;
  }
  .pt-45-md {
    padding-top: 4.5rem !important;
  }
  .mb-45-md {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-md {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-md {
    margin-left: 4.5rem !important;
  }
  .pl-45-md {
    padding-left: 4.5rem !important;
  }
  .mr-45-md {
    margin-right: 4.5rem !important;
  }
  .pr-45-md {
    padding-right: 4.5rem !important;
  }
  .mt-50-md {
    margin-top: 5rem !important;
  }
  .pt-50-md {
    padding-top: 5rem !important;
  }
  .mb-50-md {
    margin-bottom: 5rem !important;
  }
  .pb-50-md {
    padding-bottom: 5rem !important;
  }
  .ml-50-md {
    margin-left: 5rem !important;
  }
  .pl-50-md {
    padding-left: 5rem !important;
  }
  .mr-50-md {
    margin-right: 5rem !important;
  }
  .pr-50-md {
    padding-right: 5rem !important;
  }
  .mt-60-md {
    margin-top: 6rem !important;
  }
  .pt-60-md {
    padding-top: 6rem !important;
  }
  .mb-60-md {
    margin-bottom: 6rem !important;
  }
  .pb-60-md {
    padding-bottom: 6rem !important;
  }
  .ml-60-md {
    margin-left: 6rem !important;
  }
  .pl-60-md {
    padding-left: 6rem !important;
  }
  .mr-60-md {
    margin-right: 6rem !important;
  }
  .pr-60-md {
    padding-right: 6rem !important;
  }
  .mt-70-md {
    margin-top: 7rem !important;
  }
  .pt-70-md {
    padding-top: 7rem !important;
  }
  .mb-70-md {
    margin-bottom: 7rem !important;
  }
  .pb-70-md {
    padding-bottom: 7rem !important;
  }
  .ml-70-md {
    margin-left: 7rem !important;
  }
  .pl-70-md {
    padding-left: 7rem !important;
  }
  .mr-70-md {
    margin-right: 7rem !important;
  }
  .pr-70-md {
    padding-right: 7rem !important;
  }
  .mt-80-md {
    margin-top: 8rem !important;
  }
  .pt-80-md {
    padding-top: 8rem !important;
  }
  .mb-80-md {
    margin-bottom: 8rem !important;
  }
  .pb-80-md {
    padding-bottom: 8rem !important;
  }
  .ml-80-md {
    margin-left: 8rem !important;
  }
  .pl-80-md {
    padding-left: 8rem !important;
  }
  .mr-80-md {
    margin-right: 8rem !important;
  }
  .pr-80-md {
    padding-right: 8rem !important;
  }
  .mt-90-md {
    margin-top: 9rem !important;
  }
  .pt-90-md {
    padding-top: 9rem !important;
  }
  .mb-90-md {
    margin-bottom: 9rem !important;
  }
  .pb-90-md {
    padding-bottom: 9rem !important;
  }
  .ml-90-md {
    margin-left: 9rem !important;
  }
  .pl-90-md {
    padding-left: 9rem !important;
  }
  .mr-90-md {
    margin-right: 9rem !important;
  }
  .pr-90-md {
    padding-right: 9rem !important;
  }
  .mt-100-md {
    margin-top: 10rem !important;
  }
  .pt-100-md {
    padding-top: 10rem !important;
  }
  .mb-100-md {
    margin-bottom: 10rem !important;
  }
  .pb-100-md {
    padding-bottom: 10rem !important;
  }
  .ml-100-md {
    margin-left: 10rem !important;
  }
  .pl-100-md {
    padding-left: 10rem !important;
  }
  .mr-100-md {
    margin-right: 10rem !important;
  }
  .pr-100-md {
    padding-right: 10rem !important;
  }
}
@media (max-width: 575px) {
  .mt-0-sm {
    margin-top: 0rem !important;
  }
  .pt-0-sm {
    padding-top: 0rem !important;
  }
  .mb-0-sm {
    margin-bottom: 0rem !important;
  }
  .pb-0-sm {
    padding-bottom: 0rem !important;
  }
  .ml-0-sm {
    margin-left: 0rem !important;
  }
  .pl-0-sm {
    padding-left: 0rem !important;
  }
  .mr-0-sm {
    margin-right: 0rem !important;
  }
  .pr-0-sm {
    padding-right: 0rem !important;
  }
  .mt-5-sm {
    margin-top: 0.5rem !important;
  }
  .pt-5-sm {
    padding-top: 0.5rem !important;
  }
  .mb-5-sm {
    margin-bottom: 0.5rem !important;
  }
  .pb-5-sm {
    padding-bottom: 0.5rem !important;
  }
  .ml-5-sm {
    margin-left: 0.5rem !important;
  }
  .pl-5-sm {
    padding-left: 0.5rem !important;
  }
  .mr-5-sm {
    margin-right: 0.5rem !important;
  }
  .pr-5-sm {
    padding-right: 0.5rem !important;
  }
  .mt-10-sm {
    margin-top: 1rem !important;
  }
  .pt-10-sm {
    padding-top: 1rem !important;
  }
  .mb-10-sm {
    margin-bottom: 1rem !important;
  }
  .pb-10-sm {
    padding-bottom: 1rem !important;
  }
  .ml-10-sm {
    margin-left: 1rem !important;
  }
  .pl-10-sm {
    padding-left: 1rem !important;
  }
  .mr-10-sm {
    margin-right: 1rem !important;
  }
  .pr-10-sm {
    padding-right: 1rem !important;
  }
  .mt-15-sm {
    margin-top: 1.5rem !important;
  }
  .pt-15-sm {
    padding-top: 1.5rem !important;
  }
  .mb-15-sm {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-sm {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-sm {
    margin-left: 1.5rem !important;
  }
  .pl-15-sm {
    padding-left: 1.5rem !important;
  }
  .mr-15-sm {
    margin-right: 1.5rem !important;
  }
  .pr-15-sm {
    padding-right: 1.5rem !important;
  }
  .mt-20-sm {
    margin-top: 2rem !important;
  }
  .pt-20-sm {
    padding-top: 2rem !important;
  }
  .mb-20-sm {
    margin-bottom: 2rem !important;
  }
  .pb-20-sm {
    padding-bottom: 2rem !important;
  }
  .ml-20-sm {
    margin-left: 2rem !important;
  }
  .pl-20-sm {
    padding-left: 2rem !important;
  }
  .mr-20-sm {
    margin-right: 2rem !important;
  }
  .pr-20-sm {
    padding-right: 2rem !important;
  }
  .mt-25-sm {
    margin-top: 2.5rem !important;
  }
  .pt-25-sm {
    padding-top: 2.5rem !important;
  }
  .mb-25-sm {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-sm {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-sm {
    margin-left: 2.5rem !important;
  }
  .pl-25-sm {
    padding-left: 2.5rem !important;
  }
  .mr-25-sm {
    margin-right: 2.5rem !important;
  }
  .pr-25-sm {
    padding-right: 2.5rem !important;
  }
  .mt-30-sm {
    margin-top: 3rem !important;
  }
  .pt-30-sm {
    padding-top: 3rem !important;
  }
  .mb-30-sm {
    margin-bottom: 3rem !important;
  }
  .pb-30-sm {
    padding-bottom: 3rem !important;
  }
  .ml-30-sm {
    margin-left: 3rem !important;
  }
  .pl-30-sm {
    padding-left: 3rem !important;
  }
  .mr-30-sm {
    margin-right: 3rem !important;
  }
  .pr-30-sm {
    padding-right: 3rem !important;
  }
  .mt-35-sm {
    margin-top: 3.5rem !important;
  }
  .pt-35-sm {
    padding-top: 3.5rem !important;
  }
  .mb-35-sm {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-sm {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-sm {
    margin-left: 3.5rem !important;
  }
  .pl-35-sm {
    padding-left: 3.5rem !important;
  }
  .mr-35-sm {
    margin-right: 3.5rem !important;
  }
  .pr-35-sm {
    padding-right: 3.5rem !important;
  }
  .mt-40-sm {
    margin-top: 4rem !important;
  }
  .pt-40-sm {
    padding-top: 4rem !important;
  }
  .mb-40-sm {
    margin-bottom: 4rem !important;
  }
  .pb-40-sm {
    padding-bottom: 4rem !important;
  }
  .ml-40-sm {
    margin-left: 4rem !important;
  }
  .pl-40-sm {
    padding-left: 4rem !important;
  }
  .mr-40-sm {
    margin-right: 4rem !important;
  }
  .pr-40-sm {
    padding-right: 4rem !important;
  }
  .mt-45-sm {
    margin-top: 4.5rem !important;
  }
  .pt-45-sm {
    padding-top: 4.5rem !important;
  }
  .mb-45-sm {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-sm {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-sm {
    margin-left: 4.5rem !important;
  }
  .pl-45-sm {
    padding-left: 4.5rem !important;
  }
  .mr-45-sm {
    margin-right: 4.5rem !important;
  }
  .pr-45-sm {
    padding-right: 4.5rem !important;
  }
  .mt-50-sm {
    margin-top: 5rem !important;
  }
  .pt-50-sm {
    padding-top: 5rem !important;
  }
  .mb-50-sm {
    margin-bottom: 5rem !important;
  }
  .pb-50-sm {
    padding-bottom: 5rem !important;
  }
  .ml-50-sm {
    margin-left: 5rem !important;
  }
  .pl-50-sm {
    padding-left: 5rem !important;
  }
  .mr-50-sm {
    margin-right: 5rem !important;
  }
  .pr-50-sm {
    padding-right: 5rem !important;
  }
  .mt-60-sm {
    margin-top: 6rem !important;
  }
  .pt-60-sm {
    padding-top: 6rem !important;
  }
  .mb-60-sm {
    margin-bottom: 6rem !important;
  }
  .pb-60-sm {
    padding-bottom: 6rem !important;
  }
  .ml-60-sm {
    margin-left: 6rem !important;
  }
  .pl-60-sm {
    padding-left: 6rem !important;
  }
  .mr-60-sm {
    margin-right: 6rem !important;
  }
  .pr-60-sm {
    padding-right: 6rem !important;
  }
  .mt-70-sm {
    margin-top: 7rem !important;
  }
  .pt-70-sm {
    padding-top: 7rem !important;
  }
  .mb-70-sm {
    margin-bottom: 7rem !important;
  }
  .pb-70-sm {
    padding-bottom: 7rem !important;
  }
  .ml-70-sm {
    margin-left: 7rem !important;
  }
  .pl-70-sm {
    padding-left: 7rem !important;
  }
  .mr-70-sm {
    margin-right: 7rem !important;
  }
  .pr-70-sm {
    padding-right: 7rem !important;
  }
  .mt-80-sm {
    margin-top: 8rem !important;
  }
  .pt-80-sm {
    padding-top: 8rem !important;
  }
  .mb-80-sm {
    margin-bottom: 8rem !important;
  }
  .pb-80-sm {
    padding-bottom: 8rem !important;
  }
  .ml-80-sm {
    margin-left: 8rem !important;
  }
  .pl-80-sm {
    padding-left: 8rem !important;
  }
  .mr-80-sm {
    margin-right: 8rem !important;
  }
  .pr-80-sm {
    padding-right: 8rem !important;
  }
  .mt-90-sm {
    margin-top: 9rem !important;
  }
  .pt-90-sm {
    padding-top: 9rem !important;
  }
  .mb-90-sm {
    margin-bottom: 9rem !important;
  }
  .pb-90-sm {
    padding-bottom: 9rem !important;
  }
  .ml-90-sm {
    margin-left: 9rem !important;
  }
  .pl-90-sm {
    padding-left: 9rem !important;
  }
  .mr-90-sm {
    margin-right: 9rem !important;
  }
  .pr-90-sm {
    padding-right: 9rem !important;
  }
  .mt-100-sm {
    margin-top: 10rem !important;
  }
  .pt-100-sm {
    padding-top: 10rem !important;
  }
  .mb-100-sm {
    margin-bottom: 10rem !important;
  }
  .pb-100-sm {
    padding-bottom: 10rem !important;
  }
  .ml-100-sm {
    margin-left: 10rem !important;
  }
  .pl-100-sm {
    padding-left: 10rem !important;
  }
  .mr-100-sm {
    margin-right: 10rem !important;
  }
  .pr-100-sm {
    padding-right: 10rem !important;
  }
}
/*
  mx px
*/
.mx-0 {
  margin-right: 0rem !important;
  margin-left: 0rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {
  .mx-0-xl {
    margin-right: 0rem !important;
    margin-left: 0rem !important;
  }
  .px-0-xl {
    padding-right: 0rem !important;
    padding-left: 0rem !important;
  }
  .mx-5-xl {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .px-5-xl {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .mx-10-xl {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .px-10-xl {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .mx-15-xl {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .px-15-xl {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .mx-20-xl {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .px-20-xl {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .mx-25-xl {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .px-25-xl {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .mx-30-xl {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .px-30-xl {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .mx-35-xl {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .px-35-xl {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .mx-40-xl {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .px-40-xl {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .mx-45-xl {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .px-45-xl {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .mx-50-xl {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .px-50-xl {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .mx-60-xl {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .px-60-xl {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .mx-70-xl {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .px-70-xl {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .mx-80-xl {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .px-80-xl {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .mx-90-xl {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .px-90-xl {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .mx-100-xl {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .px-100-xl {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
}
@media (max-width: 1023px) {
  .mx-0-lg {
    margin-right: 0rem !important;
    margin-left: 0rem !important;
  }
  .px-0-lg {
    padding-right: 0rem !important;
    padding-left: 0rem !important;
  }
  .mx-5-lg {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .px-5-lg {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .mx-10-lg {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .px-10-lg {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .mx-15-lg {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .px-15-lg {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .mx-20-lg {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .px-20-lg {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .mx-25-lg {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .px-25-lg {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .mx-30-lg {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .px-30-lg {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .mx-35-lg {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .px-35-lg {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .mx-40-lg {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .px-40-lg {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .mx-45-lg {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .px-45-lg {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .mx-50-lg {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .px-50-lg {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .mx-60-lg {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .px-60-lg {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .mx-70-lg {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .px-70-lg {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .mx-80-lg {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .px-80-lg {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .mx-90-lg {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .px-90-lg {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .mx-100-lg {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .px-100-lg {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
}
@media (max-width: 767px) {
  .mx-0-md {
    margin-right: 0rem !important;
    margin-left: 0rem !important;
  }
  .px-0-md {
    padding-right: 0rem !important;
    padding-left: 0rem !important;
  }
  .mx-5-md {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .px-5-md {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .mx-10-md {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .px-10-md {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .mx-15-md {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .px-15-md {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .mx-20-md {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .px-20-md {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .mx-25-md {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .px-25-md {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .mx-30-md {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .px-30-md {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .mx-35-md {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .px-35-md {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .mx-40-md {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .px-40-md {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .mx-45-md {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .px-45-md {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .mx-50-md {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .px-50-md {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .mx-60-md {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .px-60-md {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .mx-70-md {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .px-70-md {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .mx-80-md {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .px-80-md {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .mx-90-md {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .px-90-md {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .mx-100-md {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .px-100-md {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
}
@media (max-width: 575px) {
  .mx-0-sm {
    margin-right: 0rem !important;
    margin-left: 0rem !important;
  }
  .px-0-sm {
    padding-right: 0rem !important;
    padding-left: 0rem !important;
  }
  .mx-5-sm {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .px-5-sm {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .mx-10-sm {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .px-10-sm {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .mx-15-sm {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .px-15-sm {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .mx-20-sm {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .px-20-sm {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .mx-25-sm {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .px-25-sm {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .mx-30-sm {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .px-30-sm {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .mx-35-sm {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .px-35-sm {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .mx-40-sm {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .px-40-sm {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .mx-45-sm {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }
  .px-45-sm {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }
  .mx-50-sm {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .px-50-sm {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .mx-60-sm {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .px-60-sm {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .mx-70-sm {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .px-70-sm {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .mx-80-sm {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .px-80-sm {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .mx-90-sm {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .px-90-sm {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .mx-100-sm {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .px-100-sm {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
}
/*
  my py
*/
.my-0 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {
  .my-0-xl {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
  .py-0-xl {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .my-5-xl {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .py-5-xl {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .my-10-xl {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .py-10-xl {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .my-15-xl {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .py-15-xl {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .my-20-xl {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .py-20-xl {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .my-25-xl {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .py-25-xl {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .my-30-xl {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .py-30-xl {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .my-35-xl {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .py-35-xl {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .my-40-xl {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .py-40-xl {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .my-45-xl {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .py-45-xl {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .my-50-xl {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .py-50-xl {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .my-60-xl {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .py-60-xl {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .my-70-xl {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .py-70-xl {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .my-80-xl {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .py-80-xl {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .my-90-xl {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .py-90-xl {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .my-100-xl {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .py-100-xl {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
}
@media (max-width: 1023px) {
  .my-0-lg {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
  .py-0-lg {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .my-5-lg {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .py-5-lg {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .my-10-lg {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .py-10-lg {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .my-15-lg {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .py-15-lg {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .my-20-lg {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .py-20-lg {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .my-25-lg {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .py-25-lg {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .my-30-lg {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .py-30-lg {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .my-35-lg {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .py-35-lg {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .my-40-lg {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .py-40-lg {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .my-45-lg {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .py-45-lg {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .my-50-lg {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .py-50-lg {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .my-60-lg {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .py-60-lg {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .my-70-lg {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .py-70-lg {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .my-80-lg {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .py-80-lg {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .my-90-lg {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .py-90-lg {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .my-100-lg {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .py-100-lg {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
}
@media (max-width: 767px) {
  .my-0-md {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
  .py-0-md {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .my-5-md {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .py-5-md {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .my-10-md {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .py-10-md {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .my-15-md {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .py-15-md {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .my-20-md {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .py-20-md {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .my-25-md {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .py-25-md {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .my-30-md {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .py-30-md {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .my-35-md {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .py-35-md {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .my-40-md {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .py-40-md {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .my-45-md {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .py-45-md {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .my-50-md {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .py-50-md {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .my-60-md {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .py-60-md {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .my-70-md {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .py-70-md {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .my-80-md {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .py-80-md {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .my-90-md {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .py-90-md {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .my-100-md {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .py-100-md {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
}
@media (max-width: 575px) {
  .my-0-sm {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
  .py-0-sm {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .my-5-sm {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .py-5-sm {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .my-10-sm {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .py-10-sm {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .my-15-sm {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .py-15-sm {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .my-20-sm {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .py-20-sm {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .my-25-sm {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .py-25-sm {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .my-30-sm {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .py-30-sm {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .my-35-sm {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .py-35-sm {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .my-40-sm {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .py-40-sm {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .my-45-sm {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }
  .py-45-sm {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }
  .my-50-sm {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .py-50-sm {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .my-60-sm {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .py-60-sm {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .my-70-sm {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .py-70-sm {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .my-80-sm {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .py-80-sm {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .my-90-sm {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .py-90-sm {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .my-100-sm {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .py-100-sm {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1599px) {
  .mx-auto-xxl {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (max-width: 1199px) {
  .mx-auto-xl {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (max-width: 1023px) {
  .mx-auto-lg {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (max-width: 767px) {
  .mx-auto-md {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (max-width: 575px) {
  .mx-auto-sm {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/*
  RUN GULP to generate the classes. Now you can use these helpers to customize spacing on HTML elements.
*/
.gap-0 {
  gap: 0rem !important;
}

.gap-5 {
  gap: 0.5rem !important;
}

.gap-10 {
  gap: 1rem !important;
}

.gap-15 {
  gap: 1.5rem !important;
}

.gap-20 {
  gap: 2rem !important;
}

.gap-25 {
  gap: 2.5rem !important;
}

.gap-30 {
  gap: 3rem !important;
}

.gap-35 {
  gap: 3.5rem !important;
}

.gap-40 {
  gap: 4rem !important;
}

.gap-45 {
  gap: 4.5rem !important;
}

.gap-50 {
  gap: 5rem !important;
}

.gap-60 {
  gap: 6rem !important;
}

.gap-70 {
  gap: 7rem !important;
}

.gap-80 {
  gap: 8rem !important;
}

.gap-90 {
  gap: 9rem !important;
}

.gap-100 {
  gap: 10rem !important;
}

@media (max-width: 1599px) {
  .gap-0-xxl {
    gap: 0rem !important;
  }
  .gap-5-xxl {
    gap: 0.5rem !important;
  }
  .gap-10-xxl {
    gap: 1rem !important;
  }
  .gap-15-xxl {
    gap: 1.5rem !important;
  }
  .gap-20-xxl {
    gap: 2rem !important;
  }
  .gap-25-xxl {
    gap: 2.5rem !important;
  }
  .gap-30-xxl {
    gap: 3rem !important;
  }
  .gap-35-xxl {
    gap: 3.5rem !important;
  }
  .gap-40-xxl {
    gap: 4rem !important;
  }
  .gap-45-xxl {
    gap: 4.5rem !important;
  }
  .gap-50-xxl {
    gap: 5rem !important;
  }
  .gap-60-xxl {
    gap: 6rem !important;
  }
  .gap-70-xxl {
    gap: 7rem !important;
  }
  .gap-80-xxl {
    gap: 8rem !important;
  }
  .gap-90-xxl {
    gap: 9rem !important;
  }
  .gap-100-xxl {
    gap: 10rem !important;
  }
}
@media (max-width: 1199px) {
  .gap-0-xl {
    gap: 0rem !important;
  }
  .gap-5-xl {
    gap: 0.5rem !important;
  }
  .gap-10-xl {
    gap: 1rem !important;
  }
  .gap-15-xl {
    gap: 1.5rem !important;
  }
  .gap-20-xl {
    gap: 2rem !important;
  }
  .gap-25-xl {
    gap: 2.5rem !important;
  }
  .gap-30-xl {
    gap: 3rem !important;
  }
  .gap-35-xl {
    gap: 3.5rem !important;
  }
  .gap-40-xl {
    gap: 4rem !important;
  }
  .gap-45-xl {
    gap: 4.5rem !important;
  }
  .gap-50-xl {
    gap: 5rem !important;
  }
  .gap-60-xl {
    gap: 6rem !important;
  }
  .gap-70-xl {
    gap: 7rem !important;
  }
  .gap-80-xl {
    gap: 8rem !important;
  }
  .gap-90-xl {
    gap: 9rem !important;
  }
  .gap-100-xl {
    gap: 10rem !important;
  }
}
@media (max-width: 1023px) {
  .gap-0-lg {
    gap: 0rem !important;
  }
  .gap-5-lg {
    gap: 0.5rem !important;
  }
  .gap-10-lg {
    gap: 1rem !important;
  }
  .gap-15-lg {
    gap: 1.5rem !important;
  }
  .gap-20-lg {
    gap: 2rem !important;
  }
  .gap-25-lg {
    gap: 2.5rem !important;
  }
  .gap-30-lg {
    gap: 3rem !important;
  }
  .gap-35-lg {
    gap: 3.5rem !important;
  }
  .gap-40-lg {
    gap: 4rem !important;
  }
  .gap-45-lg {
    gap: 4.5rem !important;
  }
  .gap-50-lg {
    gap: 5rem !important;
  }
  .gap-60-lg {
    gap: 6rem !important;
  }
  .gap-70-lg {
    gap: 7rem !important;
  }
  .gap-80-lg {
    gap: 8rem !important;
  }
  .gap-90-lg {
    gap: 9rem !important;
  }
  .gap-100-lg {
    gap: 10rem !important;
  }
}
@media (max-width: 767px) {
  .gap-0-md {
    gap: 0rem !important;
  }
  .gap-5-md {
    gap: 0.5rem !important;
  }
  .gap-10-md {
    gap: 1rem !important;
  }
  .gap-15-md {
    gap: 1.5rem !important;
  }
  .gap-20-md {
    gap: 2rem !important;
  }
  .gap-25-md {
    gap: 2.5rem !important;
  }
  .gap-30-md {
    gap: 3rem !important;
  }
  .gap-35-md {
    gap: 3.5rem !important;
  }
  .gap-40-md {
    gap: 4rem !important;
  }
  .gap-45-md {
    gap: 4.5rem !important;
  }
  .gap-50-md {
    gap: 5rem !important;
  }
  .gap-60-md {
    gap: 6rem !important;
  }
  .gap-70-md {
    gap: 7rem !important;
  }
  .gap-80-md {
    gap: 8rem !important;
  }
  .gap-90-md {
    gap: 9rem !important;
  }
  .gap-100-md {
    gap: 10rem !important;
  }
}
@media (max-width: 575px) {
  .gap-0-sm {
    gap: 0rem !important;
  }
  .gap-5-sm {
    gap: 0.5rem !important;
  }
  .gap-10-sm {
    gap: 1rem !important;
  }
  .gap-15-sm {
    gap: 1.5rem !important;
  }
  .gap-20-sm {
    gap: 2rem !important;
  }
  .gap-25-sm {
    gap: 2.5rem !important;
  }
  .gap-30-sm {
    gap: 3rem !important;
  }
  .gap-35-sm {
    gap: 3.5rem !important;
  }
  .gap-40-sm {
    gap: 4rem !important;
  }
  .gap-45-sm {
    gap: 4.5rem !important;
  }
  .gap-50-sm {
    gap: 5rem !important;
  }
  .gap-60-sm {
    gap: 6rem !important;
  }
  .gap-70-sm {
    gap: 7rem !important;
  }
  .gap-80-sm {
    gap: 8rem !important;
  }
  .gap-90-sm {
    gap: 9rem !important;
  }
  .gap-100-sm {
    gap: 10rem !important;
  }
}
.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

/*page-common
-----------------------------------------------------*/
.container-sm {
  max-width: 800px;
  padding: 0 5%;
  margin: 0 auto;
}

.container-md {
  max-width: 1000px;
  padding: 0 5%;
  margin: 0 auto;
}

.container-lg {
  max-width: 1200px;
  padding: 0 5%;
  margin: 0 auto;
}

.container-xl {
  max-width: 1340px;
  padding: 0 5%;
  margin: 0 auto;
}

@media (max-width: 575px) {
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    padding: 0 2rem;
  }
}
.bg-gray {
  background: #f3f3f3;
}

.bg-blue {
  background: #E5F1FF;
}

/* parts */
a:hover {
  opacity: 0.8;
}

p + p {
  margin-top: 3rem;
}

.post-sec__contents h2,
.post-sec__contents h3,
.post-sec__contents h4,
.page-sec__contents h2,
.page-sec__contents h3,
.page-sec__contents h4 {
  margin: 5rem 0 2rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .post-sec__contents h2,
  .post-sec__contents h3,
  .post-sec__contents h4,
  .page-sec__contents h2,
  .page-sec__contents h3,
  .page-sec__contents h4 {
    margin: 3rem 0 2rem;
  }
}
.post-sec__contents h5,
.post-sec__contents h6,
.page-sec__contents h5,
.page-sec__contents h6 {
  margin: 2rem 0 1.5rem;
  line-height: 1.5;
}
.post-sec__contents > p,
.post-sec__contents > ul,
.post-sec__contents > ol,
.post-sec__contents > .wp-block-columns,
.page-sec__contents > p,
.page-sec__contents > ul,
.page-sec__contents > ol,
.page-sec__contents > .wp-block-columns {
  margin-bottom: 3rem;
}
.post-sec__contents > .wp-block-columns h2,
.post-sec__contents > .wp-block-columns h3,
.post-sec__contents > .wp-block-columns h4,
.post-sec__contents > .wp-block-columns h5,
.post-sec__contents > .wp-block-columns h6,
.page-sec__contents > .wp-block-columns h2,
.page-sec__contents > .wp-block-columns h3,
.page-sec__contents > .wp-block-columns h4,
.page-sec__contents > .wp-block-columns h5,
.page-sec__contents > .wp-block-columns h6 {
  margin: 0 0 2rem;
}
.post-sec__contents > h2:first-child,
.post-sec__contents > h3:first-child,
.post-sec__contents > p:first-child,
.post-sec__contents > ol:first-child,
.post-sec__contents > ul:first-child,
.post-sec__contents > .wp-block-columns:first-child,
.post-sec__contents > .video-wrapper:first-child,
.page-sec__contents > h2:first-child,
.page-sec__contents > h3:first-child,
.page-sec__contents > p:first-child,
.page-sec__contents > ol:first-child,
.page-sec__contents > ul:first-child,
.page-sec__contents > .wp-block-columns:first-child,
.page-sec__contents > .video-wrapper:first-child {
  margin-top: 0;
}
.post-sec__contents > h2:last-child,
.post-sec__contents > h3:last-child,
.post-sec__contents > p:last-child,
.post-sec__contents > ol:last-child,
.post-sec__contents > ul:last-child,
.post-sec__contents > .wp-block-columns:last-child,
.post-sec__contents > .video-wrapper:last-child,
.page-sec__contents > h2:last-child,
.page-sec__contents > h3:last-child,
.page-sec__contents > p:last-child,
.page-sec__contents > ol:last-child,
.page-sec__contents > ul:last-child,
.page-sec__contents > .wp-block-columns:last-child,
.page-sec__contents > .video-wrapper:last-child {
  margin-bottom: 0 !important;
}
.post-sec__contents p,
.page-sec__contents p {
  line-height: 2;
}
.post-sec__contents figure + h3,
.page-sec__contents figure + h3 {
  margin-top: 8rem;
}
.post-sec__contents ul,
.page-sec__contents ul {
  margin: 3rem 0;
  padding-left: 2rem;
}
.post-sec__contents ul li,
.page-sec__contents ul li {
  list-style-type: none;
  line-height: 1.6;
  padding: 0.5rem 0;
}
.post-sec__contents ul li::marker,
.page-sec__contents ul li::marker {
  color: #333;
}
.post-sec__contents .wp-block-column > *,
.page-sec__contents .wp-block-column > * {
  margin: 2rem 0;
}
.post-sec__contents .wp-block-column > *:first-child,
.page-sec__contents .wp-block-column > *:first-child {
  margin-top: 0;
}
.post-sec__contents .wp-block-column > *:last-child,
.page-sec__contents .wp-block-column > *:last-child {
  margin-bottom: 0;
}
.post-sec__contents .wp-block-column p + p,
.page-sec__contents .wp-block-column p + p {
  margin-top: 2rem;
}
.post-sec__contents .wp-block-buttons,
.page-sec__contents .wp-block-buttons {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.post-sec__contents .wp-block-buttons a,
.page-sec__contents .wp-block-buttons a {
  text-decoration: none;
}

/*tit
-----------------------------------------------------*/
.mdl-tit {
  background: linear-gradient(90deg, #073190 0.2%, #59BABB 100%);
  color: #FFF;
  padding: 1.5rem 2rem;
  margin-top: 5rem;
  margin-bottom: 3rem;
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 700;
  box-sizing: border-box;
  line-height: 1.5;
}
.mdl-tit span {
  font-size: clamp(1.8rem, 2.2vw, 2.2rem);
  color: #FFFF6E;
}

.mdl-tit-2 {
  position: relative;
  margin-top: 7rem;
  margin-bottom: 3rem;
  font-size: clamp(2rem, 2.4vw, 2.4rem);
  line-height: 1.5;
}
@media (max-width: 767px) {
  .mdl-tit-2 {
    margin-bottom: 2rem;
  }
}
.mdl-tit-2::before {
  content: "";
  position: absolute;
  display: block;
  height: 3px;
  width: 100px;
  bottom: 0;
  left: 0;
  background: #013054;
}
.mdl-tit-2::after {
  content: "";
  margin-top: 1rem;
  display: block;
  height: 3px;
  width: 100%;
  background: #DFDFDF;
}

.mdl-tit-3 {
  font-size: clamp(2rem, 2.4vw, 2.4rem);
  border-left: solid 6px #2F73A5;
  font-weight: 500;
  line-height: 1.5;
}

/*table
-----------------------------------------------------*/
.mdl-table table {
  width: 100%;
  border: 1px solid #C2C2C2;
  margin-top: 2rem;
}
.mdl-table table th,
.mdl-table table td {
  padding: 2.5rem 2rem;
}
@media (max-width: 575px) {
  .mdl-table table th,
  .mdl-table table td {
    padding: 2rem 1.5rem;
  }
}
.mdl-table table th {
  background-color: #2F73A5;
  color: #FFF;
  font-size: 2rem;
  text-align: center;
  border: 1px solid #C2C2C2;
  width: 180px;
  vertical-align: middle;
  box-sizing: border-box;
  font-weight: 500;
}
@media (max-width: 767px) {
  .mdl-table table th {
    font-size: 1.8rem;
    width: 120px;
  }
}
@media (max-width: 575px) {
  .mdl-table table th {
    font-size: 1.6rem;
    width: 100px;
  }
}
.mdl-table table td {
  background: #fff;
  border: 1px solid #C2C2C2;
}

/*ul
-----------------------------------------------------*/
.list-dot li {
  padding-left: 1.5rem;
  text-indent: -2.5rem;
}
.list-dot li:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #59BABB;
  border-radius: 10px;
  vertical-align: middle;
  margin-right: 1.5rem;
  margin-bottom: 0.3rem;
}
@media (max-width: 767px) {
  .list-dot li:before {
    margin-right: 1rem;
  }
}
.list-dot li a {
  color: #0f76f7;
}

.list-dot-2 li {
  padding-left: 1.5rem;
  text-indent: -2rem;
  list-style: none;
}
.list-dot-2 li:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #222;
  border-radius: 10px;
  vertical-align: middle;
  margin-right: 1.5rem;
  margin-bottom: 0.3rem;
}

/*header
-----------------------------------------------------*/
.main-v {
  position: relative;
}
.main-v h1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 170px;
}
@media (max-width: 1199px) {
  .main-v h1 {
    width: 140px;
  }
}
@media (max-width: 1023px) {
  .main-v h1 {
    width: 110px;
  }
}
@media (max-width: 767px) {
  .main-v h1 {
    display: none;
  }
}
.main-v img {
  width: 100%;
}

/*footer
-----------------------------------------------------*/
.footer {
  text-align: left;
  padding: 4rem 0 2rem 0;
  background: #2F9CA2;
  color: #fff;
  font-weight: 300;
}
.footer .flex {
  font-size: clamp(1.6rem, 1.6vw, 1.6rem);
  line-height: 1.5;
}
@media (max-width: 767px) {
  .footer .flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer .flex .col01,
.footer .flex .col02 {
  font-size: 1.3rem;
  box-sizing: border-box;
  padding: 2rem 0;
}
.footer .flex .col01 h2,
.footer .flex .col02 h2 {
  margin-bottom: 0.5rem;
}
.footer .flex .col01 h3,
.footer .flex .col02 h3 {
  font-weight: 300;
}
.footer .flex .col01 p,
.footer .flex .col02 p {
  margin: 0.5rem 0;
  display: flex;
}
.footer .flex .col01 a,
.footer .flex .col02 a {
  color: #fff;
  display: block;
  text-decoration: none;
}
.footer .flex .col01 .hp,
.footer .flex .col02 .hp {
  text-decoration: none;
}
.footer .flex .col01 {
  width: 40%;
}
@media (max-width: 767px) {
  .footer .flex .col01 {
    width: 100%;
  }
}
.footer .flex .col02 {
  width: 60%;
  padding-left: 10rem;
}
@media (max-width: 767px) {
  .footer .flex .col02 {
    width: 100%;
    padding-left: 0;
  }
}

/*thanks
-----------------------------------------------------*/
.thanksmain {
  padding: 2rem;
  text-align: center;
  background-color: rgb(236, 244, 248);
  box-sizing: border-box;
  font-size: clamp(2rem, 2.4vw, 2.4rem);
  font-weight: bold;
  line-height: 1.5;
}

.thanks {
  padding: 3rem 0;
}
.thanks h1 {
  text-align: center;
  font-size: clamp(2rem, 2.4vw, 2.4rem);
}
.thanks h2 {
  font-size: clamp(1.8rem, 2.2vw, 2rem);
}
.thanks-box {
  padding: 2rem;
  background-color: rgb(236, 244, 248);
  box-sizing: border-box;
}

/*seminarbox
-----------------------------------------------------*/
.seminarbox {
  padding-bottom: 10rem;
  background: url(../images/bg.png) top center no-repeat;
  background-size: 100%;
}
.seminarbox .btn {
  margin: 0 auto;
  text-align: center;
  max-width: 600px;
  width: 100%;
}
.seminarbox .btn a {
  position: relative;
  top: 0;
  display: block;
  padding: 2.5rem 4rem 2.5rem 2rem;
  border-radius: 500px;
  background: linear-gradient(90deg, #F2A930 0.2%, #F86E19 99.84%);
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  line-height: 1.5;
  font-weight: 500;
  font-size: clamp(2rem, 2.5vw, 2.5rem);
}
.seminarbox .btn a::after {
  display: block;
  content: "";
  position: absolute;
  background: url(../images/arrow.png) no-repeat center;
  background-size: cover;
  width: 13px;
  height: 22px;
  bottom: 50%;
  right: 2.5rem;
  margin-bottom: -11px;
  z-index: 1;
}
@media (max-width: 767px) {
  .seminarbox .btn a::after {
    right: 1.5rem;
  }
}
@media (max-width: 767px) {
  .seminarbox .btn a::after {
    right: 1.5rem;
  }
}
@media (max-width: 575px) {
  .seminarbox .btn a::after {
    width: 10px;
    height: 15px;
    margin-bottom: -7.5px;
  }
}
.seminarbox .btn-2 {
  margin: 0 auto;
  text-align: center;
  max-width: 600px;
  width: 100%;
}
.seminarbox .btn-2 a {
  display: block;
  padding: 2.5rem 4rem 2.5rem 2rem;
  border-radius: 500px;
  background: #2F73A5;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  line-height: 1.5;
  font-weight: 500;
  font-size: clamp(2rem, 2.5vw, 2.5rem);
}

/*common
-----------------------------------------------------*/
.about {
  padding: 2rem 0;
  background: #fff;
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 700;
  box-sizing: border-box;
}
.about-box {
  padding: 0 2rem;
  margin: 0 auto;
  max-width: 980px;
  box-sizing: border-box;
}
@media screen and (max-width: 980px) {
  .about-box {
    display: block;
    max-width: 540px;
  }
}
.about-label {
  padding: 0.5rem 1.5rem;
  color: #fff;
  width: 110px;
  border-radius: 5px;
  background: #35A8AA;
  box-sizing: border-box;
  text-align: center;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
}
.about dl {
  line-height: 1.5;
}
@media screen and (max-width: 980px) {
  .about dl + dl {
    margin-top: 1rem;
  }
}
@media (max-width: 575px) {
  .about dl {
    display: block;
  }
}

.first h2 {
  color: #073190;
  font-size: clamp(2rem, 3.3vw, 3.3rem);
  font-weight: 700;
  line-height: 1.5;
}

.recommend {
  padding: 6rem;
  border-radius: 10px;
  background: #fff;
  box-sizing: border-box;
  max-width: 750px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 767px) {
  .recommend {
    padding: 4rem 3rem;
  }
}
@media (max-width: 575px) {
  .recommend {
    padding: 4rem 2rem;
  }
}
.recommend h3 {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1.5;
  font-weight: 500;
}
.recommend h3::before {
  content: "";
  display: block;
  margin-right: 3rem;
  background: #222;
  width: 2px;
  height: 35px;
  transform: rotate(-35deg);
}
.recommend h3::after {
  content: "";
  display: block;
  margin-left: 3rem;
  background: #222;
  width: 2px;
  height: 35px;
  transform: rotate(35deg);
}

.step {
  padding-bottom: 13rem;
}
.step-lead {
  color: #083391;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  line-height: 1.5;
  font-weight: 700;
}

.instructor {
  display: flex;
  gap: 3.5rem;
}
@media (max-width: 767px) {
  .instructor {
    flex-wrap: wrap;
  }
}
.instructor .col02 {
  max-width: 235px;
  width: 100%;
  order: 1;
}
@media (max-width: 767px) {
  .instructor .col02 {
    margin: auto;
  }
}
.instructor .col01 {
  order: 2;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .instructor .col01 {
    margin-top: 0;
    width: 100%;
  }
}
.instructor .col01-top {
  position: relative;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.instructor .col01-top::after {
  content: "";
  width: 80px;
  height: 1px;
  background-color: #000;
  position: absolute;
  left: 0;
  bottom: 0;
}
.instructor .col01 h4 {
  font-size: 2.4rem;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .instructor .col01 h4 {
    font-size: 2.2rem;
  }
}
@media (max-width: 575px) {
  .instructor .col01 h4 {
    font-size: 2rem;
  }
}
.instructor .col01 h5 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .instructor .col01 h5 {
    font-size: 1.8rem;
  }
}
@media (max-width: 575px) {
  .instructor .col01 h5 {
    font-size: 1.6rem;
  }
}
.instructor .col01 ul {
  list-style: disc;
  padding-left: 1rem;
}
@media (max-width: 767px) {
  .instructor .col01 .btn03-wrap {
    margin: auto;
  }
}

.schedule {
  padding-top: 10rem;
  background: linear-gradient(180deg, #D7EEF6 0%, #FFF 100%);
}
.schedule .h2-tit {
  text-align: center;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 2px;
}
@media (max-width: 575px) {
  .schedule .h2-tit {
    letter-spacing: 0;
  }
}
.schedule .h2-tit .sub {
  display: block;
  color: #194F99;
  font-weight: 700;
  font-size: clamp(1.6rem, 2vw, 2rem);
  letter-spacing: 0;
}
.schedule a {
  text-decoration: none;
  color: #2F9CA2;
}
.schedule h5 {
  font-size: clamp(1.8rem, 2vw, 2rem);
}

.mdl-line {
  display: inline-block;
  position: relative;
  padding-bottom: 0.05rem; /* 下線と文字の間隔を確保 */
  /* optional: 見た目の調整 */
  line-height: 1.2;
}
.mdl-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%; /* 要素の幅に合わせて伸縮（レスポンシブ） */
  height: 7px; /* 下線の太さ */
  background-color: #FFF768; /* 下線の色 */
  border-radius: 4px; /* 角を少し丸く（任意） */
  z-index: -1;
}

.merit-box {
  width: 100%;
  border: solid 1px #F4EB51;
}
.merit h3 {
  padding: 1rem 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #0A3A60;
  background: #F4EB51;
  width: 100%;
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  box-sizing: border-box;
}
.merit h4 {
  color: #0A3A60;
}
.merit-list {
  padding: 4rem 3rem;
  border-radius: 5px;
  background: #fff;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .merit-list {
    padding: 3rem 2rem;
  }
}
.merit-list ul {
  flex-wrap: wrap;
  justify-content: space-between;
}
.merit-list ul li {
  margin-bottom: 2rem;
  width: 49%;
  line-height: 1.5;
}
@media (max-width: 575px) {
  .merit-list ul li {
    width: 100%;
  }
}
.merit-txt {
  font-size: clamp(1.4rem, 1.6vw, 1.6rem);
}

.learning h2 {
  background: linear-gradient(90deg, #006269 0%, #001240 100%);
  font-size: clamp(2rem, 3vw, 3rem);
  text-align: center;
  color: #fff;
}
.learning h3 {
  font-size: clamp(2rem, 3vw, 3rem);
}
.learning h4 {
  color: #FFF;
  background: linear-gradient(90deg, #00858E 0%, #1860A3 100%);
  margin-bottom: 2rem;
  padding: 0.3rem 1.5rem;
  font-size: 1.6rem;
  display: inline-block;
}
.learning-box {
  border: 1px solid #0193AF;
  box-sizing: border-box;
}
.learning-in {
  padding: 4rem 4rem 5rem 4rem;
  background: #F3F8FA;
  box-sizing: border-box;
}
@media (max-width: 575px) {
  .learning-in {
    padding: 4rem 2rem 5rem 2rem;
  }
}
.learning .dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 4rem;
  word-break: keep-all;
  padding-left: 2rem;
}
.learning .dots li {
  position: relative;
}
.learning .dots li::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #333333;
  border-radius: 10px;
  position: absolute;
  left: -16px;
  top: 12px;
}

/*practice
-----------------------------------------------------*/
.practicebox {
  padding-bottom: 10rem;
}
.practicebox .btn {
  margin: 0 auto;
  text-align: center;
  max-width: 600px;
  width: 100%;
}
.practicebox .btn a {
  position: relative;
  top: 0;
  display: block;
  padding: 2.5rem 4rem 2.5rem 2rem;
  background: linear-gradient(90deg, #009EA3 0.2%, #004DA6 99.84%);
  box-shadow: 0 4px #003063;
  border-radius: 500px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  line-height: 1.5;
  font-weight: 500;
  font-size: clamp(2rem, 2.4vw, 2.4rem);
}
.practicebox .btn a:hover {
  top: 4px;
  box-shadow: 0 0 #003063;
  opacity: 1;
}
.practicebox .btn a::after {
  display: block;
  content: "";
  position: absolute;
  background: url(../images/arrow.png) no-repeat center;
  background-size: cover;
  width: 13px;
  height: 22px;
  bottom: 50%;
  right: 2.5rem;
  margin-bottom: -11px;
  z-index: 1;
}
@media (max-width: 767px) {
  .practicebox .btn a::after {
    right: 1.5rem;
  }
}
@media (max-width: 575px) {
  .practicebox .btn a::after {
    width: 10px;
    height: 15px;
    margin-bottom: -7.5px;
  }
}
.practicebox .arrow-none a::after {
  content: none;
}
.practicebox .about {
  background: linear-gradient(90deg, #006269 0%, #000040 100%);
  color: #fff;
}
.practicebox .about-box {
  max-width: 1240px;
  box-sizing: border-box;
  justify-content: space-evenly;
}
@media screen and (max-width: 1220px) {
  .practicebox .about-box {
    display: block;
    max-width: 660px;
  }
  .practicebox .about-box dl + dl {
    margin-top: 1rem;
  }
}
@media (max-width: 767px) {
  .practicebox .about-box {
    max-width: 550px;
  }
}
.practicebox .about-label {
  padding: 0.5rem 1.5rem;
  color: #2B4254;
  width: 110px;
  border-radius: 0;
  background: #F4EB51;
}
@media (max-width: 767px) {
  .practicebox .about-label {
    width: 100px;
  }
}
.practicebox .about dl dd {
  font-weight: normal;
}
.practicebox .about-lead {
  text-align: center;
  font-size: clamp(2.2rem, 3vw, 3rem);
}
.practicebox .first h2 {
  color: #0A3A60;
  font-size: clamp(2rem, 3vw, 3rem);
}
.practicebox .recommend {
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .practicebox .recommend {
    padding: 4rem;
  }
}
@media (max-width: 575px) {
  .practicebox .recommend {
    padding: 4rem;
  }
}
.practicebox .list-dot li:before {
  content: "";
  background: #025E86;
}
.practicebox .mdl-tit {
  background: url(../images/tit.png) repeat-y center;
  background-size: cover;
}
.practicebox .mdl-tit span {
  font-size: clamp(1.8rem, 2.2vw, 2.2rem);
  color: #FFFF6E;
}
.practicebox .mdl-tit-3 {
  font-size: clamp(2rem, 2.4vw, 2.4rem);
  border-left: solid 6px #006169;
}
.practicebox .schedule {
  padding-top: 1rem;
  background: #fff;
}
.practicebox .mdl-table table {
  border: 1px solid #C0D0EB;
}
.practicebox .mdl-table table th {
  background-color: #2F9CA2;
}
.practicebox .mdl-table table td {
  border: 1px solid #C0D0EB;
}
.practicebox .notes a {
  text-decoration: none;
  color: #2F9CA2;
}
.practicebox .notes h5 {
  font-size: clamp(1.8rem, 2vw, 2rem);
}

.practice .footer {
  background: url(../images/bg-foot.png) repeat-y center;
  background-size: cover;
}

/*apply
-----------------------------------------------------*/
.page-apply .apply01 {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
  margin: auto;
}
@media (max-width: 1023px) {
  .page-apply .apply01 {
    width: 100%;
  }
}
.page-apply .apply01 hr {
  margin: 1em 0;
}
.page-apply .apply01 .heading {
  color: #FFF;
  text-align: center;
  font-size: 1.9rem;
  padding: 1.5rem 2rem;
  line-height: 1.4;
}
.page-apply .apply01 .w-box {
  background-color: #FFF;
  padding: 3.5rem 2.5rem;
  text-align: center;
}
@media (max-width: 1023px) {
  .page-apply .apply01 .w-box {
    padding: 3rem 2.5rem;
  }
}
.page-apply .apply01 .address {
  display: flex;
  text-align: left;
  align-items: baseline;
  gap: 1rem;
}
.page-apply .apply01 .address-txt {
  flex: 1;
}
.page-apply .apply01 .address .label {
  background-color: #35A8AA;
  color: #FFF;
  font-size: 1.6rem;
  display: inline-block;
  padding: 0 1rem;
  word-break: keep-all;
  width: 90px;
  box-sizing: border-box;
  text-align: center;
}
@media (max-width: 767px) {
  .page-apply .apply01 .address .label {
    font-size: 1.4rem;
  }
}
@media (max-width: 575px) {
  .page-apply .apply01 .address .label {
    width: 80px;
    font-size: 1.2rem;
  }
}
.page-apply .apply01 .heading {
  background-color: #1870B1;
}
.page-apply .apply01 .w-box {
  padding: 3.5rem 7.5rem;
}
@media (max-width: 1023px) {
  .page-apply .apply01 .w-box {
    padding: 3rem 2.5rem;
  }
}
.page-apply a {
  text-decoration: none;
  color: #2F9CA2;
}

/*page-header
-----------------------------------------------------*/
.page-header {
  background: url(../images/bg.png) top center no-repeat;
  background-size: 100%;
  padding: 5.5rem 0;
}
.page-header .page-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-header .page-title img {
  max-width: 340px;
  width: 100%;
}
@media (max-width: 575px) {
  .page-header .page-title img {
    max-width: 280px;
  }
}
.page-header .page-title .heading {
  background-color: #FFF;
  border-radius: 200px;
  display: inline-block;
  padding: 0.5rem 3rem;
  box-sizing: border-box;
  font-size: 2.9rem;
  text-align: center;
  margin-top: 1rem;
  line-height: 1.4;
  min-width: 390px;
}
@media (max-width: 767px) {
  .page-header .page-title .heading {
    font-size: 2.4rem;
  }
}
@media (max-width: 575px) {
  .page-header .page-title .heading {
    font-size: 2rem;
    min-width: auto;
  }
}
@media (max-width: 450px) {
  .page-header .page-title .heading {
    padding: 0.5rem 1.5rem;
    font-size: 1.8rem;
  }
}

.kome {
  margin-bottom: 4rem;
}
@media (max-width: 575px) {
  .kome {
    margin-bottom: 3rem;
  }
}
.kome li {
  text-indent: -1.6rem;
  list-style-type: none !important;
}

.bd {
  border: solid 1px #E9EFF2;
}

.project {
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 5px;
  background: #fff;
  color: #222;
  box-sizing: border-box;
}
.project .col02 {
  width: 100%;
  flex: 1;
}
.project .col02 ul {
  padding-top: 1rem;
  font-weight: 400;
}
.project .col02 ul li {
  text-indent: -1rem;
}
.project .col02 .list-dot-2 li:before {
  margin-right: 0.5rem;
}
.project .col01 {
  max-width: 330px;
}
@media (max-width: 767px) {
  .project .col01 {
    margin: 0 auto;
    padding-top: 1rem;
    width: 100%;
    max-width: 500px;
  }
}

.reverse {
  flex-direction: row-reverse;
}/*# sourceMappingURL=style.css.map */