@charset "UTF-8";
/* 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-x: hidden;
  overflow-y: auto;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  color: #333333;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", sans-serif;
  line-height: 2;
  font-weight: 400;
  overflow-wrap: break-word;
  word-break: break-word;
  overflow-x: hidden;
  position: relative;
  background: url(../images/bg-body.png) top center repeat, linear-gradient(270deg, #504DA6 0%, #7F87D8 100%);
}
@media (max-width: 1199px) {
  body {
    font-size: 1.5rem;
  }
}

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

/* link
-----------------------------------------------------*/
a {
  text-decoration: none;
  transition: 0.3s linear;
  box-sizing: border-box;
  color: #333333;
}

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

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

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

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

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

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

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

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

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

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

.flex-nowrap {
  flex-wrap: nowrap;
}
@media (max-width: 1599px) {
  .flex-nowrap-xxl {
    flex-wrap: nowrap !important;
  }
}
@media (max-width: 1199px) {
  .flex-nowrap-xl {
    flex-wrap: nowrap !important;
  }
}
@media (max-width: 991px) {
  .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;
}

@media (max-width: 1599px) {
  .fs-10-xxl {
    font-size: 1rem;
  }
  .fs-11-xxl {
    font-size: 1.1rem;
  }
  .fs-12-xxl {
    font-size: 1.2rem;
  }
  .fs-13-xxl {
    font-size: 1.3rem;
  }
  .fs-14-xxl {
    font-size: 1.4rem;
  }
  .fs-15-xxl {
    font-size: 1.5rem;
  }
  .fs-16-xxl {
    font-size: 1.6rem;
  }
  .fs-17-xxl {
    font-size: 1.7rem;
  }
  .fs-18-xxl {
    font-size: 1.8rem;
  }
  .fs-19-xxl {
    font-size: 1.9rem;
  }
  .fs-20-xxl {
    font-size: 2rem;
  }
  .fs-21-xxl {
    font-size: 2.1rem;
  }
  .fs-22-xxl {
    font-size: 2.2rem;
  }
  .fs-23-xxl {
    font-size: 2.3rem;
  }
  .fs-24-xxl {
    font-size: 2.4rem;
  }
  .fs-25-xxl {
    font-size: 2.5rem;
  }
  .fs-26-xxl {
    font-size: 2.6rem;
  }
  .fs-27-xxl {
    font-size: 2.7rem;
  }
  .fs-28-xxl {
    font-size: 2.8rem;
  }
  .fs-29-xxl {
    font-size: 2.9rem;
  }
  .fs-30-xxl {
    font-size: 3rem;
  }
  .fs-31-xxl {
    font-size: 3.1rem;
  }
  .fs-32-xxl {
    font-size: 3.2rem;
  }
  .fs-33-xxl {
    font-size: 3.3rem;
  }
  .fs-34-xxl {
    font-size: 3.4rem;
  }
  .fs-35-xxl {
    font-size: 3.5rem;
  }
  .fs-36-xxl {
    font-size: 3.6rem;
  }
  .fs-37-xxl {
    font-size: 3.7rem;
  }
  .fs-38-xxl {
    font-size: 3.8rem;
  }
  .fs-39-xxl {
    font-size: 3.9rem;
  }
  .fs-40-xxl {
    font-size: 4rem;
  }
  .fs-41-xxl {
    font-size: 4.1rem;
  }
  .fs-42-xxl {
    font-size: 4.2rem;
  }
  .fs-43-xxl {
    font-size: 4.3rem;
  }
  .fs-44-xxl {
    font-size: 4.4rem;
  }
  .fs-45-xxl {
    font-size: 4.5rem;
  }
}
@media (max-width: 1199px) {
  .fs-10-xl {
    font-size: 1rem;
  }
  .fs-11-xl {
    font-size: 1.1rem;
  }
  .fs-12-xl {
    font-size: 1.2rem;
  }
  .fs-13-xl {
    font-size: 1.3rem;
  }
  .fs-14-xl {
    font-size: 1.4rem;
  }
  .fs-15-xl {
    font-size: 1.5rem;
  }
  .fs-16-xl {
    font-size: 1.6rem;
  }
  .fs-17-xl {
    font-size: 1.7rem;
  }
  .fs-18-xl {
    font-size: 1.8rem;
  }
  .fs-19-xl {
    font-size: 1.9rem;
  }
  .fs-20-xl {
    font-size: 2rem;
  }
  .fs-21-xl {
    font-size: 2.1rem;
  }
  .fs-22-xl {
    font-size: 2.2rem;
  }
  .fs-23-xl {
    font-size: 2.3rem;
  }
  .fs-24-xl {
    font-size: 2.4rem;
  }
  .fs-25-xl {
    font-size: 2.5rem;
  }
  .fs-26-xl {
    font-size: 2.6rem;
  }
  .fs-27-xl {
    font-size: 2.7rem;
  }
  .fs-28-xl {
    font-size: 2.8rem;
  }
  .fs-29-xl {
    font-size: 2.9rem;
  }
  .fs-30-xl {
    font-size: 3rem;
  }
  .fs-31-xl {
    font-size: 3.1rem;
  }
  .fs-32-xl {
    font-size: 3.2rem;
  }
  .fs-33-xl {
    font-size: 3.3rem;
  }
  .fs-34-xl {
    font-size: 3.4rem;
  }
  .fs-35-xl {
    font-size: 3.5rem;
  }
  .fs-36-xl {
    font-size: 3.6rem;
  }
  .fs-37-xl {
    font-size: 3.7rem;
  }
  .fs-38-xl {
    font-size: 3.8rem;
  }
  .fs-39-xl {
    font-size: 3.9rem;
  }
  .fs-40-xl {
    font-size: 4rem;
  }
  .fs-41-xl {
    font-size: 4.1rem;
  }
  .fs-42-xl {
    font-size: 4.2rem;
  }
  .fs-43-xl {
    font-size: 4.3rem;
  }
  .fs-44-xl {
    font-size: 4.4rem;
  }
  .fs-45-xl {
    font-size: 4.5rem;
  }
}
@media (max-width: 991px) {
  .fs-10-lg {
    font-size: 1rem;
  }
  .fs-11-lg {
    font-size: 1.1rem;
  }
  .fs-12-lg {
    font-size: 1.2rem;
  }
  .fs-13-lg {
    font-size: 1.3rem;
  }
  .fs-14-lg {
    font-size: 1.4rem;
  }
  .fs-15-lg {
    font-size: 1.5rem;
  }
  .fs-16-lg {
    font-size: 1.6rem;
  }
  .fs-17-lg {
    font-size: 1.7rem;
  }
  .fs-18-lg {
    font-size: 1.8rem;
  }
  .fs-19-lg {
    font-size: 1.9rem;
  }
  .fs-20-lg {
    font-size: 2rem;
  }
  .fs-21-lg {
    font-size: 2.1rem;
  }
  .fs-22-lg {
    font-size: 2.2rem;
  }
  .fs-23-lg {
    font-size: 2.3rem;
  }
  .fs-24-lg {
    font-size: 2.4rem;
  }
  .fs-25-lg {
    font-size: 2.5rem;
  }
  .fs-26-lg {
    font-size: 2.6rem;
  }
  .fs-27-lg {
    font-size: 2.7rem;
  }
  .fs-28-lg {
    font-size: 2.8rem;
  }
  .fs-29-lg {
    font-size: 2.9rem;
  }
  .fs-30-lg {
    font-size: 3rem;
  }
  .fs-31-lg {
    font-size: 3.1rem;
  }
  .fs-32-lg {
    font-size: 3.2rem;
  }
  .fs-33-lg {
    font-size: 3.3rem;
  }
  .fs-34-lg {
    font-size: 3.4rem;
  }
  .fs-35-lg {
    font-size: 3.5rem;
  }
  .fs-36-lg {
    font-size: 3.6rem;
  }
  .fs-37-lg {
    font-size: 3.7rem;
  }
  .fs-38-lg {
    font-size: 3.8rem;
  }
  .fs-39-lg {
    font-size: 3.9rem;
  }
  .fs-40-lg {
    font-size: 4rem;
  }
  .fs-41-lg {
    font-size: 4.1rem;
  }
  .fs-42-lg {
    font-size: 4.2rem;
  }
  .fs-43-lg {
    font-size: 4.3rem;
  }
  .fs-44-lg {
    font-size: 4.4rem;
  }
  .fs-45-lg {
    font-size: 4.5rem;
  }
}
@media (max-width: 767px) {
  .fs-10-md {
    font-size: 1rem;
  }
  .fs-11-md {
    font-size: 1.1rem;
  }
  .fs-12-md {
    font-size: 1.2rem;
  }
  .fs-13-md {
    font-size: 1.3rem;
  }
  .fs-14-md {
    font-size: 1.4rem;
  }
  .fs-15-md {
    font-size: 1.5rem;
  }
  .fs-16-md {
    font-size: 1.6rem;
  }
  .fs-17-md {
    font-size: 1.7rem;
  }
  .fs-18-md {
    font-size: 1.8rem;
  }
  .fs-19-md {
    font-size: 1.9rem;
  }
  .fs-20-md {
    font-size: 2rem;
  }
  .fs-21-md {
    font-size: 2.1rem;
  }
  .fs-22-md {
    font-size: 2.2rem;
  }
  .fs-23-md {
    font-size: 2.3rem;
  }
  .fs-24-md {
    font-size: 2.4rem;
  }
  .fs-25-md {
    font-size: 2.5rem;
  }
  .fs-26-md {
    font-size: 2.6rem;
  }
  .fs-27-md {
    font-size: 2.7rem;
  }
  .fs-28-md {
    font-size: 2.8rem;
  }
  .fs-29-md {
    font-size: 2.9rem;
  }
  .fs-30-md {
    font-size: 3rem;
  }
  .fs-31-md {
    font-size: 3.1rem;
  }
  .fs-32-md {
    font-size: 3.2rem;
  }
  .fs-33-md {
    font-size: 3.3rem;
  }
  .fs-34-md {
    font-size: 3.4rem;
  }
  .fs-35-md {
    font-size: 3.5rem;
  }
  .fs-36-md {
    font-size: 3.6rem;
  }
  .fs-37-md {
    font-size: 3.7rem;
  }
  .fs-38-md {
    font-size: 3.8rem;
  }
  .fs-39-md {
    font-size: 3.9rem;
  }
  .fs-40-md {
    font-size: 4rem;
  }
  .fs-41-md {
    font-size: 4.1rem;
  }
  .fs-42-md {
    font-size: 4.2rem;
  }
  .fs-43-md {
    font-size: 4.3rem;
  }
  .fs-44-md {
    font-size: 4.4rem;
  }
  .fs-45-md {
    font-size: 4.5rem;
  }
}
@media (max-width: 575px) {
  .fs-10-sm {
    font-size: 1rem;
  }
  .fs-11-sm {
    font-size: 1.1rem;
  }
  .fs-12-sm {
    font-size: 1.2rem;
  }
  .fs-13-sm {
    font-size: 1.3rem;
  }
  .fs-14-sm {
    font-size: 1.4rem;
  }
  .fs-15-sm {
    font-size: 1.5rem;
  }
  .fs-16-sm {
    font-size: 1.6rem;
  }
  .fs-17-sm {
    font-size: 1.7rem;
  }
  .fs-18-sm {
    font-size: 1.8rem;
  }
  .fs-19-sm {
    font-size: 1.9rem;
  }
  .fs-20-sm {
    font-size: 2rem;
  }
  .fs-21-sm {
    font-size: 2.1rem;
  }
  .fs-22-sm {
    font-size: 2.2rem;
  }
  .fs-23-sm {
    font-size: 2.3rem;
  }
  .fs-24-sm {
    font-size: 2.4rem;
  }
  .fs-25-sm {
    font-size: 2.5rem;
  }
  .fs-26-sm {
    font-size: 2.6rem;
  }
  .fs-27-sm {
    font-size: 2.7rem;
  }
  .fs-28-sm {
    font-size: 2.8rem;
  }
  .fs-29-sm {
    font-size: 2.9rem;
  }
  .fs-30-sm {
    font-size: 3rem;
  }
  .fs-31-sm {
    font-size: 3.1rem;
  }
  .fs-32-sm {
    font-size: 3.2rem;
  }
  .fs-33-sm {
    font-size: 3.3rem;
  }
  .fs-34-sm {
    font-size: 3.4rem;
  }
  .fs-35-sm {
    font-size: 3.5rem;
  }
  .fs-36-sm {
    font-size: 3.6rem;
  }
  .fs-37-sm {
    font-size: 3.7rem;
  }
  .fs-38-sm {
    font-size: 3.8rem;
  }
  .fs-39-sm {
    font-size: 3.9rem;
  }
  .fs-40-sm {
    font-size: 4rem;
  }
  .fs-41-sm {
    font-size: 4.1rem;
  }
  .fs-42-sm {
    font-size: 4.2rem;
  }
  .fs-43-sm {
    font-size: 4.3rem;
  }
  .fs-44-sm {
    font-size: 4.4rem;
  }
  .fs-45-sm {
    font-size: 4.5rem;
  }
}
.lh-1 {
  line-height: 1.1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

ol {
  padding-left: 1em;
}

.float-l {
  float: left;
}

.float-r {
  float: right;
}

.en, .sec-label, .num-badge, .p-process-contact__tel {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.en-sb {
  font-weight: 600;
}
.en-bd {
  font-weight: 700;
}

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

.line {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #FFF954 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: #575ECF !important;
}

.color-sub {
  color: #5E2879 !important;
}

.color-white {
  color: #fff !important;
}

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

.color-black {
  color: #000 !important;
}

.color-orange {
  color: #ED6F18 !important;
}

.color-red {
  color: #960745 !important;
}

.color-yellow02 {
  color: #FFFF47 !important;
}

.bg-main {
  background: #575ECF !important;
}

.bg-sub {
  background: #5E2879 !important;
}

.bg-white {
  background: #fff !important;
}

.bg-blue01 {
  background: #EFF8FF !important;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

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

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

/* スクリーンリーダー専用（視覚的に非表示・SEOペナルティなし）
   display:none や visibility:hidden と異なり、アクセシビリティ・SEO的に安全
-------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

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

.align-r {
  text-align: right;
}
@media (max-width: 1599px) {
  .align-r-xxl {
    text-align: right !important;
  }
}
@media (max-width: 1199px) {
  .align-r-xl {
    text-align: right !important;
  }
}
@media (max-width: 991px) {
  .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, .header.is-scrolled, .p-about__inner, .thanks__card {
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1599px) {
  .mx-auto-xxl {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (max-width: 1199px) {
  .mx-auto-xl {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (max-width: 991px) {
  .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-5 {
  gap: 0.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1599px) {
  .gap-0-xxl {
    gap: 0rem !important;
  }
  .gap-5-xxl {
    gap: 0.5rem !important;
  }
  .gap-10-xxl {
    gap: 1rem !important;
  }
  .gap-15-xxl {
    gap: 1.5rem !important;
  }
  .gap-20-xxl {
    gap: 2rem !important;
  }
  .gap-25-xxl {
    gap: 2.5rem !important;
  }
  .gap-30-xxl {
    gap: 3rem !important;
  }
  .gap-35-xxl {
    gap: 3.5rem !important;
  }
  .gap-40-xxl {
    gap: 4rem !important;
  }
  .gap-45-xxl {
    gap: 4.5rem !important;
  }
  .gap-50-xxl {
    gap: 5rem !important;
  }
  .gap-60-xxl {
    gap: 6rem !important;
  }
  .gap-70-xxl {
    gap: 7rem !important;
  }
  .gap-80-xxl {
    gap: 8rem !important;
  }
  .gap-100-xxl {
    gap: 10rem !important;
  }
}
@media (max-width: 1199px) {
  .gap-0-xl {
    gap: 0rem !important;
  }
  .gap-5-xl {
    gap: 0.5rem !important;
  }
  .gap-10-xl {
    gap: 1rem !important;
  }
  .gap-15-xl {
    gap: 1.5rem !important;
  }
  .gap-20-xl {
    gap: 2rem !important;
  }
  .gap-25-xl {
    gap: 2.5rem !important;
  }
  .gap-30-xl {
    gap: 3rem !important;
  }
  .gap-35-xl {
    gap: 3.5rem !important;
  }
  .gap-40-xl {
    gap: 4rem !important;
  }
  .gap-45-xl {
    gap: 4.5rem !important;
  }
  .gap-50-xl {
    gap: 5rem !important;
  }
  .gap-60-xl {
    gap: 6rem !important;
  }
  .gap-70-xl {
    gap: 7rem !important;
  }
  .gap-80-xl {
    gap: 8rem !important;
  }
  .gap-100-xl {
    gap: 10rem !important;
  }
}
@media (max-width: 991px) {
  .gap-0-lg {
    gap: 0rem !important;
  }
  .gap-5-lg {
    gap: 0.5rem !important;
  }
  .gap-10-lg {
    gap: 1rem !important;
  }
  .gap-15-lg {
    gap: 1.5rem !important;
  }
  .gap-20-lg {
    gap: 2rem !important;
  }
  .gap-25-lg {
    gap: 2.5rem !important;
  }
  .gap-30-lg {
    gap: 3rem !important;
  }
  .gap-35-lg {
    gap: 3.5rem !important;
  }
  .gap-40-lg {
    gap: 4rem !important;
  }
  .gap-45-lg {
    gap: 4.5rem !important;
  }
  .gap-50-lg {
    gap: 5rem !important;
  }
  .gap-60-lg {
    gap: 6rem !important;
  }
  .gap-70-lg {
    gap: 7rem !important;
  }
  .gap-80-lg {
    gap: 8rem !important;
  }
  .gap-100-lg {
    gap: 10rem !important;
  }
}
@media (max-width: 767px) {
  .gap-0-md {
    gap: 0rem !important;
  }
  .gap-5-md {
    gap: 0.5rem !important;
  }
  .gap-10-md {
    gap: 1rem !important;
  }
  .gap-15-md {
    gap: 1.5rem !important;
  }
  .gap-20-md {
    gap: 2rem !important;
  }
  .gap-25-md {
    gap: 2.5rem !important;
  }
  .gap-30-md {
    gap: 3rem !important;
  }
  .gap-35-md {
    gap: 3.5rem !important;
  }
  .gap-40-md {
    gap: 4rem !important;
  }
  .gap-45-md {
    gap: 4.5rem !important;
  }
  .gap-50-md {
    gap: 5rem !important;
  }
  .gap-60-md {
    gap: 6rem !important;
  }
  .gap-70-md {
    gap: 7rem !important;
  }
  .gap-80-md {
    gap: 8rem !important;
  }
  .gap-100-md {
    gap: 10rem !important;
  }
}
@media (max-width: 575px) {
  .gap-0-sm {
    gap: 0rem !important;
  }
  .gap-5-sm {
    gap: 0.5rem !important;
  }
  .gap-10-sm {
    gap: 1rem !important;
  }
  .gap-15-sm {
    gap: 1.5rem !important;
  }
  .gap-20-sm {
    gap: 2rem !important;
  }
  .gap-25-sm {
    gap: 2.5rem !important;
  }
  .gap-30-sm {
    gap: 3rem !important;
  }
  .gap-35-sm {
    gap: 3.5rem !important;
  }
  .gap-40-sm {
    gap: 4rem !important;
  }
  .gap-45-sm {
    gap: 4.5rem !important;
  }
  .gap-50-sm {
    gap: 5rem !important;
  }
  .gap-60-sm {
    gap: 6rem !important;
  }
  .gap-70-sm {
    gap: 7rem !important;
  }
  .gap-80-sm {
    gap: 8rem !important;
  }
  .gap-100-sm {
    gap: 10rem !important;
  }
}
/* ▼ フェードイン（無効化：アンカーリンク時の白飛び対策）
.fade-in {
	opacity: 0;
	transition: opacity 0.8s ease-out;
}

.fade-in.active {
	opacity: 1;
}

.fade-up {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.active {
	opacity: 1;
	transform: translateY(0);
}
*/
/****************************************

	container

*****************************************/
.container-sm {
  max-width: 640px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .container-sm {
    padding: 0 4rem;
  }
}
@media (max-width: 575px) {
  .container-sm {
    padding: 0 2rem;
  }
}

.container-md {
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .container-md {
    padding: 0 4rem;
  }
}
@media (max-width: 575px) {
  .container-md {
    padding: 0 2rem;
  }
}

.container-lg {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1599px) {
  .container-lg {
    padding: 0 4rem;
  }
}
@media (max-width: 767px) {
  .container-lg {
    padding: 0 4rem;
  }
}
@media (max-width: 575px) {
  .container-lg {
    padding: 0 2rem;
  }
}

.container-xl {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1499px) {
  .container-xl {
    padding: 0 5rem;
  }
}
@media (max-width: 767px) {
  .container-xl {
    padding: 0 4rem;
  }
}
@media (max-width: 575px) {
  .container-xl {
    padding: 0 2rem;
  }
}

/****************************************

	section label / heading

*****************************************/
.sec-label {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #575ECF;
  text-align: center;
}

.sec-heading {
  text-align: center;
}
.sec-heading__title {
  font-size: clamp(2.2rem, 2.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.sec-heading__sub {
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  line-height: 1.8;
  color: #333333;
}

/* セクション共通見出し（Figma: c-heading-bg-text）
   使い方:
   <hgroup class="c-heading-bg-text">
     <p class="c-heading-bg-text__bg en" aria-hidden="true">BG TEXT</p>  ← 省略可
     <p class="c-heading-bg-text__en en">EN LABEL</p>
     <h2 class="c-heading-bg-text__title">タイトル</h2>
   </hgroup>
-------------------------------------------------- */
.c-heading-bg-text {
  position: relative;
  text-align: center;
}
.c-heading-bg-text__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.15);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #C5D3FC;
  opacity: 0.5;
  white-space: nowrap;
  letter-spacing: -2px;
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}
@media (max-width: 991px) {
  .c-heading-bg-text__bg {
    font-size: 12rem;
  }
}
@media (max-width: 575px) {
  .c-heading-bg-text__bg {
    font-size: 8rem;
  }
}
.c-heading-bg-text__en {
  position: relative;
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  font-weight: 700;
  color: #5E2879;
  display: block;
  z-index: 1;
}
.c-heading-bg-text__title {
  position: relative;
  font-size: clamp(2.8rem, 3.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.4;
  color: #333333;
  z-index: 1;
}
.c-heading-bg-text--white .c-heading-bg-text__bg {
  color: rgba(255, 255, 255, 0.15);
}
.c-heading-bg-text--white .c-heading-bg-text__en, .c-heading-bg-text--white .c-heading-bg-text__title {
  color: #fff;
}

/* ▶ 矢印アイコン付き見出し
   使い方: <div class="c-heading-arrow"><p>タイトル</p></div>
-------------------------------------------------- */
.c-heading-arrow {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: clamp(2.2rem, 2.4vw, 2.6rem);
  line-height: 1.4;
  color: #333333;
}
@media (max-width: 575px) {
  .c-heading-arrow {
    font-size: 1.8rem;
  }
}
.c-heading-arrow::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 9.5px solid transparent;
  border-bottom: 9.5px solid transparent;
  border-left: 16px solid #960745;
  flex-shrink: 0;
}

/* 帯状見出し（左端・右下丸）
   使い方: <div class="c-heading-band"><p>タイトル</p></div>
-------------------------------------------------- */
.c-heading-band {
  display: inline-block;
  background-color: #575ECF;
  color: #fff;
  border-radius: 0 0 20px 0;
  font-size: 2.6rem;
  font-weight: 700;
  padding: 1.5rem 2.5rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .c-heading-band {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .c-heading-band {
    font-size: 1.8rem;
  }
}

/* ハイライトラベル（青背景・右下丸）
   使い方: <div class="c-label-highlight">テキスト<span>強調部分</span></div>
   強調テキストは .color-yellow02 で色を変える
-------------------------------------------------- */
.c-label-highlight {
  display: inline-block;
  align-self: flex-start;
  background: #960745;
  color: #fff;
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  font-weight: 700;
  padding: 1.3rem 2rem;
  border-radius: 0 0 30px 0;
  line-height: 1.5;
}

/* アウトラインラベル（枠線のみ）
   使い方: <span class="c-label-outline">テキスト</span>
-------------------------------------------------- */
.c-label-outline {
  display: inline-block;
  align-self: flex-start;
  border: 1px solid #575ECF;
  color: #575ECF;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .c-label-outline {
    font-size: 1.6rem;
  }
}
.c-label-outline--sm {
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
}

/* 番号付き見出し（コンポーネント）
   使い方: <h3 class="c-heading-number" data-num="01">タイトル</h3>
-------------------------------------------------- */
.c-heading-number {
  font-size: 3.2rem;
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-bottom: 1.5rem;
  border-bottom: 4px solid #E0EBF9;
  line-height: 1.4;
}
@media (max-width: 991px) {
  .c-heading-number {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .c-heading-number {
    font-size: 2.6rem;
  }
}
@media (max-width: 575px) {
  .c-heading-number {
    font-size: 2rem;
  }
}
.c-heading-number__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #FFFF47;
  color: #5E2879;
  font-size: 2.8rem;
  font-weight: 600;
  flex-shrink: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1;
}
.c-heading-number::after {
  position: absolute;
  content: "";
  width: 84px;
  left: 0;
  bottom: -4px;
  border-bottom: 4px solid #575ECF;
}
.c-heading-number small {
  font-size: 1.6rem;
}

/* 番号バッジ */
.num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #575ECF;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* オレンジCTAボタン */
.btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: #ED6F18;
  color: #fff;
  font-size: clamp(1.5rem, 1.6vw, 1.8rem);
  font-weight: 700;
  padding: 1.4rem 3rem;
  border-radius: 100px;
  transition: opacity 0.3s, transform 0.3s;
  line-height: 1.4;
}
.btn-orange:hover {
  opacity: 0.85;
  transform: translateY(-2px);
  color: #fff;
}
.btn-orange--lg {
  padding: 1.8rem 4rem;
  font-size: clamp(1.6rem, 1.8vw, 2rem);
}
.btn-orange--free::before {
  content: "無料";
  display: inline-block;
  background: #fff;
  color: #ED6F18;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  line-height: 1.4;
  white-space: nowrap;
}

/* メインCTAボタン */
.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #575ECF;
  color: #fff;
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  font-weight: 700;
  padding: 1.2rem 2.5rem;
  border-radius: 100px;
  transition: opacity 0.3s, transform 0.3s;
}
.btn-main:hover {
  opacity: 0.85;
  transform: translateY(-2px);
  color: #fff;
}

/****************************************

	header

*****************************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease;
}
.header.is-scrolled {
  background: #fff;
}
.header.is-scrolled .header__inner {
  margin: 1rem auto;
  transition: margin 0.3s ease;
}
@media (max-width: 767px) {
  .header.is-scrolled .header__inner {
    margin: 0.5rem auto;
  }
}
.header.is-scrolled .header__logo img {
  height: 55px;
  transition: height 0.3s ease;
}
@media (max-width: 1599px) {
  .header.is-scrolled .header__logo img {
    height: 46px;
  }
}
@media (max-width: 1199px) {
  .header.is-scrolled .header__logo img {
    height: 38px;
  }
}
@media (max-width: 767px) {
  .header.is-scrolled .header__logo img {
    height: 36px;
  }
}
@media (max-width: 575px) {
  .header.is-scrolled .header__logo img {
    height: 9vw;
  }
}
.header.is-scrolled .header__logo {
  background: transparent;
  box-shadow: none;
}
@media (min-width: 992px) {
  .header.is-scrolled .header__nav {
    background: transparent;
    box-shadow: none;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 3rem auto;
  padding: 0 4rem;
  height: 71px;
}
@media (max-width: 1199px) {
  .header__inner {
    margin: 2rem auto;
    padding: 0 2.5rem;
    height: 60px;
  }
}
@media (max-width: 767px) {
  .header__inner {
    margin: 1rem auto;
    padding: 3rem 2rem;
    height: 50px;
  }
}
.header__logo {
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.header__logo a {
  display: block;
}
.header__logo img {
  height: 50px;
  width: auto;
  max-width: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1599px) {
  .header__logo img {
    height: 40px;
  }
}
@media (max-width: 1199px) {
  .header__logo img {
    height: 30px;
  }
}
@media (max-width: 575px) {
  .header__logo img {
    height: 7vw;
  }
}
.header__nav {
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  padding: 2rem 4.1rem;
  display: flex;
  align-items: center;
}
@media (max-width: 1199px) {
  .header__nav {
    padding: 1.5rem 4.1rem;
  }
}
@media (max-width: 991px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    border-radius: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 8rem 3rem 3rem;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 999;
    box-shadow: none;
  }
}
.header__nav.is-open {
  transform: translateX(0);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 1199px) {
  .header__menu {
    gap: 2.3rem;
  }
}
@media (max-width: 991px) {
  .header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
  }
}
.header__menu a {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.016em;
  line-height: normal;
  transition: color 0.2s;
  white-space: nowrap;
}
.header__menu a:hover {
  color: #575ECF;
}
@media (max-width: 991px) {
  .header__menu a {
    font-size: 1.6rem;
    letter-spacing: 0;
  }
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 45px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
@media (max-width: 991px) {
  .header__burger {
    display: flex;
  }
}
.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #575ECF;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.2s;
}
.header__burger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.header__burger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.header__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
}
.header__overlay.is-open {
  display: block;
}

body.is-locked {
  overflow: hidden;
}

[id] {
  scroll-margin-top: 14rem;
}
@media (max-width: 1199px) {
  [id] {
    scroll-margin-top: 12rem;
  }
}
@media (max-width: 767px) {
  [id] {
    scroll-margin-top: 8rem;
  }
}
@media (max-width: 575px) {
  [id] {
    scroll-margin-top: 7rem;
  }
}

/****************************************

	floating CTA

*****************************************/
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  padding: 1.2rem 2rem;
  background: rgba(0, 117, 194, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
}
.floating-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 600px;
  width: 100%;
}

/****************************************

	hero

*****************************************/
@media (max-width: 767px) {
  .hero {
    margin: 0 0 3rem;
  }
}

/****************************************

	p-about

*****************************************/
.p-about {
  padding: 15rem 0;
}
@media (max-width: 767px) {
  .p-about {
    padding: 8rem 0;
  }
}
@media (max-width: 575px) {
  .p-about {
    padding: 5rem 0;
  }
}
.p-about__inner {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 40px;
  padding: 11rem 12rem;
}
@media (max-width: 1199px) {
  .p-about__inner {
    max-width: 960px;
  }
}
@media (max-width: 1199px) {
  .p-about__inner {
    padding: 8rem 6rem;
    border-radius: 28px;
  }
}
@media (max-width: 991px) {
  .p-about__inner {
    padding: 6rem 4rem;
    border-radius: 20px;
    margin: 0 2rem;
  }
}
@media (max-width: 767px) {
  .p-about__inner {
    padding: 4rem 2.5rem;
    border-radius: 16px;
    margin: 0 1.5rem;
  }
}
.p-about__container {
  max-width: 960px;
  margin: 0 auto;
}
.p-about__title {
  font-size: clamp(2.4rem, 4.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 4.7rem;
}
@media (max-width: 767px) {
  .p-about__title {
    margin-bottom: 3rem;
  }
}
@media (max-width: 575px) {
  .p-about__title {
    font-size: 6vw;
  }
}
.p-about__title .sub {
  font-size: clamp(2.4rem, 3vw, 4.8rem);
}
.p-about__problems {
  background: #EFF8FF;
  border-radius: 10px;
  padding: 3rem 3.9rem 3rem 6.6rem;
  margin-bottom: 4.7rem;
}
@media (max-width: 767px) {
  .p-about__problems {
    padding: 2rem 2rem 2rem 3.5rem;
    margin-bottom: 3rem;
  }
}
.p-about__problems li {
  list-style: disc;
  font-size: clamp(1.4rem, 1.6vw, 1.8rem);
  line-height: 1.9;
}
.p-about__problems li + li {
  margin-top: 0.6rem;
}
.p-about__text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.1rem;
}
.p-about__catch {
  font-size: clamp(2rem, 2.2vw, 2.4rem);
  font-weight: 700;
  color: #575ECF;
  text-align: center;
  line-height: 1.5;
}
.p-about__arrow {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.p-about__arrow svg {
  display: block;
  flex-shrink: 0;
}
.p-about__message {
  position: relative;
  padding: 0 3rem;
  text-align: center;
  width: 100%;
}
.p-about__message::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 15px;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
}
.p-about__message::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 15px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}
.p-about__message-text {
  font-size: clamp(1.8rem, 2.4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.6;
  color: #333333;
}
.p-about__body {
  font-size: clamp(1.5rem, 1.8vw, 2rem);
  font-weight: 700;
  line-height: 2;
}

/****************************************

	p-program

*****************************************/
.p-program {
  background: #fff;
  padding-left: 20rem;
  padding-right: 20rem;
}
@media (max-width: 1599px) {
  .p-program {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media (max-width: 767px) {
  .p-program {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.p-program {
  /* ① リード */
}
.p-program__lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5.4rem;
  margin-bottom: 9rem;
}
@media (max-width: 767px) {
  .p-program__lead {
    gap: 3rem;
    margin-bottom: 6rem;
  }
}
.p-program__heading-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-program__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20rem;
  font-weight: 700;
  color: #EFF8FF;
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -2px;
  line-height: 1;
}
@media (max-width: 991px) {
  .p-program__bg-text {
    font-size: 12rem;
  }
}
@media (max-width: 575px) {
  .p-program__bg-text {
    font-size: 7rem;
  }
}
.p-program__heading {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding: 0 31.5rem;
}
@media (max-width: 991px) {
  .p-program__heading {
    padding: 5rem 2rem;
  }
}
.p-program__heading-en {
  font-size: 2rem;
  font-weight: 700;
  color: #575ECF;
  letter-spacing: 0.08em;
}
.p-program__heading-title {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333333;
}
@media (max-width: 767px) {
  .p-program__heading-title {
    font-size: 3.2rem;
  }
}
.p-program__lead-text {
  line-height: 1.8;
  text-align: center;
  color: #000;
}
@media (max-width: 767px) {
  .p-program__lead-text {
    font-size: 1.4rem;
    text-align: left;
  }
}
.p-program__fee {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EFF8FF;
  border-radius: 5px;
  padding: 1rem;
  width: 400px;
}
@media (max-width: 575px) {
  .p-program__fee {
    width: 100%;
  }
}
.p-program__fee p {
  font-size: clamp(2rem, 2.2vw, 2.4rem);
  font-weight: 700;
  color: #ED6F18;
  text-align: center;
  line-height: 1.8;
}
.p-program {
  /* ② プランカード */
}
.p-program__plans {
  display: flex;
  gap: 2.8rem;
  margin-bottom: 12rem;
  align-items: stretch;
  padding-top: 3rem;
}
@media (max-width: 991px) {
  .p-program__plans {
    flex-direction: column;
    gap: 5rem;
  }
}
@media (max-width: 767px) {
  .p-program__plans {
    margin-bottom: 6rem;
  }
}
.p-program__card {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  width: 380px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .p-program__card {
    width: 100%;
  }
}
.p-program__card--wide {
  flex: 1;
  width: auto;
}
.p-program__card-header {
  position: relative;
  background: #575ECF;
  background: linear-gradient(270deg, #4F4CA6 0%, #5D67CC 100%);
  margin: 1rem 1rem 0;
  padding: 3rem 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 122px;
  border-radius: 25px 25px 0 0;
}
@media (max-width: 991px) {
  .p-program__card-header {
    min-height: auto;
  }
}
.p-program__card-num {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #FFFF47;
  color: #5E2879;
  font-size: clamp(2.4rem, 2.6vw, 2.8rem);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
@media (max-width: 991px) {
  .p-program__card-num {
    top: -40px;
  }
}
.p-program__card-title {
  font-size: clamp(2rem, 2.2vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.32;
}
.p-program__card-body {
  padding: 3rem 5rem 5rem;
  display: flex;
  flex-direction: column;
  row-gap: clamp(2rem, 2.5vw, 3rem);
  flex: 1;
}
@media (max-width: 767px) {
  .p-program__card-body {
    padding: 2rem 2rem 4rem;
  }
}
.p-program__card-date {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.8rem;
  color: #575ECF;
  font-weight: 700;
}
.p-program__card-date-label {
  line-height: 2;
}
.p-program__card-date-value {
  line-height: 2;
}
.p-program__card-date-big {
  font-size: 3.6rem;
  font-style: normal;
  line-height: 1;
}
.p-program__card-tags {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.p-program__card-tag {
  display: inline-block;
  align-self: flex-start;
  border: 1px solid #575ECF;
  color: #575ECF;
  font-weight: 700;
  padding: 0.8rem 1.5rem;
  line-height: 1.5;
}
.p-program__card-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.p-program__card-row-label {
  font-weight: 700;
  color: #575ECF;
  line-height: 1.6;
}
.p-program__card-row-value {
  font-weight: 400;
  line-height: 1.8;
  color: #333333;
}
.p-program__card-row-value p {
  font-size: 1.5rem;
}
.p-program__card-row-value p + p {
  margin-top: 0.5rem;
}
.p-program__card-text {
  line-height: 1.8;
  color: #333333;
}
.p-program__card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #F87318 0%, #FFA81C 100%), linear-gradient(90deg, #F87318 0%, #ED9B18 100%);
  color: #fff;
  font-size: clamp(1.6rem, 1.7vw, 1.8rem);
  font-weight: 700;
  padding: 1rem 4rem;
  border-radius: 999px;
  line-height: 1.8;
  transition: opacity 0.3s;
}
.p-program__card-btn:hover {
  opacity: 0.85;
  color: #fff;
}
.p-program__card--wide .p-program__card-btn {
  width: 300px;
  align-self: center;
}
.p-program__divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0;
}
.p-program {
  /* ③ コンテンツ詳細 */
}
.p-program__contents {
  display: flex;
  flex-direction: column;
  gap: 10rem;
}
@media (max-width: 767px) {
  .p-program__contents {
    gap: 6rem;
  }
}
.p-program__block {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (max-width: 767px) {
  .p-program__block {
    gap: 3rem;
  }
}
.p-program__block--02 {
  gap: 5rem;
}
@media (max-width: 767px) {
  .p-program__block--02 {
    gap: 3.5rem;
  }
}
.p-program__block--03 {
  gap: 5.5rem;
}
@media (max-width: 767px) {
  .p-program__block--03 {
    gap: 3.5rem;
  }
}
.p-program__block-group {
  display: flex;
  flex-direction: column;
}
.p-program__block-group--40 {
  gap: 4rem;
}
.p-program__block-group--25 {
  gap: 2.5rem;
}
.p-program__block-group--30 {
  gap: 3rem;
}
.p-program__block-group--35 {
  gap: 3.5rem;
}
.p-program {
  /* 番号付き見出し → .c-heading-number コンポーネントを使用 */
  /* イントロ帯（黄色背景） */
}
.p-program__intro-band {
  background: #EFF8FF;
  padding: 3.5rem 1rem;
  text-align: center;
}
.p-program__intro-band-sub {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 0.2rem;
}
.p-program__intro-band-main {
  font-size: clamp(1.8rem, 2.2vw, 2.8rem);
  font-weight: 700;
  color: #575ECF;
  line-height: 1.8;
}
.p-program {
  /* キャッチ文 */
}
.p-program__catch-text {
  text-align: center;
  font-size: clamp(1.8rem, 2vw, 2.2rem);
  font-weight: 700;
  line-height: 1.8;
}
.p-program {
  /* 本文 */
}
.p-program__body-text {
  font-weight: 400;
  line-height: 1.8;
  color: #333333;
}
.p-program {
  /* 見出しバンド → .c-heading-band コンポーネントを使用 */
  /* 講師プロフィール */
}
.p-program__profile {
  display: flex;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 991px) {
  .p-program__profile {
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .p-program__profile {
    flex-direction: column;
    gap: 2rem;
  }
}
.p-program__profile-photo {
  flex-shrink: 0;
  width: 280px;
  margin-inline: auto;
}
@media (max-width: 575px) {
  .p-program__profile-photo {
    width: 50%;
  }
}
.p-program__profile-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.p-program__profile-text {
  flex: 1;
}
.p-program__profile-header {
  margin-bottom: 2rem;
}
.p-program__profile-name {
  font-size: clamp(2rem, 2.2vw, 2.4rem);
  font-weight: 700;
  line-height: 1.8;
}
.p-program__profile-role {
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  font-weight: 700;
  line-height: 1.8;
}
.p-program__profile-bio {
  font-size: 1.5rem;
  line-height: 2;
}
.p-program {
  /* テーブル */
}
.p-program__table {
  width: 100%;
}
.p-program__table th,
.p-program__table td {
  border: 1px solid rgba(204, 204, 204, 0.8);
  padding: 2.5rem;
  font-size: clamp(1.5rem, 1.6vw, 1.7rem);
  line-height: 1.8;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .p-program__table th,
  .p-program__table td {
    padding: 1.2rem 1.5rem;
  }
}
@media (max-width: 575px) {
  .p-program__table th,
  .p-program__table td {
    font-size: 1.5rem;
  }
}
.p-program__table th {
  background: #575ECF;
  color: #fff;
  font-weight: 700;
  width: 164px;
  white-space: nowrap;
  text-align: left;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .p-program__table th {
    width: auto;
    display: block;
    border: none;
  }
}
@media (max-width: 767px) {
  .p-program__table td {
    display: block;
    border: none;
  }
}
@media (max-width: 767px) {
  .p-program__table tr {
    display: block;
    border: 1px solid rgba(204, 204, 204, 0.8);
  }
  .p-program__table tr + tr {
    border-top: none;
  }
}
.p-program {
  /* テーブル内サブブロック → p-table-venue に移行 */
  /* ol */
}
.p-program__ol {
  list-style: decimal;
  margin-bottom: 2rem;
  padding-left: 1.5em;
}
.p-program__ol li {
  font-size: clamp(1.5rem, 1.6vw, 1.7rem);
  line-height: 1.8;
  margin-bottom: 0;
}
.p-program {
  /* 注意書きボックス（Figma: 287:1076） */
}
.p-program__info-box {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 4rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 767px) {
  .p-program__info-box {
    padding: 3rem 2rem;
  }
}
.p-program__info-box-title {
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  font-weight: 700;
  line-height: 1.8;
  color: #333333;
}
.p-program__info-box-body {
  display: flex;
  flex-direction: column;
}
.p-program__info-box-body p {
  font-weight: 400;
  line-height: 1.8;
  color: #333333;
}
.p-program {
  /* 矢印見出し → .c-heading-arrow コンポーネントを使用 */
  /* STEPボックス */
}
.p-program__step-box {
  background: #EFF8FF;
  padding: 5rem 6rem;
  display: flex;
  flex-direction: column;
  gap: 2.3rem;
}
@media (max-width: 767px) {
  .p-program__step-box {
    padding: 3rem 2rem;
  }
}
.p-program__step {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.p-program__step-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.p-program__step-label {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  background: #575ECF;
  color: #fff;
  font-size: 1.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  padding: 0.2rem 1rem;
  line-height: normal;
}
.p-program__step-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #575ECF;
  line-height: 1.5;
}
.p-program__step-text {
  line-height: 1.8;
  color: #333333;
}
.p-program {
  /* メリットボックス */
}
.p-program__merit-box {
  background: #EFF8FF;
  padding: 5rem 6rem;
}
@media (max-width: 767px) {
  .p-program__merit-box {
    padding: 3rem 2rem;
  }
}
.p-program__merit-list {
  list-style: disc;
  padding-left: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.p-program__merit-list li::marker {
  color: #575ECF;
}
.p-program__merit-list li {
  line-height: 1.8;
  margin-bottom: 2rem;
}
.p-program__merit-list li:last-child {
  margin-bottom: 0;
}
.p-program {
  /* ハイライトラベル → .c-label-highlight コンポーネントを使用 */
  /* アウトラインラベル → .c-label-outline コンポーネントを使用 */
  /* ラインナップ 2カラム */
}
.p-program__lineup {
  display: flex;
  gap: 10rem;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .p-program__lineup {
    flex-direction: column;
    gap: 4rem;
  }
}
.p-program__lineup-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.p-program__lineup-category {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.p-program__lineup-category-title {
  font-size: clamp(1.7rem, 1.85vw, 2rem);
  font-weight: 700;
  line-height: 1.8;
  color: #333333;
}
.p-program__lineup-list {
  list-style: none;
}
.p-program__lineup-list li {
  line-height: 1.5;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1em;
}
.p-program__lineup-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  font-size: 0.6em;
  top: 0.55rem;
  color: #333333;
}
.p-program__lineup-list li:last-child {
  margin-bottom: 0;
}
.p-program__lineup-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
}
.p-program__lineup-tags span {
  line-height: 1.5;
  padding-left: 1em;
  position: relative;
}
.p-program__lineup-tags span::before {
  content: "●";
  position: absolute;
  left: 0;
  font-size: 0.6em;
  top: 0.55rem;
  color: #333333;
}
.p-program__lineup-media {
  flex-shrink: 0;
  width: 378px;
}
@media (max-width: 991px) {
  .p-program__lineup-media {
    width: 100%;
    max-width: 378px;
    margin-inline: auto;
  }
}
.p-program__lineup-media-img {
  width: 100%;
  height: auto;
  aspect-ratio: 378/349;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

/****************************************

	p-case（昨年度実績）

*****************************************/
.p-case .container-lg {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (max-width: 767px) {
  .p-case .container-lg {
    gap: 3rem;
  }
}
.p-case__heading {
  text-align: center;
}
.p-case__heading-en {
  font-size: 2rem;
  font-weight: 700;
  color: #575ECF;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  display: block;
}
.p-case__heading-title {
  font-size: clamp(2.8rem, 3.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.4;
  color: #333333;
}
.p-case__lead {
  font-weight: 400;
  line-height: 1.8;
  color: #333333;
  text-align: center;
}
@media (max-width: 767px) {
  .p-case__lead {
    text-align: left;
    font-size: 1.5rem;
  }
}

/* 参加形式セル内レイアウト（Figma: 287:1060）
   td 内で現地参加/オンライン参加をラベル付きで表示
-------------------------------------------------- */
/* スケジュールリスト
   時刻と内容を flex で並べ、複数行でも時刻に揃う
   使い方: <ul class="p-schedule-list">
            <li><span class="p-schedule-list__time">13:30</span><span>内容</span></li>
           </ul>
-------------------------------------------------- */
.p-schedule-list {
  list-style: none;
  margin-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.p-schedule-list li {
  display: flex;
  gap: 1em;
  line-height: 1.8;
}
.p-schedule-list__time {
  flex-shrink: 0;
  min-width: 3.5em;
}

.p-table-venue {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.p-table-venue__lead {
  font-size: clamp(1.5rem, 1.6vw, 1.7rem);
  font-weight: 400;
  line-height: 1.8;
  color: #333333;
}
.p-table-venue__groups {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.p-table-venue__group {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.p-table-venue__detail {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.p-table-venue__detail p {
  font-size: clamp(1.5rem, 1.6vw, 1.7rem);
  font-weight: 400;
  line-height: 1.8;
  color: #333333;
  white-space: pre-wrap;
}
.p-table-venue__place {
  display: flex;
  gap: 0;
}
.p-table-venue__place-label {
  flex-shrink: 0;
}
.p-table-venue__place-body {
  flex: 1;
}
.p-table-venue__detail-text {
  font-size: clamp(1.5rem, 1.6vw, 1.7rem);
  font-weight: 400;
  line-height: 1.8;
  color: #333333;
}
.p-table-venue__link {
  color: #575ECF;
  text-decoration: underline;
  text-decoration-color: #575ECF;
}
.p-table-venue__link:hover {
  opacity: 0.8;
  color: #575ECF;
}

.p-case-download {
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
  padding: 6rem 8rem;
  display: flex;
  align-items: center;
  gap: 7.8rem;
}
@media (max-width: 991px) {
  .p-case-download {
    gap: 4rem;
    padding: 5rem 5rem;
  }
}
@media (max-width: 767px) {
  .p-case-download {
    flex-direction: column;
    padding: 4rem 2rem;
    gap: 3rem;
    border-radius: 20px;
  }
}
.p-case-download__book {
  flex-shrink: 0;
  width: 212px;
}
@media (max-width: 767px) {
  .p-case-download__book {
    width: 160px;
  }
}
.p-case-download__book img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 4px 11px rgba(0, 0, 0, 0.13);
}
.p-case-download__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.p-case-download__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.p-case-download__title {
  font-size: clamp(2rem, 2.2vw, 2.4rem);
  font-weight: 700;
  line-height: 1.6;
  color: #333333;
}
.p-case-download__desc {
  font-weight: 400;
  line-height: 1.8;
  color: #333333;
}
.p-case-download__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: linear-gradient(to right, #FF6C04, #FF8A04);
  color: #fff;
  font-size: clamp(1.6rem, 1.7vw, 1.8rem);
  font-weight: 700;
  padding: 2rem 4rem;
  border-radius: 999px;
  line-height: 1.5;
  align-self: flex-start;
  margin-top: 1.5rem;
  transition: opacity 0.3s, transform 0.3s;
}
@media (max-width: 991px) {
  .p-case-download__btn {
    padding: 2rem 3rem;
  }
}
@media (max-width: 767px) {
  .p-case-download__btn {
    width: 100%;
    align-self: auto;
    font-size: 1.6rem;
    padding: 2.2rem 2rem 1.8rem 2rem;
    text-align: center;
  }
}
.p-case-download__btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
  color: #fff;
}
.p-case-download__btn-inner {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 767px) {
  .p-case-download__btn-inner {
    transform: translateX(5px);
  }
}
.p-case-download__btn-inner svg {
  flex-shrink: 0;
}
.p-case-download__btn-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 2px solid #ED6F18;
  color: #ED6F18;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0.3rem 2.5rem;
  border-radius: 999px;
  white-space: nowrap;
  line-height: normal;
}

/****************************************

	p-process（お申し込み方法）

*****************************************/
.p-process {
  background: #F5F4EF;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(4rem, 5.5vw, 7rem);
}
.p-process__heading-area {
  position: relative;
  text-align: center;
  width: 100%;
  padding-top: 8rem;
  padding-bottom: 2rem;
}
.p-process__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20rem;
  font-weight: 700;
  color: #575ECF;
  opacity: 0.05;
  white-space: nowrap;
  letter-spacing: -2px;
  pointer-events: none;
  line-height: 1;
}
@media (max-width: 991px) {
  .p-process__bg-text {
    font-size: 13rem;
  }
}
@media (max-width: 575px) {
  .p-process__bg-text {
    font-size: 8rem;
  }
}
.p-process__heading-en {
  font-size: 2rem;
  font-weight: 700;
  color: #575ECF;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 1rem;
  position: relative;
}
.p-process__heading-title {
  font-size: clamp(3.2rem, 4vw, 4.8rem);
  font-weight: 700;
  line-height: 1.4;
  color: #333333;
  position: relative;
}
.p-process__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (max-width: 767px) {
  .p-process__body {
    gap: 3rem;
  }
}

.p-process-entry {
  background: linear-gradient(270deg, #706CEB 0%, #7A85F6 100%);
  border-radius: 40px;
  padding: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  min-height: 252px;
  justify-content: center;
}
@media (max-width: 767px) {
  .p-process-entry {
    padding: 4rem 2rem;
    border-radius: 20px;
    min-height: auto;
  }
}
.p-process-entry__lead {
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.8;
}
.p-process-entry__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(90deg, #F87318 0%, #FFA81C 100%);
  color: #fff;
  font-size: clamp(1.6rem, 1.7vw, 1.8rem);
  font-weight: 700;
  padding: 2rem 4rem;
  border-radius: 999px;
  line-height: 1.5;
  transition: opacity 0.3s, transform 0.3s;
}
.p-process-entry__btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
  color: #fff;
}
@media (max-width: 575px) {
  .p-process-entry__btn {
    justify-content: center;
    width: 100%;
    padding: 2rem 2rem 1.8rem 2rem;
  }
}
.p-process-entry__btn-free {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #ED6F18;
  font-size: clamp(1.4rem, 1.55vw, 1.7rem);
  font-weight: 700;
  padding: 0.4rem 1.8rem;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .p-process-entry__btn-free {
    padding: 0.4rem 1.5rem;
  }
}
@media (max-width: 575px) {
  .p-process-entry__btn-free {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid #FF6C02;
    padding: 0.3rem 2.5rem;
  }
}
.p-process-entry__btn-arrow {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.p-process-contact {
  position: relative;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  padding: 5rem;
}
@media (max-width: 767px) {
  .p-process-contact {
    padding: 4rem 3rem;
    border-radius: 20px;
  }
}
.p-process-contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-process-contact__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.p-process-contact__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #333333;
  text-align: center;
  line-height: 1.8;
}
.p-process-contact__line {
  width: 50px;
  height: 3px;
  background: #575ECF;
  border-radius: 2px;
}
.p-process-contact__txt {
  font-weight: 700;
}
.p-process-contact__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.p-process-contact__tel {
  font-size: clamp(3.2rem, 4.5vw, 4.8rem);
  font-weight: 700;
  color: #575ECF;
  line-height: 1;
  text-align: center;
}
.p-process-contact__tel a {
  color: #575ECF;
}
.p-process-contact__mail {
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  font-weight: 700;
  color: #575ECF;
  text-align: center;
}
.p-process-contact__mail a {
  color: #575ECF;
}
.p-process-contact__hours {
  font-size: clamp(2rem, 2.2vw, 2.4rem);
  font-weight: 700;
  color: #333333;
  text-align: center;
  line-height: 1.5;
}
.p-process-contact__char {
  position: absolute;
  bottom: 5rem;
  width: 136px;
  height: auto;
}
@media (max-width: 767px) {
  .p-process-contact__char {
    display: none;
  }
}
.p-process-contact__char--left {
  left: 8%;
}
.p-process-contact__char--right {
  right: 8%;
}

.p-process-notes {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.p-process-notes__title-wrap {
  border-bottom: 1px solid #000;
  padding-bottom: 1rem;
}
.p-process-notes__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.8;
}
.p-process-notes__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.p-process-notes__content p {
  font-weight: 400;
  line-height: 1.8;
  color: #333333;
}

/****************************************

	p-faq（よくあるご質問）

*****************************************/
.p-faq__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 7.4rem;
}
@media (max-width: 767px) {
  .p-faq__body {
    gap: 5rem;
  }
}
.p-faq__list {
  display: flex;
  flex-direction: column;
  row-gap: clamp(2rem, 2.2vw, 2.5rem);
}
.p-faq__item {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .p-faq__item {
    padding: 3rem 2.5rem;
    border-radius: 20px;
    gap: 1.5rem;
  }
}
.p-faq__question {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  padding-bottom: clamp(1.5rem, 1.7vw, 2rem);
  border-bottom: 1px solid rgba(204, 204, 204, 0.8);
}
.p-faq__answer {
  display: flex;
  align-items: flex-start;
  gap: 1.7rem;
}
.p-faq__q {
  font-size: 3.2rem;
  font-weight: 700;
  color: #575ECF;
  line-height: 1;
  flex-shrink: 0;
}
.p-faq__a {
  font-size: 3.2rem;
  font-weight: 700;
  color: #ED6F18;
  line-height: 1;
  flex-shrink: 0;
}
.p-faq__question-text {
  flex: 1;
  font-size: clamp(1.6rem, 1.7vw, 1.8rem);
  font-weight: 700;
  color: #333333;
  line-height: 1.6;
}
.p-faq__answer-text {
  flex: 1;
  font-weight: 400;
  color: #333333;
  line-height: 1.8;
}

/****************************************

	footer

*****************************************/
.footer {
  background: #fff;
  padding-top: 7rem;
  padding-bottom: 13.5rem;
}
@media (max-width: 767px) {
  .footer {
    padding-top: 5rem;
    padding-bottom: 10rem;
  }
}
.footer__container {
  width: 100%;
  display: flex;
  gap: 10.5rem;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .footer__container {
    flex-direction: column;
    gap: 3rem;
  }
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer__info-label {
  font-weight: 700;
  line-height: 1.5;
  color: #333333;
}
.footer__info-text p {
  font-weight: 400;
  line-height: 1.5;
  color: #333333;
}
.footer__link {
  color: #333333;
}
.footer__link:hover {
  color: #575ECF;
}

/* ========================================
  floating-btn（固定底辺CTA）
  Figma: 220:2170
======================================== */
@keyframes shimmer {
  0% {
    left: -140px;
    opacity: 0;
  }
  3% {
    opacity: 1;
  }
  11% {
    left: 110%;
    opacity: 0;
  }
  100% {
    left: 110%;
    opacity: 0;
  }
}
.floating-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 900;
}
.floating-btn__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  background: linear-gradient(to right, #F87318, #FFA81C);
  color: #fff;
  font-size: clamp(1.6rem, 1.7vw, 1.8rem);
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  overflow: hidden;
  transition: opacity 0.3s;
}
.floating-btn__inner:hover {
  opacity: 0.9;
  color: #fff;
}
.floating-btn__inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: -240px;
  width: 240px;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.85) 50%, transparent 100%);
  transform: skewX(-60deg);
  animation: shimmer 3.5s linear 0.3s infinite;
}
@media (max-width: 767px) {
  .floating-btn__inner {
    padding: 1.6rem 1.5rem;
  }
}
.floating-btn__free {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #ED6F18;
  font-size: clamp(1.4rem, 1.55vw, 1.7rem);
  font-weight: 700;
  padding: 0.4rem 1.8rem;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: normal;
}
@media (max-width: 767px) {
  .floating-btn__free {
    padding: 0.4rem 1.5rem;
  }
}
.floating-btn__arrow {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  flex-shrink: 0;
}

/****************************************

	セクション余白

*****************************************/
.area-wrap-margin-01 {
  margin: 9rem 0;
}
@media (max-width: 767px) {
  .area-wrap-margin-01 {
    margin: 6rem 0;
  }
}
@media (max-width: 575px) {
  .area-wrap-margin-01 {
    margin: 4rem 0;
  }
}

.area-wrap-padding-01 {
  padding: 9rem 0;
}
@media (max-width: 767px) {
  .area-wrap-padding-01 {
    padding: 6rem 0;
  }
}
@media (max-width: 575px) {
  .area-wrap-padding-01 {
    padding: 4rem 0;
  }
}

/* セクション共通の上下padding（150px）
   各 <section> に .sec-wrap を付けて使う
-------------------------------------------------- */
.sec-wrap {
  padding: 15rem 0;
}
@media (max-width: 991px) {
  .sec-wrap {
    padding: 10rem 0;
  }
}
@media (max-width: 767px) {
  .sec-wrap {
    padding: 8rem 0;
  }
}
@media (max-width: 575px) {
  .sec-wrap {
    padding: 6rem 0;
  }
}

/****************************************

	thanks ページ

*****************************************/
.thanks-page {
  background-color: #504DA6;
  background: url(../images/bg-body.png) top center repeat, linear-gradient(270deg, #504DA6 0%, #7F87D8 100%);
  min-height: 100svh;
}
@media (max-width: 575px) {
  .thanks-page {
    background-size: 200% auto, 100% 100%;
  }
}

.thanks {
  max-width: 1200px;
  margin: 0 auto;
  padding: 9rem 2rem 12rem;
  display: flex;
  flex-direction: column;
  gap: 5.7rem;
}
@media (max-width: 767px) {
  .thanks {
    padding: 6rem 2rem 10rem;
    gap: 4rem;
  }
}
.thanks__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.thanks__label {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .thanks__label {
    font-size: 1.5rem;
  }
}
.thanks__title {
  font-size: clamp(3rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}
.thanks__card {
  background: #fff;
  border-radius: 40px;
  padding: 11rem 12rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (max-width: 991px) {
  .thanks__card {
    padding: 7rem 6rem;
  }
}
@media (max-width: 767px) {
  .thanks__card {
    padding: 5rem 3rem;
    border-radius: 20px;
  }
}
@media (max-width: 575px) {
  .thanks__card {
    padding: 4rem 2rem;
    border-radius: 16px;
  }
}
.thanks__greeting {
  line-height: 1.8;
}
.thanks__section {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 2.5vw, 3rem);
}
.thanks__section ul {
  padding-left: 2.4rem;
}
.thanks__section ul li {
  line-height: 1.8;
}
.thanks__section ul li + li {
  margin-top: 0.6rem;
}
.thanks__section p {
  line-height: 1.8;
}
.thanks__info {
  background: #EFF8FF;
  padding: 3rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .thanks__info {
    padding: 2rem;
  }
}/*# sourceMappingURL=style.css.map */