@charset "UTF-8";
/* font
-----------------------------------------------------*/
/* sans-serif */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2"), url("../fonts/NotoSansJP-Regular.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: bold;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/NotoSansJP-Bold.woff2") format("woff2"), url("../fonts/NotoSansJP-Bold.woff") format("woff");
}
/* 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;
}

* {
  box-sizing: border-box;
}

/* html
-----------------------------------------------------*/
:root {
  interpolate-size: allow-keywords;
}

html {
  overflow: auto;
  font-size: 62.5%;
  scroll-padding-top: 105px;
  scroll-behavior: smooth;
}

body {
  color: #333;
  /*font: 1.6rem/1.8 YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;*/
  font: clamp(14px, 13.388px + 0.163vw, 16px)/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;
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

/* link
-----------------------------------------------------*/
a {
  color: #004CD0;
}
a:hover, a:active, a:focus {
  color: rgb(106, 160.4423076923, 255);
}
a {
  transition: 0.3s linear;
}

a[href*="tel:"] {
  color: #333;
  text-decoration: none;
  pointer-events: none;
}
@media (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
  }
}

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

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

.flex-shrink {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.round-img {
  border-radius: 10px;
}

ol {
  padding-left: 1em;
}

.float-l {
  float: left;
}

.float-r {
  float: right;
}

.en {
  font-family: "EB Garamond", 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;
}
.disc-list.list-blue {
  color: #004CD0;
}

.roman-list {
  list-style-type: lower-roman;
  padding-left: 1.5em;
}

.auto-phrase {
  word-break: auto-phrase;
}

.color-main {
  color: #004CD0 !important;
}

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

.color-red01 {
  color: #BF0000 !important;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

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

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

.m-auto {
  margin-right: auto;
  margin-left: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {
  .mt-0-xl {
    margin-top: 0rem !important;
  }
  .pt-0-xl {
    padding-top: 0rem !important;
  }
  .mb-0-xl {
    margin-bottom: 0rem !important;
  }
  .pb-0-xl {
    padding-bottom: 0rem !important;
  }
  .ml-0-xl {
    margin-left: 0rem !important;
  }
  .pl-0-xl {
    padding-left: 0rem !important;
  }
  .mr-0-xl {
    margin-right: 0rem !important;
  }
  .pr-0-xl {
    padding-right: 0rem !important;
  }
  .mt-10-xl {
    margin-top: 1rem !important;
  }
  .pt-10-xl {
    padding-top: 1rem !important;
  }
  .mb-10-xl {
    margin-bottom: 1rem !important;
  }
  .pb-10-xl {
    padding-bottom: 1rem !important;
  }
  .ml-10-xl {
    margin-left: 1rem !important;
  }
  .pl-10-xl {
    padding-left: 1rem !important;
  }
  .mr-10-xl {
    margin-right: 1rem !important;
  }
  .pr-10-xl {
    padding-right: 1rem !important;
  }
  .mt-15-xl {
    margin-top: 1.5rem !important;
  }
  .pt-15-xl {
    padding-top: 1.5rem !important;
  }
  .mb-15-xl {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-xl {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-xl {
    margin-left: 1.5rem !important;
  }
  .pl-15-xl {
    padding-left: 1.5rem !important;
  }
  .mr-15-xl {
    margin-right: 1.5rem !important;
  }
  .pr-15-xl {
    padding-right: 1.5rem !important;
  }
  .mt-20-xl {
    margin-top: 2rem !important;
  }
  .pt-20-xl {
    padding-top: 2rem !important;
  }
  .mb-20-xl {
    margin-bottom: 2rem !important;
  }
  .pb-20-xl {
    padding-bottom: 2rem !important;
  }
  .ml-20-xl {
    margin-left: 2rem !important;
  }
  .pl-20-xl {
    padding-left: 2rem !important;
  }
  .mr-20-xl {
    margin-right: 2rem !important;
  }
  .pr-20-xl {
    padding-right: 2rem !important;
  }
  .mt-25-xl {
    margin-top: 2.5rem !important;
  }
  .pt-25-xl {
    padding-top: 2.5rem !important;
  }
  .mb-25-xl {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-xl {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-xl {
    margin-left: 2.5rem !important;
  }
  .pl-25-xl {
    padding-left: 2.5rem !important;
  }
  .mr-25-xl {
    margin-right: 2.5rem !important;
  }
  .pr-25-xl {
    padding-right: 2.5rem !important;
  }
  .mt-30-xl {
    margin-top: 3rem !important;
  }
  .pt-30-xl {
    padding-top: 3rem !important;
  }
  .mb-30-xl {
    margin-bottom: 3rem !important;
  }
  .pb-30-xl {
    padding-bottom: 3rem !important;
  }
  .ml-30-xl {
    margin-left: 3rem !important;
  }
  .pl-30-xl {
    padding-left: 3rem !important;
  }
  .mr-30-xl {
    margin-right: 3rem !important;
  }
  .pr-30-xl {
    padding-right: 3rem !important;
  }
  .mt-35-xl {
    margin-top: 3.5rem !important;
  }
  .pt-35-xl {
    padding-top: 3.5rem !important;
  }
  .mb-35-xl {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-xl {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-xl {
    margin-left: 3.5rem !important;
  }
  .pl-35-xl {
    padding-left: 3.5rem !important;
  }
  .mr-35-xl {
    margin-right: 3.5rem !important;
  }
  .pr-35-xl {
    padding-right: 3.5rem !important;
  }
  .mt-40-xl {
    margin-top: 4rem !important;
  }
  .pt-40-xl {
    padding-top: 4rem !important;
  }
  .mb-40-xl {
    margin-bottom: 4rem !important;
  }
  .pb-40-xl {
    padding-bottom: 4rem !important;
  }
  .ml-40-xl {
    margin-left: 4rem !important;
  }
  .pl-40-xl {
    padding-left: 4rem !important;
  }
  .mr-40-xl {
    margin-right: 4rem !important;
  }
  .pr-40-xl {
    padding-right: 4rem !important;
  }
  .mt-45-xl {
    margin-top: 4.5rem !important;
  }
  .pt-45-xl {
    padding-top: 4.5rem !important;
  }
  .mb-45-xl {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-xl {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-xl {
    margin-left: 4.5rem !important;
  }
  .pl-45-xl {
    padding-left: 4.5rem !important;
  }
  .mr-45-xl {
    margin-right: 4.5rem !important;
  }
  .pr-45-xl {
    padding-right: 4.5rem !important;
  }
  .mt-50-xl {
    margin-top: 5rem !important;
  }
  .pt-50-xl {
    padding-top: 5rem !important;
  }
  .mb-50-xl {
    margin-bottom: 5rem !important;
  }
  .pb-50-xl {
    padding-bottom: 5rem !important;
  }
  .ml-50-xl {
    margin-left: 5rem !important;
  }
  .pl-50-xl {
    padding-left: 5rem !important;
  }
  .mr-50-xl {
    margin-right: 5rem !important;
  }
  .pr-50-xl {
    padding-right: 5rem !important;
  }
  .mt-60-xl {
    margin-top: 6rem !important;
  }
  .pt-60-xl {
    padding-top: 6rem !important;
  }
  .mb-60-xl {
    margin-bottom: 6rem !important;
  }
  .pb-60-xl {
    padding-bottom: 6rem !important;
  }
  .ml-60-xl {
    margin-left: 6rem !important;
  }
  .pl-60-xl {
    padding-left: 6rem !important;
  }
  .mr-60-xl {
    margin-right: 6rem !important;
  }
  .pr-60-xl {
    padding-right: 6rem !important;
  }
  .mt-70-xl {
    margin-top: 7rem !important;
  }
  .pt-70-xl {
    padding-top: 7rem !important;
  }
  .mb-70-xl {
    margin-bottom: 7rem !important;
  }
  .pb-70-xl {
    padding-bottom: 7rem !important;
  }
  .ml-70-xl {
    margin-left: 7rem !important;
  }
  .pl-70-xl {
    padding-left: 7rem !important;
  }
  .mr-70-xl {
    margin-right: 7rem !important;
  }
  .pr-70-xl {
    padding-right: 7rem !important;
  }
  .mt-80-xl {
    margin-top: 8rem !important;
  }
  .pt-80-xl {
    padding-top: 8rem !important;
  }
  .mb-80-xl {
    margin-bottom: 8rem !important;
  }
  .pb-80-xl {
    padding-bottom: 8rem !important;
  }
  .ml-80-xl {
    margin-left: 8rem !important;
  }
  .pl-80-xl {
    padding-left: 8rem !important;
  }
  .mr-80-xl {
    margin-right: 8rem !important;
  }
  .pr-80-xl {
    padding-right: 8rem !important;
  }
  .mt-100-xl {
    margin-top: 10rem !important;
  }
  .pt-100-xl {
    padding-top: 10rem !important;
  }
  .mb-100-xl {
    margin-bottom: 10rem !important;
  }
  .pb-100-xl {
    padding-bottom: 10rem !important;
  }
  .ml-100-xl {
    margin-left: 10rem !important;
  }
  .pl-100-xl {
    padding-left: 10rem !important;
  }
  .mr-100-xl {
    margin-right: 10rem !important;
  }
  .pr-100-xl {
    padding-right: 10rem !important;
  }
}
@media (max-width: 1023px) {
  .mt-0-lg {
    margin-top: 0rem !important;
  }
  .pt-0-lg {
    padding-top: 0rem !important;
  }
  .mb-0-lg {
    margin-bottom: 0rem !important;
  }
  .pb-0-lg {
    padding-bottom: 0rem !important;
  }
  .ml-0-lg {
    margin-left: 0rem !important;
  }
  .pl-0-lg {
    padding-left: 0rem !important;
  }
  .mr-0-lg {
    margin-right: 0rem !important;
  }
  .pr-0-lg {
    padding-right: 0rem !important;
  }
  .mt-10-lg {
    margin-top: 1rem !important;
  }
  .pt-10-lg {
    padding-top: 1rem !important;
  }
  .mb-10-lg {
    margin-bottom: 1rem !important;
  }
  .pb-10-lg {
    padding-bottom: 1rem !important;
  }
  .ml-10-lg {
    margin-left: 1rem !important;
  }
  .pl-10-lg {
    padding-left: 1rem !important;
  }
  .mr-10-lg {
    margin-right: 1rem !important;
  }
  .pr-10-lg {
    padding-right: 1rem !important;
  }
  .mt-15-lg {
    margin-top: 1.5rem !important;
  }
  .pt-15-lg {
    padding-top: 1.5rem !important;
  }
  .mb-15-lg {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-lg {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-lg {
    margin-left: 1.5rem !important;
  }
  .pl-15-lg {
    padding-left: 1.5rem !important;
  }
  .mr-15-lg {
    margin-right: 1.5rem !important;
  }
  .pr-15-lg {
    padding-right: 1.5rem !important;
  }
  .mt-20-lg {
    margin-top: 2rem !important;
  }
  .pt-20-lg {
    padding-top: 2rem !important;
  }
  .mb-20-lg {
    margin-bottom: 2rem !important;
  }
  .pb-20-lg {
    padding-bottom: 2rem !important;
  }
  .ml-20-lg {
    margin-left: 2rem !important;
  }
  .pl-20-lg {
    padding-left: 2rem !important;
  }
  .mr-20-lg {
    margin-right: 2rem !important;
  }
  .pr-20-lg {
    padding-right: 2rem !important;
  }
  .mt-25-lg {
    margin-top: 2.5rem !important;
  }
  .pt-25-lg {
    padding-top: 2.5rem !important;
  }
  .mb-25-lg {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-lg {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-lg {
    margin-left: 2.5rem !important;
  }
  .pl-25-lg {
    padding-left: 2.5rem !important;
  }
  .mr-25-lg {
    margin-right: 2.5rem !important;
  }
  .pr-25-lg {
    padding-right: 2.5rem !important;
  }
  .mt-30-lg {
    margin-top: 3rem !important;
  }
  .pt-30-lg {
    padding-top: 3rem !important;
  }
  .mb-30-lg {
    margin-bottom: 3rem !important;
  }
  .pb-30-lg {
    padding-bottom: 3rem !important;
  }
  .ml-30-lg {
    margin-left: 3rem !important;
  }
  .pl-30-lg {
    padding-left: 3rem !important;
  }
  .mr-30-lg {
    margin-right: 3rem !important;
  }
  .pr-30-lg {
    padding-right: 3rem !important;
  }
  .mt-35-lg {
    margin-top: 3.5rem !important;
  }
  .pt-35-lg {
    padding-top: 3.5rem !important;
  }
  .mb-35-lg {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-lg {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-lg {
    margin-left: 3.5rem !important;
  }
  .pl-35-lg {
    padding-left: 3.5rem !important;
  }
  .mr-35-lg {
    margin-right: 3.5rem !important;
  }
  .pr-35-lg {
    padding-right: 3.5rem !important;
  }
  .mt-40-lg {
    margin-top: 4rem !important;
  }
  .pt-40-lg {
    padding-top: 4rem !important;
  }
  .mb-40-lg {
    margin-bottom: 4rem !important;
  }
  .pb-40-lg {
    padding-bottom: 4rem !important;
  }
  .ml-40-lg {
    margin-left: 4rem !important;
  }
  .pl-40-lg {
    padding-left: 4rem !important;
  }
  .mr-40-lg {
    margin-right: 4rem !important;
  }
  .pr-40-lg {
    padding-right: 4rem !important;
  }
  .mt-45-lg {
    margin-top: 4.5rem !important;
  }
  .pt-45-lg {
    padding-top: 4.5rem !important;
  }
  .mb-45-lg {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-lg {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-lg {
    margin-left: 4.5rem !important;
  }
  .pl-45-lg {
    padding-left: 4.5rem !important;
  }
  .mr-45-lg {
    margin-right: 4.5rem !important;
  }
  .pr-45-lg {
    padding-right: 4.5rem !important;
  }
  .mt-50-lg {
    margin-top: 5rem !important;
  }
  .pt-50-lg {
    padding-top: 5rem !important;
  }
  .mb-50-lg {
    margin-bottom: 5rem !important;
  }
  .pb-50-lg {
    padding-bottom: 5rem !important;
  }
  .ml-50-lg {
    margin-left: 5rem !important;
  }
  .pl-50-lg {
    padding-left: 5rem !important;
  }
  .mr-50-lg {
    margin-right: 5rem !important;
  }
  .pr-50-lg {
    padding-right: 5rem !important;
  }
  .mt-60-lg {
    margin-top: 6rem !important;
  }
  .pt-60-lg {
    padding-top: 6rem !important;
  }
  .mb-60-lg {
    margin-bottom: 6rem !important;
  }
  .pb-60-lg {
    padding-bottom: 6rem !important;
  }
  .ml-60-lg {
    margin-left: 6rem !important;
  }
  .pl-60-lg {
    padding-left: 6rem !important;
  }
  .mr-60-lg {
    margin-right: 6rem !important;
  }
  .pr-60-lg {
    padding-right: 6rem !important;
  }
  .mt-70-lg {
    margin-top: 7rem !important;
  }
  .pt-70-lg {
    padding-top: 7rem !important;
  }
  .mb-70-lg {
    margin-bottom: 7rem !important;
  }
  .pb-70-lg {
    padding-bottom: 7rem !important;
  }
  .ml-70-lg {
    margin-left: 7rem !important;
  }
  .pl-70-lg {
    padding-left: 7rem !important;
  }
  .mr-70-lg {
    margin-right: 7rem !important;
  }
  .pr-70-lg {
    padding-right: 7rem !important;
  }
  .mt-80-lg {
    margin-top: 8rem !important;
  }
  .pt-80-lg {
    padding-top: 8rem !important;
  }
  .mb-80-lg {
    margin-bottom: 8rem !important;
  }
  .pb-80-lg {
    padding-bottom: 8rem !important;
  }
  .ml-80-lg {
    margin-left: 8rem !important;
  }
  .pl-80-lg {
    padding-left: 8rem !important;
  }
  .mr-80-lg {
    margin-right: 8rem !important;
  }
  .pr-80-lg {
    padding-right: 8rem !important;
  }
  .mt-100-lg {
    margin-top: 10rem !important;
  }
  .pt-100-lg {
    padding-top: 10rem !important;
  }
  .mb-100-lg {
    margin-bottom: 10rem !important;
  }
  .pb-100-lg {
    padding-bottom: 10rem !important;
  }
  .ml-100-lg {
    margin-left: 10rem !important;
  }
  .pl-100-lg {
    padding-left: 10rem !important;
  }
  .mr-100-lg {
    margin-right: 10rem !important;
  }
  .pr-100-lg {
    padding-right: 10rem !important;
  }
}
@media (max-width: 767px) {
  .mt-0-md {
    margin-top: 0rem !important;
  }
  .pt-0-md {
    padding-top: 0rem !important;
  }
  .mb-0-md {
    margin-bottom: 0rem !important;
  }
  .pb-0-md {
    padding-bottom: 0rem !important;
  }
  .ml-0-md {
    margin-left: 0rem !important;
  }
  .pl-0-md {
    padding-left: 0rem !important;
  }
  .mr-0-md {
    margin-right: 0rem !important;
  }
  .pr-0-md {
    padding-right: 0rem !important;
  }
  .mt-10-md {
    margin-top: 1rem !important;
  }
  .pt-10-md {
    padding-top: 1rem !important;
  }
  .mb-10-md {
    margin-bottom: 1rem !important;
  }
  .pb-10-md {
    padding-bottom: 1rem !important;
  }
  .ml-10-md {
    margin-left: 1rem !important;
  }
  .pl-10-md {
    padding-left: 1rem !important;
  }
  .mr-10-md {
    margin-right: 1rem !important;
  }
  .pr-10-md {
    padding-right: 1rem !important;
  }
  .mt-15-md {
    margin-top: 1.5rem !important;
  }
  .pt-15-md {
    padding-top: 1.5rem !important;
  }
  .mb-15-md {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-md {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-md {
    margin-left: 1.5rem !important;
  }
  .pl-15-md {
    padding-left: 1.5rem !important;
  }
  .mr-15-md {
    margin-right: 1.5rem !important;
  }
  .pr-15-md {
    padding-right: 1.5rem !important;
  }
  .mt-20-md {
    margin-top: 2rem !important;
  }
  .pt-20-md {
    padding-top: 2rem !important;
  }
  .mb-20-md {
    margin-bottom: 2rem !important;
  }
  .pb-20-md {
    padding-bottom: 2rem !important;
  }
  .ml-20-md {
    margin-left: 2rem !important;
  }
  .pl-20-md {
    padding-left: 2rem !important;
  }
  .mr-20-md {
    margin-right: 2rem !important;
  }
  .pr-20-md {
    padding-right: 2rem !important;
  }
  .mt-25-md {
    margin-top: 2.5rem !important;
  }
  .pt-25-md {
    padding-top: 2.5rem !important;
  }
  .mb-25-md {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-md {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-md {
    margin-left: 2.5rem !important;
  }
  .pl-25-md {
    padding-left: 2.5rem !important;
  }
  .mr-25-md {
    margin-right: 2.5rem !important;
  }
  .pr-25-md {
    padding-right: 2.5rem !important;
  }
  .mt-30-md {
    margin-top: 3rem !important;
  }
  .pt-30-md {
    padding-top: 3rem !important;
  }
  .mb-30-md {
    margin-bottom: 3rem !important;
  }
  .pb-30-md {
    padding-bottom: 3rem !important;
  }
  .ml-30-md {
    margin-left: 3rem !important;
  }
  .pl-30-md {
    padding-left: 3rem !important;
  }
  .mr-30-md {
    margin-right: 3rem !important;
  }
  .pr-30-md {
    padding-right: 3rem !important;
  }
  .mt-35-md {
    margin-top: 3.5rem !important;
  }
  .pt-35-md {
    padding-top: 3.5rem !important;
  }
  .mb-35-md {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-md {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-md {
    margin-left: 3.5rem !important;
  }
  .pl-35-md {
    padding-left: 3.5rem !important;
  }
  .mr-35-md {
    margin-right: 3.5rem !important;
  }
  .pr-35-md {
    padding-right: 3.5rem !important;
  }
  .mt-40-md {
    margin-top: 4rem !important;
  }
  .pt-40-md {
    padding-top: 4rem !important;
  }
  .mb-40-md {
    margin-bottom: 4rem !important;
  }
  .pb-40-md {
    padding-bottom: 4rem !important;
  }
  .ml-40-md {
    margin-left: 4rem !important;
  }
  .pl-40-md {
    padding-left: 4rem !important;
  }
  .mr-40-md {
    margin-right: 4rem !important;
  }
  .pr-40-md {
    padding-right: 4rem !important;
  }
  .mt-45-md {
    margin-top: 4.5rem !important;
  }
  .pt-45-md {
    padding-top: 4.5rem !important;
  }
  .mb-45-md {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-md {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-md {
    margin-left: 4.5rem !important;
  }
  .pl-45-md {
    padding-left: 4.5rem !important;
  }
  .mr-45-md {
    margin-right: 4.5rem !important;
  }
  .pr-45-md {
    padding-right: 4.5rem !important;
  }
  .mt-50-md {
    margin-top: 5rem !important;
  }
  .pt-50-md {
    padding-top: 5rem !important;
  }
  .mb-50-md {
    margin-bottom: 5rem !important;
  }
  .pb-50-md {
    padding-bottom: 5rem !important;
  }
  .ml-50-md {
    margin-left: 5rem !important;
  }
  .pl-50-md {
    padding-left: 5rem !important;
  }
  .mr-50-md {
    margin-right: 5rem !important;
  }
  .pr-50-md {
    padding-right: 5rem !important;
  }
  .mt-60-md {
    margin-top: 6rem !important;
  }
  .pt-60-md {
    padding-top: 6rem !important;
  }
  .mb-60-md {
    margin-bottom: 6rem !important;
  }
  .pb-60-md {
    padding-bottom: 6rem !important;
  }
  .ml-60-md {
    margin-left: 6rem !important;
  }
  .pl-60-md {
    padding-left: 6rem !important;
  }
  .mr-60-md {
    margin-right: 6rem !important;
  }
  .pr-60-md {
    padding-right: 6rem !important;
  }
  .mt-70-md {
    margin-top: 7rem !important;
  }
  .pt-70-md {
    padding-top: 7rem !important;
  }
  .mb-70-md {
    margin-bottom: 7rem !important;
  }
  .pb-70-md {
    padding-bottom: 7rem !important;
  }
  .ml-70-md {
    margin-left: 7rem !important;
  }
  .pl-70-md {
    padding-left: 7rem !important;
  }
  .mr-70-md {
    margin-right: 7rem !important;
  }
  .pr-70-md {
    padding-right: 7rem !important;
  }
  .mt-80-md {
    margin-top: 8rem !important;
  }
  .pt-80-md {
    padding-top: 8rem !important;
  }
  .mb-80-md {
    margin-bottom: 8rem !important;
  }
  .pb-80-md {
    padding-bottom: 8rem !important;
  }
  .ml-80-md {
    margin-left: 8rem !important;
  }
  .pl-80-md {
    padding-left: 8rem !important;
  }
  .mr-80-md {
    margin-right: 8rem !important;
  }
  .pr-80-md {
    padding-right: 8rem !important;
  }
  .mt-100-md {
    margin-top: 10rem !important;
  }
  .pt-100-md {
    padding-top: 10rem !important;
  }
  .mb-100-md {
    margin-bottom: 10rem !important;
  }
  .pb-100-md {
    padding-bottom: 10rem !important;
  }
  .ml-100-md {
    margin-left: 10rem !important;
  }
  .pl-100-md {
    padding-left: 10rem !important;
  }
  .mr-100-md {
    margin-right: 10rem !important;
  }
  .pr-100-md {
    padding-right: 10rem !important;
  }
}
@media (max-width: 575px) {
  .mt-0-sm {
    margin-top: 0rem !important;
  }
  .pt-0-sm {
    padding-top: 0rem !important;
  }
  .mb-0-sm {
    margin-bottom: 0rem !important;
  }
  .pb-0-sm {
    padding-bottom: 0rem !important;
  }
  .ml-0-sm {
    margin-left: 0rem !important;
  }
  .pl-0-sm {
    padding-left: 0rem !important;
  }
  .mr-0-sm {
    margin-right: 0rem !important;
  }
  .pr-0-sm {
    padding-right: 0rem !important;
  }
  .mt-10-sm {
    margin-top: 1rem !important;
  }
  .pt-10-sm {
    padding-top: 1rem !important;
  }
  .mb-10-sm {
    margin-bottom: 1rem !important;
  }
  .pb-10-sm {
    padding-bottom: 1rem !important;
  }
  .ml-10-sm {
    margin-left: 1rem !important;
  }
  .pl-10-sm {
    padding-left: 1rem !important;
  }
  .mr-10-sm {
    margin-right: 1rem !important;
  }
  .pr-10-sm {
    padding-right: 1rem !important;
  }
  .mt-15-sm {
    margin-top: 1.5rem !important;
  }
  .pt-15-sm {
    padding-top: 1.5rem !important;
  }
  .mb-15-sm {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-sm {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-sm {
    margin-left: 1.5rem !important;
  }
  .pl-15-sm {
    padding-left: 1.5rem !important;
  }
  .mr-15-sm {
    margin-right: 1.5rem !important;
  }
  .pr-15-sm {
    padding-right: 1.5rem !important;
  }
  .mt-20-sm {
    margin-top: 2rem !important;
  }
  .pt-20-sm {
    padding-top: 2rem !important;
  }
  .mb-20-sm {
    margin-bottom: 2rem !important;
  }
  .pb-20-sm {
    padding-bottom: 2rem !important;
  }
  .ml-20-sm {
    margin-left: 2rem !important;
  }
  .pl-20-sm {
    padding-left: 2rem !important;
  }
  .mr-20-sm {
    margin-right: 2rem !important;
  }
  .pr-20-sm {
    padding-right: 2rem !important;
  }
  .mt-25-sm {
    margin-top: 2.5rem !important;
  }
  .pt-25-sm {
    padding-top: 2.5rem !important;
  }
  .mb-25-sm {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-sm {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-sm {
    margin-left: 2.5rem !important;
  }
  .pl-25-sm {
    padding-left: 2.5rem !important;
  }
  .mr-25-sm {
    margin-right: 2.5rem !important;
  }
  .pr-25-sm {
    padding-right: 2.5rem !important;
  }
  .mt-30-sm {
    margin-top: 3rem !important;
  }
  .pt-30-sm {
    padding-top: 3rem !important;
  }
  .mb-30-sm {
    margin-bottom: 3rem !important;
  }
  .pb-30-sm {
    padding-bottom: 3rem !important;
  }
  .ml-30-sm {
    margin-left: 3rem !important;
  }
  .pl-30-sm {
    padding-left: 3rem !important;
  }
  .mr-30-sm {
    margin-right: 3rem !important;
  }
  .pr-30-sm {
    padding-right: 3rem !important;
  }
  .mt-35-sm {
    margin-top: 3.5rem !important;
  }
  .pt-35-sm {
    padding-top: 3.5rem !important;
  }
  .mb-35-sm {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-sm {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-sm {
    margin-left: 3.5rem !important;
  }
  .pl-35-sm {
    padding-left: 3.5rem !important;
  }
  .mr-35-sm {
    margin-right: 3.5rem !important;
  }
  .pr-35-sm {
    padding-right: 3.5rem !important;
  }
  .mt-40-sm {
    margin-top: 4rem !important;
  }
  .pt-40-sm {
    padding-top: 4rem !important;
  }
  .mb-40-sm {
    margin-bottom: 4rem !important;
  }
  .pb-40-sm {
    padding-bottom: 4rem !important;
  }
  .ml-40-sm {
    margin-left: 4rem !important;
  }
  .pl-40-sm {
    padding-left: 4rem !important;
  }
  .mr-40-sm {
    margin-right: 4rem !important;
  }
  .pr-40-sm {
    padding-right: 4rem !important;
  }
  .mt-45-sm {
    margin-top: 4.5rem !important;
  }
  .pt-45-sm {
    padding-top: 4.5rem !important;
  }
  .mb-45-sm {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-sm {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-sm {
    margin-left: 4.5rem !important;
  }
  .pl-45-sm {
    padding-left: 4.5rem !important;
  }
  .mr-45-sm {
    margin-right: 4.5rem !important;
  }
  .pr-45-sm {
    padding-right: 4.5rem !important;
  }
  .mt-50-sm {
    margin-top: 5rem !important;
  }
  .pt-50-sm {
    padding-top: 5rem !important;
  }
  .mb-50-sm {
    margin-bottom: 5rem !important;
  }
  .pb-50-sm {
    padding-bottom: 5rem !important;
  }
  .ml-50-sm {
    margin-left: 5rem !important;
  }
  .pl-50-sm {
    padding-left: 5rem !important;
  }
  .mr-50-sm {
    margin-right: 5rem !important;
  }
  .pr-50-sm {
    padding-right: 5rem !important;
  }
  .mt-60-sm {
    margin-top: 6rem !important;
  }
  .pt-60-sm {
    padding-top: 6rem !important;
  }
  .mb-60-sm {
    margin-bottom: 6rem !important;
  }
  .pb-60-sm {
    padding-bottom: 6rem !important;
  }
  .ml-60-sm {
    margin-left: 6rem !important;
  }
  .pl-60-sm {
    padding-left: 6rem !important;
  }
  .mr-60-sm {
    margin-right: 6rem !important;
  }
  .pr-60-sm {
    padding-right: 6rem !important;
  }
  .mt-70-sm {
    margin-top: 7rem !important;
  }
  .pt-70-sm {
    padding-top: 7rem !important;
  }
  .mb-70-sm {
    margin-bottom: 7rem !important;
  }
  .pb-70-sm {
    padding-bottom: 7rem !important;
  }
  .ml-70-sm {
    margin-left: 7rem !important;
  }
  .pl-70-sm {
    padding-left: 7rem !important;
  }
  .mr-70-sm {
    margin-right: 7rem !important;
  }
  .pr-70-sm {
    padding-right: 7rem !important;
  }
  .mt-80-sm {
    margin-top: 8rem !important;
  }
  .pt-80-sm {
    padding-top: 8rem !important;
  }
  .mb-80-sm {
    margin-bottom: 8rem !important;
  }
  .pb-80-sm {
    padding-bottom: 8rem !important;
  }
  .ml-80-sm {
    margin-left: 8rem !important;
  }
  .pl-80-sm {
    padding-left: 8rem !important;
  }
  .mr-80-sm {
    margin-right: 8rem !important;
  }
  .pr-80-sm {
    padding-right: 8rem !important;
  }
  .mt-100-sm {
    margin-top: 10rem !important;
  }
  .pt-100-sm {
    padding-top: 10rem !important;
  }
  .mb-100-sm {
    margin-bottom: 10rem !important;
  }
  .pb-100-sm {
    padding-bottom: 10rem !important;
  }
  .ml-100-sm {
    margin-left: 10rem !important;
  }
  .pl-100-sm {
    padding-left: 10rem !important;
  }
  .mr-100-sm {
    margin-right: 10rem !important;
  }
  .pr-100-sm {
    padding-right: 10rem !important;
  }
}
.gap-0 {
  gap: 0rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {
  .gap-0-xl {
    gap: 0rem !important;
  }
  .gap-10-xl {
    gap: 1rem !important;
  }
  .gap-15-xl {
    gap: 1.5rem !important;
  }
  .gap-20-xl {
    gap: 2rem !important;
  }
  .gap-25-xl {
    gap: 2.5rem !important;
  }
  .gap-30-xl {
    gap: 3rem !important;
  }
  .gap-35-xl {
    gap: 3.5rem !important;
  }
  .gap-40-xl {
    gap: 4rem !important;
  }
  .gap-45-xl {
    gap: 4.5rem !important;
  }
  .gap-50-xl {
    gap: 5rem !important;
  }
  .gap-60-xl {
    gap: 6rem !important;
  }
  .gap-70-xl {
    gap: 7rem !important;
  }
  .gap-80-xl {
    gap: 8rem !important;
  }
  .gap-100-xl {
    gap: 10rem !important;
  }
}
@media (max-width: 1023px) {
  .gap-0-lg {
    gap: 0rem !important;
  }
  .gap-10-lg {
    gap: 1rem !important;
  }
  .gap-15-lg {
    gap: 1.5rem !important;
  }
  .gap-20-lg {
    gap: 2rem !important;
  }
  .gap-25-lg {
    gap: 2.5rem !important;
  }
  .gap-30-lg {
    gap: 3rem !important;
  }
  .gap-35-lg {
    gap: 3.5rem !important;
  }
  .gap-40-lg {
    gap: 4rem !important;
  }
  .gap-45-lg {
    gap: 4.5rem !important;
  }
  .gap-50-lg {
    gap: 5rem !important;
  }
  .gap-60-lg {
    gap: 6rem !important;
  }
  .gap-70-lg {
    gap: 7rem !important;
  }
  .gap-80-lg {
    gap: 8rem !important;
  }
  .gap-100-lg {
    gap: 10rem !important;
  }
}
@media (max-width: 767px) {
  .gap-0-md {
    gap: 0rem !important;
  }
  .gap-10-md {
    gap: 1rem !important;
  }
  .gap-15-md {
    gap: 1.5rem !important;
  }
  .gap-20-md {
    gap: 2rem !important;
  }
  .gap-25-md {
    gap: 2.5rem !important;
  }
  .gap-30-md {
    gap: 3rem !important;
  }
  .gap-35-md {
    gap: 3.5rem !important;
  }
  .gap-40-md {
    gap: 4rem !important;
  }
  .gap-45-md {
    gap: 4.5rem !important;
  }
  .gap-50-md {
    gap: 5rem !important;
  }
  .gap-60-md {
    gap: 6rem !important;
  }
  .gap-70-md {
    gap: 7rem !important;
  }
  .gap-80-md {
    gap: 8rem !important;
  }
  .gap-100-md {
    gap: 10rem !important;
  }
}
@media (max-width: 575px) {
  .gap-0-sm {
    gap: 0rem !important;
  }
  .gap-10-sm {
    gap: 1rem !important;
  }
  .gap-15-sm {
    gap: 1.5rem !important;
  }
  .gap-20-sm {
    gap: 2rem !important;
  }
  .gap-25-sm {
    gap: 2.5rem !important;
  }
  .gap-30-sm {
    gap: 3rem !important;
  }
  .gap-35-sm {
    gap: 3.5rem !important;
  }
  .gap-40-sm {
    gap: 4rem !important;
  }
  .gap-45-sm {
    gap: 4.5rem !important;
  }
  .gap-50-sm {
    gap: 5rem !important;
  }
  .gap-60-sm {
    gap: 6rem !important;
  }
  .gap-70-sm {
    gap: 7rem !important;
  }
  .gap-80-sm {
    gap: 8rem !important;
  }
  .gap-100-sm {
    gap: 10rem !important;
  }
}
body.is-fixed {
  position: fixed;
  left: 0;
  width: 100%;
  overflow: hidden;
}

/*header
-----------------------------------------------------*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.5s ease;
  z-index: 999;
  border-top: 20px solid #fff;
}
@media (max-width: 1023px) {
  .header {
    height: 100px;
  }
}
@media (max-width: 575px) {
  .header {
    border-top: 10px solid #fff;
  }
}
.header.active {
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
  height: 130px;
  background: #fff;
  border: 0;
}
@media (max-width: 1023px) {
  .header.active {
    box-shadow: none;
    background: none;
    height: auto;
  }
}
.header.active .header-inner {
  padding: 2rem 6rem 0 0;
}
@media (max-width: 1195px) {
  .header.active .header-inner {
    padding: 4rem 4rem 0 0;
  }
}
@media (max-width: 1023px) {
  .header.active .header-inner {
    padding: 5rem 2rem;
  }
}
@media (max-width: 575px) {
  .header.active .header-inner {
    padding: 3rem 2rem;
  }
}
.header.hide-header {
  transform: translateY(-100%);
}
.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.header-logo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  vertical-align: middle;
  width: 345px;
  height: 120px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 0 0 20px 0;
  transition: all 0.5s ease;
}
@media (max-width: 1195px) {
  .header-logo {
    width: 230px;
  }
  .header-logo img {
    width: 180px;
  }
}
@media (max-width: 1023px) {
  .header-logo {
    height: 100px;
  }
}
@media (max-width: 575px) {
  .header-logo {
    width: 170px;
    height: 70px;
  }
  .header-logo img {
    width: 140px;
  }
}
.header-logo::after {
  position: absolute;
  content: "";
  top: 0px;
  right: -20px;
  width: 20px;
  height: 20px;
  background: url(../images/common/rounded_corners_w_01.svg) no-repeat top left/contain;
}
.header-logo a {
  display: flex;
  align-items: center;
}
.header .header-inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: end;
  margin-left: auto;
  gap: 1rem 0;
  transition: unset;
  padding: 4rem 6rem 0 0;
}
@media (max-width: 1195px) {
  .header .header-inner {
    padding: 4rem 4rem 0 0;
  }
}
@media (max-width: 1023px) {
  .header .header-inner {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    align-items: start;
    margin-left: 0;
    height: 100vh;
    padding: 0 3.75%;
    visibility: hidden;
    opacity: 0;
    padding: 5rem 2rem;
  }
}
@media (max-width: 1023px) and (max-width: 575px) {
  .header .header-inner {
    padding: 3rem 2rem;
    height: 100vh;
  }
}
@media (max-width: 1023px) {
  .header .header-inner.active {
    display: flex;
    flex-direction: column;
    justify-content: start;
    visibility: visible;
    opacity: 1;
    transition: all 0.5s ease;
  }
}
@media (max-width: 1023px) {
  .header .conver-nav {
    order: 2;
    height: 60px;
  }
  .header .conver-nav a {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .header .conver-nav {
    height: auto;
  }
  .header .conver-nav a {
    font-size: 1.3rem;
  }
}
.header .global-nav {
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 0 3rem;
}
@media (max-width: 1023px) {
  .header .global-nav {
    display: block;
    width: 100%;
  }
}
.header .global-nav > li {
  position: relative;
}
.header .global-nav > li > a {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0px 0px 40px rgb(255, 255, 255), 0px 0px 40px rgb(255, 255, 255);
}
@media (max-width: 1195px) {
  .header .global-nav > li > a {
    font-size: 1.5rem;
  }
}
@media (max-width: 1023px) {
  .header .global-nav > li > a {
    padding: 1rem 0;
    font-size: 1.8rem;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .header .global-nav > li > a {
    font-size: 1.5rem;
  }
}
.header .global-nav > li > a::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: inline-block;
  width: 0;
  height: 1px;
  background: #004CD0;
  transition: 0.2s ease;
}
@media (min-width: 1024px) {
  .header .global-nav > li > a:hover {
    opacity: 1;
  }
  .header .global-nav > li > a:hover::before {
    width: 100%;
  }
}
.header .global-nav .menu-item-has-children {
  position: relative;
}
.header .global-nav .menu-item-has-children.parent-link-none > a {
  pointer-events: none;
}
.header .global-nav .menu-item-has-children .accordion-btn {
  display: none;
  position: absolute;
  top: 10px;
  right: 0;
  line-height: 0;
  width: 40px;
  height: 40px;
}
@media (max-width: 890px) {
  .header .global-nav .menu-item-has-children .accordion-btn {
    display: block;
  }
}
.header .global-nav .menu-item-has-children .accordion-btn::before {
  position: absolute;
  content: "";
  top: 48%;
  left: 50%;
  color: #333;
  line-height: 1;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: translate(-50%, -50%) rotate(135deg);
  transition: all 0.5s ease;
}
.header .global-nav .menu-item-has-children .accordion-btn.active::before {
  top: 52%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header .global-nav .menu-item-has-children:last-child .sub-menu {
  right: 0;
}
.header .global-nav .menu-item-has-children .sub-menu {
  position: absolute;
  z-index: 9999;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
  min-width: 260px;
  background: #004CD0;
  transform: translateY(10px);
  padding: 2rem;
}
@media (max-width: 890px) {
  .header .global-nav .menu-item-has-children .sub-menu {
    display: none;
    position: static;
    max-width: none;
    width: 100%;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    background: #f3f3f3;
    padding: 0;
    transition: unset;
  }
}
.header .global-nav .menu-item-has-children .sub-menu a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 1.4rem;
  padding: 1rem;
}
@media (max-width: 890px) {
  .header .global-nav .menu-item-has-children .sub-menu a {
    color: #333;
    border-bottom: 1px solid #dfdfdf;
  }
}
@media (min-width: 891px) {
  .header .global-nav .menu-item-has-children:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}
.header .global-nav.menu-item-has-children:last-of-type .sub-menu {
  right: 0;
}

#js-overlay {
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  pointer-events: all;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}
#js-overlay.active {
  visibility: visible;
  opacity: 1;
}

/* hamburger-menu */
.hamburger {
  display: none;
  position: absolute;
  right: 40px;
  top: 40px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  text-align: center;
  border-radius: 50%;
  z-index: 10001;
  background: #004CD0;
}
@media (max-width: 1023px) {
  .hamburger {
    display: block;
  }
}
@media (max-width: 575px) {
  .hamburger {
    top: 20px;
    right: 20px;
  }
}
.hamburger span {
  display: block;
  position: absolute;
  width: 24px;
  height: 2px;
  left: 10px;
  background: #fff;
  transition: 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .hamburger span {
    width: 24px;
  }
}
.hamburger span:nth-child(1) {
  top: 16px;
}
.hamburger span:nth-child(2) {
  top: 26px;
}

/* open */
.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg);
  top: 21px;
}

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

.conver-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 40px;
  background: linear-gradient(90deg, #425ED0, #374EAC);
  border-radius: 100px;
}
@media (max-width: 1023px) {
  .conver-nav {
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .conver-nav {
    height: auto;
    background: none;
    border-radius: none;
    gap: 1rem;
  }
}
.conver-nav li {
  height: 100%;
}
.conver-nav li:not(:last-child) a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background-color: #fff;
}
@media (max-width: 575px) {
  .conver-nav li:not(:last-child) a::before {
    display: none;
  }
}
@media (max-width: 575px) {
  .conver-nav li {
    width: 80%;
    margin: 0 auto;
    height: auto;
  }
}
.conver-nav a {
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 0 2rem;
  height: 100%;
  box-sizing: border-box;
}
@media (max-width: 575px) {
  .conver-nav a {
    justify-content: center;
    font-size: 1.4rem;
    padding: 1.5rem 2rem;
    border-radius: 100px;
    background: linear-gradient(90deg, #425ED0, #374EAC);
  }
}

/*page-common
-----------------------------------------------------*/
.container-sm {
  max-width: 800px;
  padding: 0 4rem;
  margin: 0 auto;
}

.container-ex {
  padding: 0 4rem;
  margin: 0 auto;
}

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

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

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

.container-sm,
.container-md,
.container-ex,
.container-lg,
.container-xl {
  box-sizing: content-box;
}

@media (max-width: 575px) {
  .container-sm,
  .container-md,
  .container-ex,
  .container-lg,
  .container-xl {
    padding: 0 2rem;
  }
}
.bg-blue01 {
  background: #DFE9FB;
}

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

/* btn */
.c-btn {
  appearance: none;
  position: relative;
  display: inline-block;
  min-width: 280px;
  text-align: center;
  font-size: clamp(14px, 13.388px + 0.163vw, 16px);
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #425ED0, #374EAC);
  padding: 2rem 6rem 2rem 4rem;
  text-decoration: none;
  border-radius: 6px;
}
@media (max-width: 575px) {
  .c-btn {
    padding: 2rem 5rem 2rem 2rem;
  }
}
.c-btn::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 20px;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #00188F;
}
@media (max-width: 575px) {
  .c-btn::before {
    width: 26px;
    height: 26px;
    right: 10px;
  }
}
.c-btn .arrow {
  position: absolute;
  display: inline-block;
  top: calc(50% - 5px);
  right: 30px;
  width: 10px;
  height: 1px;
  margin: 4.3px 0;
  border-radius: 9999px;
  background-color: #fff;
}
@media (max-width: 575px) {
  .c-btn .arrow {
    width: 9px;
    right: 19px;
  }
}
.c-btn .arrow::before, .c-btn .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 7px;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 0.5px) 50%;
}
@media (max-width: 575px) {
  .c-btn .arrow::before, .c-btn .arrow::after {
    width: 6px;
  }
}
.c-btn .arrow::before {
  transform: rotate(45deg);
}
.c-btn .arrow::after {
  transform: rotate(-45deg);
}
.c-btn.btn-w {
  color: #004CD0;
  background: #fff;
}
.c-btn.btn-sm {
  min-width: 160px;
  padding: 0.5rem 4rem;
}
.c-btn.btn-lg {
  min-width: 395px;
  font-size: clamp(15px, 12.245px + 0.735vw, 24px);
}

.c-more {
  font-size: clamp(12px, 11.355px + 0.165vw, 14px);
  font-weight: 700;
  width: fit-content;
  color: #00188F;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.c-more .circle {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #00188F;
}
@media (max-width: 575px) {
  .c-more .circle {
    width: 30px;
    height: 30px;
  }
}
.c-more .arrow {
  position: absolute;
  display: inline-block;
  top: calc(50% - 5px);
  left: calc(50% - 5px);
  width: 10px;
  height: 1px;
  margin: 4.3px 0;
  border-radius: 9999px;
  background-color: #fff;
}
@media (max-width: 575px) {
  .c-more .arrow {
    width: 9px;
    left: calc(50% - 4px);
  }
}
.c-more .arrow::before, .c-more .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 7px;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 0.5px) 50%;
}
@media (max-width: 575px) {
  .c-more .arrow::before, .c-more .arrow::after {
    width: 6px;
  }
}
.c-more .arrow::before {
  transform: rotate(45deg);
}
.c-more .arrow::after {
  transform: rotate(-45deg);
}
.c-more.pos-top {
  position: absolute;
  top: 18%;
  right: 40px;
}
@media (max-width: 767px) {
  .c-more.pos-top {
    position: static;
    margin-top: 3rem;
  }
}

/*見出し*/
.section-heading01 {
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .section-heading01 {
    margin-bottom: 4rem;
  }
}
.section-heading01 .en {
  font-size: clamp(65px, 47.273px + 4.545vw, 120px);
  font-weight: 400;
  line-height: 1;
  color: #004CD0;
}
.section-heading01 h2 {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  font-size: clamp(17px, 16.033px + 0.248vw, 20px);
  gap: 1rem;
}
.section-heading01 h2::before {
  content: "";
  width: 16px;
  height: 2px;
  background: #004CD0;
}
.section-heading01.heading-w .en {
  color: #fff;
}
.section-heading01.heading-w h2 {
  color: #fff;
}
.section-heading01.heading-w h2::before {
  background: #fff;
}
.section-heading01.align-c h2 {
  margin: 0 auto;
}

.section-heading02 {
  text-align: center;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .section-heading02 {
    margin-bottom: 4rem;
  }
}
.section-heading02 .en {
  font-size: clamp(16px, 14.711px + 0.331vw, 20px);
  font-weight: 400;
  line-height: 1.4;
  color: #004CD0;
}
.section-heading02 h2 {
  font-size: clamp(30px, 25.488px + 1.157vw, 44px);
}
.section-heading02.heading-w .en {
  color: #fff;
}
.section-heading02.heading-w h2 {
  color: #fff;
}
.section-heading02.heading-w h2::before {
  background: #fff;
}
.section-heading02.align-c h2 {
  margin: 0 auto;
}

.section-heading03 {
  text-align: center;
  font-size: clamp(22px, 16.198px + 1.488vw, 40px);
  line-height: 1.4;
  margin-bottom: 5rem;
  word-break: keep-all;
}
@media (max-width: 767px) {
  .section-heading03 {
    margin-bottom: 4rem;
  }
}

.heading-2-02 {
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .heading-2-02 {
    margin-bottom: 3rem;
  }
}
.heading-2-02 .en {
  font-size: clamp(14px, 13.388px + 0.163vw, 16px);
  color: #004CD0;
  font-weight: 700;
}
.heading-2-02 .ja {
  font-size: clamp(22px, 19.551px + 0.653vw, 30px);
  word-break: auto-phrase;
  line-height: 1.4;
}

.heading-2-03 {
  margin-bottom: 4rem;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 2rem;
}
@media (max-width: 767px) {
  .heading-2-03 {
    margin-bottom: 3rem;
  }
}
.heading-2-03 .en {
  font-size: clamp(40px, 24.694px + 4.082vw, 90px);
  font-weight: 700;
  line-height: 1;
}
.heading-2-03 .en::first-letter {
  color: #004CD0;
}
.heading-2-03 .ja {
  font-size: clamp(16px, 14.776px + 0.327vw, 20px);
  word-break: auto-phrase;
}
.heading-2-03--white {
  color: #FFF;
}
.heading-2-03--white .en::first-letter {
  color: #FFF;
}

.heading-2-04 {
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .heading-2-04 {
    margin-bottom: 2rem;
  }
}
.heading-2-04 .en {
  font-size: clamp(14px, 13.388px + 0.163vw, 14px);
  color: #004CD0;
}
.heading-2-04 .en::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 1px;
  background-color: #004CD0;
  vertical-align: middle;
  margin: 0 0.5rem 0.3rem 0;
}
.heading-2-04 .en::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 1px;
  background-color: #004CD0;
  vertical-align: middle;
  margin: 0 0 0.3rem 0.5rem;
}
.heading-2-04 .ja {
  font-size: clamp(22px, 19.551px + 0.653vw, 30px);
  word-break: auto-phrase;
  line-height: 1.4;
}

.heading-2-05 {
  font-size: clamp(16px, 15.388px + 0.163vw, 18px);
  color: #004CD0;
  border-bottom: 2px solid #004CD0;
  padding-bottom: 1rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .heading-2-05 {
    margin-bottom: 3rem;
  }
}

.heading-2-06 {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.4;
  padding-bottom: 1rem;
  border-bottom: 3px solid #dfdfdf;
  margin: 6rem 0 4rem;
  word-break: auto-phrase;
}
@media (max-width: 767px) {
  .heading-2-06 {
    margin: 5rem 0 3rem;
  }
}
.heading-2-06::before {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 0;
  width: 100px;
  height: 3px;
  background: #004CD0;
}
.heading-2-06 strong {
  font-size: clamp(22px, 21.388px + 0.163vw, 24px);
  margin-right: 5px;
}

.heading-3-01 {
  font-size: clamp(20px, 18.776px + 0.327vw, 24px);
  line-height: 1.6;
  margin: 6rem 0 3rem;
}
@media (max-width: 767px) {
  .heading-3-01 {
    margin: 4rem 0 2.5rem;
  }
}
.heading-3-01:first-letter {
  color: #004CD0;
}
.heading-3-01.f-letter-none:first-letter {
  color: none;
}
.heading-3-01.u-border {
  padding-bottom: 1rem;
  border-bottom: 1px solid #004CD0;
}

.heading-3-02 {
  font-size: clamp(16px, 15.388px + 0.163vw, 18px);
  color: #004CD0;
  border-bottom: 2px solid #004CD0;
  padding-bottom: 1rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .heading-3-02 {
    margin-bottom: 3rem;
  }
}
.heading-3-02 strong {
  font-size: clamp(22px, 15.388px + 0.163vw, 24px);
  margin-right: 10px;
}

.c-h4-01 {
  font-size: clamp(18px, 16.066px + 0.496vw, 24px);
  line-height: 1.6;
  border-bottom: 1px solid #333;
  padding-bottom: 0.5rem;
  margin: 5rem 0 3rem;
}
@media (max-width: 767px) {
  .c-h4-01 {
    margin: 3rem 0 2.5rem;
  }
}

.heading-2-02 + h3 {
  margin-top: 0;
}

.page-header {
  position: relative;
  background: url(../images/common/page_title_bg.jpg) no-repeat center/cover;
  margin: 2rem 2rem 0 9.375%;
  height: 500px;
  border-radius: 20px;
}
@media (max-width: 1023px) {
  .page-header {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .page-header {
    margin: 2rem 2rem 0 2rem;
  }
}
@media (max-width: 575px) {
  .page-header {
    margin: 1rem 1rem 0 1rem;
    height: 300px;
  }
}
.page-header::after {
  position: absolute;
  content: "";
  top: 120px;
  left: 0;
  width: 20px;
  height: 20px;
  background: url(../images/common/rounded_corners_w_01.svg) no-repeat top left/contain;
}
@media (max-width: 1023px) {
  .page-header::after {
    top: 100px;
  }
}
@media (max-width: 575px) {
  .page-header::after {
    top: 70px;
  }
}
.page-header .page-title {
  position: absolute;
  bottom: 0;
  width: fit-content;
  padding: 3rem 6rem 0 0;
  background: #fff;
  border-radius: 0 30px 0 0;
}
@media (max-width: 575px) {
  .page-header .page-title {
    padding: 2rem 3rem 0 1rem;
    border-radius: 0 20px 0 0;
  }
}
.page-header .page-title .en {
  font-size: clamp(50px, 27.438px + 5.785vw, 120px);
  line-height: 1;
  color: #004CD0;
  margin-bottom: 1rem;
}
.page-header .page-title h1 {
  font-size: clamp(16px, 14.711px + 0.331vw, 20px);
  line-height: 1.4;
}
.page-header .title-bg {
  position: absolute;
  bottom: -6%;
  right: 0;
  font-size: clamp(50px, 40.816px + 2.449vw, 80px);
  font-weight: 700;
  line-height: 1;
  color: #f3f3f3;
}
@media (max-width: 575px) {
  .page-header .title-bg {
    display: none;
  }
}

/*パンくず*/
.breadcrumb {
  position: relative;
  font-size: clamp(10px, 9.388px + 0.163vw, 12px);
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .breadcrumb {
    margin-top: 3rem;
  }
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.breadcrumb a {
  color: #333;
  text-decoration: none;
}
.breadcrumb-space {
  display: inline-block;
  line-height: 1;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #004CD0;
}

.cat-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .cat-list {
    margin-bottom: 3rem;
  }
}
.cat-list li a {
  display: block;
  width: fit-content;
  font-size: clamp(10px, 8.711px + 0.331vw, 14px);
  color: #004CD0;
  text-decoration: none;
  padding: 0.5rem 2rem;
  border: 1px solid #004CD0;
  border-radius: 100px;
}
.cat-list li.active a,
.cat-list li a:hover {
  color: #fff;
  background: #004CD0;
  opacity: 1;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 2%;
}
@media (max-width: 767px) {
  .card-list {
    justify-content: space-between;
  }
}
.card-list .card-item {
  width: 23.5%;
  background: #fff;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #333;
}
@media (max-width: 767px) {
  .card-list .card-item {
    width: 48%;
  }
}
.card-list .card-item img {
  aspect-ratio: 3/2;
  width: 100%;
  object-fit: cover;
}
.card-list .card-item__text {
  padding: 2rem;
}
@media (max-width: 575px) {
  .card-list .card-item__text {
    padding: 1rem;
  }
}
.card-list .card-item__info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.card-list .card-item__info .date {
  font-size: clamp(10px, 8.711px + 0.331vw, 14px);
}
.card-list .card-item__info .cat {
  font-size: clamp(9px, 8.033px + 0.248vw, 12px);
  color: #004CD0;
  border: 1px solid #004CD0;
  padding: 0.05rem 1rem;
  border-radius: 100px;
}
.card-list .card-item__title {
  font-size: clamp(14px, 13.355px + 0.165vw, 16px);
  margin-bottom: 1rem;
}
.card-list .card-item__excerpt {
  font-size: clamp(12px, 11.355px + 0.165vw, 14px);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.link-box-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2.5%;
}
@media (max-width: 1023px) {
  .link-box-list {
    gap: 2rem 2%;
  }
}
@media (max-width: 690px) {
  .link-box-list {
    gap: 1.5rem 0;
  }
}
.link-box-list__text .sub {
  font-size: clamp(12px, 11.388px + 0.163vw, 14px);
  font-weight: normal;
  display: block;
}
.link-box-list li {
  width: 31.6666666667%;
  display: flex;
  background: #fff;
}
@media (max-width: 1023px) {
  .link-box-list li {
    width: 49%;
  }
}
@media (max-width: 690px) {
  .link-box-list li {
    width: 100%;
  }
}
.link-box-list li a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  color: #333;
  text-decoration: none;
  font-size: clamp(14px, 12.776px + 0.327vw, 18px);
  word-break: auto-phrase;
  font-weight: bold;
  line-height: 1.6;
  padding: 2rem 4rem 2rem 2rem;
  gap: 2rem;
  border: 1px solid #004CD0;
}
@media (max-width: 690px) {
  .link-box-list li a {
    padding: 1rem 4rem 1rem 2rem;
  }
}
.link-box-list li a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 20px;
  line-height: 1;
  width: 8px;
  height: 8px;
  border: 2px solid #004CD0;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translate(-25%, -50%) rotate(45deg);
}
.link-box-list.list-gray li a {
  border: 1px solid #dfdfdf;
}
.link-box-list.list-gray li a::after {
  border: 2px solid #333;
  border-left: 0;
  border-bottom: 0;
}
.link-box-list.list-col2 li {
  width: 48.75%;
}
@media (max-width: 690px) {
  .link-box-list.list-col2 li {
    width: 100%;
  }
}
.link-box-list.list-col2 li a {
  flex-wrap: wrap;
  padding: 3rem 4rem 3rem 2rem;
}
@media (max-width: 1023px) {
  .link-box-list.list-col2 li a {
    gap: 0.5rem;
  }
}
@media (max-width: 690px) {
  .link-box-list.list-col2 li a {
    padding: 1.5rem 4rem 1.5rem 2rem;
  }
}
.link-box-list.list-col2 li .ja {
  font-size: clamp(16px, 14.776px + 0.327vw, 20px);
}
@media (max-width: 1023px) {
  .link-box-list.list-col2 li .ja {
    width: 100%;
  }
}
.link-box-list.list-col2 li .en {
  font-size: clamp(10px, 9.388px + 0.163vw, 12px);
  color: #004CD0;
}
@media (max-width: 1023px) {
  .content-col2 .link-box-list li {
    width: 100%;
  }
}
.link-box-list.fs-s li a .ja {
  font-size: clamp(14px, 13.388px + 0.163vw, 16px);
}

.cat-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2.5%;
}
@media (max-width: 767px) {
  .cat-link-list {
    gap: 1.5rem 0;
  }
}
.cat-link-list > li {
  width: 48.75%;
  display: flex;
}
@media (max-width: 767px) {
  .cat-link-list > li {
    width: 100%;
    gap: 1.5rem 0;
  }
}
.cat-link-list > li a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  color: #333;
  text-decoration: none;
  padding: 2rem;
  gap: 2rem;
  border: 1px solid #004CD0;
}
@media (max-width: 767px) {
  .cat-link-list > li a {
    padding: 1rem;
  }
}
.cat-link-list__img {
  min-width: 100px;
}
@media (max-width: 767px) {
  .cat-link-list__img {
    min-width: 60px;
  }
}
.cat-link-list__text .excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical; /* 垂直方向に配置 */
  overflow: hidden; /* 溢れた部分を隠す */
  text-overflow: ellipsis; /* 溢れた部分に「...」を表示 */
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.cat-link-list__text .title {
  font-size: clamp(18px, 16.776px + 0.327vw, 22px);
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 1rem;
}
.cat-link-list__text .title .status {
  font-size: clamp(10px, 9.388px + 0.163vw, 12px);
  font-weight: normal;
  position: relative;
  display: inline-block;
  color: #fff;
  padding: 0.45rem 0.5rem;
  top: -0.3em;
  line-height: 1;
}
.cat-link-list__text .title .series {
  margin-left: 0.5rem;
  font-size: clamp(16px, 15.388px + 0.163vw, 18px);
  font-weight: normal;
}
.cat-link-list__text .tag-list,
.cat-link-list__text .tag-list-2 {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cat-link-list__text .tag-list,
  .cat-link-list__text .tag-list-2 {
    margin-bottom: 1rem;
  }
}
.cat-link-list__text .tag-list + .tag-list-2 {
  margin-top: -1rem;
}
@media (max-width: 767px) {
  .cat-link-list__text .tag-list + .tag-list-2 {
    margin-top: -0.5rem;
  }
}

.tab-container .tab {
  cursor: pointer;
}
.tab-container .tab a {
  pointer-events: none;
}

.tab-content {
  display: none;
}
.tab-content.show {
  display: block;
}

.bg-l-gray01 {
  background: #f3f3f3;
}

.table-scroll {
  overflow-x: scroll;
}
@media (max-width: 575px) {
  .table-scroll-sm {
    overflow-x: scroll;
  }
}

.v-align-m {
  vertical-align: middle;
}

.no-wrap {
  white-space: nowrap;
}
@media (max-width: 575px) {
  .no-wrap-sm {
    white-space: nowrap;
  }
}

.multiply {
  mix-blend-mode: multiply;
}

p + p {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  p + p {
    margin-top: 2rem;
  }
}

.page-sec {
  padding: 12rem 0;
}
@media (max-width: 767px) {
  .page-sec {
    padding: 8rem 0;
  }
}

.col3-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem 2.5%;
}
@media (max-width: 1023px) {
  .col3-list {
    gap: 4rem 2%;
  }
}
@media (max-width: 767px) {
  .col3-list {
    gap: 3rem 2%;
  }
}
.col3-list > * {
  width: 31.6666666667%;
}
@media (max-width: 1023px) {
  .col3-list > * {
    width: 49%;
  }
}
@media (max-width: 575px) {
  .col3-list > * {
    width: 100%;
  }
  .col3-list > * img {
    width: 100%;
  }
}
.col3-list > * a {
  text-decoration: none;
  color: #333;
}

.col2-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem 2.5%;
}
@media (max-width: 1023px) {
  .col2-list {
    gap: 4rem 2%;
  }
}
@media (max-width: 767px) {
  .col2-list {
    gap: 3rem 2%;
  }
}
.col2-list > * {
  width: 48.75%;
}
@media (max-width: 575px) {
  .col2-list > * {
    width: 100%;
  }
  .col2-list > * img {
    width: 100%;
  }
}
.col2-list > * a {
  text-decoration: none;
  color: #333;
}

.w-100 {
  width: 100% !important;
}

.info-list dl {
  display: flex;
  flex-wrap: wrap;
}
.info-list dl:not(:first-of-type) {
  position: relative;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #dfdfdf;
}
.info-list dl:not(:first-of-type)::after {
  position: absolute;
  content: "";
  top: -1px;
  left: 0;
  width: 160px;
  border-top: 1px solid #004CD0;
}
.info-list dl dt {
  font-weight: bold;
  width: 160px;
}
@media (max-width: 575px) {
  .info-list dl dt {
    width: 100%;
    margin: 0 0 1rem 0;
  }
}
.info-list dl dd {
  flex: 1;
  padding-left: 2rem;
}
@media (max-width: 575px) {
  .info-list dl dd {
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .info-list dl dd iframe {
    aspect-ratio: 1/1;
    object-fit: cover;
    height: auto;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.faq-list .faq-item {
  padding: 4rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}
@media (max-width: 767px) {
  .faq-list .faq-item {
    padding: 3rem 2rem;
  }
}
@media (max-width: 575px) {
  .faq-list .faq-item {
    border-radius: 10px;
  }
}
.faq-list .faq-item dt {
  position: relative;
  font-size: clamp(17px, 15.469px + 0.408vw, 22px);
  font-weight: bold;
  line-height: 1.6;
  word-break: auto-phrase;
  padding-left: 5rem;
}
@media (max-width: 767px) {
  .faq-list .faq-item dt {
    padding-left: 4.5rem;
  }
}
.faq-list .faq-item dt::before {
  position: absolute;
  content: "Q";
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  font-size: clamp(18px, 13.862px + 1.061vw, 22px);
  color: #fff;
  background: #004CD0;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .faq-list .faq-item dt::before {
    width: 32px;
    height: 32px;
  }
}
.faq-list .faq-item dd {
  padding-top: 3rem;
}
@media (max-width: 767px) {
  .faq-list .faq-item dd {
    padding-top: 2rem;
  }
}

.tbl {
  width: 100%;
  border-collapse: collapse;
}
.tbl th,
.tbl td {
  padding: 1.5rem;
  border: 1px solid #dfdfdf;
}
.tbl th {
  background: #f3f3f3;
  text-align: left;
  width: 30%;
}
.tbl .cel-blue th {
  color: #FFF;
  background: #004CD0;
}

.page-top-text {
  text-align: center;
  font-size: clamp(18px, 16.711px + 0.331vw, 22px);
  font-weight: bold;
  word-break: auto-phrase;
  padding: 12rem 0 10rem;
}
@media (max-width: 767px) {
  .page-top-text {
    padding: 8rem 0 6rem;
  }
}

/*top
-----------------------------------------------------*/
.main-v {
  position: relative;
  background: url(../images/top/main.jpg) no-repeat center/cover;
  margin: 2rem 2rem 0 9.375%;
  height: 900px;
  border-radius: 20px;
}
@media (max-width: 960px) {
  .main-v {
    background-position: 65% center;
    background-size: cover;
  }
}
@media (max-width: 1023px) {
  .main-v {
    height: 700px;
  }
}
@media (max-width: 767px) {
  .main-v {
    background: url(../images/top/main_sp.jpg) no-repeat center/cover;
    margin: 2rem 2rem 0 2rem;
  }
}
@media (max-width: 575px) {
  .main-v {
    margin: 1rem 1rem 0 1rem;
    height: 550px;
  }
}
.main-v::after {
  position: absolute;
  content: "";
  top: 120px;
  left: 0;
  width: 20px;
  height: 20px;
  background: url(../images/common/rounded_corners_w_01.svg) no-repeat top left/contain;
}
@media (max-width: 1023px) {
  .main-v::after {
    top: 100px;
  }
}
@media (max-width: 575px) {
  .main-v::after {
    top: 70px;
  }
}
.main-v__catch {
  max-width: 952px;
  display: block;
  margin-left: 8.4033613445%;
}
@media (max-width: 767px) {
  .main-v__catch {
    margin-left: 0;
  }
}
.main-v__catch-sub {
  max-width: 649px;
  margin-left: 14.7058823529%;
  display: block;
}
@media (max-width: 767px) {
  .main-v__catch-sub {
    margin-left: 0;
  }
}
.main-v__text {
  position: absolute;
  width: 59.5%;
  top: 50%;
  left: -9.375%;
  transform: translateY(-35%);
}
@media (max-width: 1023px) {
  .main-v__text {
    width: 70%;
    left: -11%;
  }
}
@media (max-width: 767px) {
  .main-v__text {
    width: 94.8717948718%;
    left: 0;
    top: auto;
    bottom: 80px;
    transform: translateY(0);
  }
}
.main-v p {
  font-size: clamp(14px, 9.935px + 1.129vw, 28px);
  line-height: 1.6;
  padding-left: 24.1596638655%;
  margin-top: 5rem;
  white-space: nowrap;
  text-shadow: 0px 0px 40px rgb(255, 255, 255), 0px 0px 40px rgb(255, 255, 255);
}
@media (max-width: 767px) {
  .main-v p {
    margin-top: 3rem;
    padding-left: 7.6923076923%;
  }
}
.main-v .c-btn {
  width: 41.4915966387%;
  margin: 0 0 0 24.1596638655%;
  min-width: 315px;
  max-width: 395px;
}
@media (max-width: 767px) {
  .main-v .c-btn {
    min-width: auto;
    max-width: auto;
    width: 51.2820512821%;
    margin: 0 0 0 7.6923076923%;
  }
}
@media (max-width: 575px) {
  .main-v .c-btn {
    width: 200px;
    font-size: 1.3rem;
  }
}

.top-sec {
  padding: 12rem 0;
}
@media (max-width: 767px) {
  .top-sec {
    padding: 8rem 0;
  }
}

/* top-about */
.top-about {
  position: relative;
}
.top-about__en {
  position: absolute;
  left: 50%;
  top: -80px;
  transform: translateX(-50%);
  font-size: clamp(80px, 47.769px + 8.264vw, 180px);
  line-height: 1;
  white-space: nowrap;
  color: #B5CFFF;
}
@media (max-width: 1023px) {
  .top-about__en {
    top: -55px;
  }
}
@media (max-width: 767px) {
  .top-about__en {
    top: -40px;
  }
}
.top-about h2 {
  font-size: clamp(22px, 16.198px + 1.488vw, 40px);
  line-height: 1.6;
  text-align: center;
  margin-bottom: 5rem;
  word-break: keep-all;
}
.top-about__text {
  width: 58.3333333333%;
  word-break: auto-phrase;
}
@media (max-width: 767px) {
  .top-about__text {
    order: 2;
    width: 100%;
  }
}
.top-about__name {
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: right;
  line-height: 1;
  color: #fff;
  text-align: right;
}
.top-about__name span {
  display: inline-block;
  padding: 1rem;
  background: #000;
}
.top-about__name .name {
  font-size: clamp(20px, 16.777px + 0.826vw, 30px);
  font-weight: bold;
}
.top-about__roma {
  position: absolute;
  font-size: clamp(50px, 40.331px + 2.479vw, 80px);
  white-space: nowrap;
  bottom: -120px;
  right: 0;
  color: #B5CFFF;
}
@media (max-width: 1023px) {
  .top-about__roma {
    display: none;
  }
}

/* top-reason */
.top-reason-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem 3.75%;
}
@media (max-width: 575px) {
  .top-reason-list {
    gap: 3rem 0;
  }
}
.top-reason-list__item {
  position: relative;
  width: 30.8333333333%;
}
@media (max-width: 1023px) {
  .top-reason-list__item {
    width: 48%;
    max-width: 370px;
  }
}
@media (max-width: 767px) {
  .top-reason-list__item {
    width: 100%;
  }
}
.top-reason-list__item .en {
  position: absolute;
  width: 18.3783783784%;
  top: 0;
  display: flex;
  align-items: center;
  font-size: clamp(16px, 14.711px + 0.331vw, 20px);
  color: #fff;
  writing-mode: vertical-rl;
}
.top-reason-list__title {
  background: #fff;
  font-size: clamp(16px, 14.711px + 0.331vw, 20px);
  line-height: 1.6;
  font-weight: bold;
  text-align: center;
  padding: 3rem;
  border-radius: 0 0 10px 10px;
}
.top-reason-list__img img {
  width: 100%;
}

/* top-column */
.top-column {
  position: relative;
  padding-top: 0;
}
@media (max-width: 767px) {
  .top-column {
    padding-top: 14rem;
  }
}
.top-column::before {
  position: absolute;
  content: "";
  top: 0;
  width: 55%;
  height: 90px;
  background: #fff;
  border-radius: 0 0 20px 0;
}
@media (max-width: 767px) {
  .top-column::before {
    height: 50px;
  }
}
.top-column::after {
  position: absolute;
  content: "";
  top: 0;
  left: 55%;
  width: 20px;
  height: 20px;
  background: url(../images/common/rounded_corners_w_01.svg) no-repeat top left/contain;
}

/* top-news */
.top-news-block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.top-news__title {
  writing-mode: vertical-rl;
}
@media (max-width: 767px) {
  .top-news__title {
    writing-mode: horizontal-tb;
    width: 100%;
  }
}
.top-news__title .section-heading01 h2::before {
  width: 2px;
  height: 16px;
}
@media (max-width: 767px) {
  .top-news__title .section-heading01 h2::before {
    width: 16px;
    height: 2px;
  }
}
.top-news-list {
  width: 80%;
}
@media (max-width: 767px) {
  .top-news-list {
    width: 100%;
  }
}

/*about
-----------------------------------------------------*/
.about-sec::before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 26.125%;
  height: 60%;
  background: #DFE9FB;
  border-radius: 0 80px 0 0;
}
@media (max-width: 767px) {
  .about-sec::before {
    display: none;
  }
}
.about-sec::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 26.125%;
  width: 20px;
  height: 20px;
  background: url(../images/common/rounded_corners_b_01.svg) no-repeat top left/contain;
  transform: rotate(-180deg);
}
@media (max-width: 767px) {
  .about-sec::after {
    display: none;
  }
}
.about-sec .about-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  gap: 4rem 0;
}
.about-sec .about-block__text {
  width: 58.3333333333%;
}
@media (max-width: 767px) {
  .about-sec .about-block__text {
    order: 1;
    width: 100%;
  }
}
.about-sec .about-block__name {
  margin-bottom: 3rem;
}
.about-sec .about-block__name .job {
  font-weight: bold;
}
.about-sec .about-block__name .name {
  font-size: clamp(28px, 25.421px + 0.661vw, 36px);
  font-weight: bold;
}
.about-sec .about-block__name .en {
  font-size: clamp(12px, 11.355px + 0.165vw, 14px);
  color: #004CD0;
}
.about-sec .about-block__img {
  position: relative;
  width: 33.3333333333%;
}
@media (max-width: 767px) {
  .about-sec .about-block__img {
    order: 1;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

.message-sec .message-header {
  position: relative;
  height: 400px;
  background: url(../images/about/about_img02.jpg) no-repeat top left/cover;
  border-radius: 20px;
  margin-bottom: 7rem;
  color: #fff;
  overflow: hidden;
}
@media (max-width: 767px) {
  .message-sec .message-header {
    height: 300px;
    margin-bottom: 5rem;
  }
}
.message-sec .message-header .message-title {
  position: absolute;
  right: 40px;
  bottom: -4%;
  text-align: right;
  color: #fff;
}
@media (max-width: 767px) {
  .message-sec .message-header .message-title {
    bottom: -4%;
  }
}
@media (max-width: 575px) {
  .message-sec .message-header .message-title {
    bottom: -3%;
    right: 20px;
    color: #004CD0;
  }
}
.message-sec .message-header .message-title .en {
  font-size: clamp(65px, 47.273px + 4.545vw, 120px);
  font-weight: 400;
  line-height: 1;
}
.message-sec .message-header .message-title h2 {
  font-size: clamp(16px, 14.711px + 0.331vw, 20px);
}

/*service
-----------------------------------------------------*/
.worry-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 6rem;
  gap: 3rem 0;
}
@media (max-width: 767px) {
  .worry-block {
    margin-bottom: 4rem;
  }
}
.worry-block__img {
  width: 35.1666666667%;
}
@media (max-width: 767px) {
  .worry-block__img {
    width: 100%;
    text-align: center;
  }
}
.worry-block__list {
  display: flex;
  flex-direction: column;
  width: 58.3333333333%;
  gap: 1rem 0;
}
@media (max-width: 767px) {
  .worry-block__list {
    width: 100%;
  }
}
.worry-block__list li {
  width: 100%;
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: #DFE9FB;
  border-radius: 10px;
}
.worry-block__list li:nth-of-type(even) {
  background: #EDF3FF;
}
.worry-block__list li .en {
  font-size: clamp(30px, 26.777px + 0.826vw, 40px);
  line-height: 1;
  color: #004CD0;
  flex-shrink: 0;
}
.worry-block__list li .text {
  font-size: clamp(18px, 16.711px + 0.331vw, 22px);
  line-height: 1.6;
  font-weight: bold;
}

.circle-under {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #004CD0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, 50%);
}
@media (max-width: 767px) {
  .circle-under {
    width: 60px;
    height: 60px;
  }
}
.circle-under .arrow {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  position: relative;
  width: 2px;
  height: 22px;
  background: #fff;
}
@media (max-width: 767px) {
  .circle-under .arrow {
    height: 16px;
  }
}
.circle-under .arrow::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
  transform-origin: bottom left;
  position: absolute;
  left: 50%;
  bottom: -0.5px;
}
@media (max-width: 767px) {
  .circle-under .arrow::before {
    width: 8px;
    height: 8px;
  }
}

.service-sec {
  background: #DFE9FB;
}
.service-sec .service-heading__text {
  position: relative;
  text-align: center;
  margin-bottom: 5rem;
  padding: 0 4rem;
  word-break: keep-all;
}
@media (max-width: 575px) {
  .service-sec .service-heading__text {
    padding: 0 3rem;
  }
}
.service-sec .service-heading__text em {
  display: block;
  font-size: clamp(22px, 19.421px + 0.661vw, 30px);
  line-height: 1.6;
  margin-bottom: 4rem;
}
.service-sec .service-heading__text::before, .service-sec .service-heading__text::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 100%;
  border-top: #004CD0 solid 1px;
  border-bottom: #004CD0 solid 1px;
}
.service-sec .service-heading__text::before {
  left: 0;
  top: 0;
  border-left: #004CD0 solid 1px;
}
.service-sec .service-heading__text::after {
  right: 0;
  bottom: 0;
  border-right: #004CD0 solid 1px;
}
.service-sec .service-point__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem 0;
}
.service-sec .service-point__item {
  position: relative;
  width: 30.8333333333%;
  text-align: center;
  padding-top: 2.5rem;
}
@media (max-width: 767px) {
  .service-sec .service-point__item {
    width: 100%;
  }
}
.service-sec .service-point__item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 81.0810810811%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff;
}
@media (max-width: 767px) {
  .service-sec .service-point__item::before {
    width: 300px;
  }
}
.service-sec .service-point__item p {
  margin-top: 2rem;
  text-align: left;
}
.service-sec .service-point__en {
  position: relative;
  font-size: clamp(14px, 13.355px + 0.165vw, 16px);
  color: #004CD0;
  line-height: 1;
  margin-bottom: 2rem;
}
.service-sec .service-point__en span {
  display: block;
  margin-top: -0.3rem;
  font-size: clamp(32px, 29.421px + 0.661vw, 40px);
}
.service-sec .service-point__img {
  position: relative;
  margin-bottom: 2rem;
}
.service-sec .service-point__title {
  position: relative;
  font-size: clamp(18px, 16.776px + 0.327vw, 22px);
  font-weight: bold;
  line-height: 1.6;
  word-break: keep-all;
}
.service-sec .service-menu {
  background: #fff;
  border-radius: 10px;
  padding: 5.8333333333% 8.3333333333%;
  margin-top: 7rem;
}
@media (max-width: 575px) {
  .service-sec .service-menu {
    padding: 2rem;
    margin-top: 4rem;
  }
}
.service-sec .service-menu__title {
  font-size: clamp(22px, 19.421px + 0.661vw, 30px);
  line-height: 1.6;
  color: #FFF;
  background: linear-gradient(90deg, #296CF2, #004CD0);
  padding: 1.5rem 2rem;
  margin-bottom: 4rem;
  border-radius: 6px;
}
@media (max-width: 767px) {
  .service-sec .service-menu__title {
    padding: 1rem 2rem;
  }
}
.service-sec .service-menu__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.service-sec .service-menu__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border: 5px solid #f3f3f3;
}
.service-sec .service-menu__item-text {
  width: 48.4210526316%;
  padding: 4rem 0 4rem 5rem;
}
@media (max-width: 767px) {
  .service-sec .service-menu__item-text {
    width: 100%;
    padding: 3rem 0 3rem 2rem;
  }
}
.service-sec .service-menu__item-text .en {
  width: fit-content;
  font-size: clamp(14px, 13.355px + 0.165vw, 16px);
  color: #fff;
  background: #004CD0;
  border-radius: 100px;
  padding: 0.2rem 2rem;
  margin-bottom: 2rem;
}
.service-sec .service-menu__item-text h5 {
  font-size: clamp(14px, 13.355px + 0.165vw, 16px);
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.service-sec .service-menu__item-text h5 span {
  display: block;
  font-size: clamp(18px, 16.711px + 0.331vw, 22px);
}
.service-sec .service-menu__item-img {
  width: 47.3684210526%;
}
@media (max-width: 767px) {
  .service-sec .service-menu__item-img {
    width: 100%;
  }
}
.service-sec .service-menu__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/2;
}
.service-sec .service-menu__item-box {
  width: 100%;
  padding: 5rem;
  background: #f3f3f3;
}
.service-sec .service-menu__item-box li + li {
  margin-top: 1rem;
}
.service-sec .service-menu__item-box li::first-line {
  font-weight: bold;
}
@media (max-width: 767px) {
  .service-sec .service-menu__item-box {
    padding: 2rem;
  }
}

.flow-list {
  display: flex;
  flex-direction: column;
  gap: 5rem 0;
}
.flow-list dl {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}
.flow-list dl:not(:last-of-type)::before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -35px;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 20px 25px;
  border-top-color: #004CD0;
  border-bottom: 0;
  transform: translateX(-50%);
}
.flow-list dl dt {
  display: flex;
  align-items: center;
  min-width: 290px;
  gap: 1rem;
  background: linear-gradient(90deg, #296CF2, #004CD0);
  padding: 2rem 3rem 2rem 2rem;
  border-radius: 6px 0 0 6px;
}
@media (max-width: 767px) {
  .flow-list dl dt {
    width: 100%;
    min-height: inherit;
    border-radius: 6px 6px 0 0;
    padding: 1.5rem 2rem;
  }
}
.flow-list dl dt .flow-list__title {
  font-size: clamp(16px, 15.355px + 0.165vw, 18px);
  line-height: 1.4;
  font-weight: bold;
  color: #fff;
}
.flow-list dl dt .flow-list__title span {
  font-size: clamp(12px, 11.355px + 0.165vw, 14px);
}
.flow-list dl dt .en {
  font-size: clamp(30px, 26.777px + 0.826vw, 40px);
  color: rgba(255, 255, 255, 0.2);
}
.flow-list dl dd {
  display: flex;
  align-items: center;
  padding: 2rem 2rem 2rem 3rem;
  flex: 1;
}
@media (max-width: 767px) {
  .flow-list dl dd {
    width: 100%;
    padding: 2rem;
  }
}

/*reason
-----------------------------------------------------*/
.reason-sec {
  position: relative;
  padding: 21rem 0;
  background: url(../images/common/grade_bg01.png) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .reason-sec {
    padding: 14rem 0;
  }
}
.reason-sec::before, .reason-sec::after {
  position: absolute;
  content: "";
}
.reason-sec::before {
  top: 0;
  width: 55%;
  height: 90px;
  background: #fff;
  border-radius: 0 0 20px 0;
}
@media (max-width: 767px) {
  .reason-sec::before {
    height: 50px;
  }
}
.reason-sec.top-reason::before {
  background: #DFE9FB;
}
.reason-sec::after {
  position: absolute;
  content: "";
  top: 0;
  left: 55%;
  width: 20px;
  height: 20px;
  background: url(../images/common/rounded_corners_w_01.svg) no-repeat top left/contain;
}
.reason-sec.top-reason::after {
  background: url(../images/common/rounded_corners_b_01.svg) no-repeat top left/contain;
}
.reason-sec-bottom {
  position: relative;
}
.reason-sec-bottom::before {
  position: absolute;
  content: "";
  bottom: -210px;
  width: 55%;
  height: 90px;
  background: #fff;
  border-radius: 0 20px 0 0;
}
@media (max-width: 767px) {
  .reason-sec-bottom::before {
    height: 50px;
    bottom: -140px;
  }
}
.reason-sec-bottom::after {
  position: absolute;
  content: "";
  bottom: -210px;
  left: 55%;
  width: 20px;
  height: 20px;
  background: url(../images/common/rounded_corners_w_01.svg) no-repeat top left/contain;
  transform: rotate(-90deg);
}
@media (max-width: 767px) {
  .reason-sec-bottom::after {
    bottom: -140px;
  }
}

.reason-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 8rem;
}
@media (max-width: 767px) {
  .reason-list {
    gap: 6rem 0;
  }
}
.reason-list__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  gap: 3rem;
}
.reason-list__item:nth-last-of-type(even) {
  flex-direction: row-reverse;
}
.reason-list__text {
  width: 53.3333333333%;
}
@media (max-width: 767px) {
  .reason-list__text {
    width: 100%;
  }
}
.reason-list__title {
  font-size: clamp(22px, 20.711px + 0.331vw, 26px);
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .reason-list__title {
    margin-bottom: 2rem;
  }
}
.reason-list__img {
  position: relative;
  width: 41.6666666667%;
}
@media (max-width: 767px) {
  .reason-list__img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}
.reason-list__img img {
  position: relative;
  width: 100%;
}
.reason-list__img .en {
  position: absolute;
  width: 18%;
  top: 0;
  display: flex;
  align-items: center;
  font-size: clamp(18px, 8.769px + 1.202vw, 28px);
  writing-mode: vertical-rl;
}
@media (max-width: 767px) {
  .reason-list__img .en {
    font-size: clamp(18px, 5.586px + 3.183vw, 30px);
  }
}
.reason-list__img::before {
  position: absolute;
  content: "";
  top: 15.5688622754%;
  left: -10px;
  width: 23.8%;
  aspect-ratio: 1/1;
  background: url(../images/reason/reason_en_bg.svg) no-repeat top center/contain;
}

.reason-bottom-text {
  max-width: 960px;
  text-align: center;
  font-size: clamp(18px, 14.308px + 0.481vw, 22px);
  font-weight: bold;
  color: #fff;
  word-break: keep-all;
  padding: 4rem 2rem;
  margin: 8rem auto 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
@media (max-width: 767px) {
  .reason-bottom-text {
    padding: 2rem;
    margin: 5rem auto 0;
  }
}
.reason-bottom-text em {
  font-size: clamp(22px, 14.615px + 0.962vw, 30px);
}

/*news
-----------------------------------------------------*/
.news-list {
  width: 100%;
}
.news-list li a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  text-decoration: none;
  color: #333;
  padding: 2rem 4rem;
  background: #f3f3f3;
  border-radius: 6px;
}
@media (max-width: 767px) {
  .news-list li a {
    padding: 2rem;
  }
}
.news-list li:nth-of-type(even) a {
  background: #fff;
}
.news-list__info {
  display: flex;
  align-items: center;
  gap: 0 1.5rem;
  margin-bottom: 1rem;
}
.news-list__info .cat {
  color: #004CD0;
  border: 1px solid #004CD0;
  padding: 0.2rem 1rem;
  font-size: clamp(10px, 9.388px + 0.163vw, 12px);
  border-radius: 100px;
}

/*single
-----------------------------------------------------*/
.post-sec {
  padding: 12rem 0;
}
@media (max-width: 767px) {
  .post-sec {
    padding: 8rem 0;
  }
}
.post-sec .section-header {
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .post-sec .section-header {
    margin-bottom: 4rem;
  }
}
.post-sec .section-header h1 {
  font-size: clamp(22px, 19.421px + 0.661vw, 30px);
  word-break: auto-phrase;
  line-height: 1.4;
  margin-bottom: 3rem;
}
.post-sec .section-header .post-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}
.post-sec .section-header .post-info .cat {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.post-sec .section-header .post-info .cat .company {
  font-size: clamp(16px, 14.163px + 0.49vw, 22px);
  font-weight: bold;
}
.post-sec .section-header .post-info .cat a {
  font-size: clamp(10px, 9.355px + 0.165vw, 12px);
  color: #004CD0;
  text-decoration: none;
  border: 1px solid #004CD0;
  padding: 0.2rem 1rem;
  border-radius: 100px;
}
.post-sec .section-header .post-info .employees {
  width: 100%;
}
.post-sec .assignment {
  border: solid 3px #dfdfdf;
  padding: 4rem 5rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .post-sec .assignment {
    padding: 2rem;
    margin-bottom: 3rem;
  }
}
.post-sec .assignment__title {
  font-size: clamp(17px, 16.082px + 0.245vw, 20px);
  font-weight: bold;
}
.post-sec .eye-catch {
  text-align: center;
  margin-bottom: 3rem;
}
.post-sec h2 {
  font-size: clamp(20px, 18.711px + 0.331vw, 24px);
  line-height: 1.4;
  color: #fff;
  background: #004CD0;
  border-radius: 4px;
  padding: 1rem 2rem;
  margin: 6rem 0 3rem;
}
.post-sec h3 {
  position: relative;
  font-size: clamp(20px, 18.711px + 0.331vw, 24px);
  line-height: 1.4;
  padding-bottom: 1rem;
  border-bottom: 3px solid #dfdfdf;
  margin: 5rem 0 3rem;
  word-break: auto-phrase;
}
@media (max-width: 767px) {
  .post-sec h3 {
    margin: 4rem 0 2.5rem;
  }
}
.post-sec h3::before {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 0;
  width: 100px;
  height: 3px;
  background: #004CD0;
}
.post-sec.post-case h3 {
  position: relative;
  display: flex;
  align-items: center;
  font-size: clamp(18px, 17.388px + 0.163vw, 20px);
  color: #004CD0;
  padding-bottom: 0;
  border-bottom: none;
  gap: 1rem;
}
.post-sec.post-case h3::before {
  position: static;
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: #004CD0;
}
.post-sec h4 {
  font-size: clamp(18px, 16.711px + 0.331vw, 22px);
  color: #004CD0;
  line-height: 1.6;
  margin: 4rem 0 2.5rem;
}
@media (max-width: 767px) {
  .post-sec h4 {
    margin: 3rem 0 2rem;
  }
}
.post-sec h2 + h3,
.post-sec h3 + h4,
.post-sec h4 + h5 {
  margin-top: 0;
}
.post-sec #toc_container {
  width: 100%;
  padding: 4rem 5rem;
  margin-top: 4rem;
  border: none;
  background: #f3f3f3;
}
@media (max-width: 767px) {
  .post-sec #toc_container {
    padding: 2rem;
    margin-top: 3rem;
  }
}
.post-sec #toc_container .toc_title {
  font-size: clamp(16px, 14.711px + 0.331vw, 20px);
  text-align: left;
  font-weight: bold;
  border-bottom: 1px solid #333;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.post-sec #toc_container .toc_toggle {
  margin-left: 1rem;
  font-size: clamp(12px, 11.388px + 0.163vw, 14px);
}
.post-sec #toc_container .toc_toggle a {
  color: #333;
  text-decoration: none;
  font-weight: normal;
}
.post-sec #toc_container .toc_list {
  list-style: none;
  padding-left: 0;
}
.post-sec #toc_container .toc_list > li + li {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid #dfdfdf;
}
.post-sec #toc_container .toc_list a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
}
.post-sec #toc_container .toc_list li ul {
  padding-left: 1em;
  list-style: none;
}
.post-sec table {
  width: 100% !important;
  border-collapse: collapse !important;
  box-sizing: border-box !important;
  max-width: 100% !important;
}
.post-sec table th,
.post-sec table td {
  padding: 1rem !important;
  border: 1px solid #dfdfdf !important;
  word-break: auto-phrase !important;
  width: auto !important;
}
.post-sec table th {
  background: #f3f3f3 !important;
  text-align: left !important;
}
.post-sec table .cel-blue th {
  color: #FFF !important;
  background: #004CD0 !important;
}
.post-sec .table-of-contents dt {
  font-size: clamp(16px, 15.388px + 0.163vw, 18px) !important;
  font-weight: bold !important;
}
.post-sec .table-scroll-sem,
.post-sec .wp-block-flexible-table-block-table {
  width: 100% !important;
  overflow-x: auto !important;
  box-sizing: border-box !important;
  max-width: 100% !important;
}
.post-sec ul {
  list-style: disc;
  padding-left: 1.5em;
}
.post-sec .post-cta {
  display: block;
  max-width: 400px;
  color: #FDFD44;
  text-align: left;
  background: #004CD0;
  word-break: keep-all;
  min-width: inherit;
  margin: 4rem auto;
}
@media (max-width: 767px) {
  .post-sec .post-cta {
    margin: 3rem auto;
  }
}
.post-sec .post-cta em {
  font-size: clamp(22px, 19.421px + 0.661vw, 30px);
  line-height: 1.4;
}
.post-sec .post-nav {
  margin-top: 6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding-left: 0;
}
@media (max-width: 767px) {
  .post-sec .post-nav {
    margin-top: 3rem;
    gap: 3rem 0;
  }
}
.post-sec .post-nav a:not(.c-btn) {
  color: #333;
  text-decoration: none;
}
@media (max-width: 767px) {
  .post-sec .post-nav .post-nav__btn {
    width: 100%;
    text-align: center;
    order: 1;
  }
}
.post-sec .post-nav .post-nav__item {
  width: 28%;
  font-size: clamp(12px, 11.388px + 0.163vw, 14px);
}
@media (max-width: 767px) {
  .post-sec .post-nav .post-nav__item {
    width: 48%;
  }
}
.post-sec .post-nav .post-nav__item .post-nav__sub {
  display: flex;
  align-items: center;
  font-size: clamp(10px, 9.388px + 0.163vw, 12px);
  color: #666666;
  gap: 1rem;
}
.post-sec .post-nav .post-nav__item .post-nav__sub .circle {
  position: relative;
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #00188F;
}
@media (max-width: 575px) {
  .post-sec .post-nav .post-nav__item .post-nav__sub .circle {
    width: 20px;
    height: 20px;
  }
}
.post-sec .post-nav .post-nav__item .post-nav__sub .arrow {
  position: absolute;
  display: inline-block;
  top: calc(50% - 5px);
  right: 8px;
  width: 9px;
  height: 1px;
  margin: 4.3px 0;
  border-radius: 9999px;
  background-color: #fff;
}
@media (max-width: 575px) {
  .post-sec .post-nav .post-nav__item .post-nav__sub .arrow {
    width: 8px;
    right: 6px;
  }
}
.post-sec .post-nav .post-nav__item .post-nav__sub .arrow::before, .post-sec .post-nav .post-nav__item .post-nav__sub .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 6px;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 0.5px) 50%;
}
@media (max-width: 575px) {
  .post-sec .post-nav .post-nav__item .post-nav__sub .arrow::before, .post-sec .post-nav .post-nav__item .post-nav__sub .arrow::after {
    width: 5px;
  }
}
.post-sec .post-nav .post-nav__item .post-nav__sub .arrow::before {
  transform: rotate(45deg);
}
.post-sec .post-nav .post-nav__item .post-nav__sub .arrow::after {
  transform: rotate(-45deg);
}
.post-sec .post-nav .post-nav__item .post-nav__title {
  font-weight: bold;
  margin-top: 0.5rem;
}
.post-sec .post-nav .post-nav__prev .post-nav__sub .arrow::before, .post-sec .post-nav .post-nav__prev .post-nav__sub .arrow::after {
  left: 0;
  right: auto;
  transform-origin: 0 50%;
}
@media (max-width: 767px) {
  .post-sec .post-nav .post-nav__prev {
    order: 2;
  }
}
.post-sec .post-nav .post-nav__next {
  text-align: right;
}
.post-sec .post-nav .post-nav__next .post-nav__sub {
  justify-content: end;
}
@media (max-width: 767px) {
  .post-sec .post-nav .post-nav__next {
    order: 3;
  }
}
.post-sec .prof-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #DFE9FB;
  gap: 3rem 0;
  margin-top: 5rem;
  padding: 5%;
}
@media (max-width: 767px) {
  .post-sec .prof-box {
    margin-top: 3rem;
    padding: 3rem 2rem;
  }
}
.post-sec .prof-box__text {
  width: 73.6111111111%;
}
@media (max-width: 767px) {
  .post-sec .prof-box__text {
    width: 100%;
  }
}
.post-sec .prof-box__text .author {
  font-size: clamp(10px, 9.388px + 0.163vw, 12px);
}
.post-sec .prof-box__text p {
  font-size: clamp(12px, 11.388px + 0.163vw, 14px);
}
.post-sec .prof-box__name {
  font-size: clamp(16px, 15.388px + 0.163vw, 18px);
  font-weight: bold;
  margin-bottom: 2rem;
}
.post-sec .prof-box__img {
  width: 21.9444444444%;
}
@media (max-width: 767px) {
  .post-sec .prof-box__img {
    width: 158px;
    margin-inline: auto;
    text-align: center;
  }
}

/*contact
-----------------------------------------------------*/
input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  padding: 1.5rem;
  border: 1px solid #dfdfdf;
  border-radius: 0;
  font-size: 1.6rem;
}

input[type=checkbox],
input[type=radio] {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}

input[type=checkbox] + label {
  cursor: pointer;
  padding-left: 3.5rem;
  position: relative;
}
input[type=checkbox] + label::before, input[type=checkbox] + label::after {
  content: "";
  display: block;
  position: absolute;
}
input[type=checkbox] + label::before {
  background: #fff;
  border-radius: 0%;
  border: 1px solid #dfdfdf;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  top: calc(50% + 1px);
  left: 0;
}
input[type=checkbox] + label::after {
  border-bottom: 3px solid #004CD0;
  border-left: 3px solid #004CD0;
  opacity: 0;
  height: 5px;
  width: 9px;
  transform: rotate(-45deg);
  top: 6px;
  left: 6px;
}

input[type=checkbox]:checked + label::after {
  opacity: 1;
}

input[type=radio] + label {
  cursor: pointer;
  padding-left: 3.5rem;
  position: relative;
}
input[type=radio] + label::before, input[type=radio] + label::after {
  content: "";
  display: block;
  position: absolute;
}
input[type=radio] + label::before {
  background: #fff;
  border-radius: 0%;
  border: 1px solid #dfdfdf;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  top: calc(50% + 1px);
  left: 0;
  transform: translateY(-50%);
}
input[type=radio] + label::after {
  opacity: 0;
  top: calc(50% + 1px);
  left: 5px;
  height: 14px;
  width: 14px;
  transform: translateY(-50%);
  background: #004CD0;
  border-radius: 50%;
}

input[type=radio]:checked + label::after {
  opacity: 1;
}

input[type=radio]:disabled + label,
input[type=checkbox]:disabled + label {
  opacity: 0.5;
  cursor: default;
}

select {
  appearance: none;
  padding: 1.5rem 4rem 1.5rem 1.5rem;
  min-width: 250px;
  border: 1px solid #dfdfdf;
  border-radius: 5px;
}

.select-wrap {
  position: relative;
}
.select-wrap::after {
  position: absolute;
  content: "";
  top: 48%;
  right: 10px;
  color: #333;
  line-height: 1;
  width: 6px;
  height: 6px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: translate(-50%, -50%) rotate(135deg);
  transition: all 0.5s ease;
}

.ckr-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
}
.contact-block__info {
  width: 35%;
}
@media (max-width: 767px) {
  .contact-block__info {
    width: 100%;
  }
}
.contact-block__info h2 {
  font-size: clamp(30px, 27.421px + 0.661vw, 38px);
  line-height: 1.4;
  color: #004CD0;
  margin-bottom: 4rem;
  word-break: keep-all;
}
.contact-block__form {
  width: 58.3333333333%;
}
.contact-block__form.col1 {
  width: 100%;
}
@media (max-width: 767px) {
  .contact-block__form {
    width: 100%;
  }
}
.contact-block__form-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-block__form-list dl {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid #dfdfdf;
  font-weight: bold;
}
.contact-block__form-list dl dt {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
  width: 200px;
}
@media (max-width: 1023px) {
  .contact-block__form-list dl dt {
    width: 100%;
    justify-content: start;
    margin-bottom: 1rem;
  }
}
.contact-block__form-list dl dd {
  flex: 1;
  padding-left: 3rem;
}
@media (max-width: 1023px) {
  .contact-block__form-list dl dd {
    padding-left: 0;
  }
}
.contact-block__form .agree {
  text-align: center;
  margin-top: 2rem;
}
.contact-block__form .check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 3.5rem;
}
.contact-block__form .check-group-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-block__form textarea {
  resize: vertical;
  height: 260px;
}
.contact-block__form .submit-btn {
  position: relative;
  width: 280px;
  margin: 0 auto;
  cursor: pointer;
  transition: 0.3s linear;
}
.contact-block__form .submit-btn:hover {
  opacity: 0.6;
}
.contact-block__form .submit-btn input {
  appearance: none;
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: clamp(14px, 13.388px + 0.163vw, 16px);
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #DC1010, #BC0204);
  padding: 2rem 6rem 2rem 4rem;
  text-decoration: none;
  border: none;
  border-radius: 6px;
}
@media (max-width: 575px) {
  .contact-block__form .submit-btn input {
    padding: 2rem 5rem 2rem 2rem;
  }
}
.contact-block__form .submit-btn::before {
  content: "";
  position: absolute;
  display: block;
  top: 30%;
  right: 20px;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #96090A;
}
@media (max-width: 575px) {
  .contact-block__form .submit-btn::before {
    width: 26px;
    height: 26px;
    right: 10px;
  }
}
.contact-block__form .submit-btn .arrow {
  position: absolute;
  display: inline-block;
  top: calc(30% - 5px);
  right: 30px;
  width: 10px;
  height: 1px;
  margin: 4.3px 0;
  border-radius: 9999px;
  background-color: #fff;
}
@media (max-width: 575px) {
  .contact-block__form .submit-btn .arrow {
    width: 9px;
    right: 19px;
  }
}
.contact-block__form .submit-btn .arrow::before, .contact-block__form .submit-btn .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 7px;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 0.5px) 50%;
}
@media (max-width: 575px) {
  .contact-block__form .submit-btn .arrow::before, .contact-block__form .submit-btn .arrow::after {
    width: 6px;
  }
}
.contact-block__form .submit-btn .arrow::before {
  transform: rotate(45deg);
}
.contact-block__form .submit-btn .arrow::after {
  transform: rotate(-45deg);
}
.contact-block__form .required {
  margin-top: 0.2rem;
  font-size: 1.2rem;
  color: #FFF;
  padding: 0.1rem 0.5rem;
  background: #BF0000;
}

.wpcf7-list-item {
  display: block;
  margin-left: 0;
}
.wpcf7-list-item:nth-child(n+2) {
  margin-top: 1rem;
}
.wpcf7-list-item .wpcf7-list-item-label {
  margin: 0 0 0 0.5rem;
}

.wpcf7-spinner {
  margin-top: 1rem;
}

/*pagenation
-----------------------------------------------------*/
.pagination {
  font-size: 1.4rem;
  margin: 6rem 0 0;
  gap: 1rem;
}
@media (max-width: 767px) {
  .pagination {
    position: relative;
    font-size: 1.2rem;
    margin: 4rem 0 0;
  }
}
.pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.pagination span,
.pagination a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  color: #333;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s linear;
  border: 1px solid #dfdfdf;
}
@media (max-width: 575px) {
  .pagination span,
  .pagination a {
    width: 30px;
    height: 30px;
  }
}
.pagination a:hover {
  opacity: 1;
  background: #004CD0;
  color: #FFF;
  border: 1px solid #004CD0;
}
.pagination .current {
  color: #fff;
  background-color: #004CD0;
  border: 1px solid #004CD0;
}
.pagination .prev,
.pagination .pageLink[title=Prev] {
  position: relative;
  border: 1px solid #fff;
}
.pagination .prev:after,
.pagination .pageLink[title=Prev]:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(135deg);
  position: absolute;
  top: 40%;
  right: 13px;
  transition: all 0.3s linear;
}
.pagination .prev:hover::after,
.pagination .pageLink[title=Prev]:hover::after {
  border-right: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
}
.pagination .pageLink[title=Top] {
  position: relative;
  border: 1px solid #fff;
}
.pagination .pageLink[title=Top]:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(135deg);
  position: absolute;
  top: 40%;
  right: 10px;
  transition: all 0.3s linear;
}
.pagination .pageLink[title=Top]:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(135deg);
  position: absolute;
  top: 40%;
  right: 16px;
  transition: all 0.3s linear;
}
.pagination .pageLink[title=Top]:hover::after, .pagination .pageLink[title=Top]:hover::before {
  border-right: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
}
.pagination .next,
.pagination .pageLink[title=Next] {
  position: relative;
  border: 1px solid #fff;
}
.pagination .next:after,
.pagination .pageLink[title=Next]:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(-45deg);
  position: absolute;
  top: 40%;
  right: 17px;
  transition: all 0.3s linear;
}
.pagination .next:hover::after,
.pagination .pageLink[title=Next]:hover::after {
  border-right: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
}
.pagination .pageLink[title=Last] {
  position: relative;
  border: 1px solid #fff;
}
.pagination .pageLink[title=Last]:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(-45deg);
  position: absolute;
  top: 40%;
  right: 14px;
  transition: all 0.3s linear;
}
.pagination .pageLink[title=Last]:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(-45deg);
  position: absolute;
  top: 40%;
  right: 20px;
  transition: all 0.3s linear;
}
.pagination .pageLink[title=Last]:hover::after, .pagination .pageLink[title=Last]:hover::before {
  border-right: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
}

/*mailmaga
-----------------------------------------------------*/
.mailmaga-box {
  background: #fff;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  border-radius: 10px 10px 0 0;
}
.mailmaga-box__title {
  font-size: clamp(22px, 18.327px + 0.98vw, 34px);
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: #004CD0;
  padding: 1rem 2rem;
  margin-bottom: 5rem;
  border-radius: 10px 10px 0 0;
}
@media (max-width: 767px) {
  .mailmaga-box__title {
    margin-bottom: 3rem;
  }
}
.mailmaga-box__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem 0;
  padding: 0 5.2083333333% 5.2083333333%;
}
@media (max-width: 767px) {
  .mailmaga-box__inner {
    padding: 0 2rem 3rem;
  }
}
.mailmaga-box__text {
  width: 44.1860465116%;
}
@media (max-width: 767px) {
  .mailmaga-box__text {
    width: 100%;
  }
}
.mailmaga-box__text h4 {
  font-size: clamp(16px, 14.776px + 0.327vw, 20px);
  margin-bottom: 2rem;
}
.mailmaga-box__img {
  width: 51.1627906977%;
}
@media (max-width: 767px) {
  .mailmaga-box__img {
    width: 100%;
    text-align: center;
  }
}

/*footer
-----------------------------------------------------*/
.footer-contact {
  color: #fff;
  background: url(../images/common/grade_bg01.png) no-repeat center center/cover;
  border-radius: 40px;
  margin: 0 3.125%;
  padding: 6.25%;
}
@media (max-width: 767px) {
  .footer-contact {
    border-radius: 20px;
    padding: 4rem 3rem;
  }
}
.footer-contact .section-heading01 .en,
.footer-contact .section-heading01 h2 {
  color: #fff;
}
@media (max-width: 575px) {
  .footer-contact .section-heading01 .en {
    font-size: 5.5rem;
  }
}
.footer-contact .section-heading01 h2::before {
  background: #fff;
}
.footer-contact__block {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
}
.footer-contact__title {
  flex-shrink: 0;
}
.footer-contact__text {
  width: 45.8333333333%;
}
@media (max-width: 1190px) {
  .footer-contact__text {
    width: 100%;
  }
}
.footer-contact__text em {
  font-size: clamp(18px, 16.711px + 0.331vw, 22px);
  font-weight: bold;
  line-height: 1.6;
}
.footer-contact__btns {
  width: 100%;
  display: flex;
  gap: 2rem 4.1666666667%;
  margin-top: 5rem;
}
@media (max-width: 1023px) {
  .footer-contact__btns {
    gap: 2rem 2%;
  }
}
@media (max-width: 767px) {
  .footer-contact__btns {
    flex-wrap: wrap;
    margin-top: 3rem;
  }
}
.footer-contact__btns .c-btn {
  width: 100%;
  color: #004CD0;
  text-align: left;
  background: #FDFD44;
  word-break: keep-all;
  min-width: inherit;
}
.footer-contact__btns .c-btn em {
  font-size: clamp(22px, 19.421px + 0.661vw, 30px);
  line-height: 1.4;
}

.footer {
  padding: 8rem 0;
}
@media (max-width: 767px) {
  .footer {
    padding: 5rem 0;
  }
}
.footer a {
  text-decoration: none;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem 0;
}
@media (max-width: 960px) {
  .footer-inner {
    flex-direction: column;
    justify-content: center;
  }
}
.footer .footer-link {
  display: flex;
  flex-wrap: wrap;
  gap: 0 6rem;
  font-size: clamp(12px, 11.388px + 0.163vw, 14px);
}
@media (max-width: 960px) {
  .footer .footer-link {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .footer .footer-link {
    justify-content: space-between;
    gap: 2rem 0;
  }
}
@media (max-width: 575px) {
  .footer .footer-link ul {
    width: 48%;
  }
}
.footer .footer-link a {
  display: block;
  color: #333;
  padding: 0.5rem 0;
}
.footer .footer-link .menu-item-has-children .sub-menu {
  font-size: clamp(10px, 9.388px + 0.163vw, 12px);
}
.footer .footer-link .menu-item-has-children .sub-menu li {
  position: relative;
  padding-left: 1rem;
}
.footer .footer-link .menu-item-has-children .sub-menu li::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background-color: #FFF;
  width: 5px;
  height: 1px;
}
.footer-info {
  display: flex;
  flex-direction: column;
}
.footer-bottom {
  display: flex;
  justify-content: end;
  gap: 1rem;
  font-size: clamp(10px, 9.388px + 0.163vw, 12px);
  margin-top: 2rem;
}
@media (max-width: 960px) {
  .footer-bottom {
    justify-content: center;
  }
}
.footer-bottom a {
  color: #333;
}
.footer .copy-right {
  font-size: clamp(10px, 9.388px + 0.163vw, 12px);
  margin-top: 1rem;
  text-align: right;
}
@media (max-width: 960px) {
  .footer .copy-right {
    text-align: center;
  }
}
.footer .page-top {
  position: absolute;
  top: -110px;
  right: 40px;
}
@media (max-width: 767px) {
  .footer .page-top {
    top: -70px;
  }
}
.footer .page-top a {
  position: relative;
  display: block;
  font-size: 1rem;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  padding-top: 3.5rem;
  z-index: 10;
}
.footer .page-top a .arrow {
  position: absolute;
  display: inline-block;
  top: 15px;
  left: calc(50% - 2px);
  width: 1px;
  height: 15px;
  margin: 0;
  border-radius: 9999px;
  background: #004CD0;
}
.footer .page-top a .arrow::before,
.footer .page-top a .arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 10px;
  border-radius: 9999px;
  background: #004CD0;
  transform-origin: 50% 0.5px;
}
.footer .page-top a .arrow::before {
  transform: rotate(45deg);
}
.footer .page-top a .arrow::after {
  transform: rotate(-45deg);
}/*# sourceMappingURL=style.css.map */