@charset "UTF-8";
/* font
-----------------------------------------------------*/
/* sans-serif */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/NotoSerifCJKjp-Light.woff2") format("woff2"), url("../fonts/NotoSerifCJKjp-Light.woff") format("woff");
}
@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: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/NotoSerifCJKjp-Medium.woff2") format("woff2"), url("../fonts/NotoSerifCJKjp-Medium.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 */
/* 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: #282828;
  font: 1.6rem/1.8 YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 500;
  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: #F78500;
  transition: 0.3s linear;
}
a:hover, a:active, a:focus {
  color: rgb(255, 204.2307692308, 145);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

ol {
  padding-left: 1em;
}

.float-l {
  float: left;
}

.float-r {
  float: right;
}

.en {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
}

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

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

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

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

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

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

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

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

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

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

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

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

.pos-r {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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-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-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-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-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;
  }
}
.wrap {
  padding-top: 106px;
}
@media (max-width: 1599px) {
  .wrap {
    padding-top: 104px;
  }
}
@media (max-width: 1199px) {
  .wrap {
    padding-top: 74px;
  }
}
@media (max-width: 1023px) {
  .wrap {
    padding-top: 70px;
  }
}

.wrap .stroke {
  text-align: center;
  position: relative;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
@media (max-width: 1199px) {
  .wrap .stroke {
    margin-top: 0.7rem;
  }
}
@media (max-width: 575px) {
  .wrap .stroke {
    margin-top: 0.5rem;
  }
}

main {
  padding: 0 0 20rem 0;
}

/****************************************

header

*****************************************/
.header {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 100;
  box-sizing: border-box;
  margin: auto;
  padding: 3rem 4rem;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 5px 14px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1199px) {
  .header {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .header {
    top: 0;
    margin: 0;
    border-radius: 0;
  }
}
.header a {
  text-decoration: none;
}
.header__inner {
  margin: auto;
}
.header__logo span,
.header__logo img {
  display: block;
  line-height: 1.8;
}
@media (max-width: 1599px) {
  .header__logo {
    max-width: 280px;
  }
}
@media (max-width: 1199px) {
  .header__logo {
    max-width: 180px;
  }
}
.header__logo span {
  font-size: 1.1rem;
  display: block;
}
.header__btn {
  background: #F78500;
  color: #fff;
  border-radius: 100px;
  font-weight: 700;
  padding: 0.2rem 3rem;
  margin-left: 1rem;
}
@media (max-width: 1199px) {
  .header__btn {
    padding: 0 3rem;
  }
}
.header__btn:after {
  content: "";
  display: block;
  width: 18px;
  height: 12px;
  background: url(/static/images/next.svg) center top no-repeat;
  background-size: 18px 12px;
  margin-left: 1rem;
}
.header__btn:hover {
  background: rgb(255, 157.1538461538, 43);
}
.nav-sp .header__btn {
  display: flex;
  justify-content: center;
  background: #37A7E0;
  margin: 2rem;
  padding: 1.5rem;
  border-radius: 100px;
}
.nav-sp .header__btn:hover {
  background: #000;
}

.nav-pc {
  font-size: 1.7rem;
}
@media (max-width: 1199px) {
  .nav-pc {
    font-size: 1.3rem;
  }
}
.nav-pc__gnav {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  width: auto;
}
.nav-pc__gnav > li {
  background: transparent;
  text-decoration: none;
  border-left: none;
  display: flex;
  align-items: center;
}
.nav-pc__gnav > li a {
  text-decoration: none;
  border-left: none;
  display: block;
  padding: 1.6rem 2rem;
}
.nav-pc__gnav > li {
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.nav-pc__gnav > li > a {
  padding: 0 3rem;
  position: relative;
  display: flex;
  align-items: center;
  line-height: 1.5;
  color: #162835;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1599px) {
  .nav-pc__gnav > li > a {
    font-size: 1.6rem;
    padding: 0 2rem;
  }
}
.nav-pc .menu-item-has-children {
  position: relative;
}
.nav-pc .menu-item-has-children .sub-menu {
  min-width: 300px;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 5.5rem;
  left: 3px;
  z-index: 2;
  text-align: left;
  transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -moz-transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
}
@media (max-width: 1199px) {
  .nav-pc .menu-item-has-children .sub-menu {
    top: 4.5rem;
  }
}
@media (max-width: 767px) {
  .nav-pc .menu-item-has-children .sub-menu {
    visibility: visible;
    opacity: 1;
    position: static;
  }
}
.nav-pc .menu-item-has-children .sub-menu li {
  padding-right: 0;
  width: 100%;
}
.nav-pc .menu-item-has-children .sub-menu li a {
  width: 100%;
  color: #fff;
  text-align: left;
  background: #F78500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.2rem 2rem;
}
.nav-pc .menu-item-has-children .sub-menu li a:hover {
  opacity: 0.9;
}
.nav-pc .menu-item-has-children:hover .sub-menu {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 1023px) {
  .nav-pc {
    display: none;
  }
  .nav-pc-menu {
    display: none;
  }
  .menu-item-has-children .sub-menu {
    display: block;
    visibility: visible;
  }
}
/****************************************

hamburger

*****************************************/
.nav-sp {
  display: none;
}

@media (max-width: 1023px) {
  .nav-sp {
    margin: 0;
    padding-top: 1rem;
    transition: all 0.6s;
    overflow-y: auto;
    width: 255px;
    height: 100vh;
    z-index: 200;
    top: 0;
    left: -320px;
    background-color: #F78500;
    position: fixed;
    display: block;
  }
  .nav-sp__inner a {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 700;
    padding: 1.5rem 2rem;
    font-size: 1.6rem;
  }
  .nav-sp__inner li {
    position: relative;
  }
  .nav-sp__inner li a {
    position: relative;
    font-size: 1.3rem;
  }
  .nav-sp__inner li a small {
    margin-left: 1rem;
  }
  .nav-sp__inner .menu-item-has-children i {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 49px;
    width: 70px;
    z-index: 1000;
    cursor: pointer;
    display: table;
  }
  .nav-sp__inner .menu-item-has-children .fa::before {
    content: "";
    display: block;
    position: absolute;
    right: 1rem;
    top: 0;
    bottom: 0;
    margin: auto;
    text-align: right;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    width: 7px;
    height: 7px;
    transform: rotate(45deg);
  }
  .nav-sp__inner .menu-item-has-children .menu-item-has-children a i {
    display: none;
  }
  .nav-sp .sub-menu {
    display: none;
  }
  .nav-sp .sub-menu a {
    background-color: rgba(0, 0, 0, 0.1);
  }
  .nav_btn {
    width: 40px;
    height: 24px;
    z-index: 300;
    top: 0;
    bottom: 0;
    right: 1.5rem;
    margin: auto;
    cursor: pointer;
    position: absolute;
  }
  .hamburger_line {
    transition: all 0.6s;
    width: 34px;
    height: 1px;
    left: 5px;
    background-color: #333;
    position: absolute;
  }
  .hamburger_line1 {
    top: 0;
  }
  .hamburger_line2 {
    top: 11px;
  }
  .hamburger_line3 {
    top: 22px;
  }
  .nav_bg {
    opacity: 0;
    transition: all 0.6s;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    top: 0;
    left: 0;
    visibility: hidden;
    background-color: #333;
    cursor: pointer;
    position: fixed;
  }
  /* 表示された時用のCSS */
  .nav_open header .nav-sp {
    left: 0;
  }
  .nav_open .nav_bg {
    opacity: 0.8;
    visibility: visible;
  }
  .nav_open .hamburger_line {
    background-color: #fff;
  }
  .nav_open .hamburger_line1 {
    transform: rotate(45deg);
    top: 10px;
  }
  .nav_open .hamburger_line2 {
    width: 0;
    left: 50%;
  }
  .nav_open .hamburger_line3 {
    transform: rotate(-45deg);
    top: 10px;
  }
}
/****************************************

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-lg {
  max-width: 1200px;
  padding: 0 5%;
  margin: 0 auto;
}

.container-lg2 {
  max-width: 1200px;

  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-lg2,
  .container-xl {
    padding: 0 2rem;
  }
}

/* page-sec */
.page-sec {
  padding: 6rem 0;
}
.page-sec p + p {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .page-sec p + p {
    margin-top: 3rem;
  }
}

/* btn */
.btn-l {
  text-align: center;
  margin-top: 9rem;
}
.btn-l a {
  position: relative;
  color: #fff;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  width: 350px;
  font-size: 1.6rem;
  line-height: 1.4;
  padding: 2rem 2.5rem;
  box-sizing: border-box;
  background-color: #1096DA;
  border-radius: 3px;
}
@media (max-width: 767px) {
  .btn-l a {
    width: 300px;
  }
}
.btn-l a:after {
  content: "";
  display: block;
  width: 18px;
  height: 12px;
  background: url(/static/images/next.svg) center top no-repeat;
  background-size: 18px 12px;
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
  color: #fff;
}

.btn-s {
  margin-top: 5rem;
}
.btn-s a {
  position: relative;
  color: #fff;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  width: 290px;
  font-size: 1.6rem;
  line-height: 1.4;
  padding: 2rem 2.5rem;
  box-sizing: border-box;
  background-color: #1096DA;
  border-radius: 3px;
}
.btn-s a:after {
  content: "";
  display: block;
  width: 18px;
  height: 12px;
  background: url(/static/images/next.svg) center top no-repeat;
  background-size: 18px 12px;
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
}

.btn-w {
  margin-top: 2rem;
}
.btn-w a {
  position: relative;
  color: #000;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  width: 230px;
  font-size: 1.6rem;
  line-height: 1.4;
  padding: 1.2rem 2.5rem;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  border: 1px solid #000;
}
.btn-w a:after {
  content: "";
  display: block;
  width: 18px;
  height: 12px;
  background: url(../images/common/arrow-r-b.svg) center top no-repeat;
  background-size: 18px 12px;
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
}

.btn-o {
  text-align: center;
}
.btn-o a {
  position: relative;
  color: #fff;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  width: 350px;
  font-size: 1.6rem;
  line-height: 1.4;
  padding: 2rem 2.5rem;
  box-sizing: border-box;
  background-color: #F78500;
  border-radius: 3px;
}
@media (max-width: 767px) {
  .btn-o a {
    width: 300px;
  }
}
.btn-o a:after {
  content: "";
  display: block;
  width: 18px;
  height: 12px;
  background: url(../images/common/arrow-r-w.svg) center top no-repeat;
  background-size: 18px 12px;
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
}

.h2-title01 {
  position: relative;
  text-align: center;
  padding-top: 140px;
  margin-bottom: 5rem;
}
.h2-title01::before {
  content: "";
  height: 120px;
  width: 1px;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.h2-title01 h2 {
  font-size: 5.6rem;
  color: #032F50;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: 6px;
  margin-left: 6px;
}
.h2-title01 .ja {
  font-size: 2rem;
  color: #000;
  font-weight: bold;
}

.h2-title02 {
  margin-bottom: 5rem;
}
.h2-title02 h2 {
  font-size: 5.6rem;
  color: #032F50;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: 6px;
}
@media (max-width: 767px) {
  .h2-title02 h2 {
    font-size: 4.6rem;
  }
}
@media (max-width: 575px) {
  .h2-title02 h2 {
    font-size: 3.2rem;
  }
}
.h2-title02 .ja {
  font-size: 2rem;
  color: #000;
  font-weight: bold;
}
@media (max-width: 575px) {
  .h2-title02 .ja {
    font-size: 1.8rem;
  }
}

h1 + h2,
h2 + h3,
h3 + h4 {
  margin-top: 0 !important;
}

.m-auto {
  margin: auto;
}

.page-header {
  padding: 2rem 0;
  text-align: center;
  background: url(/static/images/business_02.jpg) no-repeat right top;
  margin-bottom: 2rem;
}
.page-header .page-ttl-en {
  font-size: 6rem;
  font-weight: bold;
  color: #032F50;
}
@media (max-width: 575px) {
  .page-header .page-ttl-en {
    font-size: 4rem;
  }
}
.page-header .page-ttl-txt {
  font-size: 1.8rem;
  color: #000;
  font-weight: 600;
}

.dots-b {
  list-style: disc;
  padding-left: 2.5rem;
  margin-bottom: 3rem;
  margin-top: 1rem;
}
.dots-b li::marker {
  color: #0486C9;
}

/****************************************

swiper

*****************************************/
.main-text {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.swiper-slide img {
  width: 100%;
}

.swiper {
  position: relative;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  height: 55px;
  width: 74px;
  background-color: #FFF;
  bottom: 0 !important;
  top: initial !important;
}

.swiper-button-prev {
  left: initial !important;
  right: 74px !important;
}

.swiper-button-next {
  right: 0 !important;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 20px;
  width: 14px;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 1 !important;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  background-image: url(/static/images/next.svg);
  margin: auto 2.4rem auto auto;
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  background-image: url(/static/images/next.svg);
  margin: auto auto auto 2.4rem;
  color: #ffffff;
}

/* 画像サイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}

/****************************************

top

*****************************************/
.top-sec {
  padding-top: 12rem;
  padding-bottom: 12rem;
  
}

/*media*/
.media-sec {
  position: relative;
  padding-top: 8rem !important;
}
.media-sec::after {
  width: 800px;
  height: 86%;
  content: "";
  background-color: #F8F8F8;
  position: absolute;
  bottom: 3.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media (max-width: 1023px) {
  .media-sec::after {
    height: 90%;
  }
}
@media (max-width: 767px) {
  .media-sec::after {
    height: 89%;
  }
}
@media (max-width: 575px) {
  .media-sec::after {
    height: 87%;
  }
}
.media-sec .flex {
  gap: 3.4rem 3rem;
  display: flex;           /* 既にある想定 */
  flex-wrap: wrap;         /* 既にある想定 */
  justify-content: center; /* 追加：全体を中央寄せ */
}
@media (max-width: 575px) {
  .media-sec .flex {
    gap: 3rem 2rem;
  }
}
.media-sec .box {
  width: calc(33.3333333333% - 2rem);
  text-align: center; 
}
@media (max-width: 1023px) {
  .media-sec .box {
    width: calc(50% - 1.5rem);
  }
}
@media (max-width: 575px) {
  .media-sec .box {
    width: calc(50% - 1rem);
  }
}
.media-sec .box .media-img {
  display: block;
  margin: 0 auto;
  width: 100%;
}

.media-sec .box .media-img img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.media-sec .box .media-ttl {
  margin-top: 1.5rem;
}
@media (max-width: 575px) {
  .media-sec .box .media-ttl {
    margin-top: 1rem;
  }
}
.media-sec .box .media-ttl .post-date {
  font-size: 1.3rem;
  color: #0486C9;
}
.media-sec .box .media-ttl h3 {
  line-height: 1.4;
  margin-top: 0.5rem;
}
.media-sec .box .media-ttl h3 a {
  text-decoration: none;
  color: #282828;
  font-size: 1.6rem;
}
@media (max-width: 575px) {
  .media-sec .box .media-ttl h3 a {
    font-size: 1.4rem;
  }
}
.media-sec .box .read-more {
  text-align: right;
}
.media-sec .box .read-more a {
  position: relative;
  text-decoration: none;
  color: #000;
  font-size: 1.3rem;
}
.media-sec .box .read-more a::before {
  content: "";
  width: 12px;
  height: 1px;
  background-color: #000;
  position: absolute;
  left: -32%;
  top: 50%;
  transform: translateY(-50%);
}

/*career*/
.career-sec .stroke {
  text-align: center;
  position: relative;
  margin-bottom: 11rem;
}
@media (max-width: 1199px) {
  .career-sec .stroke {
    margin-bottom: 8rem;
  }
}
@media (max-width: 575px) {
  .career-sec .stroke {
    margin-bottom: 5rem;
  }
}
.career-sec .stroke .en {
  text-transform: none;
  color: #FFF;
  -webkit-text-stroke: 1px #D7D7D7;
  text-stroke: 1px #FFF;
  font-size: clamp(16px, 10vw, 142px);
}
.career-sec .stroke .ja {
  position: absolute;
  font-size: 4.5rem;
  left: 50%;
  transform: translateX(-50%);
  top: 43%;
  color: #1a5a8b;
  width: 100%;
}
@media (max-width: 1023px) {
  .career-sec .stroke .ja {
    font-size: 3rem;
  }
}
@media (max-width: 575px) {
  .career-sec .stroke .ja {
    font-size: 2.6rem;
  }
}
.career-sec .career-box00 {
  gap: 4rem 7rem;
  margin-bottom: 19rem;
}
@media (max-width: 1199px) {
  .career-sec .career-box00 {
    flex-wrap: wrap;
  }
}
.career-sec .career-box00__img {
  max-width: 430px;
  width: 100%;
}
@media (max-width: 1199px) {
  .career-sec .career-box00__img {
    margin: auto;
    order: 1;
  }
}
.career-sec .career-box00__left {
  padding-right: 1rem;
  width: 200px;
}
.career-sec .career-box00__right {
  flex: 1;
}
.career-sec .career-box00__text h3 {
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 6rem;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .career-sec .career-box00__text h3 {
    font-size: 2.6rem;
  }
}
@media (max-width: 575px) {
  .career-sec .career-box00__text h3 {
    font-size: 2rem;
    padding-left: 3rem;
  }
}
.career-sec .career-box00__text h3::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  background-color: #000;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
}
@media (max-width: 575px) {
  .career-sec .career-box00__text h3::before {
    width: 25px;
  }
}
.career-sec .career-box00__text h3:nth-child(n+2) {
  margin-top: 8rem;
}
@media (max-width: 1199px) {
  .career-sec .career-box00__text h3:nth-child(n+2) {
    margin-top: 4rem;
  }
}
.career-sec .career-box00__text p {
  line-height: 2;
}
@media (max-width: 1023px) {
  .career-sec .career-box01 .flex,
  .career-sec .career-box02 .flex,
  .career-sec .career-box03 .flex {
    flex-wrap: wrap;
  }
}
.career-sec .career-box01 .flex-text .career-ttl,
.career-sec .career-box02 .flex-text .career-ttl,
.career-sec .career-box03 .flex-text .career-ttl {
  margin-bottom: 2rem;
}
.career-sec .career-box01 .flex-text .career-ttl .num,
.career-sec .career-box02 .flex-text .career-ttl .num,
.career-sec .career-box03 .flex-text .career-ttl .num {
  position: relative;
  font-size: 2rem;
  padding-left: 6rem;
}
.career-sec .career-box01 .flex-text .career-ttl .num::before,
.career-sec .career-box02 .flex-text .career-ttl .num::before,
.career-sec .career-box03 .flex-text .career-ttl .num::before {
  content: "";
  width: 46px;
  height: 1px;
  background-color: #282828;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
}
.career-sec .career-box01 .flex-text .career-ttl h3,
.career-sec .career-box02 .flex-text .career-ttl h3,
.career-sec .career-box03 .flex-text .career-ttl h3 {
  font-size: 3.6rem;
  line-height: 1.4;
}
@media (max-width: 575px) {
  .career-sec .career-box01 .flex-text .career-ttl h3,
  .career-sec .career-box02 .flex-text .career-ttl h3,
  .career-sec .career-box03 .flex-text .career-ttl h3 {
    font-size: 2.6rem;
  }
}
.career-sec .career-box01 .flex-text .career-ttl p,
.career-sec .career-box02 .flex-text .career-ttl p,
.career-sec .career-box03 .flex-text .career-ttl p {
  font-size: 2rem;
  font-weight: bold;
}
.career-sec .career-box01 .flex-text-in,
.career-sec .career-box02 .flex-text-in,
.career-sec .career-box03 .flex-text-in {
  color: #000;
}
.career-sec .career-box01 .flex-text-in .dots-b,
.career-sec .career-box02 .flex-text-in .dots-b,
.career-sec .career-box03 .flex-text-in .dots-b {
  list-style: disc;
  padding-left: 2.5rem;
  margin-bottom: 3rem;
  margin-top: 1rem;
}
.career-sec .career-box01 .flex-text-in .dots-b li::marker,
.career-sec .career-box02 .flex-text-in .dots-b li::marker,
.career-sec .career-box03 .flex-text-in .dots-b li::marker {
  color: #0486C9;
}
.career-sec .career-box01 .flex-img,
.career-sec .career-box02 .flex-img,
.career-sec .career-box03 .flex-img {
  width: 100%;
}
.career-sec .career-box01 .flex-text {
  position: relative;
  padding-right: 4rem;
}
@media (max-width: 1023px) {
  .career-sec .career-box01 .flex-text {
    padding: 0;
    width: 100%;
    margin-bottom: 6rem;
  }
}
.career-sec .career-box01 .flex-text::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, rgb(252, 255, 217), rgb(255, 205, 205));
  position: absolute;
  z-index: -1;
  width: 90vw;
  margin-left: calc(50% - 50vw);
  padding: 14rem 0;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
}
@media (max-width: 1023px) {
  .career-sec .career-box01 .flex-text::after {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 6rem 0;
  }
}
.career-sec .career-box01 .flex-img {
  width: 70vw;
  margin-right: calc(50% - 50vw);
  max-width: 700px;
  margin-left: auto;
}
@media (max-width: 1023px) {
  .career-sec .career-box01 .flex-img {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
.career-sec .career-box02 {
  margin-top: 20rem;
}
@media (max-width: 1023px) {
  .career-sec .career-box02 {
    margin-top: 5rem;
  }
}
.career-sec .career-box02 .flex-text {
  position: relative;
  padding-left: 4rem;
}
@media (max-width: 1023px) {
  .career-sec .career-box02 .flex-text {
    padding-left: 0;
    width: 100%;
    margin-bottom: 6rem;
  }
}
.career-sec .career-box02 .flex-text::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, rgb(255, 205, 205),rgb(252, 255, 217));
  position: absolute;
  z-index: -1;
  width: 90vw;
  margin-right: calc(50% - 50vw);
  padding: 3rem 0;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
}
@media (max-width: 1023px) {
  .career-sec .career-box02 .flex-text::after {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 6rem 0;
  }
}
.career-sec .career-box02 .flex-img {
  width: 70vw;
  margin-left: calc(50% - 50vw);
  max-width: 700px;
  margin-right: auto;
}
@media (max-width: 1023px) {
  .career-sec .career-box02 .flex-img {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    max-width: -moz-fit-content;
    max-width: fit-content;
    order: 1;
  }
}
.career-sec .career-box03 {
  margin-top: 20rem;
  margin-bottom: 5rem;
}
@media (max-width: 1023px) {
  .career-sec .career-box03 {
    margin-top: 5rem;
  }
}
.career-sec .career-box03 .flex-text {
  position: relative;
  padding-right: 4rem;
}
@media (max-width: 1023px) {
  .career-sec .career-box03 .flex-text {
    padding: 0;
    width: 100%;
    margin-bottom: 6rem;
  }
}
.career-sec .career-box03 .flex-text::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, rgb(252, 255, 217), rgb(255, 205, 205));
  position: absolute;
  z-index: -1;
  width: 90vw;
  margin-left: calc(50% - 50vw);
  padding: 14rem 0;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
}
@media (max-width: 1023px) {
  .career-sec .career-box03 .flex-text::after {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 6rem 0;
  }
}
.career-sec .career-box03 .flex-img {
  width: 70vw;
  margin-right: calc(50% - 50vw);
  max-width: 700px;
  margin-left: auto;
}
@media (max-width: 1023px) {
  .career-sec .career-box03 .flex-img {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
/*reskilling*/
.reskilling-sec p {
  line-height: 2.4;
  text-align: center;
}
.reskilling-sec p + p {
  margin-top: 4rem;
}

/*executive*/
.executive-sec {
  padding-top: 20rem;
}
.executive-sec .executive-wrap {
  position: relative;
  padding: 11rem 0 14rem 0;
}
.executive-sec .executive-wrap::after {
  position: absolute;
  content: "";
  width: 100vw;
  margin-right: calc(50% - 50vw);
  height: 100%;
  background-image: linear-gradient(0deg, rgb(255, 247, 217), rgb(205, 238, 255));
  top: 0;
  left: 10rem;
  z-index: -1;
}
@media (max-width: 1023px) {
  .executive-sec .executive-wrap::after {
    left: 4rem;
  }
}
@media (max-width: 575px) {
  .executive-sec .executive-wrap::after {
    left: 0;
  }
}
.executive-sec .executive-wrap .executive-flex {
  display: flex;
  gap: 4rem 6.5rem;
}
@media (max-width: 1023px) {
  .executive-sec .executive-wrap .executive-flex {
    flex-wrap: wrap;
  }
}
@media (max-width: 780px) {
  .executive-sec .executive-wrap .executive-flex {
    gap: 0;
  }
}
.executive-sec .executive-wrap .executive-flex:nth-child(n+2) {
  margin-top: 15rem;
}
@media (max-width: 575px) {
  .executive-sec .executive-wrap .executive-flex:nth-child(n+2) {
    margin-top: 8rem;
  }
}
.executive-sec .executive-wrap .executive-flex-img {
  margin: 0 0 5.5rem 2.5rem;
  max-width: 350px;
  width: 100%;
}
@media (max-width: 575px) {
  .executive-sec .executive-wrap .executive-flex-img {
    margin: auto;
  }
}
.executive-sec .executive-wrap .executive-flex-img .img {
  max-width: 350px;
  position: relative;
}
.executive-sec .executive-wrap .executive-flex-img .img .text {
  position: absolute;
  bottom: 1.5rem;
  left: -2.5rem;
}
@media (max-width: 575px) {
  .executive-sec .executive-wrap .executive-flex-img .img .text {
    left: 0;
  }
}
.executive-sec .executive-wrap .executive-flex-img .img .text p {
  position: relative;
  background-color: #FFF;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  font-weight: bold;
}
.executive-sec .executive-wrap .executive-flex-img .img .text p + p {
  margin-top: 1rem;
}
.executive-sec .executive-wrap .executive-flex-img .img .executive01-txt p {
  border-left: solid 5px #0486C9;
}
.executive-sec .executive-wrap .executive-flex-img .img .executive02-txt p {
  border-left: solid 5px #F78500;
}
.executive-sec .executive-wrap .executive-flex-img .img .executive03-txt p {
  border-left: solid 5px #2FA849;
}
.executive-sec .executive-wrap .executive-flex-img .img .executive04-txt p {
  border-left: solid 5px #F1486D;
}
.executive-sec .executive-wrap .executive-flex-text {
  min-width: 400px;
}
@media (max-width: 780px) {
  .executive-sec .executive-wrap .executive-flex-text {
    margin-top: 0;
  }
}
@media (max-width: 575px) {
  .executive-sec .executive-wrap .executive-flex-text {
    min-width: auto;
    margin-top: 3rem;
    margin-left: 2rem;
  }
}
.executive-sec .executive-wrap .executive-flex-text .name {
  margin-bottom: 2.5rem;
}
.executive-sec .executive-wrap .executive-flex-text .name h3 {
  font-size: 3.6rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  line-height: 1.6;
}
@media (max-width: 575px) {
  .executive-sec .executive-wrap .executive-flex-text .name h3 {
    display: block;
    line-height: 1;
  }
}
.executive-sec .executive-wrap .executive-flex-text .name h3 small {
  font-size: 2rem;
  font-weight: 500;
}
@media (max-width: 575px) {
  .executive-sec .executive-wrap .executive-flex-text .name h3 small {
    display: block;
    padding: 1rem 0;
  }
}
.executive-sec .executive-wrap .executive-flex-text .name .executive01 span,
.executive-sec .executive-wrap .executive-flex-text .name .executive02 span,
.executive-sec .executive-wrap .executive-flex-text .name .executive03 span,
.executive-sec .executive-wrap .executive-flex-text .name .executive04 span {
  color: #fff;
  font-weight: 500;
  padding: 0.2rem 2rem;
  border-radius: 30px;
}
.executive-sec .executive-wrap .executive-flex-text .name .executive01 span {
  background-color: #0486C9;
}
.executive-sec .executive-wrap .executive-flex-text .name .executive02 span {
  background-color: #F78500;
}
.executive-sec .executive-wrap .executive-flex-text .name .executive03 span {
  background-color: #2FA849;
}
.executive-sec .executive-wrap .executive-flex-text .name .executive04 span {
  background-color: #F1486D;
}
.executive-sec .en {
  text-transform: capitalize;
}
.executive-sec .executive-box {
  margin-top: 4rem;
}
.executive-sec .btn-s {
  text-align: right;
}

/*column*/
.column-sec {
  position: relative;
  padding-bottom: 8rem;
}
.column-sec::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 54%;
  background-color: #F8F8F8;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 1023px) {
  .column-sec::after {
    height: 68%;
  }
}
.column-sec .flex {
  gap: 3.4rem 3rem;
}
@media (max-width: 575px) {
  .column-sec .flex {
    gap: 3rem 2rem;
  }
}
.column-sec .box {
  width: calc(33.3333333333% - 2rem);
}
@media (max-width: 1023px) {
  .column-sec .box {
    width: calc(50% - 1.5rem);
  }
}
@media (max-width: 575px) {
  .column-sec .box {
    width: calc(50% - 1rem);
  }
}
.column-sec .box .column-img {
  position: relative;
}
.column-sec .box .column-img img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
  object-fit: cover;
}
.column-sec .box .column-img .post-cat {
  position: absolute;
  color: #FFF;
  background-color: #F78500;
  padding: 0 1rem;
  font-size: 1.2rem;
  display: inline-block;
  bottom: 0;
  right: 0;
}
.column-sec .box .column-ttl {
  margin-top: 1.5rem;
}
@media (max-width: 575px) {
  .column-sec .box .column-ttl {
    margin-top: 1rem;
  }
}
.column-sec .box .column-ttl .post-date {
  font-size: 1.3rem;
  color: #0486C9;
}
.column-sec .box .column-ttl h3 {
  line-height: 1.4;
  margin-top: 0.5rem;
}
.column-sec .box .column-ttl h3 a {
  text-decoration: none;
  color: #282828;
  font-size: 1.6rem;
}
@media (max-width: 575px) {
  .column-sec .box .column-ttl h3 a {
    font-size: 1.4rem;
  }
}

/*support*/
.support-sec {
  background-image: linear-gradient(180deg, rgb(255, 247, 217), rgb(205, 238, 255));
  padding-bottom: 10rem;
}
.support-sec .h2-support {
  text-align: center;
  margin-bottom: 5rem;
  margin-top: -15rem;
}
.support-sec .h2-support h2 {
  font-size: 5.6rem;
  color: #032F50;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: 6px;
  margin-left: 6px;
}
.support-sec .support-flex {
  display: flex;
  align-items: center;
  background-color: #FFF;
  padding: 3.5rem 0;
}
@media (max-width: 1023px) {
  .support-sec .support-flex {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
  }
}
.support-sec .support-flex-img {
  padding: 0 4rem;
  max-width: 400px;
  width: 100%;
  border-right: 1px solid #E8E8E8;
}
@media (max-width: 1023px) {
  .support-sec .support-flex-img {
    padding: 4rem;
    border-right: none;
    border-bottom: 1px solid #E8E8E8;
  }
}
.support-sec .support-flex-text {
  padding: 0 4rem;
  width: 100%;
}
@media (max-width: 1023px) {
  .support-sec .support-flex-text {
    padding: 4rem;
  }
}
.support-sec .support-flex-text h3 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
@media (max-width: 575px) {
  .support-sec .support-flex-text h3 {
    font-size: 2.2rem;
  }
}
.support-sec .support-flex-text p {
  line-height: 2;
}
.support-sec .support-flex:nth-child(n+2) {
  margin-top: 4.5rem;
}
/*news
-----------------------------------------------------*/
.news-list {
  display: flex;
  padding: 2.5rem 2rem;
  align-items: flex-start;
  border-bottom: solid 1px #ccc;
  box-sizing: border-box;
}
.news-list:first-child {
  border-top: solid 1px #ccc;
}
.news-list-in {
  display: flex;
  align-items: center;
}
.news-list .date {
  font-size: 1.4rem;
}
.news-list .tit {
  flex: 1;
  font-size: 1.4rem;
}
.news-list .tit a {
  color: #333;
  text-decoration: none;
}
.news-list .label {
  display: flex;
  align-items: center;
  margin: 0 2rem;
}
.news-list .label a p{
  display: inline-block;
  padding: 0.1rem 1rem;
  font-size: 1.1rem;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: #0f48b1;
}
.news-list .label p {
  display: inline-block;
  padding: 0.1rem 1rem;
  font-size: 1.1rem;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: #0f48b1;
}
@media (max-width: 767px) {
  .news-list {
    display: block;
    padding: 2rem 1rem;
  }
  .news-list-in {
    margin-bottom: 1rem;
  }
  .news-list .label {
    margin: 0 1rem;
  }
}

/****************************************

pagination

*****************************************/
ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4rem;
  gap: 9px 9px;
}
@media (max-width: 767px) {
  ul.page-numbers {
    justify-content: start;
    margin-top: 2rem;
  }
}
ul.page-numbers li {
  width: 41px;
  height: 41px;
}
@media (max-width: 767px) {
  ul.page-numbers li {
    width: 35px;
    height: 35px;
  }
}
ul.page-numbers li .page-numbers {
  background: #0486C9;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 41px;
  height: 41px;
  font-size: 1.5rem;
  color: #fff;
}
@media (max-width: 767px) {
  ul.page-numbers li .page-numbers {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }
}
ul.page-numbers li .page-numbers.current {
  background: #F78500;
  color: #fff;
}
ul.page-numbers li a {
  color: #fff;
  text-decoration: none;
}
ul.page-numbers .prev,
ul.page-numbers .next {
  position: relative;
}
ul.page-numbers .prev:before,
ul.page-numbers .next:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  margin: auto;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  width: 7px;
  height: 7px;
}
ul.page-numbers .prev:before {
  transform: rotate(135deg);
}
ul.page-numbers .next:before {
  transform: rotate(-45deg);
}

/****************************************

contact

*****************************************/
.contact-text {
  border-bottom: 1px solid #D3DAE1;
  padding-bottom: 7rem;
  margin-bottom: 7rem;
}
.contact-text span {
  color: #E81515;
}

.contact-box {
  /*radio*/
  /*check*/
}
.contact-box dt {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}
.contact-box dt .required {
  color: #FFF;
  background: #E81515;
  font-weight: 400;
  font-size: 1.4rem;
  padding: 0.2rem 1.5rem;
  margin-left: 1rem;
  line-height: 1.4;
  border-radius: 30px;
}
.contact-box dd {
  margin-bottom: 5rem;
}
.contact-box dd input.input-text,
.contact-box dd textarea {
  border: none;
  background: #F8F8F8;
  width: 100%;
  height: 3rem;
  padding: 2.5rem;
  box-sizing: border-box;
  border-radius: 4px;
}
.contact-box dd select {
  border: 1px solid #C1D1D1;
  width: 38%;
  height: 4rem;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .contact-box dd select {
    width: 60%;
  }
}
@media (max-width: 575px) {
  .contact-box dd select {
    width: 100%;
  }
}
.contact-box dd textarea {
  height: 20rem;
}
.contact-box .contract-address {
  margin-bottom: 5rem;
}
.contact-box .contract-address-txt {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.contact-box .contract-address dt {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.contact-box .contract-address dd {
  margin-bottom: 2rem;
}
.contact-box .input-radio input[type=radio] {
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
}
.contact-box .input-radio input[type=radio]::before {
  box-sizing: border-box;
}
.contact-box .input-radio input[type=radio]::after {
  box-sizing: border-box;
}
.contact-box .input-radio .wpcf7-list-item {
  display: block;
  margin-top: 1rem;
}
.contact-box .input-radio .wpcf7-list-item:first-of-type {
  margin-top: 0;
}
.contact-box .input-radio .wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
}
.contact-box .input-radio .wpcf7-list-item-label::before {
  content: "";
  display: block;
  border-radius: 50%;
  border: 1px solid #9DA4B7;
  background: #FFF;
  max-width: 22px;
  width: 100%;
  height: 22px;
  margin-right: 1rem;
}
.contact-box .input-radio input[type=radio]:checked + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 5px;
  display: block;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  background-color: #3896BF;
}
.contact-box .input-check input[type=checkbox] {
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
}
.contact-box .input-check input[type=checkbox]::before {
  box-sizing: border-box;
}
.contact-box .input-check input[type=checkbox]::after {
  box-sizing: border-box;
}
.contact-box .input-check .wpcf7-list-item {
  display: block;
  margin-top: 1rem;
}
.contact-box .input-check .wpcf7-list-item:first-of-type {
  margin-top: 0;
}
.contact-box .input-check .wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
}
.contact-box .input-check .wpcf7-list-item-label::before {
  left: 0;
  display: block;
  border: 1px solid #9DA4B7;
  background: #FFF;
  border-radius: 2px;
  content: "";
  max-width: 22px;
  width: 100%;
  height: 22px;
  margin-right: 1rem;
}
.contact-box .input-check input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  position: absolute;
  top: 4px;
  left: 7px;
  display: block;
  border-right: 3px solid #0486C9;
  border-bottom: 3px solid #0486C9;
  content: "";
  width: 8px;
  height: 12px;
  transform: rotate(45deg);
}
.contact-box .subject-list {
  margin-bottom: 2rem;
}
.contact-box #subject-text {
  margin-top: 1.5rem;
}

/*submit*/
.submit-box {
  margin: 6rem auto 0 auto;
  text-align: center;
}
.submit-box input[type=submit] {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 5rem;
  font-size: 1.8rem;
  text-align: center;
  color: #FFF;
  background-color: #0486C9;
  text-decoration: none;
  width: 290px;
  word-break: keep-all;
  margin: 5rem auto 0 auto;
  border: none;
  cursor: pointer;
}
.submit-box input[type=submit]:hover {
  opacity: 1;
  background-position: 99% 50%;
}

/****************************************

footer

*****************************************/
.contact-area {
  background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.1)), url(/static/images/call-to-action-bg.webp) fixed center center;
  background-size: cover;
  padding: 60px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 10rem 0;
}
.contact-area .h2-contact {
  position: relative;
  text-align: center;
  margin-bottom: 3rem;
}
.contact-area .h2-contact::before {
  content: "";
  height: 80px;
  width: 1px;
  background-color: #000;
  position: absolute;
  top: -14rem;
  left: 50%;
  transform: translateX(-50%);
}
.contact-area .h2-contact h2 {
  font-size: 5.6rem;
  color: #FFF;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: 6px;
  margin-left: 6px;
}
@media (max-width: 575px) {
  .contact-area .h2-contact h2 {
    font-size: 4rem;
  }
}
.contact-area P {
  text-align: center;
  color: #FFF;
  font-size: 1.8rem;
}

.footer {
  background-color: #00061c;
  color: #FFF;
  padding: 9rem 0 3rem 0;
}
.footer__nav {
  gap: 0 2rem;
  padding: 0 0 5rem 0;
  width: 100%;
  justify-content: center;
}
.footer__nav a {
  display: block;
  line-height: 1.5;
  text-decoration: none;
  color: #FFF;
}
@media (max-width: 1023px) {
  .footer__nav > ul > li {
    width: calc(50% - 2rem);
  }
}
@media (max-width: 575px) {
  .footer__nav > ul > li {
    width: 100%;
  }
}
.footer__nav > ul > li > a {
  position: relative;
  padding: 0.8rem 0;
}
@media (max-width: 767px) {
  .footer__nav > ul > li > a {
    padding: 0.9rem 0;
  }
}
.footer__nav > ul > li > .sub-menu a {
  position: relative;
  padding: 0.5rem 0 0.5rem 2rem;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .footer__nav > ul > li > .sub-menu a {
    padding: 0.9rem 0 0.9rem 2rem;
  }
}
.footer__nav > ul > li > .sub-menu a:before {
  content: "";
  display: block;
  position: absolute;
  top: 1.4rem;
  left: 0.2rem;
  color: #999;
  background: #999;
  width: 8px;
  height: 1px;
}
@media (max-width: 767px) {
  .footer__nav > ul > li > .sub-menu a:before {
    top: 2rem;
  }
}
.footer__nav-ul {
  width: 100%;
  gap: 2rem 4rem;
  justify-content: space-between;
}
.footer .sns {
  margin-bottom: 3rem;
}
.footer .sns ul {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  align-items: center;
}
.footer .copy {
  color: #FFF;
  font-size: 1.4rem;
}

#pup {
  background-image: url(../images/common/page-top.svg);
  background-repeat: no-repeat;
  width: 66px;
  height: 66px;
  position: fixed;
  right: 25px;
  bottom: 30px;
  z-index: 1;
  cursor: pointer;
}

.page-id-38 #pup {
  bottom: 100px;
}

.table01 table {
  font-size: 1.8rem;
  border-top: none !important;
}
@media (max-width: 575px) {
  .table01 table {
    font-size: 1.6rem;
  }
}
.table01 table th,
.table01 table td {
  border-top: none;
  border-left: none;
  border-right: none;
  box-sizing: border-box;
}
.table01 table th {
  border-bottom: 1px solid #D0DCDF;
  padding: 3rem 1rem;
  background: none;
  width: 166px;
}
@media (max-width: 575px) {
  .table01 table th {
    width: 100%;
  }
}
.table01 table td {
  border-bottom: 1px solid #D0DCDF;
  padding: 3rem 1rem 3rem 4rem;
}
@media (max-width: 575px) {
  .table01 table td {
    padding: 3rem 1rem 3rem 2rem;
  }
}
.table01 table td:first-of-type {
  max-width: 200px;
  font-weight: bold;
}

.company-message {
  padding: 1rem 0;
  width: 100%;
  background: url() center top no-repeat;
  background-size: cover;
}
.company-message-box {
  margin: 0 auto;
  padding: 10rem 4rem;
  max-width: 1200px;
  width: 94%;
  box-sizing: border-box;
}
@media (max-width: 575px) {
  .company-message-box {
    padding: 6rem 0;
  }
}
.company-message h3 {
  position: relative;
  padding-left: 4rem;
  color: #1a5a8b;
  font-size: 3rem;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .company-message h3 {
    font-size: 2.5rem;
  }
}
@media (max-width: 575px) {
  .company-message h3 {
    font-size: 2.2rem;
    line-height: 1.4;
  }
}
.company-message h3::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 30px;
  background: #000;
  top: 50%;
  left: 0;
}
.company-message .divider {
  border: 0;
  border-top: 1px solid #DDD;
  margin: 8rem 0;
  opacity: 0.6;
}
.company-message p + p {
  margin-top: 1.2rem;
}
@media (max-width: 575px) {
  .company-message .divider {
    margin: 2rem 0;
  }
}

/****************************************


*****************************************/
.page-header_recruiter {
  padding: 0;
}

.recruiter-sec {
  padding: 10rem 0;
}
.recruiter-sec:first-of-type {
  padding-top: 0;
}
.recruiter-sec:last-of-type {
  padding-bottom: 0;
}

.stroke {
  text-align: center;
  position: relative;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
@media (max-width: 1199px) {
  .stroke {
    margin-bottom: 8rem;
  }
}
@media (max-width: 575px) {
  .stroke {
    margin-bottom: 5rem;
  }
}
.stroke .en {
  text-transform: none;
  color: #FFF;
  -webkit-text-stroke: 1px #D7D7D7;
  text-stroke: 1px #FFF;
  font-size: clamp(16px, 10vw, 142px);
}
.stroke .ja {
  position: absolute;
  font-size: 4.5rem;
  color: #1a5a8b;
  width: 100%;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1023px) {
  .stroke .ja {
    font-size: 3rem;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .stroke .ja {
    font-size: 2.6rem;
  }
}
.stroke strong {
  color: #F9530C;
}

.recruiter-about .stroke {
  margin-bottom: 6rem;
}
.recruiter-about p.strong {
  font-size: 2.2rem;
  color: #032F50;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 575px) {
  .recruiter-about p.strong {
    font-size: 2rem;
  }
}
.recruiter-about .flex.w-over {
  margin-top: 10rem;
  gap: 4rem 5%;
  align-items: center;
}
@media (max-width: 1023px) {
  .recruiter-about .flex.w-over {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .recruiter-about .flex.w-over {
    margin-top: 4rem;
  }
}
.recruiter-about .flex.w-over .bg-gray {
  margin-top: 4rem;
  background-color: #F8F8F8;
  padding: 4rem;
}
@media (max-width: 575px) {
  .recruiter-about .flex.w-over .bg-gray {
    padding: 3rem 2rem;
  }
}
.recruiter-about .flex.w-over .bg-gray .dots-b {
  margin: 0;
}
.recruiter-about .flex.w-over .flex-l {
  flex: 1;
  margin-left: calc(50% - 50vw);
}
@media (max-width: 1023px) {
  .recruiter-about .flex.w-over .flex-l {
    width: 100%;
    flex: none;
    margin: auto;
  }
}
.recruiter-about .flex.w-over .flex-r {
  width: 50%;
}
@media (max-width: 1023px) {
  .recruiter-about .flex.w-over .flex-r {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .recruiter-about .flex.w-over .flex-r p {
    text-align: center;
  }
}

.recruiter-solution {
  background-color: #088DD1;
  position: relative;
}
.recruiter-solution::before {
  content: "";
  height: 130px;
  width: 1px;
  background-color: #000;
  position: absolute;
  bottom: -65px;
  left: 50%;
  transform: translateX(-50%);
}
.recruiter-solution__inner {
  background-image: url(../images/recruiter/bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
  padding: 10rem 0;
}
.recruiter-solution .w-1000 {
  max-width: 1000px;
  width: 100%;
  margin: auto;
}
.recruiter-solution h2 {
  text-align: center;
  margin: 0 auto 6rem auto;
}
@media (max-width: 767px) {
  .recruiter-solution h2 {
    margin: 0 auto 3rem auto;
  }
}
.recruiter-solution .flex {
  flex-wrap: wrap;
  gap: 3rem;
}
.recruiter-solution .flex p {
  width: calc(50% - 1.5rem);
  background-color: #FFF;
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  text-align: center;
  border-radius: 5px;
  padding: 2rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .recruiter-solution .flex p {
    font-size: 1.8rem;
  }
}
@media (max-width: 575px) {
  .recruiter-solution .flex p {
    width: 100%;
    font-size: 1.6rem;
  }
}

.recruiter-service .l-box,
.recruiter-service .r-box {
  padding: 8rem 0;
}
@media (max-width: 1023px) {
  .recruiter-service .l-box,
  .recruiter-service .r-box {
    padding: 0;
  }
}
.recruiter-service .l-box__flex,
.recruiter-service .r-box__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  padding: 40px;
  margin: auto;
}
@media (max-width: 1023px) {
  .recruiter-service .l-box__flex,
  .recruiter-service .r-box__flex {
    flex-wrap: wrap;
    padding: 0;
  }
}
.recruiter-service .l-box__flex-img,
.recruiter-service .r-box__flex-img {
  width: 48%;
  max-width: 700px;
}
@media (max-width: 1023px) {
  .recruiter-service .l-box__flex-img,
  .recruiter-service .r-box__flex-img {
    width: 100%;
    max-width: none;
  }
}
.recruiter-service .l-box__flex-img img,
.recruiter-service .r-box__flex-img img {
  width: 100%;
  height: auto;
}
.recruiter-service .l-box__flex-text,
.recruiter-service .r-box__flex-text {
  width: 48%;
  background-image: linear-gradient(90deg, rgb(255, 247, 217), rgb(205, 238, 255));
}
@media (max-width: 1023px) {
  .recruiter-service .l-box__flex-text,
  .recruiter-service .r-box__flex-text {
    width: 100%;
  }
}
.recruiter-service .l-box__flex-text .ttl,
.recruiter-service .r-box__flex-text .ttl {
  margin-bottom: 2rem;
}
.recruiter-service .l-box__flex-text .ttl .num,
.recruiter-service .r-box__flex-text .ttl .num {
  position: relative;
  font-size: 2rem;
  padding-left: 6rem;
}
.recruiter-service .l-box__flex-text .ttl .num::before,
.recruiter-service .r-box__flex-text .ttl .num::before {
  content: "";
  width: 46px;
  height: 1px;
  background-color: #282828;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
}
.recruiter-service .l-box__flex-text .ttl h3,
.recruiter-service .r-box__flex-text .ttl h3 {
  font-size: 3.6rem;
  line-height: 1.4;
}
@media (max-width: 575px) {
  .recruiter-service .l-box__flex-text .ttl h3,
  .recruiter-service .r-box__flex-text .ttl h3 {
    font-size: 2.6rem;
  }
}
.recruiter-service .l-box__flex-text .ttl p,
.recruiter-service .r-box__flex-text .ttl p {
  font-size: 2rem;
  font-weight: bold;
}
.recruiter-service .l-box__flex-text-in,
.recruiter-service .r-box__flex-text-in {
  color: #000;
}
.recruiter-service .l-box__flex-text-in .blue,
.recruiter-service .r-box__flex-text-in .blue {
  color: #0486C9;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.recruiter-service .l-box__flex-text-in .blue span,
.recruiter-service .r-box__flex-text-in .blue span {
  background-color: #0486C9;
  color: #FFF;
  font-weight: 500;
  font-size: 1.6rem;
  border-radius: 50px;
  padding: 0.1rem 1.5rem;
  margin-right: 1.5rem;
}
.recruiter-service .l-box__flex-text-in .dots-b,
.recruiter-service .r-box__flex-text-in .dots-b {
  list-style: disc;
  padding-left: 2.5rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
.recruiter-service .l-box__flex-text-in .dots-b li::marker,
.recruiter-service .r-box__flex-text-in .dots-b li::marker {
  color: #0486C9;
}
.recruiter-service .l-box__flex-text-in .orange,
.recruiter-service .r-box__flex-text-in .orange {
  color: #F9530C;
}
.recruiter-service .l-box__flex-text .bg-white,
.recruiter-service .r-box__flex-text .bg-white {
  background-color: #FFF;
  padding: 3rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}
.recruiter-service .l-box__flex-text .bg-white h5,
.recruiter-service .r-box__flex-text .bg-white h5 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.recruiter-service .l-box .box-inner,
.recruiter-service .r-box .box-inner {
  max-width: 770px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 1023px) {
  .recruiter-service .l-box .box-inner,
  .recruiter-service .r-box .box-inner {
    max-width: none;
  }
}
.recruiter-service .l-box {
  /*左側へ要素を広げる（2カラム）*/
}
.recruiter-service .l-box .column-outside-left {
  flex: 1;
  margin-left: calc(50% - 50vw);
  margin-right: 2%;
  z-index: 1;
}
@media (max-width: 1023px) {
  .recruiter-service .l-box .column-outside-left {
    flex: auto;
    margin: 0 calc(50% - 50vw);
    order: 1;
  }
}
.recruiter-service .l-box .column-outside-right {
  flex: 1;
  margin-right: calc(50% - 50vw);
  margin-left: -20rem;
  padding-left: 22rem;
  padding-right: 2rem;
  padding-top: 10%;
  padding-bottom: 10%;
  margin-top: -6rem;
  margin-bottom: -6rem;
}
@media (max-width: 1023px) {
  .recruiter-service .l-box .column-outside-right {
    flex: auto;
    margin: 0 calc(50% - 50vw);
    padding: 6rem 4rem;
  }
}
@media (max-width: 575px) {
  .recruiter-service .l-box .column-outside-right {
    padding: 6rem 2rem;
  }
}
.recruiter-service .r-box {
  /*左側へ要素を広げる（2カラム）*/
}
.recruiter-service .r-box .column-outside-left {
  flex: 1;
  margin-left: calc(50% - 50vw);
  margin-right: -20rem;
  padding-right: 22rem;
  padding-left: 2rem;
  padding-top: 16%;
  padding-bottom: 16%;
  margin-top: -6rem;
  margin-bottom: -6rem;
}
@media (max-width: 1023px) {
  .recruiter-service .r-box .column-outside-left {
    flex: auto;
    margin: 0 calc(50% - 50vw);
    padding: 6rem 4rem;
  }
}
@media (max-width: 575px) {
  .recruiter-service .r-box .column-outside-left {
    padding: 6rem 2rem;
  }
}
.recruiter-service .r-box .column-outside-right {
  flex: 1;
  margin-right: calc(50% - 50vw);
  z-index: 1;
  order: 1;
}
@media (max-width: 1023px) {
  .recruiter-service .r-box .column-outside-right {
    flex: auto;
    margin: 0 calc(50% - 50vw);
    padding: 0;
  }
}

.recruiter-package {
  background-color: #1096DA;
  color: #FFF;
  padding: 6rem 0 0 0;
  text-align: center;
  position: relative;
}
.recruiter-package::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 30px solid transparent;
  border-left: 30px solid transparent;
  border-top: 52px solid #ffffff;
  border-bottom: 0;
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1023px) {
  .recruiter-package .text-pc {
    display: none;
  }
}
.recruiter-package .text-sm {
  display: none;
}
@media (max-width: 1023px) {
  .recruiter-package .text-sm {
    display: block;
  }
}
.recruiter-package .flex {
  justify-content: center;
  gap: 1rem;
}
.recruiter-package .bg-white {
  background-color: #FFF;
  color: #000;
  font-size: 2.8rem;
  padding: 6rem 2rem;
  font-weight: bold;
  border-radius: 5px;
  margin-bottom: 3rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .recruiter-package .bg-white {
    font-size: 2rem;
    padding: 3rem 2rem;
    margin-top: 2rem;
  }
}
.recruiter-package .bg-white strong {
  color: #F9530C;
  font-size: 4rem;
}
@media (max-width: 767px) {
  .recruiter-package .bg-white strong {
    font-size: 3rem;
  }
}
.recruiter-package .img {
  display: flex;
  align-items: end;
}
.recruiter-package .img .img-illust {
  max-width: 200px;
  height: auto;
}
@media (max-width: 1023px) {
  .recruiter-package .img .img-illust {
    max-width: 160px;
  }
}

.recruiter-fees .stroke .en {
  font-size: clamp(16px, 10vw, 138px);
}
.recruiter-fees .left-border {
  position: relative;
  font-size: 2.8rem;
  padding-left: 2rem;
  margin-bottom: 6rem;
  margin-top: 8rem;
}
.recruiter-fees .left-border:first-of-type {
  margin-top: 0;
}
@media (max-width: 767px) {
  .recruiter-fees .left-border {
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
}
@media (max-width: 575px) {
  .recruiter-fees .left-border {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}
.recruiter-fees .left-border::after {
  position: absolute;
  content: "";
  width: 8px;
  height: calc(100% - 2rem);
  background-color: #1096DA;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
}
.recruiter-fees .bg-grada {
  background-image: linear-gradient(90deg, rgb(255, 247, 217), rgb(205, 238, 255));
  padding: 3.5rem;
  text-align: center;
}
@media (max-width: 575px) {
  .recruiter-fees .bg-grada {
    padding: 3rem 2rem;
  }
}
.recruiter-fees .bg-grada p {
  font-size: 3.4rem;
  color: #032F50;
  font-weight: bold;
  line-height: 1.2;
}
@media (max-width: 1023px) {
  .recruiter-fees .bg-grada p {
    font-size: 2.6rem;
  }
}
@media (max-width: 767px) {
  .recruiter-fees .bg-grada p {
    font-size: 2.4rem;
  }
}
@media (max-width: 575px) {
  .recruiter-fees .bg-grada p {
    font-size: 2rem;
  }
}
.recruiter-fees .bg-grada p strong {
  color: #F9530C;
  font-size: 4.8rem;
}
@media (max-width: 1023px) {
  .recruiter-fees .bg-grada p strong {
    font-size: 3.8rem;
  }
}
@media (max-width: 767px) {
  .recruiter-fees .bg-grada p strong {
    font-size: 2.8rem;
  }
}
@media (max-width: 575px) {
  .recruiter-fees .bg-grada p strong {
    font-size: 2.4rem;
  }
}
.recruiter-fees .table-wrap {
  overflow-x: auto;
  width: 100%;
}
.recruiter-fees .table-wrap table {
  width: 100%;
  border: 1px solid #C9C9C9;
  line-height: 1.4;
}
.recruiter-fees .table-wrap table tr {
  border-top: 1px solid #C9C9C9;
}
.recruiter-fees .table-wrap table th.th-top {
  color: #032F50;
  background-color: #FFF;
  text-align: center;
  padding: 2rem !important;
}
.recruiter-fees .table-wrap table th {
  background-color: #F8F8F8;
  text-align: left;
  font-size: 1.8rem;
  border-right: 1px solid #C9C9C9;
}
.recruiter-fees .table-wrap table th.recruiter {
  color: #F9530C;
  text-align: center;
  width: 220px;
}
.recruiter-fees .table-wrap table th.th-01 {
  width: 180px;
  padding: 6rem 2rem;
}
.recruiter-fees .table-wrap table th.th-05 {
  width: 260px;
  padding: 6rem 2rem;
  border-right: 1px solid #C9C9C9;
}
.recruiter-fees .table-wrap table th.th-06 {
  width: 200px;
}
.recruiter-fees .table-wrap table th.th-07 {
  width: 560px;
}
@media screen and (max-width: 1324px) {
  .recruiter-fees .table-wrap table th.th-01 {
    font-size: 1.6rem;
    padding: 3rem 2rem;
  }
  .recruiter-fees .table-wrap table th.sticky {
    position: sticky;
    top: 0;
    left: 0;
    background: none;
    border-left: none;
    border-right: none;
  }
  .recruiter-fees .table-wrap table th.sticky::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #F8F8F8;
    border-left: 1px solid #C9C9C9;
    border-right: 1px solid #C9C9C9;
    z-index: -1;
  }
  .recruiter-fees .table-wrap table .nowrap {
    white-space: nowrap;
  }
  .recruiter-fees .table-wrap table th.th-05 {
    font-size: 1.6rem;
    padding: 3rem 2rem;
  }
}
.recruiter-fees .table-wrap table th.th-02 {
  width: 270px;
}
.recruiter-fees .table-wrap table th.th-03 {
  width: 220px;
}
.recruiter-fees .table-wrap table th.th-04 {
  width: 240px;
}
.recruiter-fees .table-wrap table .recruiter {
  background-color: #FFF0EA;
}
.recruiter-fees .table-wrap table th,
.recruiter-fees .table-wrap table td {
  vertical-align: middle;
  box-sizing: border-box;
}
.recruiter-fees .table-wrap table td {
  text-align: center;
  font-size: 2.2rem;
  padding: 3rem 1.5rem;
  border-right: 1px solid #C9C9C9;
}
.recruiter-fees .table-wrap table .orange {
  color: #F9530C;
}
.recruiter-fees .table-wrap table .align-l {
  text-align: left !important;
}
.recruiter-fees .table-sp .orange {
  color: #F9530C;
}
.recruiter-fees .table-sp-item {
  margin-top: 1.5rem;
  box-sizing: border-box;
}
.recruiter-fees .table-sp h4 {
  background: #F8F8F8;
  border: 1px solid #C9C9C9;
  box-sizing: border-box;
  padding: 1rem;
  font-size: 1.6rem;
}
.recruiter-fees .table-sp dl {
  border-left: 1px solid #C9C9C9;
  border-right: 1px solid #C9C9C9;
  box-sizing: border-box;
  line-height: 1.4;
}
.recruiter-fees .table-sp dt {
  min-width: 140px;
  max-width: 140px;
  padding: 1rem;
  border-bottom: 1px solid #C9C9C9;
  border-right: 1px solid #C9C9C9;
  background: #EEF5FB;
  color: #032F50;
  font-weight: bold;
  box-sizing: border-box;
}
.recruiter-fees .table-sp dd {
  width: 100%;
  padding: 1rem;
  border-bottom: 1px solid #C9C9C9;
  box-sizing: border-box;
}
.recruiter-fees .table-sp .table-sp-note-tit {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #C9C9C9;
  border-left: 1px solid #C9C9C9;
  border-right: 1px solid #C9C9C9;
  background: #EEF5FB;
  color: #032F50;
  font-weight: bold;
  box-sizing: border-box;
}
.recruiter-fees .table-sp .table-sp-note-txt {
  width: 100%;
  padding: 1rem;
  border-left: 1px solid #C9C9C9;
  border-right: 1px solid #C9C9C9;
  border-bottom: 1px solid #C9C9C9;
  box-sizing: border-box;
}
.recruiter-fees .table-sp .omakase {
  background: #FFF0EA;
}
.recruiter-fees .table-sp .omakase dt {
  background: #FFF0EA;
  color: #F9530C;
}

.mv-wrap {
  position: relative;

}
.mv-wrap::after {
  content: "";
  position: absolute;
  background: url( "/static/logo/Botino_mini.png") right 40px top no-repeat;;
  background-size: cover;
  background-size: 450px auto;
  width: 100%;
  height: 100%;
  padding-top: 400px;   /* ← テキスト全体を少し下げる */
  opacity: 0.3;      /* ← 透明度を追加して“より薄く” */
  right: 0;
  top: 0;
  z-index: -1;
}

.mv-in {
  position: relative;
  padding: 12rem 2rem;
  margin: 0 auto;
  max-width: 1600px;
  font-size: clamp(1.6rem, 3.2vw, 3.2rem);
  color: #032F50;
  font-weight: 400;
}
@media (max-width: 767px) {
  .mv-in {
    padding: 8rem 2rem 7rem 2rem;
  }
}

.mv-in h2 {
  padding-bottom: 1.5rem;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  line-height: 1.5;
}
.mv-in h2 span {
  padding-right: 0.5rem;
  font-size: clamp(3rem, 6vw, 6rem);
}

.first-sec {
  padding-bottom: 12rem;
  width: 100%;
  background: url(../images/top/bg-first.jpg) center top no-repeat;
  background-size: cover;
  color: #fff;
}
@media (max-width: 767px) {
  .first-sec {
    background: url(../images/top/bg-first-sp.jpg) center top no-repeat;
  }
}
.first-sec ul {
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 1100px;
  box-sizing: border-box;
  align-items: center;
}
.first-sec ul .left {
  width: 158px;
  padding: 1rem 0.5rem;
  background: #fff;
  border-radius: 5px;
}
@media (max-width: 575px) {
  .first-sec ul .left {
    margin: 0 auto 3rem auto;
    width: 110px;
  }
}
.first-sec ul .right {
  padding-left: 2rem;
  width: 100%;
}
@media (max-width: 575px) {
  .first-sec ul .right {
    padding-left: 0;
    text-align: center;
  }
}
.first-sec .first-lead {
  font-weight: normal;
  line-height: 1.5;
  font-size: clamp(1.8rem, 3.8vw, 3.8rem);
}
.first-sec .first-lead span {
  font-size: clamp(2.4rem, 5vw, 5rem);
}
.first-sec .first-box {
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 1100px;
  font-weight: normal;
  box-sizing: border-box;
  font-size: clamp(1.6rem, 2vw, 2rem);
  line-height: 2;
  letter-spacing: 0.5px;
  font-weight: 200;
}
.first-sec p + p {
  margin-top: 5rem;
}

.wp-container-content-4a03de8f {
  min-width: 60px;
}/*# sourceMappingURL=style.css.map */



.cp-top {
  position: relative;
  z-index: 1; /* create stacking context for ::after */
}
.top-sec.career-sec {
  position: relative;
  background-image: url("{% static 'img/bg-company.jpg' %}");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #222;
  padding: 100px 0;

}

/* ロゴの透かし装飾は残す場合 */
.cp-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/static/logo/Botino_mini.png") center center no-repeat;
  background-size: 650px auto;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}
.career-sec .cp-top h3 {
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;

  line-height: 1.4;
}
@media (max-width: 1023px) {
  .career-sec .cp-top h3 {
    font-size: 2.6rem;
  }
}
@media (max-width: 575px) {
  .career-sec .cp-top h3 {
    font-size: 2rem;
    padding-left: 3rem;
  }
}

@media (max-width: 575px) {
  .career-sec .cp-top h3::before {
    width: 25px;
  }
}
.career-sec .cp-top h3:nth-child(n+2) {
  margin-top: 8rem;
}
@media (max-width: 1199px) {
  .career-sec .cp-top h3:nth-child(n+2) {
    margin-top: 4rem;
  }
}
.career-sec .cp-top p {
  font-size: 2rem;
  line-height: 2;
  text-align: center; 
}
.career-sec .career-box001__text h3 {
  font-size: 3rem;
  color: #1a5a8b;
  text-align: center;      /* 全体を中央寄せ */
  line-height: 1.4;
  margin-bottom: 1rem;
}

@media (max-width: 575px) {
  .career-sec .career-box001__text h3 {
    font-size: 2rem;
    padding-left: 3rem;
  }
}

@media (max-width: 575px) {
  .career-box001__text h3::before {
    width: 25px;
  }
}
.career-box001__text h3:nth-child(n+2) {
  margin-top: 8rem;
}
@media (max-width: 1199px) {
  .career-box001__text h3:nth-child(n+2) {
    margin-top: 4rem;
  }
}

/* 行動指針：カード＋左上バッジ */
.policy-cards{
  display: flex;              /* ← これが無いと縦並びになる */
  flex-wrap: wrap;            /* スマホで自動で折り返す */
  justify-content: center;    /* 全体を中央寄せ */
  align-items: stretch;       /* 高さを揃える（任意） */
  gap: 2.4rem;                /* 各ボックス間の固定間隔 */
  padding: 0 5vw;             /* 画面両端の余白。画面が広いほど拡大 */
  counter-reset: policy;      /* ← ここでカウンターを初期化 */
}

.policy-card {
  position: relative;
  flex: 0 0 250px;            /* ← 幅を固定しつつフレックス化 */
  width: 250px;               /* 保険として指定（上行と整合） */
  border: 1px solid #1a5a8b;
  background: #fff;
  border-radius: 6px;
  padding: 3rem 2rem 2.5rem;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
  text-align: left;
}

.policy-card::before {
  counter-increment: policy;  /* ← 各カードでカウントを進める */
  content: counter(policy, decimal-leading-zero);
  position: absolute;
  top: -18px;
  left: -18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1a5a8b;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .04em;
  box-shadow: 0 4px 10px rgba(0,0,0,.12);
}

@media (max-width: 767px) {
  .policy-cards {
    justify-content: center;
    padding: 0 1.5rem;
    gap: 2rem;
  }
  .policy-card {
    flex: 1 1 100%;          /* ← スマホでは1列に */
    width: 100%;
    max-width: 320px;        /* スマホでは自然な幅に */
  }
}
/* Scroll reveal window
---------------------------------------------*/
/* スクロール全体の高さを確保（画像の動き範囲） */
.scroll-window {
  position: relative;
  height: 200vh; /* スクロール距離 */
}

/* 下部に固定される「窓」 */
.scroll-window__mask {
  position: sticky;
  top: calc(100vh - 45vh); /* 画面下から出る高さ */
  height: 45vh;            /* 窓の高さ（調整可） */
  overflow: hidden;
  width: 100%;
}

/* 背景画像（常に画面いっぱいサイズ） */
.scroll-window__photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* ← 背景を常に全画面サイズに */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* 背景を固定 */
  transform: translateY(0);
  will-change: transform;
}
/* ===== Scroll Reveal Window ===== */
.scroll-window{                 /* スクロール量を確保 */
  position: relative;
  height: 200vh;               /* 必要に応じて 180〜240vh で調整 */
}
.scroll-window__mask{          /* 画像が見える“窓” */
  position: sticky;
  top: calc(50vh - 20vh);      /* 40vh の窓を画面中央に固定 */
  height: 40vh;                /* 窓の高さ：好みで変更可 */
  max-width: min(1100px, 92vw);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;          /* お好みで */
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.scroll-window__photo{         /* 背景画像そのもの */
  position: relative;          /* マスクの中で動かす */
  width: 100%;
  height: 100vh;               /* 画像は常に画面いっぱい */
  background-size: cover;      /* 端までフィット */
  background-position: center bottom; /* 初期表示は“下側”を基準に */
  will-change: transform;
  transform: translate3d(0,0,0);
}
@media (max-width: 767px){
  .scroll-window__mask{
    top: calc(50vh - 18vh);    /* モバイルは少し浅めに */
    height: 36vh;
    max-width: 94vw;
    border-radius: 8px;
  }
}

.call-to-action {
  background: url(/static/images/top3.jpg) fixed center center;
  background-size: cover;
  padding: 170px 0;
}

.map-wrap {
  display: flex;
  justify-content: center; /* 中央配置 */
  padding: 0 2rem;          /* PCでも少し左右余白 */
}

.map-wrap iframe {
  max-width: 100%;          /* 画面幅に収まるように */
  height: 600px;            /* 固定高 */
  border: 0;
  border-radius: 8px;       /* 角を少し丸める（任意） */
}

/* スマホサイズ対応 */
@media (max-width: 767px) {
  .map-wrap {
    padding: 0 1rem;       /* スマホ時に少し左右余白 */
  }
  .map-wrap iframe {
    height: 350px;         /* 高さを調整 */
  }
}

/* representative intro (message page) */
.rep-intro {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  margin: 2rem auto 4rem;
}
.rep-intro .rep-media { flex: 0 0 240px; max-width: 240px; }
.rep-intro .rep-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
.rep-intro .rep-text { flex: 1 1 auto; }
.rep-intro .rep-name { font-size: 2.4rem; line-height: 1.3; margin-bottom: .3rem; }
.rep-intro .rep-caption { color: #666; font-size: 1.4rem; }

/* bottom sign tweak */
.rep-sign { color: #666; font-size: 1.4rem; }

@media (max-width: 767px) {
  .rep-intro { flex-direction: column; text-align: center; gap: 1.6rem; }
  .rep-intro .rep-media { max-width: 220px; flex-basis: 220px; }
  .rep-intro .rep-name { font-size: 2rem; }
}

/* representative footer (photo + name) */
.rep-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.rep-footer-img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center; /* ← これを追加！上側を優先表示 */
  border: 2px solid #e5e5e5;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.rep-footer-name {
  font-size: 1.6rem;
  color: #444;
}

@media (max-width: 768px) {
  .rep-footer {
    justify-content: center;
    text-align: center;
    gap: 0.6rem;
  }
  .rep-footer-img {
    width: 96px;
    height: 96px;
  }
  .rep-footer-name {
    font-size: 1.5rem;
  }
}

/*organizational_design-top
-----------------------------------------------------*/

.organizational_design-top {
  text-align: center;
}
.organizational_design-top br {
  display: none;
}
@media (max-width: 767px) {
  .organizational_design-top br {
    display: block;
  }
}
.organizational_design-top__inner {
  position: relative;
}
.organizational_design-top__img {
  padding-bottom: 10rem;
}
.organizational_design-top__img2 {
  padding-top: 10rem;
}
@media (max-width: 767px) {
  .organizational_design-top__img {
    padding-bottom: 0;
  }
}
.organizational_design-top__h2 {
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 4rem 8rem;
  min-width: 480px;
}
@media (max-width: 767px) {
  .organizational_design-top__h2 {
    position: static;
    transform: translateX(0);
    min-width: auto;
    padding: 4rem 0;
  }
}
@media (max-width: 767px) {
  .organizational_design-top__h2 br {
    display: none;
  }
}
@media (max-width: 575px) {
  .organizational_design-top__h2 br {
    display: block;
  }
}


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






.organizational_design-top__plan__list__item2 {
  width: 91.6%;
  padding: 3rem 4rem;
  margin-top: 2rem;
}
@media (max-width: 1023px) {
  .organizational_design-top__plan__list__item2 {
    padding: 2.5rem 3rem;
  }
}
@media (max-width: 767px) {
  .organizational_design-top__plan__list__item2 {
    width: 93%;
    padding: 2.5rem 2rem;
  }
}
@media (max-width: 640px) {
  .organizational_design-top__plan__list__item2 {
    width: 92.5%;
    
  }
}
.organizational_design-top__plan__list__item2 h3 {
  color: #f0f0f0;
  font-size: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0f0f0;
}
@media (max-width: 1023px) {
  .organizational_design-top__plan__list__item2 h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .organizational_design-top__plan__list__item2 h3 {
    font-size: 1.6rem;
  }
}
.organizational_design-top__plan__list__item2 p {
  font-weight: bold;
  font-size: 2rem;
}
@media (max-width: 1023px) {
  .organizational_design-top__plan__list__item2 p {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .organizational_design-top__plan__list__item2 p {
    font-size: 1.6rem;
  }
}
.organizational_design-top__plan__list__item2 p strong {
  font-size: 4rem;
}
@media (max-width: 1023px) {
  .organizational_design-top__plan__list__item2 p strong {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .organizational_design-top__plan__list__item2 p strong {
    font-size: 2.4rem;
    color: #ffcc66;
  }
}
.organizational_design-top__plan__list__item2 .point {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 0.2rem 2rem;
  color: #fff;
  font-weight: bold;
  background: #1a5a8b;
}
@media (max-width: 767px) {
  .organizational_design-top__plan__list__item2 .point {
    font-size: 1.3rem;
  }
}






.organizational_design-top__plan__list__light {
  background: #F4F8FF;
}
.organizational_design-top__plan__list__standard {
  background: #EAF1FF;
}
.organizational_design-top__plan__list__pro {
  background: #DEEAFF;
}
.organizational_design-top__plan__list__premium {
  background: #2a2a2a; /* 黒より少し柔らかい */
  color: #fff;
  
}


@media (max-width: 575px) {
  .organizational_design-top__problems br {
    display: none;
  }
}
.organizational_design-top__problems p {
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .organizational_design-top__problems p {
    font-size: 2rem;
    margin-top: 2rem;
  }
}
@media (max-width: 575px) {
  .organizational_design-top__problems p {
    font-size: 1.8rem;
    margin-top: 2rem;
  }
}
.organizational_design-top__leave h3 {
  font-size: 2rem;
  color: #1a5a8b;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .organizational_design-top__leave h3 {
    font-size: 1.6rem;
  }
}
.organizational_design-top__leave p {
  margin-bottom: 2rem;
}







/*common
-----------------------------------------------------*/
.common-sec {
  margin-top: 8rem;
  margin-bottom: 8rem;
}
@media (max-width: 575px) {
  .common-sec {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
.color-blue01 {
  color: #1a5a8b !important;
}

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

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





.organizational_design-top__advantages h3 {
  font-size: 3rem;
  color: #1a5a8b;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .organizational_design-top__advantages h3 {
    font-size: 1.6rem;
  }
}
.organizational_design-top__advantages p {
  margin-bottom: 2rem;
}
.organizational_design-top__advantages p:last-of-type {
  margin-bottom: 0;
}

/*check*/
ul.check {
  color: #1a5a8b;
}
ul.check li {
  background-image: url(../images/common/check_icon.png);
  background-size: auto 16px;
  background-repeat: no-repeat;
  background-position: 0 6px;
  padding-left: 30px;
  font-weight: bold;
  margin-bottom: 10px;
}
ul.check li:last-of-type {
  margin-bottom: 0;
}







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


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



/* clm */
.clm {
  display: flex;
  align-items: center;
}
.clm .clm-list {
  width: 50%;
}
@media (max-width: 575px) {
  .clm {
    display: block;
  }
  .clm .clm-list {
    width: 100%;
  }
}
@media (max-width: 650px) {
  .clm.access-box {
    display: block;
  }
  .clm.access-box .clm-list {
    width: 100%;
  }
}

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

/*page-header-business
-----------------------------------------------------*/
.page-header-business {
  background: url(/static/images/business_02.jpg) no-repeat right top;
  background-size: 100% auto;
  font-weight: bold;
  padding: 2rem 0;
  margin-top: 10.8rem;
}
@media (max-width: 1199px) {
  .page-header-business {
    margin-top: 7.2rem;
  }
}

@media (max-width: 1023px) {
  .page-header-business {
    background-size: 100% auto;
  }
}
@media (max-width: 575px) {
  .page-header-business {
    background: url(/static/images/business_02.jpg) no-repeat right -10rem top;
    background-size: auto;
    margin-top: 7rem;
  }
}
.page-header-business__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 12rem;
  height: 431px;
}
@media (max-width: 1023px) {
  .page-header-business__inner {
    padding-left: 6rem;
    height: 300px;
  }
}
@media (max-width: 767px) {
  .page-header-business__inner {
    padding-left: 4rem;
  }
}
@media (max-width: 575px) {
  .page-header-business__inner {
    padding-left: 2rem;
    height: 200px;
  }
}
.page-header-business__en {
  font-size: 7rem;
  letter-spacing: 0.2rem;
  line-height: 1.6;
}
@media (max-width: 1023px) {
  .page-header-business__en {
    font-size: 5.5rem;
  }
}
@media (max-width: 767px) {
  .page-header-business__en {
    font-size: 4rem; /* ← お好みで調整（2rem〜2.6remあたりが自然） */
  }
}
@media (max-width: 575px) {
  .page-header-business__en {
    font-size: rem;
    white-space: nowrap;
  }
}
.page-header-business__headline {
  font-size: 2.4rem;
}
@media (max-width: 1023px) {
  .page-header-business__headline {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .page-header-business__headline {
    font-size: 1.8rem;
  }
}
.page-dxpolicy .page-header-business__headline {
  font-size: 5.4rem;
  line-height: 1.2;
}
@media (max-width: 1023px) {
  .page-dxpolicy .page-header-business__headline {
    font-size: 3.4rem;
  }
}
@media (max-width: 575px) {
  .page-dxpolicy .page-header-business__headline {
    font-size: 2rem;
  }
}
.page-dxpolicy .page-header-business__headline .sub {
  font-size: 2.4rem;
}
@media (max-width: 1023px) {
  .page-dxpolicy .page-header-business__headline .sub {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .page-dxpolicy .page-header-business__headline .sub {
    font-size: 1.8rem;
  }
}

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

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

.module-card01--col3 a {
  width: 31%;
}
@media (max-width: 767px) {
  .module-card01--col3 a {
    width: 100%;
  }
}
.module-card01--col3 .module-card01__inner {
  gap: 5rem 3.5%;
}
@media (max-width: 767px) {
  .module-card01--col3 .module-card01__inner {
    gap: 20px 3.5%;
    max-width: 350px;
  }
}
.recruit .module-card01 {
  position: relative;
  padding: 10rem 0 0;
}
@media (max-width: 1199px) {
  .recruit .module-card01 {
    padding: 10rem 0 0;
  }
}
@media (max-width: 767px) {
  .recruit .module-card01 {
    padding: 5rem 0 0;
  }
}
.recruit .module-card01:before {
  content: "";
  position: absolute;
  top: 0;
  z-index: -1;
  display: block;
  background: #F2F5F7;
  width: 100%;
  height: 220px;
}
@media (max-width: 767px) {
  .recruit .module-card01:before {
    height: 30vw;
  }
}
.web .module-card01 {
  margin: 8rem 0 0;
}
@media (max-width: 767px) {
  .web .module-card01 {
    margin: 4rem 0 0;
  }
}
.web .module-card01__inner {
  gap: 6rem 3.5%;
}
@media (max-width: 1599px) {
  .web .module-card01__inner {
    gap: 4rem 3.5%;
  }
}
.web .module-card01__headline {
  font-size: 1.6rem;
  margin-top: 1.5rem;
}
@media (max-width: 1199px) {
  .web .module-card01__headline {
    font-size: 1.3rem;
  }
}
.web .module-card01__img {
  width: 100%;
}
.web .module-card01__img.aspect__3-2 img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
.web .module-card01__img.aspect__4-3 img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

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

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

ul.module {
  padding-bottom: 5rem;
}

/* ▼ ドロップダウンの基準を作る */
.nav-pc__gnav > .dropdown {
  position: relative;           /* これがないと left:0 が画面左になります */
}

/* ▼ メニューの基本位置（トグル直下） */
.nav-pc__gnav > .dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);        /* トグルの少し下に */
  left: 0;                      /* トグルの左端を基準に */
  right: auto;
  display: none;
  min-width: 260px;
  background: #fff;
  border: 1px solid #ddd;
  padding: 0.5rem 0;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  z-index: 9999;                /* ヘッダーより前面へ */
}

/* ▼ PC：ホバーで開く */
.nav-pc__gnav > .dropdown:hover .dropdown-menu {
  display: block;
}

/* ▼ ドロップダウン内のリンク見た目 */
.nav-pc__gnav > .dropdown .dropdown-menu li a {
  display: block;
  padding: 0.8rem 1.2rem;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}
.nav-pc__gnav > .dropdown .dropdown-menu li a:hover {
  background: #1a5a8b;
  color: #fff;
}

/* ▼ もし親や祖先に overflow:hidden があると切れるので回避（必要なら） */
.header,
.header__inner,
.nav-pc {
  overflow: visible;
}

/* ▼ 親ドロップダウン領域 */
.nav-pc__gnav > .dropdown {
  position: relative;
}

/* ▼ サブメニューの位置と挙動 */
.nav-pc__gnav > .dropdown .dropdown-menu {
  position: absolute;
  top: 100%;               /* 親の真下に密着（隙間なし） */
  left: 0;
  display: none;
  background: #fff;
  border: 1px solid #ddd;
  min-width: 260px;
  padding: 0;              /* ここも隙間を防ぐために0に */
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  z-index: 9999;
}

/* ▼ hover時に表示（親 or 子どちらにhoverしてもOK） */
.nav-pc__gnav > .dropdown:hover .dropdown-menu,
.nav-pc__gnav > .dropdown .dropdown-menu:hover {
  display: block;
}

/* ▼ サブメニュー内リンク */
.dropdown-menu li a {
  display: block;
  padding: 0.8rem 1.2rem;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s;
}

.dropdown-menu li a:hover {
  background: #1a5a8b;
  color: #fff;
}


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

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

.post-sec h4 {
  font-size: 2rem;
  line-height: 1.6;
  color: #0f48b1;
  margin: 4rem 0 3rem;
}
@media (max-width: 575px) {
  .post-sec h4 {
    font-size: 1.8rem;
    margin: 3rem 0 2rem;
  }
}
.post-sec h5 {
  font-size: 1.8rem;
  line-height: 1.6;
  margin: 3rem 0;
}
@media (max-width: 575px) {
  .post-sec h5 {
    font-size: 1.6rem;
    margin: 3rem 0 2rem;
  }
}
.post-sec ul {
  list-style: disc;
  padding-left: 1.5em;
}

.tab-box {
  width: 100%;
}

.post-sec h4 {
  font-size: 2rem;
  line-height: 1.6;
  color: #cf3131;
  margin: 4rem 0 3rem;
}

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