@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: #05277E;
  transition: 0.3s linear;
}

/*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: flex-end;
}
@media (max-width: 1199px) {
  .justify-end-xl {
    justify-content: flex-end !important;
  }
}
@media (max-width: 1023px) {
  .justify-end-lg {
    justify-content: flex-end !important;
  }
}
@media (max-width: 767px) {
  .justify-end-md {
    justify-content: flex-end !important;
  }
}
@media (max-width: 575px) {
  .justify-end-sm {
    justify-content: flex-end !important;
  }
}

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

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

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

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

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

/*font-size
-----------------------------------------------------*/
.fs-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 !important;
}

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

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

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

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

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

.lh-7 {
  line-height: 1.7 !important;
}

.lh-8 {
  line-height: 1.8 !important;
}

.lh-9 {
  line-height: 1.9 !important;
}

.lh-10 {
  line-height: 2 !important;
}

@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;
  }
  .lh-7-xl {
    line-height: 1.7 !important;
  }
  .lh-8-xl {
    line-height: 1.8 !important;
  }
  .lh-9-xl {
    line-height: 1.9 !important;
  }
  .lh-10-xl {
    line-height: 2 !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;
  }
  .lh-7-lg {
    line-height: 1.7 !important;
  }
  .lh-8-lg {
    line-height: 1.8 !important;
  }
  .lh-9-lg {
    line-height: 1.9 !important;
  }
  .lh-10-lg {
    line-height: 2 !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;
  }
  .lh-7-md {
    line-height: 1.7 !important;
  }
  .lh-8-md {
    line-height: 1.8 !important;
  }
  .lh-9-md {
    line-height: 1.9 !important;
  }
  .lh-10-md {
    line-height: 2 !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;
  }
  .lh-7-sm {
    line-height: 1.7 !important;
  }
  .lh-8-sm {
    line-height: 1.8 !important;
  }
  .lh-9-sm {
    line-height: 1.9 !important;
  }
  .lh-10-sm {
    line-height: 2 !important;
  }
}
/*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: #05277E !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 !important;
  }
}
@media (max-width: 1023px) {
  .align-l-lg {
    text-align: left !important;
  }
}
@media (max-width: 767px) {
  .align-l-md {
    text-align: left !important;
  }
}
@media (max-width: 575px) {
  .align-l-sm {
    text-align: left !important;
  }
}

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

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

.pos-r {
  position: relative;
}

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

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

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

/* 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;
  }
}
.main-inner {
  max-width: 660px;
  width: 100%;
  margin: auto;
}

/*header
-----------------------------------------------------*/
.header {
  position: relative;
}
.header::after {
  content: "";
  height: 92%;
  width: 100%;
  background-image: url(../images/bg01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  z-index: -1;
}

.header--child {
  background-image: url(../images/bg01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 575px) {
  .header--child {
    height: 120px;
  }
}
.header--child .container-md {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header--child .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header--child .logo::after {
  background-image: url(../images/bg-map.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 660px) {
  .header--child .logo::after {
    background-size: auto;
  }
}
.header--child .logo img {
  max-width: 256px;
  width: 100%;
  margin: auto;
}
@media (max-width: 575px) {
  .header--child .logo img {
    max-width: 180px;
  }
}

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

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

.container-ex {
  max-width: 680px;
  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-line {
  color: #00B74B;
}

.color-g {
  color: #FFEF76;
}

.color-r {
  color: #DA1111;
}

.color-w {
  color: #FFF;
}

.color-y {
  color: #FFEF76;
}

.color-b {
  color: #05277E;
}

.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 {
  border: 2px solid #DA1111;
  margin: 2.5rem auto;
  padding: 2rem 3rem;
}
@media (max-width: 575px) {
  .box01 {
    padding: 2rem;
  }
}

.box02 {
  background-color: #F3F8FF;
  margin: 4rem auto;
  padding: 2.5rem;
}

ul.light {
  list-style: none;
}
ul.light li {
  line-height: 1.6;
  background: url(../images/icon-light.svg) left 0px top 7px no-repeat;
  background-size: 30px auto;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 0.8rem 0 0.8rem 4rem;
}
@media (max-width: 575px) {
  ul.light li {
    font-size: 1.6rem;
  }
}
ul.light-g li {
  background: url(../images/icon-light-g.svg) left 0px top 7px no-repeat;
}
ul.light--border li {
  border-bottom: 1px solid #CFCFCF;
  padding: 1.5rem 0 1.5rem 4rem;
  font-weight: 400;
  background: url(../images/icon-light.svg) left 0px top 14px no-repeat;
}

ul.disc {
  list-style: none;
  padding-left: 0;
}
ul.disc li {
  position: relative;
  padding: 1rem 0 1rem 1.5rem;
  text-indent: 0rem;
}
ul.disc li::before {
  content: "";
  position: absolute;
  top: 2.3rem;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  background-color: #333;
  border-radius: 50%;
}
@media (max-width: 767px) {
  ul.disc li::before {
    top: 2.1rem;
  }
}
ul.disc li + li {
  border-top: 1px solid #CFCFCF;
}
ul.disc--noborder li {
  padding: 0.2rem 0 0.2rem 1.5rem;
}
ul.disc--noborder li::before {
  top: 1.5rem;
}
@media (max-width: 767px) {
  ul.disc--noborder li::before {
    top: 1.4rem;
  }
}
ul.disc--noborder li + li {
  border-top: 0;
}

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

/*h*/
.h-wrap {
  position: relative;
  padding: 0 70px;
  text-align: center;
  display: inline-block;
  margin: 6rem auto 3rem auto;
}
@media (max-width: 767px) {
  .h-wrap {
    padding: 0 0 2rem;
  }
}
.h-wrap h2 {
  font-size: 2.4rem;
  line-height: 1.6;
}
.h-wrap h2::before, .h-wrap h2::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 60px;
  height: 1px;
}
.h-wrap h2::before {
  left: 0;
}
@media (max-width: 767px) {
  .h-wrap h2::before {
    content: none;
  }
}
.h-wrap h2::after {
  right: 0;
}
@media (max-width: 767px) {
  .h-wrap h2::after {
    top: auto;
    left: 0;
    bottom: 0;
    margin: auto;
  }
}
@media (max-width: 767px) {
  .h-wrap h2 {
    font-size: 2rem;
  }
}
.h-wrap--b h2::before, .h-wrap--b h2::after {
  background-color: #000;
}
.h-wrap--w h2 {
  color: #FFF;
}
.h-wrap--w h2::before, .h-wrap--w h2::after {
  background-color: #FFF;
}

.h-width {
  background-color: #05277E;
  color: #FFF;
  width: 100%;
  padding: 3rem;
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
  box-sizing: border-box;
}
@media (max-width: 575px) {
  .h-width {
    margin-bottom: 4rem;
    padding: 2.5rem 2rem;
  }
}
.h-width--line {
  background-color: #00B74B;
}
.h-width--line .slash {
  display: inline-block;
  position: relative;
  padding-inline: 25px;
  font-size: 1.8rem;
  color: #FFF;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 575px) {
  .h-width--line .slash {
    font-size: 1.4rem;
    padding-inline: 20px;
    margin-bottom: 0.5rem;
  }
}
.h-width--line .slash::before, .h-width--line .slash::after {
  content: "";
  height: 96%;
  width: 1px;
  background-color: #FFF;
  position: absolute;
  bottom: 0;
}
.h-width--line .slash::before {
  left: 0;
  transform: rotate(-30deg);
}
.h-width--line .slash::after {
  right: 0;
  transform: rotate(30deg);
}
.h-width::after {
  content: "";
  height: 30px;
  width: 1px;
  background-color: #D9D9D9;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.h-width .slash-wrap {
  text-align: center;
}
.h-width h2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  font-size: 2.4rem;
}
@media (max-width: 575px) {
  .h-width h2 {
    font-size: 2rem;
    line-height: 1.4;
  }
}
.h-width h2 .en {
  font-size: 1.5rem;
  font-weight: 400;
}
@media (max-width: 575px) {
  .h-width h2 .en {
    margin-bottom: 0.5rem;
  }
}

/*英語と日本語*/
/*背景あり・なし*/
/*btn
-----------------------------------------------------*/
/*ページ内共通*/
.contact-btn {
  margin: 3rem auto 0 auto;
}

.btn01-wrap {
  max-width: 500px;
  width: 100%;
  margin: auto;
}
.btn01-wrap .btn01 {
  position: relative;
  top: 0;
  display: block;
  padding: 1.5rem 2rem;
  background-color: #00A0E9;
  box-shadow: 0 8px #0080BA;
  border-radius: 15px;
  font-size: 2.4rem;
  color: #FFF;
  text-align: center;
  text-decoration: none;
  transition: 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}
.btn01-wrap .btn01:hover {
  top: 8px;
  /* 元の位置から9px分下げる */
  box-shadow: 0 0 #0080BA;
  /* 影を0pxにする */
}

.btn02-wrap {
  max-width: 500px;
  width: 100%;
  margin: auto;
}
.btn02-wrap .btn02 {
  position: relative;
  top: 0;
  display: block;
  padding: 2.5rem 2rem;
  background-color: #00B74B;
  box-shadow: 0 8px #00993F;
  border-radius: 15px;
  font-size: 2.4rem;
  color: #FFF;
  text-align: center;
  text-decoration: none;
  transition: 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 575px) {
  .btn02-wrap .btn02 {
    font-size: 2rem;
  }
}
.btn02-wrap .btn02:hover {
  top: 8px;
  /* 元の位置から9px分下げる */
  box-shadow: 0 0 #00993F;
  /* 影を0pxにする */
}
.btn02-wrap .btn02 span {
  font-size: 2rem;
}

.line-result .slash-wrap {
  text-align: center;
}
.line-result .slash {
  display: inline-block;
  position: relative;
  padding-inline: 35px;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.line-result .slash::before, .line-result .slash::after {
  content: "";
  height: 84%;
  width: 1px;
  background-color: #000;
  position: absolute;
  bottom: 0;
}
.line-result .slash::before {
  left: 0;
  transform: rotate(-30deg);
}
.line-result .slash::after {
  right: 0;
  transform: rotate(30deg);
}

/*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 {
  max-width: 710px;
  width: 100%;
  margin: auto;
}

/*anxiety
-----------------------------------------------------*/
.anxiety-flex {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .anxiety-flex {
    flex-wrap: wrap;
  }
}
.anxiety-flex__box {
  width: calc(33.3333333333% - 1.5rem);
}
@media (max-width: 767px) {
  .anxiety-flex__box {
    width: 100%;
  }
}
.anxiety-flex__box .col01 {
  text-align: center;
}
@media (max-width: 767px) {
  .anxiety-flex__box .col01 img {
    max-width: 300px;
    width: 100%;
    margin: auto;
  }
}
.anxiety-flex__box .col02 {
  background-image: url(../images/bg-anxiety.png);
  background-repeat: no-repeat;
  background-position: center;
  padding: 2rem 2.5rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .anxiety-flex__box .col02 {
    padding: 3rem 2.5rem 2rem 2.5rem;
  }
}
.anxiety-flex__box .col02 p {
  font-size: 1.8rem;
  text-align: center;
}

/*about
-----------------------------------------------------*/
.about {
  background-color: #05277E;
  margin-top: 4rem;
}
.about-inner {
  max-width: 660px;
  width: 100%;
  margin: auto;
  padding-bottom: 4.5rem;
}
.about .h-wrap {
  margin: 4rem auto 3rem auto;
}
.about .h-point {
  display: flex;
  margin-bottom: 1.8rem;
}
.about .h-point .en {
  background-color: #DA1111;
  color: #FFF;
  font-size: 3.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  padding: 1rem;
  line-height: 1;
  max-width: 4rem;
  width: 100%;
}
.about .h-point .en span {
  font-size: 1.2rem;
}
.about .h-point h3 {
  background-color: #FFF;
  color: #010101;
  font-size: 2rem;
  padding: 1.5rem 2rem;
  line-height: 1.4;
  display: flex;
  align-items: center;
  width: 100%;
}
@media (max-width: 575px) {
  .about .h-point h3 {
    font-size: 1.8rem;
  }
}

/*start
-----------------------------------------------------*/
.start {
  padding: 4rem 0 8rem 0;
}
.start h2 {
  border: 2px solid #000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
  font-size: 2rem;
}
@media (max-width: 575px) {
  .start h2 {
    font-size: 1.8rem;
    padding: 1rem;
  }
}
.start h2 img {
  margin-right: 1rem;
}

/*shindan
-----------------------------------------------------*/
.shindan {
  padding: 3.5rem 0 9rem 0;
}
.shindan h2 {
  font-size: 2.4rem;
  background-color: #333333;
  text-align: center;
  padding: 1rem 2rem;
  margin-bottom: 3rem;
  color: #FFF;
}
@media (max-width: 575px) {
  .shindan h2 {
    font-size: 2rem;
  }
}
.shindan-box {
  background-color: #F3F8FF;
  margin: 3rem auto 0 auto;
  padding: 3.5rem 2.5rem 3rem 2.5rem;
}
.shindan-box--q {
  position: relative;
}
.shindan-box--q .en {
  background-color: #DA1111;
  color: #FFF;
  font-size: 2.4rem;
  font-weight: 400;
  max-width: 42px;
  width: 100%;
  height: 40px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: -6px;
}
.shindan-box--q .en span {
  font-size: 2rem;
}
.shindan-box--q h3 {
  color: #010101;
  font-size: 1.8rem;
  line-height: 1.4;
  width: 100%;
  padding-left: 5.5rem;
  box-sizing: border-box;
  margin-bottom: 3.5rem;
}
@media (max-width: 575px) {
  .shindan-box--q h3 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
}
.shindan-box .radio-box {
  border: 2px solid #05277E;
  border-radius: 10px;
  margin-top: 1rem;
  background-color: #FFF;
}
.shindan-box .radio-box .radioItem {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.7rem;
  line-height: 1.4;
  color: #333333;
  cursor: pointer;
  width: 100%;
  padding: 1.5rem;
  box-sizing: border-box;
}
.shindan-box .radio-box .radioItem:not(:last-of-type) {
  margin-bottom: 16px;
}
.shindan-box .radio-box .radioButton {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  max-width: 29px;
  width: 100%;
  height: 29px;
  border: 1px solid #8f8f9d;
  border-radius: 9999px;
  background-color: #ffffff;
  cursor: pointer;
  margin: 0;
}
.shindan-box .radio-box .radioButton:checked {
  border: 1px solid #0060df;
}
.shindan-box .radio-box .radioButton:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 17px;
  height: 17px;
  margin: auto;
  border-radius: 9999px;
  background-color: #0060df;
}
.shindan-box .radio-box.checked {
  background-color: #05277E;
}
.shindan-box .radio-box.checked .radioItem {
  color: #ffffff;
}

.submit-btn {
  margin: 3.5rem auto 0 auto;
}

/*result
-----------------------------------------------------*/
.result {
  padding: 3.5rem 0 8rem 0;
}
.result h2 {
  font-size: 2.4rem;
  background-color: #333333;
  text-align: center;
  padding: 1rem 2rem;
  margin-bottom: 3rem;
  color: #FFF;
}
@media (max-width: 575px) {
  .result h2 {
    font-size: 2rem;
  }
}
.result-type {
  position: relative;
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}
.result-type::before, .result-type::after {
  position: absolute;
  content: "";
  width: 11px;
  height: 100%;
  border-style: solid;
  border-color: #000;
}
.result-type::before {
  border-width: 1px 0 1px 1px;
  left: 0;
}
.result-type::after {
  border-width: 1px 1px 1px 0;
  right: 0;
}
.result-type p {
  font-size: 1.8rem;
}
.result-type .h-box {
  position: relative;
}
.result-type .h-box::after {
  content: "";
  background-image: url(../images/vector.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  width: 70%;
  height: 0;
  padding: 4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.result-type .h-box h3 {
  color: #05277E;
  font-size: 3.2rem;
  padding: 1.5rem 0;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .result-type .h-box h3 {
    font-size: 2.6rem;
  }
}
@media (max-width: 575px) {
  .result-type .h-box h3 {
    font-size: 2.2rem;
  }
}
.result-type__inner {
  margin: auto;
  padding: 0 2rem;
}
.result-type__inner p {
  font-weight: 700;
}
.result-img {
  margin-bottom: 2rem;
}
.result .marker {
  background: linear-gradient(transparent 60%, #FFF7B9 0%);
  display: inline;
  padding: 0 1px 0px;
}

/*worries
-----------------------------------------------------*/
.worries {
  padding-bottom: 99px;
}
@media (max-width: 575px) {
  .worries {
    padding-bottom: 89px;
  }
}
.worries .osusume {
  margin-top: 7rem;
  border: 2px solid #05277E;
  border-radius: 7px;
  padding: 4.5rem 4.5rem 3rem 4.5rem;
  position: relative;
  margin-bottom: 9rem;
}
@media (max-width: 575px) {
  .worries .osusume {
    margin-top: 6rem;
    margin-bottom: 6rem;
    padding: 5rem 2.5rem 3rem 2.5rem;
  }
}
.worries .osusume::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 180px solid transparent;
  border-left: 180px solid transparent;
  border-top: 38px solid #05277E;
  border-bottom: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -39px;
}
@media (max-width: 575px) {
  .worries .osusume::after {
    border-right: 80px solid transparent;
    border-left: 80px solid transparent;
    border-top: 30px solid #05277E;
    bottom: -32px;
  }
}
.worries .osusume h3 {
  background-color: #05277E;
  color: #FFF;
  text-align: center;
  display: inline-block;
  padding: 0.3rem 4rem;
  border-radius: 100px;
  font-size: 1.8rem;
  top: -20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
@media (max-width: 575px) {
  .worries .osusume h3 {
    top: -34px;
    line-height: 1.4;
    padding: 0.6rem 4rem;
  }
}
.worries .osusume .slash-wrap {
  text-align: center;
}
.worries .osusume .slash {
  display: inline-block;
  position: relative;
  padding-inline: 25px;
  font-size: 1.8rem;
  color: #05277E;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
}
@media (max-width: 575px) {
  .worries .osusume .slash {
    font-size: 1.6rem;
  }
}
.worries .osusume .slash::before, .worries .osusume .slash::after {
  content: "";
  height: 96%;
  width: 1px;
  background-color: #000;
  position: absolute;
  bottom: 0;
}
.worries .osusume .slash::before {
  left: 0;
  transform: rotate(-30deg);
}
.worries .osusume .slash::after {
  right: 0;
  transform: rotate(30deg);
}
.worries .strategy {
  position: relative;
}
.worries .strategy::after {
  content: "";
  background-image: url(../images/vector.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  width: 50%;
  height: 0;
  padding: 4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.worries .strategy p {
  font-size: 2.8rem;
  font-weight: 700;
  color: #05277E;
  text-align: center;
  line-height: 1.6;
}
@media (max-width: 575px) {
  .worries .strategy p {
    font-size: 2.4rem;
  }
}
.worries .strategy .mosaic img {
  height: 35px;
  vertical-align: middle;
}
.worries .color-r {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #000;
  font-size: 1.8rem;
  line-height: 1.6;
}
@media (max-width: 575px) {
  .worries .color-r {
    font-size: 1.6rem;
  }
}

/*profile
-----------------------------------------------------*/
.profile {
  padding-bottom: 9rem;
}
@media (max-width: 575px) {
  .profile {
    padding-bottom: 8rem;
  }
}
.profile-flex {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .profile-flex {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .profile-flex .col01 {
    margin: auto;
  }
}
.profile-flex .col01 img {
  max-width: 260px;
  width: 100%;
}
.profile-flex .col02 {
  padding-top: 3rem;
}
@media (max-width: 767px) {
  .profile-flex .col02 {
    padding-top: 0;
  }
}
.profile-flex .col02 h3 {
  font-size: 2rem;
  position: relative;
  margin: 2rem 0 3rem 0;
  padding-bottom: 2rem;
}
.profile-flex .col02 h3::after {
  content: "";
  width: 58px;
  height: 1px;
  background-color: #000;
  position: absolute;
  left: 0;
  bottom: 0;
}
.profile .box02 a {
  color: #0964A6;
}
.profile .media01 {
  display: flex;
  gap: 15px;
}
@media (max-width: 767px) {
  .profile .media01 {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.profile .media01 a,
.profile .media01 div {
  text-align: center;
}
@media (max-width: 767px) {
  .profile .media01 a,
  .profile .media01 div {
    width: 48%;
  }
}
@media (max-width: 575px) {
  .profile .media01 a,
  .profile .media01 div {
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: 767px) {
  .profile .media01 a img,
  .profile .media01 div img {
    width: 100%;
    aspect-ratio: 1/1;
    /* 正方形にする */
    -o-object-fit: contain;
       object-fit: contain;
    /* はみ出さず全部見せる */
    background-color: #f5f5f5;
    /* 足りない部分に背景色 */
  }
}
@media (max-width: 575px) {
  .profile .media01 a img,
  .profile .media01 div img {
    width: auto;
    aspect-ratio: auto;
  }
}
.profile .media02 {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 3rem;
}
@media (max-width: 1199px) {
  .profile .media02 {
    margin-top: 2.5rem;
  }
}
@media (max-width: 1023px) {
  .profile .media02 {
    gap: 2rem;
  }
}
.profile .media02 a,
.profile .media02 div {
  width: calc(20% - 2.4rem);
}
@media (max-width: 1199px) {
  .profile .media02 a,
  .profile .media02 div {
    width: calc(25% - 2.25rem);
  }
}
@media (max-width: 1023px) {
  .profile .media02 a,
  .profile .media02 div {
    width: calc(33.3333333333% - 1.34rem);
  }
}
@media (max-width: 767px) {
  .profile .media02 a,
  .profile .media02 div {
    width: calc(50% - 1rem);
  }
}

/*line-account
-----------------------------------------------------*/
.line-account {
  padding-bottom: 99px;
}
.line-account--box {
  background-color: #E1F5E9;
  padding: 2rem;
  margin-top: 1.8rem;
}
.line-account--box:first-of-type {
  margin-top: 0;
}
.line-account--box h3 {
  line-height: 1.6;
  background: url(../images/icon-light-g.svg) left 0px top 0px no-repeat;
  background-size: 30px auto;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 0.2rem 0 0.2rem 4rem;
}
@media (max-width: 575px) {
  .line-account--box h3 {
    font-size: 1.6rem;
  }
}
.line-account--box .box-w {
  background-color: #FFF;
  padding: 2rem 2.5rem;
  margin-top: 1rem;
}

/*registration
-----------------------------------------------------*/
.registration {
  padding-bottom: 99px;
}
@media (max-width: 575px) {
  .registration {
    padding-bottom: 89px;
  }
}
.registration .line-sm,
.registration .line-pc {
  text-align: center;
}
.registration .line-sm h3,
.registration .line-pc h3 {
  background-color: #E1F5E9;
  position: relative;
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 2.4rem;
}
@media (max-width: 575px) {
  .registration .line-sm h3,
  .registration .line-pc h3 {
    font-size: 2rem;
  }
}
.registration .line-sm h3::before, .registration .line-sm h3::after,
.registration .line-pc h3::before,
.registration .line-pc h3::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  left: 0;
}
.registration .line-sm h3::before,
.registration .line-pc h3::before {
  top: -4px;
}
.registration .line-sm h3::after,
.registration .line-pc h3::after {
  bottom: -4px;
}
.registration .line-sm .registration-flex,
.registration .line-pc .registration-flex {
  display: flex;
  margin: 3rem auto 5rem auto;
}
@media (max-width: 575px) {
  .registration .line-sm .registration-flex,
  .registration .line-pc .registration-flex {
    flex-direction: column;
    align-items: center;
    margin: 1rem auto 4rem auto;
  }
}
.registration .line-sm .registration-flex .col01,
.registration .line-sm .registration-flex .col02,
.registration .line-pc .registration-flex .col01,
.registration .line-pc .registration-flex .col02 {
  width: 50%;
}
@media (max-width: 575px) {
  .registration .line-sm .registration-flex .col01,
  .registration .line-sm .registration-flex .col02,
  .registration .line-pc .registration-flex .col01,
  .registration .line-pc .registration-flex .col02 {
    width: 100%;
  }
}
.registration .line-sm .registration-flex .col01 .en,
.registration .line-sm .registration-flex .col02 .en,
.registration .line-pc .registration-flex .col01 .en,
.registration .line-pc .registration-flex .col02 .en {
  font-size: 4.8rem;
  position: relative;
  display: inline-block;
  padding: 0 4rem;
  color: #000;
}
@media (max-width: 575px) {
  .registration .line-sm .registration-flex .col01 .en,
  .registration .line-sm .registration-flex .col02 .en,
  .registration .line-pc .registration-flex .col01 .en,
  .registration .line-pc .registration-flex .col02 .en {
    font-size: 4rem;
  }
}
.registration .line-sm .registration-flex .col01 .en::before, .registration .line-sm .registration-flex .col01 .en::after,
.registration .line-sm .registration-flex .col02 .en::before,
.registration .line-sm .registration-flex .col02 .en::after,
.registration .line-pc .registration-flex .col01 .en::before,
.registration .line-pc .registration-flex .col01 .en::after,
.registration .line-pc .registration-flex .col02 .en::before,
.registration .line-pc .registration-flex .col02 .en::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: #000;
}
.registration .line-sm .registration-flex .col01 .en::before,
.registration .line-sm .registration-flex .col02 .en::before,
.registration .line-pc .registration-flex .col01 .en::before,
.registration .line-pc .registration-flex .col02 .en::before {
  left: 0;
}
.registration .line-sm .registration-flex .col01 .en::after,
.registration .line-sm .registration-flex .col02 .en::after,
.registration .line-pc .registration-flex .col01 .en::after,
.registration .line-pc .registration-flex .col02 .en::after {
  right: 0;
}
.registration .line-sm .registration-flex .col01 h4,
.registration .line-sm .registration-flex .col02 h4,
.registration .line-pc .registration-flex .col01 h4,
.registration .line-pc .registration-flex .col02 h4 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
.registration .line-sm .registration-flex .col01,
.registration .line-pc .registration-flex .col01 {
  border-right: 1px solid #000;
  padding-right: 2.5rem;
}
@media (max-width: 575px) {
  .registration .line-sm .registration-flex .col01,
  .registration .line-pc .registration-flex .col01 {
    border-right: 0;
    padding-right: 0;
    border-bottom: 1px solid #000;
    padding-bottom: 2.5rem;
  }
}
.registration .line-sm .registration-flex .col02,
.registration .line-pc .registration-flex .col02 {
  padding-left: 2.5rem;
}
@media (max-width: 575px) {
  .registration .line-sm .registration-flex .col02,
  .registration .line-pc .registration-flex .col02 {
    padding-left: 0;
    padding-top: 1rem;
  }
}
.registration .line-sm .registration-flex .sm01,
.registration .line-pc .registration-flex .sm01 {
  max-width: 248px;
  width: 100%;
}
.registration .line-sm .registration-flex .pc01,
.registration .line-pc .registration-flex .pc01 {
  max-width: 204px;
  width: 100%;
}
.registration .line-sm .registration-flex .sm-pc02,
.registration .line-pc .registration-flex .sm-pc02 {
  max-width: 222px;
  width: 100%;
}

/*company
-----------------------------------------------------*/
.company {
  padding-bottom: 8rem;
}
.company .table-wrap {
  max-width: 1000px;
  width: 100%;
  margin: auto;
}
.company .table-wrap table {
  width: 100%;
}
.company .table-wrap table tr {
  border-bottom: 1px solid #000;
}
.company .table-wrap table th {
  text-align: left;
  width: 180px;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .company .table-wrap table th {
    width: 120px;
  }
}
.company .table-wrap table td,
.company .table-wrap table th {
  padding: 2rem 0;
}

/*footer
-----------------------------------------------------*/
.footer {
  background-color: #183C89;
}
.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: #05277E;
}/*# sourceMappingURL=style.css.map */