@charset "UTF-8";
/*  ---  画像やiframeの自動上下左右調整  ---   */
/* Box sizing */
*, *::before, *::after {
  box-sizing: border-box;
}
/* Remove default margin */
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
}
/* Lists */
ul, ol {
  margin: 0;
  padding: 0;
}
ul[role="list"], ol[role="list"] {
  list-style: none;
}
/* Media elements */
img, picture {
  max-width: 100%;
  height: auto;
}
img {
  vertical-align: bottom;
}
/* Headings: inherit font styles */
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}
/* Forms: inherit fonts */
input, button, textarea, select {
  font: inherit;
}
textarea {
  box-sizing: border-box;
}
/* Tables*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* Hidden attribute */
[hidden] {
  display: none !important;
}
/* font-size */
:root {
  --fs-14: 14px;
  --fs-16: 16px;
  --fs-18: 18px;
  --fs-20: 18px;
  --fs-24: 20px;
  --fs-28: 20px;
  --fs-32: 20px;
  --fs-40: 24px;
  --fs-50: 50px;
  --fs-80: 45px;
  --fs-100: 60px;
}
@media (min-width: 768px) {
  :root {
    --fs-28: 20px;
    --fs-100: 80px;
  }
}
@media (min-width: 992px) {
  :root {
    --fs-20: 20px;
    --fs-28: 24px;
    --fs-32: 32px;
    --fs-40: 32px;
    --fs-80: 60px;
    --fs-100: 90px;
  }
}
@media (min-width: 1200px) {
  :root {
    --fs-24: 24px;
    --fs-40: 40px;
    --fs-80: 80px;
    --fs-100: 100px;
  }
}
:root {
  /* color */
  --color-white: #FFFFFF;
  --color-lightgray: #f8f8f8;
  --color-blue: #0062C4;
  --color-red: #C40000;
  --color-deepgray: #707070;
  --color-black: #000000;
  /* font-weight */
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;
  --fw-900: 900;
  /* font-family */
  --ff-ja: "Noto Sans JP", sans-serif;
  --ff-en: "Barlow", sans-serif;
  --ff-fa: "Font Awesome 6 Free";
  /* line-height */
  --lh-100: 1;
  --lh-110: 1.1;
  --lh-150: 1.5;
  --lh-175: 1.75;
  --lh-180: 1.80;
  --lh-190: 1.9;
  --lh-200: 2;
  /* letter-spacing (em × 1000) */
  --ls-0: 0;
  --ls-10: 0.01em;
  --ls-20: 0.02em;
  --ls-50: 0.05em;
  --ls-100: 0.1em;
  --ls-100: 0.138em;
  --ls-150: 0.15em;
}
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  color: var(--color-navy);
  font-size: 14px;
  font-family: var(--ff-ja);
  font-weight: var(--fw-500);
  letter-spacing: var(--ls-100);
  line-height: var(--lh-175);
}
ul, ol, dl {
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
/*
a:not([class]) {
  text-decoration-skip-ink: auto;
}
*/
/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media (hover: hover) {
  a {
    text-decoration: none;
    transition: all 0.5s;
    cursor: pointer;
  }
  a:hover, a:focus, a:active {
    opacity: 0.6;
  }
  a:hover::before, a:hover::after, a:focus::before, a:focus::after, a:active::before, a:active::after {
    opacity: 0.6;
  }
  a.no-hover:hover, a.no-hover:focus, a.no-hover:active {
    opacity: 1;
  }
  a.no-hover:hover::before, a.no-hover:hover::after, a.no-hover:focus::before, a.no-hover:focus::after, a.no-hover:active::before, a.no-hover:active::after {
    opacity: 1;
  }
}
.is-navhover {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 15;
}
.js-tabChange__drawer {
  display: none;
}
.js-tabChange__drawer.is-tabChange__show {
  display: block !important;
}
.js-tabChange__drawerTwoStagesArea {
  position: relative;
}
.js-tabChange__drawerTwoStages {
  position: absolute;
  top: 0;
  left: 0px;
  z-index: -1;
  opacity: 0;
}
.js-tabChange__drawerTwoStages.is-tabChange__show {
  position: inherit;
  z-index: 0;
  opacity: 1;
}
/*  ---  パンくずリスト  ---   */
.bl-breadList__wrapper {
  width: 100%;
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #fff;
  color: var(--color-deepgray);
}
.bl-breadList {
  max-width: 1200px;
  width: 100%;
  margin: 0px auto;
  padding: 0 15px;
  padding-bottom: 0;
}
.bl-breadList__item {
  display: inline-block;
  font-size: 14px;
  font-weight: var(--fw-400);
  line-height: var(--lh-175);
  letter-spacing: var(--ls-100);
}
.bl-breadList__item:not(:last-child)::after {
  display: inline-block;
  content: "/";
}
/*  ---  パンくずリスト  ---   */
/*  ---  img  ---   */
.bl-imgFitIn__1x1 {
  aspect-ratio: 1;
}
.bl-imgFitIn__4x3 {
  aspect-ratio: 1.3333333333;
}
.bl-imgFitIn__16x9 {
  aspect-ratio: 1.7777777778;
}
.bl-imgFitIn__2x1 {
  aspect-ratio: 2;
}
.bl-imgFitIn__1x1, .bl-imgFitIn__4x3, .bl-imgFitIn__16x9, .bl-imgFitIn__2x1 {
  display: block;
  overflow: hidden;
}
.bl-imgFitIn__1x1 img, .bl-imgFitIn__4x3 img, .bl-imgFitIn__16x9 img, .bl-imgFitIn__2x1 img, .bl-imgFitIn__1x1 iframe, .bl-imgFitIn__4x3 iframe, .bl-imgFitIn__16x9 iframe, .bl-imgFitIn__2x1 iframe {
  width: 100%;
  height: 100%;
  margin: auto;
  object-fit: contain;
  object-position: center;
}
.bl-imgFitIn__4x3 img {
  object-fit: cover;
}
/*  ---  img  ---   */
#ez-toc-container {
  padding: 15px;
  border: 1px solid var(--color-deepgray);
  background: var(--color-lightgray);
  margin-bottom: 30px;
  counter-reset: toc-h2;
}
@media (min-width: 768px) {
  #ez-toc-container {
    padding: 30px;
  }
}
@media (min-width: 1200px) {
  #ez-toc-container {
    padding: 30px 50px;
  }
}
#ez-toc-container .ez-toc-title-container {
  margin-bottom: 20px;
}
#ez-toc-container .ez-toc-title {
  font-size: 20px;
  letter-spacing: var(--ls-150);
}
@media (min-width: 768px) {
  #ez-toc-container .ez-toc-title {
    font-size: 24px;
  }
}
#ez-toc-container .ez-toc-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
#ez-toc-container .ez-toc-list li {
  list-style: none !important;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: var(--lh-150);
  position: relative;
}
#ez-toc-container .ez-toc-list li a {
  display: flex;
  text-decoration: none;
  color: inherit;
}
#ez-toc-container .ez-toc-list .ez-toc-heading-level-2 {
  counter-increment: toc-h2;
  counter-reset: toc-h3;
}
#ez-toc-container .ez-toc-list .ez-toc-heading-level-2 > a::before {
  content: counter(toc-h2) ". ";
  color: var(--color-red);
  font-weight: var(--fw-700);
  margin-right: 6px;
}
#ez-toc-container .ez-toc-list .ez-toc-heading-level-3 {
  counter-increment: toc-h3;
}
#ez-toc-container .ez-toc-list .ez-toc-heading-level-3 > a::before {
  content: counter(toc-h2) "-" counter(toc-h3) ". ";
  color: var(--color-red);
  font-weight: var(--fw-700);
  margin-right: 6px;
}
#ez-toc-container .ez-toc-list .ez-toc-heading-level-4 > a::before {
  content: counter(toc-h2) "-" counter(toc-h3) "-" counter(toc-h4) ". ";
  color: var(--color-red);
  font-weight: var(--fw-700);
  margin-right: 6px;
}
.editor-content #ez-toc-container .ez-toc-list li {
  list-style: none !important;
}
.bl-tableScroll {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.bl-tableScroll table {
  min-width: 800px;
  width: 100%;
}
.is-tableScroll {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.is-tableScroll table {
  min-width: 800px;
  width: 100%;
}
@media (min-width: 992px) {
  .is-tableScroll__sign {
    display: none;
  }
}
.bl-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.bl-pagination__wrapper {
  padding-bottom: 40px;
}
@media (min-width: 992px) {
  .bl-pagination__wrapper {
    padding-bottom: 80px;
  }
}
.bl-pagination__item a, .bl-pagination__item span {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 45px;
  height: 45px;
  padding: 0 12px;
  border: 1px solid var(--color-deepgray);
  transition: 0.3s;
}
/*  ---  bl-loopCase  ---   */
.bl-loopCase__link {
  display: block;
  height: 100%;
  border: solid 1px var(--color-deepgray);
}
.bl-loopCase__title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 60px;
  padding: 20px 30px;
  font-size: var(--fs-16);
  font-weight: var(--fw-500);
  line-height: var(--lh-150);
  letter-spacing: var(--ls-100);
  color: var(--color-blue);
  border-top: solid 1px var(--color-deepgray);
  border-bottom: solid 1px var(--color-deepgray);
  background-color: var(--color-white);
}
.bl-loopCase__tableWrapper {
  padding: 20px 30px;
  background-color: var(--color-white);
}
.bl-loopCase__tableWrapper th, .bl-loopCase__tableWrapper td {
  width: 105px;
  font-weight: var(--fw-500);
  line-height: var(--lh-175);
  letter-spacing: var(--ls-100);
  text-align: left;
  position: relative;
}
.bl-loopCase__tableWrapper th {
  padding-right: 10px;
}
.bl-loopCase__tableWrapper td {
  width: auto;
}
/*  ---  bl-loopCase  ---   */
/*  ---  bl-loopColumn  ---   */
.bl-loopColumn {
  display: block;
  height: 100%;
  border: solid 1px var(--color-deepgray);
}
.bl-loopColumn__body {
  padding: 0 30px;
}
.bl-loopColumn__title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 60px;
  padding: 20px 0 15px;
  font-size: var(--fs-16);
  font-weight: var(--fw-500);
  line-height: var(--lh-150);
  letter-spacing: var(--ls-100);
  color: var(--color-blue);
}
.bl-loopColumn__text {
  padding: 0 0 30px;
}
/*  ---  bl-loopColumn  ---   */
/*  ---  bl-loopFaq  ---   */
.bl-loopFaq__link {
  text-align: left;
  display: flex;
  align-items: center;
  font-family: var(--ff-ja);
  letter-spacing: var(--ls-150);
  line-height: var(--lh-150);
  font-size: 16px;
  padding: 13px 20px;
  margin-bottom: 20px;
  border: solid 1px var(--color-blue);
}
.bl-loopFaq__link img {
  margin-right: 20px;
  max-width: 30px;
}
/*  ---  bl-loopFaq  ---   */
/*  ---  bl-loopGlossary  ---   */
.bl-loopGlossary__link {
  text-align: left;
  display: block;
  font-family: var(--ff-ja);
  letter-spacing: var(--ls-150);
  line-height: var(--lh-150);
  font-size: 14px;
  padding: 15px 20px;
  border: solid 1px var(--color-deepgray);
}
.bl-loopGlossary__link .p-glossaryFa {
  color: var(--color-blue);
}
/*  ---  bl-loopGlossary  ---   */
/*  ---  bl-loopNews  ---   */
.bl-loopNews__link {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  border-bottom: solid 1px var(--color-deepgray);
}
@media (min-width: 768px) {
  .bl-loopNews__link {
    flex-direction: row;
    align-items: center;
  }
}
.bl-loopNews__time {
  font-family: var(--ff-en);
  letter-spacing: var(--ls-100);
  line-height: var(--lh-150);
  font-size: 16px;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .bl-loopNews__time {
    padding-bottom: 0;
    margin-right: 30px;
  }
}
.bl-loopNews__text {
  font-family: var(--ff-ja);
  letter-spacing: var(--ls-100);
  line-height: var(--lh-150);
}
/*  ---  bl-loopNews  ---   */
/*  ---  bl-mainVisual  ---   */
.bl-mainVisualTop {
  height: 500px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .bl-mainVisualTop {
    height: 300px;
  }
}
@media (min-width: 992px) {
  .bl-mainVisualTop {
    height: 500px;
  }
}
.bl-mainVisualTop__1 {
  background-image: url("../../assets/images/top/bg-mainVisual-1_sm.webp");
}
@media (min-width: 768px) {
  .bl-mainVisualTop__1 {
    background-image: url("../../assets/images/top/bg-mainVisual-1_md.webp");
  }
}
@media (min-width: 992px) {
  .bl-mainVisualTop__1 {
    background-image: url("../../assets/images/top/bg-mainVisual-1_lg.webp");
  }
}
@media (min-width: 1200px) {
  .bl-mainVisualTop__1 {
    background-image: url("../../assets/images/top/bg-mainVisual-1_xl.webp");
  }
}
.bl-mainVisualTop__2 {
  background-image: url("../../assets/images/top/bg-mainVisual-2_sm.webp");
}
@media (min-width: 768px) {
  .bl-mainVisualTop__2 {
    background-image: url("../../assets/images/top/bg-mainVisual-2_md.webp");
  }
}
@media (min-width: 992px) {
  .bl-mainVisualTop__2 {
    background-image: url("../../assets/images/top/bg-mainVisual-2_lg.webp");
  }
}
@media (min-width: 1200px) {
  .bl-mainVisualTop__2 {
    background-image: url("../../assets/images/top/bg-mainVisual-2_xl.webp");
  }
}
.bl-mainVisualTop__wrapper {
  height: 500px;
  margin-bottom: 0 !important;
  overflow: hidden;
}
@media (min-width: 768px) {
  .bl-mainVisualTop__wrapper {
    height: 300px;
  }
}
@media (min-width: 992px) {
  .bl-mainVisualTop__wrapper {
    height: 500px;
  }
}
.bl-mainVisualTop__wrapper .slick-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  bottom: 10px;
  z-index: 10;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .bl-mainVisualTop__wrapper .slick-dots {
    bottom: 10px;
  }
}
@media (min-width: 1200px) {
  .bl-mainVisualTop__wrapper .slick-dots {
    bottom: 20px;
  }
}
.bl-mainVisualTop__wrapper .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0;
}
.bl-mainVisualTop__wrapper .slick-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-white);
  border: solid 1px var(--color-deepgray);
  padding: 0;
}
.bl-mainVisualTop__wrapper .slick-dots button::before {
  display: none;
}
.bl-mainVisualTop__wrapper .slick-dots .slick-active button {
  background: var(--color-red);
}
.bl-mainVisualTop__inner {
  width: 100%;
  height: 100%;
  margin: 0px auto;
}
.bl-mainVisualTop__textArea {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  padding: 0 20px;
  height: 50%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  bottom: calc(-50% + 30px);
  right: 0px;
  width: -moz-fit-content;
  padding: 20px;
}
@media (min-width: 768px) {
  .bl-mainVisualTop__textArea {
    width: calc(100% + 50vw);
    height: 100%;
    top: 0px;
    right: 0px;
    width: fit-content;
    width: -moz-fit-content;
    padding: 45px 30px;
    align-items: flex-start;
  }
}
@media (min-width: 992px) {
  .bl-mainVisualTop__textArea {
    gap: 30px;
    padding: 85px 40px;
  }
}
@media (min-width: 1200px) {
  .bl-mainVisualTop__textArea {
    width: calc(100% + 50vw);
    height: 100%;
    top: 0px;
    right: 0px;
    width: fit-content;
    width: -moz-fit-content;
    padding: 72px 80px 92px;
    align-items: flex-start;
  }
}
.bl-mainVisualTop__title {
  font-size: 20px;
  font-weight: var(--fw-700);
  line-height: var(--lh-150);
  letter-spacing: var(--ls-150);
  text-align: center;
  text-shadow: 0 0px 10px rgba(255, 255, 255, 0.4), 0 0px 10px rgba(255, 255, 255, 0.4);
}
@media (min-width: 576px) {
  .bl-mainVisualTop__title {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .bl-mainVisualTop__title {
    font-size: 32px;
  }
}
.bl-mainVisualTop__title--lg {
  font-size: 20px;
  font-weight: var(--fw-700);
  line-height: var(--lh-150);
  letter-spacing: var(--ls-150);
  text-align: center;
}
@media (min-width: 576px) {
  .bl-mainVisualTop__title--lg {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .bl-mainVisualTop__title--lg {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .bl-mainVisualTop__title--lg {
    text-shadow: none;
    font-size: 36px;
  }
}
.bl-mainVisualTop__text {
  display: block;
  border-top: solid 1px var(--color-deepgray);
  padding-top: 15px;
  font-size: 14px;
  font-weight: var(--fw-500);
  line-height: var(--lh-175);
  letter-spacing: var(--ls-100);
  text-align: center;
}
@media (min-width: 768px) {
  .bl-mainVisualTop__text {
    font-size: 16px;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .bl-mainVisualTop__text {
    text-shadow: none;
    font-size: 20px;
    padding-top: 30px;
  }
}
.bl-mainVisual {
  background: url("../../assets/images/common/bg-mainVisual--sub.webp") no-repeat center / cover;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bl-mainVisual__title {
  font-family: var(--ff-ja);
  letter-spacing: var(--ls-150);
  line-height: var(--lh-150);
  font-size: 24px;
}
@media (min-width: 1200px) {
  .bl-mainVisual__title {
    font-size: 32px;
  }
}
/*  ---  bl-mainVisual  ---   */
/*  ---  c-flow  ---   */
.c-flow-item {
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  height: 100%;
  position: relative;
  position: relative;
}
.c-flow-item .main-image {
  margin-top: 50px;
  position: relative;
}
.c-flow-step {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  transform: translate(-50%, calc(-50% + 50px));
  background-color: var(--color-white);
  border: solid 1px var(--color-blue);
  padding: 10px 20px;
  color: var(--color-blue);
  font-family: var(--ff-ja);
  letter-spacing: var(--ls-150);
  line-height: var(--lh-150);
  font-size: 16px;
}
@media (min-width: 1200px) {
  .c-flow-step {
    padding: 16px 26px;
    font-size: 20px;
  }
}
.c-flow-text {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.c-flow-text .main-text {
  padding-bottom: 30px;
}
.c-flow-title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-red);
  padding: 20px 0;
  font-size: 18px;
  font-family: var(--ff-ja);
  letter-spacing: var(--ls-150);
  line-height: var(--lh-150);
}
@media (min-width: 768px) {
  .c-flow-title {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .c-flow-title {
    font-size: 28px;
  }
}
.c-movie-thumbnail {
  position: relative;
}
.c-movie-thumbnail::before {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 4.6rem;
  z-index: 1;
}
/*  ---  c-flow  ---   */
.l-container {
  width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
  padding-inline: 15px;
}
@media (min-width: 576px) {
  .l-container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .l-container {
    max-width: 730px;
  }
}
@media (min-width: 992px) {
  .l-container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .l-container {
    max-width: 1200px;
  }
}
@media (min-width: 576px) {
  .l-container--narrow {
    max-width: 500px;
  }
}
@media (min-width: 768px) {
  .l-container--narrow {
    max-width: 680px;
  }
}
@media (min-width: 992px) {
  .l-container--narrow {
    max-width: 840px;
  }
}
@media (min-width: 1200px) {
  .l-container--narrow {
    max-width: 1000px;
  }
}
@media (min-width: 576px) {
  .l-container--slim {
    max-width: 420px;
  }
}
@media (min-width: 768px) {
  .l-container--slim {
    max-width: 560px;
  }
}
@media (min-width: 992px) {
  .l-container--slim {
    max-width: 720px;
  }
}
@media (min-width: 1200px) {
  .l-container--slim {
    max-width: 840px;
  }
}
@media (min-width: 576px) {
  .l-container--wide {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .l-container--wide {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .l-container--wide {
    max-width: 1200px;
  }
}
@media (min-width: 1200px) {
  .l-container--wide {
    max-width: 1360px;
  }
}
.l-container--full {
  max-width: none;
}
.l-container--no-gutter {
  padding-inline: 0;
}
@media (min-width: 992px) {
  .l-container--no-gutter-lg {
    padding-inline: 0;
  }
}
.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col, .no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
/* col-order-offset */
@media (min-width: 0px) {
  .col, .col-auto {
    max-width: 100%;
  }
  .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
  .col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .col-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-1 {
    margin-left: 8.333333%;
  }
  .offset-2 {
    margin-left: 16.666667%;
  }
  .offset-3 {
    margin-left: 25%;
  }
  .offset-4 {
    margin-left: 33.333333%;
  }
  .offset-5 {
    margin-left: 41.666667%;
  }
  .offset-6 {
    margin-left: 50%;
  }
  .offset-7 {
    margin-left: 58.333333%;
  }
  .offset-8 {
    margin-left: 66.666667%;
  }
  .offset-9 {
    margin-left: 75%;
  }
  .offset-10 {
    margin-left: 83.333333%;
  }
  .offset-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-sm-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-sm-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-sm-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-sm-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-sm-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-sm-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-sm-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-sm-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-sm-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-sm-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-sm-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-sm-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-sm-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-md-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-md-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-md-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-md-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-md-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-md-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-md-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-md-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-md-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-md-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-md-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-md-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-lg-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-lg-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-lg-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-lg-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-lg-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-lg-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-lg-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-lg-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-lg-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-lg-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-lg-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-lg-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-lg-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xl-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xl-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xl-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
/* display */
@media (min-width: 0px) {
  .d-none {
    display: none !important;
  }
  .d-inline {
    display: inline !important;
  }
  .d-inline-block {
    display: inline-block !important;
  }
  .d-block {
    display: block !important;
  }
  .d-table {
    display: table !important;
  }
  .d-table-row {
    display: table-row !important;
  }
  .d-table-cell {
    display: table-cell !important;
  }
  .d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
/* flexbox */
@media (min-width: 0px) {
  .flex-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 576px) {
  .flex-sm-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
/* margin-padding */
@media (min-width: 0px) {
  .mt-0 {
    margin-top: 0 !important;
  }
  .mt-5 {
    margin-top: 5px !important;
  }
  .mt-n5 {
    margin-top: -5px !important;
  }
  .mt-10 {
    margin-top: 10px !important;
  }
  .mt-n10 {
    margin-top: -10px !important;
  }
  .mt-15 {
    margin-top: 15px !important;
  }
  .mt-n15 {
    margin-top: -15px !important;
  }
  .mt-20 {
    margin-top: 20px !important;
  }
  .mt-n20 {
    margin-top: -20px !important;
  }
  .mt-25 {
    margin-top: 25px !important;
  }
  .mt-n25 {
    margin-top: -25px !important;
  }
  .mt-30 {
    margin-top: 30px !important;
  }
  .mt-n30 {
    margin-top: -30px !important;
  }
  .mt-35 {
    margin-top: 35px !important;
  }
  .mt-n35 {
    margin-top: -35px !important;
  }
  .mt-40 {
    margin-top: 40px !important;
  }
  .mt-n40 {
    margin-top: -40px !important;
  }
  .mt-45 {
    margin-top: 45px !important;
  }
  .mt-n45 {
    margin-top: -45px !important;
  }
  .mt-50 {
    margin-top: 50px !important;
  }
  .mt-n50 {
    margin-top: -50px !important;
  }
  .mt-55 {
    margin-top: 55px !important;
  }
  .mt-n55 {
    margin-top: -55px !important;
  }
  .mt-60 {
    margin-top: 60px !important;
  }
  .mt-n60 {
    margin-top: -60px !important;
  }
  .mt-65 {
    margin-top: 65px !important;
  }
  .mt-n65 {
    margin-top: -65px !important;
  }
  .mt-70 {
    margin-top: 70px !important;
  }
  .mt-n70 {
    margin-top: -70px !important;
  }
  .mt-75 {
    margin-top: 75px !important;
  }
  .mt-n75 {
    margin-top: -75px !important;
  }
  .mt-80 {
    margin-top: 80px !important;
  }
  .mt-n80 {
    margin-top: -80px !important;
  }
  .mt-85 {
    margin-top: 85px !important;
  }
  .mt-n85 {
    margin-top: -85px !important;
  }
  .mt-90 {
    margin-top: 90px !important;
  }
  .mt-n90 {
    margin-top: -90px !important;
  }
  .mt-95 {
    margin-top: 95px !important;
  }
  .mt-n95 {
    margin-top: -95px !important;
  }
  .mt-100 {
    margin-top: 100px !important;
  }
  .mt-n100 {
    margin-top: -100px !important;
  }
  .mt-auto {
    margin-top: auto !important;
  }
  .mb-0 {
    margin-bottom: 0 !important;
  }
  .mb-5 {
    margin-bottom: 5px !important;
  }
  .mb-n5 {
    margin-bottom: -5px !important;
  }
  .mb-10 {
    margin-bottom: 10px !important;
  }
  .mb-n10 {
    margin-bottom: -10px !important;
  }
  .mb-15 {
    margin-bottom: 15px !important;
  }
  .mb-n15 {
    margin-bottom: -15px !important;
  }
  .mb-20 {
    margin-bottom: 20px !important;
  }
  .mb-n20 {
    margin-bottom: -20px !important;
  }
  .mb-25 {
    margin-bottom: 25px !important;
  }
  .mb-n25 {
    margin-bottom: -25px !important;
  }
  .mb-30 {
    margin-bottom: 30px !important;
  }
  .mb-n30 {
    margin-bottom: -30px !important;
  }
  .mb-35 {
    margin-bottom: 35px !important;
  }
  .mb-n35 {
    margin-bottom: -35px !important;
  }
  .mb-40 {
    margin-bottom: 40px !important;
  }
  .mb-n40 {
    margin-bottom: -40px !important;
  }
  .mb-45 {
    margin-bottom: 45px !important;
  }
  .mb-n45 {
    margin-bottom: -45px !important;
  }
  .mb-50 {
    margin-bottom: 50px !important;
  }
  .mb-n50 {
    margin-bottom: -50px !important;
  }
  .mb-55 {
    margin-bottom: 55px !important;
  }
  .mb-n55 {
    margin-bottom: -55px !important;
  }
  .mb-60 {
    margin-bottom: 60px !important;
  }
  .mb-n60 {
    margin-bottom: -60px !important;
  }
  .mb-65 {
    margin-bottom: 65px !important;
  }
  .mb-n65 {
    margin-bottom: -65px !important;
  }
  .mb-70 {
    margin-bottom: 70px !important;
  }
  .mb-n70 {
    margin-bottom: -70px !important;
  }
  .mb-75 {
    margin-bottom: 75px !important;
  }
  .mb-n75 {
    margin-bottom: -75px !important;
  }
  .mb-80 {
    margin-bottom: 80px !important;
  }
  .mb-n80 {
    margin-bottom: -80px !important;
  }
  .mb-85 {
    margin-bottom: 85px !important;
  }
  .mb-n85 {
    margin-bottom: -85px !important;
  }
  .mb-90 {
    margin-bottom: 90px !important;
  }
  .mb-n90 {
    margin-bottom: -90px !important;
  }
  .mb-95 {
    margin-bottom: 95px !important;
  }
  .mb-n95 {
    margin-bottom: -95px !important;
  }
  .mb-100 {
    margin-bottom: 100px !important;
  }
  .mb-n100 {
    margin-bottom: -100px !important;
  }
  .mb-auto {
    margin-bottom: auto !important;
  }
  .mr-0 {
    margin-right: 0 !important;
  }
  .mr-5 {
    margin-right: 5px !important;
  }
  .mr-n5 {
    margin-right: -5px !important;
  }
  .mr-10 {
    margin-right: 10px !important;
  }
  .mr-n10 {
    margin-right: -10px !important;
  }
  .mr-15 {
    margin-right: 15px !important;
  }
  .mr-n15 {
    margin-right: -15px !important;
  }
  .mr-20 {
    margin-right: 20px !important;
  }
  .mr-n20 {
    margin-right: -20px !important;
  }
  .mr-25 {
    margin-right: 25px !important;
  }
  .mr-n25 {
    margin-right: -25px !important;
  }
  .mr-30 {
    margin-right: 30px !important;
  }
  .mr-n30 {
    margin-right: -30px !important;
  }
  .mr-35 {
    margin-right: 35px !important;
  }
  .mr-n35 {
    margin-right: -35px !important;
  }
  .mr-40 {
    margin-right: 40px !important;
  }
  .mr-n40 {
    margin-right: -40px !important;
  }
  .mr-45 {
    margin-right: 45px !important;
  }
  .mr-n45 {
    margin-right: -45px !important;
  }
  .mr-50 {
    margin-right: 50px !important;
  }
  .mr-n50 {
    margin-right: -50px !important;
  }
  .mr-55 {
    margin-right: 55px !important;
  }
  .mr-n55 {
    margin-right: -55px !important;
  }
  .mr-60 {
    margin-right: 60px !important;
  }
  .mr-n60 {
    margin-right: -60px !important;
  }
  .mr-65 {
    margin-right: 65px !important;
  }
  .mr-n65 {
    margin-right: -65px !important;
  }
  .mr-70 {
    margin-right: 70px !important;
  }
  .mr-n70 {
    margin-right: -70px !important;
  }
  .mr-75 {
    margin-right: 75px !important;
  }
  .mr-n75 {
    margin-right: -75px !important;
  }
  .mr-80 {
    margin-right: 80px !important;
  }
  .mr-n80 {
    margin-right: -80px !important;
  }
  .mr-85 {
    margin-right: 85px !important;
  }
  .mr-n85 {
    margin-right: -85px !important;
  }
  .mr-90 {
    margin-right: 90px !important;
  }
  .mr-n90 {
    margin-right: -90px !important;
  }
  .mr-95 {
    margin-right: 95px !important;
  }
  .mr-n95 {
    margin-right: -95px !important;
  }
  .mr-100 {
    margin-right: 100px !important;
  }
  .mr-n100 {
    margin-right: -100px !important;
  }
  .mr-auto {
    margin-right: auto !important;
  }
  .ml-0 {
    margin-left: 0 !important;
  }
  .ml-5 {
    margin-left: 5px !important;
  }
  .ml-n5 {
    margin-left: -5px !important;
  }
  .ml-10 {
    margin-left: 10px !important;
  }
  .ml-n10 {
    margin-left: -10px !important;
  }
  .ml-15 {
    margin-left: 15px !important;
  }
  .ml-n15 {
    margin-left: -15px !important;
  }
  .ml-20 {
    margin-left: 20px !important;
  }
  .ml-n20 {
    margin-left: -20px !important;
  }
  .ml-25 {
    margin-left: 25px !important;
  }
  .ml-n25 {
    margin-left: -25px !important;
  }
  .ml-30 {
    margin-left: 30px !important;
  }
  .ml-n30 {
    margin-left: -30px !important;
  }
  .ml-35 {
    margin-left: 35px !important;
  }
  .ml-n35 {
    margin-left: -35px !important;
  }
  .ml-40 {
    margin-left: 40px !important;
  }
  .ml-n40 {
    margin-left: -40px !important;
  }
  .ml-45 {
    margin-left: 45px !important;
  }
  .ml-n45 {
    margin-left: -45px !important;
  }
  .ml-50 {
    margin-left: 50px !important;
  }
  .ml-n50 {
    margin-left: -50px !important;
  }
  .ml-55 {
    margin-left: 55px !important;
  }
  .ml-n55 {
    margin-left: -55px !important;
  }
  .ml-60 {
    margin-left: 60px !important;
  }
  .ml-n60 {
    margin-left: -60px !important;
  }
  .ml-65 {
    margin-left: 65px !important;
  }
  .ml-n65 {
    margin-left: -65px !important;
  }
  .ml-70 {
    margin-left: 70px !important;
  }
  .ml-n70 {
    margin-left: -70px !important;
  }
  .ml-75 {
    margin-left: 75px !important;
  }
  .ml-n75 {
    margin-left: -75px !important;
  }
  .ml-80 {
    margin-left: 80px !important;
  }
  .ml-n80 {
    margin-left: -80px !important;
  }
  .ml-85 {
    margin-left: 85px !important;
  }
  .ml-n85 {
    margin-left: -85px !important;
  }
  .ml-90 {
    margin-left: 90px !important;
  }
  .ml-n90 {
    margin-left: -90px !important;
  }
  .ml-95 {
    margin-left: 95px !important;
  }
  .ml-n95 {
    margin-left: -95px !important;
  }
  .ml-100 {
    margin-left: 100px !important;
  }
  .ml-n100 {
    margin-left: -100px !important;
  }
  .ml-auto {
    margin-left: auto !important;
  }
  .pt-0 {
    padding-top: 0 !important;
  }
  .pt-5 {
    padding-top: 5px !important;
  }
  .pt-10 {
    padding-top: 10px !important;
  }
  .pt-15 {
    padding-top: 15px !important;
  }
  .pt-20 {
    padding-top: 20px !important;
  }
  .pt-25 {
    padding-top: 25px !important;
  }
  .pt-30 {
    padding-top: 30px !important;
  }
  .pt-35 {
    padding-top: 35px !important;
  }
  .pt-40 {
    padding-top: 40px !important;
  }
  .pt-45 {
    padding-top: 45px !important;
  }
  .pt-50 {
    padding-top: 50px !important;
  }
  .pt-55 {
    padding-top: 55px !important;
  }
  .pt-60 {
    padding-top: 60px !important;
  }
  .pt-65 {
    padding-top: 65px !important;
  }
  .pt-70 {
    padding-top: 70px !important;
  }
  .pt-75 {
    padding-top: 75px !important;
  }
  .pt-80 {
    padding-top: 80px !important;
  }
  .pt-85 {
    padding-top: 85px !important;
  }
  .pt-90 {
    padding-top: 90px !important;
  }
  .pt-95 {
    padding-top: 95px !important;
  }
  .pt-100 {
    padding-top: 100px !important;
  }
  .pb-0 {
    padding-bottom: 0 !important;
  }
  .pb-5 {
    padding-bottom: 5px !important;
  }
  .pb-10 {
    padding-bottom: 10px !important;
  }
  .pb-15 {
    padding-bottom: 15px !important;
  }
  .pb-20 {
    padding-bottom: 20px !important;
  }
  .pb-25 {
    padding-bottom: 25px !important;
  }
  .pb-30 {
    padding-bottom: 30px !important;
  }
  .pb-35 {
    padding-bottom: 35px !important;
  }
  .pb-40 {
    padding-bottom: 40px !important;
  }
  .pb-45 {
    padding-bottom: 45px !important;
  }
  .pb-50 {
    padding-bottom: 50px !important;
  }
  .pb-55 {
    padding-bottom: 55px !important;
  }
  .pb-60 {
    padding-bottom: 60px !important;
  }
  .pb-65 {
    padding-bottom: 65px !important;
  }
  .pb-70 {
    padding-bottom: 70px !important;
  }
  .pb-75 {
    padding-bottom: 75px !important;
  }
  .pb-80 {
    padding-bottom: 80px !important;
  }
  .pb-85 {
    padding-bottom: 85px !important;
  }
  .pb-90 {
    padding-bottom: 90px !important;
  }
  .pb-95 {
    padding-bottom: 95px !important;
  }
  .pb-100 {
    padding-bottom: 100px !important;
  }
  .pr-0 {
    padding-right: 0 !important;
  }
  .pr-5 {
    padding-right: 5px !important;
  }
  .pr-10 {
    padding-right: 10px !important;
  }
  .pr-15 {
    padding-right: 15px !important;
  }
  .pr-20 {
    padding-right: 20px !important;
  }
  .pr-25 {
    padding-right: 25px !important;
  }
  .pr-30 {
    padding-right: 30px !important;
  }
  .pr-35 {
    padding-right: 35px !important;
  }
  .pr-40 {
    padding-right: 40px !important;
  }
  .pr-45 {
    padding-right: 45px !important;
  }
  .pr-50 {
    padding-right: 50px !important;
  }
  .pr-55 {
    padding-right: 55px !important;
  }
  .pr-60 {
    padding-right: 60px !important;
  }
  .pr-65 {
    padding-right: 65px !important;
  }
  .pr-70 {
    padding-right: 70px !important;
  }
  .pr-75 {
    padding-right: 75px !important;
  }
  .pr-80 {
    padding-right: 80px !important;
  }
  .pr-85 {
    padding-right: 85px !important;
  }
  .pr-90 {
    padding-right: 90px !important;
  }
  .pr-95 {
    padding-right: 95px !important;
  }
  .pr-100 {
    padding-right: 100px !important;
  }
  .pl-0 {
    padding-left: 0 !important;
  }
  .pl-5 {
    padding-left: 5px !important;
  }
  .pl-10 {
    padding-left: 10px !important;
  }
  .pl-15 {
    padding-left: 15px !important;
  }
  .pl-20 {
    padding-left: 20px !important;
  }
  .pl-25 {
    padding-left: 25px !important;
  }
  .pl-30 {
    padding-left: 30px !important;
  }
  .pl-35 {
    padding-left: 35px !important;
  }
  .pl-40 {
    padding-left: 40px !important;
  }
  .pl-45 {
    padding-left: 45px !important;
  }
  .pl-50 {
    padding-left: 50px !important;
  }
  .pl-55 {
    padding-left: 55px !important;
  }
  .pl-60 {
    padding-left: 60px !important;
  }
  .pl-65 {
    padding-left: 65px !important;
  }
  .pl-70 {
    padding-left: 70px !important;
  }
  .pl-75 {
    padding-left: 75px !important;
  }
  .pl-80 {
    padding-left: 80px !important;
  }
  .pl-85 {
    padding-left: 85px !important;
  }
  .pl-90 {
    padding-left: 90px !important;
  }
  .pl-95 {
    padding-left: 95px !important;
  }
  .pl-100 {
    padding-left: 100px !important;
  }
}
@media (min-width: 576px) {
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-5 {
    margin-top: 5px !important;
  }
  .mt-sm-n5 {
    margin-top: -5px !important;
  }
  .mt-sm-10 {
    margin-top: 10px !important;
  }
  .mt-sm-n10 {
    margin-top: -10px !important;
  }
  .mt-sm-15 {
    margin-top: 15px !important;
  }
  .mt-sm-n15 {
    margin-top: -15px !important;
  }
  .mt-sm-20 {
    margin-top: 20px !important;
  }
  .mt-sm-n20 {
    margin-top: -20px !important;
  }
  .mt-sm-25 {
    margin-top: 25px !important;
  }
  .mt-sm-n25 {
    margin-top: -25px !important;
  }
  .mt-sm-30 {
    margin-top: 30px !important;
  }
  .mt-sm-n30 {
    margin-top: -30px !important;
  }
  .mt-sm-35 {
    margin-top: 35px !important;
  }
  .mt-sm-n35 {
    margin-top: -35px !important;
  }
  .mt-sm-40 {
    margin-top: 40px !important;
  }
  .mt-sm-n40 {
    margin-top: -40px !important;
  }
  .mt-sm-45 {
    margin-top: 45px !important;
  }
  .mt-sm-n45 {
    margin-top: -45px !important;
  }
  .mt-sm-50 {
    margin-top: 50px !important;
  }
  .mt-sm-n50 {
    margin-top: -50px !important;
  }
  .mt-sm-55 {
    margin-top: 55px !important;
  }
  .mt-sm-n55 {
    margin-top: -55px !important;
  }
  .mt-sm-60 {
    margin-top: 60px !important;
  }
  .mt-sm-n60 {
    margin-top: -60px !important;
  }
  .mt-sm-65 {
    margin-top: 65px !important;
  }
  .mt-sm-n65 {
    margin-top: -65px !important;
  }
  .mt-sm-70 {
    margin-top: 70px !important;
  }
  .mt-sm-n70 {
    margin-top: -70px !important;
  }
  .mt-sm-75 {
    margin-top: 75px !important;
  }
  .mt-sm-n75 {
    margin-top: -75px !important;
  }
  .mt-sm-80 {
    margin-top: 80px !important;
  }
  .mt-sm-n80 {
    margin-top: -80px !important;
  }
  .mt-sm-85 {
    margin-top: 85px !important;
  }
  .mt-sm-n85 {
    margin-top: -85px !important;
  }
  .mt-sm-90 {
    margin-top: 90px !important;
  }
  .mt-sm-n90 {
    margin-top: -90px !important;
  }
  .mt-sm-95 {
    margin-top: 95px !important;
  }
  .mt-sm-n95 {
    margin-top: -95px !important;
  }
  .mt-sm-100 {
    margin-top: 100px !important;
  }
  .mt-sm-n100 {
    margin-top: -100px !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-5 {
    margin-bottom: 5px !important;
  }
  .mb-sm-n5 {
    margin-bottom: -5px !important;
  }
  .mb-sm-10 {
    margin-bottom: 10px !important;
  }
  .mb-sm-n10 {
    margin-bottom: -10px !important;
  }
  .mb-sm-15 {
    margin-bottom: 15px !important;
  }
  .mb-sm-n15 {
    margin-bottom: -15px !important;
  }
  .mb-sm-20 {
    margin-bottom: 20px !important;
  }
  .mb-sm-n20 {
    margin-bottom: -20px !important;
  }
  .mb-sm-25 {
    margin-bottom: 25px !important;
  }
  .mb-sm-n25 {
    margin-bottom: -25px !important;
  }
  .mb-sm-30 {
    margin-bottom: 30px !important;
  }
  .mb-sm-n30 {
    margin-bottom: -30px !important;
  }
  .mb-sm-35 {
    margin-bottom: 35px !important;
  }
  .mb-sm-n35 {
    margin-bottom: -35px !important;
  }
  .mb-sm-40 {
    margin-bottom: 40px !important;
  }
  .mb-sm-n40 {
    margin-bottom: -40px !important;
  }
  .mb-sm-45 {
    margin-bottom: 45px !important;
  }
  .mb-sm-n45 {
    margin-bottom: -45px !important;
  }
  .mb-sm-50 {
    margin-bottom: 50px !important;
  }
  .mb-sm-n50 {
    margin-bottom: -50px !important;
  }
  .mb-sm-55 {
    margin-bottom: 55px !important;
  }
  .mb-sm-n55 {
    margin-bottom: -55px !important;
  }
  .mb-sm-60 {
    margin-bottom: 60px !important;
  }
  .mb-sm-n60 {
    margin-bottom: -60px !important;
  }
  .mb-sm-65 {
    margin-bottom: 65px !important;
  }
  .mb-sm-n65 {
    margin-bottom: -65px !important;
  }
  .mb-sm-70 {
    margin-bottom: 70px !important;
  }
  .mb-sm-n70 {
    margin-bottom: -70px !important;
  }
  .mb-sm-75 {
    margin-bottom: 75px !important;
  }
  .mb-sm-n75 {
    margin-bottom: -75px !important;
  }
  .mb-sm-80 {
    margin-bottom: 80px !important;
  }
  .mb-sm-n80 {
    margin-bottom: -80px !important;
  }
  .mb-sm-85 {
    margin-bottom: 85px !important;
  }
  .mb-sm-n85 {
    margin-bottom: -85px !important;
  }
  .mb-sm-90 {
    margin-bottom: 90px !important;
  }
  .mb-sm-n90 {
    margin-bottom: -90px !important;
  }
  .mb-sm-95 {
    margin-bottom: 95px !important;
  }
  .mb-sm-n95 {
    margin-bottom: -95px !important;
  }
  .mb-sm-100 {
    margin-bottom: 100px !important;
  }
  .mb-sm-n100 {
    margin-bottom: -100px !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .mr-sm-0 {
    margin-right: 0 !important;
  }
  .mr-sm-5 {
    margin-right: 5px !important;
  }
  .mr-sm-n5 {
    margin-right: -5px !important;
  }
  .mr-sm-10 {
    margin-right: 10px !important;
  }
  .mr-sm-n10 {
    margin-right: -10px !important;
  }
  .mr-sm-15 {
    margin-right: 15px !important;
  }
  .mr-sm-n15 {
    margin-right: -15px !important;
  }
  .mr-sm-20 {
    margin-right: 20px !important;
  }
  .mr-sm-n20 {
    margin-right: -20px !important;
  }
  .mr-sm-25 {
    margin-right: 25px !important;
  }
  .mr-sm-n25 {
    margin-right: -25px !important;
  }
  .mr-sm-30 {
    margin-right: 30px !important;
  }
  .mr-sm-n30 {
    margin-right: -30px !important;
  }
  .mr-sm-35 {
    margin-right: 35px !important;
  }
  .mr-sm-n35 {
    margin-right: -35px !important;
  }
  .mr-sm-40 {
    margin-right: 40px !important;
  }
  .mr-sm-n40 {
    margin-right: -40px !important;
  }
  .mr-sm-45 {
    margin-right: 45px !important;
  }
  .mr-sm-n45 {
    margin-right: -45px !important;
  }
  .mr-sm-50 {
    margin-right: 50px !important;
  }
  .mr-sm-n50 {
    margin-right: -50px !important;
  }
  .mr-sm-55 {
    margin-right: 55px !important;
  }
  .mr-sm-n55 {
    margin-right: -55px !important;
  }
  .mr-sm-60 {
    margin-right: 60px !important;
  }
  .mr-sm-n60 {
    margin-right: -60px !important;
  }
  .mr-sm-65 {
    margin-right: 65px !important;
  }
  .mr-sm-n65 {
    margin-right: -65px !important;
  }
  .mr-sm-70 {
    margin-right: 70px !important;
  }
  .mr-sm-n70 {
    margin-right: -70px !important;
  }
  .mr-sm-75 {
    margin-right: 75px !important;
  }
  .mr-sm-n75 {
    margin-right: -75px !important;
  }
  .mr-sm-80 {
    margin-right: 80px !important;
  }
  .mr-sm-n80 {
    margin-right: -80px !important;
  }
  .mr-sm-85 {
    margin-right: 85px !important;
  }
  .mr-sm-n85 {
    margin-right: -85px !important;
  }
  .mr-sm-90 {
    margin-right: 90px !important;
  }
  .mr-sm-n90 {
    margin-right: -90px !important;
  }
  .mr-sm-95 {
    margin-right: 95px !important;
  }
  .mr-sm-n95 {
    margin-right: -95px !important;
  }
  .mr-sm-100 {
    margin-right: 100px !important;
  }
  .mr-sm-n100 {
    margin-right: -100px !important;
  }
  .mr-sm-auto {
    margin-right: auto !important;
  }
  .ml-sm-0 {
    margin-left: 0 !important;
  }
  .ml-sm-5 {
    margin-left: 5px !important;
  }
  .ml-sm-n5 {
    margin-left: -5px !important;
  }
  .ml-sm-10 {
    margin-left: 10px !important;
  }
  .ml-sm-n10 {
    margin-left: -10px !important;
  }
  .ml-sm-15 {
    margin-left: 15px !important;
  }
  .ml-sm-n15 {
    margin-left: -15px !important;
  }
  .ml-sm-20 {
    margin-left: 20px !important;
  }
  .ml-sm-n20 {
    margin-left: -20px !important;
  }
  .ml-sm-25 {
    margin-left: 25px !important;
  }
  .ml-sm-n25 {
    margin-left: -25px !important;
  }
  .ml-sm-30 {
    margin-left: 30px !important;
  }
  .ml-sm-n30 {
    margin-left: -30px !important;
  }
  .ml-sm-35 {
    margin-left: 35px !important;
  }
  .ml-sm-n35 {
    margin-left: -35px !important;
  }
  .ml-sm-40 {
    margin-left: 40px !important;
  }
  .ml-sm-n40 {
    margin-left: -40px !important;
  }
  .ml-sm-45 {
    margin-left: 45px !important;
  }
  .ml-sm-n45 {
    margin-left: -45px !important;
  }
  .ml-sm-50 {
    margin-left: 50px !important;
  }
  .ml-sm-n50 {
    margin-left: -50px !important;
  }
  .ml-sm-55 {
    margin-left: 55px !important;
  }
  .ml-sm-n55 {
    margin-left: -55px !important;
  }
  .ml-sm-60 {
    margin-left: 60px !important;
  }
  .ml-sm-n60 {
    margin-left: -60px !important;
  }
  .ml-sm-65 {
    margin-left: 65px !important;
  }
  .ml-sm-n65 {
    margin-left: -65px !important;
  }
  .ml-sm-70 {
    margin-left: 70px !important;
  }
  .ml-sm-n70 {
    margin-left: -70px !important;
  }
  .ml-sm-75 {
    margin-left: 75px !important;
  }
  .ml-sm-n75 {
    margin-left: -75px !important;
  }
  .ml-sm-80 {
    margin-left: 80px !important;
  }
  .ml-sm-n80 {
    margin-left: -80px !important;
  }
  .ml-sm-85 {
    margin-left: 85px !important;
  }
  .ml-sm-n85 {
    margin-left: -85px !important;
  }
  .ml-sm-90 {
    margin-left: 90px !important;
  }
  .ml-sm-n90 {
    margin-left: -90px !important;
  }
  .ml-sm-95 {
    margin-left: 95px !important;
  }
  .ml-sm-n95 {
    margin-left: -95px !important;
  }
  .ml-sm-100 {
    margin-left: 100px !important;
  }
  .ml-sm-n100 {
    margin-left: -100px !important;
  }
  .ml-sm-auto {
    margin-left: auto !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-5 {
    padding-top: 5px !important;
  }
  .pt-sm-10 {
    padding-top: 10px !important;
  }
  .pt-sm-15 {
    padding-top: 15px !important;
  }
  .pt-sm-20 {
    padding-top: 20px !important;
  }
  .pt-sm-25 {
    padding-top: 25px !important;
  }
  .pt-sm-30 {
    padding-top: 30px !important;
  }
  .pt-sm-35 {
    padding-top: 35px !important;
  }
  .pt-sm-40 {
    padding-top: 40px !important;
  }
  .pt-sm-45 {
    padding-top: 45px !important;
  }
  .pt-sm-50 {
    padding-top: 50px !important;
  }
  .pt-sm-55 {
    padding-top: 55px !important;
  }
  .pt-sm-60 {
    padding-top: 60px !important;
  }
  .pt-sm-65 {
    padding-top: 65px !important;
  }
  .pt-sm-70 {
    padding-top: 70px !important;
  }
  .pt-sm-75 {
    padding-top: 75px !important;
  }
  .pt-sm-80 {
    padding-top: 80px !important;
  }
  .pt-sm-85 {
    padding-top: 85px !important;
  }
  .pt-sm-90 {
    padding-top: 90px !important;
  }
  .pt-sm-95 {
    padding-top: 95px !important;
  }
  .pt-sm-100 {
    padding-top: 100px !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-5 {
    padding-bottom: 5px !important;
  }
  .pb-sm-10 {
    padding-bottom: 10px !important;
  }
  .pb-sm-15 {
    padding-bottom: 15px !important;
  }
  .pb-sm-20 {
    padding-bottom: 20px !important;
  }
  .pb-sm-25 {
    padding-bottom: 25px !important;
  }
  .pb-sm-30 {
    padding-bottom: 30px !important;
  }
  .pb-sm-35 {
    padding-bottom: 35px !important;
  }
  .pb-sm-40 {
    padding-bottom: 40px !important;
  }
  .pb-sm-45 {
    padding-bottom: 45px !important;
  }
  .pb-sm-50 {
    padding-bottom: 50px !important;
  }
  .pb-sm-55 {
    padding-bottom: 55px !important;
  }
  .pb-sm-60 {
    padding-bottom: 60px !important;
  }
  .pb-sm-65 {
    padding-bottom: 65px !important;
  }
  .pb-sm-70 {
    padding-bottom: 70px !important;
  }
  .pb-sm-75 {
    padding-bottom: 75px !important;
  }
  .pb-sm-80 {
    padding-bottom: 80px !important;
  }
  .pb-sm-85 {
    padding-bottom: 85px !important;
  }
  .pb-sm-90 {
    padding-bottom: 90px !important;
  }
  .pb-sm-95 {
    padding-bottom: 95px !important;
  }
  .pb-sm-100 {
    padding-bottom: 100px !important;
  }
  .pr-sm-0 {
    padding-right: 0 !important;
  }
  .pr-sm-5 {
    padding-right: 5px !important;
  }
  .pr-sm-10 {
    padding-right: 10px !important;
  }
  .pr-sm-15 {
    padding-right: 15px !important;
  }
  .pr-sm-20 {
    padding-right: 20px !important;
  }
  .pr-sm-25 {
    padding-right: 25px !important;
  }
  .pr-sm-30 {
    padding-right: 30px !important;
  }
  .pr-sm-35 {
    padding-right: 35px !important;
  }
  .pr-sm-40 {
    padding-right: 40px !important;
  }
  .pr-sm-45 {
    padding-right: 45px !important;
  }
  .pr-sm-50 {
    padding-right: 50px !important;
  }
  .pr-sm-55 {
    padding-right: 55px !important;
  }
  .pr-sm-60 {
    padding-right: 60px !important;
  }
  .pr-sm-65 {
    padding-right: 65px !important;
  }
  .pr-sm-70 {
    padding-right: 70px !important;
  }
  .pr-sm-75 {
    padding-right: 75px !important;
  }
  .pr-sm-80 {
    padding-right: 80px !important;
  }
  .pr-sm-85 {
    padding-right: 85px !important;
  }
  .pr-sm-90 {
    padding-right: 90px !important;
  }
  .pr-sm-95 {
    padding-right: 95px !important;
  }
  .pr-sm-100 {
    padding-right: 100px !important;
  }
  .pl-sm-0 {
    padding-left: 0 !important;
  }
  .pl-sm-5 {
    padding-left: 5px !important;
  }
  .pl-sm-10 {
    padding-left: 10px !important;
  }
  .pl-sm-15 {
    padding-left: 15px !important;
  }
  .pl-sm-20 {
    padding-left: 20px !important;
  }
  .pl-sm-25 {
    padding-left: 25px !important;
  }
  .pl-sm-30 {
    padding-left: 30px !important;
  }
  .pl-sm-35 {
    padding-left: 35px !important;
  }
  .pl-sm-40 {
    padding-left: 40px !important;
  }
  .pl-sm-45 {
    padding-left: 45px !important;
  }
  .pl-sm-50 {
    padding-left: 50px !important;
  }
  .pl-sm-55 {
    padding-left: 55px !important;
  }
  .pl-sm-60 {
    padding-left: 60px !important;
  }
  .pl-sm-65 {
    padding-left: 65px !important;
  }
  .pl-sm-70 {
    padding-left: 70px !important;
  }
  .pl-sm-75 {
    padding-left: 75px !important;
  }
  .pl-sm-80 {
    padding-left: 80px !important;
  }
  .pl-sm-85 {
    padding-left: 85px !important;
  }
  .pl-sm-90 {
    padding-left: 90px !important;
  }
  .pl-sm-95 {
    padding-left: 95px !important;
  }
  .pl-sm-100 {
    padding-left: 100px !important;
  }
}
@media (min-width: 768px) {
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-5 {
    margin-top: 5px !important;
  }
  .mt-md-n5 {
    margin-top: -5px !important;
  }
  .mt-md-10 {
    margin-top: 10px !important;
  }
  .mt-md-n10 {
    margin-top: -10px !important;
  }
  .mt-md-15 {
    margin-top: 15px !important;
  }
  .mt-md-n15 {
    margin-top: -15px !important;
  }
  .mt-md-20 {
    margin-top: 20px !important;
  }
  .mt-md-n20 {
    margin-top: -20px !important;
  }
  .mt-md-25 {
    margin-top: 25px !important;
  }
  .mt-md-n25 {
    margin-top: -25px !important;
  }
  .mt-md-30 {
    margin-top: 30px !important;
  }
  .mt-md-n30 {
    margin-top: -30px !important;
  }
  .mt-md-35 {
    margin-top: 35px !important;
  }
  .mt-md-n35 {
    margin-top: -35px !important;
  }
  .mt-md-40 {
    margin-top: 40px !important;
  }
  .mt-md-n40 {
    margin-top: -40px !important;
  }
  .mt-md-45 {
    margin-top: 45px !important;
  }
  .mt-md-n45 {
    margin-top: -45px !important;
  }
  .mt-md-50 {
    margin-top: 50px !important;
  }
  .mt-md-n50 {
    margin-top: -50px !important;
  }
  .mt-md-55 {
    margin-top: 55px !important;
  }
  .mt-md-n55 {
    margin-top: -55px !important;
  }
  .mt-md-60 {
    margin-top: 60px !important;
  }
  .mt-md-n60 {
    margin-top: -60px !important;
  }
  .mt-md-65 {
    margin-top: 65px !important;
  }
  .mt-md-n65 {
    margin-top: -65px !important;
  }
  .mt-md-70 {
    margin-top: 70px !important;
  }
  .mt-md-n70 {
    margin-top: -70px !important;
  }
  .mt-md-75 {
    margin-top: 75px !important;
  }
  .mt-md-n75 {
    margin-top: -75px !important;
  }
  .mt-md-80 {
    margin-top: 80px !important;
  }
  .mt-md-n80 {
    margin-top: -80px !important;
  }
  .mt-md-85 {
    margin-top: 85px !important;
  }
  .mt-md-n85 {
    margin-top: -85px !important;
  }
  .mt-md-90 {
    margin-top: 90px !important;
  }
  .mt-md-n90 {
    margin-top: -90px !important;
  }
  .mt-md-95 {
    margin-top: 95px !important;
  }
  .mt-md-n95 {
    margin-top: -95px !important;
  }
  .mt-md-100 {
    margin-top: 100px !important;
  }
  .mt-md-n100 {
    margin-top: -100px !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-5 {
    margin-bottom: 5px !important;
  }
  .mb-md-n5 {
    margin-bottom: -5px !important;
  }
  .mb-md-10 {
    margin-bottom: 10px !important;
  }
  .mb-md-n10 {
    margin-bottom: -10px !important;
  }
  .mb-md-15 {
    margin-bottom: 15px !important;
  }
  .mb-md-n15 {
    margin-bottom: -15px !important;
  }
  .mb-md-20 {
    margin-bottom: 20px !important;
  }
  .mb-md-n20 {
    margin-bottom: -20px !important;
  }
  .mb-md-25 {
    margin-bottom: 25px !important;
  }
  .mb-md-n25 {
    margin-bottom: -25px !important;
  }
  .mb-md-30 {
    margin-bottom: 30px !important;
  }
  .mb-md-n30 {
    margin-bottom: -30px !important;
  }
  .mb-md-35 {
    margin-bottom: 35px !important;
  }
  .mb-md-n35 {
    margin-bottom: -35px !important;
  }
  .mb-md-40 {
    margin-bottom: 40px !important;
  }
  .mb-md-n40 {
    margin-bottom: -40px !important;
  }
  .mb-md-45 {
    margin-bottom: 45px !important;
  }
  .mb-md-n45 {
    margin-bottom: -45px !important;
  }
  .mb-md-50 {
    margin-bottom: 50px !important;
  }
  .mb-md-n50 {
    margin-bottom: -50px !important;
  }
  .mb-md-55 {
    margin-bottom: 55px !important;
  }
  .mb-md-n55 {
    margin-bottom: -55px !important;
  }
  .mb-md-60 {
    margin-bottom: 60px !important;
  }
  .mb-md-n60 {
    margin-bottom: -60px !important;
  }
  .mb-md-65 {
    margin-bottom: 65px !important;
  }
  .mb-md-n65 {
    margin-bottom: -65px !important;
  }
  .mb-md-70 {
    margin-bottom: 70px !important;
  }
  .mb-md-n70 {
    margin-bottom: -70px !important;
  }
  .mb-md-75 {
    margin-bottom: 75px !important;
  }
  .mb-md-n75 {
    margin-bottom: -75px !important;
  }
  .mb-md-80 {
    margin-bottom: 80px !important;
  }
  .mb-md-n80 {
    margin-bottom: -80px !important;
  }
  .mb-md-85 {
    margin-bottom: 85px !important;
  }
  .mb-md-n85 {
    margin-bottom: -85px !important;
  }
  .mb-md-90 {
    margin-bottom: 90px !important;
  }
  .mb-md-n90 {
    margin-bottom: -90px !important;
  }
  .mb-md-95 {
    margin-bottom: 95px !important;
  }
  .mb-md-n95 {
    margin-bottom: -95px !important;
  }
  .mb-md-100 {
    margin-bottom: 100px !important;
  }
  .mb-md-n100 {
    margin-bottom: -100px !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .mr-md-0 {
    margin-right: 0 !important;
  }
  .mr-md-5 {
    margin-right: 5px !important;
  }
  .mr-md-n5 {
    margin-right: -5px !important;
  }
  .mr-md-10 {
    margin-right: 10px !important;
  }
  .mr-md-n10 {
    margin-right: -10px !important;
  }
  .mr-md-15 {
    margin-right: 15px !important;
  }
  .mr-md-n15 {
    margin-right: -15px !important;
  }
  .mr-md-20 {
    margin-right: 20px !important;
  }
  .mr-md-n20 {
    margin-right: -20px !important;
  }
  .mr-md-25 {
    margin-right: 25px !important;
  }
  .mr-md-n25 {
    margin-right: -25px !important;
  }
  .mr-md-30 {
    margin-right: 30px !important;
  }
  .mr-md-n30 {
    margin-right: -30px !important;
  }
  .mr-md-35 {
    margin-right: 35px !important;
  }
  .mr-md-n35 {
    margin-right: -35px !important;
  }
  .mr-md-40 {
    margin-right: 40px !important;
  }
  .mr-md-n40 {
    margin-right: -40px !important;
  }
  .mr-md-45 {
    margin-right: 45px !important;
  }
  .mr-md-n45 {
    margin-right: -45px !important;
  }
  .mr-md-50 {
    margin-right: 50px !important;
  }
  .mr-md-n50 {
    margin-right: -50px !important;
  }
  .mr-md-55 {
    margin-right: 55px !important;
  }
  .mr-md-n55 {
    margin-right: -55px !important;
  }
  .mr-md-60 {
    margin-right: 60px !important;
  }
  .mr-md-n60 {
    margin-right: -60px !important;
  }
  .mr-md-65 {
    margin-right: 65px !important;
  }
  .mr-md-n65 {
    margin-right: -65px !important;
  }
  .mr-md-70 {
    margin-right: 70px !important;
  }
  .mr-md-n70 {
    margin-right: -70px !important;
  }
  .mr-md-75 {
    margin-right: 75px !important;
  }
  .mr-md-n75 {
    margin-right: -75px !important;
  }
  .mr-md-80 {
    margin-right: 80px !important;
  }
  .mr-md-n80 {
    margin-right: -80px !important;
  }
  .mr-md-85 {
    margin-right: 85px !important;
  }
  .mr-md-n85 {
    margin-right: -85px !important;
  }
  .mr-md-90 {
    margin-right: 90px !important;
  }
  .mr-md-n90 {
    margin-right: -90px !important;
  }
  .mr-md-95 {
    margin-right: 95px !important;
  }
  .mr-md-n95 {
    margin-right: -95px !important;
  }
  .mr-md-100 {
    margin-right: 100px !important;
  }
  .mr-md-n100 {
    margin-right: -100px !important;
  }
  .mr-md-auto {
    margin-right: auto !important;
  }
  .ml-md-0 {
    margin-left: 0 !important;
  }
  .ml-md-5 {
    margin-left: 5px !important;
  }
  .ml-md-n5 {
    margin-left: -5px !important;
  }
  .ml-md-10 {
    margin-left: 10px !important;
  }
  .ml-md-n10 {
    margin-left: -10px !important;
  }
  .ml-md-15 {
    margin-left: 15px !important;
  }
  .ml-md-n15 {
    margin-left: -15px !important;
  }
  .ml-md-20 {
    margin-left: 20px !important;
  }
  .ml-md-n20 {
    margin-left: -20px !important;
  }
  .ml-md-25 {
    margin-left: 25px !important;
  }
  .ml-md-n25 {
    margin-left: -25px !important;
  }
  .ml-md-30 {
    margin-left: 30px !important;
  }
  .ml-md-n30 {
    margin-left: -30px !important;
  }
  .ml-md-35 {
    margin-left: 35px !important;
  }
  .ml-md-n35 {
    margin-left: -35px !important;
  }
  .ml-md-40 {
    margin-left: 40px !important;
  }
  .ml-md-n40 {
    margin-left: -40px !important;
  }
  .ml-md-45 {
    margin-left: 45px !important;
  }
  .ml-md-n45 {
    margin-left: -45px !important;
  }
  .ml-md-50 {
    margin-left: 50px !important;
  }
  .ml-md-n50 {
    margin-left: -50px !important;
  }
  .ml-md-55 {
    margin-left: 55px !important;
  }
  .ml-md-n55 {
    margin-left: -55px !important;
  }
  .ml-md-60 {
    margin-left: 60px !important;
  }
  .ml-md-n60 {
    margin-left: -60px !important;
  }
  .ml-md-65 {
    margin-left: 65px !important;
  }
  .ml-md-n65 {
    margin-left: -65px !important;
  }
  .ml-md-70 {
    margin-left: 70px !important;
  }
  .ml-md-n70 {
    margin-left: -70px !important;
  }
  .ml-md-75 {
    margin-left: 75px !important;
  }
  .ml-md-n75 {
    margin-left: -75px !important;
  }
  .ml-md-80 {
    margin-left: 80px !important;
  }
  .ml-md-n80 {
    margin-left: -80px !important;
  }
  .ml-md-85 {
    margin-left: 85px !important;
  }
  .ml-md-n85 {
    margin-left: -85px !important;
  }
  .ml-md-90 {
    margin-left: 90px !important;
  }
  .ml-md-n90 {
    margin-left: -90px !important;
  }
  .ml-md-95 {
    margin-left: 95px !important;
  }
  .ml-md-n95 {
    margin-left: -95px !important;
  }
  .ml-md-100 {
    margin-left: 100px !important;
  }
  .ml-md-n100 {
    margin-left: -100px !important;
  }
  .ml-md-auto {
    margin-left: auto !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-5 {
    padding-top: 5px !important;
  }
  .pt-md-10 {
    padding-top: 10px !important;
  }
  .pt-md-15 {
    padding-top: 15px !important;
  }
  .pt-md-20 {
    padding-top: 20px !important;
  }
  .pt-md-25 {
    padding-top: 25px !important;
  }
  .pt-md-30 {
    padding-top: 30px !important;
  }
  .pt-md-35 {
    padding-top: 35px !important;
  }
  .pt-md-40 {
    padding-top: 40px !important;
  }
  .pt-md-45 {
    padding-top: 45px !important;
  }
  .pt-md-50 {
    padding-top: 50px !important;
  }
  .pt-md-55 {
    padding-top: 55px !important;
  }
  .pt-md-60 {
    padding-top: 60px !important;
  }
  .pt-md-65 {
    padding-top: 65px !important;
  }
  .pt-md-70 {
    padding-top: 70px !important;
  }
  .pt-md-75 {
    padding-top: 75px !important;
  }
  .pt-md-80 {
    padding-top: 80px !important;
  }
  .pt-md-85 {
    padding-top: 85px !important;
  }
  .pt-md-90 {
    padding-top: 90px !important;
  }
  .pt-md-95 {
    padding-top: 95px !important;
  }
  .pt-md-100 {
    padding-top: 100px !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-5 {
    padding-bottom: 5px !important;
  }
  .pb-md-10 {
    padding-bottom: 10px !important;
  }
  .pb-md-15 {
    padding-bottom: 15px !important;
  }
  .pb-md-20 {
    padding-bottom: 20px !important;
  }
  .pb-md-25 {
    padding-bottom: 25px !important;
  }
  .pb-md-30 {
    padding-bottom: 30px !important;
  }
  .pb-md-35 {
    padding-bottom: 35px !important;
  }
  .pb-md-40 {
    padding-bottom: 40px !important;
  }
  .pb-md-45 {
    padding-bottom: 45px !important;
  }
  .pb-md-50 {
    padding-bottom: 50px !important;
  }
  .pb-md-55 {
    padding-bottom: 55px !important;
  }
  .pb-md-60 {
    padding-bottom: 60px !important;
  }
  .pb-md-65 {
    padding-bottom: 65px !important;
  }
  .pb-md-70 {
    padding-bottom: 70px !important;
  }
  .pb-md-75 {
    padding-bottom: 75px !important;
  }
  .pb-md-80 {
    padding-bottom: 80px !important;
  }
  .pb-md-85 {
    padding-bottom: 85px !important;
  }
  .pb-md-90 {
    padding-bottom: 90px !important;
  }
  .pb-md-95 {
    padding-bottom: 95px !important;
  }
  .pb-md-100 {
    padding-bottom: 100px !important;
  }
  .pr-md-0 {
    padding-right: 0 !important;
  }
  .pr-md-5 {
    padding-right: 5px !important;
  }
  .pr-md-10 {
    padding-right: 10px !important;
  }
  .pr-md-15 {
    padding-right: 15px !important;
  }
  .pr-md-20 {
    padding-right: 20px !important;
  }
  .pr-md-25 {
    padding-right: 25px !important;
  }
  .pr-md-30 {
    padding-right: 30px !important;
  }
  .pr-md-35 {
    padding-right: 35px !important;
  }
  .pr-md-40 {
    padding-right: 40px !important;
  }
  .pr-md-45 {
    padding-right: 45px !important;
  }
  .pr-md-50 {
    padding-right: 50px !important;
  }
  .pr-md-55 {
    padding-right: 55px !important;
  }
  .pr-md-60 {
    padding-right: 60px !important;
  }
  .pr-md-65 {
    padding-right: 65px !important;
  }
  .pr-md-70 {
    padding-right: 70px !important;
  }
  .pr-md-75 {
    padding-right: 75px !important;
  }
  .pr-md-80 {
    padding-right: 80px !important;
  }
  .pr-md-85 {
    padding-right: 85px !important;
  }
  .pr-md-90 {
    padding-right: 90px !important;
  }
  .pr-md-95 {
    padding-right: 95px !important;
  }
  .pr-md-100 {
    padding-right: 100px !important;
  }
  .pl-md-0 {
    padding-left: 0 !important;
  }
  .pl-md-5 {
    padding-left: 5px !important;
  }
  .pl-md-10 {
    padding-left: 10px !important;
  }
  .pl-md-15 {
    padding-left: 15px !important;
  }
  .pl-md-20 {
    padding-left: 20px !important;
  }
  .pl-md-25 {
    padding-left: 25px !important;
  }
  .pl-md-30 {
    padding-left: 30px !important;
  }
  .pl-md-35 {
    padding-left: 35px !important;
  }
  .pl-md-40 {
    padding-left: 40px !important;
  }
  .pl-md-45 {
    padding-left: 45px !important;
  }
  .pl-md-50 {
    padding-left: 50px !important;
  }
  .pl-md-55 {
    padding-left: 55px !important;
  }
  .pl-md-60 {
    padding-left: 60px !important;
  }
  .pl-md-65 {
    padding-left: 65px !important;
  }
  .pl-md-70 {
    padding-left: 70px !important;
  }
  .pl-md-75 {
    padding-left: 75px !important;
  }
  .pl-md-80 {
    padding-left: 80px !important;
  }
  .pl-md-85 {
    padding-left: 85px !important;
  }
  .pl-md-90 {
    padding-left: 90px !important;
  }
  .pl-md-95 {
    padding-left: 95px !important;
  }
  .pl-md-100 {
    padding-left: 100px !important;
  }
}
@media (min-width: 992px) {
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-5 {
    margin-top: 5px !important;
  }
  .mt-lg-n5 {
    margin-top: -5px !important;
  }
  .mt-lg-10 {
    margin-top: 10px !important;
  }
  .mt-lg-n10 {
    margin-top: -10px !important;
  }
  .mt-lg-15 {
    margin-top: 15px !important;
  }
  .mt-lg-n15 {
    margin-top: -15px !important;
  }
  .mt-lg-20 {
    margin-top: 20px !important;
  }
  .mt-lg-n20 {
    margin-top: -20px !important;
  }
  .mt-lg-25 {
    margin-top: 25px !important;
  }
  .mt-lg-n25 {
    margin-top: -25px !important;
  }
  .mt-lg-30 {
    margin-top: 30px !important;
  }
  .mt-lg-n30 {
    margin-top: -30px !important;
  }
  .mt-lg-35 {
    margin-top: 35px !important;
  }
  .mt-lg-n35 {
    margin-top: -35px !important;
  }
  .mt-lg-40 {
    margin-top: 40px !important;
  }
  .mt-lg-n40 {
    margin-top: -40px !important;
  }
  .mt-lg-45 {
    margin-top: 45px !important;
  }
  .mt-lg-n45 {
    margin-top: -45px !important;
  }
  .mt-lg-50 {
    margin-top: 50px !important;
  }
  .mt-lg-n50 {
    margin-top: -50px !important;
  }
  .mt-lg-55 {
    margin-top: 55px !important;
  }
  .mt-lg-n55 {
    margin-top: -55px !important;
  }
  .mt-lg-60 {
    margin-top: 60px !important;
  }
  .mt-lg-n60 {
    margin-top: -60px !important;
  }
  .mt-lg-65 {
    margin-top: 65px !important;
  }
  .mt-lg-n65 {
    margin-top: -65px !important;
  }
  .mt-lg-70 {
    margin-top: 70px !important;
  }
  .mt-lg-n70 {
    margin-top: -70px !important;
  }
  .mt-lg-75 {
    margin-top: 75px !important;
  }
  .mt-lg-n75 {
    margin-top: -75px !important;
  }
  .mt-lg-80 {
    margin-top: 80px !important;
  }
  .mt-lg-n80 {
    margin-top: -80px !important;
  }
  .mt-lg-85 {
    margin-top: 85px !important;
  }
  .mt-lg-n85 {
    margin-top: -85px !important;
  }
  .mt-lg-90 {
    margin-top: 90px !important;
  }
  .mt-lg-n90 {
    margin-top: -90px !important;
  }
  .mt-lg-95 {
    margin-top: 95px !important;
  }
  .mt-lg-n95 {
    margin-top: -95px !important;
  }
  .mt-lg-100 {
    margin-top: 100px !important;
  }
  .mt-lg-n100 {
    margin-top: -100px !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-5 {
    margin-bottom: 5px !important;
  }
  .mb-lg-n5 {
    margin-bottom: -5px !important;
  }
  .mb-lg-10 {
    margin-bottom: 10px !important;
  }
  .mb-lg-n10 {
    margin-bottom: -10px !important;
  }
  .mb-lg-15 {
    margin-bottom: 15px !important;
  }
  .mb-lg-n15 {
    margin-bottom: -15px !important;
  }
  .mb-lg-20 {
    margin-bottom: 20px !important;
  }
  .mb-lg-n20 {
    margin-bottom: -20px !important;
  }
  .mb-lg-25 {
    margin-bottom: 25px !important;
  }
  .mb-lg-n25 {
    margin-bottom: -25px !important;
  }
  .mb-lg-30 {
    margin-bottom: 30px !important;
  }
  .mb-lg-n30 {
    margin-bottom: -30px !important;
  }
  .mb-lg-35 {
    margin-bottom: 35px !important;
  }
  .mb-lg-n35 {
    margin-bottom: -35px !important;
  }
  .mb-lg-40 {
    margin-bottom: 40px !important;
  }
  .mb-lg-n40 {
    margin-bottom: -40px !important;
  }
  .mb-lg-45 {
    margin-bottom: 45px !important;
  }
  .mb-lg-n45 {
    margin-bottom: -45px !important;
  }
  .mb-lg-50 {
    margin-bottom: 50px !important;
  }
  .mb-lg-n50 {
    margin-bottom: -50px !important;
  }
  .mb-lg-55 {
    margin-bottom: 55px !important;
  }
  .mb-lg-n55 {
    margin-bottom: -55px !important;
  }
  .mb-lg-60 {
    margin-bottom: 60px !important;
  }
  .mb-lg-n60 {
    margin-bottom: -60px !important;
  }
  .mb-lg-65 {
    margin-bottom: 65px !important;
  }
  .mb-lg-n65 {
    margin-bottom: -65px !important;
  }
  .mb-lg-70 {
    margin-bottom: 70px !important;
  }
  .mb-lg-n70 {
    margin-bottom: -70px !important;
  }
  .mb-lg-75 {
    margin-bottom: 75px !important;
  }
  .mb-lg-n75 {
    margin-bottom: -75px !important;
  }
  .mb-lg-80 {
    margin-bottom: 80px !important;
  }
  .mb-lg-n80 {
    margin-bottom: -80px !important;
  }
  .mb-lg-85 {
    margin-bottom: 85px !important;
  }
  .mb-lg-n85 {
    margin-bottom: -85px !important;
  }
  .mb-lg-90 {
    margin-bottom: 90px !important;
  }
  .mb-lg-n90 {
    margin-bottom: -90px !important;
  }
  .mb-lg-95 {
    margin-bottom: 95px !important;
  }
  .mb-lg-n95 {
    margin-bottom: -95px !important;
  }
  .mb-lg-100 {
    margin-bottom: 100px !important;
  }
  .mb-lg-n100 {
    margin-bottom: -100px !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .mr-lg-0 {
    margin-right: 0 !important;
  }
  .mr-lg-5 {
    margin-right: 5px !important;
  }
  .mr-lg-n5 {
    margin-right: -5px !important;
  }
  .mr-lg-10 {
    margin-right: 10px !important;
  }
  .mr-lg-n10 {
    margin-right: -10px !important;
  }
  .mr-lg-15 {
    margin-right: 15px !important;
  }
  .mr-lg-n15 {
    margin-right: -15px !important;
  }
  .mr-lg-20 {
    margin-right: 20px !important;
  }
  .mr-lg-n20 {
    margin-right: -20px !important;
  }
  .mr-lg-25 {
    margin-right: 25px !important;
  }
  .mr-lg-n25 {
    margin-right: -25px !important;
  }
  .mr-lg-30 {
    margin-right: 30px !important;
  }
  .mr-lg-n30 {
    margin-right: -30px !important;
  }
  .mr-lg-35 {
    margin-right: 35px !important;
  }
  .mr-lg-n35 {
    margin-right: -35px !important;
  }
  .mr-lg-40 {
    margin-right: 40px !important;
  }
  .mr-lg-n40 {
    margin-right: -40px !important;
  }
  .mr-lg-45 {
    margin-right: 45px !important;
  }
  .mr-lg-n45 {
    margin-right: -45px !important;
  }
  .mr-lg-50 {
    margin-right: 50px !important;
  }
  .mr-lg-n50 {
    margin-right: -50px !important;
  }
  .mr-lg-55 {
    margin-right: 55px !important;
  }
  .mr-lg-n55 {
    margin-right: -55px !important;
  }
  .mr-lg-60 {
    margin-right: 60px !important;
  }
  .mr-lg-n60 {
    margin-right: -60px !important;
  }
  .mr-lg-65 {
    margin-right: 65px !important;
  }
  .mr-lg-n65 {
    margin-right: -65px !important;
  }
  .mr-lg-70 {
    margin-right: 70px !important;
  }
  .mr-lg-n70 {
    margin-right: -70px !important;
  }
  .mr-lg-75 {
    margin-right: 75px !important;
  }
  .mr-lg-n75 {
    margin-right: -75px !important;
  }
  .mr-lg-80 {
    margin-right: 80px !important;
  }
  .mr-lg-n80 {
    margin-right: -80px !important;
  }
  .mr-lg-85 {
    margin-right: 85px !important;
  }
  .mr-lg-n85 {
    margin-right: -85px !important;
  }
  .mr-lg-90 {
    margin-right: 90px !important;
  }
  .mr-lg-n90 {
    margin-right: -90px !important;
  }
  .mr-lg-95 {
    margin-right: 95px !important;
  }
  .mr-lg-n95 {
    margin-right: -95px !important;
  }
  .mr-lg-100 {
    margin-right: 100px !important;
  }
  .mr-lg-n100 {
    margin-right: -100px !important;
  }
  .mr-lg-auto {
    margin-right: auto !important;
  }
  .ml-lg-0 {
    margin-left: 0 !important;
  }
  .ml-lg-5 {
    margin-left: 5px !important;
  }
  .ml-lg-n5 {
    margin-left: -5px !important;
  }
  .ml-lg-10 {
    margin-left: 10px !important;
  }
  .ml-lg-n10 {
    margin-left: -10px !important;
  }
  .ml-lg-15 {
    margin-left: 15px !important;
  }
  .ml-lg-n15 {
    margin-left: -15px !important;
  }
  .ml-lg-20 {
    margin-left: 20px !important;
  }
  .ml-lg-n20 {
    margin-left: -20px !important;
  }
  .ml-lg-25 {
    margin-left: 25px !important;
  }
  .ml-lg-n25 {
    margin-left: -25px !important;
  }
  .ml-lg-30 {
    margin-left: 30px !important;
  }
  .ml-lg-n30 {
    margin-left: -30px !important;
  }
  .ml-lg-35 {
    margin-left: 35px !important;
  }
  .ml-lg-n35 {
    margin-left: -35px !important;
  }
  .ml-lg-40 {
    margin-left: 40px !important;
  }
  .ml-lg-n40 {
    margin-left: -40px !important;
  }
  .ml-lg-45 {
    margin-left: 45px !important;
  }
  .ml-lg-n45 {
    margin-left: -45px !important;
  }
  .ml-lg-50 {
    margin-left: 50px !important;
  }
  .ml-lg-n50 {
    margin-left: -50px !important;
  }
  .ml-lg-55 {
    margin-left: 55px !important;
  }
  .ml-lg-n55 {
    margin-left: -55px !important;
  }
  .ml-lg-60 {
    margin-left: 60px !important;
  }
  .ml-lg-n60 {
    margin-left: -60px !important;
  }
  .ml-lg-65 {
    margin-left: 65px !important;
  }
  .ml-lg-n65 {
    margin-left: -65px !important;
  }
  .ml-lg-70 {
    margin-left: 70px !important;
  }
  .ml-lg-n70 {
    margin-left: -70px !important;
  }
  .ml-lg-75 {
    margin-left: 75px !important;
  }
  .ml-lg-n75 {
    margin-left: -75px !important;
  }
  .ml-lg-80 {
    margin-left: 80px !important;
  }
  .ml-lg-n80 {
    margin-left: -80px !important;
  }
  .ml-lg-85 {
    margin-left: 85px !important;
  }
  .ml-lg-n85 {
    margin-left: -85px !important;
  }
  .ml-lg-90 {
    margin-left: 90px !important;
  }
  .ml-lg-n90 {
    margin-left: -90px !important;
  }
  .ml-lg-95 {
    margin-left: 95px !important;
  }
  .ml-lg-n95 {
    margin-left: -95px !important;
  }
  .ml-lg-100 {
    margin-left: 100px !important;
  }
  .ml-lg-n100 {
    margin-left: -100px !important;
  }
  .ml-lg-auto {
    margin-left: auto !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-5 {
    padding-top: 5px !important;
  }
  .pt-lg-10 {
    padding-top: 10px !important;
  }
  .pt-lg-15 {
    padding-top: 15px !important;
  }
  .pt-lg-20 {
    padding-top: 20px !important;
  }
  .pt-lg-25 {
    padding-top: 25px !important;
  }
  .pt-lg-30 {
    padding-top: 30px !important;
  }
  .pt-lg-35 {
    padding-top: 35px !important;
  }
  .pt-lg-40 {
    padding-top: 40px !important;
  }
  .pt-lg-45 {
    padding-top: 45px !important;
  }
  .pt-lg-50 {
    padding-top: 50px !important;
  }
  .pt-lg-55 {
    padding-top: 55px !important;
  }
  .pt-lg-60 {
    padding-top: 60px !important;
  }
  .pt-lg-65 {
    padding-top: 65px !important;
  }
  .pt-lg-70 {
    padding-top: 70px !important;
  }
  .pt-lg-75 {
    padding-top: 75px !important;
  }
  .pt-lg-80 {
    padding-top: 80px !important;
  }
  .pt-lg-85 {
    padding-top: 85px !important;
  }
  .pt-lg-90 {
    padding-top: 90px !important;
  }
  .pt-lg-95 {
    padding-top: 95px !important;
  }
  .pt-lg-100 {
    padding-top: 100px !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-5 {
    padding-bottom: 5px !important;
  }
  .pb-lg-10 {
    padding-bottom: 10px !important;
  }
  .pb-lg-15 {
    padding-bottom: 15px !important;
  }
  .pb-lg-20 {
    padding-bottom: 20px !important;
  }
  .pb-lg-25 {
    padding-bottom: 25px !important;
  }
  .pb-lg-30 {
    padding-bottom: 30px !important;
  }
  .pb-lg-35 {
    padding-bottom: 35px !important;
  }
  .pb-lg-40 {
    padding-bottom: 40px !important;
  }
  .pb-lg-45 {
    padding-bottom: 45px !important;
  }
  .pb-lg-50 {
    padding-bottom: 50px !important;
  }
  .pb-lg-55 {
    padding-bottom: 55px !important;
  }
  .pb-lg-60 {
    padding-bottom: 60px !important;
  }
  .pb-lg-65 {
    padding-bottom: 65px !important;
  }
  .pb-lg-70 {
    padding-bottom: 70px !important;
  }
  .pb-lg-75 {
    padding-bottom: 75px !important;
  }
  .pb-lg-80 {
    padding-bottom: 80px !important;
  }
  .pb-lg-85 {
    padding-bottom: 85px !important;
  }
  .pb-lg-90 {
    padding-bottom: 90px !important;
  }
  .pb-lg-95 {
    padding-bottom: 95px !important;
  }
  .pb-lg-100 {
    padding-bottom: 100px !important;
  }
  .pr-lg-0 {
    padding-right: 0 !important;
  }
  .pr-lg-5 {
    padding-right: 5px !important;
  }
  .pr-lg-10 {
    padding-right: 10px !important;
  }
  .pr-lg-15 {
    padding-right: 15px !important;
  }
  .pr-lg-20 {
    padding-right: 20px !important;
  }
  .pr-lg-25 {
    padding-right: 25px !important;
  }
  .pr-lg-30 {
    padding-right: 30px !important;
  }
  .pr-lg-35 {
    padding-right: 35px !important;
  }
  .pr-lg-40 {
    padding-right: 40px !important;
  }
  .pr-lg-45 {
    padding-right: 45px !important;
  }
  .pr-lg-50 {
    padding-right: 50px !important;
  }
  .pr-lg-55 {
    padding-right: 55px !important;
  }
  .pr-lg-60 {
    padding-right: 60px !important;
  }
  .pr-lg-65 {
    padding-right: 65px !important;
  }
  .pr-lg-70 {
    padding-right: 70px !important;
  }
  .pr-lg-75 {
    padding-right: 75px !important;
  }
  .pr-lg-80 {
    padding-right: 80px !important;
  }
  .pr-lg-85 {
    padding-right: 85px !important;
  }
  .pr-lg-90 {
    padding-right: 90px !important;
  }
  .pr-lg-95 {
    padding-right: 95px !important;
  }
  .pr-lg-100 {
    padding-right: 100px !important;
  }
  .pl-lg-0 {
    padding-left: 0 !important;
  }
  .pl-lg-5 {
    padding-left: 5px !important;
  }
  .pl-lg-10 {
    padding-left: 10px !important;
  }
  .pl-lg-15 {
    padding-left: 15px !important;
  }
  .pl-lg-20 {
    padding-left: 20px !important;
  }
  .pl-lg-25 {
    padding-left: 25px !important;
  }
  .pl-lg-30 {
    padding-left: 30px !important;
  }
  .pl-lg-35 {
    padding-left: 35px !important;
  }
  .pl-lg-40 {
    padding-left: 40px !important;
  }
  .pl-lg-45 {
    padding-left: 45px !important;
  }
  .pl-lg-50 {
    padding-left: 50px !important;
  }
  .pl-lg-55 {
    padding-left: 55px !important;
  }
  .pl-lg-60 {
    padding-left: 60px !important;
  }
  .pl-lg-65 {
    padding-left: 65px !important;
  }
  .pl-lg-70 {
    padding-left: 70px !important;
  }
  .pl-lg-75 {
    padding-left: 75px !important;
  }
  .pl-lg-80 {
    padding-left: 80px !important;
  }
  .pl-lg-85 {
    padding-left: 85px !important;
  }
  .pl-lg-90 {
    padding-left: 90px !important;
  }
  .pl-lg-95 {
    padding-left: 95px !important;
  }
  .pl-lg-100 {
    padding-left: 100px !important;
  }
}
@media (min-width: 1200px) {
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-5 {
    margin-top: 5px !important;
  }
  .mt-xl-n5 {
    margin-top: -5px !important;
  }
  .mt-xl-10 {
    margin-top: 10px !important;
  }
  .mt-xl-n10 {
    margin-top: -10px !important;
  }
  .mt-xl-15 {
    margin-top: 15px !important;
  }
  .mt-xl-n15 {
    margin-top: -15px !important;
  }
  .mt-xl-20 {
    margin-top: 20px !important;
  }
  .mt-xl-n20 {
    margin-top: -20px !important;
  }
  .mt-xl-25 {
    margin-top: 25px !important;
  }
  .mt-xl-n25 {
    margin-top: -25px !important;
  }
  .mt-xl-30 {
    margin-top: 30px !important;
  }
  .mt-xl-n30 {
    margin-top: -30px !important;
  }
  .mt-xl-35 {
    margin-top: 35px !important;
  }
  .mt-xl-n35 {
    margin-top: -35px !important;
  }
  .mt-xl-40 {
    margin-top: 40px !important;
  }
  .mt-xl-n40 {
    margin-top: -40px !important;
  }
  .mt-xl-45 {
    margin-top: 45px !important;
  }
  .mt-xl-n45 {
    margin-top: -45px !important;
  }
  .mt-xl-50 {
    margin-top: 50px !important;
  }
  .mt-xl-n50 {
    margin-top: -50px !important;
  }
  .mt-xl-55 {
    margin-top: 55px !important;
  }
  .mt-xl-n55 {
    margin-top: -55px !important;
  }
  .mt-xl-60 {
    margin-top: 60px !important;
  }
  .mt-xl-n60 {
    margin-top: -60px !important;
  }
  .mt-xl-65 {
    margin-top: 65px !important;
  }
  .mt-xl-n65 {
    margin-top: -65px !important;
  }
  .mt-xl-70 {
    margin-top: 70px !important;
  }
  .mt-xl-n70 {
    margin-top: -70px !important;
  }
  .mt-xl-75 {
    margin-top: 75px !important;
  }
  .mt-xl-n75 {
    margin-top: -75px !important;
  }
  .mt-xl-80 {
    margin-top: 80px !important;
  }
  .mt-xl-n80 {
    margin-top: -80px !important;
  }
  .mt-xl-85 {
    margin-top: 85px !important;
  }
  .mt-xl-n85 {
    margin-top: -85px !important;
  }
  .mt-xl-90 {
    margin-top: 90px !important;
  }
  .mt-xl-n90 {
    margin-top: -90px !important;
  }
  .mt-xl-95 {
    margin-top: 95px !important;
  }
  .mt-xl-n95 {
    margin-top: -95px !important;
  }
  .mt-xl-100 {
    margin-top: 100px !important;
  }
  .mt-xl-n100 {
    margin-top: -100px !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-5 {
    margin-bottom: 5px !important;
  }
  .mb-xl-n5 {
    margin-bottom: -5px !important;
  }
  .mb-xl-10 {
    margin-bottom: 10px !important;
  }
  .mb-xl-n10 {
    margin-bottom: -10px !important;
  }
  .mb-xl-15 {
    margin-bottom: 15px !important;
  }
  .mb-xl-n15 {
    margin-bottom: -15px !important;
  }
  .mb-xl-20 {
    margin-bottom: 20px !important;
  }
  .mb-xl-n20 {
    margin-bottom: -20px !important;
  }
  .mb-xl-25 {
    margin-bottom: 25px !important;
  }
  .mb-xl-n25 {
    margin-bottom: -25px !important;
  }
  .mb-xl-30 {
    margin-bottom: 30px !important;
  }
  .mb-xl-n30 {
    margin-bottom: -30px !important;
  }
  .mb-xl-35 {
    margin-bottom: 35px !important;
  }
  .mb-xl-n35 {
    margin-bottom: -35px !important;
  }
  .mb-xl-40 {
    margin-bottom: 40px !important;
  }
  .mb-xl-n40 {
    margin-bottom: -40px !important;
  }
  .mb-xl-45 {
    margin-bottom: 45px !important;
  }
  .mb-xl-n45 {
    margin-bottom: -45px !important;
  }
  .mb-xl-50 {
    margin-bottom: 50px !important;
  }
  .mb-xl-n50 {
    margin-bottom: -50px !important;
  }
  .mb-xl-55 {
    margin-bottom: 55px !important;
  }
  .mb-xl-n55 {
    margin-bottom: -55px !important;
  }
  .mb-xl-60 {
    margin-bottom: 60px !important;
  }
  .mb-xl-n60 {
    margin-bottom: -60px !important;
  }
  .mb-xl-65 {
    margin-bottom: 65px !important;
  }
  .mb-xl-n65 {
    margin-bottom: -65px !important;
  }
  .mb-xl-70 {
    margin-bottom: 70px !important;
  }
  .mb-xl-n70 {
    margin-bottom: -70px !important;
  }
  .mb-xl-75 {
    margin-bottom: 75px !important;
  }
  .mb-xl-n75 {
    margin-bottom: -75px !important;
  }
  .mb-xl-80 {
    margin-bottom: 80px !important;
  }
  .mb-xl-n80 {
    margin-bottom: -80px !important;
  }
  .mb-xl-85 {
    margin-bottom: 85px !important;
  }
  .mb-xl-n85 {
    margin-bottom: -85px !important;
  }
  .mb-xl-90 {
    margin-bottom: 90px !important;
  }
  .mb-xl-n90 {
    margin-bottom: -90px !important;
  }
  .mb-xl-95 {
    margin-bottom: 95px !important;
  }
  .mb-xl-n95 {
    margin-bottom: -95px !important;
  }
  .mb-xl-100 {
    margin-bottom: 100px !important;
  }
  .mb-xl-n100 {
    margin-bottom: -100px !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .mr-xl-0 {
    margin-right: 0 !important;
  }
  .mr-xl-5 {
    margin-right: 5px !important;
  }
  .mr-xl-n5 {
    margin-right: -5px !important;
  }
  .mr-xl-10 {
    margin-right: 10px !important;
  }
  .mr-xl-n10 {
    margin-right: -10px !important;
  }
  .mr-xl-15 {
    margin-right: 15px !important;
  }
  .mr-xl-n15 {
    margin-right: -15px !important;
  }
  .mr-xl-20 {
    margin-right: 20px !important;
  }
  .mr-xl-n20 {
    margin-right: -20px !important;
  }
  .mr-xl-25 {
    margin-right: 25px !important;
  }
  .mr-xl-n25 {
    margin-right: -25px !important;
  }
  .mr-xl-30 {
    margin-right: 30px !important;
  }
  .mr-xl-n30 {
    margin-right: -30px !important;
  }
  .mr-xl-35 {
    margin-right: 35px !important;
  }
  .mr-xl-n35 {
    margin-right: -35px !important;
  }
  .mr-xl-40 {
    margin-right: 40px !important;
  }
  .mr-xl-n40 {
    margin-right: -40px !important;
  }
  .mr-xl-45 {
    margin-right: 45px !important;
  }
  .mr-xl-n45 {
    margin-right: -45px !important;
  }
  .mr-xl-50 {
    margin-right: 50px !important;
  }
  .mr-xl-n50 {
    margin-right: -50px !important;
  }
  .mr-xl-55 {
    margin-right: 55px !important;
  }
  .mr-xl-n55 {
    margin-right: -55px !important;
  }
  .mr-xl-60 {
    margin-right: 60px !important;
  }
  .mr-xl-n60 {
    margin-right: -60px !important;
  }
  .mr-xl-65 {
    margin-right: 65px !important;
  }
  .mr-xl-n65 {
    margin-right: -65px !important;
  }
  .mr-xl-70 {
    margin-right: 70px !important;
  }
  .mr-xl-n70 {
    margin-right: -70px !important;
  }
  .mr-xl-75 {
    margin-right: 75px !important;
  }
  .mr-xl-n75 {
    margin-right: -75px !important;
  }
  .mr-xl-80 {
    margin-right: 80px !important;
  }
  .mr-xl-n80 {
    margin-right: -80px !important;
  }
  .mr-xl-85 {
    margin-right: 85px !important;
  }
  .mr-xl-n85 {
    margin-right: -85px !important;
  }
  .mr-xl-90 {
    margin-right: 90px !important;
  }
  .mr-xl-n90 {
    margin-right: -90px !important;
  }
  .mr-xl-95 {
    margin-right: 95px !important;
  }
  .mr-xl-n95 {
    margin-right: -95px !important;
  }
  .mr-xl-100 {
    margin-right: 100px !important;
  }
  .mr-xl-n100 {
    margin-right: -100px !important;
  }
  .mr-xl-auto {
    margin-right: auto !important;
  }
  .ml-xl-0 {
    margin-left: 0 !important;
  }
  .ml-xl-5 {
    margin-left: 5px !important;
  }
  .ml-xl-n5 {
    margin-left: -5px !important;
  }
  .ml-xl-10 {
    margin-left: 10px !important;
  }
  .ml-xl-n10 {
    margin-left: -10px !important;
  }
  .ml-xl-15 {
    margin-left: 15px !important;
  }
  .ml-xl-n15 {
    margin-left: -15px !important;
  }
  .ml-xl-20 {
    margin-left: 20px !important;
  }
  .ml-xl-n20 {
    margin-left: -20px !important;
  }
  .ml-xl-25 {
    margin-left: 25px !important;
  }
  .ml-xl-n25 {
    margin-left: -25px !important;
  }
  .ml-xl-30 {
    margin-left: 30px !important;
  }
  .ml-xl-n30 {
    margin-left: -30px !important;
  }
  .ml-xl-35 {
    margin-left: 35px !important;
  }
  .ml-xl-n35 {
    margin-left: -35px !important;
  }
  .ml-xl-40 {
    margin-left: 40px !important;
  }
  .ml-xl-n40 {
    margin-left: -40px !important;
  }
  .ml-xl-45 {
    margin-left: 45px !important;
  }
  .ml-xl-n45 {
    margin-left: -45px !important;
  }
  .ml-xl-50 {
    margin-left: 50px !important;
  }
  .ml-xl-n50 {
    margin-left: -50px !important;
  }
  .ml-xl-55 {
    margin-left: 55px !important;
  }
  .ml-xl-n55 {
    margin-left: -55px !important;
  }
  .ml-xl-60 {
    margin-left: 60px !important;
  }
  .ml-xl-n60 {
    margin-left: -60px !important;
  }
  .ml-xl-65 {
    margin-left: 65px !important;
  }
  .ml-xl-n65 {
    margin-left: -65px !important;
  }
  .ml-xl-70 {
    margin-left: 70px !important;
  }
  .ml-xl-n70 {
    margin-left: -70px !important;
  }
  .ml-xl-75 {
    margin-left: 75px !important;
  }
  .ml-xl-n75 {
    margin-left: -75px !important;
  }
  .ml-xl-80 {
    margin-left: 80px !important;
  }
  .ml-xl-n80 {
    margin-left: -80px !important;
  }
  .ml-xl-85 {
    margin-left: 85px !important;
  }
  .ml-xl-n85 {
    margin-left: -85px !important;
  }
  .ml-xl-90 {
    margin-left: 90px !important;
  }
  .ml-xl-n90 {
    margin-left: -90px !important;
  }
  .ml-xl-95 {
    margin-left: 95px !important;
  }
  .ml-xl-n95 {
    margin-left: -95px !important;
  }
  .ml-xl-100 {
    margin-left: 100px !important;
  }
  .ml-xl-n100 {
    margin-left: -100px !important;
  }
  .ml-xl-auto {
    margin-left: auto !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-5 {
    padding-top: 5px !important;
  }
  .pt-xl-10 {
    padding-top: 10px !important;
  }
  .pt-xl-15 {
    padding-top: 15px !important;
  }
  .pt-xl-20 {
    padding-top: 20px !important;
  }
  .pt-xl-25 {
    padding-top: 25px !important;
  }
  .pt-xl-30 {
    padding-top: 30px !important;
  }
  .pt-xl-35 {
    padding-top: 35px !important;
  }
  .pt-xl-40 {
    padding-top: 40px !important;
  }
  .pt-xl-45 {
    padding-top: 45px !important;
  }
  .pt-xl-50 {
    padding-top: 50px !important;
  }
  .pt-xl-55 {
    padding-top: 55px !important;
  }
  .pt-xl-60 {
    padding-top: 60px !important;
  }
  .pt-xl-65 {
    padding-top: 65px !important;
  }
  .pt-xl-70 {
    padding-top: 70px !important;
  }
  .pt-xl-75 {
    padding-top: 75px !important;
  }
  .pt-xl-80 {
    padding-top: 80px !important;
  }
  .pt-xl-85 {
    padding-top: 85px !important;
  }
  .pt-xl-90 {
    padding-top: 90px !important;
  }
  .pt-xl-95 {
    padding-top: 95px !important;
  }
  .pt-xl-100 {
    padding-top: 100px !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-5 {
    padding-bottom: 5px !important;
  }
  .pb-xl-10 {
    padding-bottom: 10px !important;
  }
  .pb-xl-15 {
    padding-bottom: 15px !important;
  }
  .pb-xl-20 {
    padding-bottom: 20px !important;
  }
  .pb-xl-25 {
    padding-bottom: 25px !important;
  }
  .pb-xl-30 {
    padding-bottom: 30px !important;
  }
  .pb-xl-35 {
    padding-bottom: 35px !important;
  }
  .pb-xl-40 {
    padding-bottom: 40px !important;
  }
  .pb-xl-45 {
    padding-bottom: 45px !important;
  }
  .pb-xl-50 {
    padding-bottom: 50px !important;
  }
  .pb-xl-55 {
    padding-bottom: 55px !important;
  }
  .pb-xl-60 {
    padding-bottom: 60px !important;
  }
  .pb-xl-65 {
    padding-bottom: 65px !important;
  }
  .pb-xl-70 {
    padding-bottom: 70px !important;
  }
  .pb-xl-75 {
    padding-bottom: 75px !important;
  }
  .pb-xl-80 {
    padding-bottom: 80px !important;
  }
  .pb-xl-85 {
    padding-bottom: 85px !important;
  }
  .pb-xl-90 {
    padding-bottom: 90px !important;
  }
  .pb-xl-95 {
    padding-bottom: 95px !important;
  }
  .pb-xl-100 {
    padding-bottom: 100px !important;
  }
  .pr-xl-0 {
    padding-right: 0 !important;
  }
  .pr-xl-5 {
    padding-right: 5px !important;
  }
  .pr-xl-10 {
    padding-right: 10px !important;
  }
  .pr-xl-15 {
    padding-right: 15px !important;
  }
  .pr-xl-20 {
    padding-right: 20px !important;
  }
  .pr-xl-25 {
    padding-right: 25px !important;
  }
  .pr-xl-30 {
    padding-right: 30px !important;
  }
  .pr-xl-35 {
    padding-right: 35px !important;
  }
  .pr-xl-40 {
    padding-right: 40px !important;
  }
  .pr-xl-45 {
    padding-right: 45px !important;
  }
  .pr-xl-50 {
    padding-right: 50px !important;
  }
  .pr-xl-55 {
    padding-right: 55px !important;
  }
  .pr-xl-60 {
    padding-right: 60px !important;
  }
  .pr-xl-65 {
    padding-right: 65px !important;
  }
  .pr-xl-70 {
    padding-right: 70px !important;
  }
  .pr-xl-75 {
    padding-right: 75px !important;
  }
  .pr-xl-80 {
    padding-right: 80px !important;
  }
  .pr-xl-85 {
    padding-right: 85px !important;
  }
  .pr-xl-90 {
    padding-right: 90px !important;
  }
  .pr-xl-95 {
    padding-right: 95px !important;
  }
  .pr-xl-100 {
    padding-right: 100px !important;
  }
  .pl-xl-0 {
    padding-left: 0 !important;
  }
  .pl-xl-5 {
    padding-left: 5px !important;
  }
  .pl-xl-10 {
    padding-left: 10px !important;
  }
  .pl-xl-15 {
    padding-left: 15px !important;
  }
  .pl-xl-20 {
    padding-left: 20px !important;
  }
  .pl-xl-25 {
    padding-left: 25px !important;
  }
  .pl-xl-30 {
    padding-left: 30px !important;
  }
  .pl-xl-35 {
    padding-left: 35px !important;
  }
  .pl-xl-40 {
    padding-left: 40px !important;
  }
  .pl-xl-45 {
    padding-left: 45px !important;
  }
  .pl-xl-50 {
    padding-left: 50px !important;
  }
  .pl-xl-55 {
    padding-left: 55px !important;
  }
  .pl-xl-60 {
    padding-left: 60px !important;
  }
  .pl-xl-65 {
    padding-left: 65px !important;
  }
  .pl-xl-70 {
    padding-left: 70px !important;
  }
  .pl-xl-75 {
    padding-left: 75px !important;
  }
  .pl-xl-80 {
    padding-left: 80px !important;
  }
  .pl-xl-85 {
    padding-left: 85px !important;
  }
  .pl-xl-90 {
    padding-left: 90px !important;
  }
  .pl-xl-95 {
    padding-left: 95px !important;
  }
  .pl-xl-100 {
    padding-left: 100px !important;
  }
}
/* l-pySpace */
.l-pySpace {
  padding: 20px 0;
}
@media (min-width: 768px) {
  .l-pySpace {
    padding: 40px 0;
  }
}
.l-pySpace--lg {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .l-pySpace--lg {
    padding: 80px 0;
  }
}
/* l-headerLeadText */
/* l-border */
/* l-grid */
/* l-grid */
.l-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
}
.l-grid--column4 {
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
}
/* 768〜991：2列 + 3つ目だけ中央 */
@media (min-width: 768px) {
  .l-grid--center-third {
    grid-template-columns: repeat(2, 1fr);
  }
  .l-grid--center-third > :nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    width: 50%;
  }
}
/* 992〜：通常に戻す */
@media (min-width: 992px) {
  .l-grid--center-third {
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  }
  .l-grid--center-third > :nth-child(3) {
    grid-column: auto;
    justify-self: auto;
    width: 100%;
  }
}
.l-flexColumn {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .l-flexColumn-md--row {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .l-flexColumn-lg--row {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .l-flexColumn-lg--reverse {
    flex-direction: row-reverse;
  }
}
.l-flexColumn-lg--align-center {
  align-items: center;
}
@media (min-width: 992px) {
  .l-flexColumn__img {
    flex: 1 1 50%;
    max-width: 50%;
  }
}
@media (min-width: 1200px) {
  .l-flexColumn__img {
    flex: 0 0 470px;
    max-width: 470px;
  }
}
.l-flexColumn__img img {
  width: 100%;
}
.l-flexColumn__body {
  font-weight: var(--fw-400);
}
@media (min-width: 992px) {
  .l-flexColumn__body {
    flex: 1 1 50%;
    max-width: 50%;
  }
}
@media (min-width: 1200px) {
  .l-flexColumn__body {
    flex: 0 0 670px;
    max-width: 670px;
  }
}
@media (min-width: 768px) {
  .l-gap-md--50 {
    gap: 50px;
  }
}
@media (min-width: 992px) {
  .l-gap-lg--50 {
    gap: 50px;
  }
}
/* l-split */
.l-split {
  display: grid;
  grid-template-columns: 1fr;
}
.l-split--gap0 {
  gap: 0;
}
.l-split--gap10 {
  gap: 10px;
}
.l-split--gap25 {
  gap: 25px;
}
.l-split--gap30 {
  gap: 30px;
}
.l-split--gap50 {
  gap: 50px;
}
@media (min-width: 768px) {
  .l-split--col2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .l-split--col3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .l-split--4-8 {
    grid-template-columns: 4fr 8fr;
  }
}
@media (min-width: 992px) {
  .l-split--lg-col3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.l-headerMain {
  width: 100%;
  background-color: var(--color-white);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.l-headerMain__caption {
  display: none;
}
@media (min-width: 768px) {
  .l-headerMain__caption {
    display: flex;
    align-items: center;
    height: 30px;
    padding: 0 20px;
    font-size: 12px;
    line-height: 1;
    font-family: var(--ff-ja);
    font-weight: var(--fw-400);
    letter-spacing: var(--ls-100);
    border-bottom: solid 1px var(--color-deepgray);
  }
}
@media (min-width: 992px) {
  .l-headerMain__caption {
    display: none;
    padding: 0;
    border-bottom: none;
  }
}
.l-headerMain__top {
  width: 100%;
  height: 50px;
  display: grid;
  grid-template-columns: 1fr auto 40px;
  align-items: stretch;
}
@media (min-width: 768px) {
  .l-headerMain__top {
    height: 66px;
    grid-template-columns: 1fr auto 66px;
  }
}
@media (min-width: 992px) {
  .l-headerMain__top {
    height: 96px;
    grid-template-columns: 1fr auto;
    gap: 0 20px;
  }
}
.l-headerMain__topPrimary {
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 10px;
}
@media (min-width: 768px) {
  .l-headerMain__topPrimary {
    padding-left: 20px;
    gap: 20px;
  }
}
@media (min-width: 992px) {
  .l-headerMain__topPrimary {
    padding-left: 30px;
    padding-bottom: 16px;
    gap: 14.5px;
    align-items: end;
  }
}
@media (min-width: 992px) {
  .l-headerMain__topPrimary {
    gap: 20px;
    padding-bottom: 18.5px;
  }
}
.l-headerMain .p-site__lead {
  display: none;
  font-size: 12px;
  font-weight: 400;
  line-height: var(--lh-150);
  letter-spacing: var(--ls-100);
}
@media (min-width: 992px) {
  .l-headerMain .p-site__lead {
    display: block;
    margin-bottom: 7px;
  }
}
@media (min-width: 1200px) {
  .l-headerMain .p-site__lead {
    margin-bottom: 13px;
  }
}
.l-headerMain .p-site__brand {
  line-height: 1;
}
@media (min-width: 992px) {
  .l-headerMain .p-site__brand img {
    min-width: 600px;
  }
}
.l-headerMain .p-company {
  display: none;
}
@media (min-width: 768px) {
  .l-headerMain .p-company {
    display: block;
    width: 200px;
  }
}
@media (min-width: 992px) {
  .l-headerMain .p-company {
    width: 111px;
  }
}
.l-headerMain__topSecondary {
  height: 100%;
  display: flex;
  align-items: stretch;
  margin-left: 0;
  margin-right: 0;
}
.l-headerMain__topSecondary .c-buttonContact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 40px;
}
@media (min-width: 768px) {
  .l-headerMain__topSecondary .c-buttonContact {
    width: 66px;
    gap: 10px;
  }
}
@media (min-width: 992px) {
  .l-headerMain__topSecondary .c-buttonContact {
    width: 109px;
  }
}
@media (min-width: 1200px) {
  .l-headerMain__topSecondary .c-buttonContact {
    width: 200px;
  }
}
.l-headerMain__topSecondary .c-buttonContact--tel {
  color: var(--color-red);
  background-color: var(--color-lightgray);
}
.l-headerMain__topSecondary .c-buttonContact--mail {
  color: var(--color-white);
  background-color: var(--color-red);
}
.l-headerMain__topSecondary .c-buttonContact__icon {
  font-size: 20px;
}
.l-headerMain__topSecondary .c-buttonContact__label {
  display: none;
}
@media (min-width: 992px) {
  .l-headerMain__topSecondary .c-buttonContact__label {
    display: block;
    font-size: 14px;
    font-weight: var(--fw-400);
    line-height: var(--lh-150);
    letter-spacing: var(--ls-100);
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .l-headerMain__topSecondary .c-buttonContact__label {
    font-size: 16px;
  }
}
.l-headerMain__topSecondary .c-buttonContact__label--tel {
  font-family: var(--ff-en);
  font-weight: var(--fw-600);
}
@media (min-width: 1200px) {
  .l-headerMain__topSecondary .c-buttonContact__label--tel {
    font-size: 20px;
  }
}
.l-headerMain .c-hamburger {
  --line-gap: 7.5px;
  --line-height: 1px;
  display: inline-grid;
  place-content: center;
  gap: var(--line-gap);
  width: 40px;
  height: 100%;
  padding: 0;
  border: 0;
  background: var(--color-white);
  cursor: pointer;
}
@media (min-width: 768px) {
  .l-headerMain .c-hamburger {
    width: 66px;
  }
}
@media (min-width: 992px) {
  .l-headerMain .c-hamburger {
    display: none;
  }
}
.l-headerMain .c-hamburger__line {
  display: block;
  width: 23px;
  height: var(--line-height);
  background: var(--color-deepgray);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.l-headerMain.is-open .p-globalNav__list {
  display: block;
}
.l-headerMain.is-open .c-hamburger__line:nth-child(1) {
  transform: translateY(calc(var(--line-gap) + var(--line-height))) rotate(45deg);
}
.l-headerMain.is-open .c-hamburger__line:nth-child(2) {
  opacity: 0;
}
.l-headerMain.is-open .c-hamburger__line:nth-child(3) {
  transform: translateY(calc((var(--line-gap) + var(--line-height)) * -1)) rotate(-45deg);
}
.l-headerMain__bottom {
  display: block;
  width: 220px;
  max-width: 100vw;
  position: fixed;
  top: 50px;
  right: -101vw;
  height: calc(100dvh - 50px);
  background-color: var(--color-white);
  overflow-y: auto;
  border-top: solid 1px var(--color-deepgray);
  border-bottom: solid 1px var(--color-deepgray);
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
  .l-headerMain__bottom {
    top: 96px;
    height: calc(100dvh - (66px + 30px));
  }
}
@media (min-width: 992px) {
  .l-headerMain__bottom {
    width: 100%;
    height: auto;
    position: static;
    top: auto;
    right: auto;
    overflow: visible;
    transition: none;
    will-change: auto;
  }
}
.l-headerMain.is-open .l-headerMain__bottom {
  right: 0;
  overflow-y: auto;
}
@media (min-width: 992px) {
  .l-headerMain.is-open .l-headerMain__bottom {
    overflow: visible;
  }
}
.l-headerMain .p-globalNav__list {
  display: none;
}
@media (min-width: 992px) {
  .l-headerMain .p-globalNav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 54px;
    padding: 0 30px;
  }
}
@media (min-width: 1200px) {
  .l-headerMain .p-globalNav__list {
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .l-headerMain .p-globalNav__item {
    flex-grow: 1;
    height: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    border: none;
    position: relative;
  }
  .l-headerMain .p-globalNav__item::before, .l-headerMain .p-globalNav__item::after {
    display: inline-block;
    width: 1px;
    height: 15px;
    background-color: var(--color-deepgray);
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    z-index: 1;
  }
  .l-headerMain .p-globalNav__item::after {
    display: none;
    left: auto;
    right: 0;
  }
  .l-headerMain .p-globalNav__item:last-child::after {
    display: block;
  }
}
.l-headerMain .p-globalNav__item:hover > a, .l-headerMain .p-globalNav__item:focus > a, .l-headerMain .p-globalNav__item:active > a {
  opacity: 1;
}
@media (min-width: 992px) {
  .l-headerMain .p-globalNav__item:hover > a::before, .l-headerMain .p-globalNav__item:focus > a::before, .l-headerMain .p-globalNav__item:active > a::before {
    opacity: 1;
  }
}
.l-headerMain .p-globalNav__item:first-child .p-globalNav__link {
  border-top: none;
}
.l-headerMain .p-globalNav__link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
  margin: 0 20px;
  position: relative;
  opacity: 1;
  border-top: solid 1px var(--color-deepgray);
  text-align: left;
  line-height: var(--lh-150);
  letter-spacing: var(--ls-150);
}
@media (min-width: 992px) {
  .l-headerMain .p-globalNav__link {
    padding: 0px 25.5px;
    margin: 0;
    height: 100%;
    text-align: center;
    justify-content: center;
    position: relative;
    border: none;
  }
}
.l-headerMain .p-globalNav__subNav {
  padding: 15px;
  background-color: var(--color-lightgray);
}
@media (min-width: 992px) {
  .l-headerMain .p-globalNav__subNav {
    display: none;
    padding: 5px 0;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    z-index: 100;
    border: solid 1px var(--color-deepgray);
  }
}
@media (min-width: 1200px) {
  .l-headerMain .p-globalNav__subNav {
    width: 100%;
  }
}
.l-headerMain .p-globalNav__subItem:not(:first-child) .p-globalNav__subLink {
  margin-top: 15px;
}
@media (min-width: 992px) {
  .l-headerMain .p-globalNav__subItem:not(:first-child) .p-globalNav__subLink {
    margin-top: 0;
  }
}
.l-headerMain .p-globalNav__subLink {
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  font-weight: var(--fw-400);
}
.l-headerMain .p-globalNav__subLink br {
  display: none;
}
.l-headerMain .p-globalNav__subLink::before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  color: var(--color-blue);
  font-weight: 900;
  content: "";
}
@media (min-width: 992px) {
  .l-headerMain .p-globalNav__subLink {
    height: 100%;
    padding: 7.5px 20px;
  }
}
main {
  padding-top: 50px;
}
@media (min-width: 768px) {
  main {
    padding-top: 96px;
  }
}
@media (min-width: 992px) {
  main {
    padding-top: 150px;
  }
}
.p-cta {
  border-top: solid 1px var(--color-deepgray);
  border-bottom: solid 1px var(--color-deepgray);
  background: url(../images/common/bg-cta.webp) center / cover no-repeat;
  min-height: 250px;
}
@media (min-width: 1200px) {
  .p-cta {
    min-height: 488px;
  }
}
.p-cta .p-bgSmoke {
  max-width: 770px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(50px) brightness(0.1);
}
.p-cta__list {
  padding: 30px 0;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 992px) {
  .p-cta__list {
    justify-content: center;
    flex-direction: row;
  }
}
.p-cta__item {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--color-red);
}
.p-cta__text {
  font-family: var(--ff-en);
  font-weight: var(--fw-600);
  line-height: 1;
  letter-spacing: var(--ls-100);
  font-size: 30px;
}
.p-cta .c-linkCta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 50px;
  margin: 0 auto;
  max-width: 370px;
  border-radius: 48px;
  background: var(--color-red);
  color: var(--color-white);
  font-weight: var(--fw-500);
  font-size: 20px;
  letter-spacing: var(--ls-100);
  line-height: 1;
  overflow: hidden;
  z-index: 0;
}
@media (min-width: 768px) {
  .p-cta .c-linkCta {
    height: 72px;
  }
}
@media (min-width: 1200px) {
  .p-cta .c-linkCta {
    height: 96px;
  }
}
.p-ctaFa {
  font-size: 30px;
}
.l-footer {
  padding-top: 40px;
}
@media (min-width: 768px) {
  .l-footer {
    padding-top: 70px;
  }
}
.l-footer .p-footer__corporate {
  text-align: center;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .l-footer .p-footer__corporate {
    padding-bottom: 35px;
  }
}
@media (min-width: 992px) {
  .l-footer .p-footer__corporate {
    padding-bottom: 70px;
  }
}
.l-footer .p-footer__company {
  margin-top: 20px;
}
.l-footer .p-footer__companyLogo {
  display: block;
  height: 20px;
}
@media (min-width: 576px) {
  .l-footer .p-footer__companyLogo img {
    height: 24px;
  }
}
.l-footer .p-footer__brandLogo img {
  min-width: 280px;
  display: block;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .l-footer .p-footer__brandLogo {
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .l-footer .p-footer__brandLogo {
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .l-footer .p-footer__brandLogo img {
    height: 30px;
  }
}
.l-footer .p-footer__address {
  margin-top: 15px;
  font-style: normal;
  font-weight: var(--fw-400);
}
.l-footer .p-footerNav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: solid 1px var(--color-deepgray);
}
@media (min-width: 768px) {
  .l-footer .p-footerNav {
    flex-direction: row;
    justify-content: center;
    gap: 35px;
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
@media (min-width: 992px) {
  .l-footer .p-footerNav {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media (min-width: 1200px) {
  .l-footer .p-footerNav {
    gap: 70px;
  }
}
.l-footer .p-footerNav__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .l-footer .p-footerNav__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}
.l-footer .p-footerNav__subItem {
  margin-top: 15px;
  font-weight: var(--fw-400);
}
.l-footer .p-footerFa {
  color: var(--color-blue);
  margin-right: 10px;
}
.l-footer .p-footer__copyright {
  padding: 20px 15px;
  border-top: solid 1px var(--color-deepgray);
  line-height: 1;
  text-align: center;
  font-family: var(--ff-en);
}
.p-intro {
  background-color: var(--color-lightgray);
  position: relative;
}
.p-intro__list {
  padding-top: 30px;
}
@media (min-width: 768px) {
  .p-intro__list {
    padding-top: 50px;
  }
}
.p-intro__item {
  background-color: var(--color-white);
  border: solid 1px var(--color-deepgray);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 0 30px;
}
.p-intro__text {
  font-family: var(--ff-ja);
  letter-spacing: var(--ls-100);
  line-height: var(--lh-150);
  font-size: 18px;
  text-align: center;
}
.p-intro__accent {
  color: var(--color-blue);
}
.p-intro::before, .p-intro::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
}
.p-intro::before {
  bottom: -31px;
  border-left: 81px solid transparent;
  border-right: 81px solid transparent;
  border-top: 31px solid var(--color-deepgray);
}
@media (min-width: 768px) {
  .p-intro::before {
    bottom: -71px;
    border-left: 185px solid transparent;
    border-right: 185px solid transparent;
    border-top: 71px solid var(--color-deepgray);
  }
}
.p-intro::after {
  bottom: -30px;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-top: 30px solid var(--color-lightgray);
}
@media (min-width: 768px) {
  .p-intro::after {
    bottom: -69.5px;
    border-left: 184px solid transparent;
    border-right: 184px solid transparent;
    border-top: 70px solid var(--color-lightgray);
  }
}
.p-reason__captionArea {
  max-width: 850px;
  margin: 0 auto;
  padding-top: 30px;
}
@media (min-width: 768px) {
  .p-reason__captionArea {
    padding-top: 50px;
  }
}
.p-reason__list {
  padding-top: 30px;
}
@media (min-width: 768px) {
  .p-reason__list {
    padding-top: 50px;
  }
}
.p-reason__item {
  position: relative;
  padding-top: 20px;
}
.p-reason__item::before {
  content: "";
  position: absolute;
  inset: 20px 0 0 0;
  border: solid 1px var(--color-blue);
  pointer-events: none;
}
.p-reason__heading {
  background-color: var(--color-lightgray);
  position: relative;
}
.p-reason__number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.p-reason__title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-ja);
  font-weight: var(--fw-700);
  letter-spacing: var(--ls-100);
  line-height: var(--lh-150);
  font-size: 18px;
  min-height: 160px;
  text-align: center;
  border: solid 1px var(--color-blue);
  padding: 0 29.5px;
}
@media (min-width: 1200px) {
  .p-reason__title {
    font-size: 20px;
  }
}
.p-reason__text {
  padding: 30px;
}
.p-reason__text a {
  display: flex;
  align-items: baseline;
  margin-top: 20px;
  color: var(--color-blue);
}
.p-reason__text a::before {
  margin-right: 10px;
  content: "";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: inline-block;
}
.p-reason__accent {
  color: var(--color-blue);
}
.p-case {
  background-color: var(--color-lightgray);
}
.p-flow__list {
  padding-top: 30px;
}
@media (min-width: 768px) {
  .p-flow__list {
    padding-top: 50px;
  }
}
.p-flow__link {
  display: block;
  border: solid 1px var(--color-deepgray);
}
.p-flow__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  letter-spacing: var(--ls-100);
  line-height: var(--lh-150);
  font-size: 18px;
  color: var(--color-blue);
}
.p-relation {
  padding-top: 40px;
}
@media (min-width: 768px) {
  .p-relation {
    padding-top: 80px;
  }
}
.p-relation__item {
  padding: 50px 30px;
  border: solid 1px var(--color-deepgray);
  background-color: var(--color-lightgray);
  display: flex;
  flex-direction: column;
}
.p-relation__subheading {
  text-align: center;
  padding-bottom: 10px;
  letter-spacing: var(--ls-100);
  line-height: var(--lh-150);
  font-size: 18px;
}
.p-relation__heading {
  text-align: center;
  margin-bottom: 30px;
}
.p-relation__headingJa {
  display: block;
  font-family: var(--ff-ja);
  letter-spacing: var(--ls-150);
  line-height: var(--lh-150);
  font-size: 24px;
}
@media (min-width: 1200px) {
  .p-relation__headingJa {
    font-size: 32px;
  }
}
.p-relation__heading::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin: 20px auto 0;
  background: #f4c542;
  box-shadow: 0 -6px 0 var(--color-blue), 0 6px 0 var(--color-red);
}
.p-flow section:nth-of-type(odd) {
  background: var(--color-lightgray);
}
.singleService section:nth-of-type(odd) {
  background: var(--color-lightgray);
}
.singleService .faq .bl-loopFaq__link {
  background-color: #fff;
}
.featureContent:first-of-type .c-heading--minor img {
  max-width: 30px;
}
.p-merit__block + .p-merit__block {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .p-merit__block + .p-merit__block {
    margin-top: 70px;
  }
}
@media (min-width: 992px) {
  .p-merit__img, .p-merit__movie {
    flex: 1 1 50%;
    max-width: 50%;
  }
}
@media (min-width: 1200px) {
  .p-merit__img, .p-merit__movie {
    flex: 0 0 470px;
    max-width: 470px;
  }
}
.p-merit__img img, .p-merit__movie img {
  width: 100%;
  height: auto;
}
.p-merit__movie {
  width: 100%;
  aspect-ratio: 1.7777777778;
}
.p-merit__movie iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.p-merit__body .editor-content > * + * {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .p-merit__body {
    flex: 1 1 50%;
    max-width: 50%;
  }
}
@media (min-width: 1200px) {
  .p-merit__body {
    flex: 0 0 670px;
    max-width: 670px;
  }
}
.p-news__body {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .p-news__body {
    max-width: 1170px;
    margin-inline: auto;
    flex-direction: row;
    gap: 130px;
  }
}
.p-news__list {
  width: 100%;
}
@media (min-width: 992px) {
  .p-news__list {
    width: calc(100% - 400px);
  }
}
.p-news__title {
  text-align: left;
  display: block;
  font-family: var(--ff-ja);
  letter-spacing: var(--ls-150);
  line-height: var(--lh-150);
  font-size: 20px;
  padding-bottom: 15px;
  margin-bottom: 10px;
  border-bottom: solid 1px var(--color-red);
  position: relative;
}
@media (min-width: 1200px) {
  .p-news__title {
    margin-bottom: 30px;
    font-size: 28px;
  }
}
.p-news__archive {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .p-news__archive {
    width: 270px;
    flex-shrink: 0;
    margin-top: 0;
  }
}
.p-news__archiveTitle {
  text-align: left;
  display: block;
  font-family: var(--ff-ja);
  letter-spacing: var(--ls-100);
  line-height: var(--lh-150);
  font-size: 16px;
  padding-bottom: 20px;
}
.p-news__archiveList {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.p-news__archiveLink {
  text-align: left;
  display: block;
  font-family: var(--ff-ja);
  letter-spacing: var(--ls-100);
  line-height: var(--lh-150);
  font-size: 14px;
  padding: 15px 20px;
  border: solid 1px var(--color-deepgray);
}
.singleCase__tableArea {
  padding-inline: 20px;
  margin-inline: calc(50% - 50vw);
}
@media (min-width: 768px) {
  .singleCase__tableArea {
    padding-inline: 0;
    margin-inline: 0;
  }
}
.singleCase__tableScroll {
  padding-bottom: 10px;
}
.singleCase .tablepress th, .singleCase .tablepress td {
  padding: 10px 20px;
  border: solid 1px var(--color-deepgray);
  font-size: 14px;
  font-family: var(--ff-ja);
  font-weight: var(--fw-400);
  letter-spacing: var(--ls-100);
  line-height: var(--lh-175);
  vertical-align: middle;
}
.singleCase .tablepress th {
  font-weight: var(--fw-500);
  background: var(--color-lightgray);
  text-align: center;
  white-space: nowrap;
}
.singleCase .tablepress th[colspan] {
  background: var(--color-lightgray);
}
.singleCase .tablepress td {
  background: #fff;
}
.singleCase .tablepress td.column-1, .singleCase .tablepress th.column-1 {
  background: var(--color-lightgray);
  text-align: center;
  white-space: nowrap;
}
.singleCase .tablepress td.column-2 {
  background: var(--color-lightgray);
}
.p-facility__spec table thead {
  border-bottom: solid 1px var(--color-deepgray);
}
.p-facility__spec table th, .p-facility__spec table td {
  padding: 10px 20px;
  border: solid 1px var(--color-deepgray);
  font-size: 14px;
  font-family: var(--ff-ja);
  font-weight: var(--fw-400);
  letter-spacing: var(--ls-100);
  line-height: var(--lh-175);
  vertical-align: middle;
}
.p-facility__spec table th {
  font-weight: var(--fw-500);
  background: var(--color-lightgray);
  text-align: center;
  white-space: nowrap;
}
.p-facility__spec table td {
  background: #fff;
}
.p-facility__maker table thead {
  background: var(--color-lightgray);
}
.p-facility__maker table th, .p-facility__maker table td {
  padding: 10px 20px;
  border: solid 1px var(--color-deepgray);
  font-size: 14px;
  font-family: var(--ff-ja);
  font-weight: var(--fw-400);
  letter-spacing: var(--ls-100);
  line-height: var(--lh-175);
  vertical-align: middle;
}
.p-facility__maker table th {
  font-weight: var(--fw-500);
  text-align: center;
  white-space: nowrap;
}
.p-facility__maker table td {
  background: #fff;
}
.p-contact__body {
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-contact__tel {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--color-red);
}
.p-contact__cta {
  font-family: var(--ff-en);
  font-weight: var(--fw-600);
  line-height: 1;
  letter-spacing: var(--ls-100);
  font-size: 30px;
}
.contact-box + .contact-box {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .contact-box + .contact-box {
    margin-top: 80px;
  }
}
.contact-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 15px 0;
  font-size: 15px;
  font-weight: var(--fw-500);
  line-height: var(--lh-150);
  letter-spacing: var(--ls-150);
}
@media (min-width: 768px) {
  .contact-row {
    grid-template-columns: 270px 1fr;
    gap: 30px;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .contact-row.align-items-start {
    align-items: start;
  }
}
.contact-row .req::before, .contact-row .opt::before {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  text-align: center;
  margin-right: 10px;
  color: #fff;
  border-radius: 15px;
  font-size: 12px;
  font-weight: var(--fw-500);
  line-height: var(--lh-175);
  letter-spacing: var(--ls-150);
}
.contact-row .req::before {
  content: "必須";
  background-color: var(--color-red);
}
.contact-row .opt::before {
  content: "任意";
  background-color: var(--color-deepgray);
}
.contact-label {
  display: flex;
  align-items: center;
  text-align: left;
}
.contact-input {
  min-width: 0;
  font-weight: var(--fw-400);
}
.p-contact input[type="text"], .p-contact input[type="email"], .p-contact input[type="tel"], .p-contact textarea {
  width: 100%;
  border: solid 1px var(--color-deepgray);
  background-color: #fff;
  padding: 10px 20px;
}
.p-contact textarea {
  height: 200px;
}
.p-contact .input-note {
  margin-top: 10px;
  font-size: 14px;
  font-weight: var(--fw-400);
  line-height: var(--lh-175);
}
.p-contact .contact-name .contact-input {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-contact .contact-name .contact-input {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .p-contact .contact-name .contact-input * {
    width: 50%;
  }
}
.p-contact .contact-name .contact-lastname, .p-contact .contact-name .contact-firstname {
  width: 100% !important;
}
@media (min-width: 768px) {
  .p-contact .contact-short {
    max-width: 50%;
  }
}
.p-contact-note {
  font-size: 14px;
  color: #aaaaaa;
}
.p-contact-privacy {
  position: relative;
  padding-left: 8rem;
}
.p-contact__privacy {
  padding-top: 30px;
}
@media (min-width: 768px) {
  .p-contact__privacy {
    padding-top: 50px;
  }
}
.p-contact__privacyLink {
  text-decoration: underline;
  color: var(--color-blue);
}
.wpcf7-list-item {
  margin-left: 0;
  margin-right: 30px;
}
.wpcf7-list-item + .wpcf7-list-item {
  margin-right: 30px;
}
.wpcf7-submit {
  width: 100%;
  max-width: 370px;
  height: 96px;
  margin: 30px auto 0;
  background-color: var(--color-red);
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: var(--fw-500);
  line-height: var(--lh-175);
  letter-spacing: var(--ls-100);
  transition: 0.3s;
  border: none;
  border-radius: 48px;
}
.wpcf7-submit:hover {
  opacity: 0.8;
}
.wpcf7-submit:disabled {
  background-color: var(--color-deepgray);
}
.wpcf7-not-valid-tip {
  font-size: 0.8em;
}
.wpcf7-spinner {
  display: block;
  margin: 10px auto 0;
}
.wpcf7 form .wpcf7-response-output {
  text-align: center;
}
.wpcf7 form.sent .wpcf7-response-output {
  border: 0;
}
.p-sitemap__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.p-sitemap__link {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  gap: 10px;
  border: solid 1px var(--color-deepgray);
  font-size: 14px;
  font-family: var(--ff-ja);
  font-weight: var(--fw-500);
  letter-spacing: var(--ls-100);
  line-height: var(--lh-175);
}
.p-sitemapFa {
  color: var(--color-blue);
}
.p-sitemap__subList {
  display: grid;
  grid-template-columns: 1fr;
}
.p-sitemap__subLink {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  gap: 10px;
  border: solid 1px var(--color-deepgray);
  border-top: none;
  font-size: 14px;
  font-family: var(--ff-ja);
  font-weight: var(--fw-400);
  letter-spacing: var(--ls-100);
  line-height: var(--lh-175);
}
.p-sitemap__subFa {
  color: var(--color-blue);
}
/* c-linkButton */
.c-linkButton {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 70px;
  width: 100%;
  max-width: 370px;
  margin: 0 auto;
  border-radius: 35px;
  background: var(--color-white);
  border: 1px solid var(--color-red);
  color: var(--color-red);
  font-weight: var(--fw-500);
  font-size: 16px;
  letter-spacing: var(--ls-100);
  line-height: 1;
  overflow: hidden;
  z-index: 0;
}
.c-linkButton img {
  transition: 0.3s;
}
.c-linkButton:hover {
  background: var(--color-red);
  opacity: 1;
  color: var(--color-white);
}
.c-linkButton:hover img {
  filter: brightness(0) invert(1);
}
.c-linkButton--small {
  margin-top: auto;
  height: 50px;
  max-width: 310px;
  font-size: 14px;
}
/* bl-category  */
.bl-listTaxonomy {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  margin-top: 1px;
  margin-left: 1px;
}
.bl-listTaxonomy__item {
  background: var(--color-white);
  margin: 0;
}
.bl-listTaxonomy--split {
  grid-template-columns: repeat(1, minmax(270px, 270px));
  justify-content: center;
  gap: 30px;
}
@media (min-width: 768px) {
  .bl-listTaxonomy--split {
    grid-template-columns: repeat(2, minmax(270px, 270px));
  }
}
.bl-listTaxonomy--nowrap {
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
}
@media (min-width: 768px) {
  .bl-listTaxonomy--nowrap {
    grid-auto-flow: column;
    grid-template-columns: none;
  }
}
/* bl-listTerm */
.bl-listTerm {
  margin-top: -1px;
  padding: 15px 30px;
  background-color: #fff;
  border: 1px solid var(--color-deepgray);
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
}
@media (min-width: 576px) {
  .bl-listTerm {
    padding: 20px 30px;
  }
}
.bl-listTerm__item {
  width: auto;
  height: 100%;
}
/* bl-listTerm */
/* btn-taxonomy */
.btn-taxonomy {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 10px;
  border: 1px solid var(--color-deepgray);
  margin: -1px 0 0 -1px;
  font-size: 15px;
  font-weight: var(--fw-500);
  line-height: var(--lh-150);
  letter-spacing: var(--ls-100);
  text-align: center;
  transition: 0.4s;
}
.btn-taxonomy:hover, .btn-taxonomy:active, .btn-taxonomy:focus, .btn-taxonomy.is-onBtn {
  cursor: pointer;
  color: var(--color-white);
  background: var(--color-blue);
  opacity: 1;
}
.btn-taxonomy--split {
  width: 270px;
  padding: 0;
  border: 1px solid var(--color-deepgray);
}
/* btn-taxonomy */
/* btn-term */
.btn-term {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 26px;
  width: fit-content;
  width: -moz-fit-content;
  font-size: 15px;
  font-weight: var(--fw-500);
  line-height: var(--lh-150);
  letter-spacing: var(--ls-100);
  text-align: center;
  border-radius: 50vw;
  gap: 5px;
  transition: all 0.4s ease 0s;
}
.btn-term::before {
  font-family: var(--ff-fa);
  font-weight: 900;
  color: var(--color-blue);
  content: "";
  transition: color 0.4s ease 0s;
}
.btn-term:hover, .btn-term:active, .btn-term:focus, .btn-term.is-onBtn {
  cursor: pointer;
}
/* btn-term */
/* c-lead */
.c-lead {
  font-size: var(--fs-14);
  text-align: left;
}
@media (min-width: 768px) {
  .c-lead {
    text-align: center;
  }
}
.c-lead br {
  display: none;
}
@media (min-width: 768px) {
  .c-lead br {
    display: block;
  }
}
.c-lead p + p {
  margin-top: 30px;
}
/* c-heading */
.c-heading {
  text-align: center;
}
.c-headingJa {
  display: block;
  font-family: var(--ff-ja);
  letter-spacing: var(--ls-150);
  line-height: var(--lh-150);
  font-size: 24px;
}
@media (min-width: 992px) {
  .c-headingJa {
    font-size: 32px;
  }
}
.c-heading::after {
  content: "";
  display: block;
  width: 2px;
  height: 30px;
  margin: 15px auto 0;
  background: #f4c542;
  box-shadow: -6px 0 0 var(--color-blue), 6px 0 0 var(--color-red);
}
.c-heading--secondary {
  display: flex;
  align-items: center;
  font-family: var(--ff-ja);
  letter-spacing: var(--ls-150);
  line-height: var(--lh-150);
  font-size: 24px;
  padding-bottom: 15px;
  border-bottom: solid 1px var(--color-deepgray);
}
@media (min-width: 1200px) {
  .c-heading--secondary {
    font-size: 32px;
  }
}
.c-heading--secondary::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin-right: 20px;
  background: #f4c542;
  box-shadow: 0 -6px 0 var(--color-blue), 0 6px 0 var(--color-red);
}
.c-heading--tertiary {
  --padding-inline: 30px;
  padding: 40px var(--padding-inline) var(--padding-inline);
  padding-top: 30px;
  margin-top: 20px;
  background-color: var(--color-lightgray);
  border: solid 1px var(--color-blue);
  position: relative;
}
@media (min-width: 768px) {
  .c-heading--tertiary {
    --padding-inline: 40px;
    padding-top: var(--padding-inline);
    padding: 30px var(--padding-inline);
  }
}
.c-heading--tertiary .c-heading__number {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  left: var(--padding-inline);
}
.c-heading--tertiary .c-heading__text {
  display: block;
  font-family: var(--ff-ja);
  letter-spacing: var(--ls-138);
  line-height: var(--lh-150);
  font-size: 24px;
  color: var(--color-blue);
}
@media (min-width: 1200px) {
  .c-heading--tertiary .c-heading__text {
    font-size: 32px;
  }
}
.c-heading--tertiary .c-heading__text .accent {
  color: var(--color-red);
}
.c-heading--middle {
  text-align: left;
  display: block;
  font-family: var(--ff-ja);
  letter-spacing: var(--ls-150);
  line-height: var(--lh-150);
  font-size: 20px;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: solid 1px var(--color-deepgray);
  position: relative;
}
.c-heading--middle::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 200px;
  height: 1px;
  background-color: var(--color-red);
}
@media (min-width: 1200px) {
  .c-heading--middle {
    font-size: 28px;
  }
}
.c-heading--minor {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  background-color: var(--color-white);
  font-family: var(--ff-ja);
  letter-spacing: var(--ls-150);
  line-height: var(--lh-150);
  font-size: 18px;
  padding: 13px 20px;
  margin-bottom: 30px;
  border: solid 1px var(--color-blue);
  color: var(--color-blue);
}
@media (min-width: 1200px) {
  .c-heading--minor {
    font-size: 20px;
  }
}
.c-heading--minor img {
  max-width: 35px;
}
.c-heading--caption {
  position: relative;
  display: inline-block;
  padding: 10px;
  width: 100%;
  border: 1px solid var(--color-red);
  background-color: var(--color-white);
  color: var(--color-red);
  font-size: 18px;
  line-height: var(--lh-150);
  text-align: center;
  margin-bottom: 20px;
}
.c-heading--caption::before, .c-heading--caption::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
}
.c-heading--caption::before {
  bottom: -14px;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 14px solid var(--color-red);
}
.c-heading--caption::after {
  bottom: -12px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #fff;
}
@media (min-width: 768px) {
  .c-heading--caption {
    padding: 10px;
    font-size: 20px;
    margin-bottom: 20px;
  }
  .c-heading--caption::before {
    bottom: -20px;
    border-left-width: 15px;
    border-right-width: 15px;
    border-top-width: 20px;
  }
  .c-heading--caption::after {
    bottom: -18px;
    border-left-width: 14px;
    border-right-width: 14px;
    border-top-width: 18px;
  }
}
.p-headingFaqQ {
  display: flex;
  align-items: center;
  font-family: var(--ff-ja);
  letter-spacing: var(--ls-150);
  line-height: var(--lh-150);
  font-size: 24px;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: solid 1px var(--color-deepgray);
}
@media (min-width: 1200px) {
  .p-headingFaqQ {
    font-size: 32px;
    margin-bottom: 50px;
  }
}
.p-headingFaqQ img {
  margin-right: 20px;
  max-width: 48px;
  min-width: 30px;
}
.p-headingFaqA {
  display: flex;
  align-items: center;
  font-family: var(--ff-ja);
  letter-spacing: var(--ls-150);
  line-height: var(--lh-180);
  padding: 15px;
  margin-bottom: 30px;
  border: solid 1px var(--color-deepgray);
  background-color: var(--color-lightgray);
  color: var(--color-red);
}
@media (min-width: 768px) {
  .p-headingFaqA {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .p-headingFaqA {
    padding: 30px 50px;
  }
}
.p-headingFaqA img {
  margin-right: 20px;
  max-width: 50px;
  min-width: 40px;
}
.p-headingFaqA__text {
  font-size: 24px;
}
.editor-content ul, .editor-content ol {
  font-size: 16px;
}
.editor-content ul li {
  list-style: none;
}
.editor-content ul > li {
  position: relative;
}
.editor-content ul > li::before {
  counter-increment: list;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background: var(--color-red);
  top: 7px;
  /* 目次には適用しない */
}
.editor-content #ez-toc-container ul > li::before {
  content: none;
}
.editor-content ul > li:not(.no-count) {
  padding-left: 25px;
}
.editor-content #ez-toc-container ul > li:not(.no-count) {
  padding-left: 0;
}
.editor-content ul > li.no-count::before {
  counter-increment: none;
  content: none;
}
.editor-content ol {
  padding-left: 2.25em;
}
.editor-content ol li {
  list-style: decimal-leading-zero;
}
.editor-content ol li::marker {
  color: var(--color-red);
  font-weight: var(--fw-700);
}
.editor-content a {
  text-underline-offset: 2px;
  color: var(--color-blue);
}
.editor-content p.deco a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.editor-content p.deco a::before {
  content: "";
  /* fa-angle-right のUnicode */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  /* Solidの場合は必須 */
}
.editor-content strong {
  margin-right: 0.15em;
  background-color: #ffff00;
  padding-left: 0.3em;
  padding-right: 0.15em;
  color: var(--color_black);
}
.editor-content h2 {
  text-align: left;
  display: block;
  font-family: var(--ff-ja);
  letter-spacing: var(--ls-150);
  line-height: var(--lh-150);
  font-size: 20px;
  padding-bottom: 15px;
  margin-top: 30px;
  margin-bottom: 30px;
  border-bottom: solid 1px var(--color-deepgray);
  position: relative;
}
@media (min-width: 768px) {
  .editor-content h2 {
    margin-top: 50px;
  }
}
.editor-content h2::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 200px;
  height: 1px;
  background-color: var(--color-red);
}
@media (min-width: 1200px) {
  .editor-content h2 {
    font-size: 28px;
  }
}
.editor-content h3 {
  text-align: left;
  display: block;
  font-family: var(--ff-ja);
  letter-spacing: var(--ls-150);
  line-height: var(--lh-150);
  font-size: 18px;
  padding: 13px 20px;
  margin-top: 30px;
  margin-bottom: 30px;
  border: solid 1px var(--color-blue);
  color: var(--color-blue);
}
@media (min-width: 768px) {
  .editor-content h3 {
    font-size: 24px;
    margin-top: 40px;
  }
}
.editor-content h3.is-style-minor-heading {
  display: flex;
  align-items: center;
  gap: 20px;
}
.editor-content h3.is-style-minor-heading::before {
  content: "";
  width: 35px;
  height: 35px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 35px 35px;
  flex-shrink: 0;
}
.editor-content .heading-icon-01::before {
  background-image: url("../images/common/logo-heading--tertiary-01.svg");
  background-size: 32px 32px !important;
}
.editor-content .heading-icon-02::before {
  background-image: url("../images/common/logo-heading--tertiary-02.svg");
}
.editor-content .heading-icon-03::before {
  background-image: url("../images/common/logo-heading--tertiary-03.svg");
}
.editor-content .heading-icon-04::before {
  background-image: url("../images/common/logo-heading--tertiary-04.svg");
}
.editor-content .heading-icon-05::before {
  background-image: url("../images/common/logo-heading--tertiary-05.svg");
}
.editor-content .heading-icon-06::before {
  background-image: url("../images/common/logo-heading--tertiary-06.svg");
}
.editor-content .heading-icon-07::before {
  background-image: url("../images/common/logo-heading--tertiary-07.svg");
}
.editor-content .heading-icon-08::before {
  background-image: url("../images/common/logo-heading--tertiary-08.svg");
}
.editor-content h4 {
  text-align: left;
  display: flex;
  align-items: center;
  font-family: var(--ff-ja);
  letter-spacing: var(--ls-150);
  line-height: var(--lh-150);
  font-size: 16px;
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  .editor-content h4 {
    font-size: 20px;
  }
}
.editor-content h4::before {
  content: "";
  width: 10px;
  height: 40px;
  margin: 0 10px 0 0;
  background-color: var(--color-blue);
}
.editor-content h5 {
  text-align: left;
  display: flex;
  align-items: center;
  font-family: var(--ff-ja);
  letter-spacing: var(--ls-150);
  line-height: var(--lh-150);
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--color-blue);
}
.editor-content table thead {
  border-bottom: solid 1px var(--color-deepgray);
}
.editor-content table th, .editor-content table td {
  padding: 10px 20px;
  border: solid 1px var(--color-deepgray);
  font-size: 14px;
  font-family: var(--ff-ja);
  font-weight: var(--fw-400);
  letter-spacing: var(--ls-100);
  line-height: var(--lh-175);
  vertical-align: middle;
}
.editor-content table th {
  font-weight: var(--fw-500);
  background: var(--color-lightgray);
  text-align: center;
  white-space: nowrap;
}
.editor-content table td {
  background: #fff;
}
.editor-content .color-col table th {
  background: #fff;
  font-weight: var(--fw-400);
}
.editor-content .color-col table tr {
  font-weight: var(--fw-500);
}
.editor-content .color-col table tr th:first-child, .editor-content .color-col table tr td:first-child {
  background: var(--color-lightgray);
}
.editor-content > * + * {
  margin-top: 30px;
}
/* u-fw */
.u-fw-400 {
  font-weight: 400;
}
.u-fw-500 {
  font-weight: 500;
}
.u-fw-600 {
  font-weight: 600;
}
.u-fw-700 {
  font-weight: 700;
}
/* u-ff */
.u-ff-en {
  font-family: var(--ff-en);
}
.u-ff-ja {
  font-family: var(--ff-ja);
}
/* u-text */
@media (min-width: 0px) {
  .u-text-left {
    text-align: left;
  }
  .u-text-center {
    text-align: center;
  }
  .u-text-right {
    text-align: right;
  }
}
@media (min-width: 576px) {
  .u-sm-text-left {
    text-align: left;
  }
  .u-sm-text-center {
    text-align: center;
  }
  .u-sm-text-right {
    text-align: right;
  }
}
@media (min-width: 768px) {
  .u-md-text-left {
    text-align: left;
  }
  .u-md-text-center {
    text-align: center;
  }
  .u-md-text-right {
    text-align: right;
  }
}
@media (min-width: 992px) {
  .u-lg-text-left {
    text-align: left;
  }
  .u-lg-text-center {
    text-align: center;
  }
  .u-lg-text-right {
    text-align: right;
  }
}
@media (min-width: 1200px) {
  .u-xl-text-left {
    text-align: left;
  }
  .u-xl-text-center {
    text-align: center;
  }
  .u-xl-text-right {
    text-align: right;
  }
}
.u-border-blue {
  border: solid 1px var(--color-blue);
}
.u-border--deepgray {
  border: solid 1px var(--color-deepgray);
}
.u-border__top--deepgray {
  border-top: solid 1px var(--color-deepgray);
}
.u-color--white {
  color: var(--color-white);
}
.u-color--lightgray {
  color: var(--color-lightgray);
}
.u-color--blue {
  color: var(--color-blue);
}
.u-color--red {
  color: var(--color-red);
}
.u-color--deepgray {
  color: var(--color-deepgray);
}
.u-color--black {
  color: var(--color-black);
}
