@charset "UTF-8";
/* mixin var
-----------------------------------------------------*/
/* reset
-----------------------------------------------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

img {
  vertical-align: top;
}

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

body {
  line-height: 1;
}

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

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

del {
  text-decoration: line-through;
}

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

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

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

/* html
-----------------------------------------------------*/
html {
  overflow: auto;
  font-size: 62.5%;
  scroll-padding-top: 66px;
  scroll-behavior: smooth;
}
@media (max-width: 575px) {
  html {
    scroll-padding-top: 60px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

ol {
  padding-left: 1em;
}

.float-l {
  float: left;
}

.float-r {
  float: right;
}

.en, .r-support__headline:before, .video-step__num {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
}

.en-normal {
  text-transform: none;
}

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

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

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

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

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

.color-main {
  color: #0f48b1 !important;
}

.color-blue01 {
  color: #0e62c9 !important;
}

.color-white {
  color: #fff;
}

.bold, .outline-blue, .module-headline01, .module-headline02, .module-headline03, .module-list02 li, .r-support__headline:before, .department_recruit:after, .job-flow ol, .video-step__num, .nursery-flow__inner dt {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

.link-none {
  pointer-events: none;
}

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

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

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

.pos-r {
  position: relative;
}

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

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

.bg-black {
  background: #000;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*headers
-----------------------------------------------------*/
.header-wrap {
  padding: 1rem 2rem 1rem 3rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
@media (max-width: 950px) {
  .header-wrap {
    padding: 1rem 2rem;
  }
}
.header-logo {
  width: 160px;
  margin-right: auto;
  line-height: 0;
}
@media (max-width: 575px) {
  .header-logo {
    width: 140px;
  }
}
.header-inner {
  display: flex;
}
.header-nav {
  display: flex;
  align-items: center;
}
.header-nav > li {
  position: relative;
}
.header-nav > li > a {
  display: block;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  color: #333;
  text-decoration: none;
}
.header-nav > li > a::before {
  position: absolute;
  bottom: 0;
  left: 10px;
  content: "";
  display: inline-block;
  width: 0;
  height: 1px;
  background: #0f48b1;
  transition: 0.2s ease;
}
.header-nav > li > a:hover {
  opacity: 1;
}
.header-nav > li > a:hover::before {
  width: calc(100% - 20px);
}
.header-nav .menu-item-has-children {
  position: relative;
}
.header-nav .menu-item-has-children.parent-link-none > a {
  pointer-events: none;
}
.header-nav .menu-item-has-children .sub-menu {
  position: absolute;
  z-index: 9999;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
  min-width: 240px;
  background: linear-gradient(135deg, rgb(5, 37, 184) 0%, rgb(14, 99, 201) 98%);
  transform: translateY(10px);
  padding: 2rem;
}
.header-nav .menu-item-has-children .sub-menu a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 1.3rem;
  padding: 1rem;
}
.header-nav .menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.header-nav .menu-item-has-children:last-of-type .sub-menu {
  right: 0;
}
@media (max-width: 950px) {
  .header-inner {
    display: none;
  }
}

.catch-sub {
  width: 224px;
  margin-top: 4.5rem;
}

.icon-pdf {
  display: flex;
  justify-content: flex-end;
  padding-right: 2rem;
  margin-bottom: 2rem;
}
.icon-pdf a {
  color: #333;
  text-decoration: none;
}
.icon-pdf span {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  align-items: center;
  border: solid 1px #ccc;
  box-sizing: border-box;
  justify-content: flex-end;
}
.icon-pdf span::before {
  display: inline-block;
  content: "";
  margin-right: 0.5rem;
  background: url(../images/common/icon-pdf.png) no-repeat;
  background-size: cover;
  width: 18px;
  height: 18px;
  vertical-align: sub;
}
@media (max-width: 950px) {
  .icon-pdf {
    display: none;
  }
}

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

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

.sp-header-nav {
  display: none;
}
@media (max-width: 950px) {
  .sp-header-nav {
    display: block;
  }
}
.sp-header-nav .header-logo {
  padding: 1rem 2rem;
  box-sizing: border-box;
}
.sp-header-nav .header-logo a {
  width: 140px;
  display: block;
}

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

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

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

.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, rgb(5, 37, 184) 0%, rgb(14, 99, 201) 98%);
  width: 100%;
  transform: translateY(-100%);
  transition: all 0.6s;
  height: 100%;
  box-sizing: border-box;
  overscroll-behavior-y: contain;
  overflow-y: auto;
}

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

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

.sp-btn {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  padding: 0 2rem;
}
@media (max-width: 699px) {
  .sp-btn {
    justify-content: center;
  }
}
.sp-btn li {
  margin-right: 20px;
  min-width: 300px;
}
@media (max-width: 1199px) {
  .sp-btn li {
    min-width: 250px;
  }
}
@media (max-width: 1023px) {
  .sp-btn li {
    margin-right: 10px;
    min-width: 200px;
  }
}
@media (max-width: 699px) {
  .sp-btn li {
    width: 45%;
    min-width: auto;
  }
}
.sp-btn a {
  text-decoration: none;
  padding: 1.5rem 2rem;
  font-size: 2rem;
  transition: 0.3s linear;
}
@media (max-width: 1199px) {
  .sp-btn a {
    padding: 1.5rem 1rem;
    font-size: 1.5rem;
  }
}
@media (max-width: 1023px) {
  .sp-btn a {
    padding: 1rem 1rem;
  }
}
@media (max-width: 699px) {
  .sp-btn a {
    letter-spacing: 0;
    font-size: 3vw;
  }
}
.sp-btn .btn-2 a {
  transition: 0.3s linear;
  color: #005CB7;
}
.sp-btn .btn-2 a::after {
  right: 1.5rem;
}

/*header-mv
-----------------------------------------------------*/
.header-mv {
  background: url(../images/top/main_bg.png) no-repeat center top/1800px auto;
  text-align: center;
  padding: 7.3rem 0 16.1rem;
}
@media (max-width: 1440px) {
  .header-mv {
    background: url(../images/top/main_bg.png) no-repeat center top/100% auto;
    padding: 5.0694444444% 12.5% 11.1805555556%;
    margin: 0 -12.5%;
  }
}
@media (max-width: 767px) {
  .header-mv {
    background: none;
    padding: 0;
    margin: 5rem 0 0;
  }
}
.header-mv img {
  width: 1440px;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .header-mv img {
    width: auto;
  }
}

/*top-first
-----------------------------------------------------*/
.top-first {
  padding-top: 4rem;
  margin: 0 auto;
  background: #fff;
}
.top-first-box {
  display: flex;
  align-items: center;
}
.top-first-in {
  margin-right: 6rem;
  width: 100%;
  flex: 1;
}
.top-first-in h2 {
  padding-bottom: 4rem;
  color: #000;
}
.top-first-sub {
  display: block;
  padding-bottom: 1.5rem;
  font-size: 2rem;
}
.top-first-cach {
  font-size: 5.8rem;
  line-height: 1;
}
.top-first-img {
  width: 45%;
  max-width: 540px;
}
.top-first-detail {
  display: flex;
  margin-top: 6rem;
}
.top-first-detail li {
  position: relative;
  padding: 6rem 2rem;
  width: 33.3%;
  max-width: 400px;
  text-align: center;
  border-left: solid 1px #ccc;
  box-sizing: border-box;
}
@media (max-width: 575px) {
  .top-first-detail li:first-child {
    border-top: solid 1px #ccc;
  }
}
.top-first-detail li:first-child::before {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 1px;
  top: 0;
  left: 0;
  background: #ccc;
}
@media (max-width: 575px) {
  .top-first-detail li:first-child::before {
    width: 1px;
    height: 25px;
  }
}
.top-first-detail li:first-child::after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #ccc;
}
@media (max-width: 575px) {
  .top-first-detail li:first-child::after {
    width: 1px;
    height: 25px;
    top: 0;
    right: 0;
    left: auto;
    bottom: auto;
  }
}
.top-first-detail li:last-child {
  border-right: solid 1px #ccc;
}
@media (max-width: 575px) {
  .top-first-detail li:last-child {
    border-right: none;
    border-bottom: solid 1px #ccc;
  }
}
.top-first-detail li:last-child::before {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 1px;
  top: 0;
  right: 0;
  background: #ccc;
}
@media (max-width: 575px) {
  .top-first-detail li:last-child::before {
    top: auto;
    bottom: 0;
    width: 1px;
    height: 25px;
  }
}
.top-first-detail li:last-child::after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 1px;
  bottom: 0;
  right: 0;
  background: #ccc;
}
@media (max-width: 575px) {
  .top-first-detail li:last-child::after {
    right: auto;
    left: 0;
    width: 1px;
    height: 25px;
  }
}
.top-first-detail h3 {
  font-size: 3.5rem;
  color: #0f48b1;
  line-height: 1.2;
}
.top-first-detail h3 span {
  font-size: 5.5rem;
}
.top-first-detail_txt {
  padding-top: 2.5rem;
  line-height: 1.5;
}
@media (max-width: 1235px) {
  .top-first-cach {
    font-size: 4.5vw;
  }
  .top-first-sub {
    font-size: 1.6rem;
  }
}
@media (max-width: 1199px) {
  .top-first-detail h3 {
    font-size: 3vw;
  }
  .top-first-detail h3 span {
    font-size: 5.5vw;
  }
  .top-first-in {
    margin-right: 3rem;
  }
  .top-first-in h2 {
    padding-bottom: 2vw;
  }
}
@media (max-width: 1023px) {
  .top-first-in p {
    font-size: 1.4rem;
  }
  .top-first-detail_txt {
    padding-top: 1.5rem;
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .top-first {
    padding-top: 8rem;
  }
  .top-first-box {
    flex-direction: column-reverse;
  }
  .top-first-in {
    margin-right: 0;
  }
  .top-first-in h2 {
    padding-bottom: 5vw;
  }
  .top-first-img {
    margin-bottom: 3rem;
    width: 100%;
    max-width: 100%;
  }
  .top-first-detail li {
    padding: 6rem 1rem;
  }
  .top-first-cach {
    font-size: 5rem;
  }
}
@media (max-width: 575px) {
  .top-first-cach {
    font-size: 10vw;
  }
  .top-first-detail {
    display: block;
  }
  .top-first-detail li {
    width: 100%;
    max-width: 100%;
    border-bottom: solid 1px #ccc;
    border-left: none;
    padding: 4rem 2rem;
  }
  .top-first-detail li h3 {
    font-size: 7vw;
  }
  .top-first-detail li h3 span {
    font-size: 9.5vw;
  }
}

/*top-service
-----------------------------------------------------*/
.top-service {
  margin: 15rem 0;
}
.top-service h3 {
  position: relative;
  padding-left: 6.5rem;
  font-size: 1.2rem;
}
.top-service h3::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  margin-top: -25px;
}
.top-service h4 {
  padding: 4rem 0 2rem 0;
  font-size: 2.7rem;
}
.top-service-box {
  position: relative;
  margin-top: 9rem;
  margin-bottom: 10rem;
  width: 100%;
}
.top-service-box::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/top/top_service_bg.jpg) no-repeat left/cover;
  z-index: -1;
}
.top-service-box_in {
  display: flex;
  margin: 0 auto;
  padding: 9rem 2rem;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  box-sizing: border-box;
}
.top-service-detail {
  margin-right: 10rem;
  width: 48%;
  max-width: 470px;
  color: #fff;
}
.top-service-img {
  width: 48%;
}
.top-service-img img {
  width: 100%;
  box-shadow: 0px 0px 30px -15px #000;
}
.top-service_txt {
  font-size: 1.5rem;
}
.top-service-1 h3::before {
  background: url(../images/top/top_service01.png) no-repeat left;
  width: 55px;
  height: 41px;
}
.top-service-2 h3::before {
  background: url(../images/top/top_service02.png) no-repeat left;
  width: 59px;
  height: 41px;
}
.top-service-3 h3::before {
  background: url(../images/top/top_service03.png) no-repeat left;
  width: 57px;
  height: 41px;
}
.top-service-content {
  margin-top: 2.5rem;
}
.top-service-content a {
  display: block;
  width: 100%;
  color: #fff;
  line-height: 2;
  padding: 1.5rem 0;
  text-decoration: none;
}
.top-service-content a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 6px;
  height: 6px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.top-service-content li {
  position: relative;
}
.top-service-content li::before {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  width: 100%;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.42);
}
.top-service-content li::after {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  width: 20%;
  bottom: 0;
  left: 0;
  background: #fff;
}
.top-service .reverse::before {
  content: none;
}
.top-service .reverse::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 100%;
  top: 0;
  right: 0 !important;
  background: url(../images/top/top_service_bg.jpg) no-repeat right/cover;
  z-index: -1;
}
.top-service .reverse .top-service-box_in {
  flex-direction: row-reverse;
}
.top-service .reverse .top-service-detail {
  margin-right: 0;
  margin-left: 8rem;
}
@media (max-width: 1199px) {
  .top-service-detail {
    margin-right: 5rem;
  }
  .top-service .reverse .top-service-detail {
    margin-right: 0;
    margin-left: 5rem;
  }
}
@media (max-width: 1023px) {
  .top-service h4 {
    font-size: 2.2rem;
  }
  .top-service-box::before {
    width: 70%;
  }
  .top-service .reverse::after {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .top-service-box::before {
    width: 80%;
  }
  .top-service .reverse::after {
    width: 80%;
  }
  .top-service_txt {
    font-size: 1.3rem;
  }
  .top-service-content {
    margin-top: 1.5rem;
  }
  .top-service-content a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .top-service-content a::after {
    display: inline-block;
    vertical-align: text-bottom;
    position: static;
    width: 6px;
    height: 6px;
  }
  .top-service-content li {
    position: relative;
  }
  .top-service-content li::before {
    content: "";
    position: absolute;
    display: block;
    height: 1px;
    width: 100%;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.42);
  }
  .top-service-content li::after {
    content: "";
    position: absolute;
    display: block;
    height: 1px;
    width: 20%;
    bottom: 0;
    left: 0;
    background: #fff;
  }
  .top-service-detail {
    margin-right: 3rem;
  }
  .top-service .reverse .top-service-detail {
    margin-left: 3rem;
  }
}
@media (max-width: 640px) {
  .top-service {
    margin: 10rem 0;
  }
  .top-service-box {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
  .top-service-box:first-child {
    margin-top: 9rem;
  }
  .top-service-box::before {
    width: 100%;
  }
  .top-service-box_in {
    display: block;
    width: 100%;
  }
  .top-service-detail {
    margin-right: 0;
    width: 100%;
    max-width: 100%;
  }
  .top-service-img {
    margin-top: 5rem;
    width: 100%;
  }
  .top-service .reverse::after {
    width: 100%;
  }
  .top-service .reverse .top-service-detail {
    margin-left: 0;
  }
  .top-service .reverse .column-outside-left {
    margin-left: 0;
  }
}

/*top-results
-----------------------------------------------------*/
.results {
  margin: 0 auto;
}
@media (max-width: 575px) {
  .results {
    margin-bottom: 10rem;
  }
}
.results-com {
  display: flex;
  margin: 6rem auto;
  flex-wrap: wrap;
  justify-content: center;
}
.results-com li {
  margin: 1% 0 1% 3%;
  max-width: 175px;
  width: 14%;
}
.results-com li:first-child {
  margin-left: 0;
}
.results .btn-2 a {
  max-width: 280px;
}
@media (max-width: 767px) {
  .results-com li {
    width: 22%;
  }
}

/*top-news
-----------------------------------------------------*/
.top-news {
  padding: 12rem 0;
  position: relative;
}
.top-news::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F2F5F7;
  clip-path: polygon(0 0, 0% 100%, 40.9722222222% 100%);
  z-index: -1;
}
@media (max-width: 1023px) {
  .top-news::before {
    clip-path: polygon(0 0, 0% 100%, 60% 100%);
  }
}
@media (max-width: 575px) {
  .top-news::before {
    clip-path: polygon(0 0, 40% 0, 40% 100%, 0% 100%);
  }
}
.top-news-box {
  display: flex;
  flex-wrap: wrap;
}
.top-news .h2-headline01 {
  width: auto;
  margin-bottom: 1rem;
}
.top-news .h2-headline01 .ja {
  display: block;
  padding-top: 0.5rem;
  padding-left: 0;
}
.top-news-tit {
  max-width: 170px;
}
.top-news-in {
  flex: 1;
  width: 100%;
  margin-left: 13rem;
}
.top-news .btn-2 a {
  padding: 1rem;
  font-size: 1.3rem;
}
@media (max-width: 1199px) {
  .top-news-in {
    margin-left: 5rem;
  }
  .top-news .btn-2 a {
    padding: 1rem;
    font-size: 1.3rem;
  }
  .top-news .btn-2 a::after {
    position: static;
    display: inline-block;
    margin-left: 1rem;
    vertical-align: text-bottom;
  }
}
@media (max-width: 767px) {
  .top-news-box {
    display: block;
  }
  .top-news-in {
    margin-top: 3rem;
    margin-left: 0;
  }
  .top-news .btn-2 a {
    padding: 2rem;
  }
  .top-news .btn-2 a::after {
    position: absolute;
  }
  .top-news-tit {
    max-width: 100%;
  }
  .top-news .h2-headline01 {
    margin-bottom: 7rem;
  }
}

/*news
-----------------------------------------------------*/
.news-list {
  display: flex;
  padding: 2.5rem 2rem;
  align-items: flex-start;
  border-bottom: solid 1px #ccc;
  box-sizing: border-box;
}
.news-list:first-child {
  border-top: solid 1px #ccc;
}
.news-list-in {
  display: flex;
  align-items: center;
}
.news-list .date {
  font-size: 1.4rem;
}
.news-list .tit {
  flex: 1;
  font-size: 1.4rem;
}
.news-list .tit a {
  color: #333;
  text-decoration: none;
}
.news-list .label {
  display: flex;
  align-items: center;
  margin: 0 2rem;
}
.news-list .label a {
  display: inline-block;
  padding: 0.1rem 1rem;
  font-size: 1.1rem;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: #0f48b1;
}
@media (max-width: 767px) {
  .news-list {
    display: block;
    padding: 2rem 1rem;
  }
  .news-list-in {
    margin-bottom: 1rem;
  }
  .news-list .label {
    margin: 0 1rem;
  }
}

.pickup {
  background: #d21a1a;
}

.event {
  background: #0e7845;
}

.notice {
  background: #5e1eb5;
}

/*top-bnr
-----------------------------------------------------*/
.top-bnr {
  background: #f2f5f7;
}
.top-bnr-box {
  display: flex;
  margin: 0 auto;
  padding: 8.5rem 0;
  justify-content: space-between;
}
.top-bnr-box li {
  width: 32%;
  max-width: 370px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}
.top-bnr-box li a {
  display: block;
  background: #fff;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .top-bnr-box {
    padding: 5rem 0;
  }
  .top-bnr-box li {
    font-size: 1.2rem;
  }
}
@media (max-width: 575px) {
  .top-bnr-box {
    flex-wrap: wrap;
    justify-content: center;
  }
  .top-bnr-box li {
    margin-bottom: 3rem;
    width: 100%;
    max-width: 370px;
  }
  .top-bnr-box li:last-child {
    margin-bottom: 0;
  }
}

/*page-header
-----------------------------------------------------*/
.page-header {
  background: url(../images/common/page_header_bg01.png) no-repeat left top, url(../images/common/page_header_bg02.png) no-repeat right top;
  background-size: 192px auto, 755px auto;
  font-weight: bold;
}
@media (max-width: 1023px) {
  .page-header {
    background-size: 134px auto, 525px auto;
  }
}
@media (max-width: 575px) {
  .page-header {
    background: url(../images/common/page_header_bg01.png) no-repeat left top, url(../images/common/page_header_bg02.png) no-repeat right -10rem top;
    background-size: 89px auto, 350px auto;
  }
}
.page-header__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 12rem;
  height: 431px;
}
@media (max-width: 1023px) {
  .page-header__inner {
    padding-left: 6rem;
    height: 300px;
  }
}
@media (max-width: 767px) {
  .page-header__inner {
    padding-left: 4rem;
  }
}
@media (max-width: 575px) {
  .page-header__inner {
    padding-left: 2rem;
    height: 200px;
  }
}
.page-header__en {
  font-size: 7rem;
  letter-spacing: 0.2rem;
  line-height: 1.6;
}
@media (max-width: 1023px) {
  .page-header__en {
    font-size: 5.5rem;
  }
}
@media (max-width: 575px) {
  .page-header__en {
    font-size: 4rem;
    white-space: nowrap;
  }
}
.page-header__headline {
  font-size: 2.4rem;
}
@media (max-width: 1023px) {
  .page-header__headline {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .page-header__headline {
    font-size: 1.8rem;
  }
}

/*breadcrumb
-----------------------------------------------------*/
#breadcrumb {
  font-size: 1.2rem;
  margin: 0 auto 10rem;
}
@media (max-width: 767px) {
  #breadcrumb {
    font-size: 1rem;
    margin: 2rem auto 5rem;
  }
}
#breadcrumb a {
  color: #333;
  text-decoration: none;
}
#breadcrumb .space {
  margin: 0 1.5rem;
  color: #dfdfdf;
}
#breadcrumb br {
  display: none;
}

/*organization
-----------------------------------------------------*/
.organization-box {
  position: relative;
  padding: 10rem 0 15rem;
}
.organization-box::before {
  content: "";
  position: absolute;
  display: block;
  height: 50%;
  width: 50%;
  top: 0;
  right: 0;
  background: #F2F5F7;
  z-index: -1;
}
.organization-box::after {
  content: "";
  position: absolute;
  display: block;
  height: 50%;
  width: 50%;
  bottom: 0;
  left: 0;
  background: #F2F5F7;
  z-index: -1;
}
.organization-box__in {
  margin: 0 auto;
  padding: 0 4rem;
  max-width: 1200px;
}
@media (max-width: 767px) {
  .organization-box__in {
    padding: 0 2rem;
    max-width: unset;
  }
}
@media (max-width: 575px) {
  .organization-box__in {
    padding: 0;
  }
}
.organization-box__img {
  padding: 8rem;
  background: #fff;
  box-shadow: 0px 0px 27px -15px #ccc;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .organization-box__img {
    padding: 5rem 3rem;
  }
}
@media (max-width: 767px) {
  .organization-box__scroll {
    padding-bottom: 5rem;
    overflow-x: auto;
    white-space: nowrap;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
  }
  .organization-box__scroll img {
    max-width: 100%;
    min-width: 700px;
    vertical-align: top;
  }
  .organization-box__scroll::-webkit-scrollbar {
    height: 10px;
  }
  .organization-box__scroll::-webkit-scrollbar-track {
    background: #eee;
  }
  .organization-box__scroll::-webkit-scrollbar-thumb {
    background: #aaa;
    border: none;
  }
  .organization-box__scroll::-webkit-scrollbar-thumb:hover {
    background: #999;
  }
}

/*pagenation
-----------------------------------------------------*/
.pagination {
  font-size: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 7rem 0 0;
  gap: 1rem;
}
@media (max-width: 767px) {
  .pagination {
    position: relative;
    font-size: 1.1rem;
    margin: 5rem 0 0;
  }
}
.pagination span,
.pagination a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  text-align: center;
  text-decoration: none;
  color: #333;
  box-sizing: border-box;
  background: #f3f3f3;
}
@media (max-width: 767px) {
  .pagination span,
  .pagination a {
    width: 28px;
    height: 28px;
  }
}
.pagination a:hover {
  opacity: 1;
  font-weight: bold;
  color: #fff;
  background: #0f48b1;
}
.pagination .current {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #fff;
  background: #0f48b1;
  width: 40px;
  height: 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .pagination .current {
    width: 28px;
    height: 28px;
  }
}

/*staff
-----------------------------------------------------*/
.staff-sec {
  margin-top: 10rem;
}
.staff-box {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .staff-box {
    padding: 0 0 6rem;
  }
}
.staff-in {
  position: relative;
  margin-bottom: 2.5rem;
}
.staff-name {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  color: #fff;
  line-height: 1;
}
.staff-name__jp {
  display: block;
  padding: 1rem 1.8rem;
  background: #000;
  margin-bottom: 0.5rem;
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  font-weight: bold;
}
.staff-name__en {
  padding: 1rem 1.8rem;
  background: #000;
  display: inline-block;
  font-size: clamp(1rem, 2vw, 1.5rem);
  text-transform: capitalize;
}
.staff-position {
  font-size: 1.5rem;
  color: #333;
  font-weight: bold;
}

.staffdetail-box {
  display: flex;
  gap: 0 7%;
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .staffdetail-box {
    gap: 0 4%;
  }
}
@media (max-width: 575px) {
  .staffdetail-box {
    display: block;
  }
}
.staffdetail-box__1 {
  max-width: 370px;
}
@media (max-width: 767px) {
  .staffdetail-box__1 {
    max-width: 240px;
  }
}
@media (max-width: 575px) {
  .staffdetail-box__1 {
    margin: 0 auto;
    width: 100%;
    max-width: 80%;
  }
}
.staffdetail-box__2 {
  padding-top: 5rem;
  width: 100%;
  flex: 1;
}

/*access
-----------------------------------------------------*/
.access-box {
  margin-bottom: 12rem;
  gap: 0 7%;
}
.access-box:nth-child(2n) {
  flex-direction: row-reverse;
}
.access-box .gmap {
  display: inherit;
  overflow: hidden;
  max-width: 600px;
}
.access-box__in {
  flex: 1;
}
.access-box__tit {
  font-weight: bold;
  font-size: 2.6rem;
}
.access-box__tit_sub {
  display: block;
  font-size: 2rem;
}
.access-box .btn-2 {
  width: 280px;
}
@media (max-width: 767px) {
  .access-box {
    gap: 0 4%;
  }
  .access-box__in {
    padding-top: 2rem;
  }
  .access-box__tit_sub {
    display: block;
    font-size: 2rem;
  }
  .access-box .btn-2 {
    margin: 4rem auto 0 auto;
  }
}
@media (max-width: 650px) {
  .access-box {
    display: block;
  }
  .access-box .gmap {
    max-height: 320px;
    max-width: auto;
  }
  .access-box__tit {
    font-size: 2.2rem;
  }
  .access-box__tit_sub {
    font-size: 1.8rem;
  }
  .access-box .btn-2 {
    max-width: 280px;
    width: 80%;
  }
}

@media (max-width: 650px) {
  .clm-2.access-box {
    display: block;
  }
  .clm-2.access-box .clm-list {
    width: 100%;
  }
}
/*marketing
-----------------------------------------------------*/
.marketing-first {
  position: relative;
  padding: 9rem 0 8rem;
}
.marketing-first::before {
  content: "";
  position: absolute;
  display: block;
  height: 50%;
  width: 100%;
  top: 0;
  right: 0;
  background: #F2F5F7;
  z-index: -1;
}
.marketing-first__in {
  max-width: 1100px;
  padding: 0 4rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .marketing-first__in {
    padding: 0 2rem;
  }
}
.marketing-first dl {
  display: flex;
  gap: 0 10rem;
  margin-bottom: 6rem;
  align-items: flex-start;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .marketing-first dl {
    gap: 0 8rem;
  }
}
@media (max-width: 575px) {
  .marketing-first dl {
    display: block;
    margin-bottom: 4rem;
  }
}
.marketing-first dl dd {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .marketing-first dl dd {
    font-size: 1.8rem;
  }
}
@media (max-width: 575px) {
  .marketing-first dl dd {
    font-size: 1.6rem;
  }
}
.marketing-purpose__label {
  position: relative;
  padding: 1.5rem 0;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  background: #000;
  color: #fff;
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.5rem;
}
@media (max-width: 575px) {
  .marketing-purpose__label {
    display: inline-block;
    padding: 1rem 2rem;
    writing-mode: unset;
    font-size: 3rem;
    letter-spacing: 0;
    line-height: 1;
  }
}
.marketing-purpose__label::before {
  content: "Purpose";
  position: absolute;
  display: block;
  font-size: 2rem;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: sideways;
  text-transform: capitalize;
  color: #333;
  font-weight: normal;
  top: 2rem;
  right: -3.5rem;
  z-index: 0;
  letter-spacing: normal;
}
@media (max-width: 575px) {
  .marketing-purpose__label::before {
    top: 50%;
    margin-top: -1rem;
    right: -8rem;
    writing-mode: unset;
    font-size: 1.8rem;
  }
}
@media (max-width: 575px) {
  .marketing-purpose__txt {
    padding: 2rem 0 0 2rem;
  }
}
.marketing-purpose__txt li {
  color: #000;
  list-style: outside;
}
.marketing-purpose__txt li + li {
  margin-top: 1rem;
}
.marketing-purposelist {
  display: flex;
  gap: 0 3%;
}
@media (max-width: 767px) {
  .marketing-purposelist {
    display: block;
  }
}
.marketing-purposelist li {
  position: relative;
  padding: 4rem 2rem;
  width: 14%;
  max-width: 128px;
  min-height: 640px;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0px 0px 16px -12px #000;
  color: #0f48b1;
}
@media (max-width: 767px) {
  .marketing-purposelist li {
    display: flex;
    gap: 0 5rem;
    margin-bottom: 3rem;
    padding: 2rem 1.5rem;
    width: 100%;
    max-width: inherit;
    min-height: auto;
    align-items: center;
  }
}
.marketing-purposelist li::before {
  content: "";
  position: absolute;
  display: block;
  height: 5px;
  width: 100%;
  top: 0;
  left: 0;
  background: #0f48b1;
  z-index: 0;
}
.marketing-purposelist__label {
  position: relative;
  margin-bottom: 3rem;
  padding-bottom: 4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
.marketing-purposelist__label::before {
  content: "";
  position: absolute;
  display: block;
  height: 25px;
  width: 25px;
  transform: translateY(-50%) rotate(45deg);
  border-bottom: 1px solid #0f48b1;
  border-right: 1px solid #0f48b1;
  bottom: 0;
  right: 50%;
  margin-right: -12px;
  z-index: 1;
}
@media (max-width: 767px) {
  .marketing-purposelist__label {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .marketing-purposelist__label::before {
    bottom: 50%;
    margin-bottom: -25px;
    right: -3rem;
    margin-right: auto;
    border-bottom: none;
    border-top: 1px solid #0f48b1;
  }
}
.marketing-purposelist__step {
  font-size: 1.3rem;
}
@media (max-width: 767px) {
  .marketing-purposelist__step {
    font-size: 2.2vw;
  }
}
.marketing-purposelist__num {
  font-size: 3.5rem;
}
@media (max-width: 767px) {
  .marketing-purposelist__num {
    font-size: 4.5vw;
  }
}
.marketing-purposelist__txt {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .marketing-purposelist__txt {
    flex: 1;
    width: 100%;
    justify-content: flex-start;
  }
}
.marketing-purposelist__txt p {
  font-size: 2rem;
  font-weight: bold;
  writing-mode: vertical-rl;
  letter-spacing: 0.2rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .marketing-purposelist__txt p {
    font-size: 1.6rem;
    writing-mode: unset;
  }
}
.marketing-list {
  background: #f3f3f3;
}
.marketing-list:nth-child(2n) {
  background: #fff;
}
.marketing-list__in {
  gap: 0 7%;
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .marketing-list__in {
    gap: 0 5%;
  }
}
@media (max-width: 575px) {
  .marketing-list__in {
    padding: 4rem 0;
  }
}
.marketing-list__tit {
  text-align: center;
  font-size: 2.6rem;
  font-weight: bold;
  color: #0f48b1;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .marketing-list__tit {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .marketing-list__txt {
    margin-bottom: 2rem;
  }
}
.marketing-label {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 5.5rem auto;
  padding: 1rem;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-weight: bold;
  text-align: center;
  color: #fff;
  line-height: 1;
  background: #0f48b1;
  box-sizing: border-box;
}
.marketing-label::before {
  content: "";
  position: absolute;
  display: block;
  height: 20px;
  width: 1px;
  bottom: -35px;
  left: 50%;
  margin-left: -1px;
  background: #cccccc;
}
.marketing-step {
  font-size: 1rem;
}
.marketing-num {
  font-size: 2.8rem;
}
.marketing-pdcastep {
  position: relative;
  margin-top: 6rem;
}
.marketing-pdcastep::before {
  content: "";
  position: absolute;
  display: block;
  height: 220px;
  width: 70%;
  top: 50%;
  left: 0;
  margin-top: -110px;
  background: #f3f3f3;
  z-index: -1;
}
@media (max-width: 710px) {
  .marketing-pdcastep::before {
    content: none;
  }
}
.marketing-pdcastep-box {
  display: flex;
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 890px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 710px) {
  .marketing-pdcastep-box {
    display: block;
    padding: 0;
  }
}
.marketing-pdcastep__in {
  position: relative;
  padding-right: 2rem;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.5;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .marketing-pdcastep__in {
    font-size: 2.2rem;
  }
}
@media (max-width: 710px) {
  .marketing-pdcastep__in {
    padding: 4rem 2rem 2rem 2rem;
    background: #f3f3f3;
  }
}
.marketing-pdcastep__in::before {
  content: "PDCASTEP";
  position: absolute;
  display: block;
  font-size: 9rem;
  top: -130px;
  left: -60px;
  color: transparent;
  -webkit-text-stroke-color: #CFDBF0;
  -webkit-text-stroke-width: 1px;
  white-space: nowrap;
  z-index: 1;
}
@media (max-width: 767px) {
  .marketing-pdcastep__in::before {
    font-size: 6rem;
    top: -120px;
    left: 0px;
  }
}
@media (max-width: 710px) {
  .marketing-pdcastep__in::before {
    top: -40px;
    left: 2rem;
  }
}
.marketing-pdcastep__img {
  max-width: 415px;
  padding-left: 15rem;
  background: #fff;
}
@media (max-width: 1023px) {
  .marketing-pdcastep__img {
    max-width: 330px;
    padding-left: 6rem;
  }
}
@media (max-width: 710px) {
  .marketing-pdcastep__img {
    margin: 4rem auto 0 auto;
    padding-left: 0;
    width: 80%;
  }
}

/*page-news
-----------------------------------------------------*/
.news-sec {
  margin: 10rem 0 15rem;
}

/*footer-contact
-----------------------------------------------------*/
.footer-contact {
  padding: 10rem 0;
  background: url(../images/top/footer_bg.png) no-repeat top center/cover;
  text-align: center;
}
@media (max-width: 575px) {
  .footer-contact {
    padding: 6rem 0;
  }
}
.footer-contact h2 {
  margin-bottom: 5rem;
  color: #fff;
  font-size: 5.5rem;
  line-height: 1.5;
}
@media (max-width: 575px) {
  .footer-contact h2 {
    font-size: 4rem;
    margin-bottom: 3rem;
  }
}
.footer-contact h2 .ja {
  display: block;
  font-size: 2rem;
}
.footer-contact_txt {
  color: #fff;
}
.footer-contact ul {
  display: flex;
  margin: 4.5rem auto 0 auto;
  width: 600px;
}
.footer-contact ul li {
  max-width: 280px;
  width: 47%;
  margin-left: 4rem;
}
.footer-contact ul li:first-child {
  margin: 0;
}
@media (max-width: 640px) {
  .footer-contact ul {
    margin: 4.5rem auto 0 auto;
    width: 100%;
  }
  .footer-contact ul li {
    max-width: 280px;
    width: 48%;
    margin-left: 4%;
  }
  .footer-contact ul li:first-child {
    margin: 0;
  }
  .footer-contact ul li a {
    font-size: 1.2rem;
  }
}
@media (max-width: 575px) {
  .footer-contact ul {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .footer-contact ul li {
    width: 100%;
    margin: 0;
  }
  .footer-contact ul li:first-child {
    margin-bottom: 3rem;
  }
}

/*footnav
-----------------------------------------------------*/
.footer-box {
  padding: 6rem 0;
  background: #353535;
}
.footer-box a {
  display: block;
  padding: 0.5rem 0;
  color: #fff;
  text-decoration: none;
}
.footer-link {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.footer-link ul {
  padding: 0 1rem;
  font-size: 1.4rem;
  box-sizing: border-box;
}
.footer-link ul .menu-item-has-children.parent-link-none > a {
  pointer-events: none;
}
.footer-link .sub-menu li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.2rem;
  line-height: 2;
}
.footer-link .sub-menu li::before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 1px;
  left: 0;
  top: 50%;
  margin-top: -1px;
  background: #fff;
}
.footer-link-2 {
  margin-top: 6rem;
  font-size: 1.2rem;
  justify-content: center;
}
@media (max-width: 575px) {
  .footer-link-2 {
    font-size: 1rem;
  }
}
.footer-link-2 li {
  line-height: 1.2;
}
.footer-link-2 li:first-child {
  border-right: solid 1px #fff;
}
.footer-link-2 li a {
  padding: 0.3rem 3rem;
}
@media (max-width: 865px) {
  .footer-link {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .footer-link ul {
    margin-right: 3%;
    margin-bottom: 4rem;
    width: 31.3%;
    font-size: 1.4rem;
    box-sizing: border-box;
  }
  .footer-link ul:nth-child(3n) {
    margin-right: 0;
  }
  .footer-link .sub-menu {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .footer-link ul {
    margin-right: 3%;
    margin-bottom: 4rem;
    width: 48%;
    font-size: 1.2rem;
  }
  .footer-link ul:nth-child(3n) {
    margin-right: 4%;
  }
  .footer-link ul:nth-child(2n) {
    margin-right: 0;
  }
  .footer-link-2 {
    margin-top: 2rem;
  }
  .footer-link-2 li {
    line-height: 1.2;
  }
  .footer-link-2 li a {
    padding: 0.3rem 1.5rem;
  }
}

/*ft-group
-----------------------------------------------------*/
.ft-group {
  padding: 8rem 0 4rem 0;
  border-bottom: solid 1px #eaeaea;
}
.ft-group h2 {
  width: 289px;
}
.ft-group-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.ft-group-list li {
  position: relative;
  margin-right: 3%;
  margin-bottom: 5rem;
  padding: 1.5rem 0;
  width: 31.3%;
  max-width: 380px;
  border-top: solid 1px #cccccc;
  border-bottom: solid 1px #cccccc;
}
.ft-group-list li:nth-child(3n) {
  margin-right: 0;
}
.ft-group-list li::before {
  content: "";
  position: absolute;
  display: block;
  height: 2px;
  width: 155px;
  bottom: 0;
  left: 0;
  background: #0f48b1;
}
.ft-group-list a {
  color: #333;
  text-decoration: none;
}
.ft-group dl {
  display: flex;
  align-items: center;
}
.ft-group dl dt {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  height: 75px;
  max-width: 155px;
  border-right: solid 1px #cccccc;
  box-sizing: border-box;
}
.ft-group dl dd {
  padding: 0 2rem;
  flex: 1;
  width: 100%;
  font-weight: bold;
  line-height: 1.5;
  box-sizing: border-box;
}
.ft-group dl dd span {
  display: block;
  font-weight: normal;
  font-size: 1.2rem;
}
@media (max-width: 980px) {
  .ft-group-list li {
    width: 48%;
    max-width: 100%;
  }
  .ft-group-list li:nth-child(3n) {
    margin-right: 3%;
  }
  .ft-group-list li:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 630px) {
  .ft-group-list li {
    margin-bottom: 2.5rem;
    width: 100%;
    max-width: 100%;
  }
  .ft-group-list li:nth-child(3n) {
    margin-right: 0;
  }
}

.copy {
  padding: 3rem 0;
  font-size: 1.2rem;
  color: #333;
  text-align: center;
}

/*list-type
-----------------------------------------------------*/
.list01 {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem 3%;
}
.list01 li {
  width: 31.3%;
  max-width: 380px;
}
.list01 dl {
  display: flex;
  padding: 2rem 0;
  align-items: center;
}
.list01 dl dt {
  width: 105px;
  border-right: solid 1px #ccc;
}
.list01 dl dd {
  flex: 1;
  padding-left: 1.5rem;
  width: 100%;
  font-weight: bold;
}
.list01-headline {
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 2rem 0 1rem;
}
@media (max-width: 767px) {
  .list01-headline {
    font-size: 1.4rem;
  }
}
.list01 p {
  font-size: 1.4rem;
  margin-top: 0 !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (max-width: 575px) {
  .list01 p {
    font-size: 1.2rem;
  }
}
.list01 p.staff-position {
  font-size: 1.5rem;
  display: block;
  -webkit-line-clamp: none;
  overflow: auto;
}
@media (max-width: 575px) {
  .list01 p.staff-position {
    font-size: 1.2rem;
  }
}
.list01-img {
  width: 100%;
}
.list01-img img {
  aspect-ratio: 3/2;
  object-fit: cover;
}
.list01-tit {
  margin: 2rem 0 2.5rem;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
}
.list01-txt {
  font-size: 1.4rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .list01 {
    gap: 5rem 4%;
  }
  .list01 li {
    width: 48%;
    max-width: 380px;
  }
}
@media (max-width: 575px) {
  .list01 {
    gap: 4rem 4%;
  }
  .list01 dl {
    display: block;
    padding: 1rem 0;
    text-align: center;
  }
  .list01 dl dt {
    width: 120px;
    margin: 0 auto 1rem;
    border-right: none;
  }
  .list01 dl dd {
    padding-left: 0rem;
    font-size: 1.2rem;
  }
  .list01 p {
    font-size: 1.2rem;
  }
}

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

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

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

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

@media (max-width: 575px) {
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    padding: 0 2rem;
  }
}
/* clm-2 */
.clm-2 {
  display: flex;
  align-items: center;
}
.clm-2 .clm-list {
  width: 50%;
}
@media (max-width: 575px) {
  .clm-2 {
    display: block;
  }
  .clm-2 .clm-list {
    width: 100%;
  }
}

/* flex */
.flex {
  display: flex;
  flex-wrap: wrap;
}
.flex.just-c {
  justify-content: center;
}
.flex.justify-space-b {
  justify-content: space-between;
}

/* parts */
.h2-headline01 {
  position: relative;
  margin: 0 auto 9rem auto;
  line-height: 1.2;
  color: #000;
}
@media (max-width: 575px) {
  .h2-headline01 {
    margin: 0 auto 7rem auto;
  }
}
.h2-headline01 .en, .h2-headline01 .video-step__num, .h2-headline01 .r-support__headline:before {
  font-size: 5.5rem;
}
@media (max-width: 800px) {
  .h2-headline01 .en, .h2-headline01 .video-step__num, .h2-headline01 .r-support__headline:before {
    font-size: 4.5rem;
  }
}
.h2-headline01 .ja {
  padding-left: 3rem;
  font-size: 2rem;
}
@media (max-width: 800px) {
  .h2-headline01 .ja {
    padding-left: 2rem;
  }
}
@media (max-width: 575px) {
  .h2-headline01 .ja {
    display: block;
    font-size: 1.8rem;
    padding-left: 0;
    line-height: 2;
  }
}
.h2-headline01 .sub {
  position: absolute;
  left: 65px;
  bottom: -38px;
  font-size: 1.4rem;
  color: #0f48b1;
}
@media (max-width: 575px) {
  .h2-headline01 .sub {
    bottom: -27px;
  }
}
.h2-headline01::before {
  content: "";
  position: absolute;
  display: block;
  height: 3px;
  width: 50px;
  bottom: -30px;
  left: 0;
  background: #0f48b1;
}
@media (max-width: 575px) {
  .h2-headline01::before {
    bottom: -20px;
  }
}

.h2-headline02 {
  padding: 0.5rem 3rem;
  margin-bottom: 5rem;
  border-left: solid 4px #0f48b1;
}
@media (max-width: 575px) {
  .h2-headline02 {
    padding: 0.5rem 2rem;
    margin-bottom: 4rem;
  }
}
.h2-headline02 .ja {
  font-size: 3rem;
  line-height: 1.4;
}
@media (max-width: 575px) {
  .h2-headline02 .ja {
    font-size: 2.4rem;
  }
}
.h2-headline02 .en, .h2-headline02 .video-step__num, .h2-headline02 .r-support__headline:before {
  display: block;
  font-size: 1.4rem;
  font-weight: normal;
  color: #0f48b1;
}
@media (max-width: 575px) {
  .h2-headline02 .en, .h2-headline02 .video-step__num, .h2-headline02 .r-support__headline:before {
    font-size: 1rem;
  }
}

.h3-headline01 {
  position: relative;
  padding-bottom: 2rem;
  font-size: 3rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .h3-headline01 {
    font-size: 2.5rem;
  }
}
@media (max-width: 575px) {
  .h3-headline01 {
    font-size: 2.2rem;
  }
}
.h3-headline01::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 90px;
  width: 30%;
  height: 5px;
  border-top: solid 1px #0f48b1;
  border-bottom: solid 1px #0f48b1;
  z-index: 2;
}
.h3-headline01::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 1100px;
  width: 100%;
  height: 5px;
  border-top: solid 1px #dfdfdf;
  border-bottom: solid 1px #dfdfdf;
  z-index: 1;
}

.page-contents .h2-headline01 .en, .page-contents .h2-headline01 .video-step__num, .page-contents .h2-headline01 .r-support__headline:before {
  text-transform: capitalize;
}

.tab-box {
  width: 100%;
}
.tab-btn {
  display: flex;
  border-bottom: solid 1px #0f48b1;
}
@media (max-width: 610px) {
  .tab-btn {
    width: 100%;
    border-bottom: none;
  }
}
.tab-btn li {
  padding: 1.5rem 0;
  min-width: 280px;
  text-align: center;
  color: #0f48b1;
  font-weight: bold;
  border-left: solid 1px #0f48b1;
  border-top: solid 1px #0f48b1;
  border-right: solid 1px #0f48b1;
  cursor: pointer;
}
@media (max-width: 610px) {
  .tab-btn li {
    padding: 1.5rem 0;
    min-width: 50%;
    border-bottom: solid 1px #0f48b1;
  }
}
.tab-btn li:hover {
  opacity: 1;
  background: #0f48b1;
  color: #fff;
}
.tab-btn .active {
  background: #0f48b1;
  color: #fff;
  transition: all 0.4s ease 0s;
}
.tab-btn.link-valid {
  margin-bottom: 6rem;
}
@media (max-width: 610px) {
  .tab-btn.link-valid {
    margin-bottom: 4rem;
  }
}
.tab-btn.link-valid li {
  padding: 0;
}
.tab-btn.link-valid li a {
  display: block;
  padding: 1.5rem 0;
  text-decoration: none;
  color: #0f48b1;
}
@media (max-width: 610px) {
  .tab-btn.link-valid li a {
    padding: 1.5rem 0;
    min-width: 50%;
  }
}
.tab-btn.link-valid li a:hover {
  opacity: 1;
  background: #0f48b1;
  color: #fff;
}
.tab-btn.link-valid li.active a {
  color: #fff;
  background: #0f48b1;
}
.tab-btn.link-valid li.active a:hover {
  opacity: 1;
  background: #fff;
  color: #0f48b1;
}

.cat-tab {
  position: relative;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media (max-width: 575px) {
  .cat-tab {
    padding-left: 2rem;
  }
}
.cat-tab::-webkit-scrollbar {
  display: none;
}
.cat-tab::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #dfdfdf;
}
@media (max-width: 767px) {
  .cat-tab::before {
    content: none;
  }
}

.cat-list {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
}
.cat-list__item {
  font-size: 1.4rem;
  font-weight: bold;
  position: relative;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .cat-list__item {
    border-bottom: 1px solid #dfdfdf;
  }
}
@media (max-width: 575px) {
  .cat-list__item {
    font-size: 1.2rem;
  }
}
.cat-list__item::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  border-right: 1px solid #dfdfdf;
  height: 1em;
  transform: translateY(-50%);
}
.cat-list__item a {
  display: block;
  color: #333;
  text-decoration: none;
  padding: 2rem 3rem;
}
@media (max-width: 575px) {
  .cat-list__item a {
    padding: 1rem 2rem;
  }
}
.cat-list__item a::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: inline-block;
  width: 0;
  height: 2px;
  background: #0f48b1;
  transition: 0.2s ease;
}
@media (max-width: 767px) {
  .cat-list__item a::before {
    bottom: -1px;
  }
}
.cat-list__item a:hover {
  opacity: 1;
  color: #0f48b1;
}
.cat-list__item a:hover::before {
  width: 100%;
}
.cat-list__item.active a {
  opacity: 1;
  color: #0f48b1;
}
.cat-list__item.active a::before {
  width: 100%;
}

.cat-panel {
  display: none;
}

.cat-panel.active {
  display: block;
}

.info-list {
  display: flex;
}
@media (max-width: 575px) {
  .info-list {
    display: block;
  }
}
.info-list:last-of-type {
  border-bottom: 1px solid #dfdfdf;
}
.info-list dt {
  min-width: 180px;
  font-weight: bold;
  padding: 3rem;
  box-sizing: border-box;
  border-top: 1px solid #0f48b1;
}
@media (max-width: 575px) {
  .info-list dt {
    padding: 2rem 2rem 1rem 2rem;
    border-top: 1px solid #dfdfdf;
  }
}
.info-list dd {
  flex: 1;
  padding: 3rem;
  border-top: 1px solid #dfdfdf;
}
@media (max-width: 575px) {
  .info-list dd {
    border-top: none;
    padding: 0rem 2rem 2rem 2rem;
  }
}
.info-list.list-st01 dt {
  border-top: 1px solid #dfdfdf;
}

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

.outline, .department_recruit:after {
  -webkit-text-stroke-color: #000;
  -webkit-text-stroke-width: 1px;
  color: transparent;
  letter-spacing: 0.2rem;
}

a:hover {
  opacity: 0.6;
}

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

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

.s-tab_panel {
  overflow: hidden;
  height: 0;
  opacity: 0;
}

.s-tab_panel.active {
  overflow: visible;
  height: auto;
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}

.page-sec {
  margin-bottom: 14rem;
}
@media (max-width: 575px) {
  .page-sec {
    margin-bottom: 10rem;
  }
}
.page-sec p + p {
  margin-top: 3rem;
}
@media (max-width: 575px) {
  .page-sec p + p {
    margin-top: 2rem;
  }
}

.post-sec h1 {
  font-size: 3rem;
  line-height: 1.4;
}
@media (max-width: 575px) {
  .post-sec h1 {
    font-size: 2.6rem;
    line-height: 1.6;
  }
}
.post-sec .post-info {
  margin-top: 2rem;
}
.post-sec .post-info__date {
  font-size: 1.4rem;
  color: #999;
}
.post-sec .post-info__cat {
  padding-left: 1.5rem;
  margin-left: 1.5rem;
  border-left: 1px solid #dfdfdf;
  gap: 0 1rem;
}
.post-sec .post-info__cat .label {
  display: flex;
  align-items: center;
}
.post-sec .post-info__cat .label a {
  display: inline-block;
  padding: 0.1rem 1rem;
  font-size: 1.1rem;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: #0f48b1;
}
.post-sec .post-contens {
  margin-top: 5rem;
}
.post-sec .featured-image {
  margin-bottom: 5rem;
}
@media (max-width: 575px) {
  .post-sec .featured-image {
    margin-bottom: 4rem;
  }
}
.post-sec .featured-image + * {
  margin-top: 0;
}
.post-sec h2 {
  position: relative;
  font-size: 2.6rem;
  line-height: 1.4;
  margin: 6rem 0 4rem;
  padding-bottom: 1.2rem;
  border-bottom: 3px solid #dfdfdf;
}
@media (max-width: 575px) {
  .post-sec h2 {
    font-size: 2.2rem;
    line-height: 1.6;
    margin: 5rem 0 3rem;
  }
}
.post-sec h2::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -3px;
  width: 10%;
  border-bottom: 3px solid #0f48b1;
}
.post-sec h3 {
  font-size: 2.4rem;
  line-height: 1.6;
  margin: 5rem 0 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #dfdfdf;
}
@media (max-width: 575px) {
  .post-sec h3 {
    font-size: 2rem;
    margin: 4rem 0 3rem;
  }
}
.post-sec h4 {
  font-size: 2rem;
  line-height: 1.6;
  color: #0f48b1;
  margin: 4rem 0 3rem;
}
@media (max-width: 575px) {
  .post-sec h4 {
    font-size: 1.8rem;
    margin: 3rem 0 2rem;
  }
}
.post-sec h5 {
  font-size: 1.8rem;
  line-height: 1.6;
  margin: 3rem 0;
}
@media (max-width: 575px) {
  .post-sec h5 {
    font-size: 1.6rem;
    margin: 3rem 0 2rem;
  }
}
.post-sec ul {
  list-style: disc;
  padding-left: 1.5em;
}

/*achievements
-----------------------------------------------------*/
.achievements-sec {
  position: relative;
  margin-bottom: 0;
  padding: 10rem 0;
  background: linear-gradient(90deg, #fff 0%, #fff 50%, #f3f3f3 50%, #f3f3f3 100%);
}
@media (max-width: 575px) {
  .achievements-sec {
    padding: 6rem 0;
  }
}
.achievements-sec:nth-child(odd) {
  background: linear-gradient(90deg, #F8F8F8 0%, #F8F8F8 50%, #fff 50%, #fff 100%);
}
.achievements-sec .achievements-box {
  max-width: 960px;
  padding: 6rem;
  margin: 0 auto;
  box-sizing: border-box;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 0 8%;
}
@media (max-width: 575px) {
  .achievements-sec .achievements-box {
    padding: 3rem;
    display: block;
    gap: 0;
  }
}
.achievements-sec .achievements-box__item {
  width: 46%;
}
@media (max-width: 575px) {
  .achievements-sec .achievements-box__item {
    width: 100%;
  }
}
.achievements-sec .achievements-box .achievements-name {
  font-size: 1.8rem;
  font-weight: bold;
  color: #0f48b1;
  margin: 4rem 0 1rem;
}
@media (max-width: 575px) {
  .achievements-sec .achievements-box .achievements-name {
    font-size: 1.6rem;
    margin: 3rem 0 1rem;
  }
}
.achievements-sec .achievements-box .achievements-name:first-of-type {
  margin-top: 0;
}
@media (max-width: 575px) {
  .achievements-sec .achievements-box .achievements-name:first-of-type {
    margin: 3rem 0 1rem;
  }
}
@media (max-width: 575px) {
  .achievements-sec .achievements-box .left-box .achievements-name:first-of-type {
    margin-top: 0;
  }
}
.achievements-sec .achievements-list__item:nth-of-type(n+2) {
  margin-top: 0.5rem;
}

/*company
-----------------------------------------------------*/
.company-header {
  display: flex;
  justify-content: space-between;
  background: url(../images/company/company_header_bg.png) no-repeat left 77px/637px auto;
}
@media (max-width: 1023px) {
  .company-header {
    display: block;
    background: url(../images/company/company_header_bg.png) no-repeat right top/637px auto;
  }
}
@media (max-width: 767px) {
  .company-header {
    background: url(../images/company/company_header_bg.png) no-repeat left 20%/100% auto;
  }
}
.company-header__headline {
  width: 40.4166666667%;
}
@media (max-width: 1023px) {
  .company-header__headline {
    width: 100%;
  }
}
.company-header__headline .en-text {
  font-size: min(4.2vw, 5.5rem);
  font-weight: bold;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  background: #000;
  padding: 0.1rem 1rem 0.5rem;
  line-height: 1;
}
@media (max-width: 1023px) {
  .company-header__headline .en-text {
    font-size: 4.5rem;
  }
}
@media (max-width: 767px) {
  .company-header__headline .en-text {
    font-size: clamp(3.5rem, 8vw, 4.5rem);
  }
}
.company-header__headline .en-text:nth-of-type(n+2) {
  margin-top: 0.5rem;
}
.company-header__headline .ja {
  margin-top: 2rem;
  font-size: 2rem;
}
@media (max-width: 575px) {
  .company-header__headline .ja {
    font-size: 1.7rem;
  }
}
.company-header__text {
  width: 50%;
  font-size: 1.8rem;
  padding: 6rem 0 17rem;
}
@media (max-width: 1023px) {
  .company-header__text {
    width: 100%;
    padding: 6rem 0 0;
  }
}
@media (max-width: 575px) {
  .company-header__text {
    font-size: 1.6rem;
    padding: 5rem 0 0;
  }
}
.company-header__text p + p {
  margin-top: 3rem;
}
@media (max-width: 575px) {
  .company-header__text p + p {
    margin-top: 2rem;
  }
}

/*business
-----------------------------------------------------*/
.business-list {
  border-bottom: 1px solid #dfdfdf;
  counter-reset: number 0;
}
.business-list__item {
  position: relative;
  border-top: 1px solid #dfdfdf;
}
.business-list__item::before {
  position: absolute;
  content: "";
  top: -1px;
  left: 0;
  width: 105px;
  border-top: 1px solid #0f48b1;
}
@media (max-width: 575px) {
  .business-list__item::before {
    width: 65px;
  }
}
.business-list__item::after {
  position: absolute;
  counter-increment: number 1;
  content: "0" counter(number) ".";
  top: 5rem;
  left: 5rem;
  font-size: clamp(2.8rem, 4.557vw, 4rem);
  line-height: 1.2;
  font-weight: bold;
  color: #DEEAFF;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 575px) {
  .business-list__item::after {
    top: 2.9rem;
    left: 2rem;
  }
}
.business-list__item a {
  position: relative;
  display: block;
  padding: 5rem 13rem 5rem 14rem;
  text-decoration: none;
  color: #333;
}
@media (max-width: 575px) {
  .business-list__item a {
    padding: 7rem 5rem 3rem 2rem;
  }
}
.business-list__item a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 4rem;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
  border: 1px solid #DEEAFF;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .business-list__item a::before {
    width: 30px;
    height: 30px;
    right: 0;
  }
}
.business-list__item a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(4rem + 24px);
  width: 6px;
  height: 6px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #0f48b1;
  border-right: 1px solid #0f48b1;
}
@media (max-width: 767px) {
  .business-list__item a::after {
    width: 3px;
    height: 3px;
    right: 15px;
  }
}
.business-list__item a:hover {
  opacity: 1;
  background: #f3f3f3;
}
.business-list__item a .ja {
  font-size: clamp(2.2rem, 3.906vw, 3.4rem);
  line-height: 1.4;
  font-weight: bold;
}
.business-list__item a .en, .business-list__item a .video-step__num, .business-list__item a .r-support__headline:before {
  display: block;
  font-size: clamp(1.2rem, 1.823vw, 1.6rem);
  line-height: 1.4;
  color: #0f48b1;
  margin-top: 1rem;
}

/*footer
-----------------------------------------------------*/
/* btn */
.btn {
  margin-top: 1rem;
}
.btn a {
  padding: 0.5rem 1.5rem;
  font-size: 1.2rem;
  text-align: center;
  color: #333;
  text-decoration: none;
  border-bottom: solid 1px #333;
}

.btn-2 {
  margin-top: 6rem;
}
.btn-2 a {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 2rem;
  font-weight: bold;
  text-align: center;
  color: #333;
  border: 1px solid #333;
  text-decoration: none;
}
.btn-2 a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 6px;
  height: 6px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #333;
  border-right: 1px solid #333;
}
@media (max-width: 575px) {
  .btn-2 {
    margin-top: 4rem;
  }
}

.btn-3 a {
  position: relative;
  display: block;
  padding: 2rem;
  font-weight: bold;
  text-align: center;
  color: #0f48b1;
  background: #fff;
  text-decoration: none;
}
.btn-3 a:hover {
  opacity: 1;
}
.btn-3 a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 6px;
  height: 6px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #0f48b1;
  border-right: 1px solid #0f48b1;
}
@media (max-width: 575px) {
  .btn-3 a::after {
    right: 1.5rem;
  }
}

.btn-4 a {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  padding: 2rem 3.5rem 2rem 2rem;
  min-width: 400px;
  font-weight: bold;
  text-align: center;
  color: #0f48b1;
  border: 1px solid #0f48b1;
  text-decoration: none;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .btn-4 a {
    min-width: 300px;
  }
}
.btn-4 a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 6px;
  height: 6px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #0f48b1;
  border-right: 1px solid #0f48b1;
}

.btn-5, .module-form input[type=submit] {
  display: inline-block;
  width: 280px;
  background: #BF2626;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Helvetica Neue", Arial, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  text-align: center;
  color: #fff;
  -moz-transition: 0.3s linear;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  transform: translatez(0);
  -webkit-transform: translatez(0);
  cursor: pointer;
  padding: 2rem;
  border: none;
  text-decoration: none;
  box-sizing: border-box;
}
@media (max-width: 575px) {
  .btn-5, .module-form input[type=submit] {
    padding: 15px;
  }
}
.btn-5:hover, .module-form input[type=submit]:hover {
  background: #f35f5f;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
  opacity: 1;
}
@media (max-width: 575px) {
  .btn-5:hover, .module-form input[type=submit]:hover {
    background: #e51717;
    box-shadow: none;
  }
}

.top-btn {
  position: fixed;
  width: 50px;
  height: 50px;
  background: #000;
  bottom: 15px;
  right: 20px;
  transition-delay: 0s;
  opacity: 1;
  visibility: visible;
  cursor: pointer;
}
@media (max-width: 575px) {
  .top-btn {
    position: relative;
    width: 100%;
    bottom: auto;
    right: auto;
  }
}
.top-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 3px;
  margin-left: -4px;
  width: 8px;
  height: 8px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}

/*common
-----------------------------------------------------*/
.common-sec {
  margin-top: 8rem;
  margin-bottom: 8rem;
}
@media (max-width: 575px) {
  .common-sec {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}

.outline-blue, .r-support__headline:before {
  -webkit-text-stroke-color: #0f48b1;
  -webkit-text-stroke-width: 1px;
  color: transparent;
  opacity: 0.2;
}

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

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

/*module-card
-----------------------------------------------------*/
.module-card01 {
  position: relative;
}
.module-card01 a {
  text-decoration: none;
  color: #333;
}
.module-card01__btn {
  position: relative;
  padding: 1rem 0;
}
.module-card01__btn:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 1rem;
  height: 1rem;
  border-right: 1px solid #0f48b1;
  border-bottom: 1px solid #0f48b1;
  transform: rotate(-45deg);
}
.module-card01 .en, .module-card01 .video-step__num, .module-card01 .r-support__headline:before {
  font-size: 1.2rem;
}
@media (max-width: 1023px) {
  .module-card01 .en, .module-card01 .video-step__num, .module-card01 .r-support__headline:before {
    font-size: 1rem;
  }
}
.module-card01__headline {
  font-size: 2.4rem;
  line-height: 1.4;
  color: #333;
}
@media (max-width: 1023px) {
  .module-card01__headline {
    font-size: 1.8rem;
  }
}

.module-card01--col2 a {
  width: 47%;
}
@media (max-width: 575px) {
  .module-card01--col2 a {
    width: 100%;
  }
}
.module-card01--col2 .module-card01__inner {
  gap: 5rem 6%;
}
@media (max-width: 767px) {
  .module-card01--col2 .module-card01__inner {
    gap: 20px 3.5%;
  }
}
@media (max-width: 575px) {
  .module-card01--col2 .module-card01__inner {
    max-width: 350px;
  }
}

.module-card01--col3 a {
  width: 31%;
}
@media (max-width: 767px) {
  .module-card01--col3 a {
    width: 100%;
  }
}
.module-card01--col3 .module-card01__inner {
  gap: 5rem 3.5%;
}
@media (max-width: 767px) {
  .module-card01--col3 .module-card01__inner {
    gap: 20px 3.5%;
    max-width: 350px;
  }
}

/*module-media
-----------------------------------------------------*/
.module-media01 {
  gap: 30px 5%;
}
.module-media01__txt {
  width: 45%;
}
@media (max-width: 1023px) {
  .module-media01__txt {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .module-media01__txt {
    width: 100%;
  }
}
.module-media01__txt p:not(:last-child) {
  margin-bottom: 3rem;
}
.module-media01__img {
  width: 50%;
}
@media (max-width: 1023px) {
  .module-media01__img {
    width: 35%;
  }
}
@media (max-width: 767px) {
  .module-media01__img {
    width: 100%;
  }
}

/*module-table
-----------------------------------------------------*/
.module-table01 {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
}
.module-table01 th {
  background: #F2F5F7;
  text-align: left;
  width: 20rem;
}
.module-table01 th, .module-table01 td {
  display: table-cell;
  padding: 2rem;
  box-sizing: border-box;
  border: 1px solid #cccccc;
}
@media (max-width: 767px) {
  .module-table01 th, .module-table01 td {
    display: block;
    padding: 1rem;
    width: 100%;
    border-bottom: none;
  }
}
.module-table01 tr:last-child td {
  border-bottom: 1px solid #cccccc;
}

/*module-headline
-----------------------------------------------------*/
.module-headline01 {
  text-align: center;
}
.module-headline01__jp {
  font-size: 3rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .module-headline01__jp {
    font-size: 2.2rem;
  }
}
.module-headline01__en {
  font-size: 1.4rem;
  color: #0f48b1;
}
@media (max-width: 767px) {
  .module-headline01__en {
    font-size: 1rem;
  }
}

.module-headline02 {
  color: #0f48b1;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .module-headline02 {
    font-size: 1.6rem;
  }
}

.module-headline03 {
  color: #0f48b1;
  border-bottom: 2px solid #0f48b1;
  width: fit-content;
}

/*module-frame
-----------------------------------------------------*/
.module-frame01 {
  padding: 5rem 5rem;
  background: #F2F5F7;
}
@media (max-width: 767px) {
  .module-frame01 {
    padding: 2rem;
  }
}

.module-frame02 {
  border: 2px solid #0f48b1;
  padding: 5rem 5rem;
}
@media (max-width: 767px) {
  .module-frame02 {
    padding: 2rem;
  }
}

/*module-list
-----------------------------------------------------*/
.module-list01 li {
  text-indent: -1.5rem;
  padding-left: 1rem;
}
.module-list01 li:not(:last-child) {
  margin-bottom: 0.8rem;
}
.module-list01 li:before {
  content: "・";
}

.module-list02 li {
  font-size: 2rem;
  line-height: 1.5;
  color: #0f48b1;
  text-indent: -1.5rem;
  padding-left: 1rem;
  list-style-type: disc;
  list-style-position: inside;
}
@media (max-width: 767px) {
  .module-list02 li {
    font-size: 1.5rem;
  }
}
.module-list02 li:not(:last-child) {
  margin-bottom: 0.8rem;
}

/*module-form
-----------------------------------------------------*/
.module-form input[type=text], .module-form textarea {
  border: none;
  background: #f3f3f3;
  padding: 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  font-size: 1.6rem;
}
.module-form input[type=text] {
  width: 48%;
}
@media (max-width: 767px) {
  .module-form input[type=text] {
    width: 100%;
    box-sizing: border-box;
  }
}
.module-form input[type=radio] {
  margin-right: 5px;
}
.module-form textarea {
  width: 100%;
  height: 180px;
  box-sizing: border-box;
}
.module-form select {
  padding: 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 1.2rem;
}
.module-form dl {
  display: flex;
  border-bottom: 1px solid #dfdfdf;
  padding: 20px;
}
@media (max-width: 767px) {
  .module-form dl {
    display: block;
    border-bottom: 1px solid #ccc;
    padding: 1.5rem 0;
  }
}
.module-form dt {
  position: relative;
  width: 400px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .module-form dt {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
.module-form dd {
  flex-wrap: nowrap;
  column-gap: 4%;
  width: 100%;
}
.module-form li + li {
  margin-top: 10px;
}
.module-form input.w-100 {
  width: 100%;
}
.module-form .required {
  position: absolute;
  top: 0.2rem;
  right: 2rem;
  background: #BF2626;
  color: #fff;
  padding: 0 5px;
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .module-form .required {
    position: static;
    font-size: 1rem;
    vertical-align: middle;
    margin-left: 1rem;
    padding: 2px 5px;
  }
}
.module-form .submit-box {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .module-form .submit-box {
    margin-top: 2rem;
  }
}
.module-form ::placeholder {
  color: #999;
}
.module-form .infusion-option {
  margin-left: 2rem;
}

/*recruit
-----------------------------------------------------*/
.r-hero {
  position: relative;
  z-index: 3;
}
.r-hero__txt {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .r-hero__txt {
    position: static;
    transform: translateY(0);
  }
}
@media (max-width: 1599px) {
  .r-hero__txt img {
    width: 34vw;
  }
}
@media (max-width: 767px) {
  .r-hero__txt img {
    width: 60%;
  }
}
.r-hero__img {
  margin-left: 35rem;
}
@media (max-width: 1599px) {
  .r-hero__img {
    margin-left: 27vw;
  }
}
@media (max-width: 767px) {
  .r-hero__img {
    margin-left: 0;
  }
}

.r-message {
  position: relative;
  padding: 10rem 0;
}
@media (max-width: 767px) {
  .r-message {
    padding: 5rem 0;
  }
}
.r-message__wrap {
  transform: translateY(-3.7%);
}
@media (max-width: 767px) {
  .r-message__wrap {
    transform: translateY(-3.3%);
  }
}
.r-message.first {
  padding-top: 22rem;
}
@media (max-width: 767px) {
  .r-message.first {
    padding-top: 16rem;
  }
}
.r-message:before {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 50%;
  bottom: 0;
  background: #f3f3f3;
  z-index: -2;
}
.r-message:nth-child(odd):before {
  left: 0;
}
.r-message:nth-child(even):before {
  right: 0;
}
.r-message__num {
  color: #0f48b1;
  font-size: 1.4rem;
  position: relative;
}
.r-message__num span {
  position: absolute;
  top: -4rem;
  left: 12rem;
  font-size: 10rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .r-message__num span {
    top: -2rem;
    right: 0;
    left: auto;
    font-size: 8rem;
  }
}
.r-message__headline {
  font-size: 2.8rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .r-message__headline {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}

.r-support__headline {
  position: relative;
}
.r-support__headline:before {
  content: "SUPPORT MOM’S CAREER";
  position: absolute;
  top: -2.5rem;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  font-size: 8rem;
  line-height: 1;
}
@media (max-width: 1023px) {
  .r-support__headline:before {
    font-size: 6rem;
  }
}
@media (max-width: 767px) {
  .r-support__headline:before {
    font-size: 4rem;
  }
}
.r-support .youtube {
  max-width: 720px;
}

.recruit .module-card01 {
  position: relative;
  padding: 10rem 0 0;
}
@media (max-width: 1199px) {
  .recruit .module-card01 {
    padding: 10rem 0 0;
  }
}
@media (max-width: 767px) {
  .recruit .module-card01 {
    padding: 5rem 0 0;
  }
}
.recruit .module-card01:before {
  content: "";
  position: absolute;
  top: 0;
  z-index: -1;
  display: block;
  background: #F2F5F7;
  width: 100%;
  height: 220px;
}
@media (max-width: 767px) {
  .recruit .module-card01:before {
    height: 30vw;
  }
}

/*department
-----------------------------------------------------*/
.department-box {
  padding: 10rem 0;
  border-bottom: 1px solid #DFDFDF;
}
@media (max-width: 767px) {
  .department-box {
    padding: 5rem 0 6rem;
  }
}
.department-box__inner {
  gap: 30px 5%;
}
.department-box__txt {
  width: 45%;
}
@media (max-width: 1023px) {
  .department-box__txt {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .department-box__txt {
    width: 100%;
  }
}
.department-box__txt p:not(:last-child) {
  margin-bottom: 3rem;
}
.department-box__img {
  width: 50%;
}
@media (max-width: 1023px) {
  .department-box__img {
    width: 35%;
  }
}
@media (max-width: 767px) {
  .department-box__img {
    width: 100%;
  }
}

.department_recruit {
  position: relative;
  margin: 10rem 0;
}
@media (max-width: 767px) {
  .department_recruit {
    margin: 4rem 0;
  }
}
.department_recruit:after {
  content: "RECRUIT";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4rem;
  margin: auto;
  font-size: 10rem;
  line-height: 1;
  text-align: center;
  -webkit-text-stroke-color: #0f48b1;
}
@media (max-width: 767px) {
  .department_recruit:after {
    bottom: -3rem;
    font-size: 5rem;
  }
}

.department_btn {
  margin: 10rem 0 0;
}
@media (max-width: 767px) {
  .department_btn {
    margin: 4rem 0 0;
  }
}
.department_btn__list {
  gap: 4rem 3.5%;
}
@media (max-width: 1023px) {
  .department_btn__list {
    gap: 1.5rem 2%;
  }
}
@media (max-width: 767px) {
  .department_btn__list {
    gap: 1.5rem 4%;
  }
}
.department_btn__list li {
  width: 31%;
}
@media (max-width: 1023px) {
  .department_btn__list li {
    width: 46.5%;
  }
}
@media (max-width: 767px) {
  .department_btn__list li {
    width: 48%;
  }
}
@media (max-width: 575px) {
  .department_btn__list li {
    width: 100%;
  }
}
.department_btn__list li a {
  max-width: auto;
  width: 100%;
  min-width: auto;
}

/*job-description
-----------------------------------------------------*/
.job-message {
  position: relative;
  height: 260px;
  margin-bottom: 20rem;
}
@media (max-width: 1023px) {
  .job-message {
    height: auto;
    margin-bottom: 8rem;
    padding-bottom: 5rem;
  }
}
@media (max-width: 575px) {
  .job-message {
    margin-bottom: 4rem;
  }
}
.job-message:before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  z-index: -1;
  background: #F3F3F3;
  width: 100%;
  height: 161px;
}
@media (max-width: 1023px) {
  .job-message:before {
    width: 32%;
    height: 74%;
  }
}
.job-message__inner {
  position: relative;
}
.job-message__inner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: block;
  background: url(../images/job-description/job_message_txt01.svg) left center no-repeat;
  background-size: 667px 210px;
  width: 667px;
  height: 210px;
}
@media (max-width: 1023px) {
  .job-message__inner:before {
    position: static;
  }
}
@media (max-width: 767px) {
  .job-message__inner:before {
    width: auto;
    height: 30vw;
    background-size: contain;
  }
}
.job-message__txt {
  position: absolute;
  right: 0;
  top: 17rem;
  background: #fff;
  padding: 6rem;
  font-size: 2rem;
}
@media (max-width: 1023px) {
  .job-message__txt {
    position: static;
    padding: 0;
    background: transparent;
    margin-top: 4rem;
    font-size: 1.75rem;
  }
}
@media (max-width: 575px) {
  .job-message__txt {
    margin-top: 2rem;
    font-size: 3.1vw;
  }
}

/*job-description detail
-----------------------------------------------------*/
.job-flow ol {
  counter-reset: my-counter;
  list-style: none;
  margin-bottom: 2rem;
  padding-left: 0;
}
.job-flow ol li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .job-flow ol li {
    font-size: 1.5rem;
  }
}
.job-flow ol li:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: #0f48b1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.8rem;
  height: 3.8rem;
  font-size: 2.4rem;
  color: #fff;
  line-height: 1;
  border-radius: 50%;
  margin: 0 2rem 0 1rem;
}
@media (max-width: 767px) {
  .job-flow ol li:before {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    margin: 0 1rem 0 0.5rem;
  }
}
.job-flow ol li:not(:last-child):after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border-right: 2px solid #0f48b1;
  border-bottom: 2px solid #0f48b1;
  transform: rotate(-45deg);
  margin: 0 2rem;
}
@media (max-width: 767px) {
  .job-flow ol li:not(:last-child):after {
    width: 1rem;
    height: 1rem;
    margin: 0 1rem;
  }
}
.job-flow ul {
  max-width: 400px;
  gap: 0.3rem 2rem;
  margin-top: 0.5rem;
}
.job-flow ul li {
  text-align: center;
}

/*web
-----------------------------------------------------*/
.web .module-card01 {
  margin: 8rem 0 0;
}
@media (max-width: 767px) {
  .web .module-card01 {
    margin: 4rem 0 0;
  }
}
.web .module-card01__inner {
  gap: 6rem 3.5%;
}
@media (max-width: 1599px) {
  .web .module-card01__inner {
    gap: 4rem 3.5%;
  }
}
.web .module-card01__headline {
  font-size: 1.6rem;
  margin-top: 1.5rem;
}
@media (max-width: 1199px) {
  .web .module-card01__headline {
    font-size: 1.3rem;
  }
}
.web .module-card01__img {
  width: 100%;
}
.web .module-card01__img.aspect__3-2 img {
  aspect-ratio: 3/2;
  object-fit: cover;
}
.web .module-card01__img.aspect__4-3 img {
  aspect-ratio: 4/3;
  object-fit: cover;
}

.tax-web-cat .module-card01__headline,
.post-type-archive-web-works .module-card01__headline {
  font-size: 1.6rem;
  margin-top: 1.5rem;
}
@media (max-width: 1199px) {
  .tax-web-cat .module-card01__headline,
  .post-type-archive-web-works .module-card01__headline {
    font-size: 1.3rem;
  }
}

/*video
-----------------------------------------------------*/
.video-step {
  gap: 3rem 6.5%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 3.5rem;
}
.video-step__box {
  width: 29%;
}
@media (max-width: 1023px) {
  .video-step__box {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .video-step__headwrap {
    border-bottom: 2px solid #0f48b1;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }
}
.video-step__num {
  position: relative;
  color: #0f48b1;
  text-align: center;
}
@media (max-width: 1023px) {
  .video-step__num {
    margin-right: 1.5rem;
    padding-right: 1.5rem;
  }
  .video-step__num:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
    width: 1px;
    height: 3rem;
    background: #0f48b1;
  }
}
.video-step__num span {
  display: block;
}
.video-step__num span:nth-of-type(1) {
  font-size: 1.3rem;
}
@media (max-width: 1023px) {
  .video-step__num span:nth-of-type(1) {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.video-step__num span:nth-of-type(2) {
  font-size: 3.5rem;
  line-height: 0.8;
}
@media (max-width: 1023px) {
  .video-step__num span:nth-of-type(2) {
    font-size: 2rem;
  }
}
.video-step__headline {
  color: #0f48b1;
  text-align: center;
  font-size: 2rem;
  border-bottom: 2px solid #0f48b1;
  margin: 1.5rem 0 2rem;
  padding-bottom: 1.5rem;
}
@media (max-width: 1023px) {
  .video-step__headline {
    border-bottom: none;
    margin: 0;
    padding-bottom: 0;
  }
}

.video-case {
  position: relative;
  padding: 6rem;
  box-sizing: border-box;
}
@media (max-width: 1199px) {
  .video-case {
    padding: 6vw;
  }
}
.video-case:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 200px;
  background: #F2F5F7;
}
@media (max-width: 575px) {
  .video-case:before {
    height: 150px;
  }
}
.video-case__box {
  max-width: 840px;
}
.video-case__img {
  margin-bottom: 2rem;
  text-align: center;
}
.video-case__headline {
  font-size: 2.2rem;
}
@media (max-width: 1023px) {
  .video-case__headline {
    font-size: 1.6rem;
  }
}
.video-case__link {
  gap: 1rem 2rem;
}
.video-case__link a {
  color: #0f48b1;
  text-decoration: none;
  display: flex;
  align-items: center;
}
@media (max-width: 1023px) {
  .video-case__link a {
    font-size: 1.2rem;
  }
}
.video-case__link a:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #0f48b1;
  border-bottom: 1px solid #0f48b1;
  transform: rotate(-45deg);
  margin-right: 0.6rem;
}

/*nursery
-----------------------------------------------------*/
.nursery-coverage__box:not(:last-child) {
  margin-bottom: 4rem;
}
.nursery-coverage__img {
  margin-bottom: 1rem;
}

.nursery-flow__inner {
  position: relative;
  max-width: 800px;
  padding: 4rem;
  border-radius: 15px;
  box-sizing: border-box;
}
@media (max-width: 575px) {
  .nursery-flow__inner {
    padding: 2rem;
  }
}
.nursery-flow__inner:not(:last-child) {
  margin-bottom: 6rem;
}
.nursery-flow__inner--bg-gray {
  background: #ebebeb;
}
.nursery-flow__inner--bg-blue {
  background: #DEEAFF;
}
.nursery-flow__inner--arrow-gray:after, .nursery-flow__inner--arrow-blue:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4.5rem;
  display: block;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 50px solid transparent;
  border-left: 50px solid transparent;
  border-bottom: 0;
}
.nursery-flow__inner--arrow-gray {
  background: #ebebeb;
}
.nursery-flow__inner--arrow-gray:after {
  border-top: 30px solid #ebebeb;
}
.nursery-flow__inner--arrow-blue {
  background: #DEEAFF;
}
.nursery-flow__inner--arrow-blue:after {
  border-top: 30px solid #DEEAFF;
}
.nursery-flow__inner dt {
  width: 17rem;
  margin: 0.5rem 0;
}
@media (max-width: 575px) {
  .nursery-flow__inner dt {
    width: 100%;
    margin: 0;
    padding-top: 1.5rem;
  }
}
.nursery-flow__inner dt:after {
  content: "‥‥‥";
  margin-left: 0.5rem;
}
.nursery-flow__inner dd {
  width: calc(100% - 17rem);
  margin: 0.5rem 0;
}
@media (max-width: 575px) {
  .nursery-flow__inner dd {
    width: 100%;
    margin: 0;
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 575px) {
  .nursery-flow__inner dd:not(:last-child) {
    border-bottom: 1px solid #cccccc;
  }
}

.nursery-contact__btn {
  gap: 2rem 3rem;
}
.nursery-contact .btn-2 {
  width: 370px;
  margin-top: 0;
}
@media (max-width: 575px) {
  .nursery-contact .btn-2 {
    width: 300px;
  }
}

/*system
-----------------------------------------------------*/
.system .module-card01 {
  margin: 8rem 0 0;
}
@media (max-width: 767px) {
  .system .module-card01 {
    margin: 4rem 0 0;
  }
}
.system .module-card01__inner {
  gap: 8rem 6%;
}
@media (max-width: 767px) {
  .system .module-card01__inner {
    gap: 6rem 6%;
  }
}
.system .module-card01__headline {
  font-size: 2.4rem;
  margin-top: 2.3rem;
}
@media (max-width: 1199px) {
  .system .module-card01__headline {
    font-size: 1.8rem;
    margin-top: 1.5rem;
  }
}
@media (max-width: 1023px) {
  .system .module-card01__headline {
    font-size: 1.5rem;
  }
}
.system .module-card01__img img {
  display: block;
  height: 373px;
  object-fit: contain;
}
@media (max-width: 1199px) {
  .system .module-card01__img img {
    height: 28vw;
  }
}
@media (max-width: 575px) {
  .system .module-card01__img img {
    height: 240px;
  }
}
@media (max-width: 400px) {
  .system .module-card01__img img {
    height: 60vw;
  }
}
@media (max-width: 1199px) {
  .system .module-card01__txt {
    font-size: 1.4rem;
  }
}
.system .page-sec .module-card01 p + p {
  margin-top: 1rem;
}

.tax-system-cat .module-card01__headline,
.post-type-archive-system-works .module-card01__headline {
  font-size: 2.4rem;
  margin-top: 2.3rem;
}
@media (max-width: 1199px) {
  .tax-system-cat .module-card01__headline,
  .post-type-archive-system-works .module-card01__headline {
    font-size: 1.8rem;
    margin-top: 1.5rem;
  }
}
@media (max-width: 1023px) {
  .tax-system-cat .module-card01__headline,
  .post-type-archive-system-works .module-card01__headline {
    font-size: 1.5rem;
  }
}

/*community
-----------------------------------------------------*/
.community-img {
  max-width: 250px;
}
@media (max-width: 575px) {
  .community-img {
    margin: 0 auto;
    width: 100%;
  }
}

/*messeage
-----------------------------------------------------*/
.message-sec {
  position: relative;
  margin: 0;
  padding-bottom: 15rem;
}
.message-sec::before, .message-sec::after {
  position: absolute;
  content: "";
  z-index: -1;
  background: #F2F5F7;
}
.message-sec::before {
  top: 110px;
  left: 0;
  width: 38.1944444444%;
  height: 100%;
}
.message-sec::after {
  bottom: 0;
  width: 100%;
  height: 35%;
}

.message-box {
  gap: 0 5.5%;
  margin-bottom: 15rem;
}
@media (max-width: 767px) {
  .message-box {
    display: block;
  }
}
.message-box__en {
  width: 25.9259259259%;
  writing-mode: vertical-lr;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: clamp(4rem, 6.25vw, 8rem);
  line-height: 1;
  font-weight: bold;
  color: #000;
}
@media (max-width: 767px) {
  .message-box__en {
    font-size: 6rem;
  }
}
@media (max-width: 575px) {
  .message-box__en {
    font-size: clamp(4rem, 6.25vw, 8rem);
  }
}
.message-box__img {
  width: 45%;
}
@media (max-width: 767px) {
  .message-box__img {
    width: 80%;
    margin: 0 auto 5rem;
  }
}
@media (max-width: 575px) {
  .message-box__img {
    width: 90%;
    margin: 0 auto 4rem;
  }
}
.message-box__img .staff-in {
  margin-bottom: 3rem;
  width: 74.0740740741%;
}
.message-box__img .staff-in .staff-name {
  left: -26%;
  bottom: 0;
}
.message-box__img .staff-in .staff-name__jp {
  font-size: clamp(1.6rem, 4vw, 3rem);
}
@media (max-width: 767px) {
  .message-box__img .staff-in .staff-name__jp {
    font-size: 3rem;
  }
}
@media (max-width: 575px) {
  .message-box__img .staff-in .staff-name__jp {
    font-size: clamp(1.8rem, 4vw, 3rem);
  }
}
.message-box__img .staff-in .staff-name__en {
  font-size: clamp(1rem, 2.5vw, 2rem);
}
@media (max-width: 767px) {
  .message-box__img .staff-in .staff-name__en {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .message-box__img .staff-in .staff-name__en {
    font-size: clamp(1rem, 2.5vw, 2rem);
  }
}
.message-box__social {
  width: 100%;
  gap: 0 20px;
}
.message-box__social li {
  width: 30px;
}
.message-box__social li a {
  display: flex;
}
.message-box__text {
  flex: 1;
}
.message-box__text p:first-of-type {
  margin-top: 0;
}

.prof-box {
  background: #fff;
  padding: 8rem;
}
@media (max-width: 575px) {
  .prof-box {
    padding: 3rem;
  }
}
.prof-box__headline {
  font-size: 4.5rem;
  line-height: 1.2;
  margin-top: -11rem;
  margin-bottom: 4rem;
}
@media (max-width: 575px) {
  .prof-box__headline {
    font-size: 3rem;
    margin-top: -5rem;
    margin-bottom: 3rem;
  }
}/*# sourceMappingURL=style.css.map */