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

* {
  box-sizing: border-box;
}

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-behavior: smooth;
}

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

/* link
-----------------------------------------------------*/
a {
  color: #2454A9;
  transition: 0.3s linear;
}
a:hover, a:active, a:focus {
  color: #82a5e4;
}

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

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

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

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

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

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

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

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

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

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

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

/*font-size
-----------------------------------------------------*/
.fs-9 {
  font-size: 0.9rem;
}

.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-9-xl {
    font-size: 0.9rem !important;
  }
  .fs-10-xl {
    font-size: 1rem !important;
  }
  .fs-11-xl {
    font-size: 1.1rem !important;
  }
  .fs-12-xl {
    font-size: 1.2rem !important;
  }
  .fs-13-xl {
    font-size: 1.3rem !important;
  }
  .fs-14-xl {
    font-size: 1.4rem !important;
  }
  .fs-15-xl {
    font-size: 1.5rem !important;
  }
  .fs-16-xl {
    font-size: 1.6rem !important;
  }
  .fs-17-xl {
    font-size: 1.7rem !important;
  }
  .fs-18-xl {
    font-size: 1.8rem !important;
  }
  .fs-19-xl {
    font-size: 1.9rem !important;
  }
  .fs-20-xl {
    font-size: 2rem !important;
  }
  .fs-21-xl {
    font-size: 2.1rem !important;
  }
  .fs-22-xl {
    font-size: 2.2rem !important;
  }
  .fs-23-xl {
    font-size: 2.3rem !important;
  }
  .fs-24-xl {
    font-size: 2.4rem !important;
  }
  .fs-25-xl {
    font-size: 2.5rem !important;
  }
  .fs-26-xl {
    font-size: 2.6rem !important;
  }
  .fs-27-xl {
    font-size: 2.7rem !important;
  }
  .fs-28-xl {
    font-size: 2.8rem !important;
  }
  .fs-29-xl {
    font-size: 2.9rem !important;
  }
  .fs-30-xl {
    font-size: 3rem !important;
  }
}
@media (max-width: 1023px) {
  .fs-9-lg {
    font-size: 0.9rem !important;
  }
  .fs-10-lg {
    font-size: 1rem !important;
  }
  .fs-11-lg {
    font-size: 1.1rem !important;
  }
  .fs-12-lg {
    font-size: 1.2rem !important;
  }
  .fs-13-lg {
    font-size: 1.3rem !important;
  }
  .fs-14-lg {
    font-size: 1.4rem !important;
  }
  .fs-15-lg {
    font-size: 1.5rem !important;
  }
  .fs-16-lg {
    font-size: 1.6rem !important;
  }
  .fs-17-lg {
    font-size: 1.7rem !important;
  }
  .fs-18-lg {
    font-size: 1.8rem !important;
  }
  .fs-19-lg {
    font-size: 1.9rem !important;
  }
  .fs-20-lg {
    font-size: 2rem !important;
  }
  .fs-21-lg {
    font-size: 2.1rem !important;
  }
  .fs-22-lg {
    font-size: 2.2rem !important;
  }
  .fs-23-lg {
    font-size: 2.3rem !important;
  }
  .fs-24-lg {
    font-size: 2.4rem !important;
  }
  .fs-25-lg {
    font-size: 2.5rem !important;
  }
  .fs-26-lg {
    font-size: 2.6rem !important;
  }
  .fs-27-lg {
    font-size: 2.7rem !important;
  }
  .fs-28-lg {
    font-size: 2.8rem !important;
  }
  .fs-29-lg {
    font-size: 2.9rem !important;
  }
  .fs-30-lg {
    font-size: 3rem !important;
  }
}
@media (max-width: 767px) {
  .fs-9-md {
    font-size: 0.9rem !important;
  }
  .fs-10-md {
    font-size: 1rem !important;
  }
  .fs-11-md {
    font-size: 1.1rem !important;
  }
  .fs-12-md {
    font-size: 1.2rem !important;
  }
  .fs-13-md {
    font-size: 1.3rem !important;
  }
  .fs-14-md {
    font-size: 1.4rem !important;
  }
  .fs-15-md {
    font-size: 1.5rem !important;
  }
  .fs-16-md {
    font-size: 1.6rem !important;
  }
  .fs-17-md {
    font-size: 1.7rem !important;
  }
  .fs-18-md {
    font-size: 1.8rem !important;
  }
  .fs-19-md {
    font-size: 1.9rem !important;
  }
  .fs-20-md {
    font-size: 2rem !important;
  }
  .fs-21-md {
    font-size: 2.1rem !important;
  }
  .fs-22-md {
    font-size: 2.2rem !important;
  }
  .fs-23-md {
    font-size: 2.3rem !important;
  }
  .fs-24-md {
    font-size: 2.4rem !important;
  }
  .fs-25-md {
    font-size: 2.5rem !important;
  }
  .fs-26-md {
    font-size: 2.6rem !important;
  }
  .fs-27-md {
    font-size: 2.7rem !important;
  }
  .fs-28-md {
    font-size: 2.8rem !important;
  }
  .fs-29-md {
    font-size: 2.9rem !important;
  }
  .fs-30-md {
    font-size: 3rem !important;
  }
}
@media (max-width: 575px) {
  .fs-9-sm {
    font-size: 0.9rem !important;
  }
  .fs-10-sm {
    font-size: 1rem !important;
  }
  .fs-11-sm {
    font-size: 1.1rem !important;
  }
  .fs-12-sm {
    font-size: 1.2rem !important;
  }
  .fs-13-sm {
    font-size: 1.3rem !important;
  }
  .fs-14-sm {
    font-size: 1.4rem !important;
  }
  .fs-15-sm {
    font-size: 1.5rem !important;
  }
  .fs-16-sm {
    font-size: 1.6rem !important;
  }
  .fs-17-sm {
    font-size: 1.7rem !important;
  }
  .fs-18-sm {
    font-size: 1.8rem !important;
  }
  .fs-19-sm {
    font-size: 1.9rem !important;
  }
  .fs-20-sm {
    font-size: 2rem !important;
  }
  .fs-21-sm {
    font-size: 2.1rem !important;
  }
  .fs-22-sm {
    font-size: 2.2rem !important;
  }
  .fs-23-sm {
    font-size: 2.3rem !important;
  }
  .fs-24-sm {
    font-size: 2.4rem !important;
  }
  .fs-25-sm {
    font-size: 2.5rem !important;
  }
  .fs-26-sm {
    font-size: 2.6rem !important;
  }
  .fs-27-sm {
    font-size: 2.7rem !important;
  }
  .fs-28-sm {
    font-size: 2.8rem !important;
  }
  .fs-29-sm {
    font-size: 2.9rem !important;
  }
  .fs-30-sm {
    font-size: 3rem !important;
  }
}
.lh-1 {
  line-height: 1.1;
}

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

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

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

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

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

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

ol {
  padding-left: 1em;
}

.float-l {
  float: left;
}

.float-r {
  float: right;
}

.en {
  font-family: "Josefin Sans", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
}

.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: #2454A9 !important;
}

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

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

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

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

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

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

.pos-r {
  position: relative;
}

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

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

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

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

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

@media (max-width: 575px) {
  .inline-sm {
    display: inline;
  }
}
/* margin padding gap
-----------------------------------------------------*/
.m-0 {
  margin: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {
  .mt-0-xl {
    margin-top: 0rem !important;
  }
  .pt-0-xl {
    padding-top: 0rem !important;
  }
  .mb-0-xl {
    margin-bottom: 0rem !important;
  }
  .pb-0-xl {
    padding-bottom: 0rem !important;
  }
  .ml-0-xl {
    margin-left: 0rem !important;
  }
  .pl-0-xl {
    padding-left: 0rem !important;
  }
  .mr-0-xl {
    margin-right: 0rem !important;
  }
  .pr-0-xl {
    padding-right: 0rem !important;
  }
  .mt-10-xl {
    margin-top: 1rem !important;
  }
  .pt-10-xl {
    padding-top: 1rem !important;
  }
  .mb-10-xl {
    margin-bottom: 1rem !important;
  }
  .pb-10-xl {
    padding-bottom: 1rem !important;
  }
  .ml-10-xl {
    margin-left: 1rem !important;
  }
  .pl-10-xl {
    padding-left: 1rem !important;
  }
  .mr-10-xl {
    margin-right: 1rem !important;
  }
  .pr-10-xl {
    padding-right: 1rem !important;
  }
  .mt-15-xl {
    margin-top: 1.5rem !important;
  }
  .pt-15-xl {
    padding-top: 1.5rem !important;
  }
  .mb-15-xl {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-xl {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-xl {
    margin-left: 1.5rem !important;
  }
  .pl-15-xl {
    padding-left: 1.5rem !important;
  }
  .mr-15-xl {
    margin-right: 1.5rem !important;
  }
  .pr-15-xl {
    padding-right: 1.5rem !important;
  }
  .mt-20-xl {
    margin-top: 2rem !important;
  }
  .pt-20-xl {
    padding-top: 2rem !important;
  }
  .mb-20-xl {
    margin-bottom: 2rem !important;
  }
  .pb-20-xl {
    padding-bottom: 2rem !important;
  }
  .ml-20-xl {
    margin-left: 2rem !important;
  }
  .pl-20-xl {
    padding-left: 2rem !important;
  }
  .mr-20-xl {
    margin-right: 2rem !important;
  }
  .pr-20-xl {
    padding-right: 2rem !important;
  }
  .mt-25-xl {
    margin-top: 2.5rem !important;
  }
  .pt-25-xl {
    padding-top: 2.5rem !important;
  }
  .mb-25-xl {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-xl {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-xl {
    margin-left: 2.5rem !important;
  }
  .pl-25-xl {
    padding-left: 2.5rem !important;
  }
  .mr-25-xl {
    margin-right: 2.5rem !important;
  }
  .pr-25-xl {
    padding-right: 2.5rem !important;
  }
  .mt-30-xl {
    margin-top: 3rem !important;
  }
  .pt-30-xl {
    padding-top: 3rem !important;
  }
  .mb-30-xl {
    margin-bottom: 3rem !important;
  }
  .pb-30-xl {
    padding-bottom: 3rem !important;
  }
  .ml-30-xl {
    margin-left: 3rem !important;
  }
  .pl-30-xl {
    padding-left: 3rem !important;
  }
  .mr-30-xl {
    margin-right: 3rem !important;
  }
  .pr-30-xl {
    padding-right: 3rem !important;
  }
  .mt-35-xl {
    margin-top: 3.5rem !important;
  }
  .pt-35-xl {
    padding-top: 3.5rem !important;
  }
  .mb-35-xl {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-xl {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-xl {
    margin-left: 3.5rem !important;
  }
  .pl-35-xl {
    padding-left: 3.5rem !important;
  }
  .mr-35-xl {
    margin-right: 3.5rem !important;
  }
  .pr-35-xl {
    padding-right: 3.5rem !important;
  }
  .mt-40-xl {
    margin-top: 4rem !important;
  }
  .pt-40-xl {
    padding-top: 4rem !important;
  }
  .mb-40-xl {
    margin-bottom: 4rem !important;
  }
  .pb-40-xl {
    padding-bottom: 4rem !important;
  }
  .ml-40-xl {
    margin-left: 4rem !important;
  }
  .pl-40-xl {
    padding-left: 4rem !important;
  }
  .mr-40-xl {
    margin-right: 4rem !important;
  }
  .pr-40-xl {
    padding-right: 4rem !important;
  }
  .mt-45-xl {
    margin-top: 4.5rem !important;
  }
  .pt-45-xl {
    padding-top: 4.5rem !important;
  }
  .mb-45-xl {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-xl {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-xl {
    margin-left: 4.5rem !important;
  }
  .pl-45-xl {
    padding-left: 4.5rem !important;
  }
  .mr-45-xl {
    margin-right: 4.5rem !important;
  }
  .pr-45-xl {
    padding-right: 4.5rem !important;
  }
  .mt-50-xl {
    margin-top: 5rem !important;
  }
  .pt-50-xl {
    padding-top: 5rem !important;
  }
  .mb-50-xl {
    margin-bottom: 5rem !important;
  }
  .pb-50-xl {
    padding-bottom: 5rem !important;
  }
  .ml-50-xl {
    margin-left: 5rem !important;
  }
  .pl-50-xl {
    padding-left: 5rem !important;
  }
  .mr-50-xl {
    margin-right: 5rem !important;
  }
  .pr-50-xl {
    padding-right: 5rem !important;
  }
  .mt-60-xl {
    margin-top: 6rem !important;
  }
  .pt-60-xl {
    padding-top: 6rem !important;
  }
  .mb-60-xl {
    margin-bottom: 6rem !important;
  }
  .pb-60-xl {
    padding-bottom: 6rem !important;
  }
  .ml-60-xl {
    margin-left: 6rem !important;
  }
  .pl-60-xl {
    padding-left: 6rem !important;
  }
  .mr-60-xl {
    margin-right: 6rem !important;
  }
  .pr-60-xl {
    padding-right: 6rem !important;
  }
  .mt-70-xl {
    margin-top: 7rem !important;
  }
  .pt-70-xl {
    padding-top: 7rem !important;
  }
  .mb-70-xl {
    margin-bottom: 7rem !important;
  }
  .pb-70-xl {
    padding-bottom: 7rem !important;
  }
  .ml-70-xl {
    margin-left: 7rem !important;
  }
  .pl-70-xl {
    padding-left: 7rem !important;
  }
  .mr-70-xl {
    margin-right: 7rem !important;
  }
  .pr-70-xl {
    padding-right: 7rem !important;
  }
  .mt-80-xl {
    margin-top: 8rem !important;
  }
  .pt-80-xl {
    padding-top: 8rem !important;
  }
  .mb-80-xl {
    margin-bottom: 8rem !important;
  }
  .pb-80-xl {
    padding-bottom: 8rem !important;
  }
  .ml-80-xl {
    margin-left: 8rem !important;
  }
  .pl-80-xl {
    padding-left: 8rem !important;
  }
  .mr-80-xl {
    margin-right: 8rem !important;
  }
  .pr-80-xl {
    padding-right: 8rem !important;
  }
  .mt-100-xl {
    margin-top: 10rem !important;
  }
  .pt-100-xl {
    padding-top: 10rem !important;
  }
  .mb-100-xl {
    margin-bottom: 10rem !important;
  }
  .pb-100-xl {
    padding-bottom: 10rem !important;
  }
  .ml-100-xl {
    margin-left: 10rem !important;
  }
  .pl-100-xl {
    padding-left: 10rem !important;
  }
  .mr-100-xl {
    margin-right: 10rem !important;
  }
  .pr-100-xl {
    padding-right: 10rem !important;
  }
}
@media (max-width: 1023px) {
  .mt-0-lg {
    margin-top: 0rem !important;
  }
  .pt-0-lg {
    padding-top: 0rem !important;
  }
  .mb-0-lg {
    margin-bottom: 0rem !important;
  }
  .pb-0-lg {
    padding-bottom: 0rem !important;
  }
  .ml-0-lg {
    margin-left: 0rem !important;
  }
  .pl-0-lg {
    padding-left: 0rem !important;
  }
  .mr-0-lg {
    margin-right: 0rem !important;
  }
  .pr-0-lg {
    padding-right: 0rem !important;
  }
  .mt-10-lg {
    margin-top: 1rem !important;
  }
  .pt-10-lg {
    padding-top: 1rem !important;
  }
  .mb-10-lg {
    margin-bottom: 1rem !important;
  }
  .pb-10-lg {
    padding-bottom: 1rem !important;
  }
  .ml-10-lg {
    margin-left: 1rem !important;
  }
  .pl-10-lg {
    padding-left: 1rem !important;
  }
  .mr-10-lg {
    margin-right: 1rem !important;
  }
  .pr-10-lg {
    padding-right: 1rem !important;
  }
  .mt-15-lg {
    margin-top: 1.5rem !important;
  }
  .pt-15-lg {
    padding-top: 1.5rem !important;
  }
  .mb-15-lg {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-lg {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-lg {
    margin-left: 1.5rem !important;
  }
  .pl-15-lg {
    padding-left: 1.5rem !important;
  }
  .mr-15-lg {
    margin-right: 1.5rem !important;
  }
  .pr-15-lg {
    padding-right: 1.5rem !important;
  }
  .mt-20-lg {
    margin-top: 2rem !important;
  }
  .pt-20-lg {
    padding-top: 2rem !important;
  }
  .mb-20-lg {
    margin-bottom: 2rem !important;
  }
  .pb-20-lg {
    padding-bottom: 2rem !important;
  }
  .ml-20-lg {
    margin-left: 2rem !important;
  }
  .pl-20-lg {
    padding-left: 2rem !important;
  }
  .mr-20-lg {
    margin-right: 2rem !important;
  }
  .pr-20-lg {
    padding-right: 2rem !important;
  }
  .mt-25-lg {
    margin-top: 2.5rem !important;
  }
  .pt-25-lg {
    padding-top: 2.5rem !important;
  }
  .mb-25-lg {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-lg {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-lg {
    margin-left: 2.5rem !important;
  }
  .pl-25-lg {
    padding-left: 2.5rem !important;
  }
  .mr-25-lg {
    margin-right: 2.5rem !important;
  }
  .pr-25-lg {
    padding-right: 2.5rem !important;
  }
  .mt-30-lg {
    margin-top: 3rem !important;
  }
  .pt-30-lg {
    padding-top: 3rem !important;
  }
  .mb-30-lg {
    margin-bottom: 3rem !important;
  }
  .pb-30-lg {
    padding-bottom: 3rem !important;
  }
  .ml-30-lg {
    margin-left: 3rem !important;
  }
  .pl-30-lg {
    padding-left: 3rem !important;
  }
  .mr-30-lg {
    margin-right: 3rem !important;
  }
  .pr-30-lg {
    padding-right: 3rem !important;
  }
  .mt-35-lg {
    margin-top: 3.5rem !important;
  }
  .pt-35-lg {
    padding-top: 3.5rem !important;
  }
  .mb-35-lg {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-lg {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-lg {
    margin-left: 3.5rem !important;
  }
  .pl-35-lg {
    padding-left: 3.5rem !important;
  }
  .mr-35-lg {
    margin-right: 3.5rem !important;
  }
  .pr-35-lg {
    padding-right: 3.5rem !important;
  }
  .mt-40-lg {
    margin-top: 4rem !important;
  }
  .pt-40-lg {
    padding-top: 4rem !important;
  }
  .mb-40-lg {
    margin-bottom: 4rem !important;
  }
  .pb-40-lg {
    padding-bottom: 4rem !important;
  }
  .ml-40-lg {
    margin-left: 4rem !important;
  }
  .pl-40-lg {
    padding-left: 4rem !important;
  }
  .mr-40-lg {
    margin-right: 4rem !important;
  }
  .pr-40-lg {
    padding-right: 4rem !important;
  }
  .mt-45-lg {
    margin-top: 4.5rem !important;
  }
  .pt-45-lg {
    padding-top: 4.5rem !important;
  }
  .mb-45-lg {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-lg {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-lg {
    margin-left: 4.5rem !important;
  }
  .pl-45-lg {
    padding-left: 4.5rem !important;
  }
  .mr-45-lg {
    margin-right: 4.5rem !important;
  }
  .pr-45-lg {
    padding-right: 4.5rem !important;
  }
  .mt-50-lg {
    margin-top: 5rem !important;
  }
  .pt-50-lg {
    padding-top: 5rem !important;
  }
  .mb-50-lg {
    margin-bottom: 5rem !important;
  }
  .pb-50-lg {
    padding-bottom: 5rem !important;
  }
  .ml-50-lg {
    margin-left: 5rem !important;
  }
  .pl-50-lg {
    padding-left: 5rem !important;
  }
  .mr-50-lg {
    margin-right: 5rem !important;
  }
  .pr-50-lg {
    padding-right: 5rem !important;
  }
  .mt-60-lg {
    margin-top: 6rem !important;
  }
  .pt-60-lg {
    padding-top: 6rem !important;
  }
  .mb-60-lg {
    margin-bottom: 6rem !important;
  }
  .pb-60-lg {
    padding-bottom: 6rem !important;
  }
  .ml-60-lg {
    margin-left: 6rem !important;
  }
  .pl-60-lg {
    padding-left: 6rem !important;
  }
  .mr-60-lg {
    margin-right: 6rem !important;
  }
  .pr-60-lg {
    padding-right: 6rem !important;
  }
  .mt-70-lg {
    margin-top: 7rem !important;
  }
  .pt-70-lg {
    padding-top: 7rem !important;
  }
  .mb-70-lg {
    margin-bottom: 7rem !important;
  }
  .pb-70-lg {
    padding-bottom: 7rem !important;
  }
  .ml-70-lg {
    margin-left: 7rem !important;
  }
  .pl-70-lg {
    padding-left: 7rem !important;
  }
  .mr-70-lg {
    margin-right: 7rem !important;
  }
  .pr-70-lg {
    padding-right: 7rem !important;
  }
  .mt-80-lg {
    margin-top: 8rem !important;
  }
  .pt-80-lg {
    padding-top: 8rem !important;
  }
  .mb-80-lg {
    margin-bottom: 8rem !important;
  }
  .pb-80-lg {
    padding-bottom: 8rem !important;
  }
  .ml-80-lg {
    margin-left: 8rem !important;
  }
  .pl-80-lg {
    padding-left: 8rem !important;
  }
  .mr-80-lg {
    margin-right: 8rem !important;
  }
  .pr-80-lg {
    padding-right: 8rem !important;
  }
  .mt-100-lg {
    margin-top: 10rem !important;
  }
  .pt-100-lg {
    padding-top: 10rem !important;
  }
  .mb-100-lg {
    margin-bottom: 10rem !important;
  }
  .pb-100-lg {
    padding-bottom: 10rem !important;
  }
  .ml-100-lg {
    margin-left: 10rem !important;
  }
  .pl-100-lg {
    padding-left: 10rem !important;
  }
  .mr-100-lg {
    margin-right: 10rem !important;
  }
  .pr-100-lg {
    padding-right: 10rem !important;
  }
}
@media (max-width: 767px) {
  .mt-0-md {
    margin-top: 0rem !important;
  }
  .pt-0-md {
    padding-top: 0rem !important;
  }
  .mb-0-md {
    margin-bottom: 0rem !important;
  }
  .pb-0-md {
    padding-bottom: 0rem !important;
  }
  .ml-0-md {
    margin-left: 0rem !important;
  }
  .pl-0-md {
    padding-left: 0rem !important;
  }
  .mr-0-md {
    margin-right: 0rem !important;
  }
  .pr-0-md {
    padding-right: 0rem !important;
  }
  .mt-10-md {
    margin-top: 1rem !important;
  }
  .pt-10-md {
    padding-top: 1rem !important;
  }
  .mb-10-md {
    margin-bottom: 1rem !important;
  }
  .pb-10-md {
    padding-bottom: 1rem !important;
  }
  .ml-10-md {
    margin-left: 1rem !important;
  }
  .pl-10-md {
    padding-left: 1rem !important;
  }
  .mr-10-md {
    margin-right: 1rem !important;
  }
  .pr-10-md {
    padding-right: 1rem !important;
  }
  .mt-15-md {
    margin-top: 1.5rem !important;
  }
  .pt-15-md {
    padding-top: 1.5rem !important;
  }
  .mb-15-md {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-md {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-md {
    margin-left: 1.5rem !important;
  }
  .pl-15-md {
    padding-left: 1.5rem !important;
  }
  .mr-15-md {
    margin-right: 1.5rem !important;
  }
  .pr-15-md {
    padding-right: 1.5rem !important;
  }
  .mt-20-md {
    margin-top: 2rem !important;
  }
  .pt-20-md {
    padding-top: 2rem !important;
  }
  .mb-20-md {
    margin-bottom: 2rem !important;
  }
  .pb-20-md {
    padding-bottom: 2rem !important;
  }
  .ml-20-md {
    margin-left: 2rem !important;
  }
  .pl-20-md {
    padding-left: 2rem !important;
  }
  .mr-20-md {
    margin-right: 2rem !important;
  }
  .pr-20-md {
    padding-right: 2rem !important;
  }
  .mt-25-md {
    margin-top: 2.5rem !important;
  }
  .pt-25-md {
    padding-top: 2.5rem !important;
  }
  .mb-25-md {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-md {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-md {
    margin-left: 2.5rem !important;
  }
  .pl-25-md {
    padding-left: 2.5rem !important;
  }
  .mr-25-md {
    margin-right: 2.5rem !important;
  }
  .pr-25-md {
    padding-right: 2.5rem !important;
  }
  .mt-30-md {
    margin-top: 3rem !important;
  }
  .pt-30-md {
    padding-top: 3rem !important;
  }
  .mb-30-md {
    margin-bottom: 3rem !important;
  }
  .pb-30-md {
    padding-bottom: 3rem !important;
  }
  .ml-30-md {
    margin-left: 3rem !important;
  }
  .pl-30-md {
    padding-left: 3rem !important;
  }
  .mr-30-md {
    margin-right: 3rem !important;
  }
  .pr-30-md {
    padding-right: 3rem !important;
  }
  .mt-35-md {
    margin-top: 3.5rem !important;
  }
  .pt-35-md {
    padding-top: 3.5rem !important;
  }
  .mb-35-md {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-md {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-md {
    margin-left: 3.5rem !important;
  }
  .pl-35-md {
    padding-left: 3.5rem !important;
  }
  .mr-35-md {
    margin-right: 3.5rem !important;
  }
  .pr-35-md {
    padding-right: 3.5rem !important;
  }
  .mt-40-md {
    margin-top: 4rem !important;
  }
  .pt-40-md {
    padding-top: 4rem !important;
  }
  .mb-40-md {
    margin-bottom: 4rem !important;
  }
  .pb-40-md {
    padding-bottom: 4rem !important;
  }
  .ml-40-md {
    margin-left: 4rem !important;
  }
  .pl-40-md {
    padding-left: 4rem !important;
  }
  .mr-40-md {
    margin-right: 4rem !important;
  }
  .pr-40-md {
    padding-right: 4rem !important;
  }
  .mt-45-md {
    margin-top: 4.5rem !important;
  }
  .pt-45-md {
    padding-top: 4.5rem !important;
  }
  .mb-45-md {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-md {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-md {
    margin-left: 4.5rem !important;
  }
  .pl-45-md {
    padding-left: 4.5rem !important;
  }
  .mr-45-md {
    margin-right: 4.5rem !important;
  }
  .pr-45-md {
    padding-right: 4.5rem !important;
  }
  .mt-50-md {
    margin-top: 5rem !important;
  }
  .pt-50-md {
    padding-top: 5rem !important;
  }
  .mb-50-md {
    margin-bottom: 5rem !important;
  }
  .pb-50-md {
    padding-bottom: 5rem !important;
  }
  .ml-50-md {
    margin-left: 5rem !important;
  }
  .pl-50-md {
    padding-left: 5rem !important;
  }
  .mr-50-md {
    margin-right: 5rem !important;
  }
  .pr-50-md {
    padding-right: 5rem !important;
  }
  .mt-60-md {
    margin-top: 6rem !important;
  }
  .pt-60-md {
    padding-top: 6rem !important;
  }
  .mb-60-md {
    margin-bottom: 6rem !important;
  }
  .pb-60-md {
    padding-bottom: 6rem !important;
  }
  .ml-60-md {
    margin-left: 6rem !important;
  }
  .pl-60-md {
    padding-left: 6rem !important;
  }
  .mr-60-md {
    margin-right: 6rem !important;
  }
  .pr-60-md {
    padding-right: 6rem !important;
  }
  .mt-70-md {
    margin-top: 7rem !important;
  }
  .pt-70-md {
    padding-top: 7rem !important;
  }
  .mb-70-md {
    margin-bottom: 7rem !important;
  }
  .pb-70-md {
    padding-bottom: 7rem !important;
  }
  .ml-70-md {
    margin-left: 7rem !important;
  }
  .pl-70-md {
    padding-left: 7rem !important;
  }
  .mr-70-md {
    margin-right: 7rem !important;
  }
  .pr-70-md {
    padding-right: 7rem !important;
  }
  .mt-80-md {
    margin-top: 8rem !important;
  }
  .pt-80-md {
    padding-top: 8rem !important;
  }
  .mb-80-md {
    margin-bottom: 8rem !important;
  }
  .pb-80-md {
    padding-bottom: 8rem !important;
  }
  .ml-80-md {
    margin-left: 8rem !important;
  }
  .pl-80-md {
    padding-left: 8rem !important;
  }
  .mr-80-md {
    margin-right: 8rem !important;
  }
  .pr-80-md {
    padding-right: 8rem !important;
  }
  .mt-100-md {
    margin-top: 10rem !important;
  }
  .pt-100-md {
    padding-top: 10rem !important;
  }
  .mb-100-md {
    margin-bottom: 10rem !important;
  }
  .pb-100-md {
    padding-bottom: 10rem !important;
  }
  .ml-100-md {
    margin-left: 10rem !important;
  }
  .pl-100-md {
    padding-left: 10rem !important;
  }
  .mr-100-md {
    margin-right: 10rem !important;
  }
  .pr-100-md {
    padding-right: 10rem !important;
  }
}
@media (max-width: 575px) {
  .mt-0-sm {
    margin-top: 0rem !important;
  }
  .pt-0-sm {
    padding-top: 0rem !important;
  }
  .mb-0-sm {
    margin-bottom: 0rem !important;
  }
  .pb-0-sm {
    padding-bottom: 0rem !important;
  }
  .ml-0-sm {
    margin-left: 0rem !important;
  }
  .pl-0-sm {
    padding-left: 0rem !important;
  }
  .mr-0-sm {
    margin-right: 0rem !important;
  }
  .pr-0-sm {
    padding-right: 0rem !important;
  }
  .mt-10-sm {
    margin-top: 1rem !important;
  }
  .pt-10-sm {
    padding-top: 1rem !important;
  }
  .mb-10-sm {
    margin-bottom: 1rem !important;
  }
  .pb-10-sm {
    padding-bottom: 1rem !important;
  }
  .ml-10-sm {
    margin-left: 1rem !important;
  }
  .pl-10-sm {
    padding-left: 1rem !important;
  }
  .mr-10-sm {
    margin-right: 1rem !important;
  }
  .pr-10-sm {
    padding-right: 1rem !important;
  }
  .mt-15-sm {
    margin-top: 1.5rem !important;
  }
  .pt-15-sm {
    padding-top: 1.5rem !important;
  }
  .mb-15-sm {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-sm {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-sm {
    margin-left: 1.5rem !important;
  }
  .pl-15-sm {
    padding-left: 1.5rem !important;
  }
  .mr-15-sm {
    margin-right: 1.5rem !important;
  }
  .pr-15-sm {
    padding-right: 1.5rem !important;
  }
  .mt-20-sm {
    margin-top: 2rem !important;
  }
  .pt-20-sm {
    padding-top: 2rem !important;
  }
  .mb-20-sm {
    margin-bottom: 2rem !important;
  }
  .pb-20-sm {
    padding-bottom: 2rem !important;
  }
  .ml-20-sm {
    margin-left: 2rem !important;
  }
  .pl-20-sm {
    padding-left: 2rem !important;
  }
  .mr-20-sm {
    margin-right: 2rem !important;
  }
  .pr-20-sm {
    padding-right: 2rem !important;
  }
  .mt-25-sm {
    margin-top: 2.5rem !important;
  }
  .pt-25-sm {
    padding-top: 2.5rem !important;
  }
  .mb-25-sm {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-sm {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-sm {
    margin-left: 2.5rem !important;
  }
  .pl-25-sm {
    padding-left: 2.5rem !important;
  }
  .mr-25-sm {
    margin-right: 2.5rem !important;
  }
  .pr-25-sm {
    padding-right: 2.5rem !important;
  }
  .mt-30-sm {
    margin-top: 3rem !important;
  }
  .pt-30-sm {
    padding-top: 3rem !important;
  }
  .mb-30-sm {
    margin-bottom: 3rem !important;
  }
  .pb-30-sm {
    padding-bottom: 3rem !important;
  }
  .ml-30-sm {
    margin-left: 3rem !important;
  }
  .pl-30-sm {
    padding-left: 3rem !important;
  }
  .mr-30-sm {
    margin-right: 3rem !important;
  }
  .pr-30-sm {
    padding-right: 3rem !important;
  }
  .mt-35-sm {
    margin-top: 3.5rem !important;
  }
  .pt-35-sm {
    padding-top: 3.5rem !important;
  }
  .mb-35-sm {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-sm {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-sm {
    margin-left: 3.5rem !important;
  }
  .pl-35-sm {
    padding-left: 3.5rem !important;
  }
  .mr-35-sm {
    margin-right: 3.5rem !important;
  }
  .pr-35-sm {
    padding-right: 3.5rem !important;
  }
  .mt-40-sm {
    margin-top: 4rem !important;
  }
  .pt-40-sm {
    padding-top: 4rem !important;
  }
  .mb-40-sm {
    margin-bottom: 4rem !important;
  }
  .pb-40-sm {
    padding-bottom: 4rem !important;
  }
  .ml-40-sm {
    margin-left: 4rem !important;
  }
  .pl-40-sm {
    padding-left: 4rem !important;
  }
  .mr-40-sm {
    margin-right: 4rem !important;
  }
  .pr-40-sm {
    padding-right: 4rem !important;
  }
  .mt-45-sm {
    margin-top: 4.5rem !important;
  }
  .pt-45-sm {
    padding-top: 4.5rem !important;
  }
  .mb-45-sm {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-sm {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-sm {
    margin-left: 4.5rem !important;
  }
  .pl-45-sm {
    padding-left: 4.5rem !important;
  }
  .mr-45-sm {
    margin-right: 4.5rem !important;
  }
  .pr-45-sm {
    padding-right: 4.5rem !important;
  }
  .mt-50-sm {
    margin-top: 5rem !important;
  }
  .pt-50-sm {
    padding-top: 5rem !important;
  }
  .mb-50-sm {
    margin-bottom: 5rem !important;
  }
  .pb-50-sm {
    padding-bottom: 5rem !important;
  }
  .ml-50-sm {
    margin-left: 5rem !important;
  }
  .pl-50-sm {
    padding-left: 5rem !important;
  }
  .mr-50-sm {
    margin-right: 5rem !important;
  }
  .pr-50-sm {
    padding-right: 5rem !important;
  }
  .mt-60-sm {
    margin-top: 6rem !important;
  }
  .pt-60-sm {
    padding-top: 6rem !important;
  }
  .mb-60-sm {
    margin-bottom: 6rem !important;
  }
  .pb-60-sm {
    padding-bottom: 6rem !important;
  }
  .ml-60-sm {
    margin-left: 6rem !important;
  }
  .pl-60-sm {
    padding-left: 6rem !important;
  }
  .mr-60-sm {
    margin-right: 6rem !important;
  }
  .pr-60-sm {
    padding-right: 6rem !important;
  }
  .mt-70-sm {
    margin-top: 7rem !important;
  }
  .pt-70-sm {
    padding-top: 7rem !important;
  }
  .mb-70-sm {
    margin-bottom: 7rem !important;
  }
  .pb-70-sm {
    padding-bottom: 7rem !important;
  }
  .ml-70-sm {
    margin-left: 7rem !important;
  }
  .pl-70-sm {
    padding-left: 7rem !important;
  }
  .mr-70-sm {
    margin-right: 7rem !important;
  }
  .pr-70-sm {
    padding-right: 7rem !important;
  }
  .mt-80-sm {
    margin-top: 8rem !important;
  }
  .pt-80-sm {
    padding-top: 8rem !important;
  }
  .mb-80-sm {
    margin-bottom: 8rem !important;
  }
  .pb-80-sm {
    padding-bottom: 8rem !important;
  }
  .ml-80-sm {
    margin-left: 8rem !important;
  }
  .pl-80-sm {
    padding-left: 8rem !important;
  }
  .mr-80-sm {
    margin-right: 8rem !important;
  }
  .pr-80-sm {
    padding-right: 8rem !important;
  }
  .mt-100-sm {
    margin-top: 10rem !important;
  }
  .pt-100-sm {
    padding-top: 10rem !important;
  }
  .mb-100-sm {
    margin-bottom: 10rem !important;
  }
  .pb-100-sm {
    padding-bottom: 10rem !important;
  }
  .ml-100-sm {
    margin-left: 10rem !important;
  }
  .pl-100-sm {
    padding-left: 10rem !important;
  }
  .mr-100-sm {
    margin-right: 10rem !important;
  }
  .pr-100-sm {
    padding-right: 10rem !important;
  }
}
/*header
-----------------------------------------------------*/
.main_v .main_img img {
  width: 100%;
  border-bottom-right-radius: clamp(80px, 12.653px + 17.959vw, 300px);
  border-bottom-left-radius: clamp(80px, 12.653px + 17.959vw, 300px);
}
.main_v .main_feature {
  position: relative;
  width: 78.75%;
  margin: 0 auto;
  margin-top: -9.0625%;
  right: 0;
  left: 0;
}
@media (max-width: 767px) {
  .main_v .main_feature {
    width: 96%;
  }
}
.main_v .main_feature li {
  width: 30.3968253968%;
}
@media (max-width: 767px) {
  .main_v .main_feature li {
    width: 31.3888888889%;
  }
}

/*cv
-----------------------------------------------------*/
.cv {
  text-align: center;
  margin: 6rem 0 0;
}
@media (max-width: 767px) {
  .cv {
    margin: 4rem 0 0;
  }
}
.cv .mod-btn {
  font-size: clamp(20px, 18.163px + 0.49vw, 26px);
  color: #2454A9;
  background: #FFE730;
  margin: 1.5rem auto 1rem;
}
@media (max-width: 575px) {
  .cv-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1rem 1rem;
    margin: 0 !important;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
  }
  .cv-fixed .mod-btn {
    width: 80%;
    margin: 0 auto;
    font-size: 1.6rem;
    padding: 1rem 2rem;
  }
  .cv-fixed .sub {
    position: absolute;
    font-size: 1rem !important;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 0 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    z-index: 99999;
  }
  .cv-fixed .line-text {
    display: none;
  }
}

.camp {
  background: #0B398A;
  border-radius: 50px;
  width: 100vw;
  padding: 0 5% 6rem;
  margin: 8rem calc(50% - 50vw) 0;
}
@media (max-width: 767px) {
  .camp {
    margin: 4rem calc(50% - 50vw) 0;
  }
}
.camp-title {
  position: relative;
  text-align: center;
  padding: 6rem 0 4rem;
}
@media (max-width: 767px) {
  .camp-title {
    padding: 4rem 0 3rem;
  }
}
.camp-title .ja {
  font-size: clamp(20px, 16.939px + 0.816vw, 30px);
  line-height: 1.4;
  font-weight: bold;
  color: #FFE730;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.camp-title .en {
  position: absolute;
  bottom: -3vw;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(60px, 33.061px + 7.184vw, 148px);
  line-height: 1;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
  .camp-title .en {
    bottom: -4vw;
  }
}
.camp-list {
  display: flex;
  max-width: 860px;
  flex-direction: column;
  color: #333;
  background: #fff;
  border-radius: 20px;
  padding: 2rem 5rem 5rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .camp-list {
    padding: 1rem 2rem;
  }
}
.camp-list li {
  position: relative;
  font-size: clamp(16px, 14.163px + 0.49vw, 22px);
  font-weight: bold;
  padding: 2rem 0 2rem 2rem;
  text-indent: -3.2rem;
  border-bottom: 1px solid #dfdfdf;
}
.camp-list li:last-child {
  border-bottom: none;
}
@media (max-width: 767px) {
  .camp-list li {
    text-indent: -2.6rem;
  }
}
.camp-list li em {
  font-size: clamp(25px, 21.939px + 0.816vw, 35px);
}
.camp-list li::before {
  position: relative;
  content: "";
  display: inline-block;
  top: -1px;
  width: clamp(16px, 14.776px + 0.327vw, 20px);
  height: clamp(16px, 14.776px + 0.327vw, 20px);
  background: #2454A9;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 1.5rem;
}
@media (max-width: 767px) {
  .camp-list li::before {
    margin-right: 1rem;
  }
}

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

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

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

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

@media (max-width: 767px) {
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    padding: 0 2rem;
  }
}
.bg-blue {
  background: linear-gradient(90deg, rgb(36, 84, 169), rgb(56, 128, 255));
  color: #fff;
}
.bg-blue .h2-title01 {
  color: #fff;
}

.bg-gray {
  background: #f3f3f3;
}

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

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

/* ul */
.list-circle01 li {
  padding-left: 2rem;
  text-indent: -1.5rem;
}
.list-circle01 li:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #333;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 1rem;
}

/* table */
.tbl {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
@media (max-width: 767px) {
  .tbl {
    border-bottom: 1px solid #cccccc;
  }
}
.tbl th,
.tbl td {
  border: 1px solid #cccccc;
  padding: 2rem;
  font-size: clamp(14px, 13.388px + 0.163vw, 16px);
}
@media (max-width: 767px) {
  .tbl th,
  .tbl td {
    display: block;
    padding: 1rem;
    border-bottom: none;
  }
}
.tbl th {
  background: #f3f3f3;
}
@media (max-width: 767px) {
  .tbl th {
    text-align: left;
  }
}

/* h */
.h2-title01 {
  color: #2454A9;
  text-align: center;
  margin-bottom: clamp(40px, 36.939px + 0.816vw, 50px);
}
.h2-title01 h2 {
  font-size: clamp(24px, 19.102px + 1.306vw, 40px);
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-height: 1.5;
}
.h2-title01 .en {
  font-size: clamp(12px, 10.163px + 0.49vw, 18px);
  margin-top: 1.5rem;
}
.h2-title01 .sub {
  font-size: clamp(14px, 12.163px + 0.49vw, 20px);
  margin-bottom: 0.5rem;
}

.h2-title02 {
  position: relative;
  color: #2454A9;
  text-align: center;
  margin-bottom: clamp(40px, 36.939px + 0.816vw, 50px);
}
.h2-title02 h2 {
  font-size: clamp(24px, 19.102px + 1.306vw, 40px);
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-height: 1.6;
}
.h2-title02 .en {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  font-size: clamp(70px, 54.694px + 4.082vw, 120px);
  font-weight: 700;
  line-height: 1;
  color: #E7F0FF;
  white-space: nowrap;
  z-index: -1;
}

h3.h3-title01 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 2rem;
  font-size: clamp(20px, 16.327px + 0.98vw, 32px);
  line-height: 1.5;
  text-align: center;
  color: #2454A9;
  margin: clamp(60px, 53.878px + 1.633vw, 80px) 0 clamp(30px, 26.939px + 0.816vw, 40px);
  word-break: keep-all;
  overflow-wrap: anywhere;
}
h3.h3-title01::before, h3.h3-title01::after {
  content: "";
  width: 40px;
  height: 1px;
  background: #2454A9;
}
h3.h3-title02 {
  text-align: center;
  font-size: clamp(20px, 16.327px + 0.98vw, 32px);
  line-height: 1.5;
  color: #2454A9;
  margin-bottom: clamp(30px, 26.939px + 0.816vw, 40px);
}

/* tab */
.tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 0;
}
.tab li {
  width: 48%;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .tab li {
    width: 100%;
  }
}
.tab li a {
  position: relative;
  display: block;
  color: #fff;
  font-size: clamp(16px, 14.776px + 0.327vw, 20px);
  line-height: 1.5;
  text-decoration: none;
  background: #2454A9;
  padding: 2rem;
}
.tab li a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 2rem;
  width: 11px;
  height: 11px;
  border: 1px solid #fff;
  border-left: 0;
  border-bottom: 0;
  transform: translateY(-25%) rotate(135deg);
  margin-left: 1rem;
}
.tab li a .sub {
  font-size: clamp(14px, 12.776px + 0.327vw, 18px);
}
.tab li:last-child a {
  background: #0B9BCB;
}

/* btn */
.mod-btn {
  display: block;
  text-align: center;
  max-width: 600px;
  font-size: clamp(16px, 14.776px + 0.327vw, 20px);
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  background: #2454A9;
  border-radius: 100px;
  padding: 3rem 5rem;
}
@media (max-width: 767px) {
  .mod-btn {
    width: 100%;
    padding: 1.5rem 3rem;
  }
}

/*section
-----------------------------------------------------*/
.sec {
  padding: 12rem 0;
}
@media (max-width: 767px) {
  .sec {
    padding: 7rem 0;
  }
}

.location-sec {
  padding-bottom: 0;
}
.location-sec .location-box {
  text-align: center;
  padding: 3rem;
  border: 5px solid #E7F0FF;
  border-radius: 20px;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media (max-width: 767px) {
  .location-sec .location-box {
    padding: 2rem;
  }
}

.skill-sec {
  background: url(../images/skill_bg.jpg) no-repeat top center/cover;
}
.skill-sec .skill_problem {
  gap: 3rem 4rem;
  margin: 4rem 0;
}
@media (max-width: 923px) {
  .skill-sec .skill_problem .skill_problem__img {
    order: 2;
    width: 100%;
    text-align: center;
  }
}
.skill-sec .skill_problem .skill_problem__img img {
  max-width: 288px;
  aspect-ratio: 289/368;
}
@media (max-width: 923px) {
  .skill-sec .skill_problem .skill_problem__img img {
    max-width: 250px;
    aspect-ratio: 21/25;
  }
}
.skill-sec .skill_problem .skill_problem__list {
  flex-direction: column;
  gap: 2rem 0;
}
@media (max-width: 767px) {
  .skill-sec .skill_problem .skill_problem__list {
    gap: 1rem 0;
    order: 1;
  }
}
.skill-sec .skill_problem .skill_problem__list li {
  color: #fff;
  width: fit-content;
  font-size: clamp(16px, 14.776px + 0.327vw, 20px);
  font-weight: bold;
  background: #2454A9;
  border-radius: 100px;
  padding: 1rem 2rem;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media (max-width: 767px) {
  .skill-sec .skill_problem .skill_problem__list li {
    width: 100%;
    text-align: center;
  }
}

.point-sec .point-list {
  margin-top: 9rem;
  gap: 7rem 0;
}
.point-sec .point-list .point-item {
  position: relative;
  width: 31.6666666667%;
  color: #333;
  background: #fff;
  border-radius: 20px;
  padding: 6rem 2.5% 3rem;
}
@media (max-width: 767px) {
  .point-sec .point-list .point-item {
    width: 100%;
    padding: 6rem 3rem 3rem;
  }
}
.point-sec .point-list .point-item .en {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 74px;
  height: 74px;
  color: #2454A9;
  background: #FFE730;
  font-size: 1rem;
  line-height: 1.4;
  border-radius: 50%;
  margin-top: -97px;
}
.point-sec .point-list .point-item .en .num {
  font-size: 3.8rem;
  line-height: 1;
}
.point-sec .point-list .point-item__title {
  font-size: clamp(20px, 19.388px + 0.163vw, 22px);
  line-height: 1.5;
  text-align: center;
  color: #2454A9;
  margin: 2rem 0;
}
.point-sec .point-list .point-item__img img {
  width: 100%;
}

.contents-sec .contents-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 6rem auto 0;
  max-width: 960px;
}
@media (max-width: 767px) {
  .contents-sec .contents-list {
    margin: 4rem auto 0;
  }
}
.contents-sec .contents-list dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #E7F0FF;
  border-radius: 20px;
  padding: 4rem;
}
@media (max-width: 767px) {
  .contents-sec .contents-list dl {
    padding: 2rem;
  }
}
.contents-sec .contents-list dl:nth-child(2) {
  background: #F4F8FF;
}
.contents-sec .contents-list dl dt {
  flex-shrink: 0;
  font-size: clamp(9px, 8.694px + 0.082vw, 10px);
  text-align: center;
  line-height: 1.4;
  color: #2454A9;
}
@media (max-width: 767px) {
  .contents-sec .contents-list dl dt {
    width: 100%;
  }
}
.contents-sec .contents-list dl dt .num {
  display: block;
  font-size: clamp(38px, 34.327px + 0.98vw, 50px);
  line-height: 1;
}
.contents-sec .contents-list dl dd {
  padding-left: 4rem;
  margin-left: 4rem;
  border-left: 1px solid #2454A9;
  flex: 1;
}
@media (max-width: 767px) {
  .contents-sec .contents-list dl dd {
    position: relative;
    border: none;
    padding: 0;
    margin: 2rem 0 0;
    width: 100%;
  }
  .contents-sec .contents-list dl dd::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 1px;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #2454A9;
  }
}
.contents-sec .contents-list dl dd h3 {
  font-size: clamp(20px, 16.939px + 0.816vw, 30px);
  list-style: 1.5;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .contents-sec .contents-list dl dd h3 {
    text-align: center;
  }
}
.contents-sec .course-block {
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .contents-sec .course-block {
    margin-top: 4rem;
  }
}
.contents-sec .course-block__inner {
  padding: 6rem 6.6666666667%;
  background: #E7F0FF;
}
@media (max-width: 767px) {
  .contents-sec .course-block__inner {
    padding: 3rem;
  }
}
.contents-sec .course-block hgroup {
  color: #fff;
  text-align: center;
  background: #2454A9;
  padding: 2rem;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}
@media (max-width: 767px) {
  .contents-sec .course-block hgroup {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }
}
.contents-sec .course-block hgroup .en {
  font-size: clamp(12px, 11.388px + 0.163vw, 14px);
}
.contents-sec .course-block hgroup h4 {
  font-size: clamp(18px, 15.551px + 0.653vw, 26px);
  line-height: 1.5;
}
.contents-sec .course-block#kaiyou .course-block__inner {
  background: #E3F8FF;
}
.contents-sec .course-block#kaiyou hgroup {
  background: #0B9BCB;
}
.contents-sec .course-block .course-content {
  gap: 5rem 0;
}
@media (max-width: 767px) {
  .contents-sec .course-block .course-content {
    gap: 3rem 0;
  }
}
.contents-sec .course-block .course-content__item {
  width: 47.5961538462%;
}
@media (max-width: 767px) {
  .contents-sec .course-block .course-content__item {
    width: 100%;
  }
  .contents-sec .course-block .course-content__item img {
    width: 100%;
  }
}
.contents-sec .course-block .course-content__item.last {
  position: relative;
  width: 100%;
}
.contents-sec .course-block .course-content__item.last .course-last__img,
.contents-sec .course-block .course-content__item.last .course-last__text {
  width: 47.5961538462%;
}
@media (max-width: 767px) {
  .contents-sec .course-block .course-content__item.last .course-last__img,
  .contents-sec .course-block .course-content__item.last .course-last__text {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .contents-sec .course-block .course-content__item.last .course-last__text {
    margin-top: 2rem;
  }
}
.contents-sec .course-block .course-content__item.last .course-last__text .en {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(11, 155, 203, 0.1);
}
@media (max-width: 767px) {
  .contents-sec .course-block .course-content__item.last .course-last__text .en {
    display: none;
  }
}

.reazon-sec {
  padding-bottom: 0;
}
.reazon-sec .oblique {
  font-size: clamp(18px, 13.714px + 1.143vw, 32px);
  line-height: 1.5;
  color: #fff;
  font-weight: bold;
  width: fit-content;
  padding: 0.5rem 1rem;
  transform: rotate(-5deg);
  background: #2454A9;
  margin: 0 auto 3rem;
}
.reazon-sec .reason-point-bg {
  position: relative;
  background: url(../images/reason_bg.jpg) no-repeat top center/cover;
  padding: 25rem 0 12rem;
}
@media (max-width: 767px) {
  .reazon-sec .reason-point-bg {
    padding: 14rem 0 7rem;
  }
}
.reazon-sec .reason-point-bg::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 4%;
  border-radius: 0 0 50% 50%/0 0 100% 100%;
  background: #fff;
}
@media (max-width: 767px) {
  .reazon-sec .reason-point-bg::before {
    height: 2%;
  }
}
.reazon-sec .reason-point {
  gap: 8rem 0;
}
@media (max-width: 767px) {
  .reazon-sec .reason-point {
    gap: 6rem 0;
  }
}
.reazon-sec .reason-point__item {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 5rem;
  background: #fff;
  gap: 3rem 0;
}
@media (max-width: 767px) {
  .reazon-sec .reason-point__item {
    padding: 5rem 3rem 3rem;
  }
}
.reazon-sec .reason-point__item .point-en {
  position: absolute;
  top: -37px;
  left: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 74px;
  height: 74px;
  color: #2454A9;
  background: #FFE730;
  font-size: 1rem;
  line-height: 1.4;
  border-radius: 50%;
}
.reazon-sec .reason-point__item .point-en .num {
  font-size: 3.8rem;
  line-height: 1;
}
.reazon-sec .reason-point__text {
  width: 51.1627906977%;
}
@media (max-width: 767px) {
  .reazon-sec .reason-point__text {
    width: 100%;
  }
}
.reazon-sec .reason-point__text hgroup {
  color: #2454A9;
}
.reazon-sec .reason-point__text hgroup .en {
  font-size: clamp(12px, 11.388px + 0.163vw, 14px);
  text-transform: capitalize;
}
.reazon-sec .reason-point__text hgroup h4 {
  font-size: clamp(18px, 16.776px + 0.327vw, 22px);
  margin-bottom: 2rem;
}
.reazon-sec .reason-point__text p {
  font-size: clamp(14px, 13.388px + 0.163vw, 16px);
}
.reazon-sec .reason-point__img {
  width: 43.023255814%;
}
@media (max-width: 767px) {
  .reazon-sec .reason-point__img {
    width: 100%;
  }
}

.voice-sec {
  /* slick */
}
.voice-sec .voice-box {
  gap: 5rem 0;
}
.voice-sec .voice-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #333;
  padding: 5rem;
  gap: 2rem 0;
  background: #fff;
}
@media (max-width: 767px) {
  .voice-sec .voice-item {
    padding: 3rem;
    margin: 1rem;
    padding-bottom: 32797px;
    margin-bottom: -32767px;
  }
}
.voice-sec .voice-item__img {
  width: 29.0697674419%;
}
@media (max-width: 767px) {
  .voice-sec .voice-item__img {
    width: 100%;
    text-align: center;
  }
}
.voice-sec .voice-item__text {
  width: 65.1162790698%;
}
@media (max-width: 767px) {
  .voice-sec .voice-item__text {
    width: 100%;
  }
}
.voice-sec .voice-item__text h3 {
  position: relative;
  font-size: clamp(20px, 18.776px + 0.327vw, 24px);
  line-height: 1.5;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 3px solid #cccccc;
}
.voice-sec .voice-item__text h3::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -3px;
  width: 80px;
  height: 3px;
  background: #2454A9;
}
.voice-sec .voice-item__text .word {
  color: #2454A9;
  font-weight: bold;
  font-size: clamp(16px, 15.388px + 0.163vw, 18px);
  margin-bottom: 2rem;
}
.voice-sec .voice-item__text p {
  font-size: clamp(14px, 13.388px + 0.163vw, 16px);
}
.voice-sec .vox-wrap {
  position: relative;
}
.voice-sec .arrow-box {
  position: absolute;
  width: 94%;
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.voice-sec .prev-arrow,
.voice-sec .next-arrow {
  display: block;
  width: 50px;
  height: 50px;
  background: url(../images/slide_arrow.png) no-repeat left top;
  background-size: 100% auto;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
.voice-sec .prev-arrow {
  transform: rotate(180deg);
}

.faq-sec .faq-box {
  gap: 1rem 0;
}
.faq-sec .faq-box .faq-item {
  width: 100%;
  color: #333;
  background: #fff;
}
.faq-sec .faq-box .question {
  font-size: clamp(14px, 12.163px + 0.49vw, 20px);
  font-weight: bold;
  display: flex;
  align-items: center;
  line-height: 1.5;
  padding: 3rem;
  cursor: pointer;
}
@media (max-width: 767px) {
  .faq-sec .faq-box .question {
    padding: 2rem;
  }
}
.faq-sec .faq-box .question::before {
  content: "Q";
  font-family: "Josefin Sans", serif;
  font-weight: 700;
  font-size: clamp(22px, 18.02px + 1.061vw, 35px);
  color: #2454A9;
  background: #FFE730;
  padding-top: 0.5rem;
  margin-right: 2rem;
  width: clamp(35px, 28.878px + 1.633vw, 55px);
  height: clamp(35px, 28.878px + 1.633vw, 55px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .faq-sec .faq-box .question::before {
    margin-right: 1rem;
  }
}
.faq-sec .faq-box .question .icon-plus {
  position: relative;
  margin-left: auto;
  width: 27px;
  height: 27px;
}
@media (max-width: 767px) {
  .faq-sec .faq-box .question .icon-plus {
    width: 18px;
    height: 18px;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.faq-sec .faq-box .question .icon-plus::before, .faq-sec .faq-box .question .icon-plus::after {
  position: absolute;
  content: "";
  top: 13px;
  width: 27px;
  height: 2px;
  background: #2454A9;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .faq-sec .faq-box .question .icon-plus::before, .faq-sec .faq-box .question .icon-plus::after {
    width: 18px;
    top: 9px;
  }
}
.faq-sec .faq-box .question .icon-plus::after {
  transform: rotate(90deg);
}
.faq-sec .faq-box .question.open .icon-plus::after {
  transform: rotate(0deg);
}
.faq-sec .faq-box .answer {
  display: none;
  padding: 0 3rem 3rem;
  font-size: clamp(14px, 13.388px + 0.163vw, 16px);
}
@media (max-width: 767px) {
  .faq-sec .faq-box .answer {
    padding: 0 2rem 2rem;
  }
}

.store-sec .open-time {
  width: fit-content;
  padding: 2rem 4rem;
  margin: 0 auto 2rem;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}
.store-sec .store-list {
  margin-top: 6rem;
  gap: 2rem 1.6666666667%;
}
@media (max-width: 767px) {
  .store-sec .store-list {
    margin-top: 4rem;
  }
}
@media (max-width: 575px) {
  .store-sec .store-list {
    justify-content: space-between;
    gap: 1rem 0;
  }
}
.store-sec .store-list dl {
  width: 23.75%;
  text-align: center;
  font-weight: bold;
  padding: 3rem 2rem;
  background: #fff;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}
@media (max-width: 790px) {
  .store-sec .store-list dl {
    width: 33%;
  }
}
@media (max-width: 575px) {
  .store-sec .store-list dl {
    width: 48%;
    padding: 2rem 1rem;
  }
}
.store-sec .store-list dl a {
  display: block;
  color: #333;
  text-decoration: none;
}
.store-sec .store-list dl dt {
  position: relative;
  font-size: clamp(14px, 13.388px + 0.163vw, 16px);
}
.store-sec .store-list dl dt::before, .store-sec .store-list dl dt::after {
  position: absolute;
  content: "";
}
.store-sec .store-list dl dt::before {
  width: 9px;
  height: 9px;
  border: 1px solid #333;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  top: 50%;
  right: -1.5px;
  box-sizing: border-box;
}
.store-sec .store-list dl dt::after {
  top: calc(50% - 0.5px);
  right: 0;
  color: #333;
  width: 12px;
  height: 1px;
  background: #333;
}
.store-sec .store-list dl dd {
  font-size: clamp(18px, 16.776px + 0.327vw, 22px);
}

/*footer
-----------------------------------------------------*/
footer {
  text-align: center;
  padding: 6rem 5%;
}
footer .pup {
  display: block;
  text-decoration: none;
  margin-bottom: 3rem;
}
footer .pup .icon {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 auto;
  background: #2454A9;
}
footer .pup .icon::before, footer .pup .icon::after {
  position: absolute;
  content: "";
}
footer .pup .icon::before {
  width: 9px;
  height: 9px;
  border: 1px solid #fff;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(-45deg);
  transform-origin: top right;
  top: 30%;
  right: 50%;
  box-sizing: border-box;
}
footer .pup .icon::after {
  top: calc(30% + 1.5px);
  right: calc(50% - 0.5px);
  color: #333;
  width: 1px;
  height: 18px;
  background: #fff;
}
footer .pup .en {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}
footer .footer-logo {
  max-width: 180px;
  margin: 0 auto 3rem;
}
footer .copy {
  font-size: clamp(10px, 9.388px + 0.163vw, 12px);
}/*# sourceMappingURL=style.css.map */