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

img {
  vertical-align: top;
}

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

body {
  line-height: 1;
}

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

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

del {
  text-decoration: line-through;
}

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

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

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

/* html
-----------------------------------------------------*/
html {
  overflow: auto;
  font-size: 62.5%;
  scroll-padding-top: 100px;
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 0;
  }
}

body {
  color: #333;
  font: 1.85rem/1.8 Yu Gothic UI, "Yu Gothic UI", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, 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: #202E5D;
  transition: 0.3s linear;
}
a:hover, a:active, a:focus {
  color: #526cc4;
}

/*flex
-----------------------------------------------------*/
.flex {
  display: flex;
}
@media (max-width: 1199px) {
  .flex-xl {
    display: flex;
  }
}
@media (max-width: 1000px) {
  .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: 1000px) {
  .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: 1000px) {
  .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: 1000px) {
  .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: 1000px) {
  .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: 1000px) {
  .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: 1000px) {
  .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: 1000px) {
  .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: 1000px) {
  .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: 1000px) {
  .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: 1000px) {
  .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: 1000px) {
  .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: 1000px) {
  .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;
}

.orange {
  color: #f08200;
}

.blue {
  color: #5C9CE5;
}

.en {
  font-weight: 700;
}

.lato {
  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: #202E5D !important;
}

.color-accent01 {
  color: #9E7F41 !important;
}

.color-caution {
  color: red !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: 1000px) {
  .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: 1000px) {
  .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: 1000px) {
  .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;
  }
}
@media (max-width: 1000px) {
  .block-lg {
    display: block;
  }
}
@media (max-width: 767px) {
  .block-md {
    display: block;
  }
}
@media (max-width: 575px) {
  .block-sm {
    display: block;
  }
}

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

/* 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: 1000px) {
  .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;
  }
}
body {
  overflow: hidden;
}

/*header
-----------------------------------------------------*/
.header-box {
  position: relative;
}
.header-box .logo {
  position: absolute;
  top: 0;
  right: 14%;
}
.header-box .logo img {
  width: 155px;
}
@media (max-width: 1499px) {
  .header-box .logo img {
    width: 120px;
  }
}
@media (max-width: 1000px) {
  .header-box .logo img {
    width: 90px;
  }
}
@media (max-width: 420px) {
  .header-box .logo img {
    width: 70px;
  }
}
.header-box .logo a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .header-box .logo {
    right: 0%;
  }
}

/*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: 1440px;
  padding: 0 5%;
  margin: 0 auto;
}

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

.bg-gray {
  background: #f3f3f3;
}

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

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

@media (min-width: 576px) {
  .sm-br {
    display: none;
  }
}
@media (max-width: 575px) {
  .sm-br {
    display: block;
  }
}

@media (max-width: 575px) {
  .sm-none {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .md-none {
    display: none !important;
  }
}

.pc-none {
  display: none !important;
}
@media (max-width: 767px) {
  .pc-none {
    display: block !important;
  }
}

.mt0 {
  margin-top: 0 !important;
}

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

.center {
  text-align: center;
  margin: auto;
}

h2 {
  font-size: 50px;
  text-align: center;
}
@media (max-width: 575px) {
  h2 {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 24px;
  }
}

.nowrap {
  display: inline-block;
}

/*ul
-----------------------------------------------------*/
dl dt {
  font-weight: bold;
}

/*btn
-----------------------------------------------------*/
.btn {
  position: relative;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  width: 100%;
  max-width: 780px;
  font-size: 3rem;
  margin: 4.8rem 0 0;
}
@media (max-width: 575px) {
  .btn {
    font-size: 2rem;
  }
}
.btn:before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 5px;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100vh;
  background-color: #AA3131;
}
.btn:hover {
  opacity: 1;
}
.btn span {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: bold;
  border-radius: 100vh;
  color: #fff;
  padding: 2rem;
  background-color: #FD596C;
  transition: all 0.2s ease-in-out;
}
.btn span:hover {
  background-color: #FD596C;
  transform: translate(0px, 5px);
  transition: all 0.3s ease-in-out;
}

/*main
-----------------------------------------------------*/
.main-v {
  position: relative;
}
.main-v img {
  width: 100%;
}
.main-v .main-v-link {
  position: absolute;
  display: block;
  left: 20%;
  top: 12%;
  width: 28%;
  height: 5%;
  z-index: 2;
}
.main-v .main-v-link:hover {
  background: rgba(255, 255, 255, 0.4); /* 0.1～0.3くらいが自然 */
}
@media (max-width: 767px) {
  .main-v .main-v-link {
    left: 28%;
    top: 5%;
    width: 65%;
    height: 4%;
  }
}

.btn_wrap {
  margin: auto;
  text-align: center;
  padding: 0 2rem;
}

/*read
-----------------------------------------------------*/
.read {
  padding: 6.4rem 0 0;
}
.read .container-lg {
  background-image: url(../images/read_bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
}
.read p {
  text-align: center;
  line-height: 64px;
  font-size: 18px;
}
@media (max-width: 767px) {
  .read p {
    line-height: 40px;
  }
}
@media (max-width: 575px) {
  .read p {
    font-size: 16px;
  }
}
.read img {
  max-width: 640px;
  text-align: center;
  margin: auto;
}
@media (max-width: 767px) {
  .read img {
    max-width: 100%;
  }
}

/*recommended
-----------------------------------------------------*/
.recommended {
  background-image: linear-gradient(0deg, transparent 44px, #b1c8e6 45px), linear-gradient(90deg, transparent 44px, #b1c8e6 45px);
  background-size: 45px 45px;
  background-color: #F5F7FD;
}
.recommended h1 {
  font-size: 5rem;
  color: #000;
  line-height: 2;
  margin-bottom: 4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .recommended h1 {
    font-size: 2.6rem;
  }
}
@media (max-width: 575px) {
  .recommended h1 {
    font-size: 2.2rem;
  }
}
@media (max-width: 575px) {
  .recommended h1 {
    font-size: 2rem;
  }
}
.recommended h1 .blue_bg_line {
  display: inline-block;
  background-image: linear-gradient(90deg, #698EE0, #3D53C6);
  color: #fff;
  padding: 0 2.5rem;
  margin: 0 0.5rem;
}
.recommended h1 .c_blue {
  color: #5C9CE5;
}
.recommended .lead_info {
  max-width: 820px;
  margin: 0 auto 6.4rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 #dce6f0;
  padding: 4rem;
  box-sizing: border-box;
  font-weight: bold;
}
@media (max-width: 780px) {
  .recommended .lead_info {
    margin: 0 2rem 6.4rem;
    padding: 2rem;
  }
}
.recommended .lead_info .lead_title {
  font-size: 3.2rem;
  font-weight: bold;
  color: #5d7fcd;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}
@media (max-width: 780px) {
  .recommended .lead_info .lead_title {
    font-size: 2rem;
    margin-bottom: 16px;
  }
}
.recommended .lead_info .lead {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.7;
}
.recommended .lead_info .list-wrap {
  background: #f8fafd;
  border-radius: 16px;
  padding: 28px 30px 22px 30px;
  margin: 4rem auto;
  max-width: 600px;
  box-sizing: border-box;
}
@media (max-width: 780px) {
  .recommended .lead_info .list-wrap {
    margin: 2rem auto;
  }
}
.recommended .lead_info .list-wrap .list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.recommended .lead_info .list-wrap .list li {
  display: flex;
  align-items: flex-start;
  font-size: 1.5rem;
  margin-bottom: 14px;
  line-height: 1.6;
  position: relative;
  padding-left: 2.5rem;
}
.recommended .lead_info .list-wrap .list li:last-child {
  margin-bottom: 0;
}
.recommended .lead_info .list-wrap .list li:before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: #5C9CE5;
  border-radius: 50%;
}
.recommended .lead_info .bottom {
  font-size: 1.5rem;
  text-align: center;
}
.recommended p {
  text-align: center;
}
.recommended p strong {
  font-size: 2.5rem;
  color: #2983E9;
  background: linear-gradient(transparent 60%, #fcff7a 0%);
  display: inline;
  padding: 0 1px 3px;
}
@media (max-width: 420px) {
  .recommended p strong {
    font-size: 1.8rem;
  }
}
@media (max-width: 1199px) {
  .recommended .container-xl {
    padding: 0;
  }
}
.recommended-inner {
  padding: 2rem 0 4rem;
  position: relative;
}
.recommended .recommended_card_wrap {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 4rem;
  padding: 2rem;
  justify-content: center;
}
@media (max-width: 575px) {
  .recommended .recommended_card_wrap {
    padding: 2rem;
    margin-top: 2rem;
  }
}
.recommended .recommended_card_wrap .recommended_card.elm {
  background-color: #fff;
  border-radius: 8px;
  padding: 1rem;
  flex: 0 0 325px;
  align-self: center;
  height: 110px;
  box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.2);
  align-content: center;
}
.recommended .recommended_card_wrap .recommended_card.elm .flex {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}
.recommended .recommended_card_wrap .recommended_card.elm .inner_txt {
  font-weight: bold;
  text-align: center;
  font-size: 1.6rem;
  flex: 1;
}
.recommended .recommended_card_wrap .recommended_card.elm img {
  width: 35px;
  height: 35px;
}
@media (max-width: 700px) {
  .recommended .recommended_card_wrap .recommended_card.elm img {
    width: 30px;
    height: 30px;
  }
}

/*lecture
-----------------------------------------------------*/
.lecture {
  padding: 0;
}
@media (max-width: 767px) {
  .lecture {
    background-size: cover;
    background-position: center;
  }
}
.lecture .ribbon_label {
  display: inline-block;
  position: relative;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 0 30px;
  font-size: 24px;
  font-weight: bold;
  background: #0574A4;
  color: #FFF;
  box-sizing: border-box;
  width: 100%;
  margin-top: 4rem;
}
.lecture-inner {
  padding: 10rem 0 4.8rem;
}
@media (max-width: 575px) {
  .lecture-inner {
    padding: 8rem 0 4.8rem;
  }
}
.lecture-inner-list {
  background: #FEFFD8;
  padding: 0rem 0rem 3rem;
  border: 3px solid #28A3C2;
  border-radius: 8px;
  width: 50%;
}
@media (max-width: 1000px) {
  .lecture-inner-list {
    width: 100%;
  }
}
.lecture-inner-list.w100 {
  width: 100%;
  margin-top: 4rem;
}
.lecture-inner-list + .lecture-inner-list {
  border: 3px solid #28A3C2;
}
.lecture-inner-list + .lecture-inner-list .hl {
  background: #28A3C2;
}
.lecture .hl {
  color: #fff;
  font-weight: bold;
  background: #28A3C2;
  text-align: center;
  padding: 1.5rem;
  width: calc(100% - 3rem);
  margin-bottom: 2rem;
  font-size: 1.6rem;
}
.lecture-top {
  position: relative;
  margin: 4.8rem 0 0;
  background: #fff;
  padding: 5.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px 0px #6c6c6c;
}
@media (max-width: 767px) {
  .lecture-top {
    margin: 2.4rem 0 0;
    padding: 4rem;
  }
}
@media (max-width: 420px) {
  .lecture-top {
    padding: 3rem;
  }
}
.lecture-top .en {
  position: absolute;
  font-size: 100px;
  color: #fff;
  font-weight: normal;
  bottom: -50px;
}
@media (max-width: 767px) {
  .lecture-top .en {
    font-size: 64px;
    bottom: -25px;
  }
}
@media (max-width: 575px) {
  .lecture-top .en {
    font-size: 50px;
    bottom: -25px;
  }
}
.lecture-top p {
  font-size: 1.8rem;
  padding: 0rem 0 1rem;
  line-height: 3;
}
.lecture-top p strong {
  font-size: 2.5rem;
  background: linear-gradient(transparent 60%, #fcff7a 0%);
  display: inline;
  padding: 0 1px 3px;
  color: #202e5d;
  text-shadow: 0 0 white;
  font-weight: bold;
}
@media (max-width: 767px) {
  .lecture-top p {
    margin-right: 0;
  }
}
.lecture-top .flex {
  align-items: center;
}
@media (max-width: 767px) {
  .lecture-top .flex {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.lecture-top .flex .col01 {
  width: 150%;
  margin-right: 3.5rem;
  padding: 0 4rem;
}
@media (max-width: 767px) {
  .lecture-top .flex .col01 {
    width: 75%;
    margin-right: 0rem;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .lecture-top .col02 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .lecture-top .col02 img {
    width: 50%;
  }
}
.lecture-list {
  border-radius: 8px;
  padding: 0rem 2rem 3rem;
  margin-top: 3rem;
  position: relative;
}
.lecture-list ul:last-child {
  margin-right: 0;
}
@media (max-width: 1000px) {
  .lecture-list ul {
    font-size: 1.4rem;
  }
}
.lecture-list ul li {
  position: relative;
  flex: 1;
  align-content: center;
  list-style: disc;
  color: #F18200;
  margin-left: 5rem;
  margin-right: 5rem;
}
.lecture-list ul li strong {
  display: inline-block;
}
.lecture-list ul li span {
  color: #000;
  vertical-align: text-bottom;
}
.lecture-list ul li::marker {
  font-size: 159%;
}
@media (max-width: 420px) {
  .lecture-list {
    padding: 0rem 0rem 3rem;
  }
}
.lecture-list h5 {
  font-weight: 700;
  font-size: 22px;
  color: #2988CD;
  padding: 2rem 2rem;
}
.lecture-list .list_flex {
  display: flex;
  justify-content: space-around;
  gap: 4rem;
}
@media (max-width: 1000px) {
  .lecture-list .list_flex {
    font-size: 1.4rem;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .lecture-list .list_flex img {
    display: none;
  }
}
.lecture-list .list_flex img {
  position: absolute;
  right: 3.5%;
  bottom: 2%;
  width: 200px;
}
.lecture .casestudy {
  background: #fff;
  width: calc(100% - 8rem);
  padding: 3rem 4rem;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .lecture .casestudy {
    width: calc(100% - 4rem);
    padding: 2rem;
  }
}
.lecture .casestudy h3 {
  text-align: center;
  font-size: 2.4rem;
  position: relative;
  padding: 0.5rem 0 0rem;
  margin-bottom: 3.2rem;
}
.lecture .casestudy h3 span {
  color: #00A6CA;
}
.lecture .casestudy h3:after {
  position: absolute;
  border-bottom: 3px solid #00A6CA;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  content: "";
}
@media (max-width: 420px) {
  .lecture .casestudy h3 {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .lecture .casestudy .flex {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 0rem;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.lecture .casestudy-list {
  list-style: none;
  font-size: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 6rem;
}
.lecture .casestudy-list:last-child {
  margin-right: 0;
}
@media (max-width: 1000px) {
  .lecture .casestudy-list {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .lecture .casestudy-list {
    margin-right: 2.5rem;
  }
}
@media (max-width: 575px) {
  .lecture .casestudy-list {
    margin-right: 0;
  }
}
.lecture .casestudy-list li {
  position: relative;
  padding: 2rem 0 2rem 5rem;
  border-bottom: 1px solid #ccc;
  flex: 1;
  align-content: center;
}
.lecture .casestudy-list li strong {
  display: inline-block;
}
.lecture .casestudy-list li:before {
  content: url(../images/check.svg);
  position: absolute;
  top: calc(50% - 1.2rem);
  bottom: 0;
  left: 0;
}
.lecture .casestudy-list li:last-child {
  border-bottom: 0;
}
@media (max-width: 575px) {
  .lecture .casestudy-list li:last-child {
    border-bottom: 1px solid #ccc;
  }
}
@media (max-width: 575px) {
  .lecture .casestudy-list:last-child li:last-child {
    border-bottom: 0;
  }
}

/*seminar
-----------------------------------------------------*/
.seminar {
  background-image: linear-gradient(180deg, #F3F7FF 0%, #BDD4FF 100%);
  padding: 0;
  position: relative;
}
.seminar-inner {
  padding: 0rem 0 6rem;
}
@media (max-width: 767px) {
  .seminar-inner {
    padding: 0rem 0 4.8rem;
  }
}
.seminar-fee {
  box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  background: #FFFFE0;
  max-width: 425px;
  position: relative;
  z-index: 1;
  height: 115px;
  padding: 1.2rem 2rem;
  font-size: 2rem;
  margin: 6.4rem auto 4.8rem;
  text-align: center;
}
.seminar-fee h4 {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ccc;
}
.seminar-fee strong {
  color: #FD596C;
  font-size: 3rem;
}
.seminar-overview {
  box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.25);
  padding: 3rem 4rem;
  border-radius: 8px;
  background: #fff;
  margin: 4.8rem auto 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .seminar-overview {
    padding: 3rem 2rem;
  }
}
.seminar-overview dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.seminar-overview dt {
  width: 30%;
  font-size: 2rem;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #ccc;
  line-height: normal;
}
.seminar-overview dt:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .seminar-overview dt {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .seminar-overview dt {
    width: 100%;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 3rem !important;
  }
}
.seminar-overview dd {
  width: 70%;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 575px) {
  .seminar-overview dd {
    width: 100%;
  }
}
.seminar-overview dd > div {
  margin-bottom: 3rem;
}
.seminar-overview dd > div:last-child {
  margin-bottom: 1rem;
}
.seminar-overview dd .orange_label {
  display: inline-block;
  color: #fff;
  background: #f08200;
  font-weight: bold;
  padding: 0 2rem;
  margin: 2rem 0 2rem;
}
.seminar-overview dd .f-large {
  font-size: larger;
  font-weight: bold;
}
.seminar-overview dd:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.seminar-overview dd .list li + li {
  margin-top: 2rem;
}
.seminar-overview dd .list .indent01 {
  padding-left: 4.7rem;
}
.seminar-overview .blue_label {
  background: #CDE7FE;
  color: #3151D0;
  font-weight: bold;
  padding: 0rem 1rem;
  border-radius: 8px;
  width: 120px;
  display: block;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.65rem;
}
.seminar-overview h5 {
  color: #3151D0;
  font-size: 1.65rem;
  margin: 1rem 0;
}
.seminar-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem 3rem;
  margin-bottom: 5rem;
}
@media (max-width: 575px) {
  .seminar-flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.seminar-flex-col01 img {
  width: 236px;
}
.seminar-flex-col02 {
  width: 67%;
}
@media (max-width: 575px) {
  .seminar-flex-col02 {
    width: 100%;
  }
}
.seminar .align-c {
  margin-top: 4.8rem;
  font-size: 1.8rem;
}

/*target
-----------------------------------------------------*/
.target {
  background-image: url(../images/img-target_bg.png);
  background-size: 85%;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 1rem;
}
.target h3 {
  text-align: center;
  font-size: 2.4rem;
  position: relative;
  padding: 0.5rem 0 0rem;
  margin-bottom: 3.2rem;
}
.target h3 span {
  color: #00A6CA;
}
.target h3:after {
  position: absolute;
  border-bottom: 3px solid #fff;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  content: "";
}
.target p {
  font-size: 1.8rem;
}
.target .flex {
  margin-top: 3.2rem;
  justify-content: center;
}
@media (max-width: 420px) {
  .target .flex {
    justify-content: space-around;
  }
}
.target-list {
  gap: 3rem 6.5rem;
  padding: 8rem 0 3rem;
}
.target-list-box {
  box-sizing: border-box;
  max-width: 150px;
  padding: 1rem 0rem 30px;
  margin: 0 2rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  font-weight: bold;
}
@media (max-width: 575px) {
  .target-list-box {
    width: 24%;
  }
}
@media (max-width: 420px) {
  .target-list-box {
    width: 25%;
    margin: 0 1rem;
  }
}
.target-list-box p {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .target-list-box p {
    font-size: 1.5rem;
  }
}
@media (max-width: 575px) {
  .target-list-box p {
    font-size: 1.4rem;
  }
}
@media (max-width: 420px) {
  .target-list-box p {
    font-size: 1.2rem;
  }
}
@media (max-width: 575px) {
  .target-list-box {
    font-size: 4.5rem;
  }
}
@media (max-width: 767px) {
  .target-list {
    width: 40%;
  }
}
@media (max-width: 575px) {
  .target-list {
    width: 100%;
  }
}
.target-list img {
  max-width: 285px;
  width: 100%;
}

/*lecture
-----------------------------------------------------*/
.lecture {
  background-color: #FFF;
  padding: 8rem 0;
}
.lecture h3 {
  text-align: center;
  color: #5C9CE5;
  position: relative;
  padding: 2rem 0 0rem;
  margin-top: 2rem;
  margin-bottom: 3.2rem;
  font-size: 3rem;
}
.lecture h3:after {
  position: absolute;
  border-bottom: 3px solid #CDE7FE;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  content: "";
}
@media (max-width: 420px) {
  .lecture h3 {
    font-size: 2rem;
  }
}
.lecture .program-list {
  gap: 5rem 5rem;
  margin-top: 8rem;
  justify-content: center;
}
@media (max-width: 1000px) {
  .lecture .program-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.lecture .program-list-box {
  background: #FFF;
  border-radius: 30px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  width: calc(50% - 4rem);
  border: 9px solid #FFF;
  box-sizing: border-box;
  text-align: center;
}
@media (max-width: 1000px) {
  .lecture .program-list-box {
    width: calc(50% - 4rem);
  }
}
@media (max-width: 767px) {
  .lecture .program-list-box {
    width: 100%;
  }
}
.lecture .program-list-box .step-num {
  color: #FFF;
  background: #4C6CB3;
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  text-align: center;
  border-radius: 100px;
  line-height: 1.1;
  margin: 0 auto;
  position: absolute;
  top: -2.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.lecture .program-list-box .step-num small {
  font-size: 1rem;
}
.lecture .program-list-box .step-num-box {
  margin: 0;
  line-height: 0.8;
}
.lecture .program-list-box .h4-program {
  background: #F9FDB2;
  border-radius: 20px 20px 0 0;
  color: #4C6CB3;
  padding: 5rem 2rem 3rem 2rem;
  font-weight: 700;
  text-align: center;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lecture .program-list-box .h4-program .bg-blue {
  background: #7695DA;
  color: #fff;
  border-radius: 30px;
  margin: 10px auto 0rem;
  padding: 0.5rem;
  font-size: 1.6rem;
  width: 200px;
}
.lecture .program-list-box .h4-program h4 {
  font-size: 2.4rem;
  line-height: 1.2;
}
@media (max-width: 400px) {
  .lecture .program-list-box .h4-program h4 {
    font-size: 2rem;
  }
}
.lecture .program-list-box .date {
  color: #4C6CB3;
  text-align: center;
}
.lecture .program-list-box .date span {
  font-size: 3rem;
  display: inline-block;
  margin: 0 1rem;
}
.lecture .program-list-box .time {
  background: #FBFBFF;
  border-radius: 6px;
  width: 240px;
  margin: 1rem auto;
  text-align: center;
  color: #4C6CB3;
  padding: 0 1rem;
  font-size: 1.4rem;
}
.lecture .program-list-box .bg-white {
  background: #fff;
  border-radius: 30px;
  margin-bottom: 1rem;
  padding: 0.5rem;
  font-size: 1.6rem;
  border: 1px solid;
  color: #4C6CB3;
  text-align: center;
  width: 240px;
  margin: 0 auto 4rem;
}
.lecture .program-list-box .inner_cont {
  text-align: left;
  padding: 2rem 2rem;
}
.lecture .program-list-box .inner_cont strong {
  margin-bottom: 1rem;
  display: inline-block;
}
.lecture .program-list h6 {
  font-size: 1.8rem;
  text-align: left;
  margin: 2rem 0;
}
@media (max-width: 767px) {
  .lecture .program-list h6 {
    font-size: 1.6rem;
  }
}
.lecture .program-list h6.c_blue {
  color: #4C6CB3 !important;
}
.lecture .program-list .announce {
  font-size: 1.4rem;
}
.lecture .program-list .program-list-innerlist {
  padding: 1rem 1rem;
}
.lecture .program-list .program-list-innerlist li {
  position: relative;
  padding-left: 4rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: left;
}
.lecture .program-list .program-list-innerlist li:before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: #5C9CE5;
  border-radius: 50%;
}
.lecture figure.program01 {
  max-width: 960px;
  margin: 6rem auto 0 auto;
}
.lecture .program-list_btn {
  border-radius: 80px;
  width: 200px;
  color: #5A8AFD;
  text-decoration: none;
  display: block;
  background: #E2EBFF;
  margin: 4rem auto 0;
  padding: 1rem 2rem;
  font-weight: bold;
}
.lecture .program-step {
  padding-top: 8rem;
}
.lecture .program-step .flex {
  align-items: center;
  margin-top: 4rem;
  gap: 4rem 5rem;
}
@media (max-width: 1000px) {
  .lecture .program-step .flex {
    gap: 4rem 3rem;
  }
}
@media (max-width: 767px) {
  .lecture .program-step .flex {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
    gap: 3rem;
  }
}
.lecture .program-step .flex .col01 {
  max-width: 420px;
  width: 100%;
}
.lecture .program-step .flex .col02 {
  font-weight: 700;
  padding: 5rem 1rem;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  width: 100%;
}
@media (max-width: 1000px) {
  .lecture .program-step .flex .col02 {
    padding: 4rem 1rem;
  }
}
.lecture .program-step .flex .col02 ul {
  margin-bottom: 0;
}
.lecture .main-content {
  max-width: 960px;
  margin: 3.2rem auto 0 auto;
  position: relative;
}
@media (max-width: 700px) {
  .lecture .main-content {
    margin-top: 2.4rem;
  }
}
.lecture .headline-row {
  display: flex;
  align-items: center;
  padding: 0 0 12px 0;
  border-bottom: 3px solid #e6e6e6;
  background: #fff;
  margin-top: 8rem;
}
.lecture .headline-row .headline-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 36px;
  width: 36px;
  height: 36px;
  background: #5d7fcd;
  color: #fff;
  font-size: 1.8rem;
  border-radius: 50%;
  margin-right: 16px;
  letter-spacing: 0.02em;
}
.lecture .headline-row .headline-title {
  font-size: 2.6rem;
  font-weight: bold;
  color: #222;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
@media (max-width: 600px) {
  .lecture .headline-row .headline-badge {
    min-width: 28px;
    min-height: 28px;
    width: 28px;
    height: 28px;
    font-size: 1.25rem;
    margin-right: 10px;
  }
  .lecture .headline-row .headline-title {
    font-size: 1.8rem;
  }
}
.lecture .headline-box {
  background: #FBFBFF;
  border-radius: 8px;
  margin-bottom: 40px;
  text-align: center;
  padding: 32px 12px 24px 12px;
}
@media (max-width: 480px) {
  .lecture .headline-box {
    padding: 1rem;
  }
}
.lecture .headline-box .headline-lead {
  font-size: 1.8rem;
  color: #5d7fcd;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
@media (max-width: 480px) {
  .lecture .headline-box .headline-lead {
    font-size: 1.2rem;
    margin-bottom: 4px;
  }
}
.lecture .headline-box .headline-title {
  font-size: 2.4rem;
  color: #415497;
  font-weight: bold;
  letter-spacing: 0.03em;
}
@media (max-width: 700px) {
  .lecture .headline-box .headline-title {
    font-size: 2rem;
  }
}
@media (max-width: 400px) {
  .lecture .headline-box .headline-title {
    font-size: 1.5rem;
  }
}
.lecture .support-section {
  text-align: center;
  padding: 2rem;
  background: #fbfbff;
  border-radius: 8px;
}
.lecture .support-section .support-lead {
  font-size: 1.5rem;
  margin-bottom: 22px;
  line-height: 1.7;
}
.lecture .support-section .support-box {
  background: #fff;
  border-radius: 16px;
  max-width: 840px;
  margin: 0 auto;
  padding: 32px 30px 30px 30px;
  text-align: left;
  box-sizing: border-box;
}
.lecture .support-section .support-steps {
  counter-reset: steps;
  padding: 0;
  list-style: none;
}
.lecture .support-section .support-steps li {
  position: relative;
  padding-left: 42px;
  margin-bottom: 18px;
  font-size: 1.55rem;
  line-height: 1.6;
}
.lecture .support-section .support-steps li::before {
  counter-increment: steps;
  content: counter(steps) ".";
  position: absolute;
  left: 0;
  top: -3px;
  font-size: 1.28em;
  font-weight: bold;
  color: #5d7fcd;
  border-radius: 6px;
  min-width: 28px;
  text-align: center;
}
.lecture .support-section .support-steps li b {
  font-size: 1.04em;
}
.lecture .support-section .support-steps li:last-child {
  margin-bottom: 0;
}
.lecture .support-section .support-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
}
.lecture .support-section .support-flex .support-img {
  flex: 0 0 305px;
}
.lecture .support-section .support-flex .support-img img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
}
.lecture .support-section .support-flex .support-points {
  padding: 2rem 4rem;
  margin: 0;
  list-style: disc inside;
  font-size: 1.45rem;
  font-weight: bold;
  line-height: 2;
  border-top: 1px solid;
  border-bottom: 1px solid;
}
.lecture .support-section .support-flex .support-points li {
  text-align: left;
}
@media (max-width: 800px) {
  .lecture .support-section .support-box {
    padding: 2rem;
  }
  .lecture .support-section .support-flex {
    flex-direction: column;
    gap: 14px;
  }
  .lecture .support-section .support-flex .support-img {
    max-width: 320px;
    margin: 0 auto;
    flex: auto;
  }
  .lecture .support-section .support-flex .support-points {
    width: calc(100% - 10rem);
  }
}
@media (max-width: 450px) {
  .lecture .support-section .support-flex .support-points {
    width: calc(100% - 3rem);
    padding: 1rem;
    font-size: 1.25rem;
  }
}
.lecture .info-table {
  width: 100%;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e8ecf8;
  margin-top: 4rem;
}
.lecture .info-table .info-row {
  display: flex;
  border-bottom: 1px solid #e3e9f3;
}
@media (max-width: 500px) {
  .lecture .info-table .info-row {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
.lecture .info-table .info-row:last-child {
  border-bottom: none;
}
.lecture .info-table .info-label {
  background: #e8ecf8;
  color: #415497;
  font-weight: bold;
  flex: 0 0 140px;
  padding: 22px 18px 22px 20px;
  font-size: 1.6rem;
  border-right: 1px solid #e3e9f3;
  border-bottom: 1px solid #c8d1eb;
  min-width: 100px;
  box-sizing: border-box;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}
@media (max-width: 500px) {
  .lecture .info-table .info-label {
    padding: 16px 10px 16px 10px;
    min-width: 70px;
    flex: 1;
    text-align: left;
  }
}
.lecture .info-table .info-value {
  flex: 1;
  padding: 22px 22px 22px 18px;
  font-size: 1.65rem;
  color: #222;
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #e8ecf8;
}
@media (max-width: 700px) {
  .lecture .info-table .info-value {
    font-size: 1.5rem;
    padding: 2rem;
  }
}
.lecture .info-table .info-value .small_txt {
  font-size: 1.25rem;
  margin-top: 1rem;
}
.lecture .info-table .info-value .sub-label {
  display: inline-block;
  background: #5d7fcd;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  padding: 2px 14px 3px 14px;
  margin-right: 12px;
  margin: 2rem 0 1rem;
}
.lecture .info-table .info-value .sub-label.online {
  background: #52a8ea;
}
.lecture .info-table .info-value .sub-label + .info-note {
  margin-top: 0;
}
.lecture .center {
  font-size: 1.6rem;
}
@media (max-width: 400px) {
  .lecture .center {
    font-size: 1.25rem;
    padding: 0;
  }
}
.lecture .ondemand-section {
  margin-top: 6.4rem;
  max-width: 920px;
  margin: 6.4rem auto 0;
}
.lecture .ondemand-section h5 {
  font-size: 2.4rem;
}
.lecture .ondemand-section .banner_bottom {
  margin: 1rem 0;
}
.lecture .ondemand-section .banner_bottom strong {
  display: inline-block;
  margin: 2rem 0;
}
.lecture .ondemand-section .banner_bottom p {
  font-size: 1.5rem;
}
.lecture .ondemand-section .ondemand-banner {
  background: #4567b2;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 1rem 2.5rem;
  border-radius: 0 0 40px 0;
  text-align: center;
  letter-spacing: 0.03em;
  width: auto;
  display: inline-block;
}
.lecture .ondemand-section .ondemand-banner strong {
  color: #fff900;
  font-weight: bold;
  font-size: 1.08em;
  letter-spacing: 0.01em;
}
.lecture .ondemand-section .ondemand-box {
  margin: 2rem auto;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ccc;
  max-width: 840px;
  padding: 2rem;
  text-align: left;
  box-sizing: border-box;
}
.lecture .ondemand-section .ondemand-head {
  background: #728ECB;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  font-size: 1.45rem;
  padding: 0 2rem;
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.lecture .ondemand-section .ondemand-category {
  margin-bottom: 22px;
}
.lecture .ondemand-section .ondemand-category:last-child {
  margin-bottom: 0;
}
.lecture .ondemand-section .ondemand-category .ondemand-title {
  color: #5d7fcd;
  font-weight: bold;
  font-size: 1.48rem;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.lecture .ondemand-section .ondemand-category ul {
  margin: 0 0 0 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.lecture .ondemand-section .ondemand-category ul li {
  font-size: 1.4rem;
  line-height: 1.9;
  list-style: disc;
  flex: 0 auto;
  padding-left: 0rem;
  margin-right: 2rem;
}

/*speakers（１人用デザイン）
-----------------------------------------------------*/
/*
.speakers{
	position: relative;
	z-index: 1;

.container-md {
		max-width: 920px;
	}

  .flex{
	@include mq(md) {
		flex-wrap: wrap;
		justify-content: center;
	}
  }

.col01{
	position: relative;

	@include mq(md) {
		margin-top: 9rem;
	}

	.name{
		font-size: 2.4rem;
		line-height: 3.2rem;
		text-align: center;
		color: #1A7AE8;
		position: absolute;
		width: 315px;
		height: 80px;
		background: #fff;
		border-radius: 50px;
		bottom: 20px;
		right: 3.5rem;
		font-weight: bold;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);

	span{
		font-size: 1.6rem;
		font-weight: normal;
		color:#333;

		@media(max-width: 900px) {
			font-size: 1.4rem;
		}


	}

	@include mq(lg) {
        bottom: 36px;
        right: 0;
	}

	@media(max-width: 900px) {
		bottom: 65px;
		width: 100%;
		font-size: 2.2rem;
	}



	@include mq(md) {
		width: 100%;
		bottom: -5px;
		font-size: 2.4rem;

	}

	}
}
.col02{
	margin-top: 10rem;
    margin-left: 4rem;
    flex: 1 0 520px;

	@include mq(md) {
		margin-top: 4rem;
		margin-left: 0;
	}

	p{
		font-size:1.65rem;
		line-height: 4rem;
	}


.hl-speakers {
	width: 100%;
	text-align: left;
	position: relative;
	margin-bottom: 3.2rem;

	@include mq(md) {
		position: absolute;
		top: 100px;
		left: 0;
		right: 0;
		margin: auto;
		text-align: center;
	}

	h1 {
		font-size: 4rem;
		color: #333;
		line-height: 1.2;
		z-index: 1;
		position: relative;

		@include mq(md) {
			font-size: 2.6rem;
		}

		@include mq(sm) {
			font-size: 2.2rem;
		}
	}

	span {
		color: #D6EFFA;
		font-size: 100px;
		line-height: 1;
		width: 100%;
		position: absolute;
		top: -60%;
		left: 50%;
		font-weight: normal;
		transform: translate(-50%, -50%);

		@include mq(md) {
			font-size: 8rem;
		}

		@include mq(sm) {
			font-size: 5rem;
		}
	}
}
}
ul{

	li{
		position: relative;
		padding-left: 4rem;
		line-height: 1.6;
		margin-bottom: 2rem;
		font-size:1.6rem
	  }

	  li:before {
		content: "";
		position: absolute;
		top: .4em;
		left: 0;
		width: 10px;
		height: 10px;
		background-color: #F18200;
		border-radius: 50%;
	  }

}
}
*/
/*speakers（２人用デザイン）
-----------------------------------------------------*/
.speakers {
  position: relative;
  z-index: 1;
}
.speakers .hl-speakers {
  width: 100%;
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .speakers .hl-speakers {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
  }
}
.speakers .hl-speakers span {
  color: #D6EFFA;
  font-size: 100px;
  line-height: 1;
  width: 100%;
  position: absolute;
  top: -60%;
  left: 50%;
  font-weight: normal;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 767px) {
  .speakers .hl-speakers span {
    font-size: 8rem;
  }
}
@media (max-width: 575px) {
  .speakers .hl-speakers span {
    font-size: 5rem;
  }
}
.speakers .container-md {
  max-width: 920px;
}
.speakers .flex {
  justify-content: space-around;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .speakers .flex {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 11rem;
  }
}
.speakers .speakers_box {
  width: 350px;
  position: relative;
}
.speakers .speakers_box .name {
  font-size: 2.4rem;
  line-height: 3.2rem;
  text-align: center;
  color: #1A7AE8;
  position: absolute;
  width: 315px;
  height: 80px;
  background: #fff;
  border-radius: 50px;
  top: 280px;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.speakers .speakers_box .name span {
  font-size: 1.6rem;
  font-weight: normal;
  color: #333;
}
@media (max-width: 900px) {
  .speakers .speakers_box .name span {
    font-size: 1.4rem;
  }
}
@media (max-width: 900px) {
  .speakers .speakers_box .name {
    width: 100%;
    font-size: 2.2rem;
  }
}
@media (max-width: 767px) {
  .speakers .speakers_box .name {
    width: 100%;
    font-size: 2.4rem;
  }
}
.speakers ul {
  margin-top: 4.8rem;
}
.speakers ul li {
  position: relative;
  padding-left: 4rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1.6rem;
}
.speakers ul li:before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #1A7AE8;
  border-radius: 50%;
}

/*deadline
-----------------------------------------------------*/
.deadline-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin: 4rem 0;
}

.bracket {
  width: 10px;
  height: 240px;
  border: 2px solid #2F70FF;
  border-radius: 2px;
}

.deadline-text p {
  font-size: 1.75rem;
  margin: 1rem 0;
}

.deadline-text {
  text-align: center;
}

.deadline-text .deadline-title {
  font-weight: bold;
  color: #1971D7;
  font-size: 26px;
}

.deadline-text .note {
  font-size: 14px;
  color: #333;
  margin-top: 4px;
  display: block;
}

.deadline-subtitle {
  background-color: #9fcff2;
  border-radius: 8px;
  font-weight: bold;
  color: #0171bb;
  margin-top: 2rem;
}

/*inquiry
-----------------------------------------------------*/
.inquiry {
  padding-bottom: 0;
}
.inquiry .container-md {
  position: relative;
}
.inquiry .bg {
  background: #fff;
  border-radius: 80px 8px 80px 8px;
  padding: 6.4rem 0 2rem;
  position: relative;
}
@media (max-width: 767px) {
  .inquiry .bg {
    padding: 6.4rem 2rem 12rem;
  }
}
.inquiry .h1-inquiry {
  width: 100%;
  text-align: center;
  position: relative;
  margin-bottom: 3.5rem;
}
.inquiry .h1-inquiry h1 {
  font-size: 3rem;
  line-height: 1.2;
  z-index: 1;
  position: relative;
}
@media (max-width: 767px) {
  .inquiry .h1-inquiry h1 {
    font-size: 2.6rem;
  }
}
@media (max-width: 575px) {
  .inquiry .h1-inquiry h1 {
    font-size: 2rem;
  }
}
.inquiry .h1-inquiry span {
  color: transparent;
  -webkit-text-stroke: 1px #bdd5f2;
  font-size: 104px;
  line-height: 1;
  width: 100%;
  position: absolute;
  top: -22%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .inquiry .h1-inquiry span {
    font-size: 8rem;
  }
}
@media (max-width: 575px) {
  .inquiry .h1-inquiry span {
    font-size: 6rem;
  }
}
.inquiry .h1-inquiry .en {
  text-transform: uppercase;
}
.inquiry .tel-mail {
  text-align: center;
}
.inquiry .tel-mail a {
  font-weight: bold;
  text-decoration: none;
  display: block;
  line-height: 1.3;
}
.inquiry .tel-mail .tel {
  font-size: 6rem;
}
@media (max-width: 575px) {
  .inquiry .tel-mail .tel {
    font-size: 4rem;
  }
}
@media (max-width: 420px) {
  .inquiry .tel-mail .tel {
    font-size: 3.2rem;
  }
}
.inquiry .tel-mail .mail {
  font-size: 2.4rem;
}
@media (max-width: 575px) {
  .inquiry .tel-mail .mail {
    font-size: 2rem;
    margin-top: 2rem;
  }
}
.inquiry .fax_btn {
  background-color: #1971D7;
  color: #fff;
  border-radius: 50px;
  width: 280px;
  text-align: center;
  margin: auto;
  padding: 1rem 0;
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.inquiry .fax_btn .icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #739fff;
  border-radius: 50%;
  margin-left: 10px;
  position: relative;
}
.inquiry .fax_btn .icon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%) rotate(0deg);
  border-style: solid;
  border-width: 4px 0 4px 7px;
  border-color: transparent transparent transparent white;
}
.inquiry .hours {
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  margin: 2rem 0 1.5rem 0;
}
@media (max-width: 575px) {
  .inquiry .hours {
    font-size: 2rem;
  }
}
.inquiry p {
  font-size: 1.8rem;
  text-align: center;
}
.inquiry-img01, .inquiry-img02 {
  width: 100px;
  position: absolute;
  bottom: 0;
}
.inquiry-img01 {
  left: 16%;
  width: 105px;
}
@media (max-width: 767px) {
  .inquiry-img01 {
    left: -10rem;
    right: 0;
    margin: auto;
  }
}
.inquiry-img02 {
  right: 15%;
  width: 90px;
}
@media (max-width: 767px) {
  .inquiry-img02 {
    right: -12rem;
    left: 0;
    margin: auto;
  }
}

.cta-section {
  background: linear-gradient(120deg, #6aa1ff 0%, #3376ce 100%);
  border-radius: 20px;
  max-width: 1100px;
  margin: 40px auto 4rem;
  padding: 3rem 2rem;
  text-align: center;
  box-sizing: border-box;
}

.cta-title {
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.cta-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 54px;
}
@media (max-width: 800px) {
  .cta-btn-wrap {
    gap: 24px;
  }
}
@media (max-width: 700px) {
  .cta-btn-wrap {
    flex-direction: column;
    gap: 24px;
  }
}

.cta-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 50%;
  background: #ff9933;
  color: #fff;
  font-size: 1.85rem;
  font-weight: bold;
  border: none;
  border-radius: 80px;
  padding: 2rem;
  box-shadow: 0 4px 0 #d77b2b;
  text-decoration: none;
  transition: background 0.18s, box-shadow 0.2s;
  letter-spacing: 0.05em;
  position: relative;
  cursor: pointer;
  height: 65px;
}
.cta-btn:hover, .cta-btn:focus {
  background-color: #ff9933;
  transform: translate(0px, 5px);
  transition: all 0.3s ease-in-out;
  box-shadow: none;
  color: #fff;
  opacity: 1;
}
@media (max-width: 743px) {
  .cta-btn {
    font-size: 1.65rem;
  }
}
@media (max-width: 720px) {
  .cta-btn {
    width: calc(100% - 8rem);
  }
}

@media (max-width: 600px) {
  .cta-section {
    padding: 26px 0 34px 0;
    border-radius: 22px;
  }
  .cta-title {
    font-size: 1.75rem;
    margin-bottom: 22px;
  }
  .cta-btn {
    padding: 2rem;
    font-size: 1.5rem;
  }
}
/*faq
-----------------------------------------------------*/
.faq {
  padding-bottom: 15rem;
  background-image: linear-gradient(0deg, transparent 44px, #b0c2ee 45px), linear-gradient(90deg, transparent 44px, #b0c2ee 45px);
  background-size: 45px 45px;
  background-color: #D9E6FF;
}
.faq-box {
  background: #FFF;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 4rem 8rem;
  margin-top: 6.4rem;
}
@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;
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 1.5rem;
  padding-left: 3.8rem;
  text-indent: -2rem;
}
@media (max-width: 575px) {
  .faq-box .question {
    font-size: 1.8rem;
  }
}
.faq-box .question:before {
  content: "Q";
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: #5C9CE5;
  margin-right: 2rem;
  line-height: 1;
}
.faq-box .answer {
  padding-top: 2rem;
  font-size: 1.8rem;
  margin-top: 0;
  padding-left: 3.8rem;
  text-indent: -2rem;
}
@media (max-width: 575px) {
  .faq-box .answer {
    font-size: 1.6rem;
  }
}
.faq-box .answer:before {
  content: "A";
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: #f08200;
  margin-right: 2rem;
  line-height: 1;
  vertical-align: top;
}

/*osusume
-----------------------------------------------------*/
.osusume {
  padding-bottom: 15rem;
  padding-top: 8rem;
  background: url(../images/osusume_bg_top.png), url(../images/osusume_bg_bottom.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right, bottom left;
}
@media (max-width: 767px) {
  .osusume {
    background-size: contain;
  }
}
@media (max-width: 575px) {
  .osusume {
    padding: 3rem;
  }
}
@media (max-width: 420px) {
  .osusume {
    padding: 0.5rem;
  }
}
@media (max-width: 767px) {
  .osusume h2 {
    padding-top: 4rem;
  }
}
.osusume p {
  text-align: center;
  margin: 4rem 0;
}
.osusume .osusume_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background-color: #E3F5FF; /* 水色 */
  color: #2F70FF; /* 青色文字 */
  border: none;
  border-radius: 9999px; /* ピル型 */
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
  width: 100%;
  font-weight: bold;
}
.osusume .osusume_btn:hover {
  background-color: #d1edff;
}
.osusume .osusume_btn .icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #2F70FF;
  border-radius: 50%;
  margin-left: 10px;
  position: relative;
}
.osusume .osusume_btn .icon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%) rotate(0deg);
  border-style: solid;
  border-width: 4px 0 4px 7px;
  border-color: transparent transparent transparent white;
}
.osusume .osusume_wrap {
  background: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
  display: flex;
  padding: 4rem;
  border-radius: 32px;
  gap: 4rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .osusume .osusume_wrap {
    flex-wrap: wrap;
    gap: 4rem;
    padding: 2rem;
  }
}
.osusume .osusume_wrap .osusume_elm {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: center;
  padding: 2rem;
}
.osusume .osusume_wrap .osusume_elm .osusume_btn {
  width: calc(100% - 4rem);
}
.osusume .osusume_wrap .osusume_elm img {
  margin: 3rem 0;
}
@media (max-width: 767px) {
  .osusume .osusume_wrap .osusume_elm {
    width: 100%;
    text-align: center;
  }
}
.osusume .osusume_wrap .osusume_elm + .osusume_elm {
  border-left: 1px solid #ccc;
  padding-left: 6rem;
}
@media (max-width: 767px) {
  .osusume .osusume_wrap .osusume_elm + .osusume_elm {
    border-left: none;
    padding-left: 2rem;
  }
}
.osusume .osusume_number {
  background-color: #CDE7FE;
  color: #4B67D6;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
}
.osusume .osusume_title {
  font-weight: bold;
  font-size: 2.2rem;
  text-align: center;
  margin: 1.6rem 0;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .osusume .osusume_title {
    height: auto;
    font-size: 1.9rem;
  }
}
@media (max-width: 767px) {
  .osusume img {
    max-width: 180px;
  }
}
.osusume .blue_grad_bg {
  width: calc(100% - 4rem);
  background-image: linear-gradient(90deg, #5A88FD, #5EB6F7);
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 1.85rem;
  padding: 2rem;
  margin: 2rem auto;
}
.osusume .blue_grad_bg .icon {
  margin-left: 2rem;
}
@media (max-width: 420px) {
  .osusume .blue_grad_bg {
    width: calc(100% - 8rem);
    padding: 2rem 4rem;
    font-size: 1.5rem;
  }
}
.osusume .sindan_wrap {
  border-radius: 32px;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  margin-top: 4rem;
}
.osusume .sindan_wrap .sindan_title {
  background-color: #FFFF52;
  padding: 2rem;
  color: #2160F5;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.25rem;
  font-size: 2.2rem;
}
.osusume .sindan_wrap .sindan_cont {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-self: center;
  align-content: center;
  padding: 2rem 3rem;
  gap: 2rem;
}
.osusume .sindan_wrap .img_wrap {
  flex: 1 0 auto;
  text-align: center;
}
.osusume .sindan_wrap .img_wrap img {
  max-width: 200px;
}
@media (max-width: 767px) {
  .osusume .sindan_wrap .img_wrap img {
    max-width: 180px;
  }
}
.osusume .sindan_wrap .txt_wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 3.2rem;
  flex: 1 525px;
}
@media (max-width: 767px) {
  .osusume .sindan_wrap .sindan_cont {
    flex-wrap: wrap;
  }
}

/*footer
-----------------------------------------------------*/
.footer {
  background: #f3f3f3;
  text-align: center;
}
@media (max-width: 767px) {
  .footer {
    padding-bottom: 7rem;
  }
}
.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-size: 1.8rem;
  font-weight: 500;
}
.footer .flex-box p {
  margin: 0.5rem 0;
}
.footer .flex-box a {
  text-decoration: none;
  color: #333;
  display: block;
}

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

.apply-detail {
  margin-top: 5rem;
}
.apply-detail span {
  font-size: 2.4rem;
  font-weight: 700;
  border: 1px solid #000;
  padding: 0.5rem 1rem;
}
.apply-detail span strong {
  color: #ec7620;
}
.apply-detail h3 {
  font-size: 2rem;
  border-bottom: 1px solid #000;
  margin: 2rem 0;
}
.apply-detail ul {
  margin-top: 3rem;
}

.bnr {
  padding: 3.2rem 2rem;
}
.bnr img {
  max-width: 640px;
  width: 100%;
}/*# sourceMappingURL=style.css.map */