@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: 300;
  src: url("../fonts/NotoSerifCJKjp-ExtraLight.woff") format("woff");
}
@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: normal;
  font-weight: 500;
  src: url("../fonts/NotoSerifCJKjp-Medium.woff") format("woff");
}
@font-face {
  font-family: "Noto Serif CJK JP";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/NotoSerifCJKjp-SemiBold.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;
  margin: 1em 0;
  padding: 0;
}

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

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

/* link
-----------------------------------------------------*/
a {
  color: #133082;
  transition: 0.3s linear;
}
a:hover, a:active, a:focus {
  color: rgb(73.5234899329, 114.0067114094, 228.4765100671);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

ol {
  padding-left: 1em;
}

.float-l {
  float: left;
}

.float-r {
  float: right;
}

.en {
  font-family: "Cormorant Garamond", serif;
  font-style: normal;
  font-optical-sizing: auto;
}

.gothic {
  font-family: "Noto Sans JP", sans-serif;
}

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

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

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

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

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

.color-main {
  color: #133082 !important;
}

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

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

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

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

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

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

.pos-r {
  position: relative;
}

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

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

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

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

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

/* margin padding gap
-----------------------------------------------------*/
.mt-0 {
  margin-top: 0rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gap-0 {
  gap: 0rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1599px) {
  .gap-0-xxl {
    gap: 0rem !important;
  }
  .gap-10-xxl {
    gap: 1rem !important;
  }
  .gap-15-xxl {
    gap: 1.5rem !important;
  }
  .gap-20-xxl {
    gap: 2rem !important;
  }
  .gap-25-xxl {
    gap: 2.5rem !important;
  }
  .gap-30-xxl {
    gap: 3rem !important;
  }
  .gap-35-xxl {
    gap: 3.5rem !important;
  }
  .gap-40-xxl {
    gap: 4rem !important;
  }
  .gap-45-xxl {
    gap: 4.5rem !important;
  }
  .gap-50-xxl {
    gap: 5rem !important;
  }
  .gap-60-xxl {
    gap: 6rem !important;
  }
  .gap-70-xxl {
    gap: 7rem !important;
  }
  .gap-80-xxl {
    gap: 8rem !important;
  }
  .gap-100-xxl {
    gap: 10rem !important;
  }
}
@media (max-width: 1199px) {
  .gap-0-xl {
    gap: 0rem !important;
  }
  .gap-10-xl {
    gap: 1rem !important;
  }
  .gap-15-xl {
    gap: 1.5rem !important;
  }
  .gap-20-xl {
    gap: 2rem !important;
  }
  .gap-25-xl {
    gap: 2.5rem !important;
  }
  .gap-30-xl {
    gap: 3rem !important;
  }
  .gap-35-xl {
    gap: 3.5rem !important;
  }
  .gap-40-xl {
    gap: 4rem !important;
  }
  .gap-45-xl {
    gap: 4.5rem !important;
  }
  .gap-50-xl {
    gap: 5rem !important;
  }
  .gap-60-xl {
    gap: 6rem !important;
  }
  .gap-70-xl {
    gap: 7rem !important;
  }
  .gap-80-xl {
    gap: 8rem !important;
  }
  .gap-100-xl {
    gap: 10rem !important;
  }
}
@media (max-width: 1023px) {
  .gap-0-lg {
    gap: 0rem !important;
  }
  .gap-10-lg {
    gap: 1rem !important;
  }
  .gap-15-lg {
    gap: 1.5rem !important;
  }
  .gap-20-lg {
    gap: 2rem !important;
  }
  .gap-25-lg {
    gap: 2.5rem !important;
  }
  .gap-30-lg {
    gap: 3rem !important;
  }
  .gap-35-lg {
    gap: 3.5rem !important;
  }
  .gap-40-lg {
    gap: 4rem !important;
  }
  .gap-45-lg {
    gap: 4.5rem !important;
  }
  .gap-50-lg {
    gap: 5rem !important;
  }
  .gap-60-lg {
    gap: 6rem !important;
  }
  .gap-70-lg {
    gap: 7rem !important;
  }
  .gap-80-lg {
    gap: 8rem !important;
  }
  .gap-100-lg {
    gap: 10rem !important;
  }
}
@media (max-width: 767px) {
  .gap-0-md {
    gap: 0rem !important;
  }
  .gap-10-md {
    gap: 1rem !important;
  }
  .gap-15-md {
    gap: 1.5rem !important;
  }
  .gap-20-md {
    gap: 2rem !important;
  }
  .gap-25-md {
    gap: 2.5rem !important;
  }
  .gap-30-md {
    gap: 3rem !important;
  }
  .gap-35-md {
    gap: 3.5rem !important;
  }
  .gap-40-md {
    gap: 4rem !important;
  }
  .gap-45-md {
    gap: 4.5rem !important;
  }
  .gap-50-md {
    gap: 5rem !important;
  }
  .gap-60-md {
    gap: 6rem !important;
  }
  .gap-70-md {
    gap: 7rem !important;
  }
  .gap-80-md {
    gap: 8rem !important;
  }
  .gap-100-md {
    gap: 10rem !important;
  }
}
@media (max-width: 575px) {
  .gap-0-sm {
    gap: 0rem !important;
  }
  .gap-10-sm {
    gap: 1rem !important;
  }
  .gap-15-sm {
    gap: 1.5rem !important;
  }
  .gap-20-sm {
    gap: 2rem !important;
  }
  .gap-25-sm {
    gap: 2.5rem !important;
  }
  .gap-30-sm {
    gap: 3rem !important;
  }
  .gap-35-sm {
    gap: 3.5rem !important;
  }
  .gap-40-sm {
    gap: 4rem !important;
  }
  .gap-45-sm {
    gap: 4.5rem !important;
  }
  .gap-50-sm {
    gap: 5rem !important;
  }
  .gap-60-sm {
    gap: 6rem !important;
  }
  .gap-70-sm {
    gap: 7rem !important;
  }
  .gap-80-sm {
    gap: 8rem !important;
  }
  .gap-100-sm {
    gap: 10rem !important;
  }
}
/*common
-----------------------------------------------------*/
.container-sm {
  max-width: 800px;
  padding: 0 2rem;
  margin: 0 auto;
}

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

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

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

/*headers
-----------------------------------------------------*/
#header {
  position: relative;
  background: #fff;
}

.header {
  width: 100%;
}
.header-wrap {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .header-wrap {
    height: inherit;
    padding: 1rem 2rem;
  }
}
@media (max-width: 575px) {
  .header-wrap {
    padding: 1rem;
  }
}
@media (max-width: 1100px) {
  .header-wrap .head-access {
    display: none;
  }
}
.header-wrap .head-access a {
  display: flex;
  align-items: center;
  color: #FFF;
  background: #133082;
  text-decoration: none;
  height: 100%;
  min-height: 100px;
  max-width: 190px;
  padding: 0 2rem;
  box-sizing: border-box;
}
.header-wrap .head-access a span {
  position: relative;
  padding-left: 33px;
}
.header-wrap .head-access a span::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/common/icon-mail.svg) no-repeat left center;
  background-size: cover;
  width: 22px;
  height: 16px;
  left: 0;
  top: 50%;
  margin-top: -6px;
}
.header-logo {
  max-width: 280px;
}
@media (max-width: 1300px) {
  .header-logo {
    max-width: 230px;
  }
}
@media (max-width: 1100px) {
  .header-logo {
    display: none;
  }
}
.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: auto;
  padding: 2rem 3rem 2rem 4rem;
}
@media (max-width: 1100px) {
  .header-inner {
    display: none;
  }
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 0 3rem;
}
@media (max-width: 1290px) {
  .header-nav {
    gap: 0 2.5rem;
  }
}
.header-nav > li {
  position: relative;
}
.header-nav > li > a {
  display: block;
  color: #000;
  text-decoration: none;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
}
.header-nav > li > a::before {
  position: absolute;
  bottom: 0;
  left: 10px;
  content: "";
  display: inline-block;
  width: 0;
  height: 1px;
  background: #181878;
  transition: 0.2s ease;
}
.header-nav > li > a:hover {
  opacity: 1;
}
.header-nav > li > a:hover::before {
  width: calc(100% - 20px);
}
.header-nav .menu-item-has-children {
  position: relative;
  margin-right: 2rem;
}
.header-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-nav .menu-item-has-children.parent-link-none > a {
  pointer-events: none;
}
.header-nav .menu-item-has-children .sub-menu {
  position: absolute;
  z-index: 9999;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
  min-width: 240px;
  background: #C1AA3B;
  transform: translateY(10px);
  padding: 2rem;
}
.header-nav .menu-item-has-children .sub-menu a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 1.3rem;
  padding: 1rem;
}
.header-nav .menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.header-nav .menu-item-has-children:last-of-type .sub-menu {
  right: 0;
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  box-shadow: 0px 3px 10px -6px #d6d6d6;
}

/*sp-header
-----------------------------------------------------*/
.sp-header-inner {
  display: none;
}
@media (max-width: 769px) {
  .sp-header-inner {
    position: relative;
    display: block;
    padding: 1rem;
    box-sizing: border-box;
    z-index: 2;
  }
}

.sp-header-inner.sp-page-header {
  box-shadow: 0px 5px 18px -6px #d6d6d6;
}

.sp-header-nav {
  display: none;
}
@media (max-width: 1100px) {
  .sp-header-nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 11;
  }
}
.sp-header-nav-inner {
  background: #fff;
  height: 90px;
}
@media (max-width: 575px) {
  .sp-header-nav-inner {
    height: 80px;
  }
}
.sp-header-nav .access-sp a {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: 24px;
  top: 20px;
  color: #1d5278;
  font-size: 1.2rem;
  text-decoration: none;
}
.sp-header-nav .access-sp a img {
  width: 30px;
}
.sp-header-nav .header-logo-sp {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  top: 24px;
  line-height: 1;
}
.sp-header-nav .header-logo-sp img {
  width: 150px;
}

/* hamburger-menu */
.hamburger {
  display: block;
  position: absolute;
  z-index: 30;
  right: 20px;
  top: 25px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  border-radius: 5px;
  z-index: 10001;
}
@media (max-width: 1100px) {
  .hamburger {
    top: 25px;
  }
}
.hamburger.active {
  top: 25px;
}
@media (max-width: 575px) {
  .hamburger.active {
    top: 25px;
  }
}
.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #333;
  transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* open */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  background: #222;
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background: #222;
  transform: rotate(45deg);
}

.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  transform: translateY(-100%);
  transition: all 0.6s;
  height: 100%;
  box-sizing: border-box;
  overscroll-behavior-y: contain;
  overflow-y: auto;
}

.sp-header-nav_list {
  margin: 0 auto;
  padding: 3rem 2rem;
  width: 100%;
  border-top: solid 1px #E6EFFF;
  box-sizing: border-box;
}
.sp-header-nav_list 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;
  border-bottom: solid 1px #E6EFFF;
}
.sp-header-nav_list li:last-child {
  padding-bottom: 0;
}
.sp-header-nav_list li a {
  display: block;
  color: #333;
  font-size: 1.6rem;
  padding: 2rem 0;
  text-decoration: none;
}
.sp-header-nav_list li a:hover {
  opacity: 1;
}
.sp-header-nav_list li.menu-item-has-children {
  position: relative;
}
.sp-header-nav_list li.menu-item-has-children.parent-link-none > a {
  pointer-events: none;
}
.sp-header-nav_list li .sub-menu {
  display: none;
}
.sp-header-nav_list li .sub-menu li {
  padding-left: 1rem;
  font-size: 1.3rem;
}
.sp-header-nav_list li .sub-menu li a {
  transition: 0.3s linear;
  padding: 1rem 0;
  font-weight: normal;
}
.sp-header-nav_list .accordion-btn {
  display: block;
  width: 50px;
  height: 68px;
  position: absolute;
  top: 0;
  right: 0;
}
.sp-header-nav_list .accordion-btn::before, .sp-header-nav_list .accordion-btn::after {
  position: absolute;
  content: "";
  display: block;
  transition: all 0.4s;
  background: #181878;
  left: 50%;
  top: 50%;
  width: 40%;
  height: 1px;
  transform: translate(-50%, -50%);
}
.sp-header-nav_list .accordion-btn::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.sp-header-nav_list .accordion-btn.active::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.globalMenuSp.active {
  opacity: 100;
  display: block;
  transform: translateY(0%);
  z-index: 10000;
}

@media (max-width: 767px) {
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    padding: 0 3rem;
  }
}
@media (max-width: 575px) {
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    padding: 0 2rem;
  }
}
/*top
-----------------------------------------------------*/
.mv {
  position: relative;
  width: 100%;
  background: url(../images/common/bg.png) repeat;
}
@media (max-width: 1100px) {
  .mv {
    padding-top: 4rem;
  }
}
@media (max-width: 575px) {
  .mv {
    padding-top: 2rem;
  }
}
.mv::before {
  content: "";
  position: absolute;
  background: #fff;
  height: 40%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}
.mv-box {
  position: relative;
  margin: 0 auto;
  width: 90%;
  z-index: 1;
}
@media (max-width: 769px) {
  .mv-box {
    width: 96%;
  }
}
.mv img {
  width: 100%;
}

.top-about {
  position: relative;
  width: 100%;
}
.top-about:before {
  content: "ABOUT";
  display: block;
  position: absolute;
  width: 100%;
  font-size: 29.7vw;
  top: 0;
  left: 0;
  color: #F5F7FC;
  z-index: -1;
  line-height: 0.6;
  font-family: "Cormorant Garamond", serif;
}
.top-about-in {
  margin: 0 auto;
  width: 90%;
}
.top-about-box {
  width: 100%;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
}
.top-about-box .left {
  width: auto;
}
.top-about-box .right {
  width: 325px;
}
.top-about h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 500;
}
.top-about-txt {
  font-size: clamp(2rem, 4.6vw, 4.6rem);
  font-weight: 400;
}

.top-service {
  background: #F5F7FC;
}
.top-service-box {
  box-sizing: border-box;
}
.top-service .left {
  margin: 0 auto;
  max-width: 770px;
  width: 80%;
  box-sizing: border-box;
}
.top-service .right {
  width: 100%;
  box-sizing: border-box;
}
.top-service h2 {
  position: relative;
  font-size: clamp(2rem, 2.2vw, 2.2rem);
  font-weight: 500;
  color: #192340;
}
.top-service h2::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/common/sub.png) no-repeat left center;
  background-size: cover;
  width: 27px;
  height: 10px;
  left: 5px;
  top: 0;
}
.top-service-tit-sub {
  font-size: clamp(2.8rem, 9vw, 9rem);
  font-weight: 400;
  color: #393C47;
}

.top-casestudy {
  position: relative;
}
.top-casestudy::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/common/bg-2.jpg) no-repeat left center;
  background-size: cover;
  width: 925px;
  height: 842px;
  left: 0;
  top: -260px;
  z-index: -1;
}
.top-casestudy-box {
  box-sizing: border-box;
}
.top-casestudy .left {
  margin: 0 auto;
  max-width: 770px;
  width: 80%;
  box-sizing: border-box;
}
.top-casestudy .right {
  width: 100%;
  box-sizing: border-box;
}
.top-casestudy h2 {
  position: relative;
  font-size: clamp(2rem, 1.931rem + 0.31vw, 2.2rem);
  font-weight: 500;
  color: #192340;
}
.top-casestudy h2::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/common/sub.png) no-repeat left center;
  background-size: cover;
  width: 27px;
  height: 10px;
  left: 5px;
  top: 0;
}
.top-casestudy-tit-sub {
  font-size: clamp(2.8rem, 9vw, 9rem);
  font-weight: 400;
  color: #393C47;
}

.top-column {
  position: relative;
  width: 100%;
  background: url(../images/common/bg.png) repeat;
}
.top-column::before {
  content: "";
  position: absolute;
  background: #F5F7FC;
  height: 40%;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 0;
}
.top-column-box {
  width: 94%;
}
.top-column h2 {
  color: #fff;
  font-size: clamp(2rem, 2.2vw, 2.2rem);
  font-weight: 300;
  align-items: flex-end;
}
.top-column-tit {
  width: 100%;
  align-items: flex-end;
}
.top-column-tit-sub {
  font-size: clamp(2.8rem, 9vw, 9rem);
}
.top-column-in {
  position: relative;
  background: #fff;
  box-sizing: border-box;
  z-index: 1;
}
.top-column-in ul {
  width: 100%;
  gap: 2rem 4rem;
}
@media (max-width: 1199px) {
  .top-column-in ul {
    gap: 2rem 3rem;
  }
}
@media (max-width: 767px) {
  .top-column-in ul {
    gap: 2rem 2rem;
  }
}
.top-column-in ul li {
  width: 33%;
  line-height: 1.8;
}
@media (max-width: 575px) {
  .top-column-in ul li {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .top-column-in ul li + li {
    margin-top: 4rem;
  }
}
.top-column-in a {
  color: #000;
  text-decoration: none;
}
.top-column .btn-2 {
  width: 250px;
  text-align: center;
}
.top-column .btn-2 a {
  background: #fff;
}
.top-column-img {
  position: relative;
  border: solid 1px #E6EFFF;
}
.top-column-img::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/top/arrow.png) no-repeat center;
  background-size: cover;
  width: 50px;
  height: 50px;
  right: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .top-column-img::before {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 575px) {
  .top-column-img::before {
    width: 50px;
    height: 50px;
  }
}
.top-column-img img {
  width: 100%;
}
.top-column-txt {
  font-size: clamp(1.6rem, 2vw, 2rem);
}
.top-column-day {
  font-size: clamp(1.6rem, 1.531rem + 0.31vw, 1.8rem);
  font-weight: 300;
  color: #001141;
}

.contact-area {
  background: url(../images/common/bg-foot.jpg) no-repeat left center;
  background-size: cover;
  width: 100%;
}
.contact-area h2 {
  color: #fff;
  font-weight: 300;
  font-size: clamp(2.4rem, 4vw, 4rem);
  letter-spacing: 2.5px;
}
.contact-area-txt {
  font-weight: 300;
  color: #fff;
  font-size: clamp(1.8rem, 2vw, 2rem);
  letter-spacing: 2px;
}

/*footer
-----------------------------------------------------*/
footer {
  position: relative;
  background: url(../images/bg.png) repeat;
  z-index: 1;
}

.footer-area {
  background: #252A37;
}
.footer-area nav {
  gap: 0rem 2rem;
  line-height: 2.5;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .footer-area nav {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
}
.footer-area nav ul {
  justify-content: end;
  gap: 2.5rem 3.5rem;
}
.footer-area nav ul:first-of-type {
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .footer-area nav ul {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer-area nav ul li {
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
  font-weight: 300;
}
.footer-area nav ul li a {
  text-decoration: none;
  color: #fff;
}
.footer-area nav ul .sub-menu li {
  padding-left: 2rem;
  position: relative;
  font-size: clamp(1.4rem, 1.6vw, 1.6rem);
}
.footer-area nav ul .sub-menu li::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  width: 12px;
  height: 1px;
  background: #fff;
}

.copy {
  color: #fff;
  font-weight: 300;
}

/*page-header
-----------------------------------------------------*/
.page-header {
  position: relative;
}
@media (max-width: 769px) {
  .page-header {
    padding-top: 6rem;
  }
}
.page-header::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/common/bg-2.jpg) no-repeat left center;
  background-size: cover;
  width: 925px;
  height: 842px;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.page-header-tit {
  position: relative;
  padding-top: 8rem;
  line-height: 1.3;
  z-index: 1;
  color: #393C47;
}
@media (max-width: 767px) {
  .page-header-tit {
    padding-top: 3rem;
  }
}
.page-header-tit h1 {
  display: flex;
  padding-bottom: 8rem;
  font-size: clamp(5rem, 9vw, 9rem);
  font-weight: 700;
  letter-spacing: 2px;
  align-items: center;
}
@media (max-width: 575px) {
  .page-header-tit h1 {
    display: block;
  }
}
.page-header-tit .en {
  margin-right: 2rem;
}
.page-header-tit .jp {
  display: flex;
  position: relative;
  font-size: clamp(1.6rem, 2vw, 2rem);
  align-items: center;
}
.page-header-tit .jp::before {
  content: "";
  display: block;
  margin-right: 1.5rem;
  width: 22px;
  height: 1px;
  background: #192340;
}

/*breadcrumb
-----------------------------------------------------*/
#breadcrumb {
  font-size: 1.4rem;
  margin: 0 auto;
  padding: 4rem 0;
}
@media (max-width: 1023px) {
  #breadcrumb {
    font-size: 1.2rem;
  }
}
#breadcrumb-inner {
  display: flex;
  align-items: center;
  max-width: 1200px;
  padding: 0 2rem;
  margin: auto;
}
#breadcrumb a {
  color: #000;
  text-decoration: none;
}
#breadcrumb a:hover {
  transition: 1s;
  opacity: 0.7;
}
#breadcrumb .space {
  margin: 0 2rem;
  position: relative;
}
#breadcrumb .space::after {
  content: "";
  border-right: 1px solid #DFDFDF;
}

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

.container-ex {
  padding: 0 4rem;
  margin: 0 auto;
}

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

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

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

@media (max-width: 575px) {
  .container-sm,
  .container-md,
  .container-ex,
  .container-lg,
  .container-xl {
    padding: 0 2rem;
  }
}
/*common
-----------------------------------------------------*/
.common-sec {
  margin-top: 8rem;
  margin-bottom: 8rem;
}
@media (max-width: 575px) {
  .common-sec {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}

.page-sec table,
.page-sec td,
.page-sec th {
  border-collapse: collapse;
  text-align: left;
}
.page-sec table {
  table-layout: fixed;
  width: 100%;
  border-top: 1px solid #ddd;
}
.page-sec td,
.page-sec th {
  padding: 3.5rem 2.5rem;
  border-bottom: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  vertical-align: middle;
}
@media (max-width: 575px) {
  .page-sec td,
  .page-sec th {
    display: block;
    padding: 2.5rem 2rem;
  }
}
.page-sec th {
  background: #f7f7f7;
  width: 260px;
}
@media (max-width: 767px) {
  .page-sec th {
    width: 150px;
  }
}
@media (max-width: 575px) {
  .page-sec th {
    width: initial;
  }
}

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

/* btn */
.btn {
  margin: 0 auto;
  text-align: center;
  max-width: 500px;
  width: 100%;
}
.btn a {
  display: block;
  position: relative;
  text-decoration: none;
  box-sizing: border-box;
  border-radius: 100px;
  color: #fff;
  background: #001141;
  width: 100%;
  font-weight: 300;
}
.btn a::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/common/icon-btn.png) no-repeat left center;
  background-size: cover;
  width: 48px;
  height: 48px;
  right: -15px;
  top: 50%;
  margin-top: -24px;
}

.btn-2 {
  width: 150px;
}
@media (max-width: 767px) {
  .btn-2 {
    width: 120px;
  }
}
.btn-2 a {
  display: block;
  position: relative;
  text-decoration: none;
  box-sizing: border-box;
  border-radius: 100px;
  color: #000;
  width: 100%;
  font-weight: 300;
}
.btn-2 a::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/common/icon-btn.png) no-repeat left center;
  background-size: cover;
  width: 40px;
  height: 40px;
  right: -15px;
  top: 50%;
  margin-top: -20px;
}

.btn-3 {
  margin: 0 auto;
  text-align: center;
  max-width: 430px;
  box-shadow: 0px 3px 15px -5px #0c1626;
}
.btn-3 a {
  display: block;
  text-decoration: none;
  box-sizing: border-box;
  border-radius: 5px;
  color: #fff;
  background: #133082;
  width: 100%;
  font-weight: 300;
}
.btn-3 a span {
  position: relative;
  padding-left: 33px;
}
.btn-3 a span::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/common/icon-mail.svg) no-repeat left center;
  background-size: cover;
  width: 22px;
  height: 16px;
  left: 0;
  top: 50%;
  margin-top: -6px;
}

.btn-4 {
  margin: 0 auto;
  text-align: center;
  max-width: 370px;
}
.btn-4 a {
  display: block;
  padding: 3rem 2rem;
  text-decoration: none;
  box-sizing: border-box;
  color: #fff;
  background: #C1AA3B;
  width: 100%;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
}

.btn-5 {
  margin: 0 auto;
  text-align: center;
}
.btn-5 a {
  position: relative;
  display: block;
  padding: 3rem 5rem 3rem 3rem;
  text-decoration: none;
  box-sizing: border-box;
  color: #fff;
  background: #C1AA3B;
  width: 100%;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
}
.btn-5 a::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/common/arrow.svg) no-repeat left center;
  background-size: cover;
  width: 31px;
  height: 8px;
  right: 15px;
  top: 50%;
  margin-top: -4px;
}

.btn-6 {
  margin: 0 auto;
  text-align: center;
}
.btn-6 a {
  position: relative;
  display: block;
  padding: 2.5rem 5rem 2.5rem 3rem;
  text-decoration: none;
  box-sizing: border-box;
  color: #181878;
  border: 2px solid #324B9F;
  background: #fff;
  width: 100%;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.6vw, 1.6rem);
}
.btn-6 a::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/common/arrow-bl.svg) no-repeat left center;
  background-size: cover;
  width: 31px;
  height: 8px;
  right: 15px;
  top: 50%;
  margin-top: -4px;
}

.b-radius a {
  border-radius: 500px;
}

.br-none a {
  border-radius: 0 !important;
}

.youtube {
  aspect-ratio: 16/9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

/*h1~*/
.h2-tit {
  color: #fff;
  background: url(../images/common/bg.png) repeat #121D3F;
  flex: 1;
  padding: 4rem 6rem;
  margin-right: calc(50% - 50vw);
  font-size: clamp(2.4rem, 3vw, 3rem);
  overflow: hidden;
  box-sizing: border-box;
  font-weight: 400;
  font-family: "Noto Serif CJK JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .h2-tit {
    padding: 2rem 4rem;
  }
}
@media (max-width: 575px) {
  .h2-tit {
    padding: 2rem 4rem;
  }
}

.h2-tit-2 {
  position: relative;
  display: flex;
  gap: 2rem;
  margin: 0 0 2rem 0;
  padding: 1rem 0;
  font-size: clamp(2.2rem, 2.4vw, 2.6rem);
  box-sizing: border-box;
  align-items: center;
  line-height: 1.5;
}
.h2-tit-2:before {
  content: "";
  display: block;
  width: 55px;
  height: 2px;
  background: #1337AC;
}

.h2-tit-3 {
  margin: 3rem auto;
  text-align: center;
  line-height: 1.5;
}
.h2-tit-3 h2 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  color: #192340;
}
.h2-tit-3-sub {
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  color: #1337AC;
}

.h3-tit {
  position: relative;
  margin: 6rem 0 3rem 0;
  padding: 2rem 0;
  font-size: clamp(2.2rem, 2.4vw, 2.6rem);
  box-sizing: border-box;
  align-items: center;
  border-bottom: 2px solid #E6EFFF;
  line-height: 1.5;
  font-weight: 500;
}
.h3-tit:before {
  position: absolute;
  content: "";
  width: 100px;
  left: 0;
  bottom: -2px;
  border-bottom: 2px solid #181878;
}

.page-bg {
  position: relative;
  background: #F8FAFF;
}
.page-bg::before {
  content: "";
  position: absolute;
  display: block;
  background: #fff;
  height: 70px;
  width: 100%;
  z-index: 0;
}
.page-bg .container-sm {
  position: relative;
  z-index: 1;
}
.page-bg .container-md {
  position: relative;
  z-index: 1;
}
.page-bg .container-lg {
  position: relative;
  z-index: 1;
}
.page-bg .container-xl {
  position: relative;
  z-index: 1;
}

.page-bg-2 {
  position: relative;
}
.page-bg-2::before {
  content: "";
  position: absolute;
  display: block;
  background: #F8FAFF;
  height: 870px;
  width: 50%;
  z-index: 0;
  left: 0;
  top: 70px;
}
.page-bg-2 .container-sm {
  position: relative;
  z-index: 1;
}
.page-bg-2 .container-md {
  position: relative;
  z-index: 1;
}
.page-bg-2 .container-lg {
  position: relative;
  z-index: 1;
}
.page-bg-2 .container-xl {
  position: relative;
  z-index: 1;
}

.page-bg-3 {
  background: #F8FAFF;
}

.page-bg-4 {
  background: url(../images/common/bg-3.png) repeat;
}

.mdl-bd {
  margin: 2rem 0 3rem;
  box-sizing: border-box;
  border-top: 1px solid #181878;
}

.mdl-bd2 {
  margin: 2rem 0 3rem;
  box-sizing: border-box;
  border-top: 1px solid #E6EFFF;
}

.mdl-list li {
  margin: 4rem 0;
}
.mdl-list a {
  display: block;
  padding: 4rem;
  width: 100%;
  color: #000;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 3px 20px rgba(53, 62, 112, 0.3);
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
}
.mdl-list a:hover {
  opacity: 1;
  box-shadow: 0 6px 30px rgba(53, 62, 112, 0.4);
}
.mdl-list-date {
  color: #1337AC;
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
}
.mdl-list-tit {
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  font-weight: 500;
}
.mdl-list-tit::after {
  content: "";
  display: block;
  margin-top: 1rem;
  height: 2px;
  width: 40px;
  background: #1337AC;
}

.mdl-box {
  margin: 0 auto;
  padding: 1rem;
  border: solid 1px #C8D1D0;
  background: #fff;
  box-sizing: border-box;
}
.mdl-box-in {
  padding: 5rem;
  border: solid 1px #C8D1D0;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .mdl-box-in {
    padding: 2rem;
  }
}

.mod-tgl {
  border-bottom: solid 1px #C4C7E1;
}
.mod-tgl dl {
  border-top: solid 1px #C4C7E1;
}
.mod-tgl dt {
  cursor: pointer;
  padding: 3.5rem 3rem 3.5rem 7rem;
  position: relative;
  color: #333;
  background: url(../images/common/icon-q.png) no-repeat left center;
  background-size: 38px 38px;
  background-position-x: 1.5rem;
  box-sizing: border-box;
  font-size: clamp(1.8rem, 2vw, 2rem);
}
@media (max-width: 767px) {
  .mod-tgl dt {
    background-size: 30px 30px;
  }
}
@media (max-width: 575px) {
  .mod-tgl dt {
    padding: 2rem 2rem 2rem 6rem;
  }
}
.mod-tgl dd {
  display: none;
}
.mod-tgl__txt {
  font-size: clamp(1.6rem, 1.7vw, 1.7rem);
  padding: 0 2rem 3.5rem 6.5rem;
}
.mod-tgl__btn {
  position: relative;
}
.mod-tgl__btn::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/common/arrow-2.svg) no-repeat left center;
  width: 20px;
  height: 11px;
  top: 50%;
  margin-top: -5px;
  right: -2.5rem;
  transition: transform 0.4s ease;
}

.selected {
  border-radius: 10px 10px 0 0 !important;
}
.selected .mod-tgl__btn::before {
  transform: rotate(180deg);
}

/*page-common
-----------------------------------------------------*/
.page-common {
  padding-bottom: 10rem;
  font-family: "Noto Serif CJK JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
.page-common .wp-block-columns {
  gap: 0 !important; /* 必要に応じて数値調整（例：10px） */
}

/*single-common
-----------------------------------------------------*/
.single-common {
  padding-bottom: 10rem;
}
.single-common .single-first {
  padding: 5rem 0 7.5rem 0;
}
@media (max-width: 767px) {
  .single-common .single-first {
    padding: 3rem 0 4.5rem;
  }
}
.single-common .single-tit {
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1.5;
}
.single-common .single-date {
  padding-top: 1rem;
  font-size: 1.4rem;
  color: #1337AC;
}
@media (max-width: 575px) {
  .single-common .single-date {
    font-size: 1.2rem;
  }
}
.single-common h2 {
  margin: 2rem 0 4rem 0;
  padding: 2rem 3rem;
  color: #fff;
  background: #121D3F;
  flex: 1;
  font-size: clamp(2rem, 2.4vw, 2.4rem);
  box-sizing: border-box;
  font-weight: 400;
  width: 100%;
}
@media (max-width: 767px) {
  .single-common h2 {
    padding: 1.5rem 1.5rem;
  }
}
.single-common h3 {
  position: relative;
  margin: 6rem 0 3rem 0;
  padding: 1rem 0;
  font-size: clamp(2.2rem, 2.4vw, 2.4rem);
  box-sizing: border-box;
  align-items: center;
  border-bottom: 2px solid #E6EFFF;
}
.single-common h3:before {
  position: absolute;
  content: "";
  width: 40px;
  left: 0;
  bottom: -2px;
  border-bottom: 2px solid #181878;
}
.single-common h4 {
  padding: 0 1.5rem;
  margin: 4rem 0 2rem 0;
  font-size: clamp(1.8rem, 2vw, 2rem);
  font-weight: 600;
  box-sizing: border-box;
  border-left: 3px solid #707070;
}
.single-common h5 {
  margin: 4rem 0 2rem 0;
  font-size: clamp(1.8rem, 2vw, 2rem);
  font-weight: 600;
  align-items: center;
  box-sizing: border-box;
}
.single-common .back-link {
  margin: 0 auto;
  max-width: 300px;
}

/*page-about
-----------------------------------------------------*/
.page-about .about-tit {
  position: relative;
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  font-size: clamp(1.8rem, 2.2vw, 2.2rem);
  box-sizing: border-box;
  align-items: center;
  line-height: 1.5;
  color: #192340;
}
.page-about .about-tit::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: #192340;
}
.page-about .about-h3 {
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 500;
}
.page-about p + p {
  margin-top: 3rem;
}
@media (max-width: 575px) {
  .page-about p + p {
    margin-top: 2rem;
  }
}

/*page-aboutdetail
-----------------------------------------------------*/
.page-aboutdetail .member {
  border: solid 1px #00549B;
  padding: 6rem;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .page-aboutdetail .member {
    padding: 4rem;
  }
}
.page-aboutdetail .member-sub {
  color: #192340;
}
.page-aboutdetail .member-name {
  font-size: clamp(2rem, 2.4vw, 2.4rem);
  font-weight: 600;
}
.page-aboutdetail .member-line::after {
  display: block;
  content: "";
  height: 1px;
  width: 100px;
  margin: 3rem auto 0 auto;
  background: #181878;
}
.page-aboutdetail .member-right {
  position: relative;
  padding: 0 0 4rem 2rem;
  box-sizing: border-box;
  border-bottom: 2px solid #E6EFFF;
  line-height: 1.5;
}
.page-aboutdetail .member-right:before {
  position: absolute;
  content: "";
  width: 40px;
  left: 0;
  bottom: -2px;
  border-bottom: 2px solid #181878;
}

/*page-consulting
-----------------------------------------------------*/
.page-consulting p + p {
  margin-top: 3rem;
}
@media (max-width: 575px) {
  .page-consulting p + p {
    margin-top: 2rem;
  }
}
.page-consulting .consulting-list {
  padding: 2rem 0;
  line-height: 1.5;
  list-style: disc;
  list-style-position: inside;
}
.page-consulting .consulting-img {
  position: relative;
}
.page-consulting .consulting-img img {
  display: block;
  width: calc(100vw - (100vw - 1200px) / 2);
  max-width: none;
  height: auto;
  margin-left: auto; /* 左側はコンテナ幅に合わせる */
}
.page-consulting .program-box {
  padding: 2rem 8rem;
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .page-consulting .program-box {
    padding: 6rem 4rem;
  }
}
@media (max-width: 575px) {
  .page-consulting .program-box {
    padding: 4rem 2rem;
  }
}
.page-consulting .program-list {
  margin: 7rem auto;
}
.page-consulting .program-list-box {
  margin-left: 3.5rem;
}
@media (max-width: 767px) {
  .page-consulting .program-list-box {
    margin-left: 0;
    margin-top: 3rem;
  }
}
.page-consulting .program-list-box h3 {
  font-size: clamp(2.2rem, 2.6vw, 2.6rem);
  line-height: 1.5;
  padding-bottom: 1.5rem;
  font-weight: 500;
}
.page-consulting .program-list-box h3 strong {
  color: #1337AC;
}
.page-consulting .price-box {
  margin: 3rem auto 2rem auto;
  padding: 2rem;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  border: solid 1px #707070;
  font-size: clamp(2.2rem, 2.6vw, 2.6rem);
}
.page-consulting .price-box strong {
  font-weight: 400;
  font-size: clamp(1.8rem, 2vw, 2rem);
}
.page-consulting .note {
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
}
.page-consulting .consulting-detail {
  margin: 3rem auto;
  padding: 5rem 4rem;
  width: 100%;
  box-sizing: border-box;
  border: solid 1px #DFDFDF;
}
@media (max-width: 767px) {
  .page-consulting .consulting-detail {
    padding: 4rem 2rem;
  }
}
.page-consulting .consulting-detail h4 {
  padding-left: 2rem;
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
  text-decoration: none;
  font-weight: 500;
  line-height: 1.5;
  box-sizing: border-box;
}
.page-consulting .consulting-detail h4 strong {
  position: relative;
}
.page-consulting .consulting-detail h4 strong::before {
  content: "";
  display: block;
  position: absolute;
  background: #1337AC;
  border-radius: 500px;
  width: 10px;
  height: 10px;
  left: -1.8rem;
  top: 1.2rem;
  margin-top: -5px;
}
.page-consulting .consulting-detail .bd {
  width: 100%;
  border-top: solid 1px #EBEBEB;
}
.page-consulting .btn-5 {
  margin: 0 auto;
  width: 100%;
  max-width: 420px;
}

/*page-course
-----------------------------------------------------*/
.page-course .consult {
  padding: 6rem;
  background: #fff;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .page-course .consult {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}
@media (max-width: 575px) {
  .page-course .consult {
    padding: 4rem 2rem;
  }
}
.page-course .consult-tit {
  font-size: clamp(2.4rem, 3.8vw, 3.8rem);
  font-weight: 500;
  line-height: 1.5;
}
.page-course .consult-sub {
  position: relative;
  display: block;
  padding: 1rem 0 2rem 0;
  padding-top: 0.5rem;
  color: #1337AC;
  font-size: clamp(1.2rem, 1.5vw, 1.6rem);
  border-bottom: 2px solid #E6EFFF;
  line-height: 1.5;
}
.page-course .consult-sub:before {
  position: absolute;
  content: "";
  width: 40px;
  left: 0;
  bottom: -2px;
  border-bottom: 2px solid #181878;
}
.page-course .consult .btn-5 a {
  font-size: clamp(1.8rem, 2.2vw, 2.2rem);
}
.page-course .target {
  padding: 6rem;
  background: #F8FAFF;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .page-course .target {
    padding: 6rem 4rem;
  }
}
@media (max-width: 575px) {
  .page-course .target {
    padding: 4rem 2rem;
  }
}
.page-course .target h3 {
  display: flex;
  position: relative;
  align-items: center;
  color: #192340;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-weight: 600;
}
.page-course .target h3::before {
  content: "";
  display: block;
  margin-right: 1.5rem;
  width: 50px;
  height: 1px;
  background: #192340;
}
.page-course .target .mdl-check li {
  position: relative;
  padding-left: 3.3rem;
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
  text-decoration: none;
  font-weight: 500;
  line-height: 2;
}
.page-course .target .mdl-check li::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/common/check.svg) no-repeat left center;
  background-size: cover;
  width: 19px;
  height: 19px;
  left: 0;
  top: 50%;
  margin-top: -9.5px;
}
.page-course strong {
  background-color: #FFEAC1;
  padding: 0.1rem 0.2rem;
  border-radius: 0.1rem;
  box-decoration-break: clone; /* ← 改行しても背景が途切れない */
  -webkit-box-decoration-break: clone; /* Safari対策 */
  font-weight: 500;
}
.page-course p + p {
  margin-top: 3rem;
}
@media (max-width: 575px) {
  .page-course p + p {
    margin-top: 2rem;
  }
}
.page-course .course-box {
  padding: 6rem 7rem;
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .page-course .course-box {
    padding: 6rem 4rem;
    margin-left: 2rem;
    margin-right: 2rem;
  }
}
@media (max-width: 575px) {
  .page-course .course-box {
    padding: 4rem 2rem;
  }
}
.page-course .course-box h3 {
  margin: 5rem 0 3rem 0;
  font-size: clamp(1.8rem, 2vw, 2rem);
}
.page-course .course-box strong {
  background-color: #fff;
  font-weight: 700;
}
.page-course .course-about {
  position: relative;
  margin: 0 0 3rem 0;
  padding: 2rem 2rem 2rem 4rem;
  box-sizing: border-box;
  align-items: center;
  border-bottom: 2px solid #E6EFFF;
  line-height: 1.5;
  font-weight: 600;
}
@media (max-width: 767px) {
  .page-course .course-about {
    margin: 4rem 0 3rem 0;
  }
}
.page-course .course-about:before {
  position: absolute;
  content: "";
  width: 40px;
  left: 0;
  bottom: -2px;
  border-bottom: 2px solid #181878;
}
.page-course .course-about::after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 15px 15px;
  border-color: transparent transparent #1337AC transparent;
  top: 0;
  left: 0;
  transform: rotate(-45deg);
}
.page-course .course-about .name {
  font-size: clamp(2.4rem, 3vw, 3rem);
  color: #192340;
}
.page-course .course-about .detail {
  margin: 0.5rem 0 1rem 0;
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
}
.page-course .course-features {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .page-course .course-features {
    padding: 0 2rem;
  }
}
.page-course .course-features h3 {
  margin: 0 0 3rem 0;
  font-size: clamp(1.8rem, 2vw, 2rem);
}
.page-course .course-create h2 {
  font-weight: 500;
}

/*page-partner
-----------------------------------------------------*/
.page-partner-list li {
  position: relative;
  margin: 2rem 0;
  padding: 6rem 0;
  box-sizing: border-box;
  align-items: center;
  border-bottom: 2px solid #E6EFFF;
}
.page-partner-list li:before {
  position: absolute;
  content: "";
  width: 40px;
  left: 0;
  bottom: -4px;
  border-bottom: 2px solid #181878;
}
.page-partner-list .left {
  padding: 0 2rem;
  width: 350px;
  text-align: center;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .page-partner-list .left {
    width: 200px;
  }
}
@media (max-width: 575px) {
  .page-partner-list .left {
    margin: 0 auto;
    width: 100%;
    max-width: 350px;
    padding-bottom: 3rem;
  }
}
.page-partner-list .left img {
  width: 100%;
  max-width: 240px;
}
@media (max-width: 575px) {
  .page-partner-list .left img {
    max-width: 240px;
  }
}
.page-partner-list .right {
  padding-left: 4rem;
  flex: 1;
}
@media (max-width: 575px) {
  .page-partner-list .right {
    padding-left: 0;
  }
}
.page-partner-note {
  font-size: clamp(1.4rem, 2vw, 2rem);
}
.page-partner-tit {
  padding-bottom: 2rem;
  font-size: clamp(2rem, 2.7vw, 2.7rem);
  font-weight: 600;
}
.page-partner a {
  position: relative;
  font-size: 1.4rem;
  text-decoration: none;
  font-weight: 600;
}
.page-partner a::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/common/open.svg) no-repeat left center;
  background-size: cover;
  width: 15px;
  height: 15px;
  right: -25px;
  top: 50%;
  margin-top: -7.5px;
}

/*page-column
-----------------------------------------------------*/
.column-box li {
  margin: 4rem 0;
}
.column-box a {
  display: block;
  padding: 4rem;
  width: 100%;
  color: #000;
  background: #fff;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 3px 20px rgba(53, 62, 112, 0.3);
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
}
.column-box a:hover {
  opacity: 1;
  box-shadow: 0 6px 30px rgba(53, 62, 112, 0.4);
}
@media (max-width: 767px) {
  .column-box a {
    padding: 4rem 2rem;
  }
}
.column-box .date {
  color: #1337AC;
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
}
.column-box .tit {
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  font-weight: 500;
  line-height: 1.5;
}
.column-box .tit::after {
  content: "";
  display: block;
  margin-top: 1.5rem;
  height: 2px;
  width: 40px;
  background: #1337AC;
}
.column-box .more {
  position: relative;
  margin-top: 1rem;
  padding-right: 6rem;
  color: #181878;
  text-align: right;
}
.column-box .more::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/common/arrow-bl.svg) no-repeat left center;
  background-size: cover;
  width: 31px;
  height: 8px;
  right: 15px;
  top: 50%;
  margin-top: -4px;
}

/*page-examples
-----------------------------------------------------*/
.examples-list li {
  margin: 4rem 0;
}
.examples-list a {
  gap: 4rem;
  padding: 4rem;
  width: 100%;
  color: #000;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 3px 20px rgba(53, 62, 112, 0.3);
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
}
.examples-list a:hover {
  opacity: 1;
  box-shadow: 0 6px 30px rgba(53, 62, 112, 0.4);
}
@media (max-width: 1023px) {
  .examples-list a {
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .examples-list a {
    padding: 4rem 2rem;
  }
}
.examples-list .left {
  width: 180px;
}
@media (max-width: 767px) {
  .examples-list .left {
    margin: 0 auto 3rem auto;
    width: 100%;
    max-width: 180px;
  }
}
.examples-list .examples-box {
  flex: 1;
}
.examples-list .date {
  color: #1337AC;
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
}
.examples-list .tit {
  margin-bottom: 2.5rem;
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  font-weight: 500;
  line-height: 1.5;
}
.examples-list .tit::after {
  content: "";
  display: block;
  margin-top: 1rem;
  height: 2px;
  width: 40px;
  background: #1337AC;
}
.examples-list .more {
  position: relative;
  margin-top: 1rem;
  padding-right: 6rem;
  color: #181878;
  text-align: right;
}
.examples-list .more::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/common/arrow-bl.svg) no-repeat left center;
  background-size: cover;
  width: 31px;
  height: 8px;
  right: 15px;
  top: 50%;
  margin-top: -4px;
}

.single-examples .examples-box {
  padding-bottom: 8rem;
  gap: 6rem;
}
@media (max-width: 1023px) {
  .single-examples .examples-box {
    gap: 4rem;
  }
}
.single-examples .side {
  max-width: 360px;
  width: 30vw;
}
@media (max-width: 767px) {
  .single-examples .side {
    margin: 0 auto 5rem auto;
    max-width: 100%;
    width: 360px;
  }
}
.single-examples .catch-img {
  width: 100%;
}
.single-examples .catch-img img {
  border-radius: 10px;
}
.single-examples .examples-in {
  flex: 1;
}
.single-examples .movie_link {
  margin: 0 auto;
  max-width: 300px;
  border-radius: 0;
}
.single-examples .btn-5 a {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/*service-examples
-----------------------------------------------------*/
.service-list li {
  margin: 4rem 0;
}
.service-list a {
  align-items: center;
  gap: 4rem;
  padding: 6rem;
  width: 100%;
  color: #000;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 3px 20px rgba(53, 62, 112, 0.3);
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
}
.service-list a:hover {
  opacity: 1;
  box-shadow: 0 6px 30px rgba(53, 62, 112, 0.4);
}
@media (max-width: 1023px) {
  .service-list a {
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .service-list a {
    padding: 4rem 2rem;
  }
}
.service-list .left {
  width: 320px;
}
@media (max-width: 767px) {
  .service-list .left {
    margin: 0 auto 3rem auto;
    width: 100%;
    max-width: 320px;
  }
}
.service-list .right {
  flex: 1;
}
.service-list .tit {
  position: relative;
  margin-bottom: 2.5rem;
  padding: 1rem 0 2rem 0;
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  font-weight: 500;
  line-height: 1.5;
  border-bottom: 2px solid #E6EFFF;
}
.service-list .tit:before {
  position: absolute;
  content: "";
  width: 40px;
  left: 0;
  bottom: -2px;
  border-bottom: 2px solid #181878;
}
.service-list .sub {
  display: block;
  padding-top: 0.5rem;
  color: #1337AC;
  font-size: clamp(1.2rem, 1.5vw, 1.6rem);
}

/*page-produce
-----------------------------------------------------*/
.produce p + p {
  margin-top: 3rem;
}
@media (max-width: 575px) {
  .produce p + p {
    margin-top: 2rem;
  }
}

/*page-privacypolicy
-----------------------------------------------------*/
.privacy-policy h3 {
  font-size: 2.8rem;
  font-weight: 500;
  position: relative;
  margin-bottom: 0.2rem;
  padding: 1rem 0;
  border-bottom: 2px solid #E6EFFF;
  margin-bottom: 3rem;
  margin-top: 6rem;
}
.privacy-policy h3:before {
  position: absolute;
  content: "";
  width: 40px;
  left: 0;
  bottom: -4px;
  border-bottom: 2px solid #181878;
}
.privacy-policy h3:first-of-type {
  margin-top: 0;
}
@media (max-width: 767px) {
  .privacy-policy h3 {
    font-size: 2.2rem;
  }
}
@media (max-width: 575px) {
  .privacy-policy h3 {
    font-size: 2rem;
  }
}
.privacy-policy .page-sec ul {
  margin: 2rem 0 2rem 1rem;
}
.privacy-policy .page-sec ul li {
  font-size: 1.8rem;
}
.privacy-policy .page-sec ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  background-color: #222222;
  border-radius: 50%;
  margin-right: 8px;
}

@media (max-width: 767px) {
  .privacy-policy .page-sec ul li {
    font-size: 1.4rem;
  }
}
.privacy-policy .page-sec ul li + li {
  margin-top: 0.5rem;
}

/*page-contact
-----------------------------------------------------*/
.contact-in {
  max-width: 1000px;
  margin: 0 auto;
}
.contact-in .required {
  color: #FF0000;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.4rem;
  padding: 0.1rem 0.8rem;
  margin-left: 1rem;
}

.contact-note {
  padding: 7rem 0 3rem 0;
}

.contact-box {
  background: #fff;
  padding: 6rem 5rem;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .contact-box {
    padding: 4rem 2rem;
  }
}
.contact-box dl {
  padding-top: 4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: solid 1px #D5D5D5;
}
@media (max-width: 767px) {
  .contact-box dl {
    display: block;
  }
}
.contact-box dl:first-of-type {
  padding-top: 0;
}
.contact-box dt {
  color: #000;
  font-weight: bold;
  margin-bottom: 1rem;
  padding-right: 4rem;
  width: 260px;
  box-sizing: border-box;
}
.contact-box dd {
  margin-bottom: 4rem;
  width: 100%;
  flex: 1;
}
.contact-box dd input.input-text,
.contact-box dd textarea {
  background: #fff;
  border: solid 1px #C6C6C6;
  width: 100%;
  height: 5.5rem;
  padding: 1.5rem 2rem;
  box-sizing: border-box;
  font-size: 1.6rem;
  border-radius: 4px;
}
.contact-box dd input.input-text::-moz-placeholder, .contact-box dd textarea::-moz-placeholder {
  color: #b8b8b8;
}
.contact-box dd input.input-text::placeholder,
.contact-box dd textarea::placeholder {
  color: #b8b8b8;
}
.contact-box dd textarea {
  height: 30rem;
}
.contact-box dd select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  /* デフォルトの矢印を非表示 */
  border: none;
  background: #fff;
  border-radius: 4px;
  border: solid 1px #C6C6C6;
  height: 5.5rem;
  padding: 1.5rem 2rem;
  box-sizing: border-box;
  font-size: 1.6rem;
  width: calc(50% - 1rem);
  background-image: url(../images/contact/arrow_down.svg);
  background-position: right 15px center;
  background-repeat: no-repeat;
  background-size: 20px 10px;
}
@media (max-width: 575px) {
  .contact-box dd select {
    width: 100%;
  }
}

/*submit*/
.submit-box {
  margin: 6rem auto 0 auto;
  text-align: center;
  font-family: "Noto Serif CJK JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
.submit-box .submit {
  position: relative;
  display: inline-block;
  transition: all 0.3s;
}
.submit-box .submit p {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}
.submit-box input[type=submit] {
  display: inline-block;
  width: 420px;
  padding: 2.8rem 4rem;
  color: #fff;
  background: #133082;
  text-decoration: none;
  line-height: 1;
  outline: none;
  border: none;
  font-size: 2rem;
  transition: 0.3s linear;
  cursor: pointer;
}
@media (max-width: 767px) {
  .submit-box input[type=submit] {
    width: 400px;
  }
}
@media (max-width: 575px) {
  .submit-box input[type=submit] {
    width: 260px;
  }
}
.submit-box input[type=submit]:hover {
  opacity: 0.6;
}

@media (max-width: 767px) {
  .wp-block-buttons > .wp-block-button.wp-block-button__width-70 {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .wp-block-buttons > .wp-block-button.wp-block-button__width-50 {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .wp-block-buttons > .wp-block-button.wp-block-button__width-25 {
    width: 100%;
  }
}

/*右側へ要素を広げる*/
.column-outside-right {
  flex: 1;
  margin-right: calc(50% - 50vw);
}

/*左側へ要素を広げる*/
.column-outside-left {
  flex: 1;
  margin-left: calc(50% - 50vw);
}

.reverse {
  flex-direction: row-reverse;
}

/*右に広がったパターン*/
.header-img {
  flex: 1;
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}
.header-img img {
  width: 100%;
}

/*pagination
-----------------------------------------------------*/
.pagination {
  display: flex;
  margin-top: 10rem;
  justify-content: center;
  text-align: center;
}
.pagination ul {
  display: flex;
  justify-content: center;
  gap: 8px; /* ボタン間の余白 */
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination ul li {
  list-style: none;
}
.pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  text-decoration: none;
  font-size: clamp(1.8rem, 2vw, 2rem);
}
@media (max-width: 575px) {
  .pagination .page-numbers {
    width: 40px;
    height: 40px;
  }
}
.pagination .page-numbers a {
  background-color: #E3E3E3;
  color: #666666;
}
.pagination .page-numbers.current {
  background-color: #C1AA3B;
  color: #ffffff;
}/*# sourceMappingURL=style.css.map */