@charset "UTF-8";
/* font
-----------------------------------------------------*/
/* sans-serif */
@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");
}
/* serif */
/* 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%;
}

body {
  color: #000;
  /*font: 1.6rem/1.8 YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;*/
  font: 1.8rem/1.8 "Noto Sans JP", sans-serif;
  /*font:1.6rem/1.8 "Noto Serif CJK JP", 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 {
  color: #133082;
}
a:hover, a:active, a:focus {
  color: rgb(73.5234899329, 114.0067114094, 228.4765100671);
}
a {
  transition: 0.3s linear;
}

/*flex
-----------------------------------------------------*/
.flex {
  display: flex;
}
@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: 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: 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: 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: 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: 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: 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: 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: end;
}
@media (max-width: 1199px) {
  .align-items-end-xl {
    align-items: end !important;
  }
}
@media (max-width: 1023px) {
  .align-items-end-lg {
    align-items: end !important;
  }
}
@media (max-width: 767px) {
  .align-items-end-md {
    align-items: end !important;
  }
}
@media (max-width: 575px) {
  .align-items-end-sm {
    align-items: end !important;
  }
}

.flex-wrap {
  flex-wrap: wrap;
}
@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: 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;
}

@media (max-width: 1199px) {
  .fs-10-xl {
    font-size: 1rem !important;
  }
  .fs-11-xl {
    font-size: 1.1rem !important;
  }
  .fs-12-xl {
    font-size: 1.2rem !important;
  }
  .fs-13-xl {
    font-size: 1.3rem !important;
  }
  .fs-14-xl {
    font-size: 1.4rem !important;
  }
  .fs-15-xl {
    font-size: 1.5rem !important;
  }
  .fs-16-xl {
    font-size: 1.6rem !important;
  }
  .fs-17-xl {
    font-size: 1.7rem !important;
  }
  .fs-18-xl {
    font-size: 1.8rem !important;
  }
  .fs-19-xl {
    font-size: 1.9rem !important;
  }
  .fs-20-xl {
    font-size: 2rem !important;
  }
  .fs-21-xl {
    font-size: 2.1rem !important;
  }
  .fs-22-xl {
    font-size: 2.2rem !important;
  }
  .fs-23-xl {
    font-size: 2.3rem !important;
  }
  .fs-24-xl {
    font-size: 2.4rem !important;
  }
  .fs-25-xl {
    font-size: 2.5rem !important;
  }
  .fs-26-xl {
    font-size: 2.6rem !important;
  }
  .fs-27-xl {
    font-size: 2.7rem !important;
  }
  .fs-28-xl {
    font-size: 2.8rem !important;
  }
  .fs-29-xl {
    font-size: 2.9rem !important;
  }
  .fs-30-xl {
    font-size: 3rem !important;
  }
  .fs-31-xl {
    font-size: 3.1rem !important;
  }
  .fs-32-xl {
    font-size: 3.2rem !important;
  }
  .fs-33-xl {
    font-size: 3.3rem !important;
  }
  .fs-34-xl {
    font-size: 3.4rem !important;
  }
  .fs-35-xl {
    font-size: 3.5rem !important;
  }
  .fs-36-xl {
    font-size: 3.6rem !important;
  }
  .fs-37-xl {
    font-size: 3.7rem !important;
  }
  .fs-38-xl {
    font-size: 3.8rem !important;
  }
  .fs-39-xl {
    font-size: 3.9rem !important;
  }
  .fs-40-xl {
    font-size: 4rem !important;
  }
  .fs-41-xl {
    font-size: 4.1rem !important;
  }
  .fs-42-xl {
    font-size: 4.2rem !important;
  }
  .fs-43-xl {
    font-size: 4.3rem !important;
  }
  .fs-44-xl {
    font-size: 4.4rem !important;
  }
  .fs-45-xl {
    font-size: 4.5rem !important;
  }
  .fs-46-xl {
    font-size: 4.6rem !important;
  }
  .fs-47-xl {
    font-size: 4.7rem !important;
  }
  .fs-48-xl {
    font-size: 4.8rem !important;
  }
  .fs-49-xl {
    font-size: 4.9rem !important;
  }
  .fs-50-xl {
    font-size: 5rem !important;
  }
}
@media (max-width: 1023px) {
  .fs-10-lg {
    font-size: 1rem !important;
  }
  .fs-11-lg {
    font-size: 1.1rem !important;
  }
  .fs-12-lg {
    font-size: 1.2rem !important;
  }
  .fs-13-lg {
    font-size: 1.3rem !important;
  }
  .fs-14-lg {
    font-size: 1.4rem !important;
  }
  .fs-15-lg {
    font-size: 1.5rem !important;
  }
  .fs-16-lg {
    font-size: 1.6rem !important;
  }
  .fs-17-lg {
    font-size: 1.7rem !important;
  }
  .fs-18-lg {
    font-size: 1.8rem !important;
  }
  .fs-19-lg {
    font-size: 1.9rem !important;
  }
  .fs-20-lg {
    font-size: 2rem !important;
  }
  .fs-21-lg {
    font-size: 2.1rem !important;
  }
  .fs-22-lg {
    font-size: 2.2rem !important;
  }
  .fs-23-lg {
    font-size: 2.3rem !important;
  }
  .fs-24-lg {
    font-size: 2.4rem !important;
  }
  .fs-25-lg {
    font-size: 2.5rem !important;
  }
  .fs-26-lg {
    font-size: 2.6rem !important;
  }
  .fs-27-lg {
    font-size: 2.7rem !important;
  }
  .fs-28-lg {
    font-size: 2.8rem !important;
  }
  .fs-29-lg {
    font-size: 2.9rem !important;
  }
  .fs-30-lg {
    font-size: 3rem !important;
  }
  .fs-31-lg {
    font-size: 3.1rem !important;
  }
  .fs-32-lg {
    font-size: 3.2rem !important;
  }
  .fs-33-lg {
    font-size: 3.3rem !important;
  }
  .fs-34-lg {
    font-size: 3.4rem !important;
  }
  .fs-35-lg {
    font-size: 3.5rem !important;
  }
  .fs-36-lg {
    font-size: 3.6rem !important;
  }
  .fs-37-lg {
    font-size: 3.7rem !important;
  }
  .fs-38-lg {
    font-size: 3.8rem !important;
  }
  .fs-39-lg {
    font-size: 3.9rem !important;
  }
  .fs-40-lg {
    font-size: 4rem !important;
  }
  .fs-41-lg {
    font-size: 4.1rem !important;
  }
  .fs-42-lg {
    font-size: 4.2rem !important;
  }
  .fs-43-lg {
    font-size: 4.3rem !important;
  }
  .fs-44-lg {
    font-size: 4.4rem !important;
  }
  .fs-45-lg {
    font-size: 4.5rem !important;
  }
  .fs-46-lg {
    font-size: 4.6rem !important;
  }
  .fs-47-lg {
    font-size: 4.7rem !important;
  }
  .fs-48-lg {
    font-size: 4.8rem !important;
  }
  .fs-49-lg {
    font-size: 4.9rem !important;
  }
  .fs-50-lg {
    font-size: 5rem !important;
  }
}
@media (max-width: 767px) {
  .fs-10-md {
    font-size: 1rem !important;
  }
  .fs-11-md {
    font-size: 1.1rem !important;
  }
  .fs-12-md {
    font-size: 1.2rem !important;
  }
  .fs-13-md {
    font-size: 1.3rem !important;
  }
  .fs-14-md {
    font-size: 1.4rem !important;
  }
  .fs-15-md {
    font-size: 1.5rem !important;
  }
  .fs-16-md {
    font-size: 1.6rem !important;
  }
  .fs-17-md {
    font-size: 1.7rem !important;
  }
  .fs-18-md {
    font-size: 1.8rem !important;
  }
  .fs-19-md {
    font-size: 1.9rem !important;
  }
  .fs-20-md {
    font-size: 2rem !important;
  }
  .fs-21-md {
    font-size: 2.1rem !important;
  }
  .fs-22-md {
    font-size: 2.2rem !important;
  }
  .fs-23-md {
    font-size: 2.3rem !important;
  }
  .fs-24-md {
    font-size: 2.4rem !important;
  }
  .fs-25-md {
    font-size: 2.5rem !important;
  }
  .fs-26-md {
    font-size: 2.6rem !important;
  }
  .fs-27-md {
    font-size: 2.7rem !important;
  }
  .fs-28-md {
    font-size: 2.8rem !important;
  }
  .fs-29-md {
    font-size: 2.9rem !important;
  }
  .fs-30-md {
    font-size: 3rem !important;
  }
  .fs-31-md {
    font-size: 3.1rem !important;
  }
  .fs-32-md {
    font-size: 3.2rem !important;
  }
  .fs-33-md {
    font-size: 3.3rem !important;
  }
  .fs-34-md {
    font-size: 3.4rem !important;
  }
  .fs-35-md {
    font-size: 3.5rem !important;
  }
  .fs-36-md {
    font-size: 3.6rem !important;
  }
  .fs-37-md {
    font-size: 3.7rem !important;
  }
  .fs-38-md {
    font-size: 3.8rem !important;
  }
  .fs-39-md {
    font-size: 3.9rem !important;
  }
  .fs-40-md {
    font-size: 4rem !important;
  }
  .fs-41-md {
    font-size: 4.1rem !important;
  }
  .fs-42-md {
    font-size: 4.2rem !important;
  }
  .fs-43-md {
    font-size: 4.3rem !important;
  }
  .fs-44-md {
    font-size: 4.4rem !important;
  }
  .fs-45-md {
    font-size: 4.5rem !important;
  }
  .fs-46-md {
    font-size: 4.6rem !important;
  }
  .fs-47-md {
    font-size: 4.7rem !important;
  }
  .fs-48-md {
    font-size: 4.8rem !important;
  }
  .fs-49-md {
    font-size: 4.9rem !important;
  }
  .fs-50-md {
    font-size: 5rem !important;
  }
}
@media (max-width: 575px) {
  .fs-10-sm {
    font-size: 1rem !important;
  }
  .fs-11-sm {
    font-size: 1.1rem !important;
  }
  .fs-12-sm {
    font-size: 1.2rem !important;
  }
  .fs-13-sm {
    font-size: 1.3rem !important;
  }
  .fs-14-sm {
    font-size: 1.4rem !important;
  }
  .fs-15-sm {
    font-size: 1.5rem !important;
  }
  .fs-16-sm {
    font-size: 1.6rem !important;
  }
  .fs-17-sm {
    font-size: 1.7rem !important;
  }
  .fs-18-sm {
    font-size: 1.8rem !important;
  }
  .fs-19-sm {
    font-size: 1.9rem !important;
  }
  .fs-20-sm {
    font-size: 2rem !important;
  }
  .fs-21-sm {
    font-size: 2.1rem !important;
  }
  .fs-22-sm {
    font-size: 2.2rem !important;
  }
  .fs-23-sm {
    font-size: 2.3rem !important;
  }
  .fs-24-sm {
    font-size: 2.4rem !important;
  }
  .fs-25-sm {
    font-size: 2.5rem !important;
  }
  .fs-26-sm {
    font-size: 2.6rem !important;
  }
  .fs-27-sm {
    font-size: 2.7rem !important;
  }
  .fs-28-sm {
    font-size: 2.8rem !important;
  }
  .fs-29-sm {
    font-size: 2.9rem !important;
  }
  .fs-30-sm {
    font-size: 3rem !important;
  }
  .fs-31-sm {
    font-size: 3.1rem !important;
  }
  .fs-32-sm {
    font-size: 3.2rem !important;
  }
  .fs-33-sm {
    font-size: 3.3rem !important;
  }
  .fs-34-sm {
    font-size: 3.4rem !important;
  }
  .fs-35-sm {
    font-size: 3.5rem !important;
  }
  .fs-36-sm {
    font-size: 3.6rem !important;
  }
  .fs-37-sm {
    font-size: 3.7rem !important;
  }
  .fs-38-sm {
    font-size: 3.8rem !important;
  }
  .fs-39-sm {
    font-size: 3.9rem !important;
  }
  .fs-40-sm {
    font-size: 4rem !important;
  }
  .fs-41-sm {
    font-size: 4.1rem !important;
  }
  .fs-42-sm {
    font-size: 4.2rem !important;
  }
  .fs-43-sm {
    font-size: 4.3rem !important;
  }
  .fs-44-sm {
    font-size: 4.4rem !important;
  }
  .fs-45-sm {
    font-size: 4.5rem !important;
  }
  .fs-46-sm {
    font-size: 4.6rem !important;
  }
  .fs-47-sm {
    font-size: 4.7rem !important;
  }
  .fs-48-sm {
    font-size: 4.8rem !important;
  }
  .fs-49-sm {
    font-size: 4.9rem !important;
  }
  .fs-50-sm {
    font-size: 5rem !important;
  }
}
.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;
}

.lh-16 {
  line-height: 2.6;
}

.lh-17 {
  line-height: 2.7;
}

.lh-18 {
  line-height: 2.8;
}

.lh-19 {
  line-height: 2.9;
}

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

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

ol {
  padding-left: 1em;
}

.float-l {
  float: left;
}

.float-r {
  float: right;
}

.en {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
}

.mincho {
  font-family: "Noto Serif CJK JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

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

.line {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 80%, #fffa73 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: #133082 !important;
}

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

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

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

.align-l {
  text-align: left;
}
@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: 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: 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 40px rgba(0, 0, 0, 0.1);
}

.bg-light-blue01 {
  background: #F5F7FC;
}

.bg-blue-pattern01 {
  background: repeating-linear-gradient(-45deg, #0171bb, #0171bb 10px, #0674bc 0, #0674bc 20px);
}

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

/* margin padding gap
-----------------------------------------------------*/
.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-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;
}

.mt-110 {
  margin-top: 11rem !important;
}

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

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

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

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

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

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

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

.mt-120 {
  margin-top: 12rem !important;
}

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

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

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

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

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

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

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

.mt-130 {
  margin-top: 13rem !important;
}

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

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

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

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

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

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

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

.mt-140 {
  margin-top: 14rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-160 {
  margin-top: 16rem !important;
}

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

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

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

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

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

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

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

.mt-170 {
  margin-top: 17rem !important;
}

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

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

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

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

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

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

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

.mt-180 {
  margin-top: 18rem !important;
}

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

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

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

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

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

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

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

.mt-190 {
  margin-top: 19rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pr-200 {
  padding-right: 20rem !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-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;
  }
  .mt-110-xl {
    margin-top: 11rem !important;
  }
  .pt-110-xl {
    padding-top: 11rem !important;
  }
  .mb-110-xl {
    margin-bottom: 11rem !important;
  }
  .pb-110-xl {
    padding-bottom: 11rem !important;
  }
  .ml-110-xl {
    margin-left: 11rem !important;
  }
  .pl-110-xl {
    padding-left: 11rem !important;
  }
  .mr-110-xl {
    margin-right: 11rem !important;
  }
  .pr-110-xl {
    padding-right: 11rem !important;
  }
  .mt-120-xl {
    margin-top: 12rem !important;
  }
  .pt-120-xl {
    padding-top: 12rem !important;
  }
  .mb-120-xl {
    margin-bottom: 12rem !important;
  }
  .pb-120-xl {
    padding-bottom: 12rem !important;
  }
  .ml-120-xl {
    margin-left: 12rem !important;
  }
  .pl-120-xl {
    padding-left: 12rem !important;
  }
  .mr-120-xl {
    margin-right: 12rem !important;
  }
  .pr-120-xl {
    padding-right: 12rem !important;
  }
  .mt-130-xl {
    margin-top: 13rem !important;
  }
  .pt-130-xl {
    padding-top: 13rem !important;
  }
  .mb-130-xl {
    margin-bottom: 13rem !important;
  }
  .pb-130-xl {
    padding-bottom: 13rem !important;
  }
  .ml-130-xl {
    margin-left: 13rem !important;
  }
  .pl-130-xl {
    padding-left: 13rem !important;
  }
  .mr-130-xl {
    margin-right: 13rem !important;
  }
  .pr-130-xl {
    padding-right: 13rem !important;
  }
  .mt-140-xl {
    margin-top: 14rem !important;
  }
  .pt-140-xl {
    padding-top: 14rem !important;
  }
  .mb-140-xl {
    margin-bottom: 14rem !important;
  }
  .pb-140-xl {
    padding-bottom: 14rem !important;
  }
  .ml-140-xl {
    margin-left: 14rem !important;
  }
  .pl-140-xl {
    padding-left: 14rem !important;
  }
  .mr-140-xl {
    margin-right: 14rem !important;
  }
  .pr-140-xl {
    padding-right: 14rem !important;
  }
  .mt-150-xl {
    margin-top: 15rem !important;
  }
  .pt-150-xl {
    padding-top: 15rem !important;
  }
  .mb-150-xl {
    margin-bottom: 15rem !important;
  }
  .pb-150-xl {
    padding-bottom: 15rem !important;
  }
  .ml-150-xl {
    margin-left: 15rem !important;
  }
  .pl-150-xl {
    padding-left: 15rem !important;
  }
  .mr-150-xl {
    margin-right: 15rem !important;
  }
  .pr-150-xl {
    padding-right: 15rem !important;
  }
  .mt-160-xl {
    margin-top: 16rem !important;
  }
  .pt-160-xl {
    padding-top: 16rem !important;
  }
  .mb-160-xl {
    margin-bottom: 16rem !important;
  }
  .pb-160-xl {
    padding-bottom: 16rem !important;
  }
  .ml-160-xl {
    margin-left: 16rem !important;
  }
  .pl-160-xl {
    padding-left: 16rem !important;
  }
  .mr-160-xl {
    margin-right: 16rem !important;
  }
  .pr-160-xl {
    padding-right: 16rem !important;
  }
  .mt-170-xl {
    margin-top: 17rem !important;
  }
  .pt-170-xl {
    padding-top: 17rem !important;
  }
  .mb-170-xl {
    margin-bottom: 17rem !important;
  }
  .pb-170-xl {
    padding-bottom: 17rem !important;
  }
  .ml-170-xl {
    margin-left: 17rem !important;
  }
  .pl-170-xl {
    padding-left: 17rem !important;
  }
  .mr-170-xl {
    margin-right: 17rem !important;
  }
  .pr-170-xl {
    padding-right: 17rem !important;
  }
  .mt-180-xl {
    margin-top: 18rem !important;
  }
  .pt-180-xl {
    padding-top: 18rem !important;
  }
  .mb-180-xl {
    margin-bottom: 18rem !important;
  }
  .pb-180-xl {
    padding-bottom: 18rem !important;
  }
  .ml-180-xl {
    margin-left: 18rem !important;
  }
  .pl-180-xl {
    padding-left: 18rem !important;
  }
  .mr-180-xl {
    margin-right: 18rem !important;
  }
  .pr-180-xl {
    padding-right: 18rem !important;
  }
  .mt-190-xl {
    margin-top: 19rem !important;
  }
  .pt-190-xl {
    padding-top: 19rem !important;
  }
  .mb-190-xl {
    margin-bottom: 19rem !important;
  }
  .pb-190-xl {
    padding-bottom: 19rem !important;
  }
  .ml-190-xl {
    margin-left: 19rem !important;
  }
  .pl-190-xl {
    padding-left: 19rem !important;
  }
  .mr-190-xl {
    margin-right: 19rem !important;
  }
  .pr-190-xl {
    padding-right: 19rem !important;
  }
  .mt-200-xl {
    margin-top: 20rem !important;
  }
  .pt-200-xl {
    padding-top: 20rem !important;
  }
  .mb-200-xl {
    margin-bottom: 20rem !important;
  }
  .pb-200-xl {
    padding-bottom: 20rem !important;
  }
  .ml-200-xl {
    margin-left: 20rem !important;
  }
  .pl-200-xl {
    padding-left: 20rem !important;
  }
  .mr-200-xl {
    margin-right: 20rem !important;
  }
  .pr-200-xl {
    padding-right: 20rem !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-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;
  }
  .mt-110-lg {
    margin-top: 11rem !important;
  }
  .pt-110-lg {
    padding-top: 11rem !important;
  }
  .mb-110-lg {
    margin-bottom: 11rem !important;
  }
  .pb-110-lg {
    padding-bottom: 11rem !important;
  }
  .ml-110-lg {
    margin-left: 11rem !important;
  }
  .pl-110-lg {
    padding-left: 11rem !important;
  }
  .mr-110-lg {
    margin-right: 11rem !important;
  }
  .pr-110-lg {
    padding-right: 11rem !important;
  }
  .mt-120-lg {
    margin-top: 12rem !important;
  }
  .pt-120-lg {
    padding-top: 12rem !important;
  }
  .mb-120-lg {
    margin-bottom: 12rem !important;
  }
  .pb-120-lg {
    padding-bottom: 12rem !important;
  }
  .ml-120-lg {
    margin-left: 12rem !important;
  }
  .pl-120-lg {
    padding-left: 12rem !important;
  }
  .mr-120-lg {
    margin-right: 12rem !important;
  }
  .pr-120-lg {
    padding-right: 12rem !important;
  }
  .mt-130-lg {
    margin-top: 13rem !important;
  }
  .pt-130-lg {
    padding-top: 13rem !important;
  }
  .mb-130-lg {
    margin-bottom: 13rem !important;
  }
  .pb-130-lg {
    padding-bottom: 13rem !important;
  }
  .ml-130-lg {
    margin-left: 13rem !important;
  }
  .pl-130-lg {
    padding-left: 13rem !important;
  }
  .mr-130-lg {
    margin-right: 13rem !important;
  }
  .pr-130-lg {
    padding-right: 13rem !important;
  }
  .mt-140-lg {
    margin-top: 14rem !important;
  }
  .pt-140-lg {
    padding-top: 14rem !important;
  }
  .mb-140-lg {
    margin-bottom: 14rem !important;
  }
  .pb-140-lg {
    padding-bottom: 14rem !important;
  }
  .ml-140-lg {
    margin-left: 14rem !important;
  }
  .pl-140-lg {
    padding-left: 14rem !important;
  }
  .mr-140-lg {
    margin-right: 14rem !important;
  }
  .pr-140-lg {
    padding-right: 14rem !important;
  }
  .mt-150-lg {
    margin-top: 15rem !important;
  }
  .pt-150-lg {
    padding-top: 15rem !important;
  }
  .mb-150-lg {
    margin-bottom: 15rem !important;
  }
  .pb-150-lg {
    padding-bottom: 15rem !important;
  }
  .ml-150-lg {
    margin-left: 15rem !important;
  }
  .pl-150-lg {
    padding-left: 15rem !important;
  }
  .mr-150-lg {
    margin-right: 15rem !important;
  }
  .pr-150-lg {
    padding-right: 15rem !important;
  }
  .mt-160-lg {
    margin-top: 16rem !important;
  }
  .pt-160-lg {
    padding-top: 16rem !important;
  }
  .mb-160-lg {
    margin-bottom: 16rem !important;
  }
  .pb-160-lg {
    padding-bottom: 16rem !important;
  }
  .ml-160-lg {
    margin-left: 16rem !important;
  }
  .pl-160-lg {
    padding-left: 16rem !important;
  }
  .mr-160-lg {
    margin-right: 16rem !important;
  }
  .pr-160-lg {
    padding-right: 16rem !important;
  }
  .mt-170-lg {
    margin-top: 17rem !important;
  }
  .pt-170-lg {
    padding-top: 17rem !important;
  }
  .mb-170-lg {
    margin-bottom: 17rem !important;
  }
  .pb-170-lg {
    padding-bottom: 17rem !important;
  }
  .ml-170-lg {
    margin-left: 17rem !important;
  }
  .pl-170-lg {
    padding-left: 17rem !important;
  }
  .mr-170-lg {
    margin-right: 17rem !important;
  }
  .pr-170-lg {
    padding-right: 17rem !important;
  }
  .mt-180-lg {
    margin-top: 18rem !important;
  }
  .pt-180-lg {
    padding-top: 18rem !important;
  }
  .mb-180-lg {
    margin-bottom: 18rem !important;
  }
  .pb-180-lg {
    padding-bottom: 18rem !important;
  }
  .ml-180-lg {
    margin-left: 18rem !important;
  }
  .pl-180-lg {
    padding-left: 18rem !important;
  }
  .mr-180-lg {
    margin-right: 18rem !important;
  }
  .pr-180-lg {
    padding-right: 18rem !important;
  }
  .mt-190-lg {
    margin-top: 19rem !important;
  }
  .pt-190-lg {
    padding-top: 19rem !important;
  }
  .mb-190-lg {
    margin-bottom: 19rem !important;
  }
  .pb-190-lg {
    padding-bottom: 19rem !important;
  }
  .ml-190-lg {
    margin-left: 19rem !important;
  }
  .pl-190-lg {
    padding-left: 19rem !important;
  }
  .mr-190-lg {
    margin-right: 19rem !important;
  }
  .pr-190-lg {
    padding-right: 19rem !important;
  }
  .mt-200-lg {
    margin-top: 20rem !important;
  }
  .pt-200-lg {
    padding-top: 20rem !important;
  }
  .mb-200-lg {
    margin-bottom: 20rem !important;
  }
  .pb-200-lg {
    padding-bottom: 20rem !important;
  }
  .ml-200-lg {
    margin-left: 20rem !important;
  }
  .pl-200-lg {
    padding-left: 20rem !important;
  }
  .mr-200-lg {
    margin-right: 20rem !important;
  }
  .pr-200-lg {
    padding-right: 20rem !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-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;
  }
  .mt-110-md {
    margin-top: 11rem !important;
  }
  .pt-110-md {
    padding-top: 11rem !important;
  }
  .mb-110-md {
    margin-bottom: 11rem !important;
  }
  .pb-110-md {
    padding-bottom: 11rem !important;
  }
  .ml-110-md {
    margin-left: 11rem !important;
  }
  .pl-110-md {
    padding-left: 11rem !important;
  }
  .mr-110-md {
    margin-right: 11rem !important;
  }
  .pr-110-md {
    padding-right: 11rem !important;
  }
  .mt-120-md {
    margin-top: 12rem !important;
  }
  .pt-120-md {
    padding-top: 12rem !important;
  }
  .mb-120-md {
    margin-bottom: 12rem !important;
  }
  .pb-120-md {
    padding-bottom: 12rem !important;
  }
  .ml-120-md {
    margin-left: 12rem !important;
  }
  .pl-120-md {
    padding-left: 12rem !important;
  }
  .mr-120-md {
    margin-right: 12rem !important;
  }
  .pr-120-md {
    padding-right: 12rem !important;
  }
  .mt-130-md {
    margin-top: 13rem !important;
  }
  .pt-130-md {
    padding-top: 13rem !important;
  }
  .mb-130-md {
    margin-bottom: 13rem !important;
  }
  .pb-130-md {
    padding-bottom: 13rem !important;
  }
  .ml-130-md {
    margin-left: 13rem !important;
  }
  .pl-130-md {
    padding-left: 13rem !important;
  }
  .mr-130-md {
    margin-right: 13rem !important;
  }
  .pr-130-md {
    padding-right: 13rem !important;
  }
  .mt-140-md {
    margin-top: 14rem !important;
  }
  .pt-140-md {
    padding-top: 14rem !important;
  }
  .mb-140-md {
    margin-bottom: 14rem !important;
  }
  .pb-140-md {
    padding-bottom: 14rem !important;
  }
  .ml-140-md {
    margin-left: 14rem !important;
  }
  .pl-140-md {
    padding-left: 14rem !important;
  }
  .mr-140-md {
    margin-right: 14rem !important;
  }
  .pr-140-md {
    padding-right: 14rem !important;
  }
  .mt-150-md {
    margin-top: 15rem !important;
  }
  .pt-150-md {
    padding-top: 15rem !important;
  }
  .mb-150-md {
    margin-bottom: 15rem !important;
  }
  .pb-150-md {
    padding-bottom: 15rem !important;
  }
  .ml-150-md {
    margin-left: 15rem !important;
  }
  .pl-150-md {
    padding-left: 15rem !important;
  }
  .mr-150-md {
    margin-right: 15rem !important;
  }
  .pr-150-md {
    padding-right: 15rem !important;
  }
  .mt-160-md {
    margin-top: 16rem !important;
  }
  .pt-160-md {
    padding-top: 16rem !important;
  }
  .mb-160-md {
    margin-bottom: 16rem !important;
  }
  .pb-160-md {
    padding-bottom: 16rem !important;
  }
  .ml-160-md {
    margin-left: 16rem !important;
  }
  .pl-160-md {
    padding-left: 16rem !important;
  }
  .mr-160-md {
    margin-right: 16rem !important;
  }
  .pr-160-md {
    padding-right: 16rem !important;
  }
  .mt-170-md {
    margin-top: 17rem !important;
  }
  .pt-170-md {
    padding-top: 17rem !important;
  }
  .mb-170-md {
    margin-bottom: 17rem !important;
  }
  .pb-170-md {
    padding-bottom: 17rem !important;
  }
  .ml-170-md {
    margin-left: 17rem !important;
  }
  .pl-170-md {
    padding-left: 17rem !important;
  }
  .mr-170-md {
    margin-right: 17rem !important;
  }
  .pr-170-md {
    padding-right: 17rem !important;
  }
  .mt-180-md {
    margin-top: 18rem !important;
  }
  .pt-180-md {
    padding-top: 18rem !important;
  }
  .mb-180-md {
    margin-bottom: 18rem !important;
  }
  .pb-180-md {
    padding-bottom: 18rem !important;
  }
  .ml-180-md {
    margin-left: 18rem !important;
  }
  .pl-180-md {
    padding-left: 18rem !important;
  }
  .mr-180-md {
    margin-right: 18rem !important;
  }
  .pr-180-md {
    padding-right: 18rem !important;
  }
  .mt-190-md {
    margin-top: 19rem !important;
  }
  .pt-190-md {
    padding-top: 19rem !important;
  }
  .mb-190-md {
    margin-bottom: 19rem !important;
  }
  .pb-190-md {
    padding-bottom: 19rem !important;
  }
  .ml-190-md {
    margin-left: 19rem !important;
  }
  .pl-190-md {
    padding-left: 19rem !important;
  }
  .mr-190-md {
    margin-right: 19rem !important;
  }
  .pr-190-md {
    padding-right: 19rem !important;
  }
  .mt-200-md {
    margin-top: 20rem !important;
  }
  .pt-200-md {
    padding-top: 20rem !important;
  }
  .mb-200-md {
    margin-bottom: 20rem !important;
  }
  .pb-200-md {
    padding-bottom: 20rem !important;
  }
  .ml-200-md {
    margin-left: 20rem !important;
  }
  .pl-200-md {
    padding-left: 20rem !important;
  }
  .mr-200-md {
    margin-right: 20rem !important;
  }
  .pr-200-md {
    padding-right: 20rem !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-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;
  }
  .mt-110-sm {
    margin-top: 11rem !important;
  }
  .pt-110-sm {
    padding-top: 11rem !important;
  }
  .mb-110-sm {
    margin-bottom: 11rem !important;
  }
  .pb-110-sm {
    padding-bottom: 11rem !important;
  }
  .ml-110-sm {
    margin-left: 11rem !important;
  }
  .pl-110-sm {
    padding-left: 11rem !important;
  }
  .mr-110-sm {
    margin-right: 11rem !important;
  }
  .pr-110-sm {
    padding-right: 11rem !important;
  }
  .mt-120-sm {
    margin-top: 12rem !important;
  }
  .pt-120-sm {
    padding-top: 12rem !important;
  }
  .mb-120-sm {
    margin-bottom: 12rem !important;
  }
  .pb-120-sm {
    padding-bottom: 12rem !important;
  }
  .ml-120-sm {
    margin-left: 12rem !important;
  }
  .pl-120-sm {
    padding-left: 12rem !important;
  }
  .mr-120-sm {
    margin-right: 12rem !important;
  }
  .pr-120-sm {
    padding-right: 12rem !important;
  }
  .mt-130-sm {
    margin-top: 13rem !important;
  }
  .pt-130-sm {
    padding-top: 13rem !important;
  }
  .mb-130-sm {
    margin-bottom: 13rem !important;
  }
  .pb-130-sm {
    padding-bottom: 13rem !important;
  }
  .ml-130-sm {
    margin-left: 13rem !important;
  }
  .pl-130-sm {
    padding-left: 13rem !important;
  }
  .mr-130-sm {
    margin-right: 13rem !important;
  }
  .pr-130-sm {
    padding-right: 13rem !important;
  }
  .mt-140-sm {
    margin-top: 14rem !important;
  }
  .pt-140-sm {
    padding-top: 14rem !important;
  }
  .mb-140-sm {
    margin-bottom: 14rem !important;
  }
  .pb-140-sm {
    padding-bottom: 14rem !important;
  }
  .ml-140-sm {
    margin-left: 14rem !important;
  }
  .pl-140-sm {
    padding-left: 14rem !important;
  }
  .mr-140-sm {
    margin-right: 14rem !important;
  }
  .pr-140-sm {
    padding-right: 14rem !important;
  }
  .mt-150-sm {
    margin-top: 15rem !important;
  }
  .pt-150-sm {
    padding-top: 15rem !important;
  }
  .mb-150-sm {
    margin-bottom: 15rem !important;
  }
  .pb-150-sm {
    padding-bottom: 15rem !important;
  }
  .ml-150-sm {
    margin-left: 15rem !important;
  }
  .pl-150-sm {
    padding-left: 15rem !important;
  }
  .mr-150-sm {
    margin-right: 15rem !important;
  }
  .pr-150-sm {
    padding-right: 15rem !important;
  }
  .mt-160-sm {
    margin-top: 16rem !important;
  }
  .pt-160-sm {
    padding-top: 16rem !important;
  }
  .mb-160-sm {
    margin-bottom: 16rem !important;
  }
  .pb-160-sm {
    padding-bottom: 16rem !important;
  }
  .ml-160-sm {
    margin-left: 16rem !important;
  }
  .pl-160-sm {
    padding-left: 16rem !important;
  }
  .mr-160-sm {
    margin-right: 16rem !important;
  }
  .pr-160-sm {
    padding-right: 16rem !important;
  }
  .mt-170-sm {
    margin-top: 17rem !important;
  }
  .pt-170-sm {
    padding-top: 17rem !important;
  }
  .mb-170-sm {
    margin-bottom: 17rem !important;
  }
  .pb-170-sm {
    padding-bottom: 17rem !important;
  }
  .ml-170-sm {
    margin-left: 17rem !important;
  }
  .pl-170-sm {
    padding-left: 17rem !important;
  }
  .mr-170-sm {
    margin-right: 17rem !important;
  }
  .pr-170-sm {
    padding-right: 17rem !important;
  }
  .mt-180-sm {
    margin-top: 18rem !important;
  }
  .pt-180-sm {
    padding-top: 18rem !important;
  }
  .mb-180-sm {
    margin-bottom: 18rem !important;
  }
  .pb-180-sm {
    padding-bottom: 18rem !important;
  }
  .ml-180-sm {
    margin-left: 18rem !important;
  }
  .pl-180-sm {
    padding-left: 18rem !important;
  }
  .mr-180-sm {
    margin-right: 18rem !important;
  }
  .pr-180-sm {
    padding-right: 18rem !important;
  }
  .mt-190-sm {
    margin-top: 19rem !important;
  }
  .pt-190-sm {
    padding-top: 19rem !important;
  }
  .mb-190-sm {
    margin-bottom: 19rem !important;
  }
  .pb-190-sm {
    padding-bottom: 19rem !important;
  }
  .ml-190-sm {
    margin-left: 19rem !important;
  }
  .pl-190-sm {
    padding-left: 19rem !important;
  }
  .mr-190-sm {
    margin-right: 19rem !important;
  }
  .pr-190-sm {
    padding-right: 19rem !important;
  }
  .mt-200-sm {
    margin-top: 20rem !important;
  }
  .pt-200-sm {
    padding-top: 20rem !important;
  }
  .mb-200-sm {
    margin-bottom: 20rem !important;
  }
  .pb-200-sm {
    padding-bottom: 20rem !important;
  }
  .ml-200-sm {
    margin-left: 20rem !important;
  }
  .pl-200-sm {
    padding-left: 20rem !important;
  }
  .mr-200-sm {
    margin-right: 20rem !important;
  }
  .pr-200-sm {
    padding-right: 20rem !important;
  }
}
/*
  mx px
*/
.mx-0 {
  margin-right: 0rem !important;
  margin-left: 0rem !important;
}

.px-0 {
  padding-right: 0rem !important;
  padding-left: 0rem !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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.px-200 {
  padding-right: 20rem !important;
  padding-left: 20rem !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-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;
  }
  .mx-110-xl {
    margin-right: 11rem !important;
    margin-left: 11rem !important;
  }
  .px-110-xl {
    padding-right: 11rem !important;
    padding-left: 11rem !important;
  }
  .mx-120-xl {
    margin-right: 12rem !important;
    margin-left: 12rem !important;
  }
  .px-120-xl {
    padding-right: 12rem !important;
    padding-left: 12rem !important;
  }
  .mx-130-xl {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .px-130-xl {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .mx-140-xl {
    margin-right: 14rem !important;
    margin-left: 14rem !important;
  }
  .px-140-xl {
    padding-right: 14rem !important;
    padding-left: 14rem !important;
  }
  .mx-150-xl {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .px-150-xl {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .mx-160-xl {
    margin-right: 16rem !important;
    margin-left: 16rem !important;
  }
  .px-160-xl {
    padding-right: 16rem !important;
    padding-left: 16rem !important;
  }
  .mx-170-xl {
    margin-right: 17rem !important;
    margin-left: 17rem !important;
  }
  .px-170-xl {
    padding-right: 17rem !important;
    padding-left: 17rem !important;
  }
  .mx-180-xl {
    margin-right: 18rem !important;
    margin-left: 18rem !important;
  }
  .px-180-xl {
    padding-right: 18rem !important;
    padding-left: 18rem !important;
  }
  .mx-190-xl {
    margin-right: 19rem !important;
    margin-left: 19rem !important;
  }
  .px-190-xl {
    padding-right: 19rem !important;
    padding-left: 19rem !important;
  }
  .mx-200-xl {
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .px-200-xl {
    padding-right: 20rem !important;
    padding-left: 20rem !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-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;
  }
  .mx-110-lg {
    margin-right: 11rem !important;
    margin-left: 11rem !important;
  }
  .px-110-lg {
    padding-right: 11rem !important;
    padding-left: 11rem !important;
  }
  .mx-120-lg {
    margin-right: 12rem !important;
    margin-left: 12rem !important;
  }
  .px-120-lg {
    padding-right: 12rem !important;
    padding-left: 12rem !important;
  }
  .mx-130-lg {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .px-130-lg {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .mx-140-lg {
    margin-right: 14rem !important;
    margin-left: 14rem !important;
  }
  .px-140-lg {
    padding-right: 14rem !important;
    padding-left: 14rem !important;
  }
  .mx-150-lg {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .px-150-lg {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .mx-160-lg {
    margin-right: 16rem !important;
    margin-left: 16rem !important;
  }
  .px-160-lg {
    padding-right: 16rem !important;
    padding-left: 16rem !important;
  }
  .mx-170-lg {
    margin-right: 17rem !important;
    margin-left: 17rem !important;
  }
  .px-170-lg {
    padding-right: 17rem !important;
    padding-left: 17rem !important;
  }
  .mx-180-lg {
    margin-right: 18rem !important;
    margin-left: 18rem !important;
  }
  .px-180-lg {
    padding-right: 18rem !important;
    padding-left: 18rem !important;
  }
  .mx-190-lg {
    margin-right: 19rem !important;
    margin-left: 19rem !important;
  }
  .px-190-lg {
    padding-right: 19rem !important;
    padding-left: 19rem !important;
  }
  .mx-200-lg {
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .px-200-lg {
    padding-right: 20rem !important;
    padding-left: 20rem !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-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;
  }
  .mx-110-md {
    margin-right: 11rem !important;
    margin-left: 11rem !important;
  }
  .px-110-md {
    padding-right: 11rem !important;
    padding-left: 11rem !important;
  }
  .mx-120-md {
    margin-right: 12rem !important;
    margin-left: 12rem !important;
  }
  .px-120-md {
    padding-right: 12rem !important;
    padding-left: 12rem !important;
  }
  .mx-130-md {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .px-130-md {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .mx-140-md {
    margin-right: 14rem !important;
    margin-left: 14rem !important;
  }
  .px-140-md {
    padding-right: 14rem !important;
    padding-left: 14rem !important;
  }
  .mx-150-md {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .px-150-md {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .mx-160-md {
    margin-right: 16rem !important;
    margin-left: 16rem !important;
  }
  .px-160-md {
    padding-right: 16rem !important;
    padding-left: 16rem !important;
  }
  .mx-170-md {
    margin-right: 17rem !important;
    margin-left: 17rem !important;
  }
  .px-170-md {
    padding-right: 17rem !important;
    padding-left: 17rem !important;
  }
  .mx-180-md {
    margin-right: 18rem !important;
    margin-left: 18rem !important;
  }
  .px-180-md {
    padding-right: 18rem !important;
    padding-left: 18rem !important;
  }
  .mx-190-md {
    margin-right: 19rem !important;
    margin-left: 19rem !important;
  }
  .px-190-md {
    padding-right: 19rem !important;
    padding-left: 19rem !important;
  }
  .mx-200-md {
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .px-200-md {
    padding-right: 20rem !important;
    padding-left: 20rem !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-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;
  }
  .mx-110-sm {
    margin-right: 11rem !important;
    margin-left: 11rem !important;
  }
  .px-110-sm {
    padding-right: 11rem !important;
    padding-left: 11rem !important;
  }
  .mx-120-sm {
    margin-right: 12rem !important;
    margin-left: 12rem !important;
  }
  .px-120-sm {
    padding-right: 12rem !important;
    padding-left: 12rem !important;
  }
  .mx-130-sm {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .px-130-sm {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .mx-140-sm {
    margin-right: 14rem !important;
    margin-left: 14rem !important;
  }
  .px-140-sm {
    padding-right: 14rem !important;
    padding-left: 14rem !important;
  }
  .mx-150-sm {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .px-150-sm {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .mx-160-sm {
    margin-right: 16rem !important;
    margin-left: 16rem !important;
  }
  .px-160-sm {
    padding-right: 16rem !important;
    padding-left: 16rem !important;
  }
  .mx-170-sm {
    margin-right: 17rem !important;
    margin-left: 17rem !important;
  }
  .px-170-sm {
    padding-right: 17rem !important;
    padding-left: 17rem !important;
  }
  .mx-180-sm {
    margin-right: 18rem !important;
    margin-left: 18rem !important;
  }
  .px-180-sm {
    padding-right: 18rem !important;
    padding-left: 18rem !important;
  }
  .mx-190-sm {
    margin-right: 19rem !important;
    margin-left: 19rem !important;
  }
  .px-190-sm {
    padding-right: 19rem !important;
    padding-left: 19rem !important;
  }
  .mx-200-sm {
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .px-200-sm {
    padding-right: 20rem !important;
    padding-left: 20rem !important;
  }
}
/*
  my py
*/
.my-0 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

.py-0 {
  padding-top: 0rem !important;
  padding-bottom: 0rem !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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.py-200 {
  padding-top: 20rem !important;
  padding-bottom: 20rem !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-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;
  }
  .my-110-xl {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }
  .py-110-xl {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }
  .my-120-xl {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .py-120-xl {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
  .my-130-xl {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .py-130-xl {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .my-140-xl {
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }
  .py-140-xl {
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }
  .my-150-xl {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .py-150-xl {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .my-160-xl {
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }
  .py-160-xl {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }
  .my-170-xl {
    margin-top: 17rem !important;
    margin-bottom: 17rem !important;
  }
  .py-170-xl {
    padding-top: 17rem !important;
    padding-bottom: 17rem !important;
  }
  .my-180-xl {
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }
  .py-180-xl {
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }
  .my-190-xl {
    margin-top: 19rem !important;
    margin-bottom: 19rem !important;
  }
  .py-190-xl {
    padding-top: 19rem !important;
    padding-bottom: 19rem !important;
  }
  .my-200-xl {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .py-200-xl {
    padding-top: 20rem !important;
    padding-bottom: 20rem !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-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;
  }
  .my-110-lg {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }
  .py-110-lg {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }
  .my-120-lg {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .py-120-lg {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
  .my-130-lg {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .py-130-lg {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .my-140-lg {
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }
  .py-140-lg {
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }
  .my-150-lg {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .py-150-lg {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .my-160-lg {
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }
  .py-160-lg {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }
  .my-170-lg {
    margin-top: 17rem !important;
    margin-bottom: 17rem !important;
  }
  .py-170-lg {
    padding-top: 17rem !important;
    padding-bottom: 17rem !important;
  }
  .my-180-lg {
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }
  .py-180-lg {
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }
  .my-190-lg {
    margin-top: 19rem !important;
    margin-bottom: 19rem !important;
  }
  .py-190-lg {
    padding-top: 19rem !important;
    padding-bottom: 19rem !important;
  }
  .my-200-lg {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .py-200-lg {
    padding-top: 20rem !important;
    padding-bottom: 20rem !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-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;
  }
  .my-110-md {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }
  .py-110-md {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }
  .my-120-md {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .py-120-md {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
  .my-130-md {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .py-130-md {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .my-140-md {
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }
  .py-140-md {
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }
  .my-150-md {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .py-150-md {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .my-160-md {
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }
  .py-160-md {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }
  .my-170-md {
    margin-top: 17rem !important;
    margin-bottom: 17rem !important;
  }
  .py-170-md {
    padding-top: 17rem !important;
    padding-bottom: 17rem !important;
  }
  .my-180-md {
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }
  .py-180-md {
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }
  .my-190-md {
    margin-top: 19rem !important;
    margin-bottom: 19rem !important;
  }
  .py-190-md {
    padding-top: 19rem !important;
    padding-bottom: 19rem !important;
  }
  .my-200-md {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .py-200-md {
    padding-top: 20rem !important;
    padding-bottom: 20rem !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-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;
  }
  .my-110-sm {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }
  .py-110-sm {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }
  .my-120-sm {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .py-120-sm {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
  .my-130-sm {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .py-130-sm {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .my-140-sm {
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }
  .py-140-sm {
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }
  .my-150-sm {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .py-150-sm {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .my-160-sm {
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }
  .py-160-sm {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }
  .my-170-sm {
    margin-top: 17rem !important;
    margin-bottom: 17rem !important;
  }
  .py-170-sm {
    padding-top: 17rem !important;
    padding-bottom: 17rem !important;
  }
  .my-180-sm {
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }
  .py-180-sm {
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }
  .my-190-sm {
    margin-top: 19rem !important;
    margin-bottom: 19rem !important;
  }
  .py-190-sm {
    padding-top: 19rem !important;
    padding-bottom: 19rem !important;
  }
  .my-200-sm {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .py-200-sm {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
@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;
  }
}

.gap-0 {
  gap: 0rem !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;
}

.gap-110 {
  gap: 11rem !important;
}

.gap-120 {
  gap: 12rem !important;
}

.gap-130 {
  gap: 13rem !important;
}

.gap-140 {
  gap: 14rem !important;
}

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

.gap-160 {
  gap: 16rem !important;
}

.gap-170 {
  gap: 17rem !important;
}

.gap-180 {
  gap: 18rem !important;
}

.gap-190 {
  gap: 19rem !important;
}

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

@media (max-width: 1599px) {
  .gap-0-xxl {
    gap: 0rem !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;
  }
  .gap-110-xxl {
    gap: 11rem !important;
  }
  .gap-120-xxl {
    gap: 12rem !important;
  }
  .gap-130-xxl {
    gap: 13rem !important;
  }
  .gap-140-xxl {
    gap: 14rem !important;
  }
  .gap-150-xxl {
    gap: 15rem !important;
  }
  .gap-160-xxl {
    gap: 16rem !important;
  }
  .gap-170-xxl {
    gap: 17rem !important;
  }
  .gap-180-xxl {
    gap: 18rem !important;
  }
  .gap-190-xxl {
    gap: 19rem !important;
  }
  .gap-200-xxl {
    gap: 20rem !important;
  }
}
@media (max-width: 1199px) {
  .gap-0-xl {
    gap: 0rem !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;
  }
  .gap-110-xl {
    gap: 11rem !important;
  }
  .gap-120-xl {
    gap: 12rem !important;
  }
  .gap-130-xl {
    gap: 13rem !important;
  }
  .gap-140-xl {
    gap: 14rem !important;
  }
  .gap-150-xl {
    gap: 15rem !important;
  }
  .gap-160-xl {
    gap: 16rem !important;
  }
  .gap-170-xl {
    gap: 17rem !important;
  }
  .gap-180-xl {
    gap: 18rem !important;
  }
  .gap-190-xl {
    gap: 19rem !important;
  }
  .gap-200-xl {
    gap: 20rem !important;
  }
}
@media (max-width: 1023px) {
  .gap-0-lg {
    gap: 0rem !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;
  }
  .gap-110-lg {
    gap: 11rem !important;
  }
  .gap-120-lg {
    gap: 12rem !important;
  }
  .gap-130-lg {
    gap: 13rem !important;
  }
  .gap-140-lg {
    gap: 14rem !important;
  }
  .gap-150-lg {
    gap: 15rem !important;
  }
  .gap-160-lg {
    gap: 16rem !important;
  }
  .gap-170-lg {
    gap: 17rem !important;
  }
  .gap-180-lg {
    gap: 18rem !important;
  }
  .gap-190-lg {
    gap: 19rem !important;
  }
  .gap-200-lg {
    gap: 20rem !important;
  }
}
@media (max-width: 767px) {
  .gap-0-md {
    gap: 0rem !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;
  }
  .gap-110-md {
    gap: 11rem !important;
  }
  .gap-120-md {
    gap: 12rem !important;
  }
  .gap-130-md {
    gap: 13rem !important;
  }
  .gap-140-md {
    gap: 14rem !important;
  }
  .gap-150-md {
    gap: 15rem !important;
  }
  .gap-160-md {
    gap: 16rem !important;
  }
  .gap-170-md {
    gap: 17rem !important;
  }
  .gap-180-md {
    gap: 18rem !important;
  }
  .gap-190-md {
    gap: 19rem !important;
  }
  .gap-200-md {
    gap: 20rem !important;
  }
}
@media (max-width: 575px) {
  .gap-0-sm {
    gap: 0rem !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;
  }
  .gap-110-sm {
    gap: 11rem !important;
  }
  .gap-120-sm {
    gap: 12rem !important;
  }
  .gap-130-sm {
    gap: 13rem !important;
  }
  .gap-140-sm {
    gap: 14rem !important;
  }
  .gap-150-sm {
    gap: 15rem !important;
  }
  .gap-160-sm {
    gap: 16rem !important;
  }
  .gap-170-sm {
    gap: 17rem !important;
  }
  .gap-180-sm {
    gap: 18rem !important;
  }
  .gap-190-sm {
    gap: 19rem !important;
  }
  .gap-200-sm {
    gap: 20rem !important;
  }
}
/*common
-----------------------------------------------------*/
.container-sm {
  max-width: 1000px;
  padding: 0 2rem;
  margin: 0 auto;
}

.container-md {
  max-width: 1100px;
  padding: 0 2rem;
  margin: 0 auto;
}

.container-lg {
  max-width: 1280px;
  padding: 0 4rem;
  margin: 0 auto;
}

.container-xl {
  max-width: 1350px;
  padding: 0 4rem;
  margin: 0 auto;
}

@media (max-width: 575px) {
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    padding: 0 2rem;
  }
}
/* parts */
a:hover {
  opacity: 0.6;
}

/* btn */
.btn {
  display: flex;
  position: relative;
  margin: 0 auto;
  text-align: center;
  max-width: 850px;
  width: 100%;
  align-items: center;
  z-index: 2;
}
.btn::before {
  content: "";
  display: inline-block;
  width: 69px;
  height: 58px;
  background: url(https://lp.sanno-gakuin.co.jp/wordpress/wp-content/themes/sanno/images/superhighsummer/deco.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin: 0 4rem 0 0;
}
@media (max-width: 767px) {
  .btn::before {
    margin: 0 2rem 0 0;
  }
}
@media (max-width: 575px) {
  .btn::before {
    content: none;
  }
}
.btn::after {
  content: "";
  display: inline-block;
  width: 69px;
  height: 58px;
  background: url(https://lp.sanno-gakuin.co.jp/wordpress/wp-content/themes/sanno/images/superhighsummer/deco.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin: 0 0 0 4rem;
  transform: scaleX(-1);
}
@media (max-width: 767px) {
  .btn::after {
    margin: 0 0 0 2rem;
  }
}
@media (max-width: 575px) {
  .btn::after {
    content: none;
  }
}
.btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 2rem;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-weight: 400;
  color: #113ea4;
  border: solid 2px #113ea4;
  box-shadow: 10px 10px 0px -5px #113ea4;
  border-radius: 10px;
  box-sizing: border-box;
  letter-spacing: 0.1rem;
  width: 100%;
  font-weight: 700;
  background: url(https://lp.sanno-gakuin.co.jp/wordpress/wp-content/themes/sanno/images/superhighsummer/bg.png) repeat;
  transition: all 0.3s ease-out;
  text-decoration: none;
}
.btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -10px;
  right: 3rem;
  width: 30px;
  height: 30px;
  background: url(https://lp.sanno-gakuin.co.jp/wordpress/wp-content/themes/sanno/images/superhighsummer/arrow-2.svg) no-repeat;
  background-size: cover;
}
@media (max-width: 575px) {
  .btn a::after {
    right: 2rem;
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 575px) {
  .btn a {
    font-size: 5vw;
  }
}

.btn02 {
  display: flex;
  position: relative;
  margin: 6rem auto 0 auto;
  text-align: center;
  max-width: 700px;
  width: 100%;
  align-items: center;
  z-index: 2;
}
.btn02 a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 2rem;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-weight: 400;
  color: #113ea4;
  border: solid 2px #113ea4;
  box-shadow: 10px 10px 0px -5px #113ea4;
  border-radius: 10px;
  box-sizing: border-box;
  letter-spacing: 0.1rem;
  width: 100%;
  font-weight: 700;
  background: url(https://lp.sanno-gakuin.co.jp/wordpress/wp-content/themes/sanno/images/superhighsummer/bg.png) repeat;
  transition: all 0.3s ease-out;
  text-decoration: none;
}
.btn02 a::after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -10px;
  right: 3rem;
  width: 30px;
  height: 30px;
  background: url(https://lp.sanno-gakuin.co.jp/wordpress/wp-content/themes/sanno/images/superhighsummer/arrow-2.svg) no-repeat;
  background-size: cover;
}
@media (max-width: 575px) {
  .btn02 a::after {
    right: 2rem;
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 575px) {
  .btn02 a {
    font-size: 5vw;
  }
}

.h2-tit {
  text-align: center;
  font-size: clamp(2.2rem, 1.4rem + 4vw, 4.4rem);
  font-weight: 500;
}
.h2-tit .sub {
  color: #00A6E3;
  font-size: clamp(1.6rem, 1.345rem + 1.27vw, 2.3rem);
}

.h3-tit {
  display: flex;
  position: relative;
  text-align: center;
  font-size: clamp(2rem, 3.8vw, 5rem);
  color: #9D6100;
  justify-content: center;
  align-items: center;
  line-height: 1.3;
}
.h3-tit-sub {
  padding-left: 1rem;
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 1;
  font-size: clamp(1.6rem, 2vw, 2rem);
  color: #1F1F1F;
}
.h3-tit-sub2 {
  margin-top: 0;
  padding-top: 0;
  line-height: 1;
  font-size: clamp(1.6rem, 2.4vw, 3rem);
}
.h3-tit::before {
  content: "";
  display: inline-block;
  width: 58px;
  height: 83px;
  background: url(https://lp.sanno-gakuin.co.jp/wordpress/wp-content/themes/sanno/images/superhighsummer/deco-2.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin: 0 8px;
}
.h3-tit::after {
  content: "";
  display: inline-block;
  width: 58px;
  height: 83px;
  background: url(https://lp.sanno-gakuin.co.jp/wordpress/wp-content/themes/sanno/images/superhighsummer/deco-2.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin: 0 8px;
  transform: scaleX(-1);
}

.h3-tit-2 {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  position: relative;
  text-align: center;
  font-size: clamp(1.8rem, 3.5vw, 4rem);
  color: #1F1F1F;
  justify-content: center;
  align-items: center;
  line-height: 1.3;
  font-weight: 600;
}
@media (max-width: 575px) {
  .h3-tit-2 {
    align-items: flex-end;
  }
}
.h3-tit-2::before {
  content: "";
  display: inline-block;
  width: 68px;
  height: 96px;
  background: url(https://lp.sanno-gakuin.co.jp/wordpress/wp-content/themes/sanno/images/superhighsummer/deco-2.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin: 0 8px;
}
@media (max-width: 575px) {
  .h3-tit-2::before {
    width: 38px;
    height: 44px;
    margin: 0 0 0 4px;
  }
}
.h3-tit-2::after {
  content: "";
  display: inline-block;
  width: 68px;
  height: 96px;
  background: url(https://lp.sanno-gakuin.co.jp/wordpress/wp-content/themes/sanno/images/superhighsummer/deco-2.png) no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin: 0 8px;
  transform: scaleX(-1);
}
@media (max-width: 575px) {
  .h3-tit-2::after {
    width: 38px;
    height: 44px;
    margin: 0 4px 0 0;
  }
}

.mod-table {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #FE4675;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.mod-table dt {
  flex: 0 0 25%;
  margin: 0;
  padding: 12px;
  border-top: 1px solid #FE4675;
  border-right: 1px solid #FE4675;
  color: #FE4675;
  font-weight: 400;
  box-sizing: border-box;
  background: #FFE9EF;
  font-size: clamp(1.8rem, 4.2vw, 2.4rem);
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 575px) {
  .mod-table dt {
    flex: 0 0 100%;
    border-right: none;
    text-align: left;
  }
}
.mod-table dd {
  flex: 0 0 75%;
  margin: 0;
  padding: 12px;
  border-top: 1px solid #FE4675;
  background: #fff;
  box-sizing: border-box;
  font-size: clamp(1.6rem, 4.2vw, 2.2rem);
  line-height: 1.5;
}
@media (max-width: 575px) {
  .mod-table dd {
    flex: 0 0 100%;
    border-right: none;
  }
}
.mod-table dt:first-of-type,
.mod-table dd:first-of-type {
  border-top: none;
}

.mod-tit {
  display: flex;
  padding: 0.5rem 0 0.5rem 1rem;
  background: #113EA4;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  align-items: center;
  box-sizing: border-box;
  line-height: 1.3;
}
.mod-tit::before {
  content: "";
  width: 6px;
  background: #fff;
  height: 30px;
  margin-right: 1rem;
}

@media (max-width: 375px) {
  .none-375 {
    display: none !important;
  }
}

/*lp
-----------------------------------------------------*/
.superhighsummer .header-box {
  background: #fff;
  padding: 1.5rem 2rem;
}
.superhighsummer .header-box-img {
  width: 180px;
}
@media (max-width: 1023px) {
  .superhighsummer .header-box-img {
    width: 140px;
  }
}
.superhighsummer .header-box-txt {
  font-weight: 500;
  font-size: clamp(12px, 1.75vw, 16px);
  color: #333;
}
@media (max-width: 767px) {
  .superhighsummer .header-box-txt {
    display: none;
  }
}
.superhighsummer .header-btn {
  display: flex;
}
.superhighsummer .header-btn a {
  position: relative;
  display: flex;
  padding: 0 5rem 0 3rem;
  background: #113EA4;
  color: #fff;
  font-size: clamp(14px, 1.75vw, 20px);
  text-decoration: none;
  align-items: center;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .superhighsummer .header-btn a {
    padding: 0 5rem 0 2rem;
  }
}
.superhighsummer .header-btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -10px;
  right: 2rem;
  width: 20px;
  height: 20px;
  background: url(https://lp.sanno-gakuin.co.jp/wordpress/wp-content/themes/sanno/images/superhighsummer/arrow.svg) no-repeat;
  background-size: cover;
}
.superhighsummer .mv {
  position: relative;
}
.superhighsummer .mv::before {
  content: "";
  display: block;
  position: absolute;
  background: url(https://lp.sanno-gakuin.co.jp/wordpress/wp-content/themes/sanno/images/superhighsummer/line.png) repeat-x;
  width: 100%;
  height: 20px;
  left: 0;
  bottom: 0;
}
.superhighsummer .top-area {
  position: relative;
  background: #138DFF;
  background: linear-gradient(180deg, rgb(19, 141, 255) 0%, rgb(0, 191, 248) 100%);
}
.superhighsummer .top-area::before {
  content: "";
  display: block;
  position: absolute;
  background: url(https://lp.sanno-gakuin.co.jp/wordpress/wp-content/themes/sanno/images/superhighsummer/line-2.png) repeat-x;
  width: 100%;
  height: 20px;
  left: 0;
  bottom: 0;
}
.superhighsummer .top-area-txt {
  font-weight: 500;
  color: #fff;
  font-size: clamp(1.6rem, 1.6vw + 1rem, 2.4rem);
}
.superhighsummer .top-area-txt span {
  font-size: clamp(2.6rem, 3.2vw + 1rem, 4rem);
}
@media (max-width: 767px) {
  .superhighsummer .top-area-txt {
    line-height: 1.7;
  }
}
.superhighsummer .about-area .about-lead {
  padding: 3rem 0;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
}
.superhighsummer .about-area .about-lead span {
  color: #FA235A;
}
@media (max-width: 767px) {
  .superhighsummer .about-area .about-lead {
    font-size: 2.6rem;
  }
}
@media (max-width: 575px) {
  .superhighsummer .about-area .about-lead {
    font-size: 2.2rem;
  }
}
.superhighsummer .about-area .about-box {
  position: relative;
  border: 1px solid #0084D7;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 8rem 5rem 6.5rem 5rem;
  margin-top: 11rem;
}
@media (max-width: 767px) {
  .superhighsummer .about-area .about-box {
    padding: 7rem 4rem 5rem 4rem;
  }
}
@media (max-width: 575px) {
  .superhighsummer .about-area .about-box {
    padding: 5rem 2rem 4rem 2rem;
  }
}
.superhighsummer .about-area .about-box dl {
  display: flex;
}
@media (max-width: 865px) {
  .superhighsummer .about-area .about-box dl {
    display: block;
  }
}
.superhighsummer .about-area .about-box dt {
  width: 246px;
}
@media (max-width: 865px) {
  .superhighsummer .about-area .about-box dt {
    width: auto;
    max-width: 300px;
    margin: 2rem auto 0 auto;
  }
}
.superhighsummer .about-area .about-box dd {
  flex: 1;
  margin-left: 4rem;
}
@media (max-width: 865px) {
  .superhighsummer .about-area .about-box dd {
    margin-left: 0;
  }
}
.superhighsummer .about-area .note-wrap {
  text-align: right;
}
@media (max-width: 575px) {
  .superhighsummer .about-area .note-wrap {
    text-align: left;
  }
}
.superhighsummer .about-area .note {
  display: inline-block;
  position: relative;
}
.superhighsummer .about-area .note::before {
  content: "";
  display: block;
  position: absolute;
  background: #FFFA80;
  width: 100%;
  height: 7px;
  left: 0;
  bottom: -2px;
  z-index: 0;
}
.superhighsummer .about-area .about-sub {
  position: absolute;
  padding: 0.5rem 2rem;
  background: #113EA4;
  color: #fff;
  font-weight: 700;
  text-align: center;
  border-radius: 500px;
  font-size: clamp(1.8rem, 4.2vw, 2.6rem);
  box-sizing: border-box;
  width: 450px;
  top: -30px;
  left: 50%;
  margin-left: -225px;
}
@media (max-width: 575px) {
  .superhighsummer .about-area .about-sub {
    width: 280px;
    margin-left: -140px;
  }
}
.superhighsummer .about-area .about-sub::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 14px solid #113EA4;
}
.superhighsummer .about-area .about-sub-2 {
  background: #0084D7;
}
.superhighsummer .about-area .about-sub-2::after {
  content: "";
  display: block;
  margin: 0 auto;
  position: absolute;
  width: 0;
  height: 0;
  left: 50%;
  margin-left: -9px;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 20px solid #0084D7;
}
.superhighsummer .feature-area-tit {
  display: flex;
  align-items: center;
  text-align: center;
  font-weight: bold;
}
.superhighsummer .feature-area-tit:before {
  content: "";
  flex: 1;
  height: 5px;
  /* 線の太さ */
  background-image: repeating-linear-gradient(to right, #C7C7C7 0px, #C7C7C7 10px, transparent 10px, transparent 20px);
  margin: 0 20px 0 0;
}
.superhighsummer .feature-area-tit:after {
  content: "";
  flex: 1;
  height: 5px;
  /* 線の太さ */
  background-image: repeating-linear-gradient(to right, #C7C7C7 0px, #C7C7C7 10px, transparent 10px, transparent 20px);
  margin: 0 0 0 20px;
}
.superhighsummer .feature-area-tit h2 {
  font-size: clamp(2.2rem, 4.2vw, 4.8rem);
  line-height: 1.4;
}
.superhighsummer .feature-area-tit h2 span {
  position: relative;
  color: #113EA4;
}
.superhighsummer .feature-area-tit h2 span::before {
  content: "";
  display: block;
  position: absolute;
  background: #FFFA80;
  width: 100%;
  height: 7px;
  left: 0;
  bottom: 7px;
  z-index: -1;
}
.superhighsummer .feature-area-list {
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 2%;
}
.superhighsummer .feature-area-list li {
  border: solid 2px #00AAE4;
  flex: 1 1 calc(33.333% - 20px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .superhighsummer .feature-area-list li {
    margin-bottom: 3rem;
  }
}
.superhighsummer .feature-area-list li:nth-child(2) {
  border: solid 2px #54BD3F;
}
.superhighsummer .feature-area-list li:nth-child(2) h3 {
  background: #54BD3F;
}
.superhighsummer .feature-area-list li:nth-child(3) {
  border: solid 2px #FF5B85;
}
.superhighsummer .feature-area-list li:nth-child(3) h3 {
  background: #FF5B85;
}
.superhighsummer .feature-area-list h3 {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: clamp(2rem, 1.2vw + 1rem, 2.6rem);
  padding: 2rem;
  box-sizing: border-box;
  background: #00AAE4;
  line-height: 1.5;
  border-radius: 6px 6px 0 0;
}
.superhighsummer .feature-area-box {
  padding: 4rem 2rem;
  box-sizing: border-box;
}
.superhighsummer .feature-area .feature-details {
  background: #F4EFEB;
}
.superhighsummer .feature-area .feature-details dl {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #00AAE4;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.superhighsummer .feature-area .feature-details dt {
  flex: 0 0 25%;
  margin: 0;
  padding: 12px;
  border-top: 1px solid #00AAE4;
  border-right: 1px solid #00AAE4;
  color: #0089DE;
  font-weight: 400;
  box-sizing: border-box;
  background: #F6FC69;
  font-size: clamp(1.8rem, 4.2vw, 2.6rem);
  text-align: center;
}
@media (max-width: 575px) {
  .superhighsummer .feature-area .feature-details dt {
    text-align: left;
    flex: 0 0 100%;
    border-right: none;
  }
}
.superhighsummer .feature-area .feature-details dd {
  flex: 0 0 75%;
  margin: 0;
  padding: 12px;
  border-top: 1px solid #00AAE4;
  background: #fff;
  box-sizing: border-box;
  font-size: clamp(1.8rem, 4.2vw, 2.6rem);
}
@media (max-width: 575px) {
  .superhighsummer .feature-area .feature-details dd {
    flex: 0 0 100%;
    border-right: none;
  }
}
.superhighsummer .feature-area .feature-details dt:first-of-type,
.superhighsummer .feature-area .feature-details dd:first-of-type {
  border-top: none;
}
.superhighsummer .example-area {
  background-color: #F4EFEB;
}
.superhighsummer .example-box {
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
}
.superhighsummer .example-sub {
  position: absolute;
  padding: 0.5rem 2rem;
  background: #113EA4;
  color: #fff;
  font-weight: 700;
  text-align: center;
  border-radius: 500px;
  font-size: clamp(1.8rem, 4.2vw, 2.6rem);
  box-sizing: border-box;
  width: 450px;
  top: -30px;
  left: 50%;
  margin-left: -225px;
}
@media (max-width: 1023px) {
  .superhighsummer .example-sub {
    padding: 1rem 2rem;
    width: 400px;
    margin-left: -200px;
    top: -44px;
    line-height: 1.4;
  }
}
@media (max-width: 575px) {
  .superhighsummer .example-sub {
    width: 280px;
    margin-left: -140px;
    top: -44px;
    line-height: 1.4;
  }
}
.superhighsummer .example-sub::after {
  content: "";
  display: block;
  margin: 0 auto;
  position: absolute;
  width: 0;
  height: 0;
  left: 50%;
  bottom: -14px;
  margin-left: -9px;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 20px solid #113EA4;
}
@media (max-width: 1023px) {
  .superhighsummer .example-sub::after {
    margin-left: -18px;
  }
}
.superhighsummer .example {
  border: solid 1px #DADADA;
  box-sizing: border-box;
  padding: 4rem 4rem 1rem 4rem;
}
@media (max-width: 1023px) {
  .superhighsummer .example {
    padding: 2rem 2rem 0 2rem;
  }
}
.superhighsummer .shingaku-area {
  padding-top: 12rem;
  padding-bottom: 10rem;
  background: #F4EFEB;
}
@media (max-width: 575px) {
  .superhighsummer .shingaku-area {
    padding-bottom: 6rem;
  }
}
.superhighsummer .shingaku-box {
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  box-sizing: border-box;
  padding: 8rem 4rem 4rem 4rem;
}
@media (max-width: 1023px) {
  .superhighsummer .shingaku-box {
    padding-top: 12rem;
  }
}
@media (max-width: 575px) {
  .superhighsummer .shingaku-box {
    padding: 6rem 2rem 4rem 2rem;
  }
}
.superhighsummer .shingaku-box dt {
  width: 446px;
}
@media (max-width: 1023px) {
  .superhighsummer .shingaku-box dt {
    width: 300px;
  }
}
@media (max-width: 767px) {
  .superhighsummer .shingaku-box dt {
    width: auto;
    max-width: 500px;
    margin: 0 auto;
  }
}
.superhighsummer .shingaku-box dd {
  flex: 1;
  margin-left: 4rem;
}
@media (max-width: 767px) {
  .superhighsummer .shingaku-box dd {
    margin-top: 4rem;
    margin-left: 0;
  }
}
.superhighsummer .shingaku-box .note {
  display: inline-block;
  position: relative;
}
.superhighsummer .shingaku-box .note::before {
  content: "";
  display: block;
  position: absolute;
  background: #FFFA80;
  width: 100%;
  height: 7px;
  left: 0;
  bottom: -2px;
  z-index: 0;
}
.superhighsummer .shingaku-note {
  text-align: right;
}
.superhighsummer .shingaku-sub {
  position: absolute;
  padding: 0.5rem 2rem;
  background: #113EA4;
  color: #fff;
  font-weight: 700;
  text-align: center;
  border-radius: 500px;
  font-size: clamp(1.8rem, 4.2vw, 2.6rem);
  box-sizing: border-box;
  width: 700px;
  top: -30px;
  left: 50%;
  margin-left: -325px;
}
@media (max-width: 767px) {
  .superhighsummer .shingaku-sub {
    padding: 1rem 2rem;
    width: 480px;
    margin-left: -240px;
    top: -44px;
    line-height: 1.4;
  }
}
@media (max-width: 575px) {
  .superhighsummer .shingaku-sub {
    width: 360px;
    margin-left: -180px;
    top: -44px;
    line-height: 1.4;
    font-size: 1.8rem;
  }
}
.superhighsummer .shingaku-sub::after {
  content: "";
  display: block;
  margin: 0 auto;
  position: absolute;
  width: 0;
  height: 0;
  left: 50%;
  bottom: -14px;
  margin-left: -9px;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 20px solid #113EA4;
}
@media (max-width: 1023px) {
  .superhighsummer .shingaku-sub::after {
    margin-left: -18px;
  }
}
.superhighsummer .shingaku-list {
  border-left: solid 1px #00AAE4;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .superhighsummer .shingaku-list {
    display: block;
  }
}
.superhighsummer .shingaku-list li {
  width: 50%;
  display: flex;
  border-top: solid 1px #00AAE4;
  border-right: solid 1px #00AAE4;
}
@media (max-width: 575px) {
  .superhighsummer .shingaku-list li {
    width: 100%;
  }
}
.superhighsummer .shingaku-list li:last-child {
  border-bottom: solid 1px #00AAE4;
}
.superhighsummer .shingaku-list li:nth-last-child(2) {
  border-bottom: solid 1px #00AAE4;
}
@media (max-width: 575px) {
  .superhighsummer .shingaku-list li:nth-last-child(2) {
    border-bottom: none;
  }
}
.superhighsummer .shingaku-list li .label {
  color: #113EA4;
  background: #FBFF9F;
  line-height: 1.5;
  box-sizing: border-box;
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  padding: 1.5rem 1.5rem;
  width: 270px;
  font-weight: 500;
}
@media (max-width: 1023px) {
  .superhighsummer .shingaku-list li .label {
    width: 220px;
  }
}
@media (max-width: 767px) {
  .superhighsummer .shingaku-list li .label {
    width: 140px;
    padding: 1rem 1.5rem;
  }
}
.superhighsummer .shingaku-list li .num {
  line-height: 1.5;
  padding: 1.5rem 1.5rem;
  flex: 1;
}
@media (max-width: 767px) {
  .superhighsummer .shingaku-list li .num {
    padding: 1rem 1.5rem;
  }
}
.superhighsummer .solution-box h3 {
  display: flex;
  padding: 0.5rem 0 0.5rem 0;
  margin: 3rem 0 1.5rem 0;
  color: #113EA4;
  font-size: clamp(2rem, 3vw, 2.2rem);
  font-weight: 500;
  align-items: center;
  box-sizing: border-box;
  line-height: 1.5;
}
.superhighsummer .solution-box h3::before {
  content: "";
  width: 10px;
  background: #113EA4;
  height: 40px;
  margin-right: 1rem;
}
.superhighsummer .solution-box p {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .superhighsummer .solution-box p {
    font-size: 1.8rem;
  }
}
@media (max-width: 575px) {
  .superhighsummer .solution-box p {
    font-size: 1.6rem;
  }
}
.superhighsummer .solution-box p strong {
  color: #113EA4;
}
.superhighsummer .solution-box ul {
  font-size: 2rem;
  list-style: none;
  padding-left: 5rem;
}
@media (max-width: 767px) {
  .superhighsummer .solution-box ul {
    padding-left: 4.5rem;
    font-size: 1.8rem;
  }
}
@media (max-width: 575px) {
  .superhighsummer .solution-box ul {
    padding-left: 4rem;
    font-size: 1.6rem;
  }
}
.superhighsummer .solution-box ul li {
  position: relative;
}
.superhighsummer .solution-box ul li::before {
  content: "";
  position: absolute;
  left: -1em;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
}
.superhighsummer .difference-box {
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
}
.superhighsummer .difference-sub {
  position: absolute;
  padding: 0.5rem 2rem;
  background: #113EA4;
  color: #fff;
  font-weight: 700;
  text-align: center;
  border-radius: 500px;
  font-size: clamp(1.8rem, 4.2vw, 2.6rem);
  box-sizing: border-box;
  width: 450px;
  top: -30px;
  left: 50%;
  margin-left: -225px;
}
@media (max-width: 1023px) {
  .superhighsummer .difference-sub {
    padding: 1rem 2rem;
    width: 400px;
    margin-left: -200px;
    top: -44px;
    line-height: 1.4;
  }
}
@media (max-width: 575px) {
  .superhighsummer .difference-sub {
    width: 280px;
    margin-left: -140px;
    top: -44px;
    line-height: 1.4;
  }
}
.superhighsummer .difference-sub::after {
  content: "";
  display: block;
  margin: 0 auto;
  position: absolute;
  width: 0;
  height: 0;
  left: 50%;
  bottom: -14px;
  margin-left: -9px;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 20px solid #113EA4;
}
@media (max-width: 1023px) {
  .superhighsummer .difference-sub::after {
    margin-left: -18px;
  }
}
.superhighsummer .difference-table {
  margin-bottom: 5rem;
  /*scroll-hint*/
}
.superhighsummer .difference-table .tableArea {
  max-width: 100%;
  overflow: auto;
}
@media (max-width: 1023px) {
  .superhighsummer .difference-table .tableArea table th,
  .superhighsummer .difference-table .tableArea table td {
    white-space: nowrap;
    /*文字を折り返さない*/
  }
}
.superhighsummer .difference-table table {
  width: 100%;
  border: 1px solid #E9F2F5;
  text-align: center;
}
.superhighsummer .difference-table table th {
  background-color: #DCF3FC;
}
.superhighsummer .difference-table table .th-sanno {
  background-color: #113EA4;
  color: #FFF;
}
.superhighsummer .difference-table table th,
.superhighsummer .difference-table table td {
  padding: 3rem;
  border: 1px solid #E9F2F5;
  text-align: center;
}
.superhighsummer .recommendation-box h3 {
  display: flex;
  padding: 0.5rem 0 0.5rem 0;
  margin: 3rem 0 1.5rem 0;
  color: #113EA4;
  font-size: clamp(2rem, 3vw, 2.2rem);
  font-weight: 500;
  align-items: center;
  box-sizing: border-box;
  line-height: 1.5;
}
.superhighsummer .recommendation-box h3::before {
  content: "";
  width: 10px;
  background: #113EA4;
  height: 40px;
  margin-right: 1rem;
}
.superhighsummer .recommendation-box p {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .superhighsummer .recommendation-box p {
    font-size: 1.8rem;
  }
}
@media (max-width: 575px) {
  .superhighsummer .recommendation-box p {
    font-size: 1.6rem;
  }
}
.superhighsummer .recommendation-box p strong {
  color: #113EA4;
}
.superhighsummer .recommendation-box ul {
  font-size: 2rem;
  list-style: none;
  padding-left: 5rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .superhighsummer .recommendation-box ul {
    font-size: 1.8rem;
  }
}
@media (max-width: 575px) {
  .superhighsummer .recommendation-box ul {
    font-size: 1.6rem;
  }
}
.superhighsummer .recommendation-box ul li {
  position: relative;
}
.superhighsummer .recommendation-box ul li::before {
  content: "";
  position: absolute;
  left: -1em;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
}
.superhighsummer .course-area {
  position: relative;
  background: #DCF3FC;
  color: #222;
  z-index: 1;
}
.superhighsummer .course-area::before {
  content: none;
  display: block;
  position: absolute;
  background: url(https://lp.sanno-gakuin.co.jp/wordpress/wp-content/themes/sanno/images/superhighsummer/line-2.png) repeat-x;
  width: 100%;
  height: 20px;
  left: 0;
  bottom: 0;
}
.superhighsummer .course-area .course-box {
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
}
.superhighsummer .course-area .course-sub {
  position: absolute;
  padding: 0.5rem 2rem;
  background: #FA235A;
  color: #fff;
  font-weight: 700;
  text-align: center;
  border-radius: 500px;
  font-size: clamp(1.8rem, 4.2vw, 2.6rem);
  box-sizing: border-box;
  width: 450px;
  top: -30px;
  left: 50%;
  margin-left: -225px;
}
@media (max-width: 575px) {
  .superhighsummer .course-area .course-sub {
    width: 280px;
    margin-left: -140px;
  }
}
.superhighsummer .course-area .course-sub-2 {
  background: #0084D7;
}
.superhighsummer .course-area .course-sub-2::after {
  content: "";
  display: block;
  margin: 0 auto;
  position: absolute;
  width: 0;
  height: 0;
  left: 50%;
  margin-left: -9px;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 20px solid #0084D7;
}
.superhighsummer .course-area .course-lead {
  position: relative;
  padding: 3rem 0;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
}
.superhighsummer .course-area .course-lead:after {
  content: "";
  display: block;
  margin-top: 1rem;
  width: 100%;
  height: 2px;
  /* 線の太さ */
  background-image: repeating-linear-gradient(to right, #000 0px, #000 10px, transparent 10px, transparent 20px);
}
.superhighsummer .course-area .course-lead span {
  color: #FA235A;
}
@media (max-width: 767px) {
  .superhighsummer .course-area .course-lead {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .superhighsummer .course-area .course-lead {
    font-size: 2.2rem;
  }
}
.superhighsummer .course-area .course-price {
  display: flex;
  gap: 75px;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 855px) {
  .superhighsummer .course-area .course-price {
    flex-direction: column;
    gap: 40px;
  }
}
.superhighsummer .course-area .course-price li {
  border: 2px solid #00AAE4;
  padding: 2rem;
  box-sizing: border-box;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 855px) {
  .superhighsummer .course-area .course-price li {
    width: 100%;
  }
}
.superhighsummer .course-area .course-price .en-img {
  display: block;
  width: 40px;
  height: 45px;
}
.superhighsummer .course-area .course-price {
  /* 横幅指定 */
}
.superhighsummer .course-area .course-price li:nth-child(1) {
  position: relative;
  width: 368px;
}
.superhighsummer .course-area .course-price li:nth-child(1)::before {
  content: "";
  display: block;
  position: absolute;
  background: url(https://lp.sanno-gakuin.co.jp/wordpress/wp-content/themes/sanno/images/superhighsummer/arrow-3.svg) no-repeat center;
  background-size: contain;
  width: 111px;
  height: 96px;
  right: -102px;
  bottom: 50%;
  margin-bottom: -48px;
}
@media screen and (max-width: 855px) {
  .superhighsummer .course-area .course-price li:nth-child(1) {
    width: 100%;
    margin-bottom: 5rem;
  }
  .superhighsummer .course-area .course-price li:nth-child(1)::before {
    content: "";
    width: 60px;
    height: 60px;
    right: 50%;
    margin-right: -30px;
    bottom: -11px;
    transform: rotate(90deg);
  }
}
.superhighsummer .course-area .course-price .deco-3 {
  position: relative;
}
.superhighsummer .course-area .course-price .deco-3::before {
  content: "";
  display: block;
  position: absolute;
  background: url(https://lp.sanno-gakuin.co.jp/wordpress/wp-content/themes/sanno/images/superhighsummer/deco-3.png) no-repeat center;
  background-size: contain;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.superhighsummer .course-area .course-price li:nth-child(2) {
  padding-top: 4rem;
  width: 704px;
}
@media screen and (max-width: 855px) {
  .superhighsummer .course-area .course-price li:nth-child(2) {
    width: 100%;
    padding-top: 5rem;
  }
}
.superhighsummer .course-area .course-price {
  /* 各要素のスタイル */
}
.superhighsummer .course-area .course-price .price-large {
  font-size: clamp(4rem, 4vw + 1rem, 6rem);
  font-weight: 700;
  color: #222;
}
.superhighsummer .course-area .course-price .price-extra {
  font-size: clamp(5rem, 4.4vw + 1rem, 7.5rem);
  font-weight: 700;
  color: #222;
}
.superhighsummer .course-area .course-price .notice {
  font-size: 22px;
  font-weight: 700;
  color: #222;
}
@media screen and (max-width: 855px) {
  .superhighsummer .course-area .course-price .notice {
    font-size: 18px;
  }
}
.superhighsummer .course-area .course-price .course-price-after {
  position: relative;
}
.superhighsummer .course-area .course-price .highlight {
  position: absolute;
  font-size: 20px;
  background-color: #F6FC69;
  color: #0080CF;
  font-weight: 700;
  padding: 0.5rem 4rem;
  top: -20px;
  left: 50%;
  margin-left: -260px;
  min-width: 400px;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .superhighsummer .course-area .course-price .highlight {
    top: -30px;
    margin-left: -200px;
  }
}
@media (max-width: 575px) {
  .superhighsummer .course-area .course-price .highlight {
    font-size: 16px;
    min-width: auto;
    padding: 0.5rem 1.5rem;
    margin-left: -140px;
  }
}
.superhighsummer .course-area .option-tit {
  display: flex;
  align-items: center;
  text-align: center;
  font-weight: bold;
}
.superhighsummer .course-area .option-tit:before {
  content: "";
  flex: 1;
  height: 2px;
  /* 線の太さ */
  background-image: repeating-linear-gradient(to right, #222 0px, #222 9px, transparent 10px, transparent 20px);
  margin: 0 20px 0 0;
}
.superhighsummer .course-area .option-tit:after {
  content: "";
  flex: 1;
  height: 2px;
  /* 線の太さ */
  background-image: repeating-linear-gradient(to right, #222 0px, #222 9px, transparent 10px, transparent 20px);
  margin: 0 0 0 20px;
}
.superhighsummer .course-area .option-tit p {
  font-size: clamp(2.4rem, 3.2vw + 1rem, 3.6rem);
}
.superhighsummer .course-area .option {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (max-width: 855px) {
  .superhighsummer .course-area .option {
    display: block;
  }
}
.superhighsummer .course-area .option li {
  flex: 1 1 calc(50% - 10px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.superhighsummer .course-area .option-item {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 855px) {
  .superhighsummer .course-area .option-item {
    margin-bottom: 4rem;
  }
}
.superhighsummer .course-area .option-item .sub {
  color: #113EA4;
}
.superhighsummer .course-area .option-item h5 {
  display: flex;
  padding: 0.5rem 0 0.5rem 1rem;
  margin: 1rem 0 0 0;
  background: #fff;
  color: #113EA4;
  font-size: clamp(2rem, 3.2vw + 1rem, 2.2rem);
  font-weight: 500;
  align-items: center;
  box-sizing: border-box;
}
.superhighsummer .course-area .option-item h5::before {
  content: "";
  width: 7px;
  background: #113EA4;
  height: 27px;
  margin-right: 1rem;
}
.superhighsummer .course-area .option-box {
  border: solid 2px #113EA4;
  background: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.superhighsummer .course-area .option .option-in {
  border-bottom: solid 2px #113EA4;
  display: flex;
  align-items: center;
}
.superhighsummer .course-area .option .option-img {
  background: #F6FC69;
  width: 114px;
  border-right: solid 2px #113EA4;
}
@media (max-width: 575px) {
  .superhighsummer .course-area .option .option-img {
    width: 95px;
  }
}
.superhighsummer .course-area .option .option-box-tit {
  flex: 1;
  font-size: 2.4rem;
  font-weight: 700;
  box-sizing: border-box;
  padding: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .superhighsummer .course-area .option .option-box-tit {
    font-size: 2rem;
  }
}
.superhighsummer .course-area .option .py-20.px-20 {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.superhighsummer .course-area .option .option-sub {
  width: 270px;
  text-align: center;
  margin: 0 auto 1rem auto;
}
.superhighsummer .course-area .option .option-sub span {
  background: #113EA4;
  border-radius: 500px;
  color: #fff;
  font-size: 2rem;
  display: inline-block;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
}
.superhighsummer .course-area .option .option-sub::after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 18px solid #113EA4;
}
@media (max-width: 767px) {
  .superhighsummer .course-area .option .option-sub {
    font-size: 1.6rem;
  }
}
.superhighsummer .course-area .example {
  border: solid 1px #DADADA;
  box-sizing: border-box;
  padding: 4rem;
}
.superhighsummer .course-area .example + .example {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .superhighsummer .course-area .example {
    padding: 2rem;
  }
}
@media (max-width: 575px) {
  .superhighsummer .course-area .example {
    padding: 2rem 1rem;
  }
}
.superhighsummer .course-area .voice-box-detail {
  position: relative;
  background: #FDFFD5;
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
  padding: 4rem;
  margin-top: 4rem;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .superhighsummer .course-area .voice-box-detail {
    padding: 4rem 2rem;
  }
}
.superhighsummer .course-area .voice-box-detail::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(https://lp.sanno-gakuin.co.jp/wordpress/wp-content/themes/sanno/images/superhighsummer/deco-4.svg);
  background-repeat: no-repeat;
  background-size: contain;
  right: 0;
  bottom: 0;
  width: 26px;
  height: 26px;
}
.superhighsummer .course-area .voice-box-detail::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(https://lp.sanno-gakuin.co.jp/wordpress/wp-content/themes/sanno/images/superhighsummer/deco-5.svg);
  background-repeat: no-repeat;
  background-size: contain;
  right: 0;
  bottom: 0;
  width: 26px;
  height: 26px;
}
.superhighsummer .course-area .voice-box-detail .note-wrap {
  text-align: right;
}
@media (max-width: 575px) {
  .superhighsummer .course-area .voice-box-detail .note-wrap {
    text-align: left;
  }
}
.superhighsummer .course-area .voice-box-detail .note-wrap .note {
  display: inline-block;
  position: relative;
  font-size: 2.2rem;
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  line-height: 1.4;
}
.superhighsummer .course-area .voice-box-detail .note-wrap .note::before {
  content: "";
  display: block;
  position: absolute;
  background: #FFFA80;
  width: 100%;
  height: 7px;
  left: 0;
  bottom: -6px;
  z-index: 0;
}
@media (max-width: 575px) {
  .superhighsummer .course-area .voice-box-detail .note-wrap .note::before {
    bottom: -10px;
  }
}
.superhighsummer .course-area .voice-box dt {
  width: 246px;
}
@media (max-width: 767px) {
  .superhighsummer .course-area .voice-box dt {
    width: auto;
    max-width: 300px;
    margin: 2rem auto 0 auto;
  }
}
.superhighsummer .course-area .voice-box dd {
  flex: 1;
  margin-left: 4rem;
}
@media (max-width: 767px) {
  .superhighsummer .course-area .voice-box dd {
    margin-top: 4rem;
    margin-left: 0;
  }
}
.superhighsummer .course-area .passing-list {
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .superhighsummer .course-area .passing-list {
    gap: 2rem 1rem;
  }
}
.superhighsummer .course-area .passing-list li {
  width: 23.5%;
}
@media (max-width: 767px) {
  .superhighsummer .course-area .passing-list li {
    width: 48%;
  }
}
.superhighsummer .foot-area {
  position: relative;
  background: #fff;
  padding-bottom: 21rem;
}
.superhighsummer .foot-area::before {
  content: "";
  display: block;
  position: absolute;
  background: url(https://lp.sanno-gakuin.co.jp/wordpress/wp-content/themes/sanno/images/superhighsummer/line-2.png) repeat-x;
  width: 100%;
  height: 20px;
  left: 0;
  top: -19px;
  z-index: 1;
}
.superhighsummer .foot-area::after {
  content: "";
  display: block;
  position: absolute;
  background: url(https://lp.sanno-gakuin.co.jp/wordpress/wp-content/themes/sanno/images/superhighsummer/foot.jpg) no-repeat bottom;
  background-size: cover;
  width: 100%;
  height: 1544px;
  left: 0;
  bottom: 0;
  z-index: 0;
  /* 上に向かって透明 */
  -webkit-mask-image: linear-gradient(to top, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to top, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
}
.superhighsummer .foot-area .h2-tit {
  position: relative;
  z-index: 2;
}
.superhighsummer .foot-area h2 {
  position: relative;
  z-index: 2;
}
.superhighsummer .faq-area {
  position: relative;
  z-index: 2;
}
.superhighsummer .faq-box {
  border: 1px solid #113EA4;
  margin-bottom: 3rem;
  border-radius: 10px;
}
.superhighsummer .faq-box .q {
  background-color: #113EA4;
  color: #FFF;
  font-weight: bold;
  padding: 1rem 2rem 1rem 4rem;
  border-radius: 9px 9px 0 0;
}
@media (max-width: 767px) {
  .superhighsummer .faq-box .q {
    padding: 1rem 2rem 1rem 3rem;
  }
}
@media (max-width: 575px) {
  .superhighsummer .faq-box .q {
    padding: 1rem 2rem;
  }
}
.superhighsummer .faq-box .q p::before {
  content: "Q.";
  font-size: 2.4rem;
  font-weight: bold;
  color: #FFF;
  display: inline-block;
  margin-right: 1rem;
}
.superhighsummer .faq-box .a {
  padding: 3.5rem 4rem;
  background-color: #FFF;
  border-radius: 0 0 10px 10px;
}
@media (max-width: 767px) {
  .superhighsummer .faq-box .a {
    padding: 2rem 2rem 2rem 3rem;
  }
}
@media (max-width: 575px) {
  .superhighsummer .faq-box .a {
    padding: 1.5rem 2rem;
  }
}
.superhighsummer .schedule-box h3 {
  display: flex;
  padding: 0.5rem 0 0.5rem 0;
  margin: 1rem 0 0 0;
  color: #222;
  font-size: clamp(2rem, 3vw, 2.2rem);
  font-weight: 500;
  align-items: center;
  box-sizing: border-box;
  line-height: 1.5;
}
.superhighsummer .schedule-box h3::before {
  content: "";
  width: 10px;
  background: #FE4675;
  height: 40px;
  margin-right: 1rem;
}
.superhighsummer .schedule-box h3.h3-b::before {
  background: #0084D7;
}
.superhighsummer .schedule-box h3.h3-g::before {
  background: #54BD3F;
}
.superhighsummer .schedule-box .schedule-table {
  padding: 2rem;
  border: solid 1px #FE4675;
  background: #fff;
  box-sizing: border-box;
  font-size: clamp(1.8rem, 3vw, 1.8rem);
}
.superhighsummer .schedule-box .table-b {
  border: 1px solid #113EA4;
}
.superhighsummer .schedule-box .table-g {
  border: 1px solid #54BD3F;
}
.superhighsummer .schedule-box .mod-table {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #113EA4;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.5;
}
.superhighsummer .schedule-box .mod-table dt {
  flex: 0 0 30%;
  margin: 0;
  padding: 12px;
  border-top: 1px solid #113EA4;
  border-right: 1px solid #113EA4;
  color: #113EA4;
  font-weight: 400;
  box-sizing: border-box;
  background: #F0FBFF;
  text-align: left !important;
  font-size: clamp(1.8rem, 3vw, 1.8rem);
}
@media (max-width: 575px) {
  .superhighsummer .schedule-box .mod-table dt {
    flex: 0 0 100%;
    border-right: none;
    text-align: left;
  }
}
.superhighsummer .schedule-box .mod-table dd {
  flex: 0 0 70%;
  margin: 0;
  padding: 1rem 2rem;
  border-top: 1px solid #222;
  background: #fff;
  box-sizing: border-box;
  font-size: clamp(1.8rem, 3vw, 2rem);
}
@media (max-width: 575px) {
  .superhighsummer .schedule-box .mod-table dd {
    flex: 0 0 100%;
    border-right: none;
  }
}
.superhighsummer .schedule-box .mod-table dt:first-of-type,
.superhighsummer .schedule-box .mod-table dd:first-of-type {
  border-top: none;
}
@media (max-width: 575px) {
  .superhighsummer .schedule-box .mod-table .bd-sm {
    border-bottom: 1px solid #113EA4;
  }
}

footer .copyright {
  background: #113EA4;
  color: #fff;
  font-weight: 300;
}
@media (max-width: 1023px) {
  footer .copyright {
    margin: 0 !important;
  }
}

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