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

img {
  vertical-align: top;
}

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

body {
  line-height: 1;
}

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

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

del {
  text-decoration: line-through;
}

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

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #FFF;
  margin: 4rem 0;
  padding: 0;
}
@media (max-width: 575px) {
  hr {
    margin: 3rem 0;
  }
}

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

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

/* link
-----------------------------------------------------*/
a {
  color: #0A235A;
  transition: 0.3s linear;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

ol {
  padding-left: 1em;
}

.float-l {
  float: left;
}

.float-r {
  float: right;
}

.orange {
  color: #f08200;
}

.en {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
}

.mincho {
  font: 1.6rem/1.8 "Noto Serif CJK JP", serif;
}

.gothic {
  font: 1.6rem/1.8 "Noto Sans JP", sans-serif;
}

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

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

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

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

.color-main {
  color: #0A235A !important;
}

.color-accent01 {
  color: !important;
}

.color-caution {
  color: !important;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

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

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

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

.pos-r {
  position: relative;
}

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

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

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

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

/* 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-5 {
  margin-top: 0.5rem !important;
}

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

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

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

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

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

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

.pr-5 {
  padding-right: 0.5rem !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-5-xl {
    margin-top: 0.5rem !important;
  }
  .pt-5-xl {
    padding-top: 0.5rem !important;
  }
  .mb-5-xl {
    margin-bottom: 0.5rem !important;
  }
  .pb-5-xl {
    padding-bottom: 0.5rem !important;
  }
  .ml-5-xl {
    margin-left: 0.5rem !important;
  }
  .pl-5-xl {
    padding-left: 0.5rem !important;
  }
  .mr-5-xl {
    margin-right: 0.5rem !important;
  }
  .pr-5-xl {
    padding-right: 0.5rem !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-5-lg {
    margin-top: 0.5rem !important;
  }
  .pt-5-lg {
    padding-top: 0.5rem !important;
  }
  .mb-5-lg {
    margin-bottom: 0.5rem !important;
  }
  .pb-5-lg {
    padding-bottom: 0.5rem !important;
  }
  .ml-5-lg {
    margin-left: 0.5rem !important;
  }
  .pl-5-lg {
    padding-left: 0.5rem !important;
  }
  .mr-5-lg {
    margin-right: 0.5rem !important;
  }
  .pr-5-lg {
    padding-right: 0.5rem !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-5-md {
    margin-top: 0.5rem !important;
  }
  .pt-5-md {
    padding-top: 0.5rem !important;
  }
  .mb-5-md {
    margin-bottom: 0.5rem !important;
  }
  .pb-5-md {
    padding-bottom: 0.5rem !important;
  }
  .ml-5-md {
    margin-left: 0.5rem !important;
  }
  .pl-5-md {
    padding-left: 0.5rem !important;
  }
  .mr-5-md {
    margin-right: 0.5rem !important;
  }
  .pr-5-md {
    padding-right: 0.5rem !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-5-sm {
    margin-top: 0.5rem !important;
  }
  .pt-5-sm {
    padding-top: 0.5rem !important;
  }
  .mb-5-sm {
    margin-bottom: 0.5rem !important;
  }
  .pb-5-sm {
    padding-bottom: 0.5rem !important;
  }
  .ml-5-sm {
    margin-left: 0.5rem !important;
  }
  .pl-5-sm {
    padding-left: 0.5rem !important;
  }
  .mr-5-sm {
    margin-right: 0.5rem !important;
  }
  .pr-5-sm {
    padding-right: 0.5rem !important;
  }
  .mt-10-sm {
    margin-top: 1rem !important;
  }
  .pt-10-sm {
    padding-top: 1rem !important;
  }
  .mb-10-sm {
    margin-bottom: 1rem !important;
  }
  .pb-10-sm {
    padding-bottom: 1rem !important;
  }
  .ml-10-sm {
    margin-left: 1rem !important;
  }
  .pl-10-sm {
    padding-left: 1rem !important;
  }
  .mr-10-sm {
    margin-right: 1rem !important;
  }
  .pr-10-sm {
    padding-right: 1rem !important;
  }
  .mt-15-sm {
    margin-top: 1.5rem !important;
  }
  .pt-15-sm {
    padding-top: 1.5rem !important;
  }
  .mb-15-sm {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-sm {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-sm {
    margin-left: 1.5rem !important;
  }
  .pl-15-sm {
    padding-left: 1.5rem !important;
  }
  .mr-15-sm {
    margin-right: 1.5rem !important;
  }
  .pr-15-sm {
    padding-right: 1.5rem !important;
  }
  .mt-20-sm {
    margin-top: 2rem !important;
  }
  .pt-20-sm {
    padding-top: 2rem !important;
  }
  .mb-20-sm {
    margin-bottom: 2rem !important;
  }
  .pb-20-sm {
    padding-bottom: 2rem !important;
  }
  .ml-20-sm {
    margin-left: 2rem !important;
  }
  .pl-20-sm {
    padding-left: 2rem !important;
  }
  .mr-20-sm {
    margin-right: 2rem !important;
  }
  .pr-20-sm {
    padding-right: 2rem !important;
  }
  .mt-25-sm {
    margin-top: 2.5rem !important;
  }
  .pt-25-sm {
    padding-top: 2.5rem !important;
  }
  .mb-25-sm {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-sm {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-sm {
    margin-left: 2.5rem !important;
  }
  .pl-25-sm {
    padding-left: 2.5rem !important;
  }
  .mr-25-sm {
    margin-right: 2.5rem !important;
  }
  .pr-25-sm {
    padding-right: 2.5rem !important;
  }
  .mt-30-sm {
    margin-top: 3rem !important;
  }
  .pt-30-sm {
    padding-top: 3rem !important;
  }
  .mb-30-sm {
    margin-bottom: 3rem !important;
  }
  .pb-30-sm {
    padding-bottom: 3rem !important;
  }
  .ml-30-sm {
    margin-left: 3rem !important;
  }
  .pl-30-sm {
    padding-left: 3rem !important;
  }
  .mr-30-sm {
    margin-right: 3rem !important;
  }
  .pr-30-sm {
    padding-right: 3rem !important;
  }
  .mt-35-sm {
    margin-top: 3.5rem !important;
  }
  .pt-35-sm {
    padding-top: 3.5rem !important;
  }
  .mb-35-sm {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-sm {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-sm {
    margin-left: 3.5rem !important;
  }
  .pl-35-sm {
    padding-left: 3.5rem !important;
  }
  .mr-35-sm {
    margin-right: 3.5rem !important;
  }
  .pr-35-sm {
    padding-right: 3.5rem !important;
  }
  .mt-40-sm {
    margin-top: 4rem !important;
  }
  .pt-40-sm {
    padding-top: 4rem !important;
  }
  .mb-40-sm {
    margin-bottom: 4rem !important;
  }
  .pb-40-sm {
    padding-bottom: 4rem !important;
  }
  .ml-40-sm {
    margin-left: 4rem !important;
  }
  .pl-40-sm {
    padding-left: 4rem !important;
  }
  .mr-40-sm {
    margin-right: 4rem !important;
  }
  .pr-40-sm {
    padding-right: 4rem !important;
  }
  .mt-45-sm {
    margin-top: 4.5rem !important;
  }
  .pt-45-sm {
    padding-top: 4.5rem !important;
  }
  .mb-45-sm {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-sm {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-sm {
    margin-left: 4.5rem !important;
  }
  .pl-45-sm {
    padding-left: 4.5rem !important;
  }
  .mr-45-sm {
    margin-right: 4.5rem !important;
  }
  .pr-45-sm {
    padding-right: 4.5rem !important;
  }
  .mt-50-sm {
    margin-top: 5rem !important;
  }
  .pt-50-sm {
    padding-top: 5rem !important;
  }
  .mb-50-sm {
    margin-bottom: 5rem !important;
  }
  .pb-50-sm {
    padding-bottom: 5rem !important;
  }
  .ml-50-sm {
    margin-left: 5rem !important;
  }
  .pl-50-sm {
    padding-left: 5rem !important;
  }
  .mr-50-sm {
    margin-right: 5rem !important;
  }
  .pr-50-sm {
    padding-right: 5rem !important;
  }
  .mt-60-sm {
    margin-top: 6rem !important;
  }
  .pt-60-sm {
    padding-top: 6rem !important;
  }
  .mb-60-sm {
    margin-bottom: 6rem !important;
  }
  .pb-60-sm {
    padding-bottom: 6rem !important;
  }
  .ml-60-sm {
    margin-left: 6rem !important;
  }
  .pl-60-sm {
    padding-left: 6rem !important;
  }
  .mr-60-sm {
    margin-right: 6rem !important;
  }
  .pr-60-sm {
    padding-right: 6rem !important;
  }
  .mt-70-sm {
    margin-top: 7rem !important;
  }
  .pt-70-sm {
    padding-top: 7rem !important;
  }
  .mb-70-sm {
    margin-bottom: 7rem !important;
  }
  .pb-70-sm {
    padding-bottom: 7rem !important;
  }
  .ml-70-sm {
    margin-left: 7rem !important;
  }
  .pl-70-sm {
    padding-left: 7rem !important;
  }
  .mr-70-sm {
    margin-right: 7rem !important;
  }
  .pr-70-sm {
    padding-right: 7rem !important;
  }
  .mt-80-sm {
    margin-top: 8rem !important;
  }
  .pt-80-sm {
    padding-top: 8rem !important;
  }
  .mb-80-sm {
    margin-bottom: 8rem !important;
  }
  .pb-80-sm {
    padding-bottom: 8rem !important;
  }
  .ml-80-sm {
    margin-left: 8rem !important;
  }
  .pl-80-sm {
    padding-left: 8rem !important;
  }
  .mr-80-sm {
    margin-right: 8rem !important;
  }
  .pr-80-sm {
    padding-right: 8rem !important;
  }
  .mt-100-sm {
    margin-top: 10rem !important;
  }
  .pt-100-sm {
    padding-top: 10rem !important;
  }
  .mb-100-sm {
    margin-bottom: 10rem !important;
  }
  .pb-100-sm {
    padding-bottom: 10rem !important;
  }
  .ml-100-sm {
    margin-left: 10rem !important;
  }
  .pl-100-sm {
    padding-left: 10rem !important;
  }
  .mr-100-sm {
    margin-right: 10rem !important;
  }
  .pr-100-sm {
    padding-right: 10rem !important;
  }
}
body {
  background-image: linear-gradient(to bottom, #EBF1F7 0%, #FFFFFF 100%);
}
body .body_inner {
  background-color: #FFF;
  width: 100%;
  margin: 0 auto 7rem auto;
  box-shadow: 0px -4px 20px 0px rgba(10, 35, 90, 0.15);
}
@media (min-width: 660px) {
  body .body_inner {
    max-width: 660px;
  }
}
@media (max-width: 575px) {
  body .body_inner {
    margin: 0 auto;
  }
}

/*header
-----------------------------------------------------*/
header {
  position: fixed;
  z-index: 99999;
  width: 270px;
  top: 50%;
  left: 50%;
  transform: translate(-700px, -50%);
}
@media (max-width: 1439px) {
  header {
    width: 100%;
    margin: auto;
    top: 0;
    left: 0;
    transform: none;
  }
}

.logo {
  margin-bottom: 2rem;
}
.logo img {
  width: 270px;
}
@media (max-width: 575px) {
  .logo img {
    width: 150px;
  }
}
.logo a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo a:hover {
  opacity: 1;
}

.sm-nav {
  display: none;
}
@media (max-width: 1439px) {
  .sm-nav {
    display: block;
  }
}

.pc-nav {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1439px) {
  .pc-nav {
    display: none;
  }
}
@media (max-height: 650px) {
  .pc-nav {
    display: none;
  }
}
.pc-nav nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.6rem;
  padding: 1rem 0;
  display: block;
}

.contact-btn-nav {
  margin: 2rem auto 0 auto;
  width: 100%;
}
.contact-btn-nav .btn01 {
  font-size: 1.8rem;
  padding: 2.5rem 2rem;
  max-width: 270px;
  width: 100%;
  height: 62px;
}

/*hamburger
-----------------------------------------------------*/
.sm-nav {
  margin: 0;
  transition: all 0.6s;
  overflow-y: auto;
  width: 255px;
  height: 100vh;
  z-index: 200;
  top: 0;
  left: -320px;
  background-color: #0A235A;
  position: fixed;
  display: block;
}
.sm-nav__inner {
  padding: 0 2rem;
}
.sm-nav__inner a {
  display: block;
  color: #FFF;
  font-weight: 700;
  padding: 1.5rem 2rem;
  font-size: 1.6rem;
  text-decoration: none;
}
.sm-nav__inner a:hover {
  color: #B98D35;
}
.sm-nav__inner li {
  position: relative;
}
.sm-nav__inner li a {
  position: relative;
}
.sm-nav__inner .accordion-btn {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 49px;
  width: 70px;
  z-index: 1000;
  cursor: pointer;
  display: table;
}
.sm-nav__inner .accordion-btn::before {
  content: "";
  display: block;
  position: absolute;
  right: 2rem;
  top: 0;
  bottom: 0;
  margin: auto;
  text-align: right;
  border-right: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
}

@media (max-width: 1439px) {
  .nav_btn__wrap {
    width: 100%;
    max-width: 660px;
    margin: auto;
    height: 90px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    z-index: 9999;
  }
}

.nav_btn {
  width: 40px;
  height: 40px;
  z-index: 300000;
  top: 22px;
  right: 20px;
  margin: auto;
  cursor: pointer;
  position: absolute;
  background: #00A0E9;
  display: none;
  border-radius: 50px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1439px) {
  .nav_btn {
    display: block;
  }
}
@media (max-width: 575px) {
  .nav_btn {
    top: 12px;
    right: 12px;
  }
}

.hamburger_line {
  transition: all 0.6s;
  width: 20px;
  height: 1px;
  background-color: #FFF;
  position: absolute;
  left: 10px;
}

.hamburger_line1 {
  top: 15px;
}

.hamburger_line2 {
  top: 24px;
}

.hamburger.active span:nth-child(1) {
  top: 20px;
  background: #FFF;
  transform: rotate(-45deg);
}

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

.globalMenu {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  width: 100%;
  transform: translateY(-100%);
  transition: all 0.6s;
  height: 100%;
  box-sizing: border-box;
  overscroll-behavior-y: contain;
  overflow-y: auto;
}
@media (max-width: 1439px) {
  .globalMenu {
    display: block;
  }
}

.nav__gnav {
  margin: 0 auto;
  padding: 1rem 2rem;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}
.nav__gnav li {
  padding: 0 1rem;
  list-style-type: none;
  width: 100%;
  transition: 0.4s all;
  font-size: 1.5rem;
  font-weight: bold;
  box-sizing: border-box;
}
.nav__gnav li:last-child {
  padding-bottom: 0;
}
.nav__gnav li a {
  display: block;
  color: #333;
  font-size: 1.6rem;
  padding: 1.5rem 0;
  text-decoration: none;
  display: inline-block;
}
@media (max-width: 575px) {
  .nav__gnav li a {
    padding: 1rem 0;
  }
}
.nav__gnav li.menu-item-has-children {
  position: relative;
}
.nav__gnav li.menu-item-has-children.parent-link-none > a {
  pointer-events: none;
}
.nav__gnav li .sub-menu li {
  padding-left: 1rem;
  font-size: 1.3rem;
}
.nav__gnav li .sub-menu li a {
  transition: 0.3s linear;
  font-weight: normal;
  position: relative;
  margin-left: 2rem;
}
.nav__gnav li .sub-menu li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -2rem;
  transform: translateY(-50%);
  width: 7px;
  height: 1px;
  background: #fff;
  transition: 0.3s linear;
}
.nav__gnav li .sub-menu li a:hover {
  color: #B98D35;
}
.nav__gnav li .sub-menu li a:hover::before {
  background: #B98D35;
}

.globalMenu.active {
  opacity: 100;
  display: block;
  transform: translateY(0%);
  padding-top: 4rem;
}

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

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

.container-ex {
  max-width: 1020px;
  padding: 0 5%;
  margin: 0 auto;
}

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

.container-xl {
  max-width: 1430px;
  padding: 0 5%;
  margin: 0 auto;
}

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

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

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

.color-g {
  color: #A99A29;
}

.color-r {
  color: #FF0000;
}

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

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

.box01 {
  background-color: #F5F8FB;
  margin: 2.5rem auto;
  padding: 2.5rem 3rem;
}
@media (max-width: 575px) {
  .box01 {
    padding: 2.5rem 2rem;
  }
}

.box02 {
  background-color: #F5F8FB;
  margin: 2rem auto;
  padding: 2.3rem 2rem;
}

ul.check {
  list-style: none;
}
ul.check li {
  line-height: 1.6em;
  background: url(../images/icon_check.svg) left 0px top 14px no-repeat;
  background-size: 24px auto;
  font-size: 1.7rem;
  font-weight: 700;
  padding: 1.2rem 0 1.2rem 3.5rem;
  border-bottom: 1px solid #CFCFCF;
}
ul.check li:last-of-type {
  border-bottom: 0;
}
@media (max-width: 575px) {
  ul.check li {
    font-size: 1.6rem;
  }
}

ul.disc {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
}
ul.disc li {
  padding: 1rem 0;
  padding-left: 2rem;
  text-indent: -2rem;
}
ul.disc li:first-of-type {
  padding-top: 0;
}
ul.disc li:last-of-type {
  padding-bottom: 0;
}
ul.disc li + li {
  border-top: 1px solid #CFCFCF;
}
ul.disc--noborder {
  padding-left: 0.5rem;
}
ul.disc--noborder li {
  padding: 0 0 0 2rem;
  text-indent: -2rem;
}
ul.disc--noborder li + li {
  border-top: 0;
}

ul.circle-num {
  margin-top: 2.5rem;
}
ul.circle-num li {
  border-bottom: 1px solid #CFCFCF;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  padding-left: 4.5rem;
  text-indent: -4rem;
}
ul.circle-num li .en {
  color: #FFF;
  background-color: #A99A29;
  border-radius: 50%;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  text-align: center;
  margin-right: 1rem;
  text-indent: 0;
}
ul.circle-num li:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

ul.kome li {
  position: relative;
  padding-left: 1.2em;
}
ul.kome li::before {
  content: "※";
  position: absolute;
  left: 0;
  color: #404040;
}
ul.kome li + li {
  margin-top: 0.4rem;
}

ol.number {
  list-style-type: decimal;
  list-style-position: inside;
  padding-left: 0;
}
ol.number li {
  padding: 1rem 0;
  padding-left: 2.5rem;
  text-indent: -2rem;
}
ol.number li:first-of-type {
  padding-top: 0;
}
ol.number li:last-of-type {
  padding-bottom: 0;
}
ol.number li + li {
  border-top: 1px solid #CFCFCF;
}
ol.number--noborder {
  padding-left: 0.5rem;
}
ol.number--noborder li {
  padding: 0 0 0 2rem;
}
ol.number--noborder li + li {
  border-top: 0;
}

/*h*/
/*お悩みのところ*/
.h-wrap {
  padding: 5rem 0 10rem 0;
}
.h-wrap--b {
  background-color: #0A235A;
}
.h-wrap--g {
  background-color: #A99A29;
}
.h-wrap h2 {
  font-family: "Noto Serif CJK JP";
  font-size: 2.4rem;
  color: #FFF;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  line-height: 1.6;
  margin-top: -7rem;
  letter-spacing: 1px;
}
.h-wrap h2::before {
  content: "";
  width: 1px;
  height: 40px;
  background-color: #CFCFCF;
}
@media (max-width: 575px) {
  .h-wrap h2 {
    font-size: 2rem;
  }
}

.h-wrap__bottom {
  margin-top: -6rem;
  margin-bottom: 2rem;
}

/*英語と日本語*/
/*背景あり・なし*/
.h-sec {
  text-align: center;
}
.h-sec--bg, .h-sec--bg-w, .h-sec--bg-v {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  padding: 4rem 0 10rem 0;
}
.h-sec--bg {
  background-image: url(../images/bg-hsec.png);
}
.h-sec--bg-w {
  background-image: url(../images/bg-hsec02.png);
}
.h-sec--bg-v {
  background-image: url(../images/bg-hsec03.png);
  background-size: 100%;
  background-position: top center;
  padding: 7rem 0 20rem 0;
}
.h-sec__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.h-sec__inner .en {
  position: relative;
  display: inline-block;
  padding: 0 8rem;
  font-size: clamp(1.4rem, -2.2rem + 4.8vw, 2rem);
  line-height: 1.3;
}
.h-sec__inner .en::before, .h-sec__inner .en::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 62px;
  height: 1px;
  background-color: #000;
}
.h-sec__inner .en::before {
  left: 0;
}
.h-sec__inner .en::after {
  right: 0;
}
.h-sec__inner h2 {
  font-family: "Noto Serif CJK JP";
  letter-spacing: 1px;
  font-size: 2.6rem;
  line-height: 1.5;
}
@media (max-width: 575px) {
  .h-sec__inner h2 {
    font-size: 2.2rem;
  }
}
.h-sec--w {
  color: #FFF;
}
.h-sec--w .h-sec__inner .en::before, .h-sec--w .h-sec__inner .en::after {
  background-color: #FFF;
}

.h-sec02 {
  font-family: "Noto Serif CJK JP";
  letter-spacing: 1px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.5;
}
.h-sec02::after {
  content: "";
  background-color: #FFF;
  width: 50px;
  height: 5px;
  margin-top: 2rem;
}

.h-line-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.h-line {
  font-family: "Noto Serif CJK JP";
  position: relative;
  display: inline-block;
  padding: 0 8rem;
  font-size: 2.4rem;
}
.h-line::before, .h-line::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 62px;
  height: 1px;
  background-color: #FFF;
}
.h-line::before {
  left: 0;
}
.h-line::after {
  right: 0;
}

/*btn
-----------------------------------------------------*/
/*ページ内共通*/
.contact-btn {
  margin: 2rem auto 0 auto;
}

.btn01 {
  color: #FFF;
  font-size: 1.7rem;
  font-size: clamp(1.5rem, 3.4vw, 1.7rem);
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  padding: 2.5rem 2rem;
  border-radius: 100px;
  box-sizing: border-box;
  max-width: 350px;
  height: 62px;
  width: 100%;
  background-color: #00A0E9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: auto;
}
@media (max-width: 575px) {
  .btn01 {
    max-width: 300px;
  }
}
.btn01::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  transform: rotate(45deg);
}

/*scroll-hint
-----------------------------------------------------*/
.tableArea {
  max-width: 100%;
  overflow: auto;
}

@media (max-width: 767px) {
  .tableArea table th,
  .tableArea table td {
    white-space: nowrap;
    /*文字を折り返さない*/
  }
}

/*main-v
-----------------------------------------------------*/
.main-v {
  position: relative;
}
.main-v__img img {
  width: 100%;
}
.main-v__bottom {
  margin-top: -3rem;
}

/*intro
-----------------------------------------------------*/
.intro {
  padding: 5rem 0;
}

/*trouble
-----------------------------------------------------*/
.trouble .donut {
  padding: 0 3rem;
}
@media (max-width: 659px) {
  .trouble .donut {
    padding: 0 2rem;
  }
}
@media (max-width: 575px) {
  .trouble .donut {
    padding: 0;
  }
}

/*future
-----------------------------------------------------*/
.future {
  margin-top: 5rem;
}
.future__list {
  margin-top: -6rem;
}
.future__list__box {
  display: flex;
  justify-content: space-between;
  gap: 2.6rem;
  padding: 3rem 0;
  border-top: 1px solid #CFCFCF;
}
@media (max-width: 575px) {
  .future__list__box {
    gap: 2rem;
    padding: 2rem 0;
  }
}
.future__list__box:first-of-type {
  border-top: 0;
}
.future__list__box .col01 {
  width: 100%;
  max-width: 116px;
}
@media (max-width: 575px) {
  .future__list__box .col01 {
    max-width: 100px;
  }
}
.future__list__box .col01 img {
  max-width: 116px;
  width: 100%;
  display: block;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
@media (max-width: 575px) {
  .future__list__box .col01 img {
    max-width: 100px;
  }
}
.future__list__box .col02 {
  width: 100%;
}
.future__list__box .col02 h3 {
  color: #1A3C7B;
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
@media (max-width: 575px) {
  .future__list__box .col02 h3 {
    font-size: 1.6rem;
  }
}

/*reason
-----------------------------------------------------*/
.reason {
  background-color: #0A235A;
  color: #FFF;
  position: relative;
  padding: 7rem 0;
}
.reason::after {
  position: absolute;
  border: 1px solid #FFF;
  content: "";
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
}
.reason .container-md {
  position: relative;
  z-index: 1;
}
@media (max-width: 575px) {
  .reason .container-md {
    padding: 0 3rem;
  }
}
.reason-img {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}
.reason-img img {
  width: 50%;
}
@media (max-width: 575px) {
  .reason-text {
    text-align: left;
  }
}

/*point
-----------------------------------------------------*/
.point {
  padding: 7rem 0;
}
.point-box {
  margin-top: 4rem;
}
.point-box .h-point {
  display: flex;
  margin-bottom: 1.8rem;
}
.point-box .h-point p {
  background-color: #A99A29;
  color: #FFF;
  font-size: 3.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  padding: 1rem 1.5rem;
  line-height: 1;
  max-width: 4rem;
  width: 100%;
}
.point-box .h-point p span {
  font-size: 1.2rem;
}
.point-box .h-point h3 {
  background-color: #0A235A;
  color: #FFF;
  font-size: 2rem;
  padding: 1.5rem 2rem;
  line-height: 1.4;
  display: flex;
  align-items: center;
  width: 100%;
}
@media (max-width: 575px) {
  .point-box .h-point h3 {
    font-size: 1.8rem;
  }
}
.point-box .img {
  margin: 3rem auto;
}
.point-box .img img {
  width: 100%;
}
.point-box .support {
  border-top: 4px solid #0A235A;
  background-color: #F5F8FB;
  padding: 3.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 575px) {
  .point-box .support {
    padding: 2.5rem 2rem;
    margin-top: 2rem;
  }
}
.point-box .support h4 {
  font-size: 2rem;
  line-height: 1.1;
  border-bottom: 1px solid #CFCFCF;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  padding-left: 4rem;
  text-indent: -4rem;
}
@media (max-width: 575px) {
  .point-box .support h4 {
    font-size: 1.8rem;
  }
}
.point-box .support h4 .en {
  color: #FFF;
  background-color: #A99A29;
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  margin-right: 1rem;
  text-indent: 0;
}
.point-box .fukidashi {
  display: flex;
  justify-content: center;
  margin: 3rem auto;
}
.point-box .fukidashi .col01 {
  width: 60px;
}
.point-box .fukidashi .col01 img {
  width: 36px;
}
.point-box .fukidashi .col02 {
  width: 80%;
  background-color: #F5F8FB;
  border-radius: 5px;
  padding: 2.5rem;
  position: relative;
}
@media (max-width: 575px) {
  .point-box .fukidashi .col02 {
    width: 68%;
    padding: 2.5rem 2rem;
  }
}
.point-box .fukidashi .col02::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-bottom: 16px solid #F5F8FB;
  border-top: 0;
  position: absolute;
  top: 14px;
  left: -18px;
  transform: rotate(45deg);
}
.point .open-box {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.point .open-box__ttl {
  background-color: #0A235A;
  cursor: pointer;
  font-size: 2rem;
  padding: 2rem 6rem 2rem 2rem;
  position: relative;
  box-sizing: border-box;
}
.point .open-box__ttl h5 {
  color: #FFF;
  line-height: 1.4;
}
.point .open-box__ttl.open .arrow::after {
  transform: rotate(-45deg);
  top: 4px;
}
.point .open-box .arrow {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
}
.point .open-box .arrow::before {
  content: "";
  background-color: #FFF;
  width: 26px;
  height: 26px;
  position: absolute;
}
.point .open-box .arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  transition: 0.3s;
}
.point .open-box .arrow::after {
  left: 8px;
  width: 8px;
  height: 8px;
  top: -2px;
  transform: rotate(135deg);
  border-top: 2px solid #0A235A;
  border-right: 2px solid #0A235A;
}
.point .open-box__text {
  display: none;
  padding: 2.5rem 2rem;
  box-sizing: border-box;
  background-color: #FFF;
  border-right: 1px solid #0A235A;
  border-left: 1px solid #0A235A;
  border-bottom: 1px solid #0A235A;
}
@media (max-width: 767px) {
  .point .open-box__text {
    font-size: 1.6rem;
    padding: 1.5rem 3rem 2.5rem 2rem;
  }
}
@media (max-width: 575px) {
  .point .open-box__text {
    font-size: 1.4rem;
  }
}
.point .open-box__text__inner {
  display: flex;
  gap: 2rem;
}

/*possible
-----------------------------------------------------*/
.possible {
  background-color: #0A235A;
  color: #FFF;
  padding-bottom: 7rem;
  /*続きを読む1*/
  /*開くためのボタンとテキストを隠すグラデーションの設定*/
  /* 開いた時にグラデーションを消す */
  /*続きを見るボタン*/
  /*閉じるボタン*/
  /*続きを読む2*/
  /*開くためのボタンとテキストを隠すグラデーションの設定*/
  /* 開いた時にグラデーションを消す */
  /*続きを見るボタン*/
  /*閉じるボタン*/
}
.possible .h-sec {
  padding: 8rem 0;
}
.possible .mt--40 {
  margin-top: -4rem;
}
.possible-box {
  background-color: #FFF;
  color: #404040;
  border-top: 4px solid #A99A29;
  padding: 3rem 3.5rem;
  margin: 2rem auto 5rem auto;
}
@media (max-width: 575px) {
  .possible-box {
    padding: 2.5rem 3rem;
  }
}
.possible .w-box {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem;
  margin: 2rem auto;
}
.possible .w-box .disc li + li {
  margin-top: 0.4rem;
}
.possible .cp_container {
  position: relative;
  margin-bottom: 4rem;
}
.possible .cp_container.is-collapsed::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 50%, rgba(250, 252, 252, 0.9) 90%);
}
.possible .cp_container table {
  width: 100%;
  color: #404040;
}
.possible .cp_container table th,
.possible .cp_container table td {
  padding: 1.2rem 2rem;
}
@media (max-width: 575px) {
  .possible .cp_container table th,
  .possible .cp_container table td {
    padding: 1.2rem 1.5rem;
  }
}
.possible .cp_container table th {
  background-color: #A99A29;
  color: #FFF;
  text-align: left;
}
.possible .cp_container table th:first-of-type {
  border-right: 1px solid #CFCFCF;
  width: 17rem;
  vertical-align: middle;
}
@media (max-width: 575px) {
  .possible .cp_container table th:first-of-type {
    width: 11rem;
  }
}
.possible .cp_container table td {
  background-color: #FFF;
  vertical-align: middle;
}
.possible .cp_container table td:first-of-type {
  border-right: 1px solid #CFCFCF;
}
.possible .cp_container table tr {
  border-bottom: 1px solid #CFCFCF;
}
.possible .cp_container table tr:last-of-type {
  border-bottom: 0;
}
.possible .cp_box1 {
  position: relative;
}
.possible .cp_box1 input {
  display: none;
}
.possible .cp_box1 label {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  bottom: -10px;
  width: 100%;
  height: 140px;
  /* グラデーションの高さ */
  cursor: pointer;
  text-align: center;
  /* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
  background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(250, 252, 252, 0.95) 90%);
}
.possible .cp_box1 input:checked + label {
  background: inherit;
}
.possible .cp_box1 input:checked + label {
  /* display: none ; 閉じるボタンを消す場合コメントアウトを外す */
}
.possible .cp_box1 .cp_container {
  overflow: hidden;
  max-height: 300px;
  /* 開く前に見えている部分の高さ */
  transition: all 0.5s;
}
.possible .cp_box1 label:after,
.possible .cp_box1 label::before {
  content: "";
  position: absolute;
  line-height: 2.5rem;
}
.possible .cp_box1 label:after {
  z-index: 2;
  bottom: 20px;
  width: 13em;
  content: "続きを見る";
  color: #ffffff;
  background: #00A0E9;
  border-radius: 50px;
  padding: 1rem 2rem;
}
.possible .cp_box1 label::before {
  position: absolute;
  bottom: 38px;
  left: calc(50% - 3.5em);
  z-index: 3;
  width: 10px;
  height: 5px;
  background: #ffffff;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.possible .cp_box1 input:checked + label:after {
  content: "閉じる";
}
.possible .cp_box1 input:checked + label:before {
  left: calc(50% - 2.5em);
  transform: scale(1, -1);
}
.possible .cp_box1 input:checked ~ .cp_container {
  height: auto;
  padding-bottom: 80px;
  /* 閉じるボタンのbottomからの位置 */
  transition: all 0.5s;
}
.possible .cp_box2 {
  position: relative;
}
.possible .cp_box2 input {
  display: none;
}
.possible .cp_box2 label {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  bottom: -10px;
  width: 100%;
  height: 140px;
  /* グラデーションの高さ */
  cursor: pointer;
  text-align: center;
  /* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
  background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(250, 252, 252, 0.95) 90%);
}
.possible .cp_box2 input:checked + label {
  background: inherit;
}
.possible .cp_box2 input:checked + label {
  /* display: none ; 閉じるボタンを消す場合コメントアウトを外す */
}
.possible .cp_box2 .cp_container {
  overflow: hidden;
  height: 200px;
  /* 開く前に見えている部分の高さ */
  transition: all 0.5s;
}
.possible .cp_box2 label:after,
.possible .cp_box2 label::before {
  content: "";
  position: absolute;
  line-height: 2.5rem;
}
.possible .cp_box2 label:after {
  z-index: 2;
  bottom: 20px;
  width: 13em;
  content: "続きを見る";
  color: #ffffff;
  background: #00A0E9;
  border-radius: 50px;
  padding: 1rem 2rem;
}
.possible .cp_box2 label::before {
  position: absolute;
  bottom: 38px;
  left: calc(50% - 3.5em);
  z-index: 3;
  width: 10px;
  height: 5px;
  background: #ffffff;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.possible .cp_box2 input:checked + label:after {
  content: "閉じる";
}
.possible .cp_box2 input:checked + label:before {
  left: calc(50% - 2.5em);
  transform: scale(1, -1);
}
.possible .cp_box2 input:checked ~ .cp_container {
  height: auto;
  padding-bottom: 80px;
  /* 閉じるボタンのbottomからの位置 */
  transition: all 0.5s;
}

.is-collapsed {
  max-height: 200px; /* 閉じているときの高さ制限 */
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s ease;
}

.js-readmore-content {
  transition: max-height 0.5s ease;
}

/* 開いた状態は高さを十分大きく取る */
.js-readmore-content:not(.is-collapsed) {
  max-height: 3000px !important; /* 表の行数に応じて必要なだけ広げる */
}

.js-readmore-toggle {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  margin: auto;
  border: none;
  font-size: 1.4rem;
  z-index: 2;
  width: 13em;
  height: 40px;
  content: "続きを見る";
  color: #ffffff;
  background: #00A0E9;
  border-radius: 50px;
  padding: 1rem 2rem;
}

.button-wrap {
  height: 40px;
}

/*benefits
-----------------------------------------------------*/
.benefits {
  padding: 7rem 0;
}
.benefits .h-sec__inner {
  gap: 0.5rem;
}
.benefits .h-sec__inner p {
  font-family: "Noto Serif CJK JP";
  font-size: 1.8rem;
}
.benefits .h-sec__inner h2 {
  font-size: 3.2rem;
}
@media (max-width: 575px) {
  .benefits .h-sec__inner h2 {
    font-size: 2.8rem;
  }
}
.benefits h3 {
  margin-bottom: 2.5rem;
  background-color: #0A235A;
  color: #FFF;
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 2rem 1rem 0;
  margin-top: 3rem;
  line-height: 1.6;
}
@media (max-width: 575px) {
  .benefits h3 {
    font-size: 1.8rem;
  }
}
.benefits h3::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: #FFF;
  display: block;
}

/*voice
-----------------------------------------------------*/
.voice {
  background-color: #F6FBFD;
  padding-bottom: 7rem;
}
.voice .h-sec h2 {
  font-size: 2.6rem;
}
@media (max-width: 575px) {
  .voice .h-sec h2 {
    font-size: 2.2rem;
  }
}
.voice-box {
  padding: 4rem 3.5rem;
  background-color: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}
@media (max-width: 575px) {
  .voice-box {
    padding: 3rem 2.5rem;
    margin-bottom: 2rem;
  }
}
.voice-box:first-of-type {
  margin-top: -16rem;
}
.voice-box:last-of-type {
  margin-bottom: 0;
}
.voice-box__top {
  display: flex;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #CFCFCF;
}
.voice-box__top .col01 {
  width: 100%;
  max-width: 110px;
}
@media (max-width: 575px) {
  .voice-box__top .col01 {
    max-width: 90px;
  }
}
.voice-box__top .col01 img {
  max-width: 110px;
  width: 100%;
  display: block;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
@media (max-width: 575px) {
  .voice-box__top .col01 img {
    max-width: 90px;
  }
}
.voice-box__top .col02 h3 {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
@media (max-width: 575px) {
  .voice-box__top .col02 h3 {
    font-size: 1.6rem;
  }
}
.voice-box__top .col02 p {
  font-size: 1.2rem;
}
.voice-box__bottom {
  padding-top: 1.5rem;
}
.voice-box__bottom p {
  font-size: 1.4rem;
}
.voice-box__bottom .number {
  margin: 2rem auto;
}
.voice-box__bottom .number li {
  font-weight: 700;
  font-size: 1.4rem;
  padding-left: 1.5rem;
  text-indent: -1.5rem;
}
.voice-box__bottom .number li p {
  font-weight: 400;
  text-indent: 0;
  padding-left: 0;
}
.voice-box__bottom .number li + li {
  margin-top: 1.5rem;
}

/*examination
-----------------------------------------------------*/
.examination {
  background-color: #0A235A;
  color: #FFF;
  position: relative;
  padding: 7rem 0;
}
.examination::after {
  position: absolute;
  border: 1px solid #FFF;
  content: "";
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
}
.examination__inner {
  max-width: 524px;
  margin: auto;
}
.examination .container-md {
  position: relative;
  z-index: 1;
}
@media (max-width: 575px) {
  .examination .container-md {
    padding: 0 3rem;
  }
}
.examination .h-sec {
  margin-bottom: 4rem;
}
.examination .circle-num {
  margin-bottom: 3rem;
}
.examination .circle-num li:last-of-type {
  border-bottom: 1px solid #CFCFCF;
  padding-bottom: 1.5rem;
}

/*fee
-----------------------------------------------------*/
.fee {
  background-image: linear-gradient(90deg, #E9F0F6 0%, #FAFCFE 50%, #E9F0F6 100%);
  position: relative;
  padding: 7rem 0;
}
.fee::after {
  position: absolute;
  border: 1px solid #FFF;
  content: "";
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
}
.fee__inner {
  background-color: #FFF;
  padding: 4rem 3.5rem;
}
@media (max-width: 575px) {
  .fee__inner {
    padding: 3rem 2.5rem;
  }
}
.fee .container-md {
  position: relative;
  z-index: 1;
}
@media (max-width: 575px) {
  .fee .container-md {
    padding: 0 2rem;
  }
}
.fee .h-sec {
  margin-bottom: 4rem;
}
.fee__box {
  background-color: #FFF;
  padding: 0 3.5rem 4rem 3.5rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
@media (max-width: 575px) {
  .fee__box {
    padding: 0 1.5rem 3rem 1.5rem;
  }
}
.fee__box h3 {
  font-family: "Noto Serif CJK JP";
  font-size: 2.4rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.fee__box h3::before {
  content: "";
  width: 80px;
  height: 6px;
  background-color: #0A235A;
  display: block;
}
.fee__box .standard,
.fee__box .platinum {
  font-family: "Noto Serif CJK JP";
  padding: 2rem 2.5rem;
}
@media (max-width: 575px) {
  .fee__box .standard table,
  .fee__box .platinum table {
    width: 100%;
  }
}
.fee__box .standard table th,
.fee__box .standard table td,
.fee__box .platinum table th,
.fee__box .platinum table td {
  vertical-align: middle;
}
@media (max-width: 575px) {
  .fee__box .standard table th,
  .fee__box .standard table td,
  .fee__box .platinum table th,
  .fee__box .platinum table td {
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}
.fee__box .standard table th,
.fee__box .platinum table th {
  padding-right: 2rem;
  width: 120px;
  text-align: left;
}
@media (max-width: 575px) {
  .fee__box .standard table th,
  .fee__box .platinum table th {
    width: 100%;
    text-align: center;
    padding-right: 0;
    padding-bottom: 0.5rem;
  }
}
.fee__box .standard table td,
.fee__box .platinum table td {
  font-size: 1.4rem;
  padding-left: 3rem;
  line-height: 1.2;
}
@media (max-width: 575px) {
  .fee__box .standard table td,
  .fee__box .platinum table td {
    padding-left: 0;
    padding-top: 0.5rem;
  }
}
.fee__box .standard table td strong,
.fee__box .platinum table td strong {
  font-size: 2.7rem;
}
@media (max-width: 575px) {
  .fee__box .standard table td strong,
  .fee__box .platinum table td strong {
    font-size: 2.4rem;
  }
}
.fee__box .standard {
  background-color: #0A235A;
  color: #FFF;
}
.fee__box .standard th {
  border-right: 1px solid #FFF;
}
@media (max-width: 575px) {
  .fee__box .standard th {
    border-right: 0;
    border-bottom: 1px solid #FFF;
  }
}
.fee__box .platinum {
  margin-top: 2rem;
  margin-bottom: 3rem;
  background-image: linear-gradient(90deg, #EDEDED 0%, #FFFFFF 50%, #EDEDED 100%);
}
.fee__box .platinum th {
  border-right: 1px solid #000;
}
@media (max-width: 575px) {
  .fee__box .platinum th {
    border-right: 0;
    border-bottom: 1px solid #000;
  }
}

/*apply
-----------------------------------------------------*/
.apply {
  padding: 7rem 0;
}
.apply__inner {
  max-width: 520px;
  margin: auto;
}
.apply-box {
  margin-top: 4rem;
}
.apply-box .h-step {
  display: flex;
  margin-bottom: 2.2rem;
}
.apply-box .h-step p {
  background-color: #A99A29;
  color: #FFF;
  font-size: 3.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  padding: 1rem 1.5rem;
  line-height: 1;
  max-width: 4rem;
  width: 100%;
  position: relative;
}
.apply-box .h-step p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #A99A29 transparent transparent;
  translate: -50% 100%;
}
.apply-box .h-step p span {
  font-size: 1.2rem;
}
.apply-box .h-step h3 {
  background-color: #0A235A;
  color: #FFF;
  padding: 3rem 3.5rem;
  line-height: 1.2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
@media (max-width: 575px) {
  .apply-box .h-step h3 {
    padding: 3rem 1.5rem;
  }
}
.apply-box .h-step h3 .kome {
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 1rem;
}
.apply-box .h-step h3 .kome li::before {
  color: #FFF;
}

/*message
-----------------------------------------------------*/
.message {
  background-image: linear-gradient(90deg, #F2F5F7 0%, #FBFDFE 50%, #F2F5F7 100%);
  position: relative;
  padding: 7rem 0;
}
.message::after {
  position: absolute;
  border: 1px solid rgba(10, 35, 90, 0.2);
  content: "";
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
}
.message .h-sec {
  margin-bottom: 4rem;
}
.message__inner {
  max-width: 520px;
  margin: auto;
  font-family: "Noto Serif CJK JP";
}
.message__inner__flex {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}
@media (max-width: 575px) {
  .message__inner__flex {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .message__inner__flex .col01 {
    width: 100%;
  }
}
.message__inner__flex .col02 {
  max-width: 189px;
  width: 100%;
}
@media (max-width: 575px) {
  .message__inner__flex .col02 {
    margin: 0 auto;
  }
}
.message__inner .disc {
  margin-bottom: 3rem;
}
.message__inner .disc li {
  padding-left: 1.5rem;
  text-indent: -1.5rem;
}
.message__inner .disc li::marker {
  font-size: 1rem;
}
.message .container-md {
  position: relative;
  z-index: 1;
}
@media (max-width: 575px) {
  .message .container-md {
    padding: 0 3rem;
  }
}

/*fix-btn
-----------------------------------------------------*/
.fix-btn {
  display: none;
}
@media (max-width: 1439px) {
  .fix-btn {
    display: block;
    position: fixed;
    z-index: 1;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding: 2rem;
    background: rgba(4, 23, 65, 0.7);
  }
}
.fix-btn .btn01 {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  max-width: 500px;
}

/*footer
-----------------------------------------------------*/
.footer {
  background-color: #FFF;
}
.footer__top, .footer__bottom {
  color: #FFF;
  font-size: 1.2rem;
  text-align: center;
  padding: 2.5rem 3rem;
}
.footer__top {
  background-color: #183C89;
}
.footer__top a {
  text-decoration: none;
  color: #FFF;
}
.footer__bottom {
  background-color: #0A235A;
}
@media (max-width: 1439px) {
  .footer__bottom {
    padding-bottom: 13rem;
  }
}/*# sourceMappingURL=style.css.map */