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

img {
  vertical-align: top;
}

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

body {
  line-height: 1;
}

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

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

del {
  text-decoration: line-through;
}

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

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

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

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

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

/* link
-----------------------------------------------------*/
a {
  color: #1161A5;
}
a:hover, a:active, a:focus {
  color: rgb(96.3461538462, 173.2692307692, 238.6538461538);
}
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 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@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;
  }
}
@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;
  }
}
@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;
  }
}
@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;
  }
}
.lh-1 {
  line-height: 1.1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

ol {
  padding-left: 1em;
}

.float-l {
  float: left;
}

.float-r {
  float: right;
}

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

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

.gothic {
  font: 1.6rem/1.8 "Noto Sans JP", sans-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: #1161A5 !important;
}

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

.color-caution {
  color: red !important;
}

.bold {
  font-weight: bold !important;
}

.normal {
  font-weight: normal !important;
}

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

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

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

.pos-r {
  position: relative;
}

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

.bg-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 !important;
  }
}
@media (max-width: 1023px) {
  .none-lg {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .none-md {
    display: none !important;
  }
}
@media (max-width: 575px) {
  .none-sm {
    display: none !important;
  }
}

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

/* 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-90 {
  margin-top: 9rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@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-90-xl {
    margin-top: 9rem !important;
  }
  .pt-90-xl {
    padding-top: 9rem !important;
  }
  .mb-90-xl {
    margin-bottom: 9rem !important;
  }
  .pb-90-xl {
    padding-bottom: 9rem !important;
  }
  .ml-90-xl {
    margin-left: 9rem !important;
  }
  .pl-90-xl {
    padding-left: 9rem !important;
  }
  .mr-90-xl {
    margin-right: 9rem !important;
  }
  .pr-90-xl {
    padding-right: 9rem !important;
  }
  .mt-100-xl {
    margin-top: 10rem !important;
  }
  .pt-100-xl {
    padding-top: 10rem !important;
  }
  .mb-100-xl {
    margin-bottom: 10rem !important;
  }
  .pb-100-xl {
    padding-bottom: 10rem !important;
  }
  .ml-100-xl {
    margin-left: 10rem !important;
  }
  .pl-100-xl {
    padding-left: 10rem !important;
  }
  .mr-100-xl {
    margin-right: 10rem !important;
  }
  .pr-100-xl {
    padding-right: 10rem !important;
  }
  .mt-110-xl {
    margin-top: 11rem !important;
  }
  .pt-110-xl {
    padding-top: 11rem !important;
  }
  .mb-110-xl {
    margin-bottom: 11rem !important;
  }
  .pb-110-xl {
    padding-bottom: 11rem !important;
  }
  .ml-110-xl {
    margin-left: 11rem !important;
  }
  .pl-110-xl {
    padding-left: 11rem !important;
  }
  .mr-110-xl {
    margin-right: 11rem !important;
  }
  .pr-110-xl {
    padding-right: 11rem !important;
  }
  .mt-120-xl {
    margin-top: 12rem !important;
  }
  .pt-120-xl {
    padding-top: 12rem !important;
  }
  .mb-120-xl {
    margin-bottom: 12rem !important;
  }
  .pb-120-xl {
    padding-bottom: 12rem !important;
  }
  .ml-120-xl {
    margin-left: 12rem !important;
  }
  .pl-120-xl {
    padding-left: 12rem !important;
  }
  .mr-120-xl {
    margin-right: 12rem !important;
  }
  .pr-120-xl {
    padding-right: 12rem !important;
  }
  .mt-130-xl {
    margin-top: 13rem !important;
  }
  .pt-130-xl {
    padding-top: 13rem !important;
  }
  .mb-130-xl {
    margin-bottom: 13rem !important;
  }
  .pb-130-xl {
    padding-bottom: 13rem !important;
  }
  .ml-130-xl {
    margin-left: 13rem !important;
  }
  .pl-130-xl {
    padding-left: 13rem !important;
  }
  .mr-130-xl {
    margin-right: 13rem !important;
  }
  .pr-130-xl {
    padding-right: 13rem !important;
  }
  .mt-140-xl {
    margin-top: 14rem !important;
  }
  .pt-140-xl {
    padding-top: 14rem !important;
  }
  .mb-140-xl {
    margin-bottom: 14rem !important;
  }
  .pb-140-xl {
    padding-bottom: 14rem !important;
  }
  .ml-140-xl {
    margin-left: 14rem !important;
  }
  .pl-140-xl {
    padding-left: 14rem !important;
  }
  .mr-140-xl {
    margin-right: 14rem !important;
  }
  .pr-140-xl {
    padding-right: 14rem !important;
  }
}
@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-90-lg {
    margin-top: 9rem !important;
  }
  .pt-90-lg {
    padding-top: 9rem !important;
  }
  .mb-90-lg {
    margin-bottom: 9rem !important;
  }
  .pb-90-lg {
    padding-bottom: 9rem !important;
  }
  .ml-90-lg {
    margin-left: 9rem !important;
  }
  .pl-90-lg {
    padding-left: 9rem !important;
  }
  .mr-90-lg {
    margin-right: 9rem !important;
  }
  .pr-90-lg {
    padding-right: 9rem !important;
  }
  .mt-100-lg {
    margin-top: 10rem !important;
  }
  .pt-100-lg {
    padding-top: 10rem !important;
  }
  .mb-100-lg {
    margin-bottom: 10rem !important;
  }
  .pb-100-lg {
    padding-bottom: 10rem !important;
  }
  .ml-100-lg {
    margin-left: 10rem !important;
  }
  .pl-100-lg {
    padding-left: 10rem !important;
  }
  .mr-100-lg {
    margin-right: 10rem !important;
  }
  .pr-100-lg {
    padding-right: 10rem !important;
  }
  .mt-110-lg {
    margin-top: 11rem !important;
  }
  .pt-110-lg {
    padding-top: 11rem !important;
  }
  .mb-110-lg {
    margin-bottom: 11rem !important;
  }
  .pb-110-lg {
    padding-bottom: 11rem !important;
  }
  .ml-110-lg {
    margin-left: 11rem !important;
  }
  .pl-110-lg {
    padding-left: 11rem !important;
  }
  .mr-110-lg {
    margin-right: 11rem !important;
  }
  .pr-110-lg {
    padding-right: 11rem !important;
  }
  .mt-120-lg {
    margin-top: 12rem !important;
  }
  .pt-120-lg {
    padding-top: 12rem !important;
  }
  .mb-120-lg {
    margin-bottom: 12rem !important;
  }
  .pb-120-lg {
    padding-bottom: 12rem !important;
  }
  .ml-120-lg {
    margin-left: 12rem !important;
  }
  .pl-120-lg {
    padding-left: 12rem !important;
  }
  .mr-120-lg {
    margin-right: 12rem !important;
  }
  .pr-120-lg {
    padding-right: 12rem !important;
  }
  .mt-130-lg {
    margin-top: 13rem !important;
  }
  .pt-130-lg {
    padding-top: 13rem !important;
  }
  .mb-130-lg {
    margin-bottom: 13rem !important;
  }
  .pb-130-lg {
    padding-bottom: 13rem !important;
  }
  .ml-130-lg {
    margin-left: 13rem !important;
  }
  .pl-130-lg {
    padding-left: 13rem !important;
  }
  .mr-130-lg {
    margin-right: 13rem !important;
  }
  .pr-130-lg {
    padding-right: 13rem !important;
  }
  .mt-140-lg {
    margin-top: 14rem !important;
  }
  .pt-140-lg {
    padding-top: 14rem !important;
  }
  .mb-140-lg {
    margin-bottom: 14rem !important;
  }
  .pb-140-lg {
    padding-bottom: 14rem !important;
  }
  .ml-140-lg {
    margin-left: 14rem !important;
  }
  .pl-140-lg {
    padding-left: 14rem !important;
  }
  .mr-140-lg {
    margin-right: 14rem !important;
  }
  .pr-140-lg {
    padding-right: 14rem !important;
  }
}
@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-90-md {
    margin-top: 9rem !important;
  }
  .pt-90-md {
    padding-top: 9rem !important;
  }
  .mb-90-md {
    margin-bottom: 9rem !important;
  }
  .pb-90-md {
    padding-bottom: 9rem !important;
  }
  .ml-90-md {
    margin-left: 9rem !important;
  }
  .pl-90-md {
    padding-left: 9rem !important;
  }
  .mr-90-md {
    margin-right: 9rem !important;
  }
  .pr-90-md {
    padding-right: 9rem !important;
  }
  .mt-100-md {
    margin-top: 10rem !important;
  }
  .pt-100-md {
    padding-top: 10rem !important;
  }
  .mb-100-md {
    margin-bottom: 10rem !important;
  }
  .pb-100-md {
    padding-bottom: 10rem !important;
  }
  .ml-100-md {
    margin-left: 10rem !important;
  }
  .pl-100-md {
    padding-left: 10rem !important;
  }
  .mr-100-md {
    margin-right: 10rem !important;
  }
  .pr-100-md {
    padding-right: 10rem !important;
  }
  .mt-110-md {
    margin-top: 11rem !important;
  }
  .pt-110-md {
    padding-top: 11rem !important;
  }
  .mb-110-md {
    margin-bottom: 11rem !important;
  }
  .pb-110-md {
    padding-bottom: 11rem !important;
  }
  .ml-110-md {
    margin-left: 11rem !important;
  }
  .pl-110-md {
    padding-left: 11rem !important;
  }
  .mr-110-md {
    margin-right: 11rem !important;
  }
  .pr-110-md {
    padding-right: 11rem !important;
  }
  .mt-120-md {
    margin-top: 12rem !important;
  }
  .pt-120-md {
    padding-top: 12rem !important;
  }
  .mb-120-md {
    margin-bottom: 12rem !important;
  }
  .pb-120-md {
    padding-bottom: 12rem !important;
  }
  .ml-120-md {
    margin-left: 12rem !important;
  }
  .pl-120-md {
    padding-left: 12rem !important;
  }
  .mr-120-md {
    margin-right: 12rem !important;
  }
  .pr-120-md {
    padding-right: 12rem !important;
  }
  .mt-130-md {
    margin-top: 13rem !important;
  }
  .pt-130-md {
    padding-top: 13rem !important;
  }
  .mb-130-md {
    margin-bottom: 13rem !important;
  }
  .pb-130-md {
    padding-bottom: 13rem !important;
  }
  .ml-130-md {
    margin-left: 13rem !important;
  }
  .pl-130-md {
    padding-left: 13rem !important;
  }
  .mr-130-md {
    margin-right: 13rem !important;
  }
  .pr-130-md {
    padding-right: 13rem !important;
  }
  .mt-140-md {
    margin-top: 14rem !important;
  }
  .pt-140-md {
    padding-top: 14rem !important;
  }
  .mb-140-md {
    margin-bottom: 14rem !important;
  }
  .pb-140-md {
    padding-bottom: 14rem !important;
  }
  .ml-140-md {
    margin-left: 14rem !important;
  }
  .pl-140-md {
    padding-left: 14rem !important;
  }
  .mr-140-md {
    margin-right: 14rem !important;
  }
  .pr-140-md {
    padding-right: 14rem !important;
  }
}
@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-90-sm {
    margin-top: 9rem !important;
  }
  .pt-90-sm {
    padding-top: 9rem !important;
  }
  .mb-90-sm {
    margin-bottom: 9rem !important;
  }
  .pb-90-sm {
    padding-bottom: 9rem !important;
  }
  .ml-90-sm {
    margin-left: 9rem !important;
  }
  .pl-90-sm {
    padding-left: 9rem !important;
  }
  .mr-90-sm {
    margin-right: 9rem !important;
  }
  .pr-90-sm {
    padding-right: 9rem !important;
  }
  .mt-100-sm {
    margin-top: 10rem !important;
  }
  .pt-100-sm {
    padding-top: 10rem !important;
  }
  .mb-100-sm {
    margin-bottom: 10rem !important;
  }
  .pb-100-sm {
    padding-bottom: 10rem !important;
  }
  .ml-100-sm {
    margin-left: 10rem !important;
  }
  .pl-100-sm {
    padding-left: 10rem !important;
  }
  .mr-100-sm {
    margin-right: 10rem !important;
  }
  .pr-100-sm {
    padding-right: 10rem !important;
  }
  .mt-110-sm {
    margin-top: 11rem !important;
  }
  .pt-110-sm {
    padding-top: 11rem !important;
  }
  .mb-110-sm {
    margin-bottom: 11rem !important;
  }
  .pb-110-sm {
    padding-bottom: 11rem !important;
  }
  .ml-110-sm {
    margin-left: 11rem !important;
  }
  .pl-110-sm {
    padding-left: 11rem !important;
  }
  .mr-110-sm {
    margin-right: 11rem !important;
  }
  .pr-110-sm {
    padding-right: 11rem !important;
  }
  .mt-120-sm {
    margin-top: 12rem !important;
  }
  .pt-120-sm {
    padding-top: 12rem !important;
  }
  .mb-120-sm {
    margin-bottom: 12rem !important;
  }
  .pb-120-sm {
    padding-bottom: 12rem !important;
  }
  .ml-120-sm {
    margin-left: 12rem !important;
  }
  .pl-120-sm {
    padding-left: 12rem !important;
  }
  .mr-120-sm {
    margin-right: 12rem !important;
  }
  .pr-120-sm {
    padding-right: 12rem !important;
  }
  .mt-130-sm {
    margin-top: 13rem !important;
  }
  .pt-130-sm {
    padding-top: 13rem !important;
  }
  .mb-130-sm {
    margin-bottom: 13rem !important;
  }
  .pb-130-sm {
    padding-bottom: 13rem !important;
  }
  .ml-130-sm {
    margin-left: 13rem !important;
  }
  .pl-130-sm {
    padding-left: 13rem !important;
  }
  .mr-130-sm {
    margin-right: 13rem !important;
  }
  .pr-130-sm {
    padding-right: 13rem !important;
  }
  .mt-140-sm {
    margin-top: 14rem !important;
  }
  .pt-140-sm {
    padding-top: 14rem !important;
  }
  .mb-140-sm {
    margin-bottom: 14rem !important;
  }
  .pb-140-sm {
    padding-bottom: 14rem !important;
  }
  .ml-140-sm {
    margin-left: 14rem !important;
  }
  .pl-140-sm {
    padding-left: 14rem !important;
  }
  .mr-140-sm {
    margin-right: 14rem !important;
  }
  .pr-140-sm {
    padding-right: 14rem !important;
  }
}
/*
	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-90 {
  margin-right: 9rem !important;
  margin-left: 9rem !important;
}

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

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

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

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

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

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

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

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

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

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

.px-140 {
  padding-right: 14rem !important;
  padding-left: 14rem !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-90-xl {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .px-90-xl {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .mx-100-xl {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .px-100-xl {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .mx-110-xl {
    margin-right: 11rem !important;
    margin-left: 11rem !important;
  }
  .px-110-xl {
    padding-right: 11rem !important;
    padding-left: 11rem !important;
  }
  .mx-120-xl {
    margin-right: 12rem !important;
    margin-left: 12rem !important;
  }
  .px-120-xl {
    padding-right: 12rem !important;
    padding-left: 12rem !important;
  }
  .mx-130-xl {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .px-130-xl {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .mx-140-xl {
    margin-right: 14rem !important;
    margin-left: 14rem !important;
  }
  .px-140-xl {
    padding-right: 14rem !important;
    padding-left: 14rem !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-90-lg {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .px-90-lg {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .mx-100-lg {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .px-100-lg {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .mx-110-lg {
    margin-right: 11rem !important;
    margin-left: 11rem !important;
  }
  .px-110-lg {
    padding-right: 11rem !important;
    padding-left: 11rem !important;
  }
  .mx-120-lg {
    margin-right: 12rem !important;
    margin-left: 12rem !important;
  }
  .px-120-lg {
    padding-right: 12rem !important;
    padding-left: 12rem !important;
  }
  .mx-130-lg {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .px-130-lg {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .mx-140-lg {
    margin-right: 14rem !important;
    margin-left: 14rem !important;
  }
  .px-140-lg {
    padding-right: 14rem !important;
    padding-left: 14rem !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-90-md {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .px-90-md {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .mx-100-md {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .px-100-md {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .mx-110-md {
    margin-right: 11rem !important;
    margin-left: 11rem !important;
  }
  .px-110-md {
    padding-right: 11rem !important;
    padding-left: 11rem !important;
  }
  .mx-120-md {
    margin-right: 12rem !important;
    margin-left: 12rem !important;
  }
  .px-120-md {
    padding-right: 12rem !important;
    padding-left: 12rem !important;
  }
  .mx-130-md {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .px-130-md {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .mx-140-md {
    margin-right: 14rem !important;
    margin-left: 14rem !important;
  }
  .px-140-md {
    padding-right: 14rem !important;
    padding-left: 14rem !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-90-sm {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .px-90-sm {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .mx-100-sm {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .px-100-sm {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .mx-110-sm {
    margin-right: 11rem !important;
    margin-left: 11rem !important;
  }
  .px-110-sm {
    padding-right: 11rem !important;
    padding-left: 11rem !important;
  }
  .mx-120-sm {
    margin-right: 12rem !important;
    margin-left: 12rem !important;
  }
  .px-120-sm {
    padding-right: 12rem !important;
    padding-left: 12rem !important;
  }
  .mx-130-sm {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .px-130-sm {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .mx-140-sm {
    margin-right: 14rem !important;
    margin-left: 14rem !important;
  }
  .px-140-sm {
    padding-right: 14rem !important;
    padding-left: 14rem !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-90 {
  margin-top: 9rem !important;
  margin-bottom: 9rem !important;
}

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

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

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

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

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

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

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

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

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

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

.py-140 {
  padding-top: 14rem !important;
  padding-bottom: 14rem !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-90-xl {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .py-90-xl {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .my-100-xl {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .py-100-xl {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .my-110-xl {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }
  .py-110-xl {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }
  .my-120-xl {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .py-120-xl {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
  .my-130-xl {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .py-130-xl {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .my-140-xl {
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }
  .py-140-xl {
    padding-top: 14rem !important;
    padding-bottom: 14rem !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-90-lg {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .py-90-lg {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .my-100-lg {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .py-100-lg {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .my-110-lg {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }
  .py-110-lg {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }
  .my-120-lg {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .py-120-lg {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
  .my-130-lg {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .py-130-lg {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .my-140-lg {
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }
  .py-140-lg {
    padding-top: 14rem !important;
    padding-bottom: 14rem !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-90-md {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .py-90-md {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .my-100-md {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .py-100-md {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .my-110-md {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }
  .py-110-md {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }
  .my-120-md {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .py-120-md {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
  .my-130-md {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .py-130-md {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .my-140-md {
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }
  .py-140-md {
    padding-top: 14rem !important;
    padding-bottom: 14rem !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-90-sm {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .py-90-sm {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .my-100-sm {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .py-100-sm {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .my-110-sm {
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }
  .py-110-sm {
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }
  .my-120-sm {
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }
  .py-120-sm {
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }
  .my-130-sm {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .py-130-sm {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .my-140-sm {
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }
  .py-140-sm {
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1199px) {
  .mx-auto-xl {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (max-width: 1023px) {
  .mx-auto-lg {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (max-width: 767px) {
  .mx-auto-md {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (max-width: 575px) {
  .mx-auto-sm {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1599px) {
  .gap-0-xxl {
    gap: 0rem !important;
  }
  .gap-10-xxl {
    gap: 1rem !important;
  }
  .gap-15-xxl {
    gap: 1.5rem !important;
  }
  .gap-20-xxl {
    gap: 2rem !important;
  }
  .gap-25-xxl {
    gap: 2.5rem !important;
  }
  .gap-30-xxl {
    gap: 3rem !important;
  }
  .gap-35-xxl {
    gap: 3.5rem !important;
  }
  .gap-40-xxl {
    gap: 4rem !important;
  }
  .gap-45-xxl {
    gap: 4.5rem !important;
  }
  .gap-50-xxl {
    gap: 5rem !important;
  }
  .gap-60-xxl {
    gap: 6rem !important;
  }
  .gap-70-xxl {
    gap: 7rem !important;
  }
  .gap-80-xxl {
    gap: 8rem !important;
  }
  .gap-90-xxl {
    gap: 9rem !important;
  }
  .gap-100-xxl {
    gap: 10rem !important;
  }
  .gap-110-xxl {
    gap: 11rem !important;
  }
  .gap-120-xxl {
    gap: 12rem !important;
  }
  .gap-130-xxl {
    gap: 13rem !important;
  }
  .gap-140-xxl {
    gap: 14rem !important;
  }
}
@media (max-width: 1199px) {
  .gap-0-xl {
    gap: 0rem !important;
  }
  .gap-10-xl {
    gap: 1rem !important;
  }
  .gap-15-xl {
    gap: 1.5rem !important;
  }
  .gap-20-xl {
    gap: 2rem !important;
  }
  .gap-25-xl {
    gap: 2.5rem !important;
  }
  .gap-30-xl {
    gap: 3rem !important;
  }
  .gap-35-xl {
    gap: 3.5rem !important;
  }
  .gap-40-xl {
    gap: 4rem !important;
  }
  .gap-45-xl {
    gap: 4.5rem !important;
  }
  .gap-50-xl {
    gap: 5rem !important;
  }
  .gap-60-xl {
    gap: 6rem !important;
  }
  .gap-70-xl {
    gap: 7rem !important;
  }
  .gap-80-xl {
    gap: 8rem !important;
  }
  .gap-90-xl {
    gap: 9rem !important;
  }
  .gap-100-xl {
    gap: 10rem !important;
  }
  .gap-110-xl {
    gap: 11rem !important;
  }
  .gap-120-xl {
    gap: 12rem !important;
  }
  .gap-130-xl {
    gap: 13rem !important;
  }
  .gap-140-xl {
    gap: 14rem !important;
  }
}
@media (max-width: 1023px) {
  .gap-0-lg {
    gap: 0rem !important;
  }
  .gap-10-lg {
    gap: 1rem !important;
  }
  .gap-15-lg {
    gap: 1.5rem !important;
  }
  .gap-20-lg {
    gap: 2rem !important;
  }
  .gap-25-lg {
    gap: 2.5rem !important;
  }
  .gap-30-lg {
    gap: 3rem !important;
  }
  .gap-35-lg {
    gap: 3.5rem !important;
  }
  .gap-40-lg {
    gap: 4rem !important;
  }
  .gap-45-lg {
    gap: 4.5rem !important;
  }
  .gap-50-lg {
    gap: 5rem !important;
  }
  .gap-60-lg {
    gap: 6rem !important;
  }
  .gap-70-lg {
    gap: 7rem !important;
  }
  .gap-80-lg {
    gap: 8rem !important;
  }
  .gap-90-lg {
    gap: 9rem !important;
  }
  .gap-100-lg {
    gap: 10rem !important;
  }
  .gap-110-lg {
    gap: 11rem !important;
  }
  .gap-120-lg {
    gap: 12rem !important;
  }
  .gap-130-lg {
    gap: 13rem !important;
  }
  .gap-140-lg {
    gap: 14rem !important;
  }
}
@media (max-width: 767px) {
  .gap-0-md {
    gap: 0rem !important;
  }
  .gap-10-md {
    gap: 1rem !important;
  }
  .gap-15-md {
    gap: 1.5rem !important;
  }
  .gap-20-md {
    gap: 2rem !important;
  }
  .gap-25-md {
    gap: 2.5rem !important;
  }
  .gap-30-md {
    gap: 3rem !important;
  }
  .gap-35-md {
    gap: 3.5rem !important;
  }
  .gap-40-md {
    gap: 4rem !important;
  }
  .gap-45-md {
    gap: 4.5rem !important;
  }
  .gap-50-md {
    gap: 5rem !important;
  }
  .gap-60-md {
    gap: 6rem !important;
  }
  .gap-70-md {
    gap: 7rem !important;
  }
  .gap-80-md {
    gap: 8rem !important;
  }
  .gap-90-md {
    gap: 9rem !important;
  }
  .gap-100-md {
    gap: 10rem !important;
  }
  .gap-110-md {
    gap: 11rem !important;
  }
  .gap-120-md {
    gap: 12rem !important;
  }
  .gap-130-md {
    gap: 13rem !important;
  }
  .gap-140-md {
    gap: 14rem !important;
  }
}
@media (max-width: 575px) {
  .gap-0-sm {
    gap: 0rem !important;
  }
  .gap-10-sm {
    gap: 1rem !important;
  }
  .gap-15-sm {
    gap: 1.5rem !important;
  }
  .gap-20-sm {
    gap: 2rem !important;
  }
  .gap-25-sm {
    gap: 2.5rem !important;
  }
  .gap-30-sm {
    gap: 3rem !important;
  }
  .gap-35-sm {
    gap: 3.5rem !important;
  }
  .gap-40-sm {
    gap: 4rem !important;
  }
  .gap-45-sm {
    gap: 4.5rem !important;
  }
  .gap-50-sm {
    gap: 5rem !important;
  }
  .gap-60-sm {
    gap: 6rem !important;
  }
  .gap-70-sm {
    gap: 7rem !important;
  }
  .gap-80-sm {
    gap: 8rem !important;
  }
  .gap-90-sm {
    gap: 9rem !important;
  }
  .gap-100-sm {
    gap: 10rem !important;
  }
  .gap-110-sm {
    gap: 11rem !important;
  }
  .gap-120-sm {
    gap: 12rem !important;
  }
  .gap-130-sm {
    gap: 13rem !important;
  }
  .gap-140-sm {
    gap: 14rem !important;
  }
}
/*header
-----------------------------------------------------*/
header {
  position: fixed;
  z-index: 99999;
  width: 100%;
  box-sizing: border-box;
  top: 0;
  left: 0;
  background-color: #FFF;
}

.header-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-box .logo {
  padding: 0 3rem;
  z-index: 100000;
  height: 80px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .header-box .logo {
    padding: 0 2rem;
  }
}
@media (max-width: 575px) {
  .header-box .logo {
    height: 60px;
  }
}
.header-box .logo picture {
  display: flex;
  align-items: center;
}
.header-box .logo img {
  width: 260px;
}
@media (max-width: 1310px) {
  .header-box .logo img {
    width: 200px;
  }
}
@media (max-width: 575px) {
  .header-box .logo img {
    width: 160px;
  }
}
.header-box .logo a {
  display: flex;
  align-items: center;
}
.header-box .sm-nav {
  display: none;
}
@media (max-width: 1310px) {
  .header-box .sm-nav {
    display: block;
  }
}
.header-box .header-r-box {
  display: flex;
  align-items: flex-end;
  align-items: center;
  gap: 4rem;
}
.header-box .header-btn {
  display: flex;
}
@media (max-width: 1310px) {
  .header-box .header-btn {
    display: none;
  }
}
.header-box .header-btn .online-btn,
.header-box .header-btn .contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #FFF;
  font-weight: 700;
  font-size: 1.5rem;
  height: 80px;
}
.header-box .header-btn .online-btn {
  background-color: #1C1C1C;
  width: 180px;
}
.header-box .header-btn .contact-btn {
  background-color: #D1B461;
  width: 150px;
}
.header-box .header-btn--sm {
  display: flex;
}
@media (max-width: 575px) {
  .header-box .header-btn--sm {
    flex-wrap: wrap;
  }
}
.header-box .header-btn--sm .online-btn--sm,
.header-box .header-btn--sm .contact-btn--sm {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #FFF;
  font-weight: 700;
  font-size: 1.4rem;
  height: 60px;
}
.header-box .header-btn--sm .online-btn--sm {
  background-color: #1C1C1C;
  width: 180px;
}
@media (max-width: 575px) {
  .header-box .header-btn--sm .online-btn--sm {
    width: 100%;
  }
}
.header-box .header-btn--sm .contact-btn--sm {
  background-color: #D1B461;
  width: 150px;
}
@media (max-width: 575px) {
  .header-box .header-btn--sm .contact-btn--sm {
    width: 100%;
  }
}
@media (max-width: 1310px) {
  .header-box .pc-nav {
    display: none;
  }
}
.header-box .pc-nav nav ul {
  display: flex;
  gap: 0 3rem;
}
.header-box .pc-nav nav ul li a {
  text-decoration: none;
  color: #222;
  font-weight: bold;
  font-size: 1.6rem;
  opacity: 0.9;
}
.header-box .pc-nav nav ul li a:hover {
  opacity: 0.8;
}
@media (max-width: 1023px) {
  .header-box .pc-nav nav ul li a {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .header-box .pc-nav nav ul li a {
    color: #FFF;
    display: block;
    padding: 1rem;
  }
}
@media (max-width: 575px) {
  .header-box .pc-nav nav ul li a {
    padding: 1rem;
    line-height: 1.2;
  }
}
.header-box .pc-nav nav .menu-item-has-children {
  position: relative;
  margin-right: 2rem;
}
.header-box .pc-nav nav .menu-item-has-children::before {
  content: "";
  margin: auto;
  position: absolute;
  top: -3px;
  bottom: 0;
  right: -20px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #1161A5;
  border-right: 2px solid #1161A5;
  transform: rotate(135deg);
}
.header-box .pc-nav nav .menu-item-has-children.parent-link-none > a {
  pointer-events: none;
}
.header-box .pc-nav 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(to right, #1D5E87, #1D1F87);
  padding: 2rem;
  flex-direction: column;
}
.header-box .pc-nav nav .menu-item-has-children .sub-menu a {
  display: block;
  text-decoration: none;
  color: #FFF;
  font-size: 1.3rem;
  padding: 1rem;
}
.header-box .pc-nav nav .menu-item-has-children .sub-menu a:hover {
  opacity: 0.6;
}
.header-box .pc-nav nav .menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/*hamburger
-----------------------------------------------------*/
.sm-nav {
  margin: 0;
  transition: all 0.6s;
  overflow-y: auto;
  width: 255px;
  height: 100vh;
  z-index: 200;
  top: 0;
  left: -320px;
  background-color: #1161A5;
  position: fixed;
  display: block;
}
.sm-nav__inner {
  padding: 0 2rem;
}
.sm-nav__inner a {
  display: block;
  color: #FFF;
  font-weight: 700;
  padding: 1.5rem 2rem;
  font-size: 1.6rem;
  text-decoration: none;
}
.sm-nav__inner a:hover {
  color: #B98D35;
}
.sm-nav__inner li {
  position: relative;
}
.sm-nav__inner li a {
  position: relative;
}
.sm-nav .sub-menu li a {
  margin-left: 1.5rem !important;
}
.sm-nav .sub-menu li a:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  color: #222;
  background: #222 !important;
  width: 10px !important;
  height: 1px;
}
.nav_btn {
  width: 40px;
  height: 40px;
  z-index: 300000;
  top: 22px;
  right: 20px;
  margin: auto;
  cursor: pointer;
  position: absolute;
  background: #0086CD;
  display: none;
  border-radius: 50px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1310px) {
  .nav_btn {
    display: block;
  }
}
@media (max-width: 575px) {
  .nav_btn {
    top: 10px;
  }
}

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

.hamburger_line1 {
  top: 15px;
}

.hamburger_line2 {
  top: 24px;
}

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

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

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

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

.globalMenu.active {
  opacity: 100;
  display: block;
  transform: translateY(0%);
}
.globalMenu.active nav {
  padding-top: 8rem;
}

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

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

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

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

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

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

.bg-gray {
  background-color: #F6F6F6;
}

/*page-header
-----------------------------------------------------*/
.page-header {
  background: url("../images/common/bg-ttl.jpg") no-repeat bottom/cover;
  border-radius: 0 0 15rem 0;
  padding: 10rem 0;
  margin-right: 9rem;
  padding-left: 9rem;
}
@media (max-width: 767px) {
  .page-header {
    border-radius: 0 0 8rem 0;
    padding: 6rem 0;
    margin-right: 0rem;
    padding-left: 0rem;
  }
}
.page-header .sub-ttl {
  font-weight: 600;
  font-size: 2.2rem;
  text-transform: uppercase;
  display: inline-block;
  line-height: 1;
  word-break: keep-all;
  color: #fff;
}
.page-header .sub-ttl::first-letter {
  color: #D1B461;
}
@media (max-width: 767px) {
  .page-header .sub-ttl {
    font-size: 1.4rem;
  }
}
.page-header h1 {
  font-size: 3.6rem;
  color: #fff;
}
@media (max-width: 1023px) {
  .page-header h1 {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .page-header h1 {
    font-size: 2.6rem;
  }
}
@media (max-width: 575px) {
  .page-header h1 {
    font-size: 2rem;
  }
}

/*breadcrumb
-----------------------------------------------------*/
.breadcrumb-box {
  padding: 1.5rem 0;
  border-top: solid 1px #EDEDED;
  border-bottom: solid 1px #EDEDED;
  box-sizing: border-box;
}

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

/*page-sec
-----------------------------------------------------*/
.page-sec {
  margin-top: 8rem;
  margin-bottom: 8rem;
}
@media (max-width: 575px) {
  .page-sec {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
.page-sec h2 {
  margin: 8rem 0 4rem 0;
  padding: 1.8rem 2rem;
  font-weight: 600;
  font-size: clamp(2.4rem, 2.9vw, 3rem);
  line-height: 1.2;
  color: #fff;
  background: linear-gradient(to right, #1D1F87, #1D5E87);
  box-sizing: border-box;
}
@media (max-width: 575px) {
  .page-sec h2 {
    margin: 4rem 0 2rem 0;
  }
}
.page-sec h3 {
  position: relative;
  margin: 6rem 0 3rem;
  padding: 1.5rem 0 1rem 0;
  font-size: clamp(2.2rem, 2.4vw, 2.6rem);
  box-sizing: border-box;
  align-items: center;
  border-bottom: 4px solid #BEBEBE;
  line-height: 1.3;
  font-weight: 500;
}
.page-sec h3:before {
  position: absolute;
  content: "";
  width: 80px;
  left: 0;
  bottom: -4px;
  border-bottom: 4px solid #1D1F87;
}
.page-sec h4 {
  margin: 6rem 0 3rem 0;
  padding-left: 1rem;
  font-size: clamp(2rem, 2.4vw, 2.4rem);
  color: #222;
  font-weight: 500;
  line-height: 1.4;
  border-left: solid 6px #1D1F87;
}
.page-sec h5 {
  margin: 6rem 0 3rem 0;
  padding: 1rem 1.5rem;
  font-size: clamp(2rem, 2.2vw, 2.2rem);
  color: #1D1F87;
  background: #F6F6F6;
  font-weight: 500;
  line-height: 1.4;
}
.page-sec h6 {
  margin: 6rem 0 3rem 0;
  font-size: clamp(1.8rem, 2vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
}
.page-sec p {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.page-sec ul,
.page-sec ol {
  line-height: 2;
}
.page-sec p + p,
.page-sec p + ul,
.page-sec p + ol {
  margin-top: 2rem;
}
.page-sec table,
.page-sec td,
.page-sec th {
  border-collapse: collapse;
  text-align: left;
}
.page-sec table {
  margin: 4rem auto;
  table-layout: fixed;
  width: 100%;
  border-top: 1px solid #DBE2F5;
  line-height: 1.5;
}
.page-sec td,
.page-sec th {
  padding: 3rem;
  border: none;
  box-sizing: border-box;
  vertical-align: middle;
}
@media (max-width: 575px) {
  .page-sec td,
  .page-sec th {
    display: block;
    padding: 2.5rem 2rem;
  }
}
.page-sec td {
  background: #fff;
  border-right: 1px solid #DBE2F5;
  border-left: 1px solid #DBE2F5;
}
.page-sec td:first-child {
  background: #E9ECF4;
  text-align: left;
  width: 30%;
}
@media (max-width: 767px) {
  .page-sec td:first-child {
    width: 100%;
  }
}
.page-sec tr {
  border-bottom: 1px solid #DBE2F5;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .page-sec table,
  .page-sec tbody,
  .page-sec tr,
  .page-sec th,
  .page-sec td {
    display: block;
    width: 100%;
  }
  .page-sec th {
    padding: 2rem;
  }
  .page-sec td {
    padding: 3rem 2rem;
  }
  .page-sec td:first-child {
    border-bottom: 1px solid #DBE2F5;
  }
  .page-sec th {
    width: 100%;
  }
}

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

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

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

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

p + p {
  margin-top: 3rem;
}

/* margin */
.ml-auto {
  margin-left: auto;
}

/*h*/
.h-sec01 {
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .h-sec01 {
    margin-bottom: 4rem;
  }
}
.h-sec01 .en-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
}
.h-sec01 .en-wrap::after {
  content: "";
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, #D1B461 0%, #D1B461 50%, #BEBEBE 50%, #BEBEBE 100%);
}
.h-sec01 .en {
  position: relative;
  font-weight: 600;
  font-size: 2.2rem;
  text-transform: uppercase;
  display: inline-block;
  line-height: 1;
  word-break: keep-all;
}
.h-sec01 .en::first-letter {
  color: #D1B461;
}
.h-sec01 .jp {
  font-size: 3.6rem;
}
@media (max-width: 767px) {
  .h-sec01 .jp {
    font-size: 3rem;
  }
}
@media (max-width: 575px) {
  .h-sec01 .jp {
    font-size: 2.4rem;
  }
}
.h-sec01--s .jp {
  font-size: 1.5rem;
  margin-top: 1rem;
}
.h-sec01--s .jp::first-letter {
  color: #D1B461;
}
.h-sec01--s--g .en,
.h-sec01--s--g .jp {
  color: #D1B461;
}
.h-sec01--g .en {
  color: #D1B461;
}
.h-sec01--g .jp {
  color: #FFF;
}
.h-sec01--m .en-wrap::after {
  content: "";
  display: block;
  width: 180px;
  height: 1px;
  background: #222;
}
.h-sec01--w .en-wrap::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #FFF;
}
.h-sec01--w .en {
  color: #FFF;
}
.h-sec01--w .en::first-letter {
  color: #FFF;
}
.h-sec01--w .jp {
  color: #FFF;
}

.h-sec02 {
  font-size: 8rem;
  font-size: clamp(6rem, 6vw, 8rem);
  word-break: keep-all;
  text-transform: uppercase;
  color: #FFF;
  font-weight: 600;
  line-height: 1.2;
}

.h-sec03 {
  text-align: center;
  margin-bottom: 3rem;
}
.h-sec03 span {
  font-size: 12rem;
  color: #FCB2B3;
  line-height: 1;
}
@media (max-width: 1023px) {
  .h-sec03 span {
    font-size: 12vw;
  }
}

.h-sec04 {
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
@media (max-width: 767px) {
  .h-sec04 {
    margin-bottom: 4rem;
  }
}
.h-sec04 .en {
  position: relative;
  font-weight: 600;
  font-size: 2.2rem;
  text-transform: uppercase;
  display: inline-block;
  line-height: 1;
  word-break: keep-all;
}
.h-sec04 .en::first-letter {
  color: #D1B461;
}
.h-sec04 .jp {
  font-size: 3.6rem;
}
@media (max-width: 767px) {
  .h-sec04 .jp {
    font-size: 3rem;
  }
}
@media (max-width: 575px) {
  .h-sec04 .jp {
    font-size: 2.4rem;
  }
}

/*btn
-----------------------------------------------------*/
/*ページ内共通*/
.contact-btn {
  display: flex;
  gap: 1.5rem 2rem;
  justify-content: center;
}
@media (max-width: 575px) {
  .contact-btn {
    gap: 1.5rem 1rem;
  }
}

.btn-wrap {
  margin-top: 4rem;
}

.btn01 {
  border: 1px solid #1D1F87;
  background-color: #FFF;
  border-radius: 100px;
  box-sizing: border-box;
  max-width: 260px;
  width: 100%;
}
.btn01 a {
  font-weight: bold;
  text-decoration: none;
  color: #1D1F87;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.2rem 1.2rem 3rem;
}
.btn01 .arrow {
  content: "";
  background-image: url(../images/common/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 36px;
  height: 36px;
  display: block;
}
.btn01--l {
  max-width: 410px;
}
.btn01--m {
  max-width: 308px;
}
.btn01--noborder {
  border: 0;
  max-width: 420px;
  margin: 0;
}
.btn01--noborder a {
  padding: 2rem 1.2rem 2rem 3rem;
}

.btn02 {
  border: 1px solid #FFF;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 100px;
  box-sizing: border-box;
  max-width: 310px;
  width: 100%;
}
.btn02 a {
  font-weight: bold;
  text-decoration: none;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.2rem 1.2rem 3rem;
}
.btn02 .arrow {
  content: "";
  background-image: url(../images/common/arrow-w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 36px;
  height: 36px;
  display: block;
}
.btn02--l {
  max-width: 410px;
}

.btn03 a {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 1px solid #1D1F87;
  border-radius: 5px;
  text-decoration: none;
  color: #1D1F87;
  padding: 2rem 1.5rem;
  font-size: clamp(1.4rem, 1.6vw, 1.6rem);
  line-height: 1.4;
  font-weight: 600;
  box-sizing: border-box;
  justify-content: center;
}
.btn03 a::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../images/common/arrow-2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  right: 1rem;
  top: 50%;
  margin-top: -5.5px;
  width: 13px;
  height: 9px;
  transform: rotate(90deg);
}

.view-more a {
  text-transform: uppercase;
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.view-more a .arrow {
  content: "";
  background-image: url(../images/common/arrow-w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  display: block;
}
.view-more--b {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .view-more--b {
    display: flex;
  }
}
.view-more--b a {
  color: #222;
  margin-left: auto;
}
.view-more--b a .arrow {
  background-image: url(../images/common/arrow.svg);
}

.btn-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.parker-btn {
  background-color: #FFF;
  border-radius: 5px;
  padding: 2.5rem 5rem 2.5rem 2.5rem;
  position: relative;
  max-width: 475px;
  width: 100%;
  margin-top: 3rem;
  box-sizing: border-box;
}
@media (max-width: 575px) {
  .parker-btn {
    max-width: 300px;
  }
}
.parker-btn a {
  text-decoration: none;
  color: #222;
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 1rem 2rem;
}
@media (max-width: 575px) {
  .parker-btn a {
    flex-direction: column;
    align-items: flex-start;
    font-size: 1.6rem;
  }
}
.parker-btn img {
  width: 218px;
}
.parker-btn .arrow {
  content: "";
  background-image: url(../images/common/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 36px;
  height: 36px;
  display: block;
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
}

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

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

/*main
-----------------------------------------------------*/
.main-v {
  width: 100%;
  position: relative;
}

.main-v .slick-dots {
  position: absolute;
  bottom: -40px;
  z-index: 10;
  right: 5rem;
  display: flex;
  justify-content: right;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-v .slick-dots li button:before {
  content: none;
}

.main-v .slick-dots li {
  width: 70px;
  height: 6px;
  margin: 0;
}

.main-v .slick-dots li button {
  width: 70px;
  height: 6px;
  padding: 0;
  border: 0;
  background: #BEBEBE;
  border-radius: 0;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
  display: block;
  transition: background-color 0.3s ease;
}

.main-v .slick-dots li.slick-active button {
  background: #0092D8;
}

.main-v__img picture,
.main-v__img img {
  width: 100%;
  height: 100%;
  display: block;
}

/*product
-----------------------------------------------------*/
.product-list--top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
@media (max-width: 1260px) {
  .product-list--top {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1023px) {
  .product-list--top {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .product-list--top {
    grid-template-columns: repeat(1, 1fr);
  }
}
.product-list--top .cat-parent a {
  border: 1px solid #D5DAE8;
  border-radius: 5px;
  text-decoration: none;
  color: #222;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
}
.product-list--top .cat-parent a :hover {
  opacity: 1;
}
.product-list--top .cat-parent a .img {
  max-width: 128px;
  min-width: 128px;
  border-radius: 5px 0 0 5px;
}
@media (max-width: 767px) {
  .product-list--top .cat-parent a .img {
    max-width: 90px;
    min-width: 90px;
  }
}
.product-list--top .cat-parent a .img img {
  border-radius: 5px 0 0 5px;
}
.product-list--top .cat-parent a p {
  font-size: 2rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .product-list--top .cat-parent a p {
    font-size: 1.8rem;
  }
}
.product-list--top .cat-parent.active {
  background-color: #1161A5;
  border-radius: 5px;
}
.product-list--top .cat-parent.active a {
  color: #FFF;
  border: 1px solid #1161A5;
}
.product-list--top .cat-parent.active a :hover {
  opacity: 1;
}
.product-list--bottom .tab-content.active {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 8rem;
}
@media (max-width: 1260px) {
  .product-list--bottom .tab-content.active {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1023px) {
  .product-list--bottom .tab-content.active {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .product-list--bottom .tab-content.active {
    grid-template-columns: repeat(1, 1fr);
  }
}
.product-list--bottom .tab-content {
  display: none;
}
.product-list--bottom .tab-content .cat-grandchild a {
  border: 1px solid #D5DAE8;
  border-radius: 5px;
  text-decoration: none;
  color: #222;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
}
.product-list--bottom .tab-content .cat-grandchild a .img {
  max-width: 128px;
  min-width: 128px;
  border-radius: 5px 0 0 5px;
}
@media (max-width: 767px) {
  .product-list--bottom .tab-content .cat-grandchild a .img {
    max-width: 90px;
    min-width: 90px;
  }
}
.product-list--bottom .tab-content .cat-grandchild a .img img {
  border-radius: 5px 0 0 5px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-list--bottom .tab-content .cat-grandchild a p {
  line-height: 1.4;
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
}
.product-list--bottom .tab-content .cat-grandchild a .arrow {
  content: "";
  background-image: url(../images/common/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 26px;
  height: 26px;
  display: block;
  margin-left: auto;
  width: 100%;
}

/*features
-----------------------------------------------------*/
.features .bg-service01 {
  width: 100%;
}
.features-inner {
  background-image: url(../images/top/bg-service05.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  position: relative;
  z-index: 1;
}
.features-inner .container-xl {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.features-inner .flex {
  gap: 3rem;
}
@media (max-width: 1023px) {
  .features-inner .flex {
    flex-wrap: wrap;
  }
}
.features-inner .flex .col01 {
  width: 100%;
}
.features-inner .flex .col01 h3 {
  font-size: 3.6rem;
  font-size: clamp(2.8rem, 2vw, 3.6rem);
  margin-bottom: 4rem;
  line-height: 1.4;
}
@media (max-width: 575px) {
  .features-inner .flex .col01 h3 {
    font-size: 2.2rem;
  }
}
.features-inner .flex .col01 p {
  max-width: 520px;
}
@media (max-width: 1023px) {
  .features-inner .flex .col01 p {
    max-width: none;
  }
}
@media (max-width: 1023px) {
  .features-inner .flex .col01 .btn01 {
    margin-left: auto;
  }
}
.features-inner .flex .col02 {
  width: 100%;
  max-width: 700px;
}
@media (max-width: 1199px) {
  .features-inner .flex .col02 {
    max-width: 620px;
  }
}
@media (max-width: 1023px) {
  .features-inner .flex .col02 {
    margin: auto;
  }
}

/*top-service
-----------------------------------------------------*/
@media (max-width: 1023px) {
  .top-service .flex {
    flex-wrap: wrap;
  }
}
.top-service .flex .col01,
.top-service .flex .col02 {
  width: 50%;
}
@media (max-width: 1023px) {
  .top-service .flex .col01,
  .top-service .flex .col02 {
    width: 100%;
  }
}
.top-service .flex .col01 {
  background: linear-gradient(to right, #1D1F87, #1D5E87);
  color: #FFF;
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
}
.top-service .flex .col01::before {
  content: "";
  background-image: url(../images/top/bg-service03.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
}
.top-service .flex .col01-inner {
  padding: 6rem 2rem 6rem 0;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .top-service .flex .col01-inner {
    padding: 6rem 4rem;
  }
}
.top-service .flex .col01 h3 {
  font-size: clamp(2.8rem, 2vw, 3.4rem);
  margin-bottom: 4rem;
  line-height: 1.4;
}
@media (max-width: 575px) {
  .top-service .flex .col01 h3 {
    font-size: 2.2rem;
  }
}
.top-service .flex .col01 p {
  max-width: 520px;
}
@media (max-width: 1023px) {
  .top-service .flex .col01 p {
    max-width: none;
  }
}
.top-service .flex .col01 ul {
  list-style: disc;
  padding-left: 2.5rem;
  margin-top: 4rem;
}
@media (max-width: 1023px) {
  .top-service .flex .col01 .btn01 {
    margin-left: auto;
  }
}
@media (max-width: 1260px) {
  .top-service .flex .col02 {
    width: calc(50% + 50vw - 50%);
    margin-right: calc(50% - 50vw);
  }
}
@media (max-width: 1023px) {
  .top-service .flex .col02 {
    width: 100%;
  }
}
.top-service .flex .col02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  z-index: 0;
  position: relative;
}

/*top-business
-----------------------------------------------------*/
.business .flex {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
@media (max-width: 1199px) {
  .business .flex {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1023px) {
  .business .flex {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .business .flex {
    grid-template-columns: repeat(2, 1fr);
  }
}
.business .flex-box--top {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F6F6F6;
  border-radius: 10px;
  padding: 4.5rem;
}
.business .flex-box--top img {
  max-width: 130px;
  width: 100%;
}
.business .flex-box--bottom {
  margin-top: 1rem;
}
.business .flex-box--bottom p {
  font-size: 1.8rem;
  color: #1D1F87;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .business .flex-box--bottom p {
    font-size: 1.6rem;
  }
}

/*top-casestudy
-----------------------------------------------------*/
.top-casestudy {
  position: relative;
}
.top-casestudy::before {
  content: "";
  height: 310px;
  width: 100%;
  background: linear-gradient(to right, #1D1F87, #1D5E87);
  position: absolute;
  top: 0;
  z-index: -1;
}
.top-casestudy::after {
  content: "";
  width: 10rem;
  height: 100%;
  background-color: #FFF;
  position: absolute;
  top: -1px;
  right: 0;
  z-index: -1;
}
@media (max-width: 1430px) {
  .top-casestudy::after {
    display: none;
  }
}

.casestudy-list01 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}
@media (max-width: 767px) {
  .casestudy-list01 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .casestudy-list01 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}
.casestudy-list01-box--top {
  border-radius: 10px;
}
.casestudy-list01-box--top img {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.casestudy-list01-box--bottom {
  padding-top: 2rem;
}
.casestudy-list01-box--bottom .tag-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  gap: 1.2rem;
}
.casestudy-list01-box--bottom .tag-list span a {
  background-color: #E9ECF4;
  color: #5E5F7E;
  font-size: 1.3rem;
  padding: 0.6rem 2rem;
  word-break: keep-all;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
}
.casestudy-list01-box--bottom h3 {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.casestudy-list01-box--bottom h3 a {
  color: #222;
  text-decoration: none;
}
@media (max-width: 1023px) {
  .casestudy-list01-box--bottom h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .casestudy-list01-box--bottom h3 {
    font-size: 1.6rem;
  }
}
.casestudy-list01-box--bottom .name {
  font-size: clamp(1.4rem, 1.6vw, 1.6rem);
  color: #333;
}

/*movie
-----------------------------------------------------*/
.movie-box {
  border-radius: 10rem 0 0 0;
  box-shadow: 0 0 30px 0px rgba(0, 0, 0, 0.12);
  padding: 9rem;
  position: relative;
}
@media (max-width: 767px) {
  .movie-box {
    padding: 8rem 4rem;
    border-radius: 6rem 0 0 0;
  }
}
@media (max-width: 575px) {
  .movie-box {
    padding: 6rem 2rem;
    border-radius: 4rem 0 0 0;
  }
}
.movie-box--wrap {
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 1000/580;
  margin: 0 auto;
}
.movie-box--wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.movie-box--text {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: -1;
}

/*top-parker
-----------------------------------------------------*/
.top-parker--box {
  margin-inline: auto;
  max-width: 1400px;
  width: 100%;
  display: flex;
}
@media (max-width: 1023px) {
  .top-parker--box {
    flex-wrap: wrap;
  }
}
.top-parker--box-l {
  width: 50%;
}
@media (max-width: 1023px) {
  .top-parker--box-l {
    width: 100%;
  }
}
.top-parker--box-l img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.top-parker--box-r {
  background-color: #D1B461;
  padding: 6rem;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .top-parker--box-r {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .top-parker--box-r {
    padding: 6rem 4rem;
  }
}
@media (max-width: 575px) {
  .top-parker--box-r {
    padding: 4rem 2rem;
  }
}
.top-parker--box-r::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-top: 60px solid transparent;
  border-right: 60px solid #222;
}
.top-parker--box-r h2 {
  font-size: 3.2rem;
  line-height: 1.4;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .top-parker--box-r h2 {
    font-size: 2.6rem;
  }
}
@media (max-width: 575px) {
  .top-parker--box-r h2 {
    font-size: 2.2rem;
  }
}

/*top-news
-----------------------------------------------------*/
.news ul.news-list li {
  border-bottom: 1px solid #EDEDED;
  display: flex;
  padding: 3.5rem 0;
  gap: 1rem 2rem;
}
@media (max-width: 575px) {
  .news ul.news-list li {
    flex-wrap: wrap;
  }
}
.news ul.news-list li:first-of-type a {
  padding-top: 0;
}
.news ul.news-list li a {
  text-decoration: none;
  color: #222;
}
.news ul.news-list li .title-top {
  display: flex;
  gap: 2rem;
}
@media (max-width: 575px) {
  .news ul.news-list li .title-top {
    width: 100%;
  }
}
.news ul.news-list li .day {
  color: #8E8E8E;
  word-break: keep-all;
}
.news ul.news-list li .cat {
  display: flex;
  gap: 1rem;
}
.news ul.news-list li .cat a {
  display: flex;
  background-color: #E9ECF4;
  color: #5E5F7E;
  font-size: 1.3rem;
  padding: 0.6rem 2rem;
  word-break: keep-all;
  font-weight: bold;
  border-radius: 50px;
  line-height: 1.5;
}
.news ul.news-list li h3 {
  font-weight: 400;
  font-size: 1.6rem;
}
@media (max-width: 575px) {
  .news ul.news-list li h3 {
    font-size: 1.4rem;
  }
}

.top-news {
  gap: 0 8%;
}
@media (max-width: 1023px) {
  .top-news {
    flex-wrap: wrap;
  }
}
.top-news .col01 {
  width: 380px;
}
@media (max-width: 1023px) {
  .top-news .col01 {
    width: 100%;
  }
}
.top-news .col02 {
  width: 100%;
}

/*top-column
-----------------------------------------------------*/
.top-column {
  position: relative;
}
.top-column::before {
  content: "";
  height: 630px;
  width: 100%;
  background: linear-gradient(to right, #1D1F87, #1D5E87);
  position: absolute;
  top: 0;
  z-index: -1;
}
.top-column::after {
  content: "";
  width: 10rem;
  height: 100%;
  background-color: #FFF;
  position: absolute;
  top: -1px;
  right: 0;
  z-index: -1;
}
@media (max-width: 1430px) {
  .top-column::after {
    display: none;
  }
}

.column-list01 {
  background-color: #FFF;
  border-radius: 5px;
  padding: 8rem 10rem;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.08);
  max-width: 1300px;
  margin-left: auto;
}
@media (max-width: 1023px) {
  .column-list01 {
    padding: 6rem 4rem;
  }
}
@media (max-width: 575px) {
  .column-list01 {
    padding: 6rem 2rem;
  }
}
.column-list01--box {
  padding: 4rem 0;
  border-bottom: 1px solid #EDEDED;
}
.column-list01--box:first-of-type {
  padding-top: 0;
}
.column-list01--box:last-of-type {
  border-bottom: 0;
}
.column-list01--box a {
  display: flex;
  gap: 2rem 3.5rem;
  text-decoration: none;
  color: #222;
}
@media (max-width: 767px) {
  .column-list01--box a {
    flex-wrap: wrap;
  }
}
.column-list01--box a h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}
@media (max-width: 575px) {
  .column-list01--box a h3 {
    font-size: 1.8rem;
  }
}
.column-list01--box a p {
  font-size: 1.5rem;
}
@media (max-width: 575px) {
  .column-list01--box a p {
    font-size: 1.4rem;
  }
}
.column-list01--box a .img {
  max-width: 329px;
  width: 100%;
  aspect-ratio: 329/214;
  overflow: hidden;
  border: solid 1px #E4E4E4;
}
@media (max-width: 575px) {
  .column-list01--box a .img {
    margin: auto;
  }
}
.column-list01--box a .img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.column-list01--box a .text {
  width: 100%;
}
.column-list01--box a .arrow {
  content: "";
  background-image: url(../images/common/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 36px;
  height: 36px;
  display: block;
  margin-left: auto;
  width: 100%;
  margin-top: auto;
}

/*aboutus
-----------------------------------------------------*/
.aboutus {
  background-color: #F6F6F6;
  position: relative;
  margin-top: 10rem;
}
.aboutus::after {
  background-color: #F6F6F6;
  position: absolute;
  width: 100%;
  height: 300px;
  z-index: -1;
  bottom: -26rem;
  content: "";
}
.aboutus-box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .aboutus-box {
    flex-wrap: wrap;
    gap: 3rem;
  }
}
.aboutus .text {
  width: 40%;
}
@media (max-width: 1023px) {
  .aboutus .text {
    width: 100%;
  }
}
.aboutus .img {
  position: relative;
  right: calc((100vw - 100%) / -2);
  width: 50vw;
  max-width: none;
  margin-top: -14rem;
}
@media (max-width: 1023px) {
  .aboutus .img {
    right: 0;
    width: 100%;
    margin-top: 0;
  }
}
.aboutus .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/*top-contact
-----------------------------------------------------*/
.top-contact--box {
  background: linear-gradient(to right, #1D1F87, #1D5E87);
  position: relative;
  border-radius: 10px;
  z-index: 0;
  overflow: hidden;
}
.top-contact--box::after {
  content: "";
  background-image: url(../images/top/bg-contact.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.top-contact--box .h-sec-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.top-contact--box .h-sec-wrap .h-sec01 {
  margin: 0;
}
.top-contact--box .mail-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  line-height: 1.4;
}
.top-contact--box--top {
  padding: 8rem 10rem;
}
@media (max-width: 1260px) {
  .top-contact--box--top {
    padding: 6rem 4rem;
  }
}
@media (max-width: 575px) {
  .top-contact--box--top {
    padding: 4rem 2rem;
  }
}
.top-contact--box--top .h-sec01 .jp {
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .top-contact--box--top .h-sec01 .jp {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) {
  .top-contact--box--top .h-sec01 .jp {
    font-size: 2.2rem;
  }
}
@media (max-width: 1023px) {
  .top-contact--box--top .h-sec01 .en {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .top-contact--box--top .h-sec01 .en {
    font-size: 1.8rem;
  }
}
.top-contact--box--bottom {
  background-color: rgba(25, 81, 150, 0.8);
  border-radius: 0 0 10px 10px;
}
.top-contact--box--bottom .banner-box {
  display: flex;
  gap: 3rem;
  padding: 5rem 9rem;
}
@media (max-width: 1260px) {
  .top-contact--box--bottom .banner-box {
    padding: 4rem;
  }
}
@media (max-width: 575px) {
  .top-contact--box--bottom .banner-box {
    padding: 4rem 2rem;
  }
}
@media (max-width: 767px) {
  .top-contact--box--bottom .banner-box {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
.top-contact--box--bottom .banner-box > * {
  flex: 1;
}

/*top-company
-----------------------------------------------------*/
.top-company {
  padding-bottom: 12rem;
}
.top-company .company-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8rem 5rem;
}
@media (max-width: 767px) {
  .top-company .company-list {
    gap: 5rem;
  }
}
.top-company .company-list--box {
  flex: 0 0 calc((100% - 5rem) / 2);
}
@media (max-width: 767px) {
  .top-company .company-list--box {
    flex: 0 0 100%;
  }
}
.top-company .company-list--box .en {
  color: #0099DA;
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .top-company .company-list--box .en {
    font-size: 1.8rem;
  }
}
.top-company .company-list--box h3 {
  font-size: 2.6rem;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .top-company .company-list--box h3 {
    font-size: 2.2rem;
  }
}
@media (max-width: 767px) {
  .top-company .company-list--box h3 {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .top-company .company-list--box h3 {
    font-size: 1.8rem;
  }
}
.top-company .company-list--box .img {
  margin-top: 1.5rem;
}
.top-company .company-list--box .text {
  padding: 2rem 1rem 0 1rem;
}
.top-company .company-list--box .text-01 {
  display: flex;
  align-items: center;
  gap: 1rem 2.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.top-company .company-list--box .text-01 p {
  font-size: 1.8rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 0 !important;
}
@media (max-width: 767px) {
  .top-company .company-list--box .text-01 p {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .top-company .company-list--box .text-01 p {
    font-size: 1.4rem;
  }
}
.top-company .company-list--box .text-01 p span {
  color: #8D7222;
  border: 1px solid #8D7222;
  font-size: 1.4rem;
  border-radius: 3px;
  padding: 0.2rem 1rem;
  width: 78px;
  box-sizing: border-box;
  text-align: center;
}
.top-company .company-list--box .text-02 {
  display: flex;
  align-items: center;
  gap: 1rem 2.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.top-company .company-list--box .text-02 p {
  font-size: 1.8rem;
  margin-top: 0 !important;
}
@media (max-width: 767px) {
  .top-company .company-list--box .text-02 p {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .top-company .company-list--box .text-02 p {
    font-size: 1.4rem;
  }
}
.top-company .company-list--box .text-03 {
  display: flex;
  align-items: center;
  gap: 1rem 2.5rem;
  flex-wrap: wrap;
}
.top-company .company-list--box .text-03 p {
  margin-top: 0 !important;
}
.top-company .company-list--box .text-03 p span {
  color: #1D1F87;
  border: 1px solid #1D1F87;
  font-size: 1.4rem;
  border-radius: 3px;
  padding: 0.6rem 1.5rem;
  box-sizing: border-box;
  text-align: center;
}
.top-company .company-list--box .text-03 p img {
  width: 132px;
}

/*footer
-----------------------------------------------------*/
footer {
  background-color: #FAFAFA;
}
footer .footer-inner .footer-top {
  padding: 8rem 0 5rem 0;
  border-top: 1px solid #EDEDED;
  border-bottom: 1px solid #EDEDED;
}
@media (max-width: 575px) {
  footer .footer-inner .footer-top {
    padding-bottom: 0;
  }
}
footer .footer-inner .backtop {
  margin-top: 2rem;
}
@media (max-width: 575px) {
  footer .footer-inner .backtop {
    padding: 1.5rem 0;
    background: #1D1F87;
  }
}
footer .footer-inner .backtop .backtop-btn {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 575px) {
  footer .footer-inner .backtop .backtop-btn {
    justify-content: center;
  }
}
footer .footer-inner .backtop .backtop-btn a {
  text-decoration: none;
  color: #222;
}
@media (max-width: 575px) {
  footer .footer-inner .backtop .backtop-btn a {
    color: #fff;
  }
}
footer .footer-inner .backtop .backtop-btn span {
  display: block;
}
footer .footer-inner .backtop .backtop-btn span::after {
  content: "";
  background-image: url(../images/common/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  margin-left: 1rem;
  display: inline-block;
  vertical-align: middle;
  transform: rotate(-90deg);
}
@media (max-width: 575px) {
  footer .footer-inner .backtop .backtop-btn span::after {
    margin-left: 0;
  }
}
footer .footer-inner .footer__nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 0 2rem;
  padding: 0 0 3rem 0;
}
@media (max-width: 767px) {
  footer .footer-inner .footer__nav {
    flex-wrap: wrap;
  }
}
footer .footer-inner .footer__nav a {
  display: block;
  line-height: 1.5;
}
footer .footer-inner .footer__nav .nav-wrap {
  flex: 0 0 calc((100% - 6rem) / 4);
  /* 4列・gap2rem×3 = 6rem */
}
@media (max-width: 767px) {
  footer .footer-inner .footer__nav .nav-wrap {
    flex: 0 0 calc((100% - 2rem) / 2);
  }
}
@media (max-width: 575px) {
  footer .footer-inner .footer__nav .nav-wrap {
    flex: 0 0 100%;
  }
}
footer .footer-inner .footer__nav ul li a {
  padding: 1.5rem 0;
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 1.8rem;
}
footer .footer-inner .footer__nav ul li > .sub-menu a {
  position: relative;
  padding: 1rem 0 1rem 2.5rem;
  text-decoration: none;
  color: #222;
  font-size: 1.6rem;
  font-weight: 400;
}
footer .footer-inner .footer__nav ul li > .sub-menu a:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  color: #222;
  background: #222;
  width: 16px;
  height: 1px;
}
footer .footer-inner .footer-bottom {
  padding: 4rem 0;
}
@media (max-width: 767px) {
  footer .footer-inner .footer-bottom .flex {
    flex-direction: column;
    gap: 2rem;
  }
}
footer .footer-inner .footer-bottom .col01 {
  max-width: 296px;
  width: 100%;
}
footer .footer-inner .footer-bottom .col02 {
  text-align: right;
}
@media (max-width: 767px) {
  footer .footer-inner .footer-bottom .col02 {
    text-align: center;
  }
}
footer .footer-inner .footer-bottom .col02 a {
  text-decoration: none;
  color: #222;
}
footer .footer-inner .footer-bottom .col02 .copy {
  font-size: 1.4rem;
  color: #5B5B5B;
  margin-top: 2rem;
}

/*page-service
-----------------------------------------------------*/
.page-service-lead {
  padding-bottom: 10rem;
}
@media (max-width: 767px) {
  .page-service-lead {
    padding-bottom: 6rem;
  }
}
.page-service-lead-txt {
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  text-align: center;
  font-weight: 600;
}
.page-service-lead-txt2 {
  line-height: 2.5;
}
.page-service-list {
  padding: 10rem 0 13rem 0;
}
@media (max-width: 767px) {
  .page-service-list {
    padding: 6rem 0 8rem 0;
  }
}
.page-service-list-item {
  position: relative;
  padding: 4rem;
  border-radius: 10px;
  border: solid 1px #D5DAE8;
  box-sizing: border-box;
}
.page-service-list-item ::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  border-radius: 10px 0 0 10px;
  background: linear-gradient(to bottom, #1D1F87, #1D5E87);
}
@media (max-width: 767px) {
  .page-service-list-item {
    padding: 4rem 2rem 4rem 3rem;
  }
}
.page-service-list li + li {
  margin-top: 3rem;
}
.page-service-list h2 {
  margin: 0;
  padding: 0;
  font-weight: 600;
  color: #222;
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  background: none;
}
.page-service-list .sub a {
  font-weight: 600;
  font-size: clamp(1.8rem, 2vw, 2rem);
  color: #0099DA;
  text-decoration: none;
}
.page-service-list dt {
  max-width: 420px;
}
@media (max-width: 1023px) {
  .page-service-list dt {
    max-width: 300px;
  }
}
@media (max-width: 767px) {
  .page-service-list dt {
    margin: 0 auto;
    max-width: 420px;
  }
}
.page-service-list dd {
  flex: 1;
}
.page-service-list dd p {
  line-height: 2;
}
.page-service .mdl-tit {
  margin: 3rem 0;
  padding: 0 0 0 2rem;
  font-size: clamp(2.4rem, 3.4vw, 3.4rem);
  border-left: solid 8px #1D1F87;
  border-bottom: none;
  font-weight: 600;
  line-height: 1.5;
}
.page-service .mdl-tit::before {
  content: none;
}
@media (max-width: 767px) {
  .page-service .mdl-tit {
    margin: 2rem 0;
  }
}
.page-service .mdl-list {
  padding-left: 3rem;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .page-service .mdl-list {
    padding-left: 2rem;
  }
}
.page-service .mdl-list li {
  list-style-type: disc;
}
.page-service .mdl-list li + li {
  margin-top: 1rem;
}
.page-service .h2-tit {
  margin: 0;
  padding: 0;
  text-align: center;
  color: #fff;
  flex: 1;
  font-size: clamp(2.4rem, 3.6vw, 3.8rem);
  background: none;
}
.page-service .h2-tit .sub {
  font-size: clamp(1.8rem, 2.2vw, 2.2rem);
  display: block;
}
.page-service .titbg {
  padding-top: 10rem;
  position: relative;
}
@media (max-width: 767px) {
  .page-service .titbg {
    padding-top: 6rem;
  }
}
.page-service .titbg::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 440px;
  background: url(../images/service/bg-3.png) no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: 0;
}
.page-service .titbg > .container-lg {
  position: relative;
  z-index: 2;
}
.page-service .solve {
  margin-top: 8rem;
  padding: 6rem 4rem;
  background: #fff;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .page-service .solve {
    margin-top: 4rem;
    padding: 4rem 2rem;
  }
}
.page-service .solve-tit {
  display: flex;
  justify-content: center;
}
.page-service .solve-tit-in {
  display: block;
  position: relative;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1.5;
}
.page-service .solve-tit-in::before {
  content: "";
  position: absolute;
  display: block;
  margin-right: 3rem;
  background: #000;
  left: -3rem;
  bottom: 0;
  width: 3px;
  height: 35px;
  transform: rotate(-35deg);
}
.page-service .solve-tit-in::after {
  content: "";
  position: absolute;
  display: block;
  margin-left: 3rem;
  background: #000;
  right: -3rem;
  bottom: 0;
  width: 3px;
  height: 35px;
  transform: rotate(35deg);
}
.page-service .solve-tit-in span {
  color: #0099DA;
}
.page-service .solve ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 6rem auto;
}
@media (max-width: 767px) {
  .page-service .solve ul {
    margin: 4rem auto;
  }
}
@media (max-width: 575px) {
  .page-service .solve ul {
    display: block;
  }
}
.page-service .solve ul li {
  padding: 3%;
  flex: 0 1 calc(36% - 40px);
  /* 3列 */
  max-width: 300px;
  aspect-ratio: 1/1;
  background: linear-gradient(to bottom, #1D1F87, #1D5E87);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  align-items: center;
  font-size: clamp(1.8rem, 1.8vw, 2rem);
  font-weight: 500;
  box-sizing: border-box;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 915px) {
  .page-service .solve ul li {
    flex: 0 1 calc(54% - 40px);
    /* 3列 */
  }
}
@media (max-width: 575px) {
  .page-service .solve ul li {
    display: block;
    margin: 0 auto;
    padding: 2rem;
    max-width: 230px;
  }
  .page-service .solve ul li + li {
    margin-top: 2rem;
  }
}
.page-service .solve ul li .num {
  margin-bottom: 2rem;
  position: relative;
  font-size: clamp(2.4rem, 3vw, 3rem);
}
.page-service .solve ul li .num::after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 45px;
  height: 1px;
  background: #fff;
}
.page-service .service-list h4 {
  margin: 0;
  padding-bottom: 2rem;
  font-size: clamp(2.2rem, 2.8vw, 2.8rem);
  color: #1D4187;
  line-height: 1.5;
  font-weight: 600;
}
.page-service .service-list h5 {
  font-size: clamp(1.8rem, 2vw, 2rem);
  font-weight: 600;
}
.page-service .service-list li {
  padding: 3rem 0 6rem 0;
  border-bottom: solid 1px #DFDFDF;
}
.page-service .service-list dt {
  max-width: 460px;
}
@media (max-width: 1023px) {
  .page-service .service-list dt {
    max-width: 310px;
  }
}
@media (max-width: 767px) {
  .page-service .service-list dt {
    margin: 0 auto;
    max-width: 460px;
  }
}
.page-service .service-list dd {
  flex: 1;
}
.page-service .service-list dd p {
  line-height: 2;
}
.page-service .service-list .btn01 {
  max-width: 460px;
}
.page-service .assembly {
  padding-bottom: 16rem;
}
@media (max-width: 767px) {
  .page-service .assembly {
    padding-bottom: 11rem;
  }
}
.page-service .assembly .btn-area {
  padding-top: 8rem;
  justify-content: space-evenly;
}
@media (max-width: 767px) {
  .page-service .assembly .btn-area {
    margin: 0 auto;
  }
}
.page-service .assembly .btn-area li {
  width: 45%;
}
@media (max-width: 767px) {
  .page-service .assembly .btn-area li {
    margin: 0 auto;
    width: 100%;
    max-width: 540px;
  }
  .page-service .assembly .btn-area li + li {
    margin-top: 4rem;
  }
}
.page-service .assembly .btn-2 a {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 540px;
  padding: 3rem 2rem;
  text-decoration: none;
  box-sizing: border-box;
  border-radius: 5px;
  color: #222222;
  background: #D1B461;
  font-weight: 300;
}
.page-service .assembly .btn-2 a::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/service/arrow.svg) no-repeat left center;
  background-size: cover;
  width: 40px;
  height: 40px;
  right: 15px;
  top: 50%;
  margin-top: -20px;
}
.page-service .assembly .btn-3 a {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 540px;
  padding: 3rem 2rem;
  text-decoration: none;
  box-sizing: border-box;
  border-radius: 5px;
  color: #fff;
  background: #1C1C1C;
  font-weight: 300;
}
.page-service .assembly .btn-3 a::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/service/arrow.svg) no-repeat left center;
  background-size: cover;
  width: 40px;
  height: 40px;
  right: 15px;
  top: 50%;
  margin-top: -20px;
}
.page-service .repair {
  padding-bottom: 10rem;
}
.page-service .repair .service-list dl {
  padding-top: 4rem;
}
@media (max-width: 767px) {
  .page-service .repair .service-list dl {
    padding-top: 0;
  }
}
.page-service .repair li:last-child {
  border: none;
}
.page-service .movielink {
  padding: 8rem 0 6rem 0;
}
.page-service .movielink a {
  border: solid 1px #0E78BA;
  text-decoration: none;
  color: #fff;
}
.page-service .movielink-img {
  max-width: 410px;
}
@media (max-width: 1023px) {
  .page-service .movielink-img {
    max-width: 300px;
  }
}
@media (max-width: 767px) {
  .page-service .movielink-img {
    max-width: 410px;
    margin: 0 auto 2rem auto;
  }
}
.page-service .movielink-txt {
  position: relative;
  display: flex;
  padding: 4rem 6rem 4rem 4rem;
  align-items: center;
  flex: 1;
  font-weight: 500;
  box-sizing: border-box;
  font-size: clamp(1.8rem, 2.3vw, 2.4rem);
  background: linear-gradient(to bottom, #1D1F87, #1D5E87);
}
@media (max-width: 767px) {
  .page-service .movielink-txt {
    padding: 2rem 6rem 2rem 2rem;
  }
}
.page-service .movielink-txt::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/service/arrow.svg) no-repeat left center;
  background-size: cover;
  width: 40px;
  height: 40px;
  right: 15px;
  top: 50%;
  margin-top: -20px;
}
@media (max-width: 767px) {
  .page-service .movielink-txt::before {
    width: 30px;
    height: 30px;
  }
}
.page-service .startup {
  padding-bottom: 10rem;
}
.page-service .startup-tit {
  display: flex;
  align-items: center;
  width: 100%;
  height: 400px;
  background: url(../images/service/bg-2.jpg) no-repeat;
  background-size: cover;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .page-service .startup-tit {
    height: 300px;
  }
}
.page-service .startup-lead {
  font-size: clamp(1.8rem, 2vw, 2rem);
  font-weight: 600;
  color: #1D4187;
}
.page-service .startup dl {
  padding-top: 10rem;
}
@media (max-width: 767px) {
  .page-service .startup dl {
    padding-top: 6rem;
  }
}
.page-service .startup dl dd {
  flex: 1;
}
.page-service .startup dl dt {
  max-width: 450px;
}
@media (max-width: 1023px) {
  .page-service .startup dl dt {
    max-width: 310px;
  }
}
@media (max-width: 767px) {
  .page-service .startup dl dt {
    max-width: 450px;
    margin: 0 auto;
  }
}
.page-service .startup ul {
  margin-top: 3rem;
  padding: 4rem 4rem 4rem 6rem;
  border: solid 1px #D5DAE8;
  box-sizing: border-box;
  line-height: 2;
}
.page-service .startup ul li {
  list-style: disc;
}
.page-service .startup .btn-area {
  margin-top: 10rem;
  display: flex;
  justify-content: center;
}
.page-service .startup .btn-area .btn01 {
  max-width: 520px;
}
@media (max-width: 767px) {
  .page-service .startup .btn-area {
    margin-top: 6rem;
  }
}

/*faq
-----------------------------------------------------*/
.faq-container {
  width: 100%;
  box-sizing: border-box;
}
.faq-container .faq-title {
  cursor: pointer;
  font-size: 2.2rem;
  padding: 3rem 9rem 3rem 3rem;
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: baseline;
  gap: 1rem 2rem;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .faq-container .faq-title {
    font-size: 1.8rem;
    padding: 1.5rem 7rem 1.5rem 2rem;
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .faq-container .faq-title {
    font-size: 1.6rem;
    padding: 1.5rem 6rem 1.5rem 2rem;
  }
}
.faq-container .faq-title .open_btn {
  position: absolute;
  top: 4rem;
  right: 3.5rem;
  width: 20px;
  height: 18px;
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .faq-container .faq-title .open_btn {
    top: 3rem;
  }
}
@media (max-width: 575px) {
  .faq-container .faq-title .open_btn {
    right: 2.5rem;
  }
}
.faq-container .faq-title .open_btn::before, .faq-container .faq-title .open_btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 2px);
  width: 4px;
  height: 18px;
  background-color: #1d1f87;
  transform-origin: 50% calc(100% - 2px);
  transition: transform 0.3s ease;
}
.faq-container .faq-title .open_btn::before {
  transform: rotate(45deg);
}
.faq-container .faq-title .open_btn::after {
  transform: rotate(-45deg);
}
.faq-container {
  /* open時 */
}
.faq-container .js-faq-title.open {
  border-radius: 20px 20px 0 0;
}
.faq-container .js-faq-title.open .open_btn {
  transform: rotate(180deg);
}
.faq-container .faq-text {
  display: none;
  padding: 3rem 3rem 4rem 3rem;
  box-sizing: border-box;
  border-radius: 0 0 20px 20px;
  gap: 2rem;
  align-items: baseline;
}
@media (max-width: 767px) {
  .faq-container .faq-text {
    font-size: 1.6rem;
    padding: 1.5rem 2rem 2.5rem 2rem;
  }
}
@media (max-width: 575px) {
  .faq-container .faq-text {
    font-size: 1.4rem;
  }
}
.faq-container .faq-text.open .flex {
  gap: 1rem 2rem;
  align-items: baseline;
}
@media (max-width: 767px) {
  .faq-container .faq-text.open .flex {
    display: block;
    margin-top: 2rem;
  }
}
.faq-container dl {
  margin-bottom: 2rem;
}
.faq-container dt {
  font-weight: bold;
  background-color: #F6F6F6;
}
.faq-container dt .en {
  position: relative;
}
.faq-container dt .en::after {
  content: "Q";
  color: #fff;
  font-size: 2.5rem;
  background-color: #1C1C1C;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-container dd {
  background-color: #F6F6F6;
  border-top: 1px solid #DFDFDF;
}
.faq-container dd .en {
  position: relative;
  margin-right: 5rem;
}
.faq-container dd .en::after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "A";
  color: #fff;
  font-size: 2.5rem;
  background-color: #D1B461;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .faq-container .answer {
    margin-top: 3rem;
  }
}
.faq-container .answer ul {
  list-style: disc;
  padding-left: 2rem;
}
.faq-container table th {
  background: #E9ECF4;
  text-align: left;
  border-right: 1px solid #DBE2F5;
  border-left: 1px solid #DBE2F5;
}

body.qa .page-sec td:first-child {
  background: #FFF;
  text-align: initial;
  width: auto;
}
@media (max-width: 767px) {
  body.qa .table-scroll {
    overflow-x: auto;
  }
  body.qa .table-scroll table {
    min-width: 600px;
    border-collapse: collapse;
  }
  body.qa .table-scroll table {
    display: table;
  }
  body.qa .table-scroll thead {
    display: table-header-group;
  }
  body.qa .table-scroll tbody {
    display: table-row-group;
  }
  body.qa .table-scroll tr {
    display: table-row;
  }
  body.qa .table-scroll th,
  body.qa .table-scroll td {
    display: table-cell;
  }
}

/*access
-----------------------------------------------------*/
.pageaccess-link {
  gap: 1.5rem;
  width: 100%;
}
@media (max-width: 1199px) {
  .pageaccess-link {
    flex-wrap: wrap !important;
  }
}
.pageaccess-link .wp-block-button__link {
  border-width: 1px !important;
  padding: 1.5rem 5rem !important;
}
@media (max-width: 1599px) {
  .pageaccess-link .wp-block-button__link {
    padding: 1.5rem 3rem !important;
  }
}
@media (max-width: 1023px) {
  .pageaccess-link .wp-block-button__link {
    font-size: 1.6rem !important;
  }
}

.access-btn {
  margin-bottom: 9rem;
}
.access-btn a {
  border: 1px solid #1D1F87;
  background-color: #FFF;
  border-radius: 100px;
  box-sizing: border-box;
  max-width: 352px;
  width: 100%;
  font-weight: bold;
  text-decoration: none;
  color: #1D1F87;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem 1.2rem 3rem;
  position: relative;
  margin: auto;
}
.access-btn a::after {
  content: "";
  background-image: url(../images/common/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 36px;
  height: 36px;
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  body.access .has-fixed-layout th {
    display: block !important;
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  body.access .has-fixed-layout th,
  body.access .has-fixed-layout td {
    padding: 2rem !important;
  }
}

/*company
-----------------------------------------------------*/
body.company .anchor-btn-wrap {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 4rem 0;
  flex-wrap: wrap;
}
body.company .anchor-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 4rem;
  border-radius: 999px;
  border: 1px solid #1D1F87;
  color: #1D1F87;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  max-width: 440px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}
body.company {
  /* ▼アイコン */
}
body.company .anchor-btn .arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid #1D1F87;
  border-bottom: 2px solid #1D1F87;
  transform: rotate(45deg);
  position: absolute;
  right: 30px;
}
body.company {
  /* hover */
}
body.company .anchor-btn:hover {
  background: #1D1F87;
  color: #fff;
}
body.company .anchor-btn:hover .arrow {
  border-color: #fff;
}

.company-thumb {
  max-width: 1600px;
  width: 100%;
  margin: auto;
}

.company-about-list {
  list-style: none;
  margin: 0 0 12rem 0;
  padding: 0;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .company-about-list {
    margin: 0 0 6rem 0;
  }
}
@media (max-width: 575px) {
  .company-about-list {
    font-size: 1.6rem;
  }
}
.company-about-list__item {
  display: flex;
  border-bottom: 1px solid #DFDFDF;
}
.company-about-list__head {
  width: 30%;
  padding: 4rem 0 4rem 4rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .company-about-list__head {
    padding: 2rem 0 2rem 1rem;
  }
}
.company-about-list__text {
  width: 70%;
  padding: 4rem 3rem 4rem 2rem;
}
@media (max-width: 767px) {
  .company-about-list__text {
    padding: 2rem 0;
  }
}

.company-history__item:first-child {
  padding-top: 0rem;
}

.company-history__item {
  display: grid;
  grid-template-columns: 120px 40px 1fr;
  position: relative;
  padding: 2.5rem 0;
}
@media (max-width: 575px) {
  .company-history__item {
    grid-template-columns: 80px 40px 1fr;
    padding: 1.5rem 0;
  }
}

.company-history__year {
  font-size: 4rem;
  font-weight: 700;
  color: #0099DA;
  text-align: right;
  padding-right: 2rem;
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .company-history__year {
    font-size: 2.4rem;
  }
}

/* 縦線 */
.company-history__line {
  position: relative;
  width: 1px;
  margin: 0 auto;
}

/* ● */
.company-history__line::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: #fff;
  border: 4px solid #0099DA;
  border-radius: 50%;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ●の下だけ線を出す */
.company-history__item:not(:last-child) .company-history__line::after {
  content: "";
  position: absolute;
  top: 40px;
  /* ●の下から */
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 160%;
  background: #DFDFDF;
}
@media (max-width: 575px) {
  .company-history__item:not(:last-child) .company-history__line::after {
    top: 30px;
  }
}

@media (max-width: 575px) {
  .company-history__item:nth-last-child(2) .company-history__line::after {
    top: 40px;
    height: 110%;
  }
}

.company-history__content {
  margin-top: 2rem;
  padding-left: 2rem;
  font-size: 1.8rem;
}
@media (max-width: 575px) {
  .company-history__content {
    margin-top: 0;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
  }
}

/*message
-----------------------------------------------------*/
body.message .message_flex {
  gap: 4rem 8rem;
}
@media (max-width: 1023px) {
  body.message .message_flex {
    gap: 4rem;
  }
}
body.message h2 {
  margin: 3rem 0 6rem 0;
  padding: 3rem 0 0 0;
  background: none;
  color: inherit;
  font-weight: normal;
  font-size: 3.8rem;
  line-height: normal;
  position: relative;
}
@media (max-width: 1023px) {
  body.message h2 {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) {
  body.message h2 {
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
}
@media (max-width: 575px) {
  body.message h2 {
    font-size: 2.2rem;
  }
}
body.message h2::before {
  content: "";
  background-image: url(../images/message/message.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -3rem;
  left: 0;
  width: 100%;
  height: 100%;
}
body.message .message_name div {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: baseline;
}
body.message .message_name div p {
  margin: 0;
}
body.message .message_img img {
  border-radius: 20px;
}

/*recruit
-----------------------------------------------------*/
body.recruit .recruit-w-img {
  width: 100%;
  margin: 9rem auto;
}
body.recruit .h-recruit {
  color: #222 !important;
  border-left: 6px solid #1D1F87;
  padding-left: 1.5rem;
  margin-bottom: 3rem !important;
}
body.recruit .recruit-box {
  border: 1px solid #D5DAE8;
  border-radius: 5px;
  padding: 5rem 6rem;
}
@media (max-width: 767px) {
  body.recruit .recruit-box {
    padding: 4rem 3rem;
  }
}
body.recruit .recruit-box .workflow-list {
  list-style: none;
  margin: 0;
  padding-left: 40px;
  position: relative;
}
body.recruit .recruit-box .workflow-list::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: #dcdcdc;
  height: 87%;
}
@media (max-width: 767px) {
  body.recruit .recruit-box .workflow-list::before {
    height: 90%;
  }
}
@media (max-width: 575px) {
  body.recruit .recruit-box .workflow-list::before {
    height: 91%;
  }
}
body.recruit .recruit-box .workflow-list li {
  position: relative;
  padding-bottom: 3rem;
  line-height: 1.8;
}
body.recruit .recruit-box {
  /* ▼ 三角（デフォルト） */
}
body.recruit .recruit-box .workflow-list li::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 8px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 14px solid #0092D8;
}
body.recruit .recruit-box {
  /* 最後だけ丸に完全上書き */
}
body.recruit .recruit-box .workflow-list li:last-child::before {
  border: none;
  /* ← これ重要 */
  width: 14px;
  height: 14px;
  background: #fff;
  border: 3px solid #0092D8;
  border-radius: 50%;
  left: -35px;
  top: 5px;
}
body.recruit .recruit-box dl {
  list-style: 2.6;
  margin-top: 3rem;
}
body.recruit .recruit-box dl:first-of-type {
  margin-top: 0;
}
body.recruit .recruit-box dl dt {
  font-weight: bold;
}
body.recruit .recruit-flex {
  display: grid;
  gap: 1rem 2.5rem;
  margin-top: 3rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  body.recruit .recruit-flex {
    grid-template-columns: repeat(2, 1fr);
  }
}
body.recruit .recruit-flex div {
  padding: 0.5rem 0;
}
body.recruit .recruit-flex p {
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
}
@media (max-width: 575px) {
  body.recruit .recruit-flex p {
    font-size: 1.6rem;
  }
}

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

/*contact
-----------------------------------------------------*/
body.contact .anchor-btn-wrap {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 4rem 0;
  flex-wrap: wrap;
}
body.contact .anchor-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 4rem;
  border-radius: 999px;
  border: 1px solid #1D1F87;
  color: #1D1F87;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  max-width: 440px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}
body.contact {
  /* ▼アイコン */
}
body.contact .anchor-btn .arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid #1D1F87;
  border-bottom: 2px solid #1D1F87;
  transform: rotate(45deg);
  position: absolute;
  right: 30px;
}
body.contact {
  /* hover */
}
body.contact .anchor-btn:hover {
  background: #1D1F87;
  color: #fff;
}
body.contact .anchor-btn:hover .arrow {
  border-color: #fff;
}
body.contact .contact-flex {
  display: flex;
  gap: 3rem 6rem;
  margin-bottom: 9rem;
}
@media (max-width: 1023px) {
  body.contact .contact-flex {
    flex-wrap: wrap;
  }
}
body.contact .contact-flex:last-of-type {
  margin-bottom: 0;
}
body.contact .contact-flex--img {
  max-width: 490px;
  width: 100%;
}
@media (max-width: 767px) {
  body.contact .contact-flex--img {
    margin: auto;
  }
}
body.contact .contact-flex--text {
  width: 100%;
}
body.contact .contact-flex--text-top {
  border-bottom: 2px solid #BEBEBE;
  padding-bottom: 3rem;
}
body.contact .contact-flex--text-top p {
  margin-top: 0;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  body.contact .contact-flex--text-top p {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  body.contact .contact-flex--text-top p {
    font-size: 1.4rem;
  }
}
body.contact .contact-flex--text-top .tel {
  margin-bottom: 1rem;
  color: #1D1F87;
  font-weight: bold;
  font-size: 4.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 1023px) {
  body.contact .contact-flex--text-top .tel {
    font-size: 4rem;
  }
}
@media (max-width: 767px) {
  body.contact .contact-flex--text-top .tel {
    font-size: 3rem;
  }
}
@media (max-width: 575px) {
  body.contact .contact-flex--text-top .tel {
    font-size: 2.6rem;
  }
}
@media (max-width: 767px) {
  body.contact .contact-flex--text-top .tel img {
    width: 30px;
  }
}
@media (max-width: 575px) {
  body.contact .contact-flex--text-top .tel img {
    width: 25px;
  }
}
body.contact .contact-flex--text-bottom ul {
  list-style: disc;
  font-size: 1.8rem;
  padding: 3rem 0 0 2.5rem;
}
@media (max-width: 767px) {
  body.contact .contact-flex--text-bottom ul {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  body.contact .contact-flex--text-bottom ul {
    font-size: 1.4rem;
  }
}
body.contact .contact-flex--text-bottom ul li::marker {
  color: #1D1F87;
  /* 点の色 */
}

.mail-form-wrap iframe {
  width: 100%;
}

/*single
-----------------------------------------------------*/
.single-sec__title {
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1.5;
}
.single-sec__top .date-cat {
  display: flex;
}
@media (max-width: 575px) {
  .single-sec__top .date-cat {
    display: block;
  }
}
.single-sec__top .date-cat .date {
  padding-right: 2rem;
}
@media (max-width: 575px) {
  .single-sec__top .date-cat .date {
    display: block;
    padding-right: 0;
    margin-bottom: 1.5rem;
  }
}
.single-sec__top .date-cat .cat {
  flex: 1;
}
.single-sec__top .date-cat .cat a {
  display: inline-block;
  margin-bottom: 1rem;
  text-decoration: none;
  background-color: #E9ECF4;
  color: #5E5F7E;
  font-size: 1.3rem;
  padding: 0.6rem 2rem;
  word-break: keep-all;
  font-weight: bold;
  border-radius: 50px;
}
.single-sec__content {
  margin-bottom: 8rem;
}
.single-sec .eye-catch {
  max-width: 780px;
  margin: 4rem auto;
}
.single-sec .btn03 {
  text-align: center;
  max-width: 300px;
  margin-inline: auto;
}
.single-sec .cta a {
  position: relative;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
  padding: 2.5rem 6rem 2.5rem 2rem;
  line-height: 1.4;
  font-weight: 600;
  box-sizing: border-box;
  justify-content: center;
}
.single-sec .cta a::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../images/common/arrow-w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 26px;
  height: 26px;
  right: 1rem;
  top: 50%;
  margin-top: -13px;
}
.single-sec ul li {
  position: relative;
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.single-sec ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.5rem;
  background: #1D1F87;
  width: 5px;
  height: 5px;
  border-radius: 100px;
}
.single-sec ul.toc_list li::before {
  content: none;
}

.pagination {
  margin-top: 6rem;
}
.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.pagination ul li .current {
  display: flex;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  border: #1D1F87 1px solid;
  background: #1D1F87;
  color: #fff;
  align-items: center;
  justify-content: center;
}
.pagination ul li .dots {
  color: #1D1F87;
}
.pagination ul li a {
  display: flex;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  border: #1D1F87 1px solid;
  background: #fff;
  color: #1D1F87;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out;
}
.pagination ul li a:hover {
  background: #1D1F87;
  color: #fff;
}
.pagination ul li .next,
.pagination ul li .prev {
  display: none;
}

.categories {
  padding-bottom: 5rem;
}
.categories ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.categories ul li span {
  display: flex;
  padding: 0 4rem;
  height: 45px;
  border-radius: 100px;
  border: #1D1F87 1px solid;
  background: #1D1F87;
  color: #fff;
  align-items: center;
  justify-content: center;
}
.categories ul li a {
  display: flex;
  padding: 0 4rem;
  height: 45px;
  border-radius: 100px;
  border: #1D1F87 1px solid;
  background: #fff;
  color: #1D1F87;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out;
}
.categories ul li a:hover {
  background: #1D1F87;
  color: #fff;
}

.card-area ul {
  display: flex;
  padding-top: 3rem;
  flex-wrap: wrap;
  gap: 6rem 3rem;
  margin: 0;
  list-style: none;
}
.card-area ul li {
  box-sizing: border-box;
  flex: 0 0 calc((100% - 6rem) / 3);
}
@media (max-width: 767px) {
  .card-area ul li {
    flex: 0 0 calc((100% - 3rem) / 2);
  }
}
@media (max-width: 575px) {
  .card-area ul li {
    flex: 0 0 100%;
  }
}
.card-area__img {
  border: solid 1px #E9ECF4;
}
.card-area a {
  text-decoration: none;
}
.card-area a img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.card-area__text {
  padding: 1.5rem 0 1rem 0;
  line-height: 1.5;
  color: #333333;
}
.card-area__text .date {
  padding-bottom: 1rem;
  font-size: clamp(1.4rem, 1.6vw, 1.6rem);
}
.card-area__text .tit {
  font-size: clamp(1.5rem, 1.7vw, 1.7rem);
  font-weight: 600;
}
.card-area .cat a {
  display: inline-block;
  margin: 0.5rem 0;
  padding: 0rem 2rem;
  text-decoration: none;
  background-color: #E9ECF4;
  color: #5E5F7E;
  font-size: 1.3rem;
  word-break: keep-all;
  font-weight: bold;
  border-radius: 50px;
}

/*casestudy
-----------------------------------------------------*/
.casestudy-detail {
  padding: 10rem 0 15rem 0;
  background: #F6F6F6;
}
@media (max-width: 767px) {
  .casestudy-detail {
    padding-bottom: 10rem;
  }
}
.casestudy-detail .h2-tit {
  padding-bottom: 6rem;
  text-align: center;
  font-size: clamp(2.4rem, 3.6vw, 3.6rem);
}
.casestudy-detail .h2-tit .sub {
  display: block;
  font-size: clamp(1.8rem, 2.2vw, 2.2rem);
  text-transform: uppercase;
}
.casestudy-detail .h2-tit .sub::first-letter {
  color: #D1B462;
}
.casestudy-detail__box {
  margin-top: 5rem;
  padding: 5rem;
  line-height: 2;
  background: #fff;
}
@media (max-width: 767px) {
  .casestudy-detail__box {
    padding: 3rem 2rem;
  }
}
.casestudy-detail table {
  width: 100%;
  border-collapse: collapse;
  border: none;
  line-height: 1.5;
}
.casestudy-detail th,
.casestudy-detail td {
  padding: 3rem;
  border: none;
  box-sizing: border-box;
}
.casestudy-detail th {
  background: #E9ECF4;
  text-align: left;
  width: 30%;
}
.casestudy-detail td {
  background: #fff;
}
.casestudy-detail tr {
  border-bottom: 1px solid #DBE2F5;
  box-sizing: border-box;
}
.casestudy-detail tr:last-child {
  border: none;
}
@media (max-width: 767px) {
  .casestudy-detail table,
  .casestudy-detail tbody,
  .casestudy-detail tr,
  .casestudy-detail th,
  .casestudy-detail td {
    display: block;
    width: 100%;
  }
  .casestudy-detail th {
    padding: 2rem;
    border: none;
  }
  .casestudy-detail td {
    padding: 3rem 2rem;
    border: none;
  }
  .casestudy-detail th {
    width: 100%;
  }
}

/*strength
-----------------------------------------------------*/
.page-strength-lead {
  padding-top: 2rem;
  padding-bottom: 5rem;
}
@media (max-width: 767px) {
  .page-strength-lead {
    padding-bottom: 3rem;
  }
}
.page-strength-lead-txt {
  font-size: clamp(2.4rem, 3.6vw, 3.8rem);
  text-align: center;
  font-weight: 600;
}
@media (max-width: 575px) {
  .page-strength-lead-txt {
    text-align: left;
  }
}
@media (max-width: 1260px) {
  .page-strength-lead-txt br {
    display: block;
  }
}
.page-strength-lead-txt2 {
  line-height: 2.5;
}
.page-strength-list {
  padding: 10rem 0 13rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
  padding: 0;
  list-style: none;
}
@media (max-width: 575px) {
  .page-strength-list {
    display: block;
  }
}
.page-strength-list li {
  flex: 0 1 calc((100% - 80px) / 3);
  text-align: center;
  max-width: 350px;
}
@media (max-width: 1023px) {
  .page-strength-list li {
    flex: 0 1 calc((100% - 40px) / 2);
  }
}
@media (max-width: 575px) {
  .page-strength-list li {
    margin: 0 auto;
    padding-bottom: 1rem;
    width: 100%;
  }
}
.page-strength-list .listimg img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}
.page-strength-list .listtxt {
  font-size: clamp(1.8rem, 2vw, 2.2rem);
  font-weight: 600;
  line-height: 1.5;
}
.page-strength-about__in {
  padding: 3rem 5rem;
  background: #fff;
  border: solid 1px #1D1F87;
}
@media (max-width: 767px) {
  .page-strength-about__in {
    padding: 3rem 4rem;
  }
}
@media (max-width: 575px) {
  .page-strength-about__in {
    padding: 3rem 2rem;
  }
}
.page-strength-about__tit {
  font-size: clamp(2rem, 2.2vw, 2.2rem);
  color: #1D4187;
  line-height: 1.5;
  font-weight: 600;
}
.page-strength-about .mdl-list {
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .page-strength-about .mdl-list {
    padding-left: 1rem;
  }
}
.page-strength-about .mdl-list li {
  padding: 4rem 0;
}
.page-strength-about .mdl-list li + li {
  border-top: solid 1px #DADADA;
}
.page-strength-about .mdl-list dt {
  max-width: 330px;
}
@media (max-width: 1023px) {
  .page-strength-about .mdl-list dt {
    max-width: 250px;
  }
}
@media (max-width: 767px) {
  .page-strength-about .mdl-list dt {
    margin: 0 auto;
    max-width: 400px;
  }
}
.page-strength-about .mdl-list dd {
  flex: 1;
}
.page-strength .titbg {
  padding-top: 10rem;
  position: relative;
}
@media (max-width: 767px) {
  .page-strength .titbg {
    padding-top: 6rem;
  }
}
.page-strength .titbg::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 440px;
  background: url(../images/service/bg-3.png) no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: 0;
}
.page-strength .titbg > .container-lg {
  position: relative;
  z-index: 2;
}
.page-strength-history {
  padding: 15rem 0 5rem 0;
}
.page-strength-history__in {
  margin-top: 9rem;
}
.page-strength-history__in dl + dl {
  margin-top: 10rem;
}
@media (max-width: 767px) {
  .page-strength-history__in dl + dl {
    margin-top: 6rem;
  }
}
.page-strength-history__in dd {
  flex: 1;
}
.page-strength-history__in dt {
  width: 650px;
}
@media (max-width: 1260px) {
  .page-strength-history__in dt {
    width: 550px;
  }
}
@media (max-width: 1023px) {
  .page-strength-history__in dt {
    width: 380px;
  }
}
@media (max-width: 767px) {
  .page-strength-history__in dt {
    margin: 3rem auto 0 auto;
    width: 100%;
    max-width: 650px;
  }
}
.page-strength-history__tit {
  font-size: clamp(2.2rem, 2.8vw, 2.8rem);
  color: #1D4187;
  line-height: 1.5;
  font-weight: 600;
}
.page-strength .h2-tit {
  position: relative;
  margin: 0;
  padding: 0;
  text-align: center;
  color: #222;
  flex: 1;
  font-size: clamp(2.4rem, 3.6vw, 3.8rem);
  background: none;
}
.page-strength .h2-tit::after {
  content: "";
  display: block;
  margin: 2rem auto 0 auto;
  width: 48px;
  height: 3px;
  background: #1D1F87;
}
.page-strength .h2-tit .sub {
  font-size: clamp(1.8rem, 2.2vw, 2.2rem);
  display: block;
  font-weight: 600;
  color: #1D1F87;
}

/*lineup
-----------------------------------------------------*/
.page-lineup__list li {
  display: flex;
  align-items: center;
  padding: 2rem;
  line-height: 1.5;
  border-bottom: solid 1px #DFDFDF;
}
.page-lineup__list li:last-child {
  border-bottom: none;
}
@media (max-width: 767px) {
  .page-lineup__list li {
    padding: 1.5rem 0;
  }
}
@media (max-width: 575px) {
  .page-lineup__list li {
    display: block;
  }
}
.page-lineup__list li .lineup-img {
  margin: 0;
  width: 140px;
}
@media (max-width: 575px) {
  .page-lineup__list li .lineup-img {
    margin-inline: auto;
  }
}
.page-lineup__list li .lineup-img img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-lineup__list li .page-lineup__box {
  flex: 1;
  padding-left: 4rem;
}
@media (max-width: 767px) {
  .page-lineup__list li .page-lineup__box {
    padding-left: 4rem;
  }
}
@media (max-width: 575px) {
  .page-lineup__list li .page-lineup__box {
    padding-left: 0;
  }
}
.page-lineup__list li .lineup-tit {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: clamp(2rem, 2.2vw, 2.2rem);
  font-weight: 600;
}
.page-lineup__list li .lineup-txt {
  margin-top: 0.5rem;
  line-height: 1.5;
}

/*page-productslist
-----------------------------------------------------*/
.page-productslist .product-item__list {
  margin-top: 4rem;
  margin-bottom: 10rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  list-style: none;
  padding: 0;
}
@media (max-width: 1023px) {
  .page-productslist .product-item__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .page-productslist .product-item__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .page-productslist .product-item__list {
    margin-top: 4rem;
    grid-template-columns: 1fr;
  }
}
.page-productslist .product-item__list li.itembox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  margin-inline: auto;
  text-decoration: none;
  line-height: 1.5;
  text-align: center;
  width: 100%;
  color: #222;
  border: solid 1px #DFDFDF;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .page-productslist .product-item__list li.itembox {
    padding: 3rem 2rem;
  }
}
@media (max-width: 575px) {
  .page-productslist .product-item__list li.itembox {
    max-width: 400px;
    margin-inline: auto;
  }
}
.page-productslist .product-item__list li.itembox .tit {
  display: flex;
  padding: 1rem 2rem 0.5rem 2rem;
  width: 100%;
  text-align: center;
  font-weight: 600;
  font-size: clamp(1.8rem, 1.8vw, 1.8rem);
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
}
.page-productslist .product-item__list li.itembox .img {
  display: flex;
  padding: 1rem 2rem;
  align-items: center;
  margin-inline: auto;
  width: 100%;
  max-width: 160px;
  aspect-ratio: 1/1;
}
.page-productslist .product-item__list li.itembox .img img {
  max-width: 160px;
  width: 100%;
  margin-inline: auto;
}
.page-productslist .product-item__list li.itembox .txt p {
  margin-top: 0;
  padding: 0 1rem;
  line-height: 1.3;
}
.page-productslist .product-item__list li a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  margin-inline: auto;
  text-decoration: none;
  line-height: 1.5;
  text-align: center;
  width: 100%;
  color: #222;
  border: solid 1px #DFDFDF;
  box-sizing: border-box;
}
.page-productslist .product-item__list li a:hover .tit {
  background: #1161A5;
  color: #fff;
}
@media (max-width: 767px) {
  .page-productslist .product-item__list li a {
    padding: 3rem 2rem;
  }
}
@media (max-width: 575px) {
  .page-productslist .product-item__list li a {
    max-width: 400px;
    margin-inline: auto;
  }
}
.page-productslist .product-item__list li a .tit {
  display: flex;
  padding: 1rem 2rem;
  width: 100%;
  text-align: center;
  font-weight: 600;
  font-size: clamp(1.8rem, 1.8vw, 1.8rem);
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  line-height: 1.3;
}
.page-productslist .product-item__list li a .img {
  display: flex;
  padding: 2rem 0;
  align-items: center;
  margin-inline: auto;
  width: 100%;
  max-width: 160px;
  aspect-ratio: 1/1;
}
.page-productslist .product-item__list li a .img img {
  max-width: 160px;
  width: 100%;
  margin-inline: auto;
}

.product-list-doc .tab-content.active {
  display: block;
}
.product-list-doc .tab-content {
  display: none;
}
.product-list-doc__item {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 5rem;
}
@media (max-width: 1260px) {
  .product-list-doc__item {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1023px) {
  .product-list-doc__item {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .product-list-doc__item {
    grid-template-columns: repeat(1, 1fr);
  }
}
.product-list-doc__item li {
  flex: 0 0 calc((100% - 3.6rem) / 4);
  display: flex;
  flex-direction: column;
}
.product-list-doc__item a {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 1px solid #D5DAE8;
  border-radius: 5px;
  text-decoration: none;
  color: #222;
  padding: 0.5rem 5rem 0.5rem 1.5rem;
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  line-height: 1.4;
  box-sizing: border-box;
  justify-content: center;
}
.product-list-doc__item a::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../images/common/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  right: 1rem;
  top: 50%;
  margin-top: -13px;
  width: 26px;
  height: 26px;
}
.product-list-doc__item a .tit {
  margin: 2rem 0;
  padding-right: 1.5rem;
}

#toc_container {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.page-sec-contact {
  margin: 10rem 0;
}

/*parker
-----------------------------------------------------*/
.page-parker-catalog__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  list-style: none;
  padding: 0;
}
@media (max-width: 1260px) {
  .page-parker-catalog__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .page-parker-catalog__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .page-parker-catalog__list {
    margin-top: 4rem;
    grid-template-columns: 1fr;
  }
}
.page-parker-catalog li {
  padding: 2rem 3rem 3rem 3rem;
  width: 100%;
  border: solid 1px #DFDFDF;
  box-sizing: border-box;
  font-size: clamp(1.8rem, 1.8vw, 1.8rem);
}
@media (max-width: 1023px) {
  .page-parker-catalog li {
    padding: 2rem;
  }
}
@media (max-width: 575px) {
  .page-parker-catalog li {
    max-width: 400px;
    margin-inline: auto;
  }
}
.page-parker-catalog li .pdf-img {
  display: flex;
  align-items: center;
  margin-inline: auto;
  max-width: 135px;
  min-height: 190px;
}
.page-parker-catalog li .pdf-txt {
  display: flex;
  text-align: center;
  font-weight: 600;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  line-height: 1.5;
  justify-content: center;
  align-items: center;
  min-height: 50px;
}
@media (max-width: 575px) {
  .page-parker-catalog li .pdf-txt {
    min-height: auto;
  }
}
.page-parker-catalog li a {
  display: block;
  margin-inline: auto;
  padding: 1rem 1.5rem;
  width: 100%;
  max-width: 400px;
  color: #1D1F87;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  box-sizing: border-box;
  border: solid 1px #1D1F87;
  font-size: clamp(1.6rem, 1.6vw, 1.6rem);
  border-radius: 100px;
}
.page-parker-catalog .pdf-top {
  padding-top: 2.5rem;
  text-align: right;
}
.page-parker-catalog .pdf-top a {
  position: relative;
  padding-right: 1.5rem;
  color: #222;
  text-decoration: none;
}
.page-parker-catalog .pdf-top a::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../images/common/arrow-2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  right: 0;
  top: 50%;
  margin-top: -2.5px;
  width: 12px;
  height: 9px;
}
.page-parker .parker-lead {
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  text-align: center;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .page-parker .parker-lead {
    line-height: 1.3;
    text-align: left;
  }
}
.page-parker .product-item__list {
  margin-top: 4rem;
  margin-bottom: 10rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  list-style: none;
  padding: 0;
}
@media (max-width: 1023px) {
  .page-parker .product-item__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .page-parker .product-item__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .page-parker .product-item__list {
    margin-top: 4rem;
    grid-template-columns: 1fr;
  }
}
.page-parker .product-item__list li a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  margin-inline: auto;
  text-decoration: none;
  line-height: 1.5;
  text-align: center;
  width: 100%;
  color: #222;
  border: solid 1px #DFDFDF;
  box-sizing: border-box;
}
.page-parker .product-item__list li a:hover .tit {
  background: #1161A5;
  color: #fff;
}
@media (max-width: 767px) {
  .page-parker .product-item__list li a {
    padding: 3rem 2rem;
  }
}
@media (max-width: 575px) {
  .page-parker .product-item__list li a {
    max-width: 400px;
    margin-inline: auto;
  }
}
.page-parker .product-item__list li .tit {
  display: flex;
  padding: 1rem 2rem;
  width: 100%;
  text-align: center;
  font-weight: 600;
  font-size: clamp(1.8rem, 1.8vw, 1.8rem);
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  line-height: 1.3;
}
.page-parker .product-item__list li .img {
  display: flex;
  padding: 2rem 4rem;
  align-items: center;
  margin-inline: auto;
  width: 100%;
  box-sizing: border-box;
}
.page-parker .product-item__list li .img img {
  max-width: 160px;
  width: 100%;
  margin-inline: auto;
}
.page-parker .catalog-tit {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 11rem 0;
  background: url(../images/parker/bg.jpg) no-repeat;
  background-size: cover;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .page-parker .catalog-tit {
    padding: 8rem 0;
  }
}
.page-parker .catalog-tit .h2-tit {
  margin: 0;
  padding: 0;
  text-align: center;
  color: #fff;
  flex: 1;
  font-size: clamp(2.4rem, 3.6vw, 3.8rem);
  background: none;
}
.page-parker .catalog-tit .h2-tit .sub {
  padding-bottom: 2rem;
  font-size: clamp(1.8rem, 2.2vw, 2.2rem);
  display: block;
}

.page-techdl li {
  border-bottom: solid 1px #DFDFDF;
}
.page-techdl li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #1D1F87;
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 500;
  padding: 2rem 0;
  line-height: 1.5;
}
.page-techdl__icon {
  display: block;
  width: 35px;
  margin-right: 1.5rem;
}

figcaption {
  padding-top: 1rem;
  text-align: center;
  color: #444;
}

.rotate-right {
  transform: rotate(-45deg) !important;
}/*# sourceMappingURL=style.css.map */