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

img {
  vertical-align: top;
}

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

body {
  line-height: 1;
}

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

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

del {
  text-decoration: line-through;
}

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

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

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

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

body {
  color: #333;
  font: 1.6rem/1.8 "Noto Sans JP", sans-serif;
  font-weight: 400;
  overflow-wrap: break-word;
  word-break: break-word;
  overflow: hidden;
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
    font-weight: 400;
  }
}

/* link
-----------------------------------------------------*/
a {
  color: #1372E4;
  transition: 0.3s linear;
}
a:hover, a:active, a:focus {
  color: rgb(153.4615384615, 195.7692307692, 246.5384615385);
}

/*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;
}

@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;
  }
}
@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;
  }
}
@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;
  }
}
@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;
  }
}
.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;
}

.vertical-rl {
  writing-mode: vertical-rl;
  word-break: keep-all;
}

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

.lato {
  font-family: "Lato", sans-serif;
  font-weight: 700;
}

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

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

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

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

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

.color-main {
  color: #1372E4 !important;
}

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

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

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

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

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

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

.pos-r {
  position: relative;
}

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

.bg-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;
}

@media (max-width: 1199px) {
  .mt-0-xl {
    margin-top: 0rem !important;
  }
  .pt-0-xl {
    padding-top: 0rem !important;
  }
  .mb-0-xl {
    margin-bottom: 0rem !important;
  }
  .pb-0-xl {
    padding-bottom: 0rem !important;
  }
  .ml-0-xl {
    margin-left: 0rem !important;
  }
  .pl-0-xl {
    padding-left: 0rem !important;
  }
  .mr-0-xl {
    margin-right: 0rem !important;
  }
  .pr-0-xl {
    padding-right: 0rem !important;
  }
  .mt-10-xl {
    margin-top: 1rem !important;
  }
  .pt-10-xl {
    padding-top: 1rem !important;
  }
  .mb-10-xl {
    margin-bottom: 1rem !important;
  }
  .pb-10-xl {
    padding-bottom: 1rem !important;
  }
  .ml-10-xl {
    margin-left: 1rem !important;
  }
  .pl-10-xl {
    padding-left: 1rem !important;
  }
  .mr-10-xl {
    margin-right: 1rem !important;
  }
  .pr-10-xl {
    padding-right: 1rem !important;
  }
  .mt-15-xl {
    margin-top: 1.5rem !important;
  }
  .pt-15-xl {
    padding-top: 1.5rem !important;
  }
  .mb-15-xl {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-xl {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-xl {
    margin-left: 1.5rem !important;
  }
  .pl-15-xl {
    padding-left: 1.5rem !important;
  }
  .mr-15-xl {
    margin-right: 1.5rem !important;
  }
  .pr-15-xl {
    padding-right: 1.5rem !important;
  }
  .mt-20-xl {
    margin-top: 2rem !important;
  }
  .pt-20-xl {
    padding-top: 2rem !important;
  }
  .mb-20-xl {
    margin-bottom: 2rem !important;
  }
  .pb-20-xl {
    padding-bottom: 2rem !important;
  }
  .ml-20-xl {
    margin-left: 2rem !important;
  }
  .pl-20-xl {
    padding-left: 2rem !important;
  }
  .mr-20-xl {
    margin-right: 2rem !important;
  }
  .pr-20-xl {
    padding-right: 2rem !important;
  }
  .mt-25-xl {
    margin-top: 2.5rem !important;
  }
  .pt-25-xl {
    padding-top: 2.5rem !important;
  }
  .mb-25-xl {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-xl {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-xl {
    margin-left: 2.5rem !important;
  }
  .pl-25-xl {
    padding-left: 2.5rem !important;
  }
  .mr-25-xl {
    margin-right: 2.5rem !important;
  }
  .pr-25-xl {
    padding-right: 2.5rem !important;
  }
  .mt-30-xl {
    margin-top: 3rem !important;
  }
  .pt-30-xl {
    padding-top: 3rem !important;
  }
  .mb-30-xl {
    margin-bottom: 3rem !important;
  }
  .pb-30-xl {
    padding-bottom: 3rem !important;
  }
  .ml-30-xl {
    margin-left: 3rem !important;
  }
  .pl-30-xl {
    padding-left: 3rem !important;
  }
  .mr-30-xl {
    margin-right: 3rem !important;
  }
  .pr-30-xl {
    padding-right: 3rem !important;
  }
  .mt-35-xl {
    margin-top: 3.5rem !important;
  }
  .pt-35-xl {
    padding-top: 3.5rem !important;
  }
  .mb-35-xl {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-xl {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-xl {
    margin-left: 3.5rem !important;
  }
  .pl-35-xl {
    padding-left: 3.5rem !important;
  }
  .mr-35-xl {
    margin-right: 3.5rem !important;
  }
  .pr-35-xl {
    padding-right: 3.5rem !important;
  }
  .mt-40-xl {
    margin-top: 4rem !important;
  }
  .pt-40-xl {
    padding-top: 4rem !important;
  }
  .mb-40-xl {
    margin-bottom: 4rem !important;
  }
  .pb-40-xl {
    padding-bottom: 4rem !important;
  }
  .ml-40-xl {
    margin-left: 4rem !important;
  }
  .pl-40-xl {
    padding-left: 4rem !important;
  }
  .mr-40-xl {
    margin-right: 4rem !important;
  }
  .pr-40-xl {
    padding-right: 4rem !important;
  }
  .mt-45-xl {
    margin-top: 4.5rem !important;
  }
  .pt-45-xl {
    padding-top: 4.5rem !important;
  }
  .mb-45-xl {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-xl {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-xl {
    margin-left: 4.5rem !important;
  }
  .pl-45-xl {
    padding-left: 4.5rem !important;
  }
  .mr-45-xl {
    margin-right: 4.5rem !important;
  }
  .pr-45-xl {
    padding-right: 4.5rem !important;
  }
  .mt-50-xl {
    margin-top: 5rem !important;
  }
  .pt-50-xl {
    padding-top: 5rem !important;
  }
  .mb-50-xl {
    margin-bottom: 5rem !important;
  }
  .pb-50-xl {
    padding-bottom: 5rem !important;
  }
  .ml-50-xl {
    margin-left: 5rem !important;
  }
  .pl-50-xl {
    padding-left: 5rem !important;
  }
  .mr-50-xl {
    margin-right: 5rem !important;
  }
  .pr-50-xl {
    padding-right: 5rem !important;
  }
  .mt-60-xl {
    margin-top: 6rem !important;
  }
  .pt-60-xl {
    padding-top: 6rem !important;
  }
  .mb-60-xl {
    margin-bottom: 6rem !important;
  }
  .pb-60-xl {
    padding-bottom: 6rem !important;
  }
  .ml-60-xl {
    margin-left: 6rem !important;
  }
  .pl-60-xl {
    padding-left: 6rem !important;
  }
  .mr-60-xl {
    margin-right: 6rem !important;
  }
  .pr-60-xl {
    padding-right: 6rem !important;
  }
  .mt-70-xl {
    margin-top: 7rem !important;
  }
  .pt-70-xl {
    padding-top: 7rem !important;
  }
  .mb-70-xl {
    margin-bottom: 7rem !important;
  }
  .pb-70-xl {
    padding-bottom: 7rem !important;
  }
  .ml-70-xl {
    margin-left: 7rem !important;
  }
  .pl-70-xl {
    padding-left: 7rem !important;
  }
  .mr-70-xl {
    margin-right: 7rem !important;
  }
  .pr-70-xl {
    padding-right: 7rem !important;
  }
  .mt-80-xl {
    margin-top: 8rem !important;
  }
  .pt-80-xl {
    padding-top: 8rem !important;
  }
  .mb-80-xl {
    margin-bottom: 8rem !important;
  }
  .pb-80-xl {
    padding-bottom: 8rem !important;
  }
  .ml-80-xl {
    margin-left: 8rem !important;
  }
  .pl-80-xl {
    padding-left: 8rem !important;
  }
  .mr-80-xl {
    margin-right: 8rem !important;
  }
  .pr-80-xl {
    padding-right: 8rem !important;
  }
  .mt-100-xl {
    margin-top: 10rem !important;
  }
  .pt-100-xl {
    padding-top: 10rem !important;
  }
  .mb-100-xl {
    margin-bottom: 10rem !important;
  }
  .pb-100-xl {
    padding-bottom: 10rem !important;
  }
  .ml-100-xl {
    margin-left: 10rem !important;
  }
  .pl-100-xl {
    padding-left: 10rem !important;
  }
  .mr-100-xl {
    margin-right: 10rem !important;
  }
  .pr-100-xl {
    padding-right: 10rem !important;
  }
}
@media (max-width: 1023px) {
  .mt-0-lg {
    margin-top: 0rem !important;
  }
  .pt-0-lg {
    padding-top: 0rem !important;
  }
  .mb-0-lg {
    margin-bottom: 0rem !important;
  }
  .pb-0-lg {
    padding-bottom: 0rem !important;
  }
  .ml-0-lg {
    margin-left: 0rem !important;
  }
  .pl-0-lg {
    padding-left: 0rem !important;
  }
  .mr-0-lg {
    margin-right: 0rem !important;
  }
  .pr-0-lg {
    padding-right: 0rem !important;
  }
  .mt-10-lg {
    margin-top: 1rem !important;
  }
  .pt-10-lg {
    padding-top: 1rem !important;
  }
  .mb-10-lg {
    margin-bottom: 1rem !important;
  }
  .pb-10-lg {
    padding-bottom: 1rem !important;
  }
  .ml-10-lg {
    margin-left: 1rem !important;
  }
  .pl-10-lg {
    padding-left: 1rem !important;
  }
  .mr-10-lg {
    margin-right: 1rem !important;
  }
  .pr-10-lg {
    padding-right: 1rem !important;
  }
  .mt-15-lg {
    margin-top: 1.5rem !important;
  }
  .pt-15-lg {
    padding-top: 1.5rem !important;
  }
  .mb-15-lg {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-lg {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-lg {
    margin-left: 1.5rem !important;
  }
  .pl-15-lg {
    padding-left: 1.5rem !important;
  }
  .mr-15-lg {
    margin-right: 1.5rem !important;
  }
  .pr-15-lg {
    padding-right: 1.5rem !important;
  }
  .mt-20-lg {
    margin-top: 2rem !important;
  }
  .pt-20-lg {
    padding-top: 2rem !important;
  }
  .mb-20-lg {
    margin-bottom: 2rem !important;
  }
  .pb-20-lg {
    padding-bottom: 2rem !important;
  }
  .ml-20-lg {
    margin-left: 2rem !important;
  }
  .pl-20-lg {
    padding-left: 2rem !important;
  }
  .mr-20-lg {
    margin-right: 2rem !important;
  }
  .pr-20-lg {
    padding-right: 2rem !important;
  }
  .mt-25-lg {
    margin-top: 2.5rem !important;
  }
  .pt-25-lg {
    padding-top: 2.5rem !important;
  }
  .mb-25-lg {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-lg {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-lg {
    margin-left: 2.5rem !important;
  }
  .pl-25-lg {
    padding-left: 2.5rem !important;
  }
  .mr-25-lg {
    margin-right: 2.5rem !important;
  }
  .pr-25-lg {
    padding-right: 2.5rem !important;
  }
  .mt-30-lg {
    margin-top: 3rem !important;
  }
  .pt-30-lg {
    padding-top: 3rem !important;
  }
  .mb-30-lg {
    margin-bottom: 3rem !important;
  }
  .pb-30-lg {
    padding-bottom: 3rem !important;
  }
  .ml-30-lg {
    margin-left: 3rem !important;
  }
  .pl-30-lg {
    padding-left: 3rem !important;
  }
  .mr-30-lg {
    margin-right: 3rem !important;
  }
  .pr-30-lg {
    padding-right: 3rem !important;
  }
  .mt-35-lg {
    margin-top: 3.5rem !important;
  }
  .pt-35-lg {
    padding-top: 3.5rem !important;
  }
  .mb-35-lg {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-lg {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-lg {
    margin-left: 3.5rem !important;
  }
  .pl-35-lg {
    padding-left: 3.5rem !important;
  }
  .mr-35-lg {
    margin-right: 3.5rem !important;
  }
  .pr-35-lg {
    padding-right: 3.5rem !important;
  }
  .mt-40-lg {
    margin-top: 4rem !important;
  }
  .pt-40-lg {
    padding-top: 4rem !important;
  }
  .mb-40-lg {
    margin-bottom: 4rem !important;
  }
  .pb-40-lg {
    padding-bottom: 4rem !important;
  }
  .ml-40-lg {
    margin-left: 4rem !important;
  }
  .pl-40-lg {
    padding-left: 4rem !important;
  }
  .mr-40-lg {
    margin-right: 4rem !important;
  }
  .pr-40-lg {
    padding-right: 4rem !important;
  }
  .mt-45-lg {
    margin-top: 4.5rem !important;
  }
  .pt-45-lg {
    padding-top: 4.5rem !important;
  }
  .mb-45-lg {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-lg {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-lg {
    margin-left: 4.5rem !important;
  }
  .pl-45-lg {
    padding-left: 4.5rem !important;
  }
  .mr-45-lg {
    margin-right: 4.5rem !important;
  }
  .pr-45-lg {
    padding-right: 4.5rem !important;
  }
  .mt-50-lg {
    margin-top: 5rem !important;
  }
  .pt-50-lg {
    padding-top: 5rem !important;
  }
  .mb-50-lg {
    margin-bottom: 5rem !important;
  }
  .pb-50-lg {
    padding-bottom: 5rem !important;
  }
  .ml-50-lg {
    margin-left: 5rem !important;
  }
  .pl-50-lg {
    padding-left: 5rem !important;
  }
  .mr-50-lg {
    margin-right: 5rem !important;
  }
  .pr-50-lg {
    padding-right: 5rem !important;
  }
  .mt-60-lg {
    margin-top: 6rem !important;
  }
  .pt-60-lg {
    padding-top: 6rem !important;
  }
  .mb-60-lg {
    margin-bottom: 6rem !important;
  }
  .pb-60-lg {
    padding-bottom: 6rem !important;
  }
  .ml-60-lg {
    margin-left: 6rem !important;
  }
  .pl-60-lg {
    padding-left: 6rem !important;
  }
  .mr-60-lg {
    margin-right: 6rem !important;
  }
  .pr-60-lg {
    padding-right: 6rem !important;
  }
  .mt-70-lg {
    margin-top: 7rem !important;
  }
  .pt-70-lg {
    padding-top: 7rem !important;
  }
  .mb-70-lg {
    margin-bottom: 7rem !important;
  }
  .pb-70-lg {
    padding-bottom: 7rem !important;
  }
  .ml-70-lg {
    margin-left: 7rem !important;
  }
  .pl-70-lg {
    padding-left: 7rem !important;
  }
  .mr-70-lg {
    margin-right: 7rem !important;
  }
  .pr-70-lg {
    padding-right: 7rem !important;
  }
  .mt-80-lg {
    margin-top: 8rem !important;
  }
  .pt-80-lg {
    padding-top: 8rem !important;
  }
  .mb-80-lg {
    margin-bottom: 8rem !important;
  }
  .pb-80-lg {
    padding-bottom: 8rem !important;
  }
  .ml-80-lg {
    margin-left: 8rem !important;
  }
  .pl-80-lg {
    padding-left: 8rem !important;
  }
  .mr-80-lg {
    margin-right: 8rem !important;
  }
  .pr-80-lg {
    padding-right: 8rem !important;
  }
  .mt-100-lg {
    margin-top: 10rem !important;
  }
  .pt-100-lg {
    padding-top: 10rem !important;
  }
  .mb-100-lg {
    margin-bottom: 10rem !important;
  }
  .pb-100-lg {
    padding-bottom: 10rem !important;
  }
  .ml-100-lg {
    margin-left: 10rem !important;
  }
  .pl-100-lg {
    padding-left: 10rem !important;
  }
  .mr-100-lg {
    margin-right: 10rem !important;
  }
  .pr-100-lg {
    padding-right: 10rem !important;
  }
}
@media (max-width: 767px) {
  .mt-0-md {
    margin-top: 0rem !important;
  }
  .pt-0-md {
    padding-top: 0rem !important;
  }
  .mb-0-md {
    margin-bottom: 0rem !important;
  }
  .pb-0-md {
    padding-bottom: 0rem !important;
  }
  .ml-0-md {
    margin-left: 0rem !important;
  }
  .pl-0-md {
    padding-left: 0rem !important;
  }
  .mr-0-md {
    margin-right: 0rem !important;
  }
  .pr-0-md {
    padding-right: 0rem !important;
  }
  .mt-10-md {
    margin-top: 1rem !important;
  }
  .pt-10-md {
    padding-top: 1rem !important;
  }
  .mb-10-md {
    margin-bottom: 1rem !important;
  }
  .pb-10-md {
    padding-bottom: 1rem !important;
  }
  .ml-10-md {
    margin-left: 1rem !important;
  }
  .pl-10-md {
    padding-left: 1rem !important;
  }
  .mr-10-md {
    margin-right: 1rem !important;
  }
  .pr-10-md {
    padding-right: 1rem !important;
  }
  .mt-15-md {
    margin-top: 1.5rem !important;
  }
  .pt-15-md {
    padding-top: 1.5rem !important;
  }
  .mb-15-md {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-md {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-md {
    margin-left: 1.5rem !important;
  }
  .pl-15-md {
    padding-left: 1.5rem !important;
  }
  .mr-15-md {
    margin-right: 1.5rem !important;
  }
  .pr-15-md {
    padding-right: 1.5rem !important;
  }
  .mt-20-md {
    margin-top: 2rem !important;
  }
  .pt-20-md {
    padding-top: 2rem !important;
  }
  .mb-20-md {
    margin-bottom: 2rem !important;
  }
  .pb-20-md {
    padding-bottom: 2rem !important;
  }
  .ml-20-md {
    margin-left: 2rem !important;
  }
  .pl-20-md {
    padding-left: 2rem !important;
  }
  .mr-20-md {
    margin-right: 2rem !important;
  }
  .pr-20-md {
    padding-right: 2rem !important;
  }
  .mt-25-md {
    margin-top: 2.5rem !important;
  }
  .pt-25-md {
    padding-top: 2.5rem !important;
  }
  .mb-25-md {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-md {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-md {
    margin-left: 2.5rem !important;
  }
  .pl-25-md {
    padding-left: 2.5rem !important;
  }
  .mr-25-md {
    margin-right: 2.5rem !important;
  }
  .pr-25-md {
    padding-right: 2.5rem !important;
  }
  .mt-30-md {
    margin-top: 3rem !important;
  }
  .pt-30-md {
    padding-top: 3rem !important;
  }
  .mb-30-md {
    margin-bottom: 3rem !important;
  }
  .pb-30-md {
    padding-bottom: 3rem !important;
  }
  .ml-30-md {
    margin-left: 3rem !important;
  }
  .pl-30-md {
    padding-left: 3rem !important;
  }
  .mr-30-md {
    margin-right: 3rem !important;
  }
  .pr-30-md {
    padding-right: 3rem !important;
  }
  .mt-35-md {
    margin-top: 3.5rem !important;
  }
  .pt-35-md {
    padding-top: 3.5rem !important;
  }
  .mb-35-md {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-md {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-md {
    margin-left: 3.5rem !important;
  }
  .pl-35-md {
    padding-left: 3.5rem !important;
  }
  .mr-35-md {
    margin-right: 3.5rem !important;
  }
  .pr-35-md {
    padding-right: 3.5rem !important;
  }
  .mt-40-md {
    margin-top: 4rem !important;
  }
  .pt-40-md {
    padding-top: 4rem !important;
  }
  .mb-40-md {
    margin-bottom: 4rem !important;
  }
  .pb-40-md {
    padding-bottom: 4rem !important;
  }
  .ml-40-md {
    margin-left: 4rem !important;
  }
  .pl-40-md {
    padding-left: 4rem !important;
  }
  .mr-40-md {
    margin-right: 4rem !important;
  }
  .pr-40-md {
    padding-right: 4rem !important;
  }
  .mt-45-md {
    margin-top: 4.5rem !important;
  }
  .pt-45-md {
    padding-top: 4.5rem !important;
  }
  .mb-45-md {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-md {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-md {
    margin-left: 4.5rem !important;
  }
  .pl-45-md {
    padding-left: 4.5rem !important;
  }
  .mr-45-md {
    margin-right: 4.5rem !important;
  }
  .pr-45-md {
    padding-right: 4.5rem !important;
  }
  .mt-50-md {
    margin-top: 5rem !important;
  }
  .pt-50-md {
    padding-top: 5rem !important;
  }
  .mb-50-md {
    margin-bottom: 5rem !important;
  }
  .pb-50-md {
    padding-bottom: 5rem !important;
  }
  .ml-50-md {
    margin-left: 5rem !important;
  }
  .pl-50-md {
    padding-left: 5rem !important;
  }
  .mr-50-md {
    margin-right: 5rem !important;
  }
  .pr-50-md {
    padding-right: 5rem !important;
  }
  .mt-60-md {
    margin-top: 6rem !important;
  }
  .pt-60-md {
    padding-top: 6rem !important;
  }
  .mb-60-md {
    margin-bottom: 6rem !important;
  }
  .pb-60-md {
    padding-bottom: 6rem !important;
  }
  .ml-60-md {
    margin-left: 6rem !important;
  }
  .pl-60-md {
    padding-left: 6rem !important;
  }
  .mr-60-md {
    margin-right: 6rem !important;
  }
  .pr-60-md {
    padding-right: 6rem !important;
  }
  .mt-70-md {
    margin-top: 7rem !important;
  }
  .pt-70-md {
    padding-top: 7rem !important;
  }
  .mb-70-md {
    margin-bottom: 7rem !important;
  }
  .pb-70-md {
    padding-bottom: 7rem !important;
  }
  .ml-70-md {
    margin-left: 7rem !important;
  }
  .pl-70-md {
    padding-left: 7rem !important;
  }
  .mr-70-md {
    margin-right: 7rem !important;
  }
  .pr-70-md {
    padding-right: 7rem !important;
  }
  .mt-80-md {
    margin-top: 8rem !important;
  }
  .pt-80-md {
    padding-top: 8rem !important;
  }
  .mb-80-md {
    margin-bottom: 8rem !important;
  }
  .pb-80-md {
    padding-bottom: 8rem !important;
  }
  .ml-80-md {
    margin-left: 8rem !important;
  }
  .pl-80-md {
    padding-left: 8rem !important;
  }
  .mr-80-md {
    margin-right: 8rem !important;
  }
  .pr-80-md {
    padding-right: 8rem !important;
  }
  .mt-100-md {
    margin-top: 10rem !important;
  }
  .pt-100-md {
    padding-top: 10rem !important;
  }
  .mb-100-md {
    margin-bottom: 10rem !important;
  }
  .pb-100-md {
    padding-bottom: 10rem !important;
  }
  .ml-100-md {
    margin-left: 10rem !important;
  }
  .pl-100-md {
    padding-left: 10rem !important;
  }
  .mr-100-md {
    margin-right: 10rem !important;
  }
  .pr-100-md {
    padding-right: 10rem !important;
  }
}
@media (max-width: 575px) {
  .mt-0-sm {
    margin-top: 0rem !important;
  }
  .pt-0-sm {
    padding-top: 0rem !important;
  }
  .mb-0-sm {
    margin-bottom: 0rem !important;
  }
  .pb-0-sm {
    padding-bottom: 0rem !important;
  }
  .ml-0-sm {
    margin-left: 0rem !important;
  }
  .pl-0-sm {
    padding-left: 0rem !important;
  }
  .mr-0-sm {
    margin-right: 0rem !important;
  }
  .pr-0-sm {
    padding-right: 0rem !important;
  }
  .mt-10-sm {
    margin-top: 1rem !important;
  }
  .pt-10-sm {
    padding-top: 1rem !important;
  }
  .mb-10-sm {
    margin-bottom: 1rem !important;
  }
  .pb-10-sm {
    padding-bottom: 1rem !important;
  }
  .ml-10-sm {
    margin-left: 1rem !important;
  }
  .pl-10-sm {
    padding-left: 1rem !important;
  }
  .mr-10-sm {
    margin-right: 1rem !important;
  }
  .pr-10-sm {
    padding-right: 1rem !important;
  }
  .mt-15-sm {
    margin-top: 1.5rem !important;
  }
  .pt-15-sm {
    padding-top: 1.5rem !important;
  }
  .mb-15-sm {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-sm {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-sm {
    margin-left: 1.5rem !important;
  }
  .pl-15-sm {
    padding-left: 1.5rem !important;
  }
  .mr-15-sm {
    margin-right: 1.5rem !important;
  }
  .pr-15-sm {
    padding-right: 1.5rem !important;
  }
  .mt-20-sm {
    margin-top: 2rem !important;
  }
  .pt-20-sm {
    padding-top: 2rem !important;
  }
  .mb-20-sm {
    margin-bottom: 2rem !important;
  }
  .pb-20-sm {
    padding-bottom: 2rem !important;
  }
  .ml-20-sm {
    margin-left: 2rem !important;
  }
  .pl-20-sm {
    padding-left: 2rem !important;
  }
  .mr-20-sm {
    margin-right: 2rem !important;
  }
  .pr-20-sm {
    padding-right: 2rem !important;
  }
  .mt-25-sm {
    margin-top: 2.5rem !important;
  }
  .pt-25-sm {
    padding-top: 2.5rem !important;
  }
  .mb-25-sm {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-sm {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-sm {
    margin-left: 2.5rem !important;
  }
  .pl-25-sm {
    padding-left: 2.5rem !important;
  }
  .mr-25-sm {
    margin-right: 2.5rem !important;
  }
  .pr-25-sm {
    padding-right: 2.5rem !important;
  }
  .mt-30-sm {
    margin-top: 3rem !important;
  }
  .pt-30-sm {
    padding-top: 3rem !important;
  }
  .mb-30-sm {
    margin-bottom: 3rem !important;
  }
  .pb-30-sm {
    padding-bottom: 3rem !important;
  }
  .ml-30-sm {
    margin-left: 3rem !important;
  }
  .pl-30-sm {
    padding-left: 3rem !important;
  }
  .mr-30-sm {
    margin-right: 3rem !important;
  }
  .pr-30-sm {
    padding-right: 3rem !important;
  }
  .mt-35-sm {
    margin-top: 3.5rem !important;
  }
  .pt-35-sm {
    padding-top: 3.5rem !important;
  }
  .mb-35-sm {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-sm {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-sm {
    margin-left: 3.5rem !important;
  }
  .pl-35-sm {
    padding-left: 3.5rem !important;
  }
  .mr-35-sm {
    margin-right: 3.5rem !important;
  }
  .pr-35-sm {
    padding-right: 3.5rem !important;
  }
  .mt-40-sm {
    margin-top: 4rem !important;
  }
  .pt-40-sm {
    padding-top: 4rem !important;
  }
  .mb-40-sm {
    margin-bottom: 4rem !important;
  }
  .pb-40-sm {
    padding-bottom: 4rem !important;
  }
  .ml-40-sm {
    margin-left: 4rem !important;
  }
  .pl-40-sm {
    padding-left: 4rem !important;
  }
  .mr-40-sm {
    margin-right: 4rem !important;
  }
  .pr-40-sm {
    padding-right: 4rem !important;
  }
  .mt-45-sm {
    margin-top: 4.5rem !important;
  }
  .pt-45-sm {
    padding-top: 4.5rem !important;
  }
  .mb-45-sm {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-sm {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-sm {
    margin-left: 4.5rem !important;
  }
  .pl-45-sm {
    padding-left: 4.5rem !important;
  }
  .mr-45-sm {
    margin-right: 4.5rem !important;
  }
  .pr-45-sm {
    padding-right: 4.5rem !important;
  }
  .mt-50-sm {
    margin-top: 5rem !important;
  }
  .pt-50-sm {
    padding-top: 5rem !important;
  }
  .mb-50-sm {
    margin-bottom: 5rem !important;
  }
  .pb-50-sm {
    padding-bottom: 5rem !important;
  }
  .ml-50-sm {
    margin-left: 5rem !important;
  }
  .pl-50-sm {
    padding-left: 5rem !important;
  }
  .mr-50-sm {
    margin-right: 5rem !important;
  }
  .pr-50-sm {
    padding-right: 5rem !important;
  }
  .mt-60-sm {
    margin-top: 6rem !important;
  }
  .pt-60-sm {
    padding-top: 6rem !important;
  }
  .mb-60-sm {
    margin-bottom: 6rem !important;
  }
  .pb-60-sm {
    padding-bottom: 6rem !important;
  }
  .ml-60-sm {
    margin-left: 6rem !important;
  }
  .pl-60-sm {
    padding-left: 6rem !important;
  }
  .mr-60-sm {
    margin-right: 6rem !important;
  }
  .pr-60-sm {
    padding-right: 6rem !important;
  }
  .mt-70-sm {
    margin-top: 7rem !important;
  }
  .pt-70-sm {
    padding-top: 7rem !important;
  }
  .mb-70-sm {
    margin-bottom: 7rem !important;
  }
  .pb-70-sm {
    padding-bottom: 7rem !important;
  }
  .ml-70-sm {
    margin-left: 7rem !important;
  }
  .pl-70-sm {
    padding-left: 7rem !important;
  }
  .mr-70-sm {
    margin-right: 7rem !important;
  }
  .pr-70-sm {
    padding-right: 7rem !important;
  }
  .mt-80-sm {
    margin-top: 8rem !important;
  }
  .pt-80-sm {
    padding-top: 8rem !important;
  }
  .mb-80-sm {
    margin-bottom: 8rem !important;
  }
  .pb-80-sm {
    padding-bottom: 8rem !important;
  }
  .ml-80-sm {
    margin-left: 8rem !important;
  }
  .pl-80-sm {
    padding-left: 8rem !important;
  }
  .mr-80-sm {
    margin-right: 8rem !important;
  }
  .pr-80-sm {
    padding-right: 8rem !important;
  }
  .mt-100-sm {
    margin-top: 10rem !important;
  }
  .pt-100-sm {
    padding-top: 10rem !important;
  }
  .mb-100-sm {
    margin-bottom: 10rem !important;
  }
  .pb-100-sm {
    padding-bottom: 10rem !important;
  }
  .ml-100-sm {
    margin-left: 10rem !important;
  }
  .pl-100-sm {
    padding-left: 10rem !important;
  }
  .mr-100-sm {
    margin-right: 10rem !important;
  }
  .pr-100-sm {
    padding-right: 10rem !important;
  }
}
/*header
-----------------------------------------------------*/
.header-box {
  position: relative;
}
.header-box .logo {
  position: absolute;
  top: 0;
  left: 8%;
}
@media (max-width: 1199px) {
  .header-box .logo {
    left: 2rem;
  }
}
.header-box .logo img {
  width: 110px;
}
@media (max-width: 1023px) {
  .header-box .logo img {
    width: 90px;
  }
}
.header-box .logo a:hover {
  opacity: 1;
}
.header-box nav {
  position: absolute;
  top: 30px;
  right: 0;
  background: #FFF;
  padding: 2rem 5.5rem;
  border-radius: 100px 0 0 100px;
  box-shadow: 0px 0px 10px 0px rgba(59, 34, 0, 0.2);
}
@media (max-width: 1199px) {
  .header-box nav {
    top: 20px;
    padding: 1rem 2rem 1rem 4rem;
  }
}
@media (max-width: 1023px) {
  .header-box nav {
    position: fixed;
    top: initial;
    bottom: 0;
    left: 0;
    right: initial;
    background: none;
    padding: 0;
    border-radius: 0;
    width: 100%;
    box-shadow: 0px 0px 10px 0px rgba(59, 34, 0, 0.2);
    z-index: 100;
  }
}
.header-box nav ul {
  display: flex;
  align-items: center;
  gap: 0 4rem;
}
@media (max-width: 1199px) {
  .header-box nav ul {
    gap: 0 3rem;
  }
}
@media (max-width: 1023px) {
  .header-box nav ul {
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 1023px) {
  .header-box nav ul li {
    text-align: center;
    width: 33.3333333333%;
    flex-grow: 1;
  }
}
.header-box nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 1.5rem;
}
@media (max-width: 1199px) {
  .header-box nav ul li a {
    font-size: 1.4rem;
  }
}
@media (max-width: 1023px) {
  .header-box nav ul li a {
    color: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
    line-height: 1.4;
    height: 52px;
  }
}
@media (max-width: 575px) {
  .header-box nav ul li a {
    padding: 1rem;
    line-height: 1.2;
    font-size: 1rem;
    height: 30px;
  }
}
.header-box nav ul li a span {
  font-size: 1.3rem;
  display: block;
  line-height: 1.2;
  color: #E53B3B;
}
@media (max-width: 1199px) {
  .header-box nav ul li a span {
    font-size: 1.2rem;
  }
}
@media (max-width: 1023px) {
  .header-box nav ul li a span {
    font-size: 1rem;
    background: #fff;
    width: fit-content;
    margin: 0 auto 0.2rem;
    background: #FBE530;
  }
}
@media (max-width: 575px) {
  .header-box nav ul li a span {
    font-size: 0.8rem;
  }
}
@media (min-width: 768px) {
  .header-box nav ul li a .smnav {
    display: none;
  }
}
@media (max-width: 575px) {
  .header-box nav ul li a .smnav {
    display: none;
  }
}
@media (max-width: 1023px) {
  .header-box nav ul li:nth-of-type(1) a {
    background: linear-gradient(90deg, rgba(157, 68, 220, 0.9) 0%, rgba(189, 106, 247, 0.9) 100%);
  }
}
@media (max-width: 1023px) {
  .header-box nav ul li:nth-of-type(2) a {
    background: linear-gradient(90deg, rgba(13, 165, 26, 0.9) 0%, rgba(50, 195, 62, 0.9) 100%);
  }
}
@media (max-width: 1023px) {
  .header-box nav ul li:nth-of-type(3) a {
    background: linear-gradient(90deg, rgba(19, 114, 228, 0.9) 0%, rgba(17, 139, 238, 0.9) 100%);
  }
}
@media (max-width: 1023px) {
  .header-box nav ul li:nth-of-type(4) a {
    background: linear-gradient(180deg, rgba(250, 206, 0, 0.9), rgba(250, 169, 74, 0.9));
  }
}
@media (max-width: 1023px) {
  .header-box nav ul li:nth-of-type(5) a {
    background: linear-gradient(90deg, rgba(5, 208, 154, 0.9) 0%, rgba(0, 179, 131, 0.9) 100%);
  }
}

/*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-xl {
  max-width: 1400px;
  padding: 0 5%;
  margin: 0 auto;
}

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

.bg-gray {
  background: #f3f3f3;
}

.bg-blue {
  background: #E5F1FF;
}

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

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

/*h
-----------------------------------------------------*/
.h--bg-blue {
  background: linear-gradient(90deg, #1372E4 0%, #118BEE 100%);
  font-size: 3rem;
  color: #FFF;
  text-align: center;
  padding: 0.6rem 2rem;
  box-sizing: border-box;
  margin-bottom: 4.5rem;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .h--bg-blue {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) {
  .h--bg-blue {
    font-size: 2.4rem;
  }
}
@media (max-width: 575px) {
  .h--bg-blue {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}

.h-sec {
  width: 100%;
  text-align: center;
  position: relative;
  margin-bottom: 7rem;
}
@media (max-width: 575px) {
  .h-sec {
    margin-bottom: 5rem;
  }
}
.h-sec h1 {
  font-size: 4rem;
  color: #1372E4;
  line-height: 1.2;
  z-index: 1;
  position: relative;
}
@media (max-width: 767px) {
  .h-sec h1 {
    font-size: 2.6rem;
  }
}
.h-sec span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(19, 114, 228, 0.4);
  font-size: 104px;
  line-height: 1;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .h-sec span {
    font-size: 8rem;
  }
}
@media (max-width: 575px) {
  .h-sec span {
    font-size: 6rem;
  }
}

/*ul
-----------------------------------------------------*/
ul.list-dot li {
  padding-left: 1.5rem;
  text-indent: -1.5rem;
}
ul.list-dot li:before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #333;
  border-radius: 10px;
  vertical-align: middle;
  margin-right: 1rem;
  margin-bottom: 0.3rem;
}
ul.list-dot li a {
  color: #0f76f7;
}

ul.list-dot02 {
  list-style: disc;
  font-size: 1.8rem;
  padding-left: 3rem;
}
@media (max-width: 575px) {
  ul.list-dot02 {
    padding-left: 2rem;
  }
}

/*btn
-----------------------------------------------------*/
a.btn01 {
  background: #FFF;
  color: #333;
  font-weight: bold;
  text-decoration: none;
  border-radius: 80px;
  box-sizing: border-box;
  padding: 0.8rem 3rem;
  max-width: 280px;
  width: 100%;
  text-align: center;
  display: inline-block;
}

.btn02 {
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
  margin-top: 5.5rem;
}
@media (max-width: 575px) {
  .btn02 {
    margin-top: 4rem;
  }
}
.btn02 a {
  font-weight: bold;
  font-size: 2.5rem;
  text-align: center;
  text-decoration: none;
  color: #FFF;
  display: block;
  position: relative;
  padding: 2.5rem 2rem;
  border-radius: 100px;
  box-sizing: border-box;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
@media (max-width: 575px) {
  .btn02 a {
    padding: 2.5rem 2rem;
    font-size: 2rem;
  }
}
.btn02--management a {
  background: linear-gradient(90deg, #9D44DC 0%, #BD6AF7 100%);
}
.btn02--digital a {
  background: linear-gradient(90deg, #0DA51A 0%, #32C33E 100%);
}
.btn02--general a {
  background: linear-gradient(90deg, #1372E4 0%, #118BEE 100%);
}

a.btn03 {
  background: #FBE530;
  color: #333;
  font-weight: bold;
  text-decoration: none;
  border-radius: 80px;
  box-sizing: border-box;
  padding: 0.8rem 3rem;
  max-width: 280px;
  width: 100%;
  text-align: center;
  display: inline-block;
}

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

/*about
-----------------------------------------------------*/
.about .flex {
  gap: 2rem 4rem;
}
@media (max-width: 1199px) {
  .about .flex {
    justify-content: space-between;
  }
}
@media (max-width: 1023px) {
  .about .flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 1199px) {
  .about .flex .col01 {
    width: 50%;
  }
}
@media (max-width: 1199px) {
  .about .flex .col02 {
    width: 40%;
  }
}
.about .flex .col01,
.about .flex .col02 {
  width: 50%;
}
@media (max-width: 1023px) {
  .about .flex .col01,
  .about .flex .col02 {
    width: 100%;
  }
}
.about .h1-about {
  position: relative;
  padding: 0 0 0 5rem;
}
@media (max-width: 1023px) {
  .about .h1-about {
    padding: 0 0 0 12rem;
    width: 88%;
    box-sizing: border-box;
    margin: 0 0 2rem 0;
  }
}
@media (max-width: 767px) {
  .about .h1-about {
    padding: 0 0 0 12rem;
    width: 100%;
  }
}
@media (max-width: 575px) {
  .about .h1-about {
    padding: 0 0 0 5rem;
  }
}
.about .h1-about h1 {
  background: #1372E4;
  color: #FFF;
  font-size: 4.4rem;
  display: inline;
  line-height: 1.6;
  padding: 0 1.2rem;
}
@media (max-width: 1199px) {
  .about .h1-about h1 {
    font-size: 3.8rem;
  }
}
@media (max-width: 575px) {
  .about .h1-about h1 {
    font-size: 2.6rem;
  }
}
.about .h1-about span {
  color: transparent;
  -webkit-text-stroke: 1px #1372E4;
  font-size: 114px;
  line-height: 1;
  position: absolute;
  left: -40px;
  top: 0;
  z-index: -9;
}
@media (max-width: 1023px) {
  .about .h1-about span {
    left: 0;
  }
}
@media (max-width: 575px) {
  .about .h1-about span {
    font-size: 8rem;
  }
}
.about .h1-about img {
  z-index: -10;
  position: relative;
  max-width: 370px;
  margin-left: 4rem;
  width: 100%;
  display: block;
}
@media (max-width: 575px) {
  .about .h1-about img {
    max-width: 250px;
    margin-left: 3rem;
  }
}
.about .col02 h2 {
  font-size: 2.4rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}
@media (max-width: 1023px) {
  .about .col02 h2 {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .about .col02 h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}
.about .col02 p {
  font-size: 1.8rem;
}
@media (max-width: 1199px) {
  .about .col02 p {
    font-size: 1.6rem;
  }
}

/*reborn
-----------------------------------------------------*/
.reborn {
  padding: 0;
}
.reborn .bg-blue {
  position: relative;
  padding: 8rem 0 12rem 0;
}
@media (max-width: 767px) {
  .reborn .bg-blue {
    padding: 8rem 0;
  }
}
@media (max-width: 575px) {
  .reborn .bg-blue {
    padding: 8rem 0 6rem 0;
  }
}
.reborn .h1-reborn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  top: -26px;
}
@media (max-width: 1023px) {
  .reborn .h1-reborn {
    top: -18px;
  }
}
.reborn .h1-reborn h1 {
  font-size: 4rem;
  color: #1372E4;
  line-height: 1.2;
  z-index: 1;
  position: relative;
}
@media (max-width: 1023px) {
  .reborn .h1-reborn h1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 767px) {
  .reborn .h1-reborn h1 {
    font-size: 2.6rem;
    padding: 0 1rem;
  }
}
@media (max-width: 575px) {
  .reborn .h1-reborn h1 {
    font-size: 2.2rem;
  }
}
.reborn .h1-reborn span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(19, 114, 228, 0.4);
  font-size: 104px;
  line-height: 1;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .reborn .h1-reborn span {
    font-size: 8rem;
  }
}
@media (max-width: 575px) {
  .reborn .h1-reborn span {
    font-size: 6rem;
  }
}
.reborn-step__flex {
  gap: 1.2rem;
}
@media (max-width: 1023px) {
  .reborn-step__flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.reborn-step__flex-box {
  width: calc(33.3333333333% - 0.6rem);
  border-radius: 20px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
  background-color: #FFF;
}
@media (max-width: 1023px) {
  .reborn-step__flex-box {
    width: calc(50% - 0.6rem);
  }
}
@media (max-width: 575px) {
  .reborn-step__flex-box {
    width: 100%;
  }
}
.reborn-step__flex-box-top {
  background-color: #FFEE68;
  position: relative;
  padding-top: 4.7rem;
  border-radius: 20px 20px 0 0;
}
.reborn-step__flex-box-top .en {
  background-color: #FFEE68;
  width: 60px;
  height: 60px;
  border-radius: 100px;
  color: #1372E4;
  font-weight: bold;
  font-size: 2.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  top: 17px;
}
.reborn-step__flex-box-top .en span {
  font-size: 1.2rem;
}
.reborn-step__flex-box-bottom {
  padding: 5rem 2rem 3.5rem 2rem;
}
.reborn-step__flex-box-bottom h3 {
  color: #1372E4;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.4;
}
.reborn-step__flex-box-bottom ul {
  margin-top: 2rem;
}
.reborn-features {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .reborn-features {
    margin-top: 6rem;
  }
}
.reborn-features__flex {
  align-items: center;
  gap: 2rem 5rem;
  margin-bottom: 4rem;
}
.reborn-features__flex:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .reborn-features__flex {
    gap: 2rem 3rem;
  }
}
@media (max-width: 575px) {
  .reborn-features__flex {
    flex-wrap: wrap;
  }
}
.reborn-features__flex-box {
  width: 100%;
}
.reborn-features__flex .col01 {
  max-width: 340px;
}
@media (max-width: 575px) {
  .reborn-features__flex .col01 {
    order: 1;
    margin: auto;
  }
}
.reborn-features__flex .col01 img {
  border-radius: 20px;
}
.reborn-features__flex .col02 .en {
  color: #FFF;
  font-size: 1.2rem;
  font-weight: bold;
  background-color: #1372E4;
  border-radius: 50px;
  padding: 0 1rem;
  box-sizing: border-box;
  display: inline-block;
}
.reborn-features__flex .col02 h3 {
  font-size: 2.2rem;
  margin: 0 0 1rem 0;
}
@media (max-width: 575px) {
  .reborn-features__flex .col02 h3 {
    font-size: 2rem;
  }
}
.reborn-features__flex .col02 p {
  font-size: 1.8rem;
}
@media (max-width: 575px) {
  .reborn-features__flex .col02 p {
    font-size: 1.6rem;
  }
}

/*course
-----------------------------------------------------*/
.course-list {
  gap: 2.2rem;
  padding: 0 0 8rem 0;
}
@media (max-width: 1023px) {
  .course-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .course-list {
    padding: 0 0 6rem 0;
  }
}
.course-list-box {
  border-radius: 20px;
  padding: 4rem 3rem;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  position: relative;
  width: calc(33.3333333333% - 1.1rem);
  display: flex;
  justify-content: center;
  flex-direction: column;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .course-list-box {
    width: calc(50% - 1.1rem);
  }
}
@media (max-width: 767px) {
  .course-list-box {
    width: 100%;
  }
}
.course-list-box .img {
  width: 100%;
  max-width: 300px;
  text-align: center;
  margin: 0 auto 3rem auto;
}
.course-list-box .img img {
  margin: auto;
}
.course-list-box .en {
  color: #FFF;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 20px;
  padding: 0.5rem 2rem;
  box-sizing: border-box;
  display: inline-block;
}
.course-list-box h2 {
  font-weight: bold;
  font-size: 2.2rem;
  color: #FFF;
  width: 100%;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 1023px) {
  .course-list-box h2 {
    font-size: 2rem;
  }
}
.course-list-box p {
  color: #FFF;
  text-align: left;
}
.course-list-box ul {
  width: 100%;
  margin-top: 2rem;
  color: #FFF;
  flex-grow: 1;
}
.course-list-box ul li:before {
  background-color: #FFF;
}
.course-list-box a {
  margin-top: 3rem;
}
.course-list .col01 {
  background-color: #A24FDD;
}
.course-list .col01 .en {
  background-color: #8934C6;
}
.course-list .col02 {
  background-color: #0DA51A;
}
.course-list .col02 .en {
  background-color: #01820C;
}
.course-list .col03 {
  background-color: #1372E4;
}
.course-list .col03 .en {
  background-color: #075ABD;
}
@media (max-width: 1023px) {
  .course .ondemand .container-md {
    padding: 0;
  }
}
.course .ondemand span {
  font-size: 3rem;
  font-weight: bold;
  border: 1px solid #333;
  padding: 0.5rem 3rem;
  display: inline-block;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .course .ondemand span {
    font-size: 2.4rem;
  }
}
@media (max-width: 575px) {
  .course .ondemand span {
    font-size: 1.8rem;
  }
}
.course .ondemand-example {
  background-color: #E5F1FF;
  padding: 4rem 5rem;
  border-radius: 20px;
  margin-top: 3rem;
}
@media (max-width: 575px) {
  .course .ondemand-example {
    padding: 3rem 2rem;
  }
}
.course .ondemand-example h3 {
  background-color: #1372E4;
  color: #FFF;
  font-size: 1.6rem;
  border-radius: 10px;
  padding: 0.5rem 2rem;
  display: inline-block;
  margin-bottom: 2rem;
}
.course .ondemand-example h4 {
  color: #1372E4;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
@media (max-width: 575px) {
  .course .ondemand-example h4 {
    font-size: 1.6rem;
  }
}
.course .ondemand-example ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2rem;
  margin-bottom: 2.5rem;
}
.course .ondemand-example ul:last-of-type {
  margin-bottom: 0;
}

/*detail
-----------------------------------------------------*/
.detail {
  background-color: #F3F3F3;
  padding: 12rem 0;
}
@media (max-width: 767px) {
  .detail {
    padding: 8rem 0;
  }
}
@media (max-width: 575px) {
  .detail {
    padding: 6rem 0;
  }
}
.detail-box {
  border-radius: 40px 40px 0 0;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
}
.detail-box-inner__bottom {
  background-color: #FFF;
  padding: 6rem 12rem;
}
@media (max-width: 1199px) {
  .detail-box-inner__bottom {
    padding: 6rem;
  }
}
@media (max-width: 899px) {
  .detail-box-inner__bottom {
    padding: 5rem 4rem;
  }
}
@media (max-width: 767px) {
  .detail-box-inner__bottom {
    padding: 4rem 2rem;
  }
}
.detail-box-inner__bottom .detail-flex {
  gap: 2.5rem 4.5rem;
}
@media (max-width: 767px) {
  .detail-box-inner__bottom .detail-flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.detail-box-inner__bottom .detail-flex .col01 {
  width: 100%;
}
.detail-box-inner__bottom .detail-flex .col02 {
  width: 100%;
}
.detail-box-inner__bottom .detail-flex .col02 p {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .detail-box-inner__bottom .detail-flex .col02 p {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .detail-box-inner__bottom .detail-flex .col02 p {
    font-size: 1.4rem;
  }
}
.detail-box-inner__bottom .detail-merit,
.detail-box-inner__bottom .detail-goal {
  border-radius: 20px;
  padding: 0 5rem 4rem 5rem;
  margin-top: 6.5rem;
}
@media (max-width: 1023px) {
  .detail-box-inner__bottom .detail-merit,
  .detail-box-inner__bottom .detail-goal {
    padding: 0 2rem 4rem 2rem;
  }
}
@media (max-width: 767px) {
  .detail-box-inner__bottom .detail-merit,
  .detail-box-inner__bottom .detail-goal {
    margin-top: 4rem;
  }
}
.detail-box-inner__bottom .detail-merit .h-wrap,
.detail-box-inner__bottom .detail-goal .h-wrap {
  text-align: center;
  margin-bottom: 3rem;
}
.detail-box-inner__bottom .detail-merit h2,
.detail-box-inner__bottom .detail-goal h2 {
  color: #FFF;
  font-size: 2.2rem;
  text-align: center;
  display: inline-block;
  padding: 0.4rem 2.5rem;
}
@media (max-width: 767px) {
  .detail-box-inner__bottom .detail-merit h2,
  .detail-box-inner__bottom .detail-goal h2 {
    font-size: 2rem;
  }
}
.detail-box-inner__bottom .detail-goal {
  background-color: #FFF9CD;
  margin-top: 3rem;
}
.detail-box-inner__bottom .detail-goal h2 {
  background-color: #FBE530;
  color: #333;
}
@media (max-width: 767px) {
  .detail-box-inner__bottom .list-dot02 li {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .detail-box-inner__bottom .list-dot02 li {
    font-size: 1.4rem;
  }
}
.detail-box .h-border {
  border-bottom: solid 2px #DFDFDF;
  position: relative;
  font-size: 3rem;
  padding-bottom: 0.5rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .detail-box .h-border {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 575px) {
  .detail-box .h-border {
    font-size: 2.2rem;
  }
}
.detail-box .h-border::after {
  position: absolute;
  content: " ";
  display: block;
  bottom: -2px;
  width: 100px;
}
.detail-box .h-border--management::after {
  border-bottom: solid 2px #A24FDD;
}
.detail-box .h-border--digital::after {
  border-bottom: solid 2px #0DA51A;
}
.detail-box .h-border--general::after {
  border-bottom: solid 2px #1372E4;
}
.detail-box table.detail-table01 {
  width: 100%;
}
@media (max-width: 899px) {
  .detail-box table.detail-table01 {
    border-bottom: 1px solid #CCC;
  }
}
.detail-box table.detail-table01 tr:nth-child(odd) {
  background-color: #F3F3F3;
}
.detail-box table.detail-table01 .none {
  display: block;
  background-color: #FFF !important;
  border: 0;
}
.detail-box table.detail-table01 .th-top {
  color: #FFF;
  text-align: left;
  padding: 1.5rem 2rem;
  box-sizing: border-box;
}
@media (max-width: 899px) {
  .detail-box table.detail-table01 .th-pc {
    display: none;
  }
}
.detail-box table.detail-table01 .th-sm {
  display: none;
  text-align: left;
  padding: 1.5rem 2rem;
}
@media (max-width: 899px) {
  .detail-box table.detail-table01 .th-sm {
    display: block;
    border-bottom: 0;
  }
}
@media (max-width: 899px) {
  .detail-box table.detail-table01 tr {
    display: block;
  }
}
.detail-box table.detail-table01 .th-st {
  width: 72px;
  text-align: center;
  padding: 1rem;
}
@media (max-width: 899px) {
  .detail-box table.detail-table01 .th-st {
    width: 100%;
  }
}
.detail-box table.detail-table01 td.date {
  width: 230px;
}
@media (max-width: 899px) {
  .detail-box table.detail-table01 td.date {
    width: 100%;
  }
}
.detail-box table.detail-table01 td.date .local,
.detail-box table.detail-table01 td.date .joint,
.detail-box table.detail-table01 td.date .hybrid,
.detail-box table.detail-table01 td.date .online {
  padding: 0 1rem;
  font-weight: bold;
  margin-top: 1rem;
  display: inline-block;
  line-height: 1.6;
  font-size: 1.4rem;
  text-align: center;
}
.detail-box table.detail-table01 td.date .local {
  color: #0FB1E2;
  border: 1px solid #0FB1E2;
}
.detail-box table.detail-table01 td.date .joint {
  color: #0DA51A;
  border: 1px solid #0DA51A;
}
.detail-box table.detail-table01 td.date .hybrid {
  color: #A24FDD;
  border: 1px solid #A24FDD;
}
.detail-box table.detail-table01 td.date .online {
  color: #1372E4;
  border: 1px solid #1372E4;
}
.detail-box table.detail-table01 th,
.detail-box table.detail-table01 td {
  border: 1px solid #CCCCCC;
  box-sizing: border-box;
  vertical-align: middle;
}
@media (max-width: 899px) {
  .detail-box table.detail-table01 th,
  .detail-box table.detail-table01 td {
    display: block;
    border-bottom: 0;
  }
}
.detail-box table.detail-table01 td {
  padding: 2rem;
}
.detail-box table.detail-table01 td p {
  margin-top: 2rem;
}
.detail-box table.detail-table01 td p:first-of-type {
  margin-top: 0;
}
.detail-box table.detail-table02 {
  width: 100%;
}
@media (max-width: 899px) {
  .detail-box table.detail-table02 {
    border-bottom: 1px solid #CCC;
  }
}
.detail-box table.detail-table02 th,
.detail-box table.detail-table02 td {
  border: 1px solid #CCCCCC;
  box-sizing: border-box;
  vertical-align: middle;
  padding: 2rem;
}
@media (max-width: 899px) {
  .detail-box table.detail-table02 th,
  .detail-box table.detail-table02 td {
    display: block;
    border-bottom: 0;
  }
}
.detail-box table.detail-table02 th {
  background-color: #F3F3F3;
  text-align: left;
  width: 230px;
}
@media (max-width: 899px) {
  .detail-box table.detail-table02 th {
    width: 100%;
  }
}
.detail-box table.detail-table02 td {
  padding: 2rem;
}
.detail-box table.detail-table02 td p {
  margin-top: 2rem;
}
.detail-box table.detail-table02 td p:first-of-type {
  margin-top: 0;
}
.detail-box table.detail-table02 td a {
  text-decoration: none;
}

.h1-course {
  text-align: center;
}
.h1-course__inner {
  background-image: url(../images/bg-course.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 3rem 0 5rem 0;
}
@media (max-width: 1023px) {
  .h1-course__inner {
    background-position: right;
  }
}
@media (max-width: 575px) {
  .h1-course__inner {
    padding: 3rem 0;
  }
}
.h1-course .course-num {
  font-size: 1.8rem;
  font-weight: bold;
  color: #FFF;
}
.h1-course h1 {
  font-size: 3.6rem;
  color: #FFF;
}
@media (max-width: 767px) {
  .h1-course h1 {
    font-size: 3rem;
  }
}
@media (max-width: 575px) {
  .h1-course h1 {
    font-size: 2.4rem;
    line-height: 1.4;
    margin: 1rem 0 0 0;
  }
}
.h1-course .sideline {
  font-size: 2.2rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding: 0 5rem;
  color: #FFF;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .h1-course .sideline {
    font-size: 1.8rem;
  }
}
@media (max-width: 575px) {
  .h1-course .sideline {
    padding: 1rem 3rem;
    font-size: 1.6rem;
  }
}
.h1-course .sideline:before, .h1-course .sideline:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: #FFF;
}
@media (max-width: 575px) {
  .h1-course .sideline:before, .h1-course .sideline:after {
    width: 15px;
    top: 47%;
  }
}
.h1-course .sideline:before {
  left: 0;
}
.h1-course .sideline:after {
  right: 0;
}

.management .h1-course {
  background-color: #A24FDD;
  border-radius: 40px 40px 0 0;
}
.management .detail-merit {
  background-color: #F5E7FF;
}
.management .detail-merit h2 {
  background-color: #A24FDD;
}
.management .detail-flex .col01 {
  max-width: 280px;
}
.management .th-top {
  background: #A24FDD;
}
@media (max-width: 899px) {
  .management .th-st {
    background: #A24FDD;
    color: #FFF;
    border-right: 1px solid #A24FDD;
    border-left: 1px solid #A24FDD;
  }
}
.management .th-sm {
  background: #F5E7FF;
}

.digital .h1-course {
  background-color: #0DA51A;
  border-radius: 40px 40px 0 0;
}
.digital .detail-merit {
  background-color: #E0F8E2;
}
.digital .detail-merit h2 {
  background-color: #0DA51A;
}
.digital .detail-flex .col01 {
  max-width: 185px;
}
.digital .th-top {
  background: #0DA51A;
}
@media (max-width: 899px) {
  .digital .th-st {
    background: #0DA51A;
    color: #FFF;
    border-right: 1px solid #0DA51A;
    border-left: 1px solid #0DA51A;
  }
}
.digital .th-sm {
  background: #E0F8E2;
}

.general .h1-course {
  background-color: #1372E4;
  border-radius: 40px 40px 0 0;
}
.general .detail-merit {
  background-color: #E5F1FF;
}
.general .detail-merit h2 {
  background-color: #1372E4;
}
.general .detail-flex .col01 {
  max-width: 185px;
}
.general .th-top {
  background: #1372E4;
}
@media (max-width: 899px) {
  .general .th-st {
    background: #1372E4;
    color: #FFF;
    border-right: 1px solid #1372E4;
    border-left: 1px solid #1372E4;
  }
}
.general .th-sm {
  background: #E5F1FF;
}

/*apply
-----------------------------------------------------*/
.apply {
  padding-bottom: 0;
}
.apply-list {
  gap: 2.2rem;
  margin-top: 5rem;
}
@media (max-width: 1023px) {
  .apply-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.apply-list-box {
  border-radius: 20px;
  padding: 4rem 2rem;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  position: relative;
  width: calc(33.3333333333% - 1.1rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .apply-list-box {
    width: calc(50% - 1.1rem);
  }
}
@media (max-width: 575px) {
  .apply-list-box {
    width: 100%;
  }
}
.apply-list-box .img {
  width: 100%;
  max-width: 300px;
  max-height: 200px;
  height: 100%;
  text-align: center;
  margin: 0 auto 3rem auto;
}
.apply-list-box .img img {
  margin: auto;
}
.apply-list-box .en {
  color: #FFF;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 20px;
  padding: 0.5rem 2rem;
  box-sizing: border-box;
  display: inline-block;
}
.apply-list-box h2 {
  font-weight: bold;
  font-size: 2.2rem;
  color: #FFF;
  width: 100%;
  text-align: center;
  margin-top: 1rem;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .apply-list-box h2 {
    font-size: 1.9rem;
  }
}
@media (max-width: 767px) {
  .apply-list-box h2 {
    font-size: 1.7rem;
  }
}
.apply-list-box a {
  margin-top: 1.5rem;
}
.apply-list-box--management {
  background: linear-gradient(90deg, #9D44DC 0%, #BD6AF7 100%);
}
.apply-list-box--management .en {
  background-color: #8934C6;
}
.apply-list-box--digital {
  background: linear-gradient(90deg, #0DA51A 0%, #32C33E 100%);
}
.apply-list-box--digital .en {
  background-color: #01820C;
}
.apply-list-box--general {
  background: linear-gradient(90deg, #1372E4 0%, #118BEE 100%);
}
.apply-list-box--general .en {
  background-color: #075ABD;
}
.apply-list-box--general h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 1rem;
}
.apply-list-box--general .border {
  font-size: 1.6rem;
  border: 1px solid #FFF;
  word-break: keep-all;
  padding: 0 1rem;
}
.apply .inquiry {
  background-color: #E5F1FF;
  padding-top: 18rem;
  padding-bottom: 12rem;
  margin-top: -11rem;
}
@media (max-width: 767px) {
  .apply .inquiry {
    padding-bottom: 8rem;
  }
}
@media (max-width: 575px) {
  .apply .inquiry {
    padding-bottom: 6rem;
  }
}
.apply .inquiry-h {
  width: 100%;
  text-align: center;
  position: relative;
  margin-bottom: 3rem;
}
.apply .inquiry-h h1 {
  font-size: 3rem;
  line-height: 1.2;
  z-index: 1;
  position: relative;
}
@media (max-width: 767px) {
  .apply .inquiry-h h1 {
    font-size: 2.6rem;
  }
}
@media (max-width: 575px) {
  .apply .inquiry-h h1 {
    font-size: 2.2rem;
  }
}
.apply .inquiry-h span {
  color: #1372E4;
  font-size: 1.6rem;
  line-height: 1;
  width: 100%;
}
.apply .inquiry-relative {
  position: relative;
  padding-bottom: 6rem;
}
@media (max-width: 767px) {
  .apply .inquiry-relative {
    padding-bottom: 14rem;
  }
}
.apply .inquiry-relative .tel-mail {
  text-align: center;
}
.apply .inquiry-relative .tel-mail a {
  font-weight: bold;
  text-decoration: none;
  display: block;
  line-height: 1.3;
}
.apply .inquiry-relative .tel-mail .tel {
  font-size: 6rem;
}
@media (max-width: 767px) {
  .apply .inquiry-relative .tel-mail .tel {
    font-size: 4.5rem;
  }
}
@media (max-width: 575px) {
  .apply .inquiry-relative .tel-mail .tel {
    font-size: 3.5rem;
  }
}
.apply .inquiry-relative .tel-mail .mail {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .apply .inquiry-relative .tel-mail .mail {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .apply .inquiry-relative .tel-mail .mail {
    font-size: 1.8rem;
  }
}
.apply .inquiry-relative .hours {
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  margin: 2rem 0 1.5rem 0;
}
@media (max-width: 767px) {
  .apply .inquiry-relative .hours {
    font-size: 2.2rem;
  }
}
@media (max-width: 575px) {
  .apply .inquiry-relative .hours {
    font-size: 1.8rem;
  }
}
.apply .inquiry-img01, .apply .inquiry-img02 {
  width: 150px;
  position: absolute;
  bottom: 0;
}
@media (max-width: 767px) {
  .apply .inquiry-img01, .apply .inquiry-img02 {
    width: 120px;
  }
}
.apply .inquiry-img01 {
  left: 5rem;
}
@media (max-width: 767px) {
  .apply .inquiry-img01 {
    left: 1rem;
  }
}
.apply .inquiry-img02 {
  right: 5rem;
}
@media (max-width: 767px) {
  .apply .inquiry-img02 {
    right: 1rem;
  }
}
.apply .inquiry-box {
  background-color: #FFF;
  border-radius: 20px;
  padding: 5rem 8rem;
}
@media (max-width: 1023px) {
  .apply .inquiry-box {
    padding: 5rem 4rem;
  }
}
@media (max-width: 767px) {
  .apply .inquiry-box {
    padding: 4rem 3rem;
  }
}
@media (max-width: 575px) {
  .apply .inquiry-box {
    padding: 3rem 2rem;
  }
}
.apply .inquiry-box h2 {
  color: #1372E4;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .apply .inquiry-box h2 {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .apply .inquiry-box h2 {
    font-size: 1.8rem;
  }
}

/*faq
-----------------------------------------------------*/
.faq-box {
  background: #FFF;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 4rem 8rem;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .faq-box {
    padding: 4rem;
  }
}
@media (max-width: 575px) {
  .faq-box {
    padding: 3rem;
  }
}
.faq-box .question {
  font-size: 2.2rem;
  font-weight: bold;
  padding-bottom: 1.5rem;
  padding-left: 3.8rem;
  text-indent: -2rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .faq-box .question {
    font-size: 1.8rem;
  }
}
@media (max-width: 575px) {
  .faq-box .question {
    font-size: 1.6rem;
  }
}
.faq-box .question:before {
  content: "Q";
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: #1372E4;
  margin-right: 1.5rem;
  line-height: 1;
}
.faq-box .answer {
  font-size: 1.8rem;
  margin-top: 0;
}
@media (max-width: 767px) {
  .faq-box .answer {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .faq-box .answer {
    font-size: 1.4rem;
  }
}

/*footer
-----------------------------------------------------*/
.footer {
  background: #f3f3f3;
  text-align: center;
}
@media (max-width: 767px) {
  .footer {
    padding-bottom: 7rem;
  }
}
@media (max-width: 575px) {
  .footer {
    padding-bottom: 12rem;
  }
}
.footer .container-lg {
  padding: 0;
}
.footer .flex {
  align-items: center;
}
@media (max-width: 575px) {
  .footer .flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer .flex-box {
  font-size: 1.3rem;
  width: 50%;
  padding: 5rem 2rem;
  box-sizing: border-box;
}
@media (max-width: 575px) {
  .footer .flex-box {
    width: 100%;
  }
}
.footer .flex-box:last-of-type {
  border-left: 1px solid #dfdfdf;
}
@media (max-width: 575px) {
  .footer .flex-box:last-of-type {
    border-left: 0;
    border-top: 1px solid #dfdfdf;
  }
}
.footer .flex-box h2 {
  font-size: 2.6rem;
  margin-bottom: 0.5rem;
}
.footer .flex-box h3 {
  font-weight: 500;
}
.footer .flex-box p {
  margin: 0.5rem 0;
}
.footer .flex-box a {
  color: #333;
  display: block;
}
.footer .flex-box .tel {
  text-decoration: none;
}

/*form(index)
-----------------------------------------------------*/
.form {
  background: #F3F3F3;
  padding: 0;
}
.form-inner {
  padding: 10rem 0;
}
.form-box {
  background: #FFF;
  margin-top: 6rem;
  border-radius: 40px 40px 0 0;
}
.form-box:first-of-type {
  margin-top: 0;
}
.form-box-inner {
  background: url(../images/bg02.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top center;
}
.form-box-inner-col {
  width: 80%;
  margin: auto;
  padding: 7.5rem 8rem;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .form-box-inner-col {
    padding: 6rem 4rem;
  }
}
@media (max-width: 767px) {
  .form-box-inner-col {
    width: 100%;
    padding: 5rem 3rem;
  }
}
.form-box .h1-form {
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 575px) {
  .form-box .h1-form {
    margin-bottom: 2rem;
  }
}
.form-box .h1-form .form-num {
  font-size: 1.8rem;
  font-weight: bold;
  color: #1372E4;
  position: relative;
  margin-bottom: 1.5rem;
}
.form-box .h1-form .form-num::before {
  background-color: #1372E4;
  bottom: -6px;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 30px;
}
.form-box .h1-form h1 {
  font-size: 3.6rem;
  color: #1372E4;
}
@media (max-width: 767px) {
  .form-box .h1-form h1 {
    font-size: 3rem;
  }
}
@media (max-width: 575px) {
  .form-box .h1-form h1 {
    font-size: 2.4rem;
  }
}
.form-box .h1-form .sideline {
  font-size: 2.2rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding: 0 5rem;
}
@media (max-width: 767px) {
  .form-box .h1-form .sideline {
    font-size: 1.8rem;
  }
}
@media (max-width: 575px) {
  .form-box .h1-form .sideline {
    padding: 1rem 2rem;
    font-size: 1.6rem;
  }
}
.form-box .h1-form .sideline:before, .form-box .h1-form .sideline:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: #333;
}
@media (max-width: 575px) {
  .form-box .h1-form .sideline:before, .form-box .h1-form .sideline:after {
    width: 15px;
    top: 47%;
  }
}
.form-box .h1-form .sideline:before {
  left: 0;
}
.form-box .h1-form .sideline:after {
  right: 0;
}
.form .form-box {
  /*radio*/
  /*submit*/
}
.form .form-box dt {
  font-weight: bold;
  font-size: 1.8rem;
}
.form .form-box dt .required {
  color: red;
  margin-left: 1rem;
}
.form .form-box dd {
  margin-bottom: 2rem;
}
.form .form-box dd input.input-text,
.form .form-box dd input.input-name,
.form .form-box dd textarea {
  border: none;
  border: 1px solid #ccc;
  background: #FFF;
  width: 100%;
  height: 4.5rem;
  padding: 1.5rem 2rem;
  box-sizing: border-box;
  border-radius: 4px;
  font-size: 1.6rem;
}
.form .form-box dd .input-name {
  width: 60% !important;
}
.form .form-box dd textarea {
  height: 20rem;
}
.form .form-box dd ul {
  margin: 0.5rem 0;
}
.form .form-box dd ul li {
  color: #614504;
}
.form .form-box dd ul li + li {
  margin-top: 1rem;
}
.form .form-box .input-radio {
  box-sizing: border-box;
  appearance: none;
  position: absolute;
}
.form .form-box .input-radio::before {
  box-sizing: border-box;
}
.form .form-box .input-radio::after {
  box-sizing: border-box;
}
.form .form-box .label-radio {
  position: relative;
  display: flex;
  align-items: center;
}
.form .form-box .label-radio::before {
  content: "";
  display: block;
  border-radius: 50%;
  border: 1px solid #C1D1D1;
  background: #FFF;
  max-width: 22px;
  width: 100%;
  height: 22px;
  margin-right: 1rem;
}
.form .form-box .input-radio:checked + .label-radio::after {
  content: "";
  position: absolute;
  left: 5px;
  display: block;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  background-color: #1372E4;
}
.form .form-box .submit-box {
  margin: 6rem auto 0 auto;
  text-align: center;
}
.form .form-box .submit-box .submit {
  display: inline-block;
  position: relative;
  transition: all 0.3s;
}
.form .form-box .submit-box .submit:after {
  display: inline-block;
  position: absolute;
  right: 10%;
  top: 42%;
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  transform: rotate(-45deg);
}
.form .form-box .submit-box button {
  display: inline-block;
  width: 300px;
  padding: 2rem 4rem;
  color: #FFF;
  background: #1372E4;
  text-decoration: none;
  border-radius: 60px;
  line-height: 1;
  font-weight: bold;
  outline: none;
  border: none;
  font-size: 1.6rem;
  transition: 0.3s linear;
  cursor: pointer;
}
.form .form-box .submit-box button:hover {
  opacity: 0.6;
}

/*thanks
-----------------------------------------------------*/
.thanksform {
  background: #F3F3F3;
}

.thanks {
  width: 80%;
  margin: auto;
  padding: 7.5rem 8rem;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .thanks {
    padding: 6rem 4rem;
  }
}
@media (max-width: 767px) {
  .thanks {
    width: 100%;
    padding: 5rem 3rem;
  }
}
.thanks a {
  color: #333 !important;
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */