@charset "UTF-8";
/* font
-----------------------------------------------------*/
/* sans-serif */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2"), url("../fonts/NotoSansJP-Regular.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: bold;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/NotoSansJP-Bold.woff2") format("woff2"), url("../fonts/NotoSansJP-Bold.woff") format("woff");
}
/* serif */
@font-face {
  font-family: "Noto Serif CJK JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSerifCJKjp-Regular.woff") format("woff");
}
@font-face {
  font-family: "Noto Serif CJK JP";
  font-style: bold;
  font-weight: 700;
  src: url("../fonts/NotoSerifCJKjp-Bold.woff") format("woff");
}
/* mixin var
-----------------------------------------------------*/
/* reset
-----------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

img {
  vertical-align: top;
}

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

body {
  line-height: 1;
}

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

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

del {
  text-decoration: line-through;
}

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

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc !important;
  margin: 0;
  padding: 0;
}

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

body {
  color: #333;
  /*font: 1.6rem/1.8 YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;*/
  font: 1.6rem/1.8 "Noto Sans JP", sans-serif;
  font-weight: 400;
  overflow-wrap: break-word;
  word-break: break-word;
  overflow: hidden;
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
    font-weight: 400;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {
  .lh-1-xl {
    line-height: 1.1 !important;
  }
  .lh-2-xl {
    line-height: 1.2 !important;
  }
  .lh-3-xl {
    line-height: 1.3 !important;
  }
  .lh-4-xl {
    line-height: 1.4 !important;
  }
  .lh-5-xl {
    line-height: 1.5 !important;
  }
  .lh-6-xl {
    line-height: 1.6 !important;
  }
}
@media (max-width: 1350px) {
  .lh-1-ex {
    line-height: 1.1 !important;
  }
  .lh-2-ex {
    line-height: 1.2 !important;
  }
  .lh-3-ex {
    line-height: 1.3 !important;
  }
  .lh-4-ex {
    line-height: 1.4 !important;
  }
  .lh-5-ex {
    line-height: 1.5 !important;
  }
  .lh-6-ex {
    line-height: 1.6 !important;
  }
}
@media (max-width: 1023px) {
  .lh-1-lg {
    line-height: 1.1 !important;
  }
  .lh-2-lg {
    line-height: 1.2 !important;
  }
  .lh-3-lg {
    line-height: 1.3 !important;
  }
  .lh-4-lg {
    line-height: 1.4 !important;
  }
  .lh-5-lg {
    line-height: 1.5 !important;
  }
  .lh-6-lg {
    line-height: 1.6 !important;
  }
}
@media (max-width: 767px) {
  .lh-1-md {
    line-height: 1.1 !important;
  }
  .lh-2-md {
    line-height: 1.2 !important;
  }
  .lh-3-md {
    line-height: 1.3 !important;
  }
  .lh-4-md {
    line-height: 1.4 !important;
  }
  .lh-5-md {
    line-height: 1.5 !important;
  }
  .lh-6-md {
    line-height: 1.6 !important;
  }
}
@media (max-width: 575px) {
  .lh-1-sm {
    line-height: 1.1 !important;
  }
  .lh-2-sm {
    line-height: 1.2 !important;
  }
  .lh-3-sm {
    line-height: 1.3 !important;
  }
  .lh-4-sm {
    line-height: 1.4 !important;
  }
  .lh-5-sm {
    line-height: 1.5 !important;
  }
  .lh-6-sm {
    line-height: 1.6 !important;
  }
}
/*utility
-----------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
}

ol {
  padding-left: 1em;
}

.float-l {
  float: left;
}

.float-r {
  float: right;
}

.orange {
  color: #f08200;
}

.en {
  font-family: "Unbounded", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
}

.mincho {
  font: 1.6rem/1.8 "Noto Serif CJK JP", serif;
}

.gothic, .wpcf7-form button,
.wpcf7-form input[type=text],
.wpcf7-form input[type=email],
.wpcf7-form input[type=url],
.wpcf7-form input[type=tel],
.wpcf7-form input[type=password],
.wpcf7-form textarea,
.wpcf7-form input[type=submit],
.wpcf7-form input[type=button],
.wpcf7-form input[type=reset] {
  font: 1.6rem/1.8 "Noto Sans JP", sans-serif;
}

.open-sans {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

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

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

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

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

.color-main {
  color: #007B7B !important;
}

.color-accent01 {
  color: #0058A7 !important;
}

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

.color-white {
  color: #fff;
}

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

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

.bold, .page-header .page-title .heading, .cat-header, .main-v__catch, .main-v__free, .p-support__step__num, .p-support__step__heading, .p-support__step__last, .p-literacy__curric {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

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

.align-c, .post-pager a, .main-v__free, .p-support__step__last, .p-literacy__curric .heading01,
.p-literacy__curric .heading02, .p-literacy__curric .btn {
  text-align: center;
}
@media (max-width: 1199px) {
  .align-c-xl {
    text-align: center !important;
  }
}
@media (max-width: 1350px) {
  .align-c-ex {
    text-align: center !important;
  }
}
@media (max-width: 1023px) {
  .align-c-lg {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .align-c-md {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .align-c-sm {
    text-align: center !important;
  }
}

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

.pos-r {
  position: relative;
}

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

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

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

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

/* margin padding gap
-----------------------------------------------------*/
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-55 {
  margin-top: 5.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-65 {
  margin-top: 6.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-75 {
  margin-top: 7.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-85 {
  margin-top: 8.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-95 {
  margin-top: 9.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {
  .mt-0-xl {
    margin-top: 0rem !important;
  }
  .pt-0-xl {
    padding-top: 0rem !important;
  }
  .mb-0-xl {
    margin-bottom: 0rem !important;
  }
  .pb-0-xl {
    padding-bottom: 0rem !important;
  }
  .ml-0-xl {
    margin-left: 0rem !important;
  }
  .pl-0-xl {
    padding-left: 0rem !important;
  }
  .mr-0-xl {
    margin-right: 0rem !important;
  }
  .pr-0-xl {
    padding-right: 0rem !important;
  }
  .mt-5-xl {
    margin-top: 0.5rem !important;
  }
  .pt-5-xl {
    padding-top: 0.5rem !important;
  }
  .mb-5-xl {
    margin-bottom: 0.5rem !important;
  }
  .pb-5-xl {
    padding-bottom: 0.5rem !important;
  }
  .ml-5-xl {
    margin-left: 0.5rem !important;
  }
  .pl-5-xl {
    padding-left: 0.5rem !important;
  }
  .mr-5-xl {
    margin-right: 0.5rem !important;
  }
  .pr-5-xl {
    padding-right: 0.5rem !important;
  }
  .mt-10-xl {
    margin-top: 1rem !important;
  }
  .pt-10-xl {
    padding-top: 1rem !important;
  }
  .mb-10-xl {
    margin-bottom: 1rem !important;
  }
  .pb-10-xl {
    padding-bottom: 1rem !important;
  }
  .ml-10-xl {
    margin-left: 1rem !important;
  }
  .pl-10-xl {
    padding-left: 1rem !important;
  }
  .mr-10-xl {
    margin-right: 1rem !important;
  }
  .pr-10-xl {
    padding-right: 1rem !important;
  }
  .mt-15-xl {
    margin-top: 1.5rem !important;
  }
  .pt-15-xl {
    padding-top: 1.5rem !important;
  }
  .mb-15-xl {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-xl {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-xl {
    margin-left: 1.5rem !important;
  }
  .pl-15-xl {
    padding-left: 1.5rem !important;
  }
  .mr-15-xl {
    margin-right: 1.5rem !important;
  }
  .pr-15-xl {
    padding-right: 1.5rem !important;
  }
  .mt-20-xl {
    margin-top: 2rem !important;
  }
  .pt-20-xl {
    padding-top: 2rem !important;
  }
  .mb-20-xl {
    margin-bottom: 2rem !important;
  }
  .pb-20-xl {
    padding-bottom: 2rem !important;
  }
  .ml-20-xl {
    margin-left: 2rem !important;
  }
  .pl-20-xl {
    padding-left: 2rem !important;
  }
  .mr-20-xl {
    margin-right: 2rem !important;
  }
  .pr-20-xl {
    padding-right: 2rem !important;
  }
  .mt-25-xl {
    margin-top: 2.5rem !important;
  }
  .pt-25-xl {
    padding-top: 2.5rem !important;
  }
  .mb-25-xl {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-xl {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-xl {
    margin-left: 2.5rem !important;
  }
  .pl-25-xl {
    padding-left: 2.5rem !important;
  }
  .mr-25-xl {
    margin-right: 2.5rem !important;
  }
  .pr-25-xl {
    padding-right: 2.5rem !important;
  }
  .mt-30-xl {
    margin-top: 3rem !important;
  }
  .pt-30-xl {
    padding-top: 3rem !important;
  }
  .mb-30-xl {
    margin-bottom: 3rem !important;
  }
  .pb-30-xl {
    padding-bottom: 3rem !important;
  }
  .ml-30-xl {
    margin-left: 3rem !important;
  }
  .pl-30-xl {
    padding-left: 3rem !important;
  }
  .mr-30-xl {
    margin-right: 3rem !important;
  }
  .pr-30-xl {
    padding-right: 3rem !important;
  }
  .mt-35-xl {
    margin-top: 3.5rem !important;
  }
  .pt-35-xl {
    padding-top: 3.5rem !important;
  }
  .mb-35-xl {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-xl {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-xl {
    margin-left: 3.5rem !important;
  }
  .pl-35-xl {
    padding-left: 3.5rem !important;
  }
  .mr-35-xl {
    margin-right: 3.5rem !important;
  }
  .pr-35-xl {
    padding-right: 3.5rem !important;
  }
  .mt-40-xl {
    margin-top: 4rem !important;
  }
  .pt-40-xl {
    padding-top: 4rem !important;
  }
  .mb-40-xl {
    margin-bottom: 4rem !important;
  }
  .pb-40-xl {
    padding-bottom: 4rem !important;
  }
  .ml-40-xl {
    margin-left: 4rem !important;
  }
  .pl-40-xl {
    padding-left: 4rem !important;
  }
  .mr-40-xl {
    margin-right: 4rem !important;
  }
  .pr-40-xl {
    padding-right: 4rem !important;
  }
  .mt-45-xl {
    margin-top: 4.5rem !important;
  }
  .pt-45-xl {
    padding-top: 4.5rem !important;
  }
  .mb-45-xl {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-xl {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-xl {
    margin-left: 4.5rem !important;
  }
  .pl-45-xl {
    padding-left: 4.5rem !important;
  }
  .mr-45-xl {
    margin-right: 4.5rem !important;
  }
  .pr-45-xl {
    padding-right: 4.5rem !important;
  }
  .mt-50-xl {
    margin-top: 5rem !important;
  }
  .pt-50-xl {
    padding-top: 5rem !important;
  }
  .mb-50-xl {
    margin-bottom: 5rem !important;
  }
  .pb-50-xl {
    padding-bottom: 5rem !important;
  }
  .ml-50-xl {
    margin-left: 5rem !important;
  }
  .pl-50-xl {
    padding-left: 5rem !important;
  }
  .mr-50-xl {
    margin-right: 5rem !important;
  }
  .pr-50-xl {
    padding-right: 5rem !important;
  }
  .mt-55-xl {
    margin-top: 5.5rem !important;
  }
  .pt-55-xl {
    padding-top: 5.5rem !important;
  }
  .mb-55-xl {
    margin-bottom: 5.5rem !important;
  }
  .pb-55-xl {
    padding-bottom: 5.5rem !important;
  }
  .ml-55-xl {
    margin-left: 5.5rem !important;
  }
  .pl-55-xl {
    padding-left: 5.5rem !important;
  }
  .mr-55-xl {
    margin-right: 5.5rem !important;
  }
  .pr-55-xl {
    padding-right: 5.5rem !important;
  }
  .mt-60-xl {
    margin-top: 6rem !important;
  }
  .pt-60-xl {
    padding-top: 6rem !important;
  }
  .mb-60-xl {
    margin-bottom: 6rem !important;
  }
  .pb-60-xl {
    padding-bottom: 6rem !important;
  }
  .ml-60-xl {
    margin-left: 6rem !important;
  }
  .pl-60-xl {
    padding-left: 6rem !important;
  }
  .mr-60-xl {
    margin-right: 6rem !important;
  }
  .pr-60-xl {
    padding-right: 6rem !important;
  }
  .mt-65-xl {
    margin-top: 6.5rem !important;
  }
  .pt-65-xl {
    padding-top: 6.5rem !important;
  }
  .mb-65-xl {
    margin-bottom: 6.5rem !important;
  }
  .pb-65-xl {
    padding-bottom: 6.5rem !important;
  }
  .ml-65-xl {
    margin-left: 6.5rem !important;
  }
  .pl-65-xl {
    padding-left: 6.5rem !important;
  }
  .mr-65-xl {
    margin-right: 6.5rem !important;
  }
  .pr-65-xl {
    padding-right: 6.5rem !important;
  }
  .mt-70-xl {
    margin-top: 7rem !important;
  }
  .pt-70-xl {
    padding-top: 7rem !important;
  }
  .mb-70-xl {
    margin-bottom: 7rem !important;
  }
  .pb-70-xl {
    padding-bottom: 7rem !important;
  }
  .ml-70-xl {
    margin-left: 7rem !important;
  }
  .pl-70-xl {
    padding-left: 7rem !important;
  }
  .mr-70-xl {
    margin-right: 7rem !important;
  }
  .pr-70-xl {
    padding-right: 7rem !important;
  }
  .mt-75-xl {
    margin-top: 7.5rem !important;
  }
  .pt-75-xl {
    padding-top: 7.5rem !important;
  }
  .mb-75-xl {
    margin-bottom: 7.5rem !important;
  }
  .pb-75-xl {
    padding-bottom: 7.5rem !important;
  }
  .ml-75-xl {
    margin-left: 7.5rem !important;
  }
  .pl-75-xl {
    padding-left: 7.5rem !important;
  }
  .mr-75-xl {
    margin-right: 7.5rem !important;
  }
  .pr-75-xl {
    padding-right: 7.5rem !important;
  }
  .mt-80-xl {
    margin-top: 8rem !important;
  }
  .pt-80-xl {
    padding-top: 8rem !important;
  }
  .mb-80-xl {
    margin-bottom: 8rem !important;
  }
  .pb-80-xl {
    padding-bottom: 8rem !important;
  }
  .ml-80-xl {
    margin-left: 8rem !important;
  }
  .pl-80-xl {
    padding-left: 8rem !important;
  }
  .mr-80-xl {
    margin-right: 8rem !important;
  }
  .pr-80-xl {
    padding-right: 8rem !important;
  }
  .mt-85-xl {
    margin-top: 8.5rem !important;
  }
  .pt-85-xl {
    padding-top: 8.5rem !important;
  }
  .mb-85-xl {
    margin-bottom: 8.5rem !important;
  }
  .pb-85-xl {
    padding-bottom: 8.5rem !important;
  }
  .ml-85-xl {
    margin-left: 8.5rem !important;
  }
  .pl-85-xl {
    padding-left: 8.5rem !important;
  }
  .mr-85-xl {
    margin-right: 8.5rem !important;
  }
  .pr-85-xl {
    padding-right: 8.5rem !important;
  }
  .mt-90-xl {
    margin-top: 9rem !important;
  }
  .pt-90-xl {
    padding-top: 9rem !important;
  }
  .mb-90-xl {
    margin-bottom: 9rem !important;
  }
  .pb-90-xl {
    padding-bottom: 9rem !important;
  }
  .ml-90-xl {
    margin-left: 9rem !important;
  }
  .pl-90-xl {
    padding-left: 9rem !important;
  }
  .mr-90-xl {
    margin-right: 9rem !important;
  }
  .pr-90-xl {
    padding-right: 9rem !important;
  }
  .mt-95-xl {
    margin-top: 9.5rem !important;
  }
  .pt-95-xl {
    padding-top: 9.5rem !important;
  }
  .mb-95-xl {
    margin-bottom: 9.5rem !important;
  }
  .pb-95-xl {
    padding-bottom: 9.5rem !important;
  }
  .ml-95-xl {
    margin-left: 9.5rem !important;
  }
  .pl-95-xl {
    padding-left: 9.5rem !important;
  }
  .mr-95-xl {
    margin-right: 9.5rem !important;
  }
  .pr-95-xl {
    padding-right: 9.5rem !important;
  }
  .mt-100-xl {
    margin-top: 10rem !important;
  }
  .pt-100-xl {
    padding-top: 10rem !important;
  }
  .mb-100-xl {
    margin-bottom: 10rem !important;
  }
  .pb-100-xl {
    padding-bottom: 10rem !important;
  }
  .ml-100-xl {
    margin-left: 10rem !important;
  }
  .pl-100-xl {
    padding-left: 10rem !important;
  }
  .mr-100-xl {
    margin-right: 10rem !important;
  }
  .pr-100-xl {
    padding-right: 10rem !important;
  }
  .mt-110-xl {
    margin-top: 11rem !important;
  }
  .pt-110-xl {
    padding-top: 11rem !important;
  }
  .mb-110-xl {
    margin-bottom: 11rem !important;
  }
  .pb-110-xl {
    padding-bottom: 11rem !important;
  }
  .ml-110-xl {
    margin-left: 11rem !important;
  }
  .pl-110-xl {
    padding-left: 11rem !important;
  }
  .mr-110-xl {
    margin-right: 11rem !important;
  }
  .pr-110-xl {
    padding-right: 11rem !important;
  }
  .mt-120-xl {
    margin-top: 12rem !important;
  }
  .pt-120-xl {
    padding-top: 12rem !important;
  }
  .mb-120-xl {
    margin-bottom: 12rem !important;
  }
  .pb-120-xl {
    padding-bottom: 12rem !important;
  }
  .ml-120-xl {
    margin-left: 12rem !important;
  }
  .pl-120-xl {
    padding-left: 12rem !important;
  }
  .mr-120-xl {
    margin-right: 12rem !important;
  }
  .pr-120-xl {
    padding-right: 12rem !important;
  }
  .mt-130-xl {
    margin-top: 13rem !important;
  }
  .pt-130-xl {
    padding-top: 13rem !important;
  }
  .mb-130-xl {
    margin-bottom: 13rem !important;
  }
  .pb-130-xl {
    padding-bottom: 13rem !important;
  }
  .ml-130-xl {
    margin-left: 13rem !important;
  }
  .pl-130-xl {
    padding-left: 13rem !important;
  }
  .mr-130-xl {
    margin-right: 13rem !important;
  }
  .pr-130-xl {
    padding-right: 13rem !important;
  }
  .mt-140-xl {
    margin-top: 14rem !important;
  }
  .pt-140-xl {
    padding-top: 14rem !important;
  }
  .mb-140-xl {
    margin-bottom: 14rem !important;
  }
  .pb-140-xl {
    padding-bottom: 14rem !important;
  }
  .ml-140-xl {
    margin-left: 14rem !important;
  }
  .pl-140-xl {
    padding-left: 14rem !important;
  }
  .mr-140-xl {
    margin-right: 14rem !important;
  }
  .pr-140-xl {
    padding-right: 14rem !important;
  }
  .mt-150-xl {
    margin-top: 15rem !important;
  }
  .pt-150-xl {
    padding-top: 15rem !important;
  }
  .mb-150-xl {
    margin-bottom: 15rem !important;
  }
  .pb-150-xl {
    padding-bottom: 15rem !important;
  }
  .ml-150-xl {
    margin-left: 15rem !important;
  }
  .pl-150-xl {
    padding-left: 15rem !important;
  }
  .mr-150-xl {
    margin-right: 15rem !important;
  }
  .pr-150-xl {
    padding-right: 15rem !important;
  }
  .mt-160-xl {
    margin-top: 16rem !important;
  }
  .pt-160-xl {
    padding-top: 16rem !important;
  }
  .mb-160-xl {
    margin-bottom: 16rem !important;
  }
  .pb-160-xl {
    padding-bottom: 16rem !important;
  }
  .ml-160-xl {
    margin-left: 16rem !important;
  }
  .pl-160-xl {
    padding-left: 16rem !important;
  }
  .mr-160-xl {
    margin-right: 16rem !important;
  }
  .pr-160-xl {
    padding-right: 16rem !important;
  }
  .mt-170-xl {
    margin-top: 17rem !important;
  }
  .pt-170-xl {
    padding-top: 17rem !important;
  }
  .mb-170-xl {
    margin-bottom: 17rem !important;
  }
  .pb-170-xl {
    padding-bottom: 17rem !important;
  }
  .ml-170-xl {
    margin-left: 17rem !important;
  }
  .pl-170-xl {
    padding-left: 17rem !important;
  }
  .mr-170-xl {
    margin-right: 17rem !important;
  }
  .pr-170-xl {
    padding-right: 17rem !important;
  }
  .mt-180-xl {
    margin-top: 18rem !important;
  }
  .pt-180-xl {
    padding-top: 18rem !important;
  }
  .mb-180-xl {
    margin-bottom: 18rem !important;
  }
  .pb-180-xl {
    padding-bottom: 18rem !important;
  }
  .ml-180-xl {
    margin-left: 18rem !important;
  }
  .pl-180-xl {
    padding-left: 18rem !important;
  }
  .mr-180-xl {
    margin-right: 18rem !important;
  }
  .pr-180-xl {
    padding-right: 18rem !important;
  }
  .mt-190-xl {
    margin-top: 19rem !important;
  }
  .pt-190-xl {
    padding-top: 19rem !important;
  }
  .mb-190-xl {
    margin-bottom: 19rem !important;
  }
  .pb-190-xl {
    padding-bottom: 19rem !important;
  }
  .ml-190-xl {
    margin-left: 19rem !important;
  }
  .pl-190-xl {
    padding-left: 19rem !important;
  }
  .mr-190-xl {
    margin-right: 19rem !important;
  }
  .pr-190-xl {
    padding-right: 19rem !important;
  }
  .mt-200-xl {
    margin-top: 20rem !important;
  }
  .pt-200-xl {
    padding-top: 20rem !important;
  }
  .mb-200-xl {
    margin-bottom: 20rem !important;
  }
  .pb-200-xl {
    padding-bottom: 20rem !important;
  }
  .ml-200-xl {
    margin-left: 20rem !important;
  }
  .pl-200-xl {
    padding-left: 20rem !important;
  }
  .mr-200-xl {
    margin-right: 20rem !important;
  }
  .pr-200-xl {
    padding-right: 20rem !important;
  }
}
@media (max-width: 1350px) {
  .mt-0-ex {
    margin-top: 0rem !important;
  }
  .pt-0-ex {
    padding-top: 0rem !important;
  }
  .mb-0-ex {
    margin-bottom: 0rem !important;
  }
  .pb-0-ex {
    padding-bottom: 0rem !important;
  }
  .ml-0-ex {
    margin-left: 0rem !important;
  }
  .pl-0-ex {
    padding-left: 0rem !important;
  }
  .mr-0-ex {
    margin-right: 0rem !important;
  }
  .pr-0-ex {
    padding-right: 0rem !important;
  }
  .mt-5-ex {
    margin-top: 0.5rem !important;
  }
  .pt-5-ex {
    padding-top: 0.5rem !important;
  }
  .mb-5-ex {
    margin-bottom: 0.5rem !important;
  }
  .pb-5-ex {
    padding-bottom: 0.5rem !important;
  }
  .ml-5-ex {
    margin-left: 0.5rem !important;
  }
  .pl-5-ex {
    padding-left: 0.5rem !important;
  }
  .mr-5-ex {
    margin-right: 0.5rem !important;
  }
  .pr-5-ex {
    padding-right: 0.5rem !important;
  }
  .mt-10-ex {
    margin-top: 1rem !important;
  }
  .pt-10-ex {
    padding-top: 1rem !important;
  }
  .mb-10-ex {
    margin-bottom: 1rem !important;
  }
  .pb-10-ex {
    padding-bottom: 1rem !important;
  }
  .ml-10-ex {
    margin-left: 1rem !important;
  }
  .pl-10-ex {
    padding-left: 1rem !important;
  }
  .mr-10-ex {
    margin-right: 1rem !important;
  }
  .pr-10-ex {
    padding-right: 1rem !important;
  }
  .mt-15-ex {
    margin-top: 1.5rem !important;
  }
  .pt-15-ex {
    padding-top: 1.5rem !important;
  }
  .mb-15-ex {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-ex {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-ex {
    margin-left: 1.5rem !important;
  }
  .pl-15-ex {
    padding-left: 1.5rem !important;
  }
  .mr-15-ex {
    margin-right: 1.5rem !important;
  }
  .pr-15-ex {
    padding-right: 1.5rem !important;
  }
  .mt-20-ex {
    margin-top: 2rem !important;
  }
  .pt-20-ex {
    padding-top: 2rem !important;
  }
  .mb-20-ex {
    margin-bottom: 2rem !important;
  }
  .pb-20-ex {
    padding-bottom: 2rem !important;
  }
  .ml-20-ex {
    margin-left: 2rem !important;
  }
  .pl-20-ex {
    padding-left: 2rem !important;
  }
  .mr-20-ex {
    margin-right: 2rem !important;
  }
  .pr-20-ex {
    padding-right: 2rem !important;
  }
  .mt-25-ex {
    margin-top: 2.5rem !important;
  }
  .pt-25-ex {
    padding-top: 2.5rem !important;
  }
  .mb-25-ex {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-ex {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-ex {
    margin-left: 2.5rem !important;
  }
  .pl-25-ex {
    padding-left: 2.5rem !important;
  }
  .mr-25-ex {
    margin-right: 2.5rem !important;
  }
  .pr-25-ex {
    padding-right: 2.5rem !important;
  }
  .mt-30-ex {
    margin-top: 3rem !important;
  }
  .pt-30-ex {
    padding-top: 3rem !important;
  }
  .mb-30-ex {
    margin-bottom: 3rem !important;
  }
  .pb-30-ex {
    padding-bottom: 3rem !important;
  }
  .ml-30-ex {
    margin-left: 3rem !important;
  }
  .pl-30-ex {
    padding-left: 3rem !important;
  }
  .mr-30-ex {
    margin-right: 3rem !important;
  }
  .pr-30-ex {
    padding-right: 3rem !important;
  }
  .mt-35-ex {
    margin-top: 3.5rem !important;
  }
  .pt-35-ex {
    padding-top: 3.5rem !important;
  }
  .mb-35-ex {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-ex {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-ex {
    margin-left: 3.5rem !important;
  }
  .pl-35-ex {
    padding-left: 3.5rem !important;
  }
  .mr-35-ex {
    margin-right: 3.5rem !important;
  }
  .pr-35-ex {
    padding-right: 3.5rem !important;
  }
  .mt-40-ex {
    margin-top: 4rem !important;
  }
  .pt-40-ex {
    padding-top: 4rem !important;
  }
  .mb-40-ex {
    margin-bottom: 4rem !important;
  }
  .pb-40-ex {
    padding-bottom: 4rem !important;
  }
  .ml-40-ex {
    margin-left: 4rem !important;
  }
  .pl-40-ex {
    padding-left: 4rem !important;
  }
  .mr-40-ex {
    margin-right: 4rem !important;
  }
  .pr-40-ex {
    padding-right: 4rem !important;
  }
  .mt-45-ex {
    margin-top: 4.5rem !important;
  }
  .pt-45-ex {
    padding-top: 4.5rem !important;
  }
  .mb-45-ex {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-ex {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-ex {
    margin-left: 4.5rem !important;
  }
  .pl-45-ex {
    padding-left: 4.5rem !important;
  }
  .mr-45-ex {
    margin-right: 4.5rem !important;
  }
  .pr-45-ex {
    padding-right: 4.5rem !important;
  }
  .mt-50-ex {
    margin-top: 5rem !important;
  }
  .pt-50-ex {
    padding-top: 5rem !important;
  }
  .mb-50-ex {
    margin-bottom: 5rem !important;
  }
  .pb-50-ex {
    padding-bottom: 5rem !important;
  }
  .ml-50-ex {
    margin-left: 5rem !important;
  }
  .pl-50-ex {
    padding-left: 5rem !important;
  }
  .mr-50-ex {
    margin-right: 5rem !important;
  }
  .pr-50-ex {
    padding-right: 5rem !important;
  }
  .mt-55-ex {
    margin-top: 5.5rem !important;
  }
  .pt-55-ex {
    padding-top: 5.5rem !important;
  }
  .mb-55-ex {
    margin-bottom: 5.5rem !important;
  }
  .pb-55-ex {
    padding-bottom: 5.5rem !important;
  }
  .ml-55-ex {
    margin-left: 5.5rem !important;
  }
  .pl-55-ex {
    padding-left: 5.5rem !important;
  }
  .mr-55-ex {
    margin-right: 5.5rem !important;
  }
  .pr-55-ex {
    padding-right: 5.5rem !important;
  }
  .mt-60-ex {
    margin-top: 6rem !important;
  }
  .pt-60-ex {
    padding-top: 6rem !important;
  }
  .mb-60-ex {
    margin-bottom: 6rem !important;
  }
  .pb-60-ex {
    padding-bottom: 6rem !important;
  }
  .ml-60-ex {
    margin-left: 6rem !important;
  }
  .pl-60-ex {
    padding-left: 6rem !important;
  }
  .mr-60-ex {
    margin-right: 6rem !important;
  }
  .pr-60-ex {
    padding-right: 6rem !important;
  }
  .mt-65-ex {
    margin-top: 6.5rem !important;
  }
  .pt-65-ex {
    padding-top: 6.5rem !important;
  }
  .mb-65-ex {
    margin-bottom: 6.5rem !important;
  }
  .pb-65-ex {
    padding-bottom: 6.5rem !important;
  }
  .ml-65-ex {
    margin-left: 6.5rem !important;
  }
  .pl-65-ex {
    padding-left: 6.5rem !important;
  }
  .mr-65-ex {
    margin-right: 6.5rem !important;
  }
  .pr-65-ex {
    padding-right: 6.5rem !important;
  }
  .mt-70-ex {
    margin-top: 7rem !important;
  }
  .pt-70-ex {
    padding-top: 7rem !important;
  }
  .mb-70-ex {
    margin-bottom: 7rem !important;
  }
  .pb-70-ex {
    padding-bottom: 7rem !important;
  }
  .ml-70-ex {
    margin-left: 7rem !important;
  }
  .pl-70-ex {
    padding-left: 7rem !important;
  }
  .mr-70-ex {
    margin-right: 7rem !important;
  }
  .pr-70-ex {
    padding-right: 7rem !important;
  }
  .mt-75-ex {
    margin-top: 7.5rem !important;
  }
  .pt-75-ex {
    padding-top: 7.5rem !important;
  }
  .mb-75-ex {
    margin-bottom: 7.5rem !important;
  }
  .pb-75-ex {
    padding-bottom: 7.5rem !important;
  }
  .ml-75-ex {
    margin-left: 7.5rem !important;
  }
  .pl-75-ex {
    padding-left: 7.5rem !important;
  }
  .mr-75-ex {
    margin-right: 7.5rem !important;
  }
  .pr-75-ex {
    padding-right: 7.5rem !important;
  }
  .mt-80-ex {
    margin-top: 8rem !important;
  }
  .pt-80-ex {
    padding-top: 8rem !important;
  }
  .mb-80-ex {
    margin-bottom: 8rem !important;
  }
  .pb-80-ex {
    padding-bottom: 8rem !important;
  }
  .ml-80-ex {
    margin-left: 8rem !important;
  }
  .pl-80-ex {
    padding-left: 8rem !important;
  }
  .mr-80-ex {
    margin-right: 8rem !important;
  }
  .pr-80-ex {
    padding-right: 8rem !important;
  }
  .mt-85-ex {
    margin-top: 8.5rem !important;
  }
  .pt-85-ex {
    padding-top: 8.5rem !important;
  }
  .mb-85-ex {
    margin-bottom: 8.5rem !important;
  }
  .pb-85-ex {
    padding-bottom: 8.5rem !important;
  }
  .ml-85-ex {
    margin-left: 8.5rem !important;
  }
  .pl-85-ex {
    padding-left: 8.5rem !important;
  }
  .mr-85-ex {
    margin-right: 8.5rem !important;
  }
  .pr-85-ex {
    padding-right: 8.5rem !important;
  }
  .mt-90-ex {
    margin-top: 9rem !important;
  }
  .pt-90-ex {
    padding-top: 9rem !important;
  }
  .mb-90-ex {
    margin-bottom: 9rem !important;
  }
  .pb-90-ex {
    padding-bottom: 9rem !important;
  }
  .ml-90-ex {
    margin-left: 9rem !important;
  }
  .pl-90-ex {
    padding-left: 9rem !important;
  }
  .mr-90-ex {
    margin-right: 9rem !important;
  }
  .pr-90-ex {
    padding-right: 9rem !important;
  }
  .mt-95-ex {
    margin-top: 9.5rem !important;
  }
  .pt-95-ex {
    padding-top: 9.5rem !important;
  }
  .mb-95-ex {
    margin-bottom: 9.5rem !important;
  }
  .pb-95-ex {
    padding-bottom: 9.5rem !important;
  }
  .ml-95-ex {
    margin-left: 9.5rem !important;
  }
  .pl-95-ex {
    padding-left: 9.5rem !important;
  }
  .mr-95-ex {
    margin-right: 9.5rem !important;
  }
  .pr-95-ex {
    padding-right: 9.5rem !important;
  }
  .mt-100-ex {
    margin-top: 10rem !important;
  }
  .pt-100-ex {
    padding-top: 10rem !important;
  }
  .mb-100-ex {
    margin-bottom: 10rem !important;
  }
  .pb-100-ex {
    padding-bottom: 10rem !important;
  }
  .ml-100-ex {
    margin-left: 10rem !important;
  }
  .pl-100-ex {
    padding-left: 10rem !important;
  }
  .mr-100-ex {
    margin-right: 10rem !important;
  }
  .pr-100-ex {
    padding-right: 10rem !important;
  }
  .mt-110-ex {
    margin-top: 11rem !important;
  }
  .pt-110-ex {
    padding-top: 11rem !important;
  }
  .mb-110-ex {
    margin-bottom: 11rem !important;
  }
  .pb-110-ex {
    padding-bottom: 11rem !important;
  }
  .ml-110-ex {
    margin-left: 11rem !important;
  }
  .pl-110-ex {
    padding-left: 11rem !important;
  }
  .mr-110-ex {
    margin-right: 11rem !important;
  }
  .pr-110-ex {
    padding-right: 11rem !important;
  }
  .mt-120-ex {
    margin-top: 12rem !important;
  }
  .pt-120-ex {
    padding-top: 12rem !important;
  }
  .mb-120-ex {
    margin-bottom: 12rem !important;
  }
  .pb-120-ex {
    padding-bottom: 12rem !important;
  }
  .ml-120-ex {
    margin-left: 12rem !important;
  }
  .pl-120-ex {
    padding-left: 12rem !important;
  }
  .mr-120-ex {
    margin-right: 12rem !important;
  }
  .pr-120-ex {
    padding-right: 12rem !important;
  }
  .mt-130-ex {
    margin-top: 13rem !important;
  }
  .pt-130-ex {
    padding-top: 13rem !important;
  }
  .mb-130-ex {
    margin-bottom: 13rem !important;
  }
  .pb-130-ex {
    padding-bottom: 13rem !important;
  }
  .ml-130-ex {
    margin-left: 13rem !important;
  }
  .pl-130-ex {
    padding-left: 13rem !important;
  }
  .mr-130-ex {
    margin-right: 13rem !important;
  }
  .pr-130-ex {
    padding-right: 13rem !important;
  }
  .mt-140-ex {
    margin-top: 14rem !important;
  }
  .pt-140-ex {
    padding-top: 14rem !important;
  }
  .mb-140-ex {
    margin-bottom: 14rem !important;
  }
  .pb-140-ex {
    padding-bottom: 14rem !important;
  }
  .ml-140-ex {
    margin-left: 14rem !important;
  }
  .pl-140-ex {
    padding-left: 14rem !important;
  }
  .mr-140-ex {
    margin-right: 14rem !important;
  }
  .pr-140-ex {
    padding-right: 14rem !important;
  }
  .mt-150-ex {
    margin-top: 15rem !important;
  }
  .pt-150-ex {
    padding-top: 15rem !important;
  }
  .mb-150-ex {
    margin-bottom: 15rem !important;
  }
  .pb-150-ex {
    padding-bottom: 15rem !important;
  }
  .ml-150-ex {
    margin-left: 15rem !important;
  }
  .pl-150-ex {
    padding-left: 15rem !important;
  }
  .mr-150-ex {
    margin-right: 15rem !important;
  }
  .pr-150-ex {
    padding-right: 15rem !important;
  }
  .mt-160-ex {
    margin-top: 16rem !important;
  }
  .pt-160-ex {
    padding-top: 16rem !important;
  }
  .mb-160-ex {
    margin-bottom: 16rem !important;
  }
  .pb-160-ex {
    padding-bottom: 16rem !important;
  }
  .ml-160-ex {
    margin-left: 16rem !important;
  }
  .pl-160-ex {
    padding-left: 16rem !important;
  }
  .mr-160-ex {
    margin-right: 16rem !important;
  }
  .pr-160-ex {
    padding-right: 16rem !important;
  }
  .mt-170-ex {
    margin-top: 17rem !important;
  }
  .pt-170-ex {
    padding-top: 17rem !important;
  }
  .mb-170-ex {
    margin-bottom: 17rem !important;
  }
  .pb-170-ex {
    padding-bottom: 17rem !important;
  }
  .ml-170-ex {
    margin-left: 17rem !important;
  }
  .pl-170-ex {
    padding-left: 17rem !important;
  }
  .mr-170-ex {
    margin-right: 17rem !important;
  }
  .pr-170-ex {
    padding-right: 17rem !important;
  }
  .mt-180-ex {
    margin-top: 18rem !important;
  }
  .pt-180-ex {
    padding-top: 18rem !important;
  }
  .mb-180-ex {
    margin-bottom: 18rem !important;
  }
  .pb-180-ex {
    padding-bottom: 18rem !important;
  }
  .ml-180-ex {
    margin-left: 18rem !important;
  }
  .pl-180-ex {
    padding-left: 18rem !important;
  }
  .mr-180-ex {
    margin-right: 18rem !important;
  }
  .pr-180-ex {
    padding-right: 18rem !important;
  }
  .mt-190-ex {
    margin-top: 19rem !important;
  }
  .pt-190-ex {
    padding-top: 19rem !important;
  }
  .mb-190-ex {
    margin-bottom: 19rem !important;
  }
  .pb-190-ex {
    padding-bottom: 19rem !important;
  }
  .ml-190-ex {
    margin-left: 19rem !important;
  }
  .pl-190-ex {
    padding-left: 19rem !important;
  }
  .mr-190-ex {
    margin-right: 19rem !important;
  }
  .pr-190-ex {
    padding-right: 19rem !important;
  }
  .mt-200-ex {
    margin-top: 20rem !important;
  }
  .pt-200-ex {
    padding-top: 20rem !important;
  }
  .mb-200-ex {
    margin-bottom: 20rem !important;
  }
  .pb-200-ex {
    padding-bottom: 20rem !important;
  }
  .ml-200-ex {
    margin-left: 20rem !important;
  }
  .pl-200-ex {
    padding-left: 20rem !important;
  }
  .mr-200-ex {
    margin-right: 20rem !important;
  }
  .pr-200-ex {
    padding-right: 20rem !important;
  }
}
@media (max-width: 1023px) {
  .mt-0-lg {
    margin-top: 0rem !important;
  }
  .pt-0-lg {
    padding-top: 0rem !important;
  }
  .mb-0-lg {
    margin-bottom: 0rem !important;
  }
  .pb-0-lg {
    padding-bottom: 0rem !important;
  }
  .ml-0-lg {
    margin-left: 0rem !important;
  }
  .pl-0-lg {
    padding-left: 0rem !important;
  }
  .mr-0-lg {
    margin-right: 0rem !important;
  }
  .pr-0-lg {
    padding-right: 0rem !important;
  }
  .mt-5-lg {
    margin-top: 0.5rem !important;
  }
  .pt-5-lg {
    padding-top: 0.5rem !important;
  }
  .mb-5-lg {
    margin-bottom: 0.5rem !important;
  }
  .pb-5-lg {
    padding-bottom: 0.5rem !important;
  }
  .ml-5-lg {
    margin-left: 0.5rem !important;
  }
  .pl-5-lg {
    padding-left: 0.5rem !important;
  }
  .mr-5-lg {
    margin-right: 0.5rem !important;
  }
  .pr-5-lg {
    padding-right: 0.5rem !important;
  }
  .mt-10-lg {
    margin-top: 1rem !important;
  }
  .pt-10-lg {
    padding-top: 1rem !important;
  }
  .mb-10-lg {
    margin-bottom: 1rem !important;
  }
  .pb-10-lg {
    padding-bottom: 1rem !important;
  }
  .ml-10-lg {
    margin-left: 1rem !important;
  }
  .pl-10-lg {
    padding-left: 1rem !important;
  }
  .mr-10-lg {
    margin-right: 1rem !important;
  }
  .pr-10-lg {
    padding-right: 1rem !important;
  }
  .mt-15-lg {
    margin-top: 1.5rem !important;
  }
  .pt-15-lg {
    padding-top: 1.5rem !important;
  }
  .mb-15-lg {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-lg {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-lg {
    margin-left: 1.5rem !important;
  }
  .pl-15-lg {
    padding-left: 1.5rem !important;
  }
  .mr-15-lg {
    margin-right: 1.5rem !important;
  }
  .pr-15-lg {
    padding-right: 1.5rem !important;
  }
  .mt-20-lg {
    margin-top: 2rem !important;
  }
  .pt-20-lg {
    padding-top: 2rem !important;
  }
  .mb-20-lg {
    margin-bottom: 2rem !important;
  }
  .pb-20-lg {
    padding-bottom: 2rem !important;
  }
  .ml-20-lg {
    margin-left: 2rem !important;
  }
  .pl-20-lg {
    padding-left: 2rem !important;
  }
  .mr-20-lg {
    margin-right: 2rem !important;
  }
  .pr-20-lg {
    padding-right: 2rem !important;
  }
  .mt-25-lg {
    margin-top: 2.5rem !important;
  }
  .pt-25-lg {
    padding-top: 2.5rem !important;
  }
  .mb-25-lg {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-lg {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-lg {
    margin-left: 2.5rem !important;
  }
  .pl-25-lg {
    padding-left: 2.5rem !important;
  }
  .mr-25-lg {
    margin-right: 2.5rem !important;
  }
  .pr-25-lg {
    padding-right: 2.5rem !important;
  }
  .mt-30-lg {
    margin-top: 3rem !important;
  }
  .pt-30-lg {
    padding-top: 3rem !important;
  }
  .mb-30-lg {
    margin-bottom: 3rem !important;
  }
  .pb-30-lg {
    padding-bottom: 3rem !important;
  }
  .ml-30-lg {
    margin-left: 3rem !important;
  }
  .pl-30-lg {
    padding-left: 3rem !important;
  }
  .mr-30-lg {
    margin-right: 3rem !important;
  }
  .pr-30-lg {
    padding-right: 3rem !important;
  }
  .mt-35-lg {
    margin-top: 3.5rem !important;
  }
  .pt-35-lg {
    padding-top: 3.5rem !important;
  }
  .mb-35-lg {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-lg {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-lg {
    margin-left: 3.5rem !important;
  }
  .pl-35-lg {
    padding-left: 3.5rem !important;
  }
  .mr-35-lg {
    margin-right: 3.5rem !important;
  }
  .pr-35-lg {
    padding-right: 3.5rem !important;
  }
  .mt-40-lg {
    margin-top: 4rem !important;
  }
  .pt-40-lg {
    padding-top: 4rem !important;
  }
  .mb-40-lg {
    margin-bottom: 4rem !important;
  }
  .pb-40-lg {
    padding-bottom: 4rem !important;
  }
  .ml-40-lg {
    margin-left: 4rem !important;
  }
  .pl-40-lg {
    padding-left: 4rem !important;
  }
  .mr-40-lg {
    margin-right: 4rem !important;
  }
  .pr-40-lg {
    padding-right: 4rem !important;
  }
  .mt-45-lg {
    margin-top: 4.5rem !important;
  }
  .pt-45-lg {
    padding-top: 4.5rem !important;
  }
  .mb-45-lg {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-lg {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-lg {
    margin-left: 4.5rem !important;
  }
  .pl-45-lg {
    padding-left: 4.5rem !important;
  }
  .mr-45-lg {
    margin-right: 4.5rem !important;
  }
  .pr-45-lg {
    padding-right: 4.5rem !important;
  }
  .mt-50-lg {
    margin-top: 5rem !important;
  }
  .pt-50-lg {
    padding-top: 5rem !important;
  }
  .mb-50-lg {
    margin-bottom: 5rem !important;
  }
  .pb-50-lg {
    padding-bottom: 5rem !important;
  }
  .ml-50-lg {
    margin-left: 5rem !important;
  }
  .pl-50-lg {
    padding-left: 5rem !important;
  }
  .mr-50-lg {
    margin-right: 5rem !important;
  }
  .pr-50-lg {
    padding-right: 5rem !important;
  }
  .mt-55-lg {
    margin-top: 5.5rem !important;
  }
  .pt-55-lg {
    padding-top: 5.5rem !important;
  }
  .mb-55-lg {
    margin-bottom: 5.5rem !important;
  }
  .pb-55-lg {
    padding-bottom: 5.5rem !important;
  }
  .ml-55-lg {
    margin-left: 5.5rem !important;
  }
  .pl-55-lg {
    padding-left: 5.5rem !important;
  }
  .mr-55-lg {
    margin-right: 5.5rem !important;
  }
  .pr-55-lg {
    padding-right: 5.5rem !important;
  }
  .mt-60-lg {
    margin-top: 6rem !important;
  }
  .pt-60-lg {
    padding-top: 6rem !important;
  }
  .mb-60-lg {
    margin-bottom: 6rem !important;
  }
  .pb-60-lg {
    padding-bottom: 6rem !important;
  }
  .ml-60-lg {
    margin-left: 6rem !important;
  }
  .pl-60-lg {
    padding-left: 6rem !important;
  }
  .mr-60-lg {
    margin-right: 6rem !important;
  }
  .pr-60-lg {
    padding-right: 6rem !important;
  }
  .mt-65-lg {
    margin-top: 6.5rem !important;
  }
  .pt-65-lg {
    padding-top: 6.5rem !important;
  }
  .mb-65-lg {
    margin-bottom: 6.5rem !important;
  }
  .pb-65-lg {
    padding-bottom: 6.5rem !important;
  }
  .ml-65-lg {
    margin-left: 6.5rem !important;
  }
  .pl-65-lg {
    padding-left: 6.5rem !important;
  }
  .mr-65-lg {
    margin-right: 6.5rem !important;
  }
  .pr-65-lg {
    padding-right: 6.5rem !important;
  }
  .mt-70-lg {
    margin-top: 7rem !important;
  }
  .pt-70-lg {
    padding-top: 7rem !important;
  }
  .mb-70-lg {
    margin-bottom: 7rem !important;
  }
  .pb-70-lg {
    padding-bottom: 7rem !important;
  }
  .ml-70-lg {
    margin-left: 7rem !important;
  }
  .pl-70-lg {
    padding-left: 7rem !important;
  }
  .mr-70-lg {
    margin-right: 7rem !important;
  }
  .pr-70-lg {
    padding-right: 7rem !important;
  }
  .mt-75-lg {
    margin-top: 7.5rem !important;
  }
  .pt-75-lg {
    padding-top: 7.5rem !important;
  }
  .mb-75-lg {
    margin-bottom: 7.5rem !important;
  }
  .pb-75-lg {
    padding-bottom: 7.5rem !important;
  }
  .ml-75-lg {
    margin-left: 7.5rem !important;
  }
  .pl-75-lg {
    padding-left: 7.5rem !important;
  }
  .mr-75-lg {
    margin-right: 7.5rem !important;
  }
  .pr-75-lg {
    padding-right: 7.5rem !important;
  }
  .mt-80-lg {
    margin-top: 8rem !important;
  }
  .pt-80-lg {
    padding-top: 8rem !important;
  }
  .mb-80-lg {
    margin-bottom: 8rem !important;
  }
  .pb-80-lg {
    padding-bottom: 8rem !important;
  }
  .ml-80-lg {
    margin-left: 8rem !important;
  }
  .pl-80-lg {
    padding-left: 8rem !important;
  }
  .mr-80-lg {
    margin-right: 8rem !important;
  }
  .pr-80-lg {
    padding-right: 8rem !important;
  }
  .mt-85-lg {
    margin-top: 8.5rem !important;
  }
  .pt-85-lg {
    padding-top: 8.5rem !important;
  }
  .mb-85-lg {
    margin-bottom: 8.5rem !important;
  }
  .pb-85-lg {
    padding-bottom: 8.5rem !important;
  }
  .ml-85-lg {
    margin-left: 8.5rem !important;
  }
  .pl-85-lg {
    padding-left: 8.5rem !important;
  }
  .mr-85-lg {
    margin-right: 8.5rem !important;
  }
  .pr-85-lg {
    padding-right: 8.5rem !important;
  }
  .mt-90-lg {
    margin-top: 9rem !important;
  }
  .pt-90-lg {
    padding-top: 9rem !important;
  }
  .mb-90-lg {
    margin-bottom: 9rem !important;
  }
  .pb-90-lg {
    padding-bottom: 9rem !important;
  }
  .ml-90-lg {
    margin-left: 9rem !important;
  }
  .pl-90-lg {
    padding-left: 9rem !important;
  }
  .mr-90-lg {
    margin-right: 9rem !important;
  }
  .pr-90-lg {
    padding-right: 9rem !important;
  }
  .mt-95-lg {
    margin-top: 9.5rem !important;
  }
  .pt-95-lg {
    padding-top: 9.5rem !important;
  }
  .mb-95-lg {
    margin-bottom: 9.5rem !important;
  }
  .pb-95-lg {
    padding-bottom: 9.5rem !important;
  }
  .ml-95-lg {
    margin-left: 9.5rem !important;
  }
  .pl-95-lg {
    padding-left: 9.5rem !important;
  }
  .mr-95-lg {
    margin-right: 9.5rem !important;
  }
  .pr-95-lg {
    padding-right: 9.5rem !important;
  }
  .mt-100-lg {
    margin-top: 10rem !important;
  }
  .pt-100-lg {
    padding-top: 10rem !important;
  }
  .mb-100-lg {
    margin-bottom: 10rem !important;
  }
  .pb-100-lg {
    padding-bottom: 10rem !important;
  }
  .ml-100-lg {
    margin-left: 10rem !important;
  }
  .pl-100-lg {
    padding-left: 10rem !important;
  }
  .mr-100-lg {
    margin-right: 10rem !important;
  }
  .pr-100-lg {
    padding-right: 10rem !important;
  }
  .mt-110-lg {
    margin-top: 11rem !important;
  }
  .pt-110-lg {
    padding-top: 11rem !important;
  }
  .mb-110-lg {
    margin-bottom: 11rem !important;
  }
  .pb-110-lg {
    padding-bottom: 11rem !important;
  }
  .ml-110-lg {
    margin-left: 11rem !important;
  }
  .pl-110-lg {
    padding-left: 11rem !important;
  }
  .mr-110-lg {
    margin-right: 11rem !important;
  }
  .pr-110-lg {
    padding-right: 11rem !important;
  }
  .mt-120-lg {
    margin-top: 12rem !important;
  }
  .pt-120-lg {
    padding-top: 12rem !important;
  }
  .mb-120-lg {
    margin-bottom: 12rem !important;
  }
  .pb-120-lg {
    padding-bottom: 12rem !important;
  }
  .ml-120-lg {
    margin-left: 12rem !important;
  }
  .pl-120-lg {
    padding-left: 12rem !important;
  }
  .mr-120-lg {
    margin-right: 12rem !important;
  }
  .pr-120-lg {
    padding-right: 12rem !important;
  }
  .mt-130-lg {
    margin-top: 13rem !important;
  }
  .pt-130-lg {
    padding-top: 13rem !important;
  }
  .mb-130-lg {
    margin-bottom: 13rem !important;
  }
  .pb-130-lg {
    padding-bottom: 13rem !important;
  }
  .ml-130-lg {
    margin-left: 13rem !important;
  }
  .pl-130-lg {
    padding-left: 13rem !important;
  }
  .mr-130-lg {
    margin-right: 13rem !important;
  }
  .pr-130-lg {
    padding-right: 13rem !important;
  }
  .mt-140-lg {
    margin-top: 14rem !important;
  }
  .pt-140-lg {
    padding-top: 14rem !important;
  }
  .mb-140-lg {
    margin-bottom: 14rem !important;
  }
  .pb-140-lg {
    padding-bottom: 14rem !important;
  }
  .ml-140-lg {
    margin-left: 14rem !important;
  }
  .pl-140-lg {
    padding-left: 14rem !important;
  }
  .mr-140-lg {
    margin-right: 14rem !important;
  }
  .pr-140-lg {
    padding-right: 14rem !important;
  }
  .mt-150-lg {
    margin-top: 15rem !important;
  }
  .pt-150-lg {
    padding-top: 15rem !important;
  }
  .mb-150-lg {
    margin-bottom: 15rem !important;
  }
  .pb-150-lg {
    padding-bottom: 15rem !important;
  }
  .ml-150-lg {
    margin-left: 15rem !important;
  }
  .pl-150-lg {
    padding-left: 15rem !important;
  }
  .mr-150-lg {
    margin-right: 15rem !important;
  }
  .pr-150-lg {
    padding-right: 15rem !important;
  }
  .mt-160-lg {
    margin-top: 16rem !important;
  }
  .pt-160-lg {
    padding-top: 16rem !important;
  }
  .mb-160-lg {
    margin-bottom: 16rem !important;
  }
  .pb-160-lg {
    padding-bottom: 16rem !important;
  }
  .ml-160-lg {
    margin-left: 16rem !important;
  }
  .pl-160-lg {
    padding-left: 16rem !important;
  }
  .mr-160-lg {
    margin-right: 16rem !important;
  }
  .pr-160-lg {
    padding-right: 16rem !important;
  }
  .mt-170-lg {
    margin-top: 17rem !important;
  }
  .pt-170-lg {
    padding-top: 17rem !important;
  }
  .mb-170-lg {
    margin-bottom: 17rem !important;
  }
  .pb-170-lg {
    padding-bottom: 17rem !important;
  }
  .ml-170-lg {
    margin-left: 17rem !important;
  }
  .pl-170-lg {
    padding-left: 17rem !important;
  }
  .mr-170-lg {
    margin-right: 17rem !important;
  }
  .pr-170-lg {
    padding-right: 17rem !important;
  }
  .mt-180-lg {
    margin-top: 18rem !important;
  }
  .pt-180-lg {
    padding-top: 18rem !important;
  }
  .mb-180-lg {
    margin-bottom: 18rem !important;
  }
  .pb-180-lg {
    padding-bottom: 18rem !important;
  }
  .ml-180-lg {
    margin-left: 18rem !important;
  }
  .pl-180-lg {
    padding-left: 18rem !important;
  }
  .mr-180-lg {
    margin-right: 18rem !important;
  }
  .pr-180-lg {
    padding-right: 18rem !important;
  }
  .mt-190-lg {
    margin-top: 19rem !important;
  }
  .pt-190-lg {
    padding-top: 19rem !important;
  }
  .mb-190-lg {
    margin-bottom: 19rem !important;
  }
  .pb-190-lg {
    padding-bottom: 19rem !important;
  }
  .ml-190-lg {
    margin-left: 19rem !important;
  }
  .pl-190-lg {
    padding-left: 19rem !important;
  }
  .mr-190-lg {
    margin-right: 19rem !important;
  }
  .pr-190-lg {
    padding-right: 19rem !important;
  }
  .mt-200-lg {
    margin-top: 20rem !important;
  }
  .pt-200-lg {
    padding-top: 20rem !important;
  }
  .mb-200-lg {
    margin-bottom: 20rem !important;
  }
  .pb-200-lg {
    padding-bottom: 20rem !important;
  }
  .ml-200-lg {
    margin-left: 20rem !important;
  }
  .pl-200-lg {
    padding-left: 20rem !important;
  }
  .mr-200-lg {
    margin-right: 20rem !important;
  }
  .pr-200-lg {
    padding-right: 20rem !important;
  }
}
@media (max-width: 767px) {
  .mt-0-md {
    margin-top: 0rem !important;
  }
  .pt-0-md {
    padding-top: 0rem !important;
  }
  .mb-0-md {
    margin-bottom: 0rem !important;
  }
  .pb-0-md {
    padding-bottom: 0rem !important;
  }
  .ml-0-md {
    margin-left: 0rem !important;
  }
  .pl-0-md {
    padding-left: 0rem !important;
  }
  .mr-0-md {
    margin-right: 0rem !important;
  }
  .pr-0-md {
    padding-right: 0rem !important;
  }
  .mt-5-md {
    margin-top: 0.5rem !important;
  }
  .pt-5-md {
    padding-top: 0.5rem !important;
  }
  .mb-5-md {
    margin-bottom: 0.5rem !important;
  }
  .pb-5-md {
    padding-bottom: 0.5rem !important;
  }
  .ml-5-md {
    margin-left: 0.5rem !important;
  }
  .pl-5-md {
    padding-left: 0.5rem !important;
  }
  .mr-5-md {
    margin-right: 0.5rem !important;
  }
  .pr-5-md {
    padding-right: 0.5rem !important;
  }
  .mt-10-md {
    margin-top: 1rem !important;
  }
  .pt-10-md {
    padding-top: 1rem !important;
  }
  .mb-10-md {
    margin-bottom: 1rem !important;
  }
  .pb-10-md {
    padding-bottom: 1rem !important;
  }
  .ml-10-md {
    margin-left: 1rem !important;
  }
  .pl-10-md {
    padding-left: 1rem !important;
  }
  .mr-10-md {
    margin-right: 1rem !important;
  }
  .pr-10-md {
    padding-right: 1rem !important;
  }
  .mt-15-md {
    margin-top: 1.5rem !important;
  }
  .pt-15-md {
    padding-top: 1.5rem !important;
  }
  .mb-15-md {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-md {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-md {
    margin-left: 1.5rem !important;
  }
  .pl-15-md {
    padding-left: 1.5rem !important;
  }
  .mr-15-md {
    margin-right: 1.5rem !important;
  }
  .pr-15-md {
    padding-right: 1.5rem !important;
  }
  .mt-20-md {
    margin-top: 2rem !important;
  }
  .pt-20-md {
    padding-top: 2rem !important;
  }
  .mb-20-md {
    margin-bottom: 2rem !important;
  }
  .pb-20-md {
    padding-bottom: 2rem !important;
  }
  .ml-20-md {
    margin-left: 2rem !important;
  }
  .pl-20-md {
    padding-left: 2rem !important;
  }
  .mr-20-md {
    margin-right: 2rem !important;
  }
  .pr-20-md {
    padding-right: 2rem !important;
  }
  .mt-25-md {
    margin-top: 2.5rem !important;
  }
  .pt-25-md {
    padding-top: 2.5rem !important;
  }
  .mb-25-md {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-md {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-md {
    margin-left: 2.5rem !important;
  }
  .pl-25-md {
    padding-left: 2.5rem !important;
  }
  .mr-25-md {
    margin-right: 2.5rem !important;
  }
  .pr-25-md {
    padding-right: 2.5rem !important;
  }
  .mt-30-md {
    margin-top: 3rem !important;
  }
  .pt-30-md {
    padding-top: 3rem !important;
  }
  .mb-30-md {
    margin-bottom: 3rem !important;
  }
  .pb-30-md {
    padding-bottom: 3rem !important;
  }
  .ml-30-md {
    margin-left: 3rem !important;
  }
  .pl-30-md {
    padding-left: 3rem !important;
  }
  .mr-30-md {
    margin-right: 3rem !important;
  }
  .pr-30-md {
    padding-right: 3rem !important;
  }
  .mt-35-md {
    margin-top: 3.5rem !important;
  }
  .pt-35-md {
    padding-top: 3.5rem !important;
  }
  .mb-35-md {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-md {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-md {
    margin-left: 3.5rem !important;
  }
  .pl-35-md {
    padding-left: 3.5rem !important;
  }
  .mr-35-md {
    margin-right: 3.5rem !important;
  }
  .pr-35-md {
    padding-right: 3.5rem !important;
  }
  .mt-40-md {
    margin-top: 4rem !important;
  }
  .pt-40-md {
    padding-top: 4rem !important;
  }
  .mb-40-md {
    margin-bottom: 4rem !important;
  }
  .pb-40-md {
    padding-bottom: 4rem !important;
  }
  .ml-40-md {
    margin-left: 4rem !important;
  }
  .pl-40-md {
    padding-left: 4rem !important;
  }
  .mr-40-md {
    margin-right: 4rem !important;
  }
  .pr-40-md {
    padding-right: 4rem !important;
  }
  .mt-45-md {
    margin-top: 4.5rem !important;
  }
  .pt-45-md {
    padding-top: 4.5rem !important;
  }
  .mb-45-md {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-md {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-md {
    margin-left: 4.5rem !important;
  }
  .pl-45-md {
    padding-left: 4.5rem !important;
  }
  .mr-45-md {
    margin-right: 4.5rem !important;
  }
  .pr-45-md {
    padding-right: 4.5rem !important;
  }
  .mt-50-md {
    margin-top: 5rem !important;
  }
  .pt-50-md {
    padding-top: 5rem !important;
  }
  .mb-50-md {
    margin-bottom: 5rem !important;
  }
  .pb-50-md {
    padding-bottom: 5rem !important;
  }
  .ml-50-md {
    margin-left: 5rem !important;
  }
  .pl-50-md {
    padding-left: 5rem !important;
  }
  .mr-50-md {
    margin-right: 5rem !important;
  }
  .pr-50-md {
    padding-right: 5rem !important;
  }
  .mt-55-md {
    margin-top: 5.5rem !important;
  }
  .pt-55-md {
    padding-top: 5.5rem !important;
  }
  .mb-55-md {
    margin-bottom: 5.5rem !important;
  }
  .pb-55-md {
    padding-bottom: 5.5rem !important;
  }
  .ml-55-md {
    margin-left: 5.5rem !important;
  }
  .pl-55-md {
    padding-left: 5.5rem !important;
  }
  .mr-55-md {
    margin-right: 5.5rem !important;
  }
  .pr-55-md {
    padding-right: 5.5rem !important;
  }
  .mt-60-md {
    margin-top: 6rem !important;
  }
  .pt-60-md {
    padding-top: 6rem !important;
  }
  .mb-60-md {
    margin-bottom: 6rem !important;
  }
  .pb-60-md {
    padding-bottom: 6rem !important;
  }
  .ml-60-md {
    margin-left: 6rem !important;
  }
  .pl-60-md {
    padding-left: 6rem !important;
  }
  .mr-60-md {
    margin-right: 6rem !important;
  }
  .pr-60-md {
    padding-right: 6rem !important;
  }
  .mt-65-md {
    margin-top: 6.5rem !important;
  }
  .pt-65-md {
    padding-top: 6.5rem !important;
  }
  .mb-65-md {
    margin-bottom: 6.5rem !important;
  }
  .pb-65-md {
    padding-bottom: 6.5rem !important;
  }
  .ml-65-md {
    margin-left: 6.5rem !important;
  }
  .pl-65-md {
    padding-left: 6.5rem !important;
  }
  .mr-65-md {
    margin-right: 6.5rem !important;
  }
  .pr-65-md {
    padding-right: 6.5rem !important;
  }
  .mt-70-md {
    margin-top: 7rem !important;
  }
  .pt-70-md {
    padding-top: 7rem !important;
  }
  .mb-70-md {
    margin-bottom: 7rem !important;
  }
  .pb-70-md {
    padding-bottom: 7rem !important;
  }
  .ml-70-md {
    margin-left: 7rem !important;
  }
  .pl-70-md {
    padding-left: 7rem !important;
  }
  .mr-70-md {
    margin-right: 7rem !important;
  }
  .pr-70-md {
    padding-right: 7rem !important;
  }
  .mt-75-md {
    margin-top: 7.5rem !important;
  }
  .pt-75-md {
    padding-top: 7.5rem !important;
  }
  .mb-75-md {
    margin-bottom: 7.5rem !important;
  }
  .pb-75-md {
    padding-bottom: 7.5rem !important;
  }
  .ml-75-md {
    margin-left: 7.5rem !important;
  }
  .pl-75-md {
    padding-left: 7.5rem !important;
  }
  .mr-75-md {
    margin-right: 7.5rem !important;
  }
  .pr-75-md {
    padding-right: 7.5rem !important;
  }
  .mt-80-md {
    margin-top: 8rem !important;
  }
  .pt-80-md {
    padding-top: 8rem !important;
  }
  .mb-80-md {
    margin-bottom: 8rem !important;
  }
  .pb-80-md {
    padding-bottom: 8rem !important;
  }
  .ml-80-md {
    margin-left: 8rem !important;
  }
  .pl-80-md {
    padding-left: 8rem !important;
  }
  .mr-80-md {
    margin-right: 8rem !important;
  }
  .pr-80-md {
    padding-right: 8rem !important;
  }
  .mt-85-md {
    margin-top: 8.5rem !important;
  }
  .pt-85-md {
    padding-top: 8.5rem !important;
  }
  .mb-85-md {
    margin-bottom: 8.5rem !important;
  }
  .pb-85-md {
    padding-bottom: 8.5rem !important;
  }
  .ml-85-md {
    margin-left: 8.5rem !important;
  }
  .pl-85-md {
    padding-left: 8.5rem !important;
  }
  .mr-85-md {
    margin-right: 8.5rem !important;
  }
  .pr-85-md {
    padding-right: 8.5rem !important;
  }
  .mt-90-md {
    margin-top: 9rem !important;
  }
  .pt-90-md {
    padding-top: 9rem !important;
  }
  .mb-90-md {
    margin-bottom: 9rem !important;
  }
  .pb-90-md {
    padding-bottom: 9rem !important;
  }
  .ml-90-md {
    margin-left: 9rem !important;
  }
  .pl-90-md {
    padding-left: 9rem !important;
  }
  .mr-90-md {
    margin-right: 9rem !important;
  }
  .pr-90-md {
    padding-right: 9rem !important;
  }
  .mt-95-md {
    margin-top: 9.5rem !important;
  }
  .pt-95-md {
    padding-top: 9.5rem !important;
  }
  .mb-95-md {
    margin-bottom: 9.5rem !important;
  }
  .pb-95-md {
    padding-bottom: 9.5rem !important;
  }
  .ml-95-md {
    margin-left: 9.5rem !important;
  }
  .pl-95-md {
    padding-left: 9.5rem !important;
  }
  .mr-95-md {
    margin-right: 9.5rem !important;
  }
  .pr-95-md {
    padding-right: 9.5rem !important;
  }
  .mt-100-md {
    margin-top: 10rem !important;
  }
  .pt-100-md {
    padding-top: 10rem !important;
  }
  .mb-100-md {
    margin-bottom: 10rem !important;
  }
  .pb-100-md {
    padding-bottom: 10rem !important;
  }
  .ml-100-md {
    margin-left: 10rem !important;
  }
  .pl-100-md {
    padding-left: 10rem !important;
  }
  .mr-100-md {
    margin-right: 10rem !important;
  }
  .pr-100-md {
    padding-right: 10rem !important;
  }
  .mt-110-md {
    margin-top: 11rem !important;
  }
  .pt-110-md {
    padding-top: 11rem !important;
  }
  .mb-110-md {
    margin-bottom: 11rem !important;
  }
  .pb-110-md {
    padding-bottom: 11rem !important;
  }
  .ml-110-md {
    margin-left: 11rem !important;
  }
  .pl-110-md {
    padding-left: 11rem !important;
  }
  .mr-110-md {
    margin-right: 11rem !important;
  }
  .pr-110-md {
    padding-right: 11rem !important;
  }
  .mt-120-md {
    margin-top: 12rem !important;
  }
  .pt-120-md {
    padding-top: 12rem !important;
  }
  .mb-120-md {
    margin-bottom: 12rem !important;
  }
  .pb-120-md {
    padding-bottom: 12rem !important;
  }
  .ml-120-md {
    margin-left: 12rem !important;
  }
  .pl-120-md {
    padding-left: 12rem !important;
  }
  .mr-120-md {
    margin-right: 12rem !important;
  }
  .pr-120-md {
    padding-right: 12rem !important;
  }
  .mt-130-md {
    margin-top: 13rem !important;
  }
  .pt-130-md {
    padding-top: 13rem !important;
  }
  .mb-130-md {
    margin-bottom: 13rem !important;
  }
  .pb-130-md {
    padding-bottom: 13rem !important;
  }
  .ml-130-md {
    margin-left: 13rem !important;
  }
  .pl-130-md {
    padding-left: 13rem !important;
  }
  .mr-130-md {
    margin-right: 13rem !important;
  }
  .pr-130-md {
    padding-right: 13rem !important;
  }
  .mt-140-md {
    margin-top: 14rem !important;
  }
  .pt-140-md {
    padding-top: 14rem !important;
  }
  .mb-140-md {
    margin-bottom: 14rem !important;
  }
  .pb-140-md {
    padding-bottom: 14rem !important;
  }
  .ml-140-md {
    margin-left: 14rem !important;
  }
  .pl-140-md {
    padding-left: 14rem !important;
  }
  .mr-140-md {
    margin-right: 14rem !important;
  }
  .pr-140-md {
    padding-right: 14rem !important;
  }
  .mt-150-md {
    margin-top: 15rem !important;
  }
  .pt-150-md {
    padding-top: 15rem !important;
  }
  .mb-150-md {
    margin-bottom: 15rem !important;
  }
  .pb-150-md {
    padding-bottom: 15rem !important;
  }
  .ml-150-md {
    margin-left: 15rem !important;
  }
  .pl-150-md {
    padding-left: 15rem !important;
  }
  .mr-150-md {
    margin-right: 15rem !important;
  }
  .pr-150-md {
    padding-right: 15rem !important;
  }
  .mt-160-md {
    margin-top: 16rem !important;
  }
  .pt-160-md {
    padding-top: 16rem !important;
  }
  .mb-160-md {
    margin-bottom: 16rem !important;
  }
  .pb-160-md {
    padding-bottom: 16rem !important;
  }
  .ml-160-md {
    margin-left: 16rem !important;
  }
  .pl-160-md {
    padding-left: 16rem !important;
  }
  .mr-160-md {
    margin-right: 16rem !important;
  }
  .pr-160-md {
    padding-right: 16rem !important;
  }
  .mt-170-md {
    margin-top: 17rem !important;
  }
  .pt-170-md {
    padding-top: 17rem !important;
  }
  .mb-170-md {
    margin-bottom: 17rem !important;
  }
  .pb-170-md {
    padding-bottom: 17rem !important;
  }
  .ml-170-md {
    margin-left: 17rem !important;
  }
  .pl-170-md {
    padding-left: 17rem !important;
  }
  .mr-170-md {
    margin-right: 17rem !important;
  }
  .pr-170-md {
    padding-right: 17rem !important;
  }
  .mt-180-md {
    margin-top: 18rem !important;
  }
  .pt-180-md {
    padding-top: 18rem !important;
  }
  .mb-180-md {
    margin-bottom: 18rem !important;
  }
  .pb-180-md {
    padding-bottom: 18rem !important;
  }
  .ml-180-md {
    margin-left: 18rem !important;
  }
  .pl-180-md {
    padding-left: 18rem !important;
  }
  .mr-180-md {
    margin-right: 18rem !important;
  }
  .pr-180-md {
    padding-right: 18rem !important;
  }
  .mt-190-md {
    margin-top: 19rem !important;
  }
  .pt-190-md {
    padding-top: 19rem !important;
  }
  .mb-190-md {
    margin-bottom: 19rem !important;
  }
  .pb-190-md {
    padding-bottom: 19rem !important;
  }
  .ml-190-md {
    margin-left: 19rem !important;
  }
  .pl-190-md {
    padding-left: 19rem !important;
  }
  .mr-190-md {
    margin-right: 19rem !important;
  }
  .pr-190-md {
    padding-right: 19rem !important;
  }
  .mt-200-md {
    margin-top: 20rem !important;
  }
  .pt-200-md {
    padding-top: 20rem !important;
  }
  .mb-200-md {
    margin-bottom: 20rem !important;
  }
  .pb-200-md {
    padding-bottom: 20rem !important;
  }
  .ml-200-md {
    margin-left: 20rem !important;
  }
  .pl-200-md {
    padding-left: 20rem !important;
  }
  .mr-200-md {
    margin-right: 20rem !important;
  }
  .pr-200-md {
    padding-right: 20rem !important;
  }
}
@media (max-width: 575px) {
  .mt-0-sm {
    margin-top: 0rem !important;
  }
  .pt-0-sm {
    padding-top: 0rem !important;
  }
  .mb-0-sm {
    margin-bottom: 0rem !important;
  }
  .pb-0-sm {
    padding-bottom: 0rem !important;
  }
  .ml-0-sm {
    margin-left: 0rem !important;
  }
  .pl-0-sm {
    padding-left: 0rem !important;
  }
  .mr-0-sm {
    margin-right: 0rem !important;
  }
  .pr-0-sm {
    padding-right: 0rem !important;
  }
  .mt-5-sm {
    margin-top: 0.5rem !important;
  }
  .pt-5-sm {
    padding-top: 0.5rem !important;
  }
  .mb-5-sm {
    margin-bottom: 0.5rem !important;
  }
  .pb-5-sm {
    padding-bottom: 0.5rem !important;
  }
  .ml-5-sm {
    margin-left: 0.5rem !important;
  }
  .pl-5-sm {
    padding-left: 0.5rem !important;
  }
  .mr-5-sm {
    margin-right: 0.5rem !important;
  }
  .pr-5-sm {
    padding-right: 0.5rem !important;
  }
  .mt-10-sm {
    margin-top: 1rem !important;
  }
  .pt-10-sm {
    padding-top: 1rem !important;
  }
  .mb-10-sm {
    margin-bottom: 1rem !important;
  }
  .pb-10-sm {
    padding-bottom: 1rem !important;
  }
  .ml-10-sm {
    margin-left: 1rem !important;
  }
  .pl-10-sm {
    padding-left: 1rem !important;
  }
  .mr-10-sm {
    margin-right: 1rem !important;
  }
  .pr-10-sm {
    padding-right: 1rem !important;
  }
  .mt-15-sm {
    margin-top: 1.5rem !important;
  }
  .pt-15-sm {
    padding-top: 1.5rem !important;
  }
  .mb-15-sm {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-sm {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-sm {
    margin-left: 1.5rem !important;
  }
  .pl-15-sm {
    padding-left: 1.5rem !important;
  }
  .mr-15-sm {
    margin-right: 1.5rem !important;
  }
  .pr-15-sm {
    padding-right: 1.5rem !important;
  }
  .mt-20-sm {
    margin-top: 2rem !important;
  }
  .pt-20-sm {
    padding-top: 2rem !important;
  }
  .mb-20-sm {
    margin-bottom: 2rem !important;
  }
  .pb-20-sm {
    padding-bottom: 2rem !important;
  }
  .ml-20-sm {
    margin-left: 2rem !important;
  }
  .pl-20-sm {
    padding-left: 2rem !important;
  }
  .mr-20-sm {
    margin-right: 2rem !important;
  }
  .pr-20-sm {
    padding-right: 2rem !important;
  }
  .mt-25-sm {
    margin-top: 2.5rem !important;
  }
  .pt-25-sm {
    padding-top: 2.5rem !important;
  }
  .mb-25-sm {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-sm {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-sm {
    margin-left: 2.5rem !important;
  }
  .pl-25-sm {
    padding-left: 2.5rem !important;
  }
  .mr-25-sm {
    margin-right: 2.5rem !important;
  }
  .pr-25-sm {
    padding-right: 2.5rem !important;
  }
  .mt-30-sm {
    margin-top: 3rem !important;
  }
  .pt-30-sm {
    padding-top: 3rem !important;
  }
  .mb-30-sm {
    margin-bottom: 3rem !important;
  }
  .pb-30-sm {
    padding-bottom: 3rem !important;
  }
  .ml-30-sm {
    margin-left: 3rem !important;
  }
  .pl-30-sm {
    padding-left: 3rem !important;
  }
  .mr-30-sm {
    margin-right: 3rem !important;
  }
  .pr-30-sm {
    padding-right: 3rem !important;
  }
  .mt-35-sm {
    margin-top: 3.5rem !important;
  }
  .pt-35-sm {
    padding-top: 3.5rem !important;
  }
  .mb-35-sm {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-sm {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-sm {
    margin-left: 3.5rem !important;
  }
  .pl-35-sm {
    padding-left: 3.5rem !important;
  }
  .mr-35-sm {
    margin-right: 3.5rem !important;
  }
  .pr-35-sm {
    padding-right: 3.5rem !important;
  }
  .mt-40-sm {
    margin-top: 4rem !important;
  }
  .pt-40-sm {
    padding-top: 4rem !important;
  }
  .mb-40-sm {
    margin-bottom: 4rem !important;
  }
  .pb-40-sm {
    padding-bottom: 4rem !important;
  }
  .ml-40-sm {
    margin-left: 4rem !important;
  }
  .pl-40-sm {
    padding-left: 4rem !important;
  }
  .mr-40-sm {
    margin-right: 4rem !important;
  }
  .pr-40-sm {
    padding-right: 4rem !important;
  }
  .mt-45-sm {
    margin-top: 4.5rem !important;
  }
  .pt-45-sm {
    padding-top: 4.5rem !important;
  }
  .mb-45-sm {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-sm {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-sm {
    margin-left: 4.5rem !important;
  }
  .pl-45-sm {
    padding-left: 4.5rem !important;
  }
  .mr-45-sm {
    margin-right: 4.5rem !important;
  }
  .pr-45-sm {
    padding-right: 4.5rem !important;
  }
  .mt-50-sm {
    margin-top: 5rem !important;
  }
  .pt-50-sm {
    padding-top: 5rem !important;
  }
  .mb-50-sm {
    margin-bottom: 5rem !important;
  }
  .pb-50-sm {
    padding-bottom: 5rem !important;
  }
  .ml-50-sm {
    margin-left: 5rem !important;
  }
  .pl-50-sm {
    padding-left: 5rem !important;
  }
  .mr-50-sm {
    margin-right: 5rem !important;
  }
  .pr-50-sm {
    padding-right: 5rem !important;
  }
  .mt-55-sm {
    margin-top: 5.5rem !important;
  }
  .pt-55-sm {
    padding-top: 5.5rem !important;
  }
  .mb-55-sm {
    margin-bottom: 5.5rem !important;
  }
  .pb-55-sm {
    padding-bottom: 5.5rem !important;
  }
  .ml-55-sm {
    margin-left: 5.5rem !important;
  }
  .pl-55-sm {
    padding-left: 5.5rem !important;
  }
  .mr-55-sm {
    margin-right: 5.5rem !important;
  }
  .pr-55-sm {
    padding-right: 5.5rem !important;
  }
  .mt-60-sm {
    margin-top: 6rem !important;
  }
  .pt-60-sm {
    padding-top: 6rem !important;
  }
  .mb-60-sm {
    margin-bottom: 6rem !important;
  }
  .pb-60-sm {
    padding-bottom: 6rem !important;
  }
  .ml-60-sm {
    margin-left: 6rem !important;
  }
  .pl-60-sm {
    padding-left: 6rem !important;
  }
  .mr-60-sm {
    margin-right: 6rem !important;
  }
  .pr-60-sm {
    padding-right: 6rem !important;
  }
  .mt-65-sm {
    margin-top: 6.5rem !important;
  }
  .pt-65-sm {
    padding-top: 6.5rem !important;
  }
  .mb-65-sm {
    margin-bottom: 6.5rem !important;
  }
  .pb-65-sm {
    padding-bottom: 6.5rem !important;
  }
  .ml-65-sm {
    margin-left: 6.5rem !important;
  }
  .pl-65-sm {
    padding-left: 6.5rem !important;
  }
  .mr-65-sm {
    margin-right: 6.5rem !important;
  }
  .pr-65-sm {
    padding-right: 6.5rem !important;
  }
  .mt-70-sm {
    margin-top: 7rem !important;
  }
  .pt-70-sm {
    padding-top: 7rem !important;
  }
  .mb-70-sm {
    margin-bottom: 7rem !important;
  }
  .pb-70-sm {
    padding-bottom: 7rem !important;
  }
  .ml-70-sm {
    margin-left: 7rem !important;
  }
  .pl-70-sm {
    padding-left: 7rem !important;
  }
  .mr-70-sm {
    margin-right: 7rem !important;
  }
  .pr-70-sm {
    padding-right: 7rem !important;
  }
  .mt-75-sm {
    margin-top: 7.5rem !important;
  }
  .pt-75-sm {
    padding-top: 7.5rem !important;
  }
  .mb-75-sm {
    margin-bottom: 7.5rem !important;
  }
  .pb-75-sm {
    padding-bottom: 7.5rem !important;
  }
  .ml-75-sm {
    margin-left: 7.5rem !important;
  }
  .pl-75-sm {
    padding-left: 7.5rem !important;
  }
  .mr-75-sm {
    margin-right: 7.5rem !important;
  }
  .pr-75-sm {
    padding-right: 7.5rem !important;
  }
  .mt-80-sm {
    margin-top: 8rem !important;
  }
  .pt-80-sm {
    padding-top: 8rem !important;
  }
  .mb-80-sm {
    margin-bottom: 8rem !important;
  }
  .pb-80-sm {
    padding-bottom: 8rem !important;
  }
  .ml-80-sm {
    margin-left: 8rem !important;
  }
  .pl-80-sm {
    padding-left: 8rem !important;
  }
  .mr-80-sm {
    margin-right: 8rem !important;
  }
  .pr-80-sm {
    padding-right: 8rem !important;
  }
  .mt-85-sm {
    margin-top: 8.5rem !important;
  }
  .pt-85-sm {
    padding-top: 8.5rem !important;
  }
  .mb-85-sm {
    margin-bottom: 8.5rem !important;
  }
  .pb-85-sm {
    padding-bottom: 8.5rem !important;
  }
  .ml-85-sm {
    margin-left: 8.5rem !important;
  }
  .pl-85-sm {
    padding-left: 8.5rem !important;
  }
  .mr-85-sm {
    margin-right: 8.5rem !important;
  }
  .pr-85-sm {
    padding-right: 8.5rem !important;
  }
  .mt-90-sm {
    margin-top: 9rem !important;
  }
  .pt-90-sm {
    padding-top: 9rem !important;
  }
  .mb-90-sm {
    margin-bottom: 9rem !important;
  }
  .pb-90-sm {
    padding-bottom: 9rem !important;
  }
  .ml-90-sm {
    margin-left: 9rem !important;
  }
  .pl-90-sm {
    padding-left: 9rem !important;
  }
  .mr-90-sm {
    margin-right: 9rem !important;
  }
  .pr-90-sm {
    padding-right: 9rem !important;
  }
  .mt-95-sm {
    margin-top: 9.5rem !important;
  }
  .pt-95-sm {
    padding-top: 9.5rem !important;
  }
  .mb-95-sm {
    margin-bottom: 9.5rem !important;
  }
  .pb-95-sm {
    padding-bottom: 9.5rem !important;
  }
  .ml-95-sm {
    margin-left: 9.5rem !important;
  }
  .pl-95-sm {
    padding-left: 9.5rem !important;
  }
  .mr-95-sm {
    margin-right: 9.5rem !important;
  }
  .pr-95-sm {
    padding-right: 9.5rem !important;
  }
  .mt-100-sm {
    margin-top: 10rem !important;
  }
  .pt-100-sm {
    padding-top: 10rem !important;
  }
  .mb-100-sm {
    margin-bottom: 10rem !important;
  }
  .pb-100-sm {
    padding-bottom: 10rem !important;
  }
  .ml-100-sm {
    margin-left: 10rem !important;
  }
  .pl-100-sm {
    padding-left: 10rem !important;
  }
  .mr-100-sm {
    margin-right: 10rem !important;
  }
  .pr-100-sm {
    padding-right: 10rem !important;
  }
  .mt-110-sm {
    margin-top: 11rem !important;
  }
  .pt-110-sm {
    padding-top: 11rem !important;
  }
  .mb-110-sm {
    margin-bottom: 11rem !important;
  }
  .pb-110-sm {
    padding-bottom: 11rem !important;
  }
  .ml-110-sm {
    margin-left: 11rem !important;
  }
  .pl-110-sm {
    padding-left: 11rem !important;
  }
  .mr-110-sm {
    margin-right: 11rem !important;
  }
  .pr-110-sm {
    padding-right: 11rem !important;
  }
  .mt-120-sm {
    margin-top: 12rem !important;
  }
  .pt-120-sm {
    padding-top: 12rem !important;
  }
  .mb-120-sm {
    margin-bottom: 12rem !important;
  }
  .pb-120-sm {
    padding-bottom: 12rem !important;
  }
  .ml-120-sm {
    margin-left: 12rem !important;
  }
  .pl-120-sm {
    padding-left: 12rem !important;
  }
  .mr-120-sm {
    margin-right: 12rem !important;
  }
  .pr-120-sm {
    padding-right: 12rem !important;
  }
  .mt-130-sm {
    margin-top: 13rem !important;
  }
  .pt-130-sm {
    padding-top: 13rem !important;
  }
  .mb-130-sm {
    margin-bottom: 13rem !important;
  }
  .pb-130-sm {
    padding-bottom: 13rem !important;
  }
  .ml-130-sm {
    margin-left: 13rem !important;
  }
  .pl-130-sm {
    padding-left: 13rem !important;
  }
  .mr-130-sm {
    margin-right: 13rem !important;
  }
  .pr-130-sm {
    padding-right: 13rem !important;
  }
  .mt-140-sm {
    margin-top: 14rem !important;
  }
  .pt-140-sm {
    padding-top: 14rem !important;
  }
  .mb-140-sm {
    margin-bottom: 14rem !important;
  }
  .pb-140-sm {
    padding-bottom: 14rem !important;
  }
  .ml-140-sm {
    margin-left: 14rem !important;
  }
  .pl-140-sm {
    padding-left: 14rem !important;
  }
  .mr-140-sm {
    margin-right: 14rem !important;
  }
  .pr-140-sm {
    padding-right: 14rem !important;
  }
  .mt-150-sm {
    margin-top: 15rem !important;
  }
  .pt-150-sm {
    padding-top: 15rem !important;
  }
  .mb-150-sm {
    margin-bottom: 15rem !important;
  }
  .pb-150-sm {
    padding-bottom: 15rem !important;
  }
  .ml-150-sm {
    margin-left: 15rem !important;
  }
  .pl-150-sm {
    padding-left: 15rem !important;
  }
  .mr-150-sm {
    margin-right: 15rem !important;
  }
  .pr-150-sm {
    padding-right: 15rem !important;
  }
  .mt-160-sm {
    margin-top: 16rem !important;
  }
  .pt-160-sm {
    padding-top: 16rem !important;
  }
  .mb-160-sm {
    margin-bottom: 16rem !important;
  }
  .pb-160-sm {
    padding-bottom: 16rem !important;
  }
  .ml-160-sm {
    margin-left: 16rem !important;
  }
  .pl-160-sm {
    padding-left: 16rem !important;
  }
  .mr-160-sm {
    margin-right: 16rem !important;
  }
  .pr-160-sm {
    padding-right: 16rem !important;
  }
  .mt-170-sm {
    margin-top: 17rem !important;
  }
  .pt-170-sm {
    padding-top: 17rem !important;
  }
  .mb-170-sm {
    margin-bottom: 17rem !important;
  }
  .pb-170-sm {
    padding-bottom: 17rem !important;
  }
  .ml-170-sm {
    margin-left: 17rem !important;
  }
  .pl-170-sm {
    padding-left: 17rem !important;
  }
  .mr-170-sm {
    margin-right: 17rem !important;
  }
  .pr-170-sm {
    padding-right: 17rem !important;
  }
  .mt-180-sm {
    margin-top: 18rem !important;
  }
  .pt-180-sm {
    padding-top: 18rem !important;
  }
  .mb-180-sm {
    margin-bottom: 18rem !important;
  }
  .pb-180-sm {
    padding-bottom: 18rem !important;
  }
  .ml-180-sm {
    margin-left: 18rem !important;
  }
  .pl-180-sm {
    padding-left: 18rem !important;
  }
  .mr-180-sm {
    margin-right: 18rem !important;
  }
  .pr-180-sm {
    padding-right: 18rem !important;
  }
  .mt-190-sm {
    margin-top: 19rem !important;
  }
  .pt-190-sm {
    padding-top: 19rem !important;
  }
  .mb-190-sm {
    margin-bottom: 19rem !important;
  }
  .pb-190-sm {
    padding-bottom: 19rem !important;
  }
  .ml-190-sm {
    margin-left: 19rem !important;
  }
  .pl-190-sm {
    padding-left: 19rem !important;
  }
  .mr-190-sm {
    margin-right: 19rem !important;
  }
  .pr-190-sm {
    padding-right: 19rem !important;
  }
  .mt-200-sm {
    margin-top: 20rem !important;
  }
  .pt-200-sm {
    padding-top: 20rem !important;
  }
  .mb-200-sm {
    margin-bottom: 20rem !important;
  }
  .pb-200-sm {
    padding-bottom: 20rem !important;
  }
  .ml-200-sm {
    margin-left: 20rem !important;
  }
  .pl-200-sm {
    padding-left: 20rem !important;
  }
  .mr-200-sm {
    margin-right: 20rem !important;
  }
  .pr-200-sm {
    padding-right: 20rem !important;
  }
}
.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-55 {
  gap: 5.5rem !important;
}

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

.gap-65 {
  gap: 6.5rem !important;
}

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

.gap-75 {
  gap: 7.5rem !important;
}

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

.gap-85 {
  gap: 8.5rem !important;
}

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

.gap-95 {
  gap: 9.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 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-55-xl {
    gap: 5.5rem !important;
  }
  .gap-60-xl {
    gap: 6rem !important;
  }
  .gap-65-xl {
    gap: 6.5rem !important;
  }
  .gap-70-xl {
    gap: 7rem !important;
  }
  .gap-75-xl {
    gap: 7.5rem !important;
  }
  .gap-80-xl {
    gap: 8rem !important;
  }
  .gap-85-xl {
    gap: 8.5rem !important;
  }
  .gap-90-xl {
    gap: 9rem !important;
  }
  .gap-95-xl {
    gap: 9.5rem !important;
  }
  .gap-100-xl {
    gap: 10rem !important;
  }
  .gap-110-xl {
    gap: 11rem !important;
  }
  .gap-120-xl {
    gap: 12rem !important;
  }
  .gap-130-xl {
    gap: 13rem !important;
  }
  .gap-140-xl {
    gap: 14rem !important;
  }
  .gap-150-xl {
    gap: 15rem !important;
  }
  .gap-160-xl {
    gap: 16rem !important;
  }
  .gap-170-xl {
    gap: 17rem !important;
  }
  .gap-180-xl {
    gap: 18rem !important;
  }
  .gap-190-xl {
    gap: 19rem !important;
  }
  .gap-200-xl {
    gap: 20rem !important;
  }
}
@media (max-width: 1350px) {
  .gap-0-ex {
    gap: 0rem !important;
  }
  .gap-5-ex {
    gap: 0.5rem !important;
  }
  .gap-10-ex {
    gap: 1rem !important;
  }
  .gap-15-ex {
    gap: 1.5rem !important;
  }
  .gap-20-ex {
    gap: 2rem !important;
  }
  .gap-25-ex {
    gap: 2.5rem !important;
  }
  .gap-30-ex {
    gap: 3rem !important;
  }
  .gap-35-ex {
    gap: 3.5rem !important;
  }
  .gap-40-ex {
    gap: 4rem !important;
  }
  .gap-45-ex {
    gap: 4.5rem !important;
  }
  .gap-50-ex {
    gap: 5rem !important;
  }
  .gap-55-ex {
    gap: 5.5rem !important;
  }
  .gap-60-ex {
    gap: 6rem !important;
  }
  .gap-65-ex {
    gap: 6.5rem !important;
  }
  .gap-70-ex {
    gap: 7rem !important;
  }
  .gap-75-ex {
    gap: 7.5rem !important;
  }
  .gap-80-ex {
    gap: 8rem !important;
  }
  .gap-85-ex {
    gap: 8.5rem !important;
  }
  .gap-90-ex {
    gap: 9rem !important;
  }
  .gap-95-ex {
    gap: 9.5rem !important;
  }
  .gap-100-ex {
    gap: 10rem !important;
  }
  .gap-110-ex {
    gap: 11rem !important;
  }
  .gap-120-ex {
    gap: 12rem !important;
  }
  .gap-130-ex {
    gap: 13rem !important;
  }
  .gap-140-ex {
    gap: 14rem !important;
  }
  .gap-150-ex {
    gap: 15rem !important;
  }
  .gap-160-ex {
    gap: 16rem !important;
  }
  .gap-170-ex {
    gap: 17rem !important;
  }
  .gap-180-ex {
    gap: 18rem !important;
  }
  .gap-190-ex {
    gap: 19rem !important;
  }
  .gap-200-ex {
    gap: 20rem !important;
  }
}
@media (max-width: 1023px) {
  .gap-0-lg {
    gap: 0rem !important;
  }
  .gap-5-lg {
    gap: 0.5rem !important;
  }
  .gap-10-lg {
    gap: 1rem !important;
  }
  .gap-15-lg {
    gap: 1.5rem !important;
  }
  .gap-20-lg {
    gap: 2rem !important;
  }
  .gap-25-lg {
    gap: 2.5rem !important;
  }
  .gap-30-lg {
    gap: 3rem !important;
  }
  .gap-35-lg {
    gap: 3.5rem !important;
  }
  .gap-40-lg {
    gap: 4rem !important;
  }
  .gap-45-lg {
    gap: 4.5rem !important;
  }
  .gap-50-lg {
    gap: 5rem !important;
  }
  .gap-55-lg {
    gap: 5.5rem !important;
  }
  .gap-60-lg {
    gap: 6rem !important;
  }
  .gap-65-lg {
    gap: 6.5rem !important;
  }
  .gap-70-lg {
    gap: 7rem !important;
  }
  .gap-75-lg {
    gap: 7.5rem !important;
  }
  .gap-80-lg {
    gap: 8rem !important;
  }
  .gap-85-lg {
    gap: 8.5rem !important;
  }
  .gap-90-lg {
    gap: 9rem !important;
  }
  .gap-95-lg {
    gap: 9.5rem !important;
  }
  .gap-100-lg {
    gap: 10rem !important;
  }
  .gap-110-lg {
    gap: 11rem !important;
  }
  .gap-120-lg {
    gap: 12rem !important;
  }
  .gap-130-lg {
    gap: 13rem !important;
  }
  .gap-140-lg {
    gap: 14rem !important;
  }
  .gap-150-lg {
    gap: 15rem !important;
  }
  .gap-160-lg {
    gap: 16rem !important;
  }
  .gap-170-lg {
    gap: 17rem !important;
  }
  .gap-180-lg {
    gap: 18rem !important;
  }
  .gap-190-lg {
    gap: 19rem !important;
  }
  .gap-200-lg {
    gap: 20rem !important;
  }
}
@media (max-width: 767px) {
  .gap-0-md {
    gap: 0rem !important;
  }
  .gap-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-55-md {
    gap: 5.5rem !important;
  }
  .gap-60-md {
    gap: 6rem !important;
  }
  .gap-65-md {
    gap: 6.5rem !important;
  }
  .gap-70-md {
    gap: 7rem !important;
  }
  .gap-75-md {
    gap: 7.5rem !important;
  }
  .gap-80-md {
    gap: 8rem !important;
  }
  .gap-85-md {
    gap: 8.5rem !important;
  }
  .gap-90-md {
    gap: 9rem !important;
  }
  .gap-95-md {
    gap: 9.5rem !important;
  }
  .gap-100-md {
    gap: 10rem !important;
  }
  .gap-110-md {
    gap: 11rem !important;
  }
  .gap-120-md {
    gap: 12rem !important;
  }
  .gap-130-md {
    gap: 13rem !important;
  }
  .gap-140-md {
    gap: 14rem !important;
  }
  .gap-150-md {
    gap: 15rem !important;
  }
  .gap-160-md {
    gap: 16rem !important;
  }
  .gap-170-md {
    gap: 17rem !important;
  }
  .gap-180-md {
    gap: 18rem !important;
  }
  .gap-190-md {
    gap: 19rem !important;
  }
  .gap-200-md {
    gap: 20rem !important;
  }
}
@media (max-width: 575px) {
  .gap-0-sm {
    gap: 0rem !important;
  }
  .gap-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-55-sm {
    gap: 5.5rem !important;
  }
  .gap-60-sm {
    gap: 6rem !important;
  }
  .gap-65-sm {
    gap: 6.5rem !important;
  }
  .gap-70-sm {
    gap: 7rem !important;
  }
  .gap-75-sm {
    gap: 7.5rem !important;
  }
  .gap-80-sm {
    gap: 8rem !important;
  }
  .gap-85-sm {
    gap: 8.5rem !important;
  }
  .gap-90-sm {
    gap: 9rem !important;
  }
  .gap-95-sm {
    gap: 9.5rem !important;
  }
  .gap-100-sm {
    gap: 10rem !important;
  }
  .gap-110-sm {
    gap: 11rem !important;
  }
  .gap-120-sm {
    gap: 12rem !important;
  }
  .gap-130-sm {
    gap: 13rem !important;
  }
  .gap-140-sm {
    gap: 14rem !important;
  }
  .gap-150-sm {
    gap: 15rem !important;
  }
  .gap-160-sm {
    gap: 16rem !important;
  }
  .gap-170-sm {
    gap: 17rem !important;
  }
  .gap-180-sm {
    gap: 18rem !important;
  }
  .gap-190-sm {
    gap: 19rem !important;
  }
  .gap-200-sm {
    gap: 20rem !important;
  }
}
/*header
-----------------------------------------------------*/
:root {
  --header-h: 88px;
}

/* 1200px 以上用 */
@media (max-width: 1199px) {
  :root {
    --header-h: 84px;
  }
}
@media (max-width: 1023px) {
  :root {
    --header-h: 75px;
  }
}
@media (max-width: 767px) {
  :root {
    --header-h: 65px;
  }
}
@media (max-width: 575px) {
  :root {
    --header-h: 55px;
  }
}
/* --------------------------
   固定ヘッダー
-------------------------- */
header {
  position: fixed;
  inset: 0 0 auto 0;
  /* top:0; left:0; right:0; */
  height: var(--header-h);
  z-index: 99999;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
}

/* --------------------------
   ① 画面トップからヘッダー分だけ下げる
-------------------------- */
body {
  margin: 0;
  padding-top: var(--header-h);
  /* ② フッターを最下部に押し下げる */
  display: flex;
  flex-direction: column;
  /* ★ 余計なスクロールを出さない決め手 ★
      (padding を含めて) 高さちょうど 100vh になるよう補正 */
  min-height: calc(100vh - var(--header-h));
  /* iOS Safari のアドレスバー変動対策 (対応ブラウザのみ) */
}
@supports (height: 100dvh) {
  body {
    min-height: calc(100dvh - var(--header-h));
  }
}

/* 残りスペースを main が埋める */
main {
  flex: 1;
}

/* --------------------------
   アンカーずれ対策 (そのまま使えます)
-------------------------- */
[id] {
  scroll-margin-top: calc(var(--header-h) + 50px);
}

header {
  position: fixed;
  z-index: 99999;
  width: 100%;
  box-sizing: border-box;
  top: 0;
  left: 0;
  transition: background-color 0.3s ease;
  height: var(--header-h);
  background: #fff;
}

.header-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FFF;
}
@media (max-width: 1023px) {
  .header-box {
    padding: 2rem 0;
  }
}
@media (max-width: 575px) {
  .header-box {
    padding: 1.5rem 0;
  }
}
.header-box .logo {
  padding-left: 4rem;
  z-index: 10;
}
@media (max-width: 1199px) {
  .header-box .logo {
    padding-left: 4rem;
  }
}
@media (max-width: 1023px) {
  .header-box .logo {
    padding-left: 3rem;
  }
}
@media (max-width: 767px) {
  .header-box .logo {
    padding-left: 1.5rem;
  }
}
.header-box .logo picture {
  display: flex;
  align-items: center;
}
.header-box .logo img {
  width: 138px;
}
@media (max-width: 767px) {
  .header-box .logo img {
    width: 100px;
  }
}
.header-box .logo a {
  display: flex;
  align-items: center;
}
.header-box .logo a:hover {
  opacity: 1;
}
.header-box .sm-nav {
  display: none;
}
@media (max-width: 1200px) {
  .header-box .sm-nav {
    display: block;
  }
}
.header-box .header-r-box {
  display: flex;
  align-items: flex-end;
  align-items: center;
  gap: 4rem;
  padding-right: 5rem;
}
@media (max-width: 1023px) {
  .header-box .pc-nav {
    display: none;
  }
}
.header-box .pc-nav nav ul {
  display: flex;
  gap: 0 4rem;
}
@media (max-width: 1199px) {
  .header-box .pc-nav nav ul {
    gap: 0 3rem;
  }
}
.header-box .pc-nav nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 1.8rem;
  opacity: 0.9;
  padding: 2.8rem 0;
  display: block;
}
@media (max-width: 1199px) {
  .header-box .pc-nav nav ul li a {
    font-size: 1.6rem;
  }
}
.header-box .pc-nav .menu-item-has-children {
  position: relative;
  margin-right: 2rem;
}
.header-box .pc-nav .menu-item-has-children::before {
  content: "";
  margin: auto;
  position: absolute;
  top: -3px;
  bottom: 0;
  right: -20px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(135deg);
}
.header-box .pc-nav .menu-item-has-children.parent-link-none > a {
  pointer-events: none;
}
.header-box .pc-nav .menu-item-has-children .sub-menu {
  position: absolute;
  z-index: 9999;
  top: 8.8rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
  min-width: 280px;
  background: #005252;
  flex-direction: column;
}
@media (max-width: 1199px) {
  .header-box .pc-nav .menu-item-has-children .sub-menu {
    top: 8.5rem;
  }
}
.header-box .pc-nav .menu-item-has-children .sub-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.header-box .pc-nav .menu-item-has-children .sub-menu li:last-of-type {
  border-bottom: 0;
}
.header-box .pc-nav .menu-item-has-children .sub-menu a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 1.8rem;
  padding: 1.5rem 2rem;
}
@media (max-width: 1199px) {
  .header-box .pc-nav .menu-item-has-children .sub-menu a {
    font-size: 1.6rem;
  }
}
.header-box .pc-nav .menu-item-has-children .sub-menu a:hover {
  opacity: 0.6;
}
.header-box .pc-nav .menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/*hamburger
-----------------------------------------------------*/
.sm-nav {
  margin: 0;
  transition: all 0.6s;
  overflow-y: auto;
  width: 255px;
  height: 100vh;
  z-index: 200;
  top: 0;
  left: -320px;
  background-color: #007B7B;
  position: fixed;
  display: block;
}
.sm-nav__inner {
  padding: 0 2rem;
}
.sm-nav__inner a {
  display: block;
  color: #FFF;
  font-weight: 700;
  padding: 1.5rem 2rem;
  font-size: 1.6rem;
  text-decoration: none;
}
.sm-nav__inner a:hover {
  color: #B98D35;
}
.sm-nav__inner li {
  position: relative;
}
.sm-nav__inner li a {
  position: relative;
}
.sm-nav__inner .accordion-btn {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 49px;
  width: 70px;
  z-index: 1000;
  cursor: pointer;
  display: table;
}
.sm-nav__inner .accordion-btn::before {
  content: "";
  display: block;
  position: absolute;
  right: 2rem;
  top: 0;
  bottom: 0;
  margin: auto;
  text-align: right;
  border-right: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
}

.nav_btn {
  width: 40px;
  height: 40px;
  z-index: 300000;
  top: 1.8rem;
  right: 20px;
  margin: auto;
  cursor: pointer;
  position: absolute;
  background: #007B7B;
  display: none;
  border-radius: 50px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1023px) {
  .nav_btn {
    display: block;
  }
}
@media (max-width: 767px) {
  .nav_btn {
    top: 1.2rem;
    right: 10px;
  }
}
@media (max-width: 575px) {
  .nav_btn {
    top: 0.7rem;
  }
}

.hamburger_line {
  transition: all 0.6s;
  width: 20px;
  height: 1px;
  background-color: #FFF;
  position: absolute;
  left: 10px;
}

.hamburger_line1 {
  top: 15px;
}

.hamburger_line2 {
  top: 24px;
}

.hamburger.active span:nth-child(1) {
  top: 20px;
  background: #FFF;
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2) {
  top: 20px;
  background: #FFF;
  transform: rotate(45deg);
}

.globalMenu {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  background: #007B7B;
  width: 300px;
  /* 横幅調整 */
  transform: translateX(-100%);
  /* ←ここを横に隠す */
  transition: all 0.6s;
  height: 100%;
  box-sizing: border-box;
  overscroll-behavior-y: contain;
  overflow-y: auto;
}

.nav__gnav {
  margin: 0 auto;
  padding: 2rem 2rem 1rem 2rem;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
}
.nav__gnav li {
  padding: 0 1rem;
  list-style-type: none;
  width: 100%;
  transition: 0.4s all;
  font-size: 1.5rem;
  font-weight: bold;
  box-sizing: border-box;
}
.nav__gnav li:last-child {
  padding-bottom: 0;
}
.nav__gnav li a {
  display: block;
  color: #fff;
  font-size: 1.6rem;
  padding: 1rem 0;
  text-decoration: none;
}
.nav__gnav li.menu-item-has-children {
  position: relative;
}
.nav__gnav li.menu-item-has-children.parent-link-none > a {
  pointer-events: none;
}
.nav__gnav li .sub-menu li {
  padding-left: 1rem;
  font-size: 1.3rem;
}
.nav__gnav li .sub-menu li a {
  transition: 0.3s linear;
  font-weight: normal;
  position: relative;
  margin-left: 2rem;
}
.nav__gnav li .sub-menu li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -2rem;
  transform: translateY(-50%);
  width: 7px;
  height: 1px;
  background: #fff;
  transition: 0.3s linear;
}
.nav__gnav li .sub-menu li a:hover {
  color: #B98D35;
}
.nav__gnav li .sub-menu li a:hover::before {
  background: #B98D35;
}

.globalMenu.active {
  opacity: 100;
  display: block;
  transform: translateY(0%);
}

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

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

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

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

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

@media (max-width: 575px) {
  .container-sm,
  .container-md,
  .container-lg,
  .container-ex,
  .container-xl {
    padding: 0 1.5rem;
  }
}
.sec {
  padding: 8rem 0;
}
@media (max-width: 575px) {
  .sec {
    padding: 6rem 0;
  }
}

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

ul.disc {
  list-style: disc;
  padding-left: 2.5rem;
  margin-top: 3rem;
}
ul.disc li + li {
  margin-top: 0.2rem;
}

/*h*/
.h-sec01 {
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media (max-width: 1023px) {
  .h-sec01 {
    margin-bottom: 0;
    padding-bottom: 4rem;
  }
}
@media (max-width: 1023px) {
  .h-sec01::after {
    content: "";
    width: 1px;
    height: 36px;
    background-color: #0058A7;
    position: absolute;
    bottom: 0;
    left: 50%;
    height: 25px;
  }
}
.h-sec01 .jp {
  font-size: 4rem;
}
@media (max-width: 1023px) {
  .h-sec01 .jp {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .h-sec01 .jp {
    font-size: 2.6rem;
  }
}
.h-sec01 .en {
  font-weight: 400;
  font-size: 1rem;
  color: #007B7B;
  display: inline-block;
  line-height: 1;
  word-break: keep-all;
  letter-spacing: 6px;
  margin-left: 6px;
}
@media (max-width: 767px) {
  .h-sec01 .en {
    font-size: 0.7rem;
  }
}

.h-sec02 {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-bottom: 6rem;
}
@media (max-width: 767px) {
  .h-sec02 {
    margin-bottom: 2rem;
    padding-bottom: 4.5rem;
  }
}
.h-sec02::after {
  content: "";
  width: 1px;
  height: 36px;
  background-color: #0058A7;
  position: absolute;
  bottom: 0;
  left: 50%;
}
@media (max-width: 767px) {
  .h-sec02::after {
    height: 25px;
  }
}
.h-sec02 .jp {
  font-size: 4rem;
}
@media (max-width: 1023px) {
  .h-sec02 .jp {
    font-size: 3rem;
  }
}
@media (max-width: 575px) {
  .h-sec02 .jp {
    font-size: 2.6rem;
  }
}
.h-sec02 .en {
  font-weight: 400;
  font-size: 1rem;
  color: #0058A7;
  display: inline-block;
  line-height: 1;
  word-break: keep-all;
  letter-spacing: 6px;
  margin-left: 6px;
}
@media (max-width: 767px) {
  .h-sec02 .en {
    font-size: 0.7rem;
  }
}

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

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

/*breadcrumb
-----------------------------------------------------*/
#breadcrumb {
  font-size: 1.2rem;
  margin: 0 auto;
  padding: 2.5rem 0 10rem 0;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.2rem 1rem;
  flex-wrap: wrap;
}
@media (max-width: 1023px) {
  #breadcrumb {
    font-size: 1.2rem;
    padding: 2rem 0 4rem 0;
  }
}
#breadcrumb a {
  color: #666;
  text-decoration: none;
}
#breadcrumb a:hover {
  transition: 1s;
  opacity: 0.7;
}

/*btn
-----------------------------------------------------*/
/*ページ内共通*/
.contact-btn {
  margin: 3rem auto 0 auto;
}

.btn01-wrap,
.btn02-wrap,
.btn03-wrap {
  margin-bottom: 8px;
}

.btn01-wrap {
  max-width: 560px;
  width: 100%;
  margin: auto;
}
.btn01-wrap .btn01 {
  position: relative;
  top: 0;
  display: block;
  padding: 1.5rem 2rem;
  background-color: #FFF462;
  box-shadow: 0 8px #B9AC00;
  border-radius: 200px;
  color: #333;
  text-align: center;
  text-decoration: none;
  transition: 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  font-weight: 700;
  line-height: 1.5;
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .btn01-wrap .btn01 {
    box-shadow: 0 5px #B9AC00;
    padding: 1.3rem 2rem;
    font-size: 1.8rem;
  }
}
.btn01-wrap .btn01:hover {
  top: 8px;
  box-shadow: 0 0 #B9AC00;
}

.btn02-wrap {
  max-width: 405px;
  width: 100%;
  margin: auto;
}
.btn02-wrap .btn02 {
  position: relative;
  top: 0;
  display: block;
  padding: 1.5rem 2rem;
  background-color: #FFF462;
  box-shadow: 0 8px #B9AC00;
  border-radius: 200px;
  color: #333;
  text-align: center;
  text-decoration: none;
  transition: 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  font-weight: 700;
  line-height: 1.5;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .btn02-wrap .btn02 {
    box-shadow: 0 5px #B9AC00;
    padding: 1.3rem 2rem;
    font-size: 1.8rem;
  }
}
.btn02-wrap .btn02:hover {
  top: 8px;
  box-shadow: 0 0 #B9AC00;
}

.btn03-wrap {
  max-width: 500px;
  width: 100%;
}
.btn03-wrap .btn03 {
  position: relative;
  top: 0;
  display: block;
  padding: 1.5rem 2rem;
  background-color: #FFF462;
  box-shadow: 0 8px #B9AC00;
  border-radius: 200px;
  color: #333;
  text-align: center;
  text-decoration: none;
  transition: 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  font-weight: 700;
  line-height: 1.5;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .btn03-wrap .btn03 {
    box-shadow: 0 5px #B9AC00;
    padding: 1.3rem 2rem;
    font-size: 1.8rem;
  }
}
.btn03-wrap .btn03:hover {
  top: 8px;
  box-shadow: 0 0 #B9AC00;
}

.view-more {
  margin-top: 3.5rem;
  text-align: center;
  display: flex;
  justify-content: center;
}
.view-more a {
  text-transform: uppercase;
  color: #FFF;
  font-weight: 700;
  text-decoration: none;
  background-color: #007B7B;
  border-radius: 100px;
  width: 160px;
  box-sizing: border-box;
  display: block;
  padding: 1.4rem 2rem;
  text-align: center;
  margin: auto;
}

/*固定ページ・投稿ページ共通
-----------------------------------------------------*/
.post-sec__contents h2,
.post-sec__contents h3,
.post-sec__contents h4,
.page-sec__contents h2,
.page-sec__contents h3,
.page-sec__contents h4 {
  margin: 5rem 0 2rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .post-sec__contents h2,
  .post-sec__contents h3,
  .post-sec__contents h4,
  .page-sec__contents h2,
  .page-sec__contents h3,
  .page-sec__contents h4 {
    margin: 3rem 0 2rem;
  }
}
.post-sec__contents h5,
.post-sec__contents h6,
.page-sec__contents h5,
.page-sec__contents h6 {
  margin: 2rem 0 1.5rem;
  line-height: 1.5;
}
.post-sec__contents > p,
.post-sec__contents > ul,
.post-sec__contents > ol,
.post-sec__contents > .wp-block-columns,
.page-sec__contents > p,
.page-sec__contents > ul,
.page-sec__contents > ol,
.page-sec__contents > .wp-block-columns {
  margin-bottom: 3rem;
}
.post-sec__contents > .wp-block-columns h2,
.post-sec__contents > .wp-block-columns h3,
.post-sec__contents > .wp-block-columns h4,
.post-sec__contents > .wp-block-columns h5,
.post-sec__contents > .wp-block-columns h6,
.page-sec__contents > .wp-block-columns h2,
.page-sec__contents > .wp-block-columns h3,
.page-sec__contents > .wp-block-columns h4,
.page-sec__contents > .wp-block-columns h5,
.page-sec__contents > .wp-block-columns h6 {
  margin: 0 0 2rem;
}
.post-sec__contents > h2:first-child,
.post-sec__contents > h3:first-child,
.post-sec__contents > p:first-child,
.post-sec__contents > ol:first-child,
.post-sec__contents > ul:first-child,
.post-sec__contents > .wp-block-columns:first-child,
.post-sec__contents > .video-wrapper:first-child,
.page-sec__contents > h2:first-child,
.page-sec__contents > h3:first-child,
.page-sec__contents > p:first-child,
.page-sec__contents > ol:first-child,
.page-sec__contents > ul:first-child,
.page-sec__contents > .wp-block-columns:first-child,
.page-sec__contents > .video-wrapper:first-child {
  margin-top: 0;
}
.post-sec__contents > h2:last-child,
.post-sec__contents > h3:last-child,
.post-sec__contents > p:last-child,
.post-sec__contents > ol:last-child,
.post-sec__contents > ul:last-child,
.post-sec__contents > .wp-block-columns:last-child,
.post-sec__contents > .video-wrapper:last-child,
.page-sec__contents > h2:last-child,
.page-sec__contents > h3:last-child,
.page-sec__contents > p:last-child,
.page-sec__contents > ol:last-child,
.page-sec__contents > ul:last-child,
.page-sec__contents > .wp-block-columns:last-child,
.page-sec__contents > .video-wrapper:last-child {
  margin-bottom: 0 !important;
}
.post-sec__contents h2,
.page-sec__contents h2 {
  position: relative;
  background-color: #444444;
  font-size: 2.6rem;
  color: #FFF;
  padding: 0.9rem 2.5rem;
}
@media (max-width: 767px) {
  .post-sec__contents h2,
  .page-sec__contents h2 {
    font-size: 2.2rem;
    padding: 0.9rem 1.8rem;
  }
}
@media (max-width: 575px) {
  .post-sec__contents h2,
  .page-sec__contents h2 {
    font-size: 2rem;
  }
}
.post-sec__contents h2::after,
.page-sec__contents h2::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 18px solid #FFF;
  border-left: 18px solid transparent;
}
.post-sec__contents h3,
.page-sec__contents h3 {
  font-size: 2.4rem;
  line-height: 1.4;
  position: relative;
  padding-bottom: 1.5rem;
  border-bottom: 3px solid #DADADA;
}
@media (max-width: 767px) {
  .post-sec__contents h3,
  .page-sec__contents h3 {
    font-size: 1.9rem;
  }
}
.post-sec__contents h3:after,
.page-sec__contents h3:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: -3px;
  width: 140px;
  background: #333;
}
.post-sec__contents h4,
.page-sec__contents h4 {
  font-size: 2.3rem;
  background-color: #F4F4F4;
  margin: 3rem 0 2rem;
  padding: 1rem 2rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .post-sec__contents h4,
  .page-sec__contents h4 {
    font-size: 1.8rem;
    padding: 1rem 1.5rem;
  }
}
@media (max-width: 575px) {
  .post-sec__contents h4,
  .page-sec__contents h4 {
    font-size: 1.7rem;
  }
}
.post-sec__contents h5,
.page-sec__contents h5 {
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 575px) {
  .post-sec__contents h5,
  .page-sec__contents h5 {
    font-size: 1.6rem;
  }
}
.post-sec__contents h5::before,
.page-sec__contents h5::before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #000;
  display: block;
}
.post-sec__contents h6,
.page-sec__contents h6 {
  font-size: 2rem;
}
@media (max-width: 575px) {
  .post-sec__contents h6,
  .page-sec__contents h6 {
    font-size: 1.5rem;
  }
}
.post-sec__contents p,
.page-sec__contents p {
  line-height: 2;
}
.post-sec__contents figure + h3,
.page-sec__contents figure + h3 {
  margin-top: 8rem;
}
.post-sec__contents ul,
.page-sec__contents ul {
  margin: 3rem 0;
  padding-left: 2rem;
}
.post-sec__contents ul li,
.page-sec__contents ul li {
  list-style-type: disc;
  line-height: 1.6;
  padding: 0.5rem 0;
}
.post-sec__contents ul li::marker,
.page-sec__contents ul li::marker {
  color: #333;
}
.post-sec__contents .wp-block-column > *,
.page-sec__contents .wp-block-column > * {
  margin: 2rem 0;
}
.post-sec__contents .wp-block-column > *:first-child,
.page-sec__contents .wp-block-column > *:first-child {
  margin-top: 0;
}
.post-sec__contents .wp-block-column > *:last-child,
.page-sec__contents .wp-block-column > *:last-child {
  margin-bottom: 0;
}
.post-sec__contents .wp-block-column p + p,
.page-sec__contents .wp-block-column p + p {
  margin-top: 2rem;
}
.post-sec__contents .wp-block-buttons,
.page-sec__contents .wp-block-buttons {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.post-sec__contents .wp-block-buttons a,
.page-sec__contents .wp-block-buttons a {
  text-decoration: none;
}
.post-sec__contents a,
.page-sec__contents a {
  color: #007B7B;
}

/*single
-----------------------------------------------------*/
.single-head {
  border-bottom: 1px solid #000;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  margin-top: 1.5rem;
}

.post-pager {
  margin-top: 6rem;
}
.post-pager a {
  font-weight: 700;
  text-decoration: none;
  color: #333;
  display: block;
  padding: 2rem;
  border: 1px solid #C2C2C2;
  border-radius: 300px;
}
@media (max-width: 575px) {
  .post-pager a {
    font-size: 1.4rem;
  }
}
@media (max-width: 375px) {
  .post-pager a {
    font-size: 1.2rem;
  }
}

/*archive
-----------------------------------------------------*/
.cat-header {
  font-size: clamp(1.8rem, -4.2rem + 8vw, 2.8rem);
  line-height: 1.5;
  border-bottom: 1px solid #000;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

/*scroll-hint
-----------------------------------------------------*/
.tableArea {
  max-width: 100%;
  overflow: auto;
}

@media (max-width: 767px) {
  .tableArea table th,
  .tableArea table td {
    white-space: nowrap;
    /*文字を折り返さない*/
  }
}

/* form 
------------------------------------------------*/
.wpcf7-form button,
.wpcf7-form input[type=text],
.wpcf7-form input[type=email],
.wpcf7-form input[type=url],
.wpcf7-form input[type=tel],
.wpcf7-form input[type=password],
.wpcf7-form textarea {
  border: 1px solid;
  padding: 1.3rem;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 1.6rem;
}
.wpcf7-form input::-moz-placeholder, .wpcf7-form textarea::-moz-placeholder {
  color: #999;
}
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: #999;
}
.wpcf7-form .input-s {
  width: 100px;
}
.wpcf7-form .input-m {
  width: 240px;
}
.wpcf7-form .input-l {
  width: 100%;
}
.wpcf7-form p {
  margin: 0 !important;
}
.wpcf7-form textarea {
  width: 100%;
}
.wpcf7-form select {
  font-size: 1.6rem;
  line-height: 1em;
  padding-right: 25px;
  border: 1px solid;
  padding: 1.5rem;
  width: 100%;
  background: white;
  border-radius: 5px;
  /* iphoneにpaddingが効かないので追加 */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  /* 右側に矢印を追加 */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M7 10l5 5 5-5z" fill="black"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
}
.wpcf7-form input[type=checkbox] {
  border: 1px solid #999999;
  padding: 12px 8px;
  width: 20px;
  height: 20px;
}
.wpcf7-form input[type=radio] {
  position: relative;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  content: "";
  background-color: #FFFFFF;
  border: 1px solid #999999;
  border-radius: 24px;
  vertical-align: middle;
  cursor: pointer;
  margin: 0 5px 4px 0;
  padding: 10px 10px 10px 0;
}
.wpcf7-form button,
.wpcf7-form input[type=submit],
.wpcf7-form input[type=button],
.wpcf7-form input[type=reset] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #007B7B;
  color: #fff;
  border: none;
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1.7rem 1rem;
  width: 350px;
}
@media (max-width: 575px) {
  .wpcf7-form button,
  .wpcf7-form input[type=submit],
  .wpcf7-form input[type=button],
  .wpcf7-form input[type=reset] {
    width: auto;
  }
}
.wpcf7-form button:hover,
.wpcf7-form input[type=submit]:hover,
.wpcf7-form input[type=button]:hover,
.wpcf7-form input[type=reset]:hover {
  opacity: 0.9;
}
.wpcf7-form .error {
  color: #ff0000;
}
@media (max-width: 575px) {
  .wpcf7-form textarea {
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
  }
  .wpcf7-form input[type=text],
  .wpcf7-form input[type=email],
  .wpcf7-form input[type=url],
  .wpcf7-form input[type=tel] {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%;
  }
  .wpcf7-form button,
  .wpcf7-form input[type=submit],
  .wpcf7-form input[type=button],
  .wpcf7-form input[type=reset] {
    width: 100%;
  }
}
.wpcf7-form table {
  width: 100%;
}
.wpcf7-form table th,
.wpcf7-form table td {
  padding: 2.2rem 0;
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: 1px solid;
}
.wpcf7-form table th {
  vertical-align: top;
  width: 31rem;
  font-weight: 700;
  position: relative;
  text-align: left;
}
.wpcf7-form table td {
  width: calc(100% - 31rem);
}
.wpcf7-form table td p + p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .wpcf7-form table th,
  .wpcf7-form table td {
    width: 100%;
    display: block;
  }
  .wpcf7-form table th {
    padding: 1.5rem 0 0;
    border-bottom: none;
  }
  .wpcf7-form table td {
    padding: 1.5rem 0;
  }
}

.hissu {
  position: absolute;
  right: 1.5rem;
  top: 2.6rem;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #fff;
  margin-left: 0.5rem;
  padding: 0.1rem 1rem;
  vertical-align: middle;
  font-weight: 400;
}
@media (max-width: 767px) {
  .hissu {
    position: static;
  }
}

.wpcf7-list-item {
  display: block;
  margin-left: 0;
}
.wpcf7-list-item label {
  display: flex;
  align-items: center;
}
.wpcf7-list-item-label {
  margin-left: 0.5rem;
}

.wpcf7-spinner {
  position: absolute;
  opacity: 0;
  bottom: 0;
  left: 0;
}

.wpcf7-submit:disabled {
  background-color: #999 !important;
}

/* リキャプチャ非表示 */
.grecaptcha-badge {
  display: none !important;
}

/*main
-----------------------------------------------------*/
.main-v {
  background-image: url(../images/top/bg-main.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 7rem 5rem;
}
@media (max-width: 1350px) {
  .main-v {
    padding: 4rem 2rem;
  }
}
@media (max-width: 1023px) {
  .main-v {
    padding: 6rem 8vw;
  }
}
@media (max-width: 767px) {
  .main-v {
    padding: 4rem 3rem;
  }
}
.main-v__img {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1600px;
  margin: auto;
}
@media (max-width: 1023px) {
  .main-v__img {
    flex-wrap: wrap;
  }
}
.main-v__img .col01,
.main-v__img .col02 {
  width: calc(50% - 3rem);
}
@media (max-width: 1023px) {
  .main-v__img .col01,
  .main-v__img .col02 {
    width: 100%;
  }
}
.main-v__img .col01 img {
  aspect-ratio: 707/137;
}
.main-v__img .col02 {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.main-v__img .col02 div {
  width: calc(50% - 1rem);
}
@media (max-width: 575px) {
  .main-v__img .col02 div {
    width: 100%;
    text-align: center;
  }
}
.main-v__catch, .main-v__free {
  color: #fff;
}
.main-v__catch {
  line-height: 1.7;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  font-size: 2.4rem;
}
@media (max-width: 1600px) {
  .main-v__catch {
    font-size: 1.5vw;
  }
}
@media (max-width: 1023px) {
  .main-v__catch {
    font-size: 2.8vw;
  }
}
@media (max-width: 575px) {
  .main-v__catch {
    font-size: 3.5vw;
  }
}
.main-v__free {
  font-size: 2.4rem;
  background: linear-gradient(to left, #00AF84, #008176, #015169, #023F64);
  padding: 0.2rem 0.8rem;
  letter-spacing: 0.5rem;
}
@media (max-width: 575px) {
  .main-v__free {
    font-size: 5.5vw;
  }
}

/*top-news
-----------------------------------------------------*/
@media (max-width: 1023px) {
  .news .lg-none {
    display: none;
  }
}
.news .lg-block {
  display: none;
}
@media (max-width: 1023px) {
  .news .lg-block {
    display: block;
    margin-top: 4rem;
  }
}
.news .lg-block a {
  justify-content: end;
}
.news-list {
  gap: 0 8%;
}
@media (max-width: 1023px) {
  .news-list {
    flex-wrap: wrap;
  }
}
.news-list .col01 {
  width: 228px;
}
@media (max-width: 1023px) {
  .news-list .col01 {
    width: 100%;
  }
}
.news-list .col02 {
  width: 100%;
}
.news-list ul li {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid #C2C2C2;
}
@media (max-width: 575px) {
  .news-list ul li {
    padding: 1rem 0;
  }
}
.news-list ul li a {
  text-decoration: none;
  color: #333;
}
.news-list ul li .thumbnail {
  max-width: 350px;
  width: 100%;
  height: auto;
}
.news-list ul li .thumbnail img {
  display: block;
  width: 100%;
  aspect-ratio: 70/37;
  -o-object-fit: cover;
  object-fit: cover;
}
.news-list ul li .title-wrap {
  width: 100%;
}
.news-list ul li .title-wrap .title {
  font-size: 1.9rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .news-list ul li .title-wrap .title {
    font-size: 1.7rem;
  }
}
@media (max-width: 575px) {
  .news-list ul li .title-wrap .title {
    font-size: 1.4rem;
  }
}
.news-list ul li .title-wrap .day {
  color: #666666;
  word-break: keep-all;
}

/*pagenation
-----------------------------------------------------*/
.pagination {
  font-size: 1.6rem;
  margin: 7rem 0 0;
  gap: 1rem;
}
@media (max-width: 767px) {
  .pagination {
    position: relative;
    font-size: 1.1rem;
    margin: 5rem 0 0;
  }
}
.pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.pagination span,
.pagination a {
  transition: background-color 0.3s linear, color 0.3s linear, background-image 0.3s linear;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  text-align: center;
  text-decoration: none;
  color: #222;
  box-sizing: border-box;
  background-color: #FFF;
  border: 1px solid #CBCBCB;
}
.pagination a:hover {
  opacity: 1;
  color: #FFF;
  background-color: #222;
}
.pagination .current {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 40px;
  height: 40px;
  text-align: center;
  background-color: #007B7B;
  border: 1px solid #007B7B;
}
.pagination .prev {
  position: relative;
}
.pagination .prev:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(135deg);
  position: absolute;
  top: 40%;
  right: 13px;
}
.pagination .prev:hover::after {
  border-right: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
}
.pagination .next {
  position: relative;
}
.pagination .next:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(-45deg);
  position: absolute;
  top: 40%;
  right: 17px;
}
.pagination .next:hover::after {
  border-right: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
}

/*support
-----------------------------------------------------*/
.support {
  padding: 0;
}
.support-ttl {
  text-align: center;
  margin: auto;
  padding: 0 5rem;
  max-width: 1600px;
}
@media (max-width: 1023px) {
  .support-ttl {
    padding: 0 4rem;
  }
}
@media (max-width: 767px) {
  .support-ttl {
    padding: 0 2rem;
  }
}
.support h3 {
  font-size: 3.6rem;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 6rem;
}
@media (max-width: 1023px) {
  .support h3 {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .support h3 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 575px) {
  .support h3 {
    font-size: 2.2rem;
  }
}
.support h4 {
  font-size: 3rem;
  background-color: #0058A7;
  padding: 2rem 2rem;
  color: #FFF;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .support h4 {
    font-size: 2.4rem;
  }
}
@media (max-width: 575px) {
  .support h4 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}

/*supportdetails
-----------------------------------------------------*/
.supportdetails {
  background-color: #FDF8B6;
  position: relative;
  padding-top: 20rem;
}
@media (max-width: 767px) {
  .supportdetails {
    padding-top: 10rem;
  }
}
.supportdetails::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 130px 50vw 0 50vw;
  border-color: #FFF #FDF8B6 transparent #FDF8B6;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
@media (max-width: 767px) {
  .supportdetails::before {
    border-width: 60px 50vw 0 50vw;
  }
}
.supportdetails .schedule-box {
  display: flex;
  gap: 4%;
}
@media (max-width: 1023px) {
  .supportdetails .schedule-box {
    flex-wrap: wrap;
  }
}
.supportdetails .schedule-box .fukidashi {
  font-size: 2rem;
  text-align: center;
  color: #FFF;
  position: relative;
  display: inline-block;
  margin-bottom: 1.8rem;
  padding: 6px 20px;
  background-color: #0058A7;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .supportdetails .schedule-box .fukidashi {
    font-size: 1.8rem;
  }
}
.supportdetails .schedule-box .fukidashi::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: #0058A7 transparent transparent;
  translate: -50% 100%;
}
.supportdetails .schedule-box .col01 {
  max-width: 230px;
  width: 100%;
  margin-top: 2rem;
}
@media (max-width: 1199px) {
  .supportdetails .schedule-box .col01 {
    max-width: 180px;
  }
}
@media (max-width: 1023px) {
  .supportdetails .schedule-box .col01 {
    max-width: 180px;
    order: 1;
    margin: 2rem auto 0;
  }
}
.supportdetails .schedule-box .col02 {
  width: 100%;
}
.supportdetails .schedule-box .col02 .schedule-box-01 .schedule-flex {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .supportdetails .schedule-box .col02 .schedule-box-01 .schedule-flex {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}
.supportdetails .schedule-box .col02 .schedule-box-01 .schedule-flex__box {
  background-color: #FFF;
  padding: 2.5rem;
  position: relative;
  max-width: 210px;
  width: 100%;
}
@media (max-width: 767px) {
  .supportdetails .schedule-box .col02 .schedule-box-01 .schedule-flex__box {
    padding: 1.5rem;
    max-width: 100%;
  }
}
.supportdetails .schedule-box .col02 .schedule-box-01 .schedule-flex__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 36px solid #FDF8B6;
  border-right: 36px solid transparent;
}
.supportdetails .schedule-box .col02 .schedule-box-01 .schedule-flex__box p {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 1199px) {
  .supportdetails .schedule-box .col02 .schedule-box-01 .schedule-flex__box p {
    font-size: 1.8rem;
  }
}
@media (max-width: 1023px) {
  .supportdetails .schedule-box .col02 .schedule-box-01 .schedule-flex__box p {
    font-size: 1.6rem;
  }
}
.supportdetails .schedule-box .col02 .schedule-box-01 .schedule-flex .arrow {
  max-width: 14px;
  width: 100%;
}
@media (max-width: 1023px) {
  .supportdetails .schedule-box .col02 .schedule-box-01 .schedule-flex .arrow {
    transform: rotate(90deg);
    margin: auto;
  }
}
.supportdetails .schedule-box .col02 .schedule-box-01 .schedule-flex__circle {
  background-color: #0097D3;
  color: #FFF;
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
  padding: 2.5rem;
  border-radius: 100%;
  line-height: 1.4;
  max-width: 210px;
  width: 100%;
}
@media (max-width: 1199px) {
  .supportdetails .schedule-box .col02 .schedule-box-01 .schedule-flex__circle {
    font-size: 1.8rem;
  }
}
@media (max-width: 1023px) {
  .supportdetails .schedule-box .col02 .schedule-box-01 .schedule-flex__circle {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .supportdetails .schedule-box .col02 .schedule-box-01 .schedule-flex__circle {
    max-width: 100%;
    padding: 1.5rem;
  }
}
.supportdetails .schedule-box .col02 .schedule-box-02 .schedule-flex {
  display: flex;
  gap: 1rem 1.5rem;
}
@media (max-width: 767px) {
  .supportdetails .schedule-box .col02 .schedule-box-02 .schedule-flex {
    flex-wrap: wrap;
  }
}
.supportdetails .schedule-box .col02 .schedule-box-02 .schedule-flex__box {
  background-color: #FFF;
  padding: 1rem 2.5rem 2.5rem 2.5rem;
  position: relative;
  width: calc(50% - 1.5rem);
}
@media (max-width: 767px) {
  .supportdetails .schedule-box .col02 .schedule-box-02 .schedule-flex__box {
    width: 100%;
  }
}
.supportdetails .schedule-box .col02 .schedule-box-02 .schedule-flex__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 56px solid #FDF8B6;
  border-right: 56px solid transparent;
}
.supportdetails .schedule-box .col02 .schedule-box-02 .schedule-flex__box-top {
  border-bottom: 1px solid #0058A7;
  z-index: 1;
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}
.supportdetails .schedule-box .col02 .schedule-box-02 .schedule-flex__box-top h4 {
  font-size: 2.4rem;
  color: #0058A7;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 1199px) {
  .supportdetails .schedule-box .col02 .schedule-box-02 .schedule-flex__box-top h4 {
    font-size: 2rem;
  }
}
@media (max-width: 1023px) {
  .supportdetails .schedule-box .col02 .schedule-box-02 .schedule-flex__box-top h4 {
    font-size: 1.8rem;
  }
}
.supportdetails .schedule-box .col02 .schedule-box-02 .schedule-flex__box-top h4 p {
  font-size: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}
.supportdetails .schedule-box .col02 .schedule-box-02 .schedule-flex__box-top h4 p .open-sans {
  font-size: 4.8rem;
}
@media (max-width: 1199px) {
  .supportdetails .schedule-box .col02 .schedule-box-02 .schedule-flex__box-top h4 p .open-sans {
    font-size: 4rem;
  }
}
@media (max-width: 1023px) {
  .supportdetails .schedule-box .col02 .schedule-box-02 .schedule-flex__box-top h4 p .open-sans {
    font-size: 3.6rem;
  }
}
.supportdetails .schedule-box .col02 .schedule-box-03 .schedule-flex {
  display: flex;
  gap: 4rem 1.5rem;
}
@media (max-width: 767px) {
  .supportdetails .schedule-box .col02 .schedule-box-03 .schedule-flex {
    flex-wrap: wrap;
  }
}
.supportdetails .schedule-box .col02 .schedule-box-03 .schedule-flex__col {
  width: calc(50% - 0.75rem);
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .supportdetails .schedule-box .col02 .schedule-box-03 .schedule-flex__col {
    width: 100%;
  }
}
.supportdetails .schedule-box .col02 .schedule-box-03 .schedule-flex__box {
  background-color: #FFF;
  padding: 1rem 2.5rem 2.5rem 2.5rem;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.supportdetails .schedule-box .col02 .schedule-box-03 .schedule-flex__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 56px solid #FDF8B6;
  border-right: 56px solid transparent;
}
.supportdetails .schedule-box .col02 .schedule-box-03 .schedule-flex__box-top {
  border-bottom: 1px solid #0058A7;
  z-index: 1;
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}
.supportdetails .schedule-box .col02 .schedule-box-03 .schedule-flex__box-top h4 {
  font-size: 2.4rem;
  color: #0058A7;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 1199px) {
  .supportdetails .schedule-box .col02 .schedule-box-03 .schedule-flex__box-top h4 {
    font-size: 2rem;
  }
}
@media (max-width: 1023px) {
  .supportdetails .schedule-box .col02 .schedule-box-03 .schedule-flex__box-top h4 {
    font-size: 1.8rem;
  }
}
.supportdetails .schedule-box .col02 .schedule-box-03 .schedule-flex__box-top h4 p {
  font-size: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}
.supportdetails .schedule-box .col02 .schedule-box-03 .schedule-flex__box-top h4 p .open-sans {
  font-size: 4.8rem;
}
@media (max-width: 1199px) {
  .supportdetails .schedule-box .col02 .schedule-box-03 .schedule-flex__box-top h4 p .open-sans {
    font-size: 4rem;
  }
}
@media (max-width: 1023px) {
  .supportdetails .schedule-box .col02 .schedule-box-03 .schedule-flex__box-top h4 p .open-sans {
    font-size: 3.6rem;
  }
}
.supportdetails .supportcontent {
  margin-top: 5rem;
}
.supportdetails .supportcontent-h3 {
  font-size: 3rem;
  color: #FFF;
  background-color: #0058A7;
  position: relative;
  padding: 1rem 2rem 1rem 4rem;
  line-height: 1.2;
  margin-bottom: 3rem;
}
@media (max-width: 1023px) {
  .supportdetails .supportcontent-h3 {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) {
  .supportdetails .supportcontent-h3 {
    font-size: 2.4rem;
  }
}
@media (max-width: 575px) {
  .supportdetails .supportcontent-h3 {
    font-size: 2rem;
  }
}
.supportdetails .supportcontent-h3::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 0;
  height: 0;
  border-top: 26px solid #FFF462;
  border-right: 26px solid transparent;
}
.supportdetails .supportcontent__box {
  margin-top: 2.5rem;
  padding: 5rem 6rem;
  background-color: #FFF;
  position: relative;
}
@media (max-width: 1023px) {
  .supportdetails .supportcontent__box {
    padding: 4rem;
  }
}
@media (max-width: 575px) {
  .supportdetails .supportcontent__box {
    padding: 3rem 2rem;
  }
}
.supportdetails .supportcontent__box::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-bottom: 56px solid #FDF8B6;
  border-left: 56px solid transparent;
}
.supportdetails .supportcontent__box-flex {
  display: flex;
  gap: 2rem 3rem;
}
@media (max-width: 767px) {
  .supportdetails .supportcontent__box-flex {
    flex-wrap: wrap;
  }
}
.supportdetails .supportcontent__box-flex .col01 {
  width: 100%;
}
.supportdetails .supportcontent__box-flex .col01 h4 {
  font-size: 2.9rem;
  color: #0058A7;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  border-bottom: 3px solid #C2C2C2;
  padding-bottom: 5px;
}
.supportdetails .supportcontent__box-flex .col01 h4::after {
  position: absolute;
  left: 0;
  bottom: -3px;
  display: block;
  content: " ";
  width: 20%;
  border-bottom: 3px solid #0058A7;
}
@media (max-width: 1199px) {
  .supportdetails .supportcontent__box-flex .col01 h4 {
    font-size: 2.5rem;
  }
}
@media (max-width: 1023px) {
  .supportdetails .supportcontent__box-flex .col01 h4 {
    font-size: 2.2rem;
  }
}
.supportdetails .supportcontent__box-flex .col01 h4 p {
  font-size: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}
.supportdetails .supportcontent__box-flex .col01 h4 p .open-sans {
  font-size: 5.7rem;
}
@media (max-width: 1199px) {
  .supportdetails .supportcontent__box-flex .col01 h4 p .open-sans {
    font-size: 4.7rem;
  }
}
@media (max-width: 1023px) {
  .supportdetails .supportcontent__box-flex .col01 h4 p .open-sans {
    font-size: 3.6rem;
  }
}
.supportdetails .supportcontent__box-flex .col01 h5 {
  font-size: 2rem;
  background-color: #0058A7;
  color: #FFF;
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 0.5rem 1rem;
  line-height: 1.2;
  margin-top: 2.5rem;
}
@media (max-width: 575px) {
  .supportdetails .supportcontent__box-flex .col01 h5 {
    font-size: 1.8rem;
  }
}
.supportdetails .supportcontent__box-flex .col02 {
  max-width: 270px;
  width: 100%;
}
@media (max-width: 1023px) {
  .supportdetails .supportcontent__box-flex .col02 {
    max-width: 200px;
  }
}
@media (max-width: 767px) {
  .supportdetails .supportcontent__box-flex .col02 {
    margin: 0 auto;
  }
}
.supportdetails .supportcontent__box .ondemand {
  margin-top: 4rem;
  border: 1px solid #0058A7;
  padding: 2.5rem 3rem 4.5rem 3rem;
}
@media (max-width: 575px) {
  .supportdetails .supportcontent__box .ondemand {
    padding: 2.5rem 2rem 3rem 2rem;
  }
}
.supportdetails .supportcontent__box .ondemand .h-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: -3rem;
}
@media (max-width: 767px) {
  .supportdetails .supportcontent__box .ondemand .h-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .supportdetails .supportcontent__box .ondemand .h-wrap {
    margin-left: -2rem;
  }
}
.supportdetails .supportcontent__box .ondemand .h-wrap h4 {
  font-size: 2rem;
  color: #FFF;
  background-color: #0058A7;
  padding: 0.4rem 4rem 0.4rem 2.5rem;
  position: relative;
}
@media (max-width: 575px) {
  .supportdetails .supportcontent__box .ondemand .h-wrap h4 {
    font-size: 1.8rem;
    padding: 0.4rem 4rem 0.4rem 2rem;
  }
}
.supportdetails .supportcontent__box .ondemand .h-wrap h4::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-bottom: 46px solid #FFF;
  border-left: 20px solid transparent;
}
.supportdetails .supportcontent__box .ondemand .h-wrap p {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .supportdetails .supportcontent__box .ondemand .h-wrap p {
    margin-left: 3rem;
  }
}
@media (max-width: 575px) {
  .supportdetails .supportcontent__box .ondemand .h-wrap p {
    font-size: 1.6rem;
    margin-left: 2rem;
  }
}
.supportdetails .supportcontent__box .ondemand h5 {
  margin-top: 3.5rem;
  font-size: 2rem;
  border-bottom: 1px solid #0058A7;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .supportdetails .supportcontent__box .ondemand h5 {
    font-size: 1.8rem;
  }
}
@media (max-width: 575px) {
  .supportdetails .supportcontent__box .ondemand h5 {
    margin-top: 2.5rem;
  }
}
.supportdetails .supportcontent__box .ondemand h6 {
  color: #FFF;
  background-color: #0058A7;
  margin-top: 3rem;
  margin-bottom: 2rem;
  padding: 0.3rem 2rem;
  font-size: 1.6rem;
  display: inline-block;
}
.supportdetails .supportcontent__box .ondemand .dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 4rem;
  word-break: keep-all;
  padding-left: 2rem;
}
.supportdetails .supportcontent__box .ondemand .dots li {
  position: relative;
}
.supportdetails .supportcontent__box .ondemand .dots li::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #333333;
  border-radius: 10px;
  position: absolute;
  left: -16px;
  top: 12px;
}
.supportdetails .supportcontent .dx-diagnosis {
  background-image: url(../images/common/bg-dx.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 7rem 8rem;
  margin-top: 8rem;
}
@media (max-width: 1023px) {
  .supportdetails .supportcontent .dx-diagnosis {
    padding: 6rem 4rem;
    margin: 6rem auto 0;
    max-width: 500px;
  }
}
@media (max-width: 575px) {
  .supportdetails .supportcontent .dx-diagnosis {
    padding: 5rem 2rem;
  }
}
.supportdetails .supportcontent .dx-diagnosis__img-sp {
  max-width: 300px;
}
.supportdetails .supportcontent .dx-diagnosis__flex {
  display: flex;
  align-items: center;
  gap: 4rem 3.5rem;
}
@media (max-width: 1023px) {
  .supportdetails .supportcontent .dx-diagnosis__flex {
    gap: 4rem 2rem;
  }
}
@media (max-width: 1023px) {
  .supportdetails .supportcontent .dx-diagnosis__flex {
    flex-wrap: wrap;
  }
}
.supportdetails .supportcontent .dx-diagnosis__flex .col01 {
  width: 100%;
}
.supportdetails .supportcontent .dx-diagnosis__flex .col01 .h-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.supportdetails .supportcontent .dx-diagnosis__flex .col01 .h-wrap h3 {
  font-size: 4.8rem;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .supportdetails .supportcontent .dx-diagnosis__flex .col01 .h-wrap h3 {
    font-size: 3.8rem;
  }
}
@media (max-width: 575px) {
  .supportdetails .supportcontent .dx-diagnosis__flex .col01 .h-wrap h3 {
    font-size: 3rem;
  }
}
.supportdetails .supportcontent .dx-diagnosis__flex .col01 p {
  color: #FFF;
  font-weight: 700;
}
.supportdetails .supportcontent .dx-diagnosis__flex .col01 ul {
  margin-top: 3rem;
  padding-left: 9px;
}
.supportdetails .supportcontent .dx-diagnosis__flex .col01 ul li {
  font-size: 2.2rem;
  background-color: #FFF;
  color: #0058A7;
  margin-bottom: 8px;
  font-weight: 700;
  padding: 1rem 1.5rem;
  position: relative;
  line-height: 1.4;
}
.supportdetails .supportcontent .dx-diagnosis__flex .col01 ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -9px;
  width: 10px;
  height: 100%;
  background-color: #FFF462;
  -webkit-clip-path: polygon(0 15%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 15%, 100% 0%, 100% 100%, 0% 100%);
}
@media (max-width: 1350px) {
  .supportdetails .supportcontent .dx-diagnosis__flex .col01 ul li {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .supportdetails .supportcontent .dx-diagnosis__flex .col01 ul li {
    font-size: 1.8rem;
  }
}
@media (max-width: 575px) {
  .supportdetails .supportcontent .dx-diagnosis__flex .col01 ul li {
    font-size: 1.6rem;
  }
}
.supportdetails .supportcontent .dx-diagnosis__flex .col02 {
  max-width: 265px;
  width: 100%;
}
@media (max-width: 767px) {
  .supportdetails .supportcontent .dx-diagnosis__flex .col02 {
    margin: auto;
  }
}

/*top-apply
-----------------------------------------------------*/
.top-apply hr {
  margin: 1em 0;
}
.top-apply__flex {
  display: flex;
  gap: 3rem;
}
@media (max-width: 1023px) {
  .top-apply__flex {
    flex-wrap: wrap;
  }
}
.top-apply__flex .col01,
.top-apply__flex .col02 {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  width: calc(50% - 1.5rem);
}
@media (max-width: 1023px) {
  .top-apply__flex .col01,
  .top-apply__flex .col02 {
    width: 100%;
  }
}
.top-apply__flex .col01 h3,
.top-apply__flex .col02 h3 {
  color: #FFF;
  background-color: #0058A7;
  text-align: center;
  font-size: 1.9rem;
  padding: 1.5rem 2rem;
  line-height: 1.4;
}
.top-apply__flex .col01 .w-box,
.top-apply__flex .col02 .w-box {
  background-color: #FFF;
  padding: 3.5rem 2.5rem;
  text-align: center;
}
.top-apply__flex .col02 .address {
  display: flex;
  text-align: left;
  align-items: baseline;
  gap: 1rem;
}
.top-apply__flex .col02 .address .bg-g {
  background-color: #666666;
  color: #FFF;
  font-size: 1.8rem;
  display: inline-block;
  padding: 0 2rem;
  word-break: keep-all;
}

/*apply
-----------------------------------------------------*/
.page-apply .apply01,
.page-apply .apply02,
.page-apply .apply03 {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
  margin: auto;
}
@media (max-width: 1023px) {
  .page-apply .apply01,
  .page-apply .apply02,
  .page-apply .apply03 {
    width: 100%;
  }
}
.page-apply .apply01 hr,
.page-apply .apply02 hr,
.page-apply .apply03 hr {
  margin: 1em 0;
}
.page-apply .apply01 .heading,
.page-apply .apply02 .heading,
.page-apply .apply03 .heading {
  color: #FFF;
  text-align: center;
  font-size: 1.9rem;
  padding: 1.5rem 2rem;
  line-height: 1.4;
}
.page-apply .apply01 .w-box,
.page-apply .apply02 .w-box,
.page-apply .apply03 .w-box {
  background-color: #FFF;
  padding: 3.5rem 2.5rem;
  text-align: center;
}
@media (max-width: 1023px) {
  .page-apply .apply01 .w-box,
  .page-apply .apply02 .w-box,
  .page-apply .apply03 .w-box {
    padding: 3rem 2.5rem;
  }
}
.page-apply .apply01 .address,
.page-apply .apply02 .address,
.page-apply .apply03 .address {
  display: flex;
  text-align: left;
  align-items: baseline;
  gap: 1rem;
}
.page-apply .apply01 .address .bg-g,
.page-apply .apply02 .address .bg-g,
.page-apply .apply03 .address .bg-g {
  background-color: #666666;
  color: #FFF;
  font-size: 1.8rem;
  display: inline-block;
  padding: 0 2rem;
  word-break: keep-all;
}
@media (max-width: 1023px) {
  .page-apply .apply01 .address .bg-g,
  .page-apply .apply02 .address .bg-g,
  .page-apply .apply03 .address .bg-g {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .page-apply .apply01 .address .bg-g,
  .page-apply .apply02 .address .bg-g,
  .page-apply .apply03 .address .bg-g {
    font-size: 1.4rem;
  }
}
.page-apply .apply01 .heading {
  background-color: #007B7B;
}
.page-apply .apply01 .w-box {
  padding: 3.5rem 7.5rem;
}
@media (max-width: 1023px) {
  .page-apply .apply01 .w-box {
    padding: 3rem 2.5rem;
  }
}
.page-apply .apply02 .heading {
  background-color: #ED711F;
}
.page-apply .apply03 .heading {
  background-color: #9E358F;
}
.page-apply .apply03 .w-box {
  text-align: center;
}

/*kickoff
-----------------------------------------------------*/
.kickoff__heading01 {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  margin-top: 4rem;
}
.kickoff__heading01 .color-main {
  font-size: 4rem;
}
@media (max-width: 1023px) {
  .kickoff__heading01 .color-main {
    font-size: 3.4rem;
  }
}
@media (max-width: 767px) {
  .kickoff__heading01 .color-main {
    font-size: 2.8rem;
  }
}
@media (max-width: 575px) {
  .kickoff__heading01 .color-main {
    font-size: 2.2rem;
  }
}
.kickoff__heading01 .border {
  font-size: 3.2rem;
  position: relative;
  display: inline-block;
  padding: 0 10rem;
  margin-top: 1rem;
}
@media (max-width: 575px) {
  .kickoff__heading01 .border {
    padding: 0 8rem;
  }
}
@media (max-width: 1023px) {
  .kickoff__heading01 .border {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) {
  .kickoff__heading01 .border {
    font-size: 2.2rem;
  }
}
@media (max-width: 575px) {
  .kickoff__heading01 .border {
    font-size: 2rem;
  }
}
.kickoff__heading01 .border::before, .kickoff__heading01 .border::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 77px;
  height: 1px;
  background-color: #000;
}
@media (max-width: 575px) {
  .kickoff__heading01 .border::before, .kickoff__heading01 .border::after {
    width: 50px;
  }
}
.kickoff__heading01 .border::before {
  left: 0;
}
.kickoff__heading01 .border::after {
  right: 0;
}
.kickoff table {
  width: 100%;
  border: 1px solid #C2C2C2;
  margin-top: 5rem;
}
.kickoff table th,
.kickoff table td {
  padding: 2.5rem 2rem;
}
@media (max-width: 575px) {
  .kickoff table th,
  .kickoff table td {
    padding: 2rem 1.5rem;
  }
}
.kickoff table th {
  background-color: #007B7B;
  color: #FFF;
  font-size: 2rem;
  text-align: left;
  border: 1px solid #C2C2C2;
  width: 160px;
  vertical-align: middle;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .kickoff table th {
    font-size: 1.8rem;
    width: 120px;
  }
}
@media (max-width: 575px) {
  .kickoff table th {
    font-size: 1.6rem;
    width: 100px;
  }
}
.kickoff table td {
  border: 1px solid #C2C2C2;
}
.kickoff__heading02 {
  position: relative;
  background-color: #007B7B;
  font-size: 3rem;
  color: #FFF;
  padding: 0.4rem 2.5rem;
  margin-top: 5rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .kickoff__heading02 {
    font-size: 2.4rem;
  }
}
@media (max-width: 575px) {
  .kickoff__heading02 {
    font-size: 2.2rem;
  }
}
.kickoff__heading02::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 18px solid #FFF;
  border-left: 18px solid transparent;
}
.kickoff-flex {
  display: flex;
  gap: 3.5rem;
}
@media (max-width: 767px) {
  .kickoff-flex {
    flex-wrap: wrap;
  }
}
.kickoff-flex .col02 {
  max-width: 235px;
  width: 100%;
  order: 1;
}
@media (max-width: 767px) {
  .kickoff-flex .col02 {
    margin: auto;
  }
}
.kickoff-flex .col01 {
  order: 2;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .kickoff-flex .col01 {
    margin-top: 0;
    width: 100%;
  }
}
.kickoff-flex .col01-top {
  position: relative;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.kickoff-flex .col01-top::after {
  content: "";
  width: 80px;
  height: 1px;
  background-color: #000;
  position: absolute;
  left: 0;
  bottom: 0;
}
.kickoff-flex .col01 h4 {
  font-size: 2.4rem;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .kickoff-flex .col01 h4 {
    font-size: 2.2rem;
  }
}
@media (max-width: 575px) {
  .kickoff-flex .col01 h4 {
    font-size: 2rem;
  }
}
.kickoff-flex .col01 h5 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .kickoff-flex .col01 h5 {
    font-size: 1.8rem;
  }
}
@media (max-width: 575px) {
  .kickoff-flex .col01 h5 {
    font-size: 1.6rem;
  }
}
.kickoff-flex .col01 ul {
  list-style: disc;
  padding-left: 3rem;
}
@media (max-width: 767px) {
  .kickoff-flex .col01 .btn03-wrap {
    margin: auto;
  }
}

/*footer
-----------------------------------------------------*/
footer {
  background-color: #007B7B;
  margin-top: 12rem;
  position: relative;
}
@media (max-width: 767px) {
  footer {
    margin-top: 6rem;
  }
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 75px solid #FFF;
  border-right: 75px solid transparent;
}
@media (max-width: 767px) {
  footer::before {
    border-top: 45px solid #FFF;
    border-right: 45px solid transparent;
  }
}
footer .footer-inner {
  padding: 4.5rem 0;
}
footer .footer-inner .footer-bottom {
  color: #FFF;
}
@media (max-width: 1023px) {
  footer .footer-inner .footer-bottom {
    padding-left: 4rem;
  }
}
@media (max-width: 575px) {
  footer .footer-inner .footer-bottom {
    padding-left: 2rem;
  }
}
footer .footer-inner .footer-bottom img {
  max-width: 304px;
  width: 100%;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  footer .footer-inner .footer-bottom img {
    max-width: 200px;
  }
}
footer .footer-inner .footer-bottom .copy {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 2.5rem;
  margin-top: 1rem;
  font-size: 1.3rem;
  color: #FFF;
}
@media (max-width: 1023px) {
  footer .footer-inner .footer-bottom .copy {
    display: block;
    font-size: 1.1rem;
  }
}
@media (max-width: 767px) {
  footer .footer-inner .footer-bottom .copy span {
    display: block;
  }
}
footer .footer-inner .footer-bottom .top-btn {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 100px;
  background: #006868;
  bottom: 30px;
  right: 30px;
  transition-delay: 0s;
  opacity: 1;
  visibility: visible;
  cursor: pointer;
  z-index: 1000;
}
@media (max-width: 575px) {
  footer .footer-inner .footer-bottom .top-btn {
    right: 20px;
  }
}
footer .footer-inner .footer-bottom .top-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 3px;
  margin-left: -6px;
  width: 12px;
  height: 12px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}

/* support-thanks
-----------------------------------------------------*/
.p-support__step {
  background: #ECF5FC;
  padding: clamp(2rem, -16rem + 24vw, 5rem);
}
.p-support__step .flex {
  border-bottom: 1px solid #B6D5ED;
  padding: 2rem 0;
}
.p-support__step .flex:first-child {
  padding: 0 0 2rem;
}
.p-support__step__l {
  flex-shrink: 0;
}
.p-support__step__num {
  background: #0097D3;
  color: #fff;
  padding: 0.4rem 1rem;
  font-size: clamp(1.6rem, 0.4rem + 1.6vw, 1.8rem);
  line-height: 1.5;
  display: inline-block;
}
.p-support__step__heading {
  font-size: clamp(1.6rem, -0.8rem + 3.2vw, 2rem);
  margin-bottom: 0.5rem;
}
.p-support__step p {
  margin: 0;
}
.p-support__step__last {
  position: relative;
  background: #fff;
  margin-top: clamp(2rem, -4rem + 8vw, 3rem);
  padding: 2rem 1rem;
}
.p-support__step__last::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  background: #ECF5FC;
  height: 17.3205080757px;
  width: 45px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}

/* literacy
-----------------------------------------------------*/
.color-orange {
  color: #ED711F;
}

@media (max-width: 575px) {
  .p-literacy__curric__wrap {
    padding: 0;
  }
}
.p-literacy__curric .inner {
  padding: 2.2rem;
  background: #F4F3EA;
}
@media (max-width: 767px) {
  .p-literacy__curric .inner {
    padding: 1.5rem;
  }
}
.p-literacy__curric .heading01,
.p-literacy__curric .heading02 {
  color: #fff;
  line-height: 1.5;
}
.p-literacy__curric .heading01 {
  background: #ED711F;
  font-size: clamp(2rem, -1.6rem + 4.8vw, 2.6rem);
  padding: 0.8rem 1rem;
}
.p-literacy__curric .heading02 {
  background: #666666;
  font-size: clamp(1.8rem, -1.8rem + 4.8vw, 2.4rem);
  margin-bottom: 0.5rem;
  padding: 0.5rem 1rem;
}
@media (max-width: 767px) {
  .p-literacy__curric .heading02 {
    margin-bottom: 0;
  }
}
.p-literacy__curric ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 2rem;
  padding: 1.6rem 0;
}
@media (max-width: 767px) {
  .p-literacy__curric ul li {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.p-literacy__curric ul li:not(:last-child) {
  border-bottom: 1px solid #C2C2C2;
}
.p-literacy__curric .date-title {
  display: flex;
  align-items: center;
}
@media (max-width: 1023px) {
  .p-literacy__curric .date-title {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .p-literacy__curric .date-title {
    display: block;
    width: 100%;
  }
}
.p-literacy__curric .date {
  background: linear-gradient(to right, #ED711F, #F39947);
  padding: 1rem 0 1rem 2rem;
  box-sizing: border-box;
  font-size: 2rem;
  color: #fff;
  position: relative;
  margin-right: 4rem;
  width: 170px;
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .p-literacy__curric .date {
    font-size: 1.8rem;
    padding: 0.5rem 0 0.5rem 1rem;
    width: 150px;
    margin-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .p-literacy__curric .date {
    background: #F39947;
    font-size: 1.6rem;
    padding: 0.3rem 1rem;
    width: 100%;
    margin: 0 1.5rem 1.5rem 0;
    text-align: center;
  }
}
.p-literacy__curric .date::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -3.4rem;
  bottom: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #F39947 transparent transparent transparent;
  border-width: 1.45rem 2.75rem 0 2.75rem;
  transform: rotate(-90deg);
}
@media (max-width: 1023px) {
  .p-literacy__curric .date::after {
    right: -2.8rem;
    border-width: 1.45rem 2.25rem 0 2.25rem;
  }
}
@media (max-width: 767px) {
  .p-literacy__curric .date::after {
    transform: rotate(0deg);
    left: 0;
    right: 0;
    bottom: -4rem;
    border-width: 1rem 1.25rem 0 1.25rem;
  }
}
.p-literacy__curric .title {
  font-size: 1.8rem;
  line-height: 1.5;
}
@media (max-width: 1023px) {
  .p-literacy__curric .title {
    font-size: 2vw;
  }
}
@media (max-width: 767px) {
  .p-literacy__curric .title {
    font-size: 1.6rem;
    text-align: center;
  }
}
.p-literacy__curric .btn {
  flex-shrink: 0;
}
.p-literacy__curric .btn a {
  background: #fff;
  border-radius: 100px;
  border: 1px solid #333;
  padding: 0.7rem clamp(2rem, -4rem + 8vw, 3rem);
  text-decoration: none;
  color: #333;
  display: block;
}
@media (max-width: 1023px) {
  .p-literacy__curric .btn a {
    font-size: 1.4rem;
  }
}/*# sourceMappingURL=style.css.map */