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

img {
  vertical-align: top;
}

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

body {
  line-height: 1;
}

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

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

del {
  text-decoration: line-through;
}

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

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

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

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

body {
  color: #333;
  /*font: 1.6rem/1.8 YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;*/
  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: #333333;
  transition: 0.3s linear;
}
a:hover, a:active, a:focus {
  color: rgb(127.5, 127.5, 127.5);
}

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

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

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

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

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

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

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

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

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

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

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

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

.fs-31 {
  font-size: 3.1rem !important;
}

.fs-32 {
  font-size: 3.2rem !important;
}

.fs-33 {
  font-size: 3.3rem !important;
}

.fs-34 {
  font-size: 3.4rem !important;
}

.fs-35 {
  font-size: 3.5rem !important;
}

.fs-36 {
  font-size: 3.6rem !important;
}

.fs-37 {
  font-size: 3.7rem !important;
}

.fs-38 {
  font-size: 3.8rem !important;
}

.fs-39 {
  font-size: 3.9rem !important;
}

.fs-40 {
  font-size: 4rem !important;
}

.fs-41 {
  font-size: 4.1rem !important;
}

.fs-42 {
  font-size: 4.2rem !important;
}

.fs-43 {
  font-size: 4.3rem !important;
}

.fs-44 {
  font-size: 4.4rem !important;
}

.fs-45 {
  font-size: 4.5rem !important;
}

.fs-46 {
  font-size: 4.6rem !important;
}

.fs-47 {
  font-size: 4.7rem !important;
}

.fs-48 {
  font-size: 4.8rem !important;
}

.fs-49 {
  font-size: 4.9rem !important;
}

.fs-50 {
  font-size: 5rem !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;
  }
  .fs-31-xl {
    font-size: 3.1rem !important;
  }
  .fs-32-xl {
    font-size: 3.2rem !important;
  }
  .fs-33-xl {
    font-size: 3.3rem !important;
  }
  .fs-34-xl {
    font-size: 3.4rem !important;
  }
  .fs-35-xl {
    font-size: 3.5rem !important;
  }
  .fs-36-xl {
    font-size: 3.6rem !important;
  }
  .fs-37-xl {
    font-size: 3.7rem !important;
  }
  .fs-38-xl {
    font-size: 3.8rem !important;
  }
  .fs-39-xl {
    font-size: 3.9rem !important;
  }
  .fs-40-xl {
    font-size: 4rem !important;
  }
  .fs-41-xl {
    font-size: 4.1rem !important;
  }
  .fs-42-xl {
    font-size: 4.2rem !important;
  }
  .fs-43-xl {
    font-size: 4.3rem !important;
  }
  .fs-44-xl {
    font-size: 4.4rem !important;
  }
  .fs-45-xl {
    font-size: 4.5rem !important;
  }
  .fs-46-xl {
    font-size: 4.6rem !important;
  }
  .fs-47-xl {
    font-size: 4.7rem !important;
  }
  .fs-48-xl {
    font-size: 4.8rem !important;
  }
  .fs-49-xl {
    font-size: 4.9rem !important;
  }
  .fs-50-xl {
    font-size: 5rem !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;
  }
  .fs-31-lg {
    font-size: 3.1rem !important;
  }
  .fs-32-lg {
    font-size: 3.2rem !important;
  }
  .fs-33-lg {
    font-size: 3.3rem !important;
  }
  .fs-34-lg {
    font-size: 3.4rem !important;
  }
  .fs-35-lg {
    font-size: 3.5rem !important;
  }
  .fs-36-lg {
    font-size: 3.6rem !important;
  }
  .fs-37-lg {
    font-size: 3.7rem !important;
  }
  .fs-38-lg {
    font-size: 3.8rem !important;
  }
  .fs-39-lg {
    font-size: 3.9rem !important;
  }
  .fs-40-lg {
    font-size: 4rem !important;
  }
  .fs-41-lg {
    font-size: 4.1rem !important;
  }
  .fs-42-lg {
    font-size: 4.2rem !important;
  }
  .fs-43-lg {
    font-size: 4.3rem !important;
  }
  .fs-44-lg {
    font-size: 4.4rem !important;
  }
  .fs-45-lg {
    font-size: 4.5rem !important;
  }
  .fs-46-lg {
    font-size: 4.6rem !important;
  }
  .fs-47-lg {
    font-size: 4.7rem !important;
  }
  .fs-48-lg {
    font-size: 4.8rem !important;
  }
  .fs-49-lg {
    font-size: 4.9rem !important;
  }
  .fs-50-lg {
    font-size: 5rem !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;
  }
  .fs-31-md {
    font-size: 3.1rem !important;
  }
  .fs-32-md {
    font-size: 3.2rem !important;
  }
  .fs-33-md {
    font-size: 3.3rem !important;
  }
  .fs-34-md {
    font-size: 3.4rem !important;
  }
  .fs-35-md {
    font-size: 3.5rem !important;
  }
  .fs-36-md {
    font-size: 3.6rem !important;
  }
  .fs-37-md {
    font-size: 3.7rem !important;
  }
  .fs-38-md {
    font-size: 3.8rem !important;
  }
  .fs-39-md {
    font-size: 3.9rem !important;
  }
  .fs-40-md {
    font-size: 4rem !important;
  }
  .fs-41-md {
    font-size: 4.1rem !important;
  }
  .fs-42-md {
    font-size: 4.2rem !important;
  }
  .fs-43-md {
    font-size: 4.3rem !important;
  }
  .fs-44-md {
    font-size: 4.4rem !important;
  }
  .fs-45-md {
    font-size: 4.5rem !important;
  }
  .fs-46-md {
    font-size: 4.6rem !important;
  }
  .fs-47-md {
    font-size: 4.7rem !important;
  }
  .fs-48-md {
    font-size: 4.8rem !important;
  }
  .fs-49-md {
    font-size: 4.9rem !important;
  }
  .fs-50-md {
    font-size: 5rem !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;
  }
  .fs-31-sm {
    font-size: 3.1rem !important;
  }
  .fs-32-sm {
    font-size: 3.2rem !important;
  }
  .fs-33-sm {
    font-size: 3.3rem !important;
  }
  .fs-34-sm {
    font-size: 3.4rem !important;
  }
  .fs-35-sm {
    font-size: 3.5rem !important;
  }
  .fs-36-sm {
    font-size: 3.6rem !important;
  }
  .fs-37-sm {
    font-size: 3.7rem !important;
  }
  .fs-38-sm {
    font-size: 3.8rem !important;
  }
  .fs-39-sm {
    font-size: 3.9rem !important;
  }
  .fs-40-sm {
    font-size: 4rem !important;
  }
  .fs-41-sm {
    font-size: 4.1rem !important;
  }
  .fs-42-sm {
    font-size: 4.2rem !important;
  }
  .fs-43-sm {
    font-size: 4.3rem !important;
  }
  .fs-44-sm {
    font-size: 4.4rem !important;
  }
  .fs-45-sm {
    font-size: 4.5rem !important;
  }
  .fs-46-sm {
    font-size: 4.6rem !important;
  }
  .fs-47-sm {
    font-size: 4.7rem !important;
  }
  .fs-48-sm {
    font-size: 4.8rem !important;
  }
  .fs-49-sm {
    font-size: 4.9rem !important;
  }
  .fs-50-sm {
    font-size: 5rem !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: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  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: #333333 !important;
}

.color-accent01 {
  color: #458EFF !important;
}

.color-caution {
  color: #BF0000 !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 {
  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-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-90 {
  margin-top: 9rem !important;
}

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

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

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

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

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

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

.pr-90 {
  padding-right: 9rem !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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pr-200 {
  padding-right: 20rem !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-90-xl {
    margin-top: 9rem !important;
  }
  .pt-90-xl {
    padding-top: 9rem !important;
  }
  .mb-90-xl {
    margin-bottom: 9rem !important;
  }
  .pb-90-xl {
    padding-bottom: 9rem !important;
  }
  .ml-90-xl {
    margin-left: 9rem !important;
  }
  .pl-90-xl {
    padding-left: 9rem !important;
  }
  .mr-90-xl {
    margin-right: 9rem !important;
  }
  .pr-90-xl {
    padding-right: 9rem !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;
  }
  .mt-110-xl {
    margin-top: 11rem !important;
  }
  .pt-110-xl {
    padding-top: 11rem !important;
  }
  .mb-110-xl {
    margin-bottom: 11rem !important;
  }
  .pb-110-xl {
    padding-bottom: 11rem !important;
  }
  .ml-110-xl {
    margin-left: 11rem !important;
  }
  .pl-110-xl {
    padding-left: 11rem !important;
  }
  .mr-110-xl {
    margin-right: 11rem !important;
  }
  .pr-110-xl {
    padding-right: 11rem !important;
  }
  .mt-120-xl {
    margin-top: 12rem !important;
  }
  .pt-120-xl {
    padding-top: 12rem !important;
  }
  .mb-120-xl {
    margin-bottom: 12rem !important;
  }
  .pb-120-xl {
    padding-bottom: 12rem !important;
  }
  .ml-120-xl {
    margin-left: 12rem !important;
  }
  .pl-120-xl {
    padding-left: 12rem !important;
  }
  .mr-120-xl {
    margin-right: 12rem !important;
  }
  .pr-120-xl {
    padding-right: 12rem !important;
  }
  .mt-130-xl {
    margin-top: 13rem !important;
  }
  .pt-130-xl {
    padding-top: 13rem !important;
  }
  .mb-130-xl {
    margin-bottom: 13rem !important;
  }
  .pb-130-xl {
    padding-bottom: 13rem !important;
  }
  .ml-130-xl {
    margin-left: 13rem !important;
  }
  .pl-130-xl {
    padding-left: 13rem !important;
  }
  .mr-130-xl {
    margin-right: 13rem !important;
  }
  .pr-130-xl {
    padding-right: 13rem !important;
  }
  .mt-140-xl {
    margin-top: 14rem !important;
  }
  .pt-140-xl {
    padding-top: 14rem !important;
  }
  .mb-140-xl {
    margin-bottom: 14rem !important;
  }
  .pb-140-xl {
    padding-bottom: 14rem !important;
  }
  .ml-140-xl {
    margin-left: 14rem !important;
  }
  .pl-140-xl {
    padding-left: 14rem !important;
  }
  .mr-140-xl {
    margin-right: 14rem !important;
  }
  .pr-140-xl {
    padding-right: 14rem !important;
  }
  .mt-150-xl {
    margin-top: 15rem !important;
  }
  .pt-150-xl {
    padding-top: 15rem !important;
  }
  .mb-150-xl {
    margin-bottom: 15rem !important;
  }
  .pb-150-xl {
    padding-bottom: 15rem !important;
  }
  .ml-150-xl {
    margin-left: 15rem !important;
  }
  .pl-150-xl {
    padding-left: 15rem !important;
  }
  .mr-150-xl {
    margin-right: 15rem !important;
  }
  .pr-150-xl {
    padding-right: 15rem !important;
  }
  .mt-160-xl {
    margin-top: 16rem !important;
  }
  .pt-160-xl {
    padding-top: 16rem !important;
  }
  .mb-160-xl {
    margin-bottom: 16rem !important;
  }
  .pb-160-xl {
    padding-bottom: 16rem !important;
  }
  .ml-160-xl {
    margin-left: 16rem !important;
  }
  .pl-160-xl {
    padding-left: 16rem !important;
  }
  .mr-160-xl {
    margin-right: 16rem !important;
  }
  .pr-160-xl {
    padding-right: 16rem !important;
  }
  .mt-170-xl {
    margin-top: 17rem !important;
  }
  .pt-170-xl {
    padding-top: 17rem !important;
  }
  .mb-170-xl {
    margin-bottom: 17rem !important;
  }
  .pb-170-xl {
    padding-bottom: 17rem !important;
  }
  .ml-170-xl {
    margin-left: 17rem !important;
  }
  .pl-170-xl {
    padding-left: 17rem !important;
  }
  .mr-170-xl {
    margin-right: 17rem !important;
  }
  .pr-170-xl {
    padding-right: 17rem !important;
  }
  .mt-180-xl {
    margin-top: 18rem !important;
  }
  .pt-180-xl {
    padding-top: 18rem !important;
  }
  .mb-180-xl {
    margin-bottom: 18rem !important;
  }
  .pb-180-xl {
    padding-bottom: 18rem !important;
  }
  .ml-180-xl {
    margin-left: 18rem !important;
  }
  .pl-180-xl {
    padding-left: 18rem !important;
  }
  .mr-180-xl {
    margin-right: 18rem !important;
  }
  .pr-180-xl {
    padding-right: 18rem !important;
  }
  .mt-190-xl {
    margin-top: 19rem !important;
  }
  .pt-190-xl {
    padding-top: 19rem !important;
  }
  .mb-190-xl {
    margin-bottom: 19rem !important;
  }
  .pb-190-xl {
    padding-bottom: 19rem !important;
  }
  .ml-190-xl {
    margin-left: 19rem !important;
  }
  .pl-190-xl {
    padding-left: 19rem !important;
  }
  .mr-190-xl {
    margin-right: 19rem !important;
  }
  .pr-190-xl {
    padding-right: 19rem !important;
  }
  .mt-200-xl {
    margin-top: 20rem !important;
  }
  .pt-200-xl {
    padding-top: 20rem !important;
  }
  .mb-200-xl {
    margin-bottom: 20rem !important;
  }
  .pb-200-xl {
    padding-bottom: 20rem !important;
  }
  .ml-200-xl {
    margin-left: 20rem !important;
  }
  .pl-200-xl {
    padding-left: 20rem !important;
  }
  .mr-200-xl {
    margin-right: 20rem !important;
  }
  .pr-200-xl {
    padding-right: 20rem !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-90-lg {
    margin-top: 9rem !important;
  }
  .pt-90-lg {
    padding-top: 9rem !important;
  }
  .mb-90-lg {
    margin-bottom: 9rem !important;
  }
  .pb-90-lg {
    padding-bottom: 9rem !important;
  }
  .ml-90-lg {
    margin-left: 9rem !important;
  }
  .pl-90-lg {
    padding-left: 9rem !important;
  }
  .mr-90-lg {
    margin-right: 9rem !important;
  }
  .pr-90-lg {
    padding-right: 9rem !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;
  }
  .mt-110-lg {
    margin-top: 11rem !important;
  }
  .pt-110-lg {
    padding-top: 11rem !important;
  }
  .mb-110-lg {
    margin-bottom: 11rem !important;
  }
  .pb-110-lg {
    padding-bottom: 11rem !important;
  }
  .ml-110-lg {
    margin-left: 11rem !important;
  }
  .pl-110-lg {
    padding-left: 11rem !important;
  }
  .mr-110-lg {
    margin-right: 11rem !important;
  }
  .pr-110-lg {
    padding-right: 11rem !important;
  }
  .mt-120-lg {
    margin-top: 12rem !important;
  }
  .pt-120-lg {
    padding-top: 12rem !important;
  }
  .mb-120-lg {
    margin-bottom: 12rem !important;
  }
  .pb-120-lg {
    padding-bottom: 12rem !important;
  }
  .ml-120-lg {
    margin-left: 12rem !important;
  }
  .pl-120-lg {
    padding-left: 12rem !important;
  }
  .mr-120-lg {
    margin-right: 12rem !important;
  }
  .pr-120-lg {
    padding-right: 12rem !important;
  }
  .mt-130-lg {
    margin-top: 13rem !important;
  }
  .pt-130-lg {
    padding-top: 13rem !important;
  }
  .mb-130-lg {
    margin-bottom: 13rem !important;
  }
  .pb-130-lg {
    padding-bottom: 13rem !important;
  }
  .ml-130-lg {
    margin-left: 13rem !important;
  }
  .pl-130-lg {
    padding-left: 13rem !important;
  }
  .mr-130-lg {
    margin-right: 13rem !important;
  }
  .pr-130-lg {
    padding-right: 13rem !important;
  }
  .mt-140-lg {
    margin-top: 14rem !important;
  }
  .pt-140-lg {
    padding-top: 14rem !important;
  }
  .mb-140-lg {
    margin-bottom: 14rem !important;
  }
  .pb-140-lg {
    padding-bottom: 14rem !important;
  }
  .ml-140-lg {
    margin-left: 14rem !important;
  }
  .pl-140-lg {
    padding-left: 14rem !important;
  }
  .mr-140-lg {
    margin-right: 14rem !important;
  }
  .pr-140-lg {
    padding-right: 14rem !important;
  }
  .mt-150-lg {
    margin-top: 15rem !important;
  }
  .pt-150-lg {
    padding-top: 15rem !important;
  }
  .mb-150-lg {
    margin-bottom: 15rem !important;
  }
  .pb-150-lg {
    padding-bottom: 15rem !important;
  }
  .ml-150-lg {
    margin-left: 15rem !important;
  }
  .pl-150-lg {
    padding-left: 15rem !important;
  }
  .mr-150-lg {
    margin-right: 15rem !important;
  }
  .pr-150-lg {
    padding-right: 15rem !important;
  }
  .mt-160-lg {
    margin-top: 16rem !important;
  }
  .pt-160-lg {
    padding-top: 16rem !important;
  }
  .mb-160-lg {
    margin-bottom: 16rem !important;
  }
  .pb-160-lg {
    padding-bottom: 16rem !important;
  }
  .ml-160-lg {
    margin-left: 16rem !important;
  }
  .pl-160-lg {
    padding-left: 16rem !important;
  }
  .mr-160-lg {
    margin-right: 16rem !important;
  }
  .pr-160-lg {
    padding-right: 16rem !important;
  }
  .mt-170-lg {
    margin-top: 17rem !important;
  }
  .pt-170-lg {
    padding-top: 17rem !important;
  }
  .mb-170-lg {
    margin-bottom: 17rem !important;
  }
  .pb-170-lg {
    padding-bottom: 17rem !important;
  }
  .ml-170-lg {
    margin-left: 17rem !important;
  }
  .pl-170-lg {
    padding-left: 17rem !important;
  }
  .mr-170-lg {
    margin-right: 17rem !important;
  }
  .pr-170-lg {
    padding-right: 17rem !important;
  }
  .mt-180-lg {
    margin-top: 18rem !important;
  }
  .pt-180-lg {
    padding-top: 18rem !important;
  }
  .mb-180-lg {
    margin-bottom: 18rem !important;
  }
  .pb-180-lg {
    padding-bottom: 18rem !important;
  }
  .ml-180-lg {
    margin-left: 18rem !important;
  }
  .pl-180-lg {
    padding-left: 18rem !important;
  }
  .mr-180-lg {
    margin-right: 18rem !important;
  }
  .pr-180-lg {
    padding-right: 18rem !important;
  }
  .mt-190-lg {
    margin-top: 19rem !important;
  }
  .pt-190-lg {
    padding-top: 19rem !important;
  }
  .mb-190-lg {
    margin-bottom: 19rem !important;
  }
  .pb-190-lg {
    padding-bottom: 19rem !important;
  }
  .ml-190-lg {
    margin-left: 19rem !important;
  }
  .pl-190-lg {
    padding-left: 19rem !important;
  }
  .mr-190-lg {
    margin-right: 19rem !important;
  }
  .pr-190-lg {
    padding-right: 19rem !important;
  }
  .mt-200-lg {
    margin-top: 20rem !important;
  }
  .pt-200-lg {
    padding-top: 20rem !important;
  }
  .mb-200-lg {
    margin-bottom: 20rem !important;
  }
  .pb-200-lg {
    padding-bottom: 20rem !important;
  }
  .ml-200-lg {
    margin-left: 20rem !important;
  }
  .pl-200-lg {
    padding-left: 20rem !important;
  }
  .mr-200-lg {
    margin-right: 20rem !important;
  }
  .pr-200-lg {
    padding-right: 20rem !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-90-md {
    margin-top: 9rem !important;
  }
  .pt-90-md {
    padding-top: 9rem !important;
  }
  .mb-90-md {
    margin-bottom: 9rem !important;
  }
  .pb-90-md {
    padding-bottom: 9rem !important;
  }
  .ml-90-md {
    margin-left: 9rem !important;
  }
  .pl-90-md {
    padding-left: 9rem !important;
  }
  .mr-90-md {
    margin-right: 9rem !important;
  }
  .pr-90-md {
    padding-right: 9rem !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;
  }
  .mt-110-md {
    margin-top: 11rem !important;
  }
  .pt-110-md {
    padding-top: 11rem !important;
  }
  .mb-110-md {
    margin-bottom: 11rem !important;
  }
  .pb-110-md {
    padding-bottom: 11rem !important;
  }
  .ml-110-md {
    margin-left: 11rem !important;
  }
  .pl-110-md {
    padding-left: 11rem !important;
  }
  .mr-110-md {
    margin-right: 11rem !important;
  }
  .pr-110-md {
    padding-right: 11rem !important;
  }
  .mt-120-md {
    margin-top: 12rem !important;
  }
  .pt-120-md {
    padding-top: 12rem !important;
  }
  .mb-120-md {
    margin-bottom: 12rem !important;
  }
  .pb-120-md {
    padding-bottom: 12rem !important;
  }
  .ml-120-md {
    margin-left: 12rem !important;
  }
  .pl-120-md {
    padding-left: 12rem !important;
  }
  .mr-120-md {
    margin-right: 12rem !important;
  }
  .pr-120-md {
    padding-right: 12rem !important;
  }
  .mt-130-md {
    margin-top: 13rem !important;
  }
  .pt-130-md {
    padding-top: 13rem !important;
  }
  .mb-130-md {
    margin-bottom: 13rem !important;
  }
  .pb-130-md {
    padding-bottom: 13rem !important;
  }
  .ml-130-md {
    margin-left: 13rem !important;
  }
  .pl-130-md {
    padding-left: 13rem !important;
  }
  .mr-130-md {
    margin-right: 13rem !important;
  }
  .pr-130-md {
    padding-right: 13rem !important;
  }
  .mt-140-md {
    margin-top: 14rem !important;
  }
  .pt-140-md {
    padding-top: 14rem !important;
  }
  .mb-140-md {
    margin-bottom: 14rem !important;
  }
  .pb-140-md {
    padding-bottom: 14rem !important;
  }
  .ml-140-md {
    margin-left: 14rem !important;
  }
  .pl-140-md {
    padding-left: 14rem !important;
  }
  .mr-140-md {
    margin-right: 14rem !important;
  }
  .pr-140-md {
    padding-right: 14rem !important;
  }
  .mt-150-md {
    margin-top: 15rem !important;
  }
  .pt-150-md {
    padding-top: 15rem !important;
  }
  .mb-150-md {
    margin-bottom: 15rem !important;
  }
  .pb-150-md {
    padding-bottom: 15rem !important;
  }
  .ml-150-md {
    margin-left: 15rem !important;
  }
  .pl-150-md {
    padding-left: 15rem !important;
  }
  .mr-150-md {
    margin-right: 15rem !important;
  }
  .pr-150-md {
    padding-right: 15rem !important;
  }
  .mt-160-md {
    margin-top: 16rem !important;
  }
  .pt-160-md {
    padding-top: 16rem !important;
  }
  .mb-160-md {
    margin-bottom: 16rem !important;
  }
  .pb-160-md {
    padding-bottom: 16rem !important;
  }
  .ml-160-md {
    margin-left: 16rem !important;
  }
  .pl-160-md {
    padding-left: 16rem !important;
  }
  .mr-160-md {
    margin-right: 16rem !important;
  }
  .pr-160-md {
    padding-right: 16rem !important;
  }
  .mt-170-md {
    margin-top: 17rem !important;
  }
  .pt-170-md {
    padding-top: 17rem !important;
  }
  .mb-170-md {
    margin-bottom: 17rem !important;
  }
  .pb-170-md {
    padding-bottom: 17rem !important;
  }
  .ml-170-md {
    margin-left: 17rem !important;
  }
  .pl-170-md {
    padding-left: 17rem !important;
  }
  .mr-170-md {
    margin-right: 17rem !important;
  }
  .pr-170-md {
    padding-right: 17rem !important;
  }
  .mt-180-md {
    margin-top: 18rem !important;
  }
  .pt-180-md {
    padding-top: 18rem !important;
  }
  .mb-180-md {
    margin-bottom: 18rem !important;
  }
  .pb-180-md {
    padding-bottom: 18rem !important;
  }
  .ml-180-md {
    margin-left: 18rem !important;
  }
  .pl-180-md {
    padding-left: 18rem !important;
  }
  .mr-180-md {
    margin-right: 18rem !important;
  }
  .pr-180-md {
    padding-right: 18rem !important;
  }
  .mt-190-md {
    margin-top: 19rem !important;
  }
  .pt-190-md {
    padding-top: 19rem !important;
  }
  .mb-190-md {
    margin-bottom: 19rem !important;
  }
  .pb-190-md {
    padding-bottom: 19rem !important;
  }
  .ml-190-md {
    margin-left: 19rem !important;
  }
  .pl-190-md {
    padding-left: 19rem !important;
  }
  .mr-190-md {
    margin-right: 19rem !important;
  }
  .pr-190-md {
    padding-right: 19rem !important;
  }
  .mt-200-md {
    margin-top: 20rem !important;
  }
  .pt-200-md {
    padding-top: 20rem !important;
  }
  .mb-200-md {
    margin-bottom: 20rem !important;
  }
  .pb-200-md {
    padding-bottom: 20rem !important;
  }
  .ml-200-md {
    margin-left: 20rem !important;
  }
  .pl-200-md {
    padding-left: 20rem !important;
  }
  .mr-200-md {
    margin-right: 20rem !important;
  }
  .pr-200-md {
    padding-right: 20rem !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-90-sm {
    margin-top: 9rem !important;
  }
  .pt-90-sm {
    padding-top: 9rem !important;
  }
  .mb-90-sm {
    margin-bottom: 9rem !important;
  }
  .pb-90-sm {
    padding-bottom: 9rem !important;
  }
  .ml-90-sm {
    margin-left: 9rem !important;
  }
  .pl-90-sm {
    padding-left: 9rem !important;
  }
  .mr-90-sm {
    margin-right: 9rem !important;
  }
  .pr-90-sm {
    padding-right: 9rem !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;
  }
  .mt-110-sm {
    margin-top: 11rem !important;
  }
  .pt-110-sm {
    padding-top: 11rem !important;
  }
  .mb-110-sm {
    margin-bottom: 11rem !important;
  }
  .pb-110-sm {
    padding-bottom: 11rem !important;
  }
  .ml-110-sm {
    margin-left: 11rem !important;
  }
  .pl-110-sm {
    padding-left: 11rem !important;
  }
  .mr-110-sm {
    margin-right: 11rem !important;
  }
  .pr-110-sm {
    padding-right: 11rem !important;
  }
  .mt-120-sm {
    margin-top: 12rem !important;
  }
  .pt-120-sm {
    padding-top: 12rem !important;
  }
  .mb-120-sm {
    margin-bottom: 12rem !important;
  }
  .pb-120-sm {
    padding-bottom: 12rem !important;
  }
  .ml-120-sm {
    margin-left: 12rem !important;
  }
  .pl-120-sm {
    padding-left: 12rem !important;
  }
  .mr-120-sm {
    margin-right: 12rem !important;
  }
  .pr-120-sm {
    padding-right: 12rem !important;
  }
  .mt-130-sm {
    margin-top: 13rem !important;
  }
  .pt-130-sm {
    padding-top: 13rem !important;
  }
  .mb-130-sm {
    margin-bottom: 13rem !important;
  }
  .pb-130-sm {
    padding-bottom: 13rem !important;
  }
  .ml-130-sm {
    margin-left: 13rem !important;
  }
  .pl-130-sm {
    padding-left: 13rem !important;
  }
  .mr-130-sm {
    margin-right: 13rem !important;
  }
  .pr-130-sm {
    padding-right: 13rem !important;
  }
  .mt-140-sm {
    margin-top: 14rem !important;
  }
  .pt-140-sm {
    padding-top: 14rem !important;
  }
  .mb-140-sm {
    margin-bottom: 14rem !important;
  }
  .pb-140-sm {
    padding-bottom: 14rem !important;
  }
  .ml-140-sm {
    margin-left: 14rem !important;
  }
  .pl-140-sm {
    padding-left: 14rem !important;
  }
  .mr-140-sm {
    margin-right: 14rem !important;
  }
  .pr-140-sm {
    padding-right: 14rem !important;
  }
  .mt-150-sm {
    margin-top: 15rem !important;
  }
  .pt-150-sm {
    padding-top: 15rem !important;
  }
  .mb-150-sm {
    margin-bottom: 15rem !important;
  }
  .pb-150-sm {
    padding-bottom: 15rem !important;
  }
  .ml-150-sm {
    margin-left: 15rem !important;
  }
  .pl-150-sm {
    padding-left: 15rem !important;
  }
  .mr-150-sm {
    margin-right: 15rem !important;
  }
  .pr-150-sm {
    padding-right: 15rem !important;
  }
  .mt-160-sm {
    margin-top: 16rem !important;
  }
  .pt-160-sm {
    padding-top: 16rem !important;
  }
  .mb-160-sm {
    margin-bottom: 16rem !important;
  }
  .pb-160-sm {
    padding-bottom: 16rem !important;
  }
  .ml-160-sm {
    margin-left: 16rem !important;
  }
  .pl-160-sm {
    padding-left: 16rem !important;
  }
  .mr-160-sm {
    margin-right: 16rem !important;
  }
  .pr-160-sm {
    padding-right: 16rem !important;
  }
  .mt-170-sm {
    margin-top: 17rem !important;
  }
  .pt-170-sm {
    padding-top: 17rem !important;
  }
  .mb-170-sm {
    margin-bottom: 17rem !important;
  }
  .pb-170-sm {
    padding-bottom: 17rem !important;
  }
  .ml-170-sm {
    margin-left: 17rem !important;
  }
  .pl-170-sm {
    padding-left: 17rem !important;
  }
  .mr-170-sm {
    margin-right: 17rem !important;
  }
  .pr-170-sm {
    padding-right: 17rem !important;
  }
  .mt-180-sm {
    margin-top: 18rem !important;
  }
  .pt-180-sm {
    padding-top: 18rem !important;
  }
  .mb-180-sm {
    margin-bottom: 18rem !important;
  }
  .pb-180-sm {
    padding-bottom: 18rem !important;
  }
  .ml-180-sm {
    margin-left: 18rem !important;
  }
  .pl-180-sm {
    padding-left: 18rem !important;
  }
  .mr-180-sm {
    margin-right: 18rem !important;
  }
  .pr-180-sm {
    padding-right: 18rem !important;
  }
  .mt-190-sm {
    margin-top: 19rem !important;
  }
  .pt-190-sm {
    padding-top: 19rem !important;
  }
  .mb-190-sm {
    margin-bottom: 19rem !important;
  }
  .pb-190-sm {
    padding-bottom: 19rem !important;
  }
  .ml-190-sm {
    margin-left: 19rem !important;
  }
  .pl-190-sm {
    padding-left: 19rem !important;
  }
  .mr-190-sm {
    margin-right: 19rem !important;
  }
  .pr-190-sm {
    padding-right: 19rem !important;
  }
  .mt-200-sm {
    margin-top: 20rem !important;
  }
  .pt-200-sm {
    padding-top: 20rem !important;
  }
  .mb-200-sm {
    margin-bottom: 20rem !important;
  }
  .pb-200-sm {
    padding-bottom: 20rem !important;
  }
  .ml-200-sm {
    margin-left: 20rem !important;
  }
  .pl-200-sm {
    padding-left: 20rem !important;
  }
  .mr-200-sm {
    margin-right: 20rem !important;
  }
  .pr-200-sm {
    padding-right: 20rem !important;
  }
}
body {
  background-color: #FFF;
}

/*header
-----------------------------------------------------*/
header {
  position: fixed;
  z-index: 99999;
  width: 100%;
  box-sizing: border-box;
  top: 0;
  left: 0;
  transition: background-color 0.3s ease;
}

.header.change-color {
  background-color: rgba(255, 255, 255, 0.9);
}

.header-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1023px) {
  .header-box {
    height: 50px;
  }
}
.header-box .logo {
  padding-left: 6rem;
  z-index: 100000;
}
@media (max-width: 1023px) {
  .header-box .logo {
    padding-left: 2rem;
  }
}
.header-box .logo picture {
  display: flex;
  align-items: center;
}
.header-box .logo img {
  width: 180px;
}
@media (max-width: 1023px) {
  .header-box .logo img {
    width: 120px;
  }
}
.header-box .logo a {
  display: flex;
  align-items: center;
}
.header-box .logo a:hover {
  opacity: 1;
}
.header-box .sm-nav {
  display: none;
}
@media (max-width: 1200px) {
  .header-box .sm-nav {
    display: block;
  }
}
.header-box .header-r-box {
  display: flex;
  align-items: flex-end;
  align-items: center;
  gap: 4rem;
}
.header-box .header-contact {
  display: flex;
  align-items: center;
}
@media (max-width: 1023px) {
  .header-box .header-contact {
    display: none;
  }
}
.header-box .header-contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.4rem;
  color: #FFF;
  height: 80px;
  width: 140px;
  font-weight: 700;
  box-sizing: border-box;
  padding: 0 1.4rem;
}
.header-box .header-contact-btn-sm {
  max-width: 300px;
  width: 100%;
  height: 70px;
  line-height: 1.4;
}
.header-box .header-contact-btn--download {
  background-color: #458EFF;
}
.header-box .header-contact-btn--contact {
  background-color: #3FC219;
}
.header-box .header-contact-sm {
  padding: 2rem 3rem;
  display: flex;
}
@media (max-width: 575px) {
  .header-box .header-contact-sm {
    flex-wrap: wrap;
  }
}
.header-box .header-contact-sm-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.4rem;
  color: #FFF;
  height: 60px;
  font-weight: 700;
  box-sizing: border-box;
  padding: 0 1.4rem;
  width: 100%;
}
.header-box .header-contact-sm-btn-sm {
  max-width: 300px;
  width: 100%;
  height: 70px;
  line-height: 1.4;
}
.header-box .header-contact-sm-btn--download {
  background-color: #458EFF;
}
.header-box .header-contact-sm-btn--contact {
  background-color: #3FC219;
}
@media (max-width: 1023px) {
  .header-box .pc-nav {
    display: none;
  }
}
.header-box .pc-nav ul {
  display: flex;
  gap: 3rem;
}
.header-box .pc-nav ul a {
  text-decoration: none;
  font-weight: bold;
}
.header-box .pc-nav .menu-item-has-children {
  position: relative;
}
.header-box .pc-nav .menu-item-has-children.parent-link-none > a {
  pointer-events: none;
}
.header-box .pc-nav .menu-item-has-children .accordion-btn {
  display: none;
  position: absolute;
  top: 10px;
  right: 0;
  line-height: 0;
  width: 40px;
  height: 40px;
}
@media (max-width: 890px) {
  .header-box .pc-nav .menu-item-has-children .accordion-btn {
    display: block;
  }
}
.header-box .pc-nav .menu-item-has-children .accordion-btn::before {
  position: absolute;
  content: "";
  top: 48%;
  left: 50%;
  color: #333;
  line-height: 1;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: translate(-50%, -50%) rotate(135deg);
  transition: all 0.5s ease;
}
.header-box .pc-nav .menu-item-has-children .accordion-btn.active::before {
  top: 52%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header-box .pc-nav .menu-item-has-children .sub-menu {
  position: absolute;
  z-index: 9999;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
  min-width: 240px;
  background: #333333;
  transform: translateY(10px);
  padding: 2rem;
  flex-direction: column;
  gap: 0;
}
@media (max-width: 890px) {
  .header-box .pc-nav .menu-item-has-children .sub-menu {
    display: none;
    position: static;
    max-width: none;
    width: 100%;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    padding: 0;
    transition: unset;
  }
}
.header-box .pc-nav .menu-item-has-children .sub-menu a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 1.4rem;
  padding: 1rem;
}
@media (max-width: 890px) {
  .header-box .pc-nav .menu-item-has-children .sub-menu a {
    color: #333;
    border-bottom: 1px solid;
  }
}
@media (min-width: 891px) {
  .header-box .pc-nav .menu-item-has-children:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}
.header-box .pc-nav.menu-item-has-children:last-of-type .sub-menu {
  right: 0;
}

/*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: #333333;
  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);
}

.nav_btn {
  width: 50px;
  height: 50px;
  z-index: 300000;
  top: 0;
  right: 0;
  margin: auto;
  cursor: pointer;
  position: absolute;
  background: #333333;
  display: none;
}
@media (max-width: 1023px) {
  .nav_btn {
    display: block;
  }
}

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

.hamburger_line1 {
  top: 18px;
}

.hamburger_line2 {
  top: 30px;
}

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

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

.globalMenu {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  width: 80%;
  transform: translateX(-100%);
  transition: all 0.6s;
  height: 100%;
  box-sizing: border-box;
  overscroll-behavior-y: contain;
  overflow-y: auto;
}

.nav__gnav {
  margin: 0 auto;
  padding: 1rem 2rem;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
}
.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;
}

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

/*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: 800px;
  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;
  }
}
.top-sec {
  padding: 12rem 0;
}
@media (max-width: 575px) {
  .top-sec {
    padding: 6rem 0;
  }
}

.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: 2rem;
  }
}

ul.disc {
  list-style: disc;
  padding-left: 2.5rem;
  margin-top: 3rem;
}
ul.disc li + li {
  margin-top: 0.2rem;
}

/*h*/
.h-sec-wrap {
  position: relative;
  text-align: center;
  margin-bottom: 5rem;
}
.h-sec-wrap .bg {
  color: #E9E9E9;
  font-size: 15rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 1023px) {
  .h-sec-wrap .bg {
    font-size: 12rem;
  }
}
@media (max-width: 767px) {
  .h-sec-wrap .bg {
    font-size: 10rem;
  }
}
@media (max-width: 575px) {
  .h-sec-wrap .bg {
    font-size: 7rem;
  }
}
.h-sec-wrap .h-sec01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  width: 100%;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 575px) {
  .h-sec-wrap .h-sec01 {
    bottom: 0;
  }
}
.h-sec-wrap .h-sec01 .jp {
  font-size: 4rem;
  line-height: 1.6;
}
@media (max-width: 1023px) {
  .h-sec-wrap .h-sec01 .jp {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .h-sec-wrap .h-sec01 .jp {
    font-size: 2.6rem;
  }
}
@media (max-width: 575px) {
  .h-sec-wrap .h-sec01 .jp {
    font-size: 2rem;
  }
}
.h-sec-wrap .h-sec01 .sub {
  font-size: 1.6rem;
  color: #458EFF;
  font-weight: 500;
}
.h-sec-wrap--w .bg {
  color: #458EFF;
}
.h-sec-wrap--w .h-sec01 .jp {
  color: #FFF;
}
.h-sec-wrap--w .h-sec01 .sub {
  color: #FFF;
}

.h-sec-wrap02 {
  position: relative;
  margin-bottom: 2rem;
}
.h-sec-wrap02 .bg {
  color: #E9E9E9;
  font-size: 10rem;
  font-weight: 500;
  line-height: 1;
  mix-blend-mode: multiply;
}
@media (max-width: 1023px) {
  .h-sec-wrap02 .bg {
    font-size: 12rem;
  }
}
@media (max-width: 767px) {
  .h-sec-wrap02 .bg {
    font-size: 10rem;
  }
}
@media (max-width: 575px) {
  .h-sec-wrap02 .bg {
    font-size: 7rem;
  }
}
.h-sec-wrap02 .h-sec02 {
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
}
@media (max-width: 575px) {
  .h-sec-wrap02 .h-sec02 {
    bottom: 0;
  }
}
.h-sec-wrap02 .h-sec02 .jp {
  font-size: 4rem;
  line-height: 1.6;
}
@media (max-width: 1023px) {
  .h-sec-wrap02 .h-sec02 .jp {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .h-sec-wrap02 .h-sec02 .jp {
    font-size: 2.4rem;
  }
}
@media (max-width: 575px) {
  .h-sec-wrap02 .h-sec02 .jp {
    font-size: 2rem;
  }
}

.h-sec03 {
  font-size: 4rem;
  display: flex;
  align-items: center;
  margin-bottom: 4.5rem;
}
@media (max-width: 1023px) {
  .h-sec03 {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .h-sec03 {
    font-size: 2.6rem;
  }
}
.h-sec03 .en {
  color: #458EFF;
  font-size: 1.6rem;
  font-weight: 600;
  border-left: 1px solid #333;
  height: 38px;
  display: flex;
  align-items: center;
  margin-left: 3rem;
  padding-left: 3rem;
}
@media (max-width: 767px) {
  .h-sec03 .en {
    font-size: 1.4rem;
  }
}
@media (max-width: 575px) {
  .h-sec03 .en {
    font-size: 1.2rem;
    margin-left: 2rem;
    padding-left: 2rem;
  }
}

.h-sec-wrap04 {
  text-align: center;
  margin-bottom: 4rem;
}
.h-sec-wrap04 .h-sec04 {
  font-size: 4rem;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .h-sec-wrap04 .h-sec04 {
    font-size: 3.6rem;
  }
}
@media (max-width: 767px) {
  .h-sec-wrap04 .h-sec04 {
    font-size: 3rem;
  }
}
@media (max-width: 575px) {
  .h-sec-wrap04 .h-sec04 {
    font-size: 2.4rem;
  }
}
.h-sec-wrap04 .en {
  color: #458EFF;
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}
.h-sec-wrap04 .en::before {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #000;
  display: block;
}
@media (max-width: 575px) {
  .h-sec-wrap04 .en {
    font-size: 1.4rem;
  }
}

.h2-style01 {
  font-size: 4rem;
  margin: 8rem 0 4rem 0;
  line-height: 1.2;
  border: #1d69e0;
}
@media (max-width: 767px) {
  .h2-style01 {
    font-size: 3rem;
    margin: 6rem 0 3rem;
  }
}
@media (max-width: 575px) {
  .h2-style01 {
    font-size: 2.6rem;
  }
}

.h3-style01 {
  font-size: 3rem;
  margin: 6rem 0 3rem 0;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .h3-style01 {
    font-size: 2.4rem;
    margin: 4rem 0 2.5rem;
  }
}
@media (max-width: 575px) {
  .h3-style01 {
    font-size: 2rem;
  }
}
.h3-style01 small {
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .h3-style01 small {
    font-size: 1.4rem;
  }
}
@media (max-width: 575px) {
  .h3-style01 small {
    font-size: 1.2rem;
  }
}

.page-header {
  background: url(../images/common/page-header.jpg) no-repeat center bottom;
  background-size: cover;
  padding: clamp(80px, 61.633px + 4.898vw, 140px) 0 clamp(50px, 34.694px + 4.082vw, 100px);
}
.page-header .en-r {
  font-size: clamp(32px, 26.49px + 1.469vw, 50px);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.page-header .en {
  font-size: clamp(18px, 16.163px + 0.49vw, 24px);
  color: rgba(51, 51, 51, 0.4);
  font-weight: 500;
}

.breadcrumb {
  position: relative;
  font-size: clamp(12px, 9.388px + 0.163vw, 14px);
  padding: 4rem 0 0;
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.breadcrumb a {
  color: #333;
  text-decoration: none;
}
.breadcrumb-arrow {
  display: inline-block;
  box-sizing: border-box;
  margin-top: 2px;
}
.breadcrumb-arrow::before {
  content: "";
  background-color: #333;
  width: 10px;
  height: 1px;
  display: block;
}

.page-sec {
  padding: 12rem 0;
}
@media (max-width: 767px) {
  .page-sec {
    padding: 6rem 0;
  }
}
.page-sec table {
  width: 100%;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .page-sec table {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .page-sec table {
    font-size: 1.4rem;
  }
}
.page-sec table th,
.page-sec table td {
  text-align: left;
}
.page-sec table th {
  width: 140px;
  padding: 2rem 0;
  border-bottom: 1px solid #458EFF;
}
@media (max-width: 575px) {
  .page-sec table th {
    width: 110px;
  }
}
.page-sec table td {
  padding: 2rem;
  border-bottom: 1px solid #DFDFDF;
}

.page-sec + .page-sec {
  padding-top: 0;
}

.cat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .cat-list {
    margin-bottom: 3rem;
  }
}
.cat-list a {
  display: inline-block;
  font-size: clamp(14px, 13.388px + 0.163vw, 16px);
  padding: 0.5rem 4rem;
  text-decoration: none;
  color: #458EFF;
  border: 1px solid #458EFF;
}
@media (max-width: 575px) {
  .cat-list a {
    padding: 0.5rem 1rem;
  }
}
.cat-list .active a {
  background: #458EFF;
  color: #FFF;
}

/*btn
-----------------------------------------------------*/
/*ページ内共通*/
.contact-btn {
  display: flex;
  gap: 1.5rem 2rem;
  justify-content: center;
}
@media (max-width: 575px) {
  .contact-btn {
    gap: 1.5rem 1rem;
  }
}

.btn-wrap {
  margin-top: 4rem;
}

.btn01 a {
  color: #fff;
  text-decoration: none;
  background: #458EFF;
  transition: all 0.3s ease;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
  max-width: 285px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin: auto;
}

.btn02 {
  color: #0086CD;
  background-color: #FFF;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  padding: 2rem;
  border-radius: 100px;
  box-sizing: border-box;
  max-width: 333px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.btn02 .arrow {
  position: relative;
  width: 27px;
  height: 27px;
}
.btn02 .arrow::before, .btn02 .arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.btn02 .arrow::before {
  width: 27px;
  height: 27px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #0086CD;
}
.btn02 .arrow::after {
  left: 8px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn03 a {
  color: #458EFF;
  border-bottom: 1px solid #458EFF;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  padding-bottom: 0.8rem;
}
.btn03 a .arrow {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 1px;
  border-radius: 9999px;
  background-color: #458EFF;
  margin-left: 1rem;
  margin-bottom: 2px;
}
.btn03 a .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #458EFF;
  transform: rotate(45deg);
  transform-origin: calc(100% - 0.5px) 50%;
}

.view-more {
  margin-top: 3rem;
}
.view-more a {
  text-transform: uppercase;
  color: #333333;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.view-more a .arrow {
  position: relative;
  width: 50px;
  height: 50px;
}
.view-more a .arrow::before, .view-more a .arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.view-more a .arrow::before {
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #0086CD;
}
.view-more a .arrow::after {
  left: 17px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  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
-----------------------------------------------------*/
.main-v {
  position: relative;
}
.main-v__img img {
  width: 100%;
}

/*contact-box
-----------------------------------------------------*/
.common-contact {
  background-color: #333333;
  color: #FFF;
  padding: 6rem 0 7rem 0;
}
.common-contact .h-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.common-contact .h-wrap h2 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  width: 100%;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .common-contact .h-wrap h2 {
    top: 30%;
  }
}
.common-contact .contact-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -3rem;
}
@media (max-width: 767px) {
  .common-contact .contact-box {
    flex-wrap: wrap;
    margin-top: -1rem;
  }
}
@media (max-width: 575px) {
  .common-contact .contact-box {
    margin-top: 0;
  }
}
.common-contact .contact-box-btn {
  position: relative;
  width: 50%;
  height: 150px;
  display: flex;
  align-items: center;
  padding: 2rem 4rem 2rem 5rem;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .common-contact .contact-box-btn {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .common-contact .contact-box-btn {
    padding: 2rem;
    height: 130px;
  }
}
.common-contact .contact-box-btn a {
  text-decoration: none;
  color: #FFF;
  font-size: clamp(2.4rem, 5vw, 3rem);
  font-weight: bold;
  display: flex;
  flex-direction: column;
}
.common-contact .contact-box-btn a .en {
  font-size: 1.6rem;
  font-weight: normal;
}
.common-contact .contact-box-btn a::after {
  content: "";
  background-image: url(../images/common/banner-bg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 16%;
  bottom: 0;
  width: 200px;
  height: 110px;
}
@media (max-width: 575px) {
  .common-contact .contact-box-btn a::after {
    width: 140px;
    height: 77px;
  }
}
.common-contact .contact-box-btn .arrow {
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 1px;
  margin-top: 9.2px;
  border-radius: 9999px;
  background-color: #ffffff;
  top: 50%;
  right: 4rem;
  transform: translateY(-50%);
}
@media (max-width: 575px) {
  .common-contact .contact-box-btn .arrow {
    right: 2rem;
  }
}
.common-contact .contact-box-btn .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 14px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 0.5px) 50%;
}
.common-contact .contact-box-btn--consultation {
  background-color: #458EFF;
}
.common-contact .contact-box-btn--estimate {
  background-color: #3FC219;
}
.common-contact--footer {
  background-image: url(../images/common/bg-contact.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.common-contact--ma {
  padding-top: 12rem;
}
@media (max-width: 767px) {
  .common-contact--ma {
    padding-top: 9rem;
  }
}
.common-contact--ma .h-wrap {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.common-contact--ma .h-wrap h2 {
  position: static;
  top: auto;
  left: auto;
  transform: none;
  margin-bottom: 2rem;
}
.common-contact--ma .h-wrap span {
  position: absolute;
  top: -4.5rem;
}
@media (max-width: 767px) {
  .common-contact--ma .h-wrap span {
    top: -1.5rem;
  }
}
.common-contact--ma .contact-box {
  margin-top: 4rem;
}

/*concerns
-----------------------------------------------------*/
.concerns {
  background-image: url(../images/common/bg-gray.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
}
.concerns-list--box {
  background-color: #FFF;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  margin-top: 1.2rem;
  padding: 5rem;
}
@media (max-width: 575px) {
  .concerns-list--box {
    padding: 3rem 2rem;
  }
}
.concerns-list--box-top h3 {
  font-size: clamp(2.2rem, 4.4vw, 3rem);
  color: #FFF;
  padding: 1.5rem 3rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  line-height: 1.2;
  margin-bottom: 3rem;
}
@media (max-width: 575px) {
  .concerns-list--box-top h3 {
    padding: 1.5rem 2rem;
  }
}
.concerns-list--box-top h3 span {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: bold;
  flex: none;
}
.concerns-list--box-top p {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .concerns-list--box-top p {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .concerns-list--box-top p {
    font-size: 1.4rem;
  }
}
.concerns-list--box-bottom {
  display: flex;
  gap: 2rem 3rem;
  margin-top: 3rem;
}
.concerns-list--box-bottom .img {
  min-width: 100px;
  max-width: 100px;
  width: 100%;
}
.concerns-list--box-bottom .text {
  width: 100%;
}
.concerns-list--box-bottom .text h4 {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .concerns-list--box-bottom .text h4 {
    font-size: 1.8rem;
  }
}
.concerns-list--box-bottom .text p {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .concerns-list--box-bottom .text p {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .concerns-list--box-bottom .text p {
    font-size: 1.4rem;
  }
}
.concerns-list--box:nth-of-type(odd) h3 {
  background-color: #458EFF;
}
.concerns-list--box:nth-of-type(even) h3 {
  background-color: #3FC219;
}

/*reason
-----------------------------------------------------*/
.reason {
  background-image: linear-gradient(90deg, #1d69e0, #458eff);
  position: relative;
  z-index: 0;
}
.reason::after {
  content: "";
  background: url(../images/common/bg-bill.png) no-repeat center bottom;
  background-size: contain;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60%;
  z-index: -1;
}
@media (max-width: 767px) {
  .reason::after {
    background-size: cover;
  }
}
.reason-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
}
.reason-list--box {
  width: calc(50% - 2rem);
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .reason-list--box {
    width: 100%;
  }
}
.reason-list--box .img {
  aspect-ratio: 290/163;
  width: 100%;
  max-width: 800px;
  object-fit: cover;
}
.reason-list--box .text {
  background-color: #FFF;
  padding: 5rem;
  flex: 1;
}
@media (max-width: 1023px) {
  .reason-list--box .text {
    padding: 5rem 3rem;
  }
}
.reason-list--box .text .num {
  position: relative;
  z-index: 0;
  margin-top: -7.6rem;
}
.reason-list--box .text .num::after {
  width: 300px;
  border-bottom: 30px solid #FFF;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media (max-width: 1023px) {
  .reason-list--box .text .num::after {
    width: 260px;
  }
}
@media (max-width: 575px) {
  .reason-list--box .text .num::after {
    width: 220px;
  }
}
.reason-list--box .text .num p {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #458EFF;
}
.reason-list--box .text .num span {
  font-size: 4rem;
  margin-left: 0.5rem;
}
.reason-list--box .text-box h3 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .reason-list--box .text-box h3 {
    font-size: 2.6rem;
  }
}
@media (max-width: 767px) {
  .reason-list--box .text-box h3 {
    font-size: 2.2rem;
  }
}
@media (max-width: 575px) {
  .reason-list--box .text-box h3 {
    font-size: 2rem;
  }
}

/*video
-----------------------------------------------------*/
.video-list {
  display: flex;
  gap: 2rem 4.5rem;
}
@media (max-width: 767px) {
  .video-list {
    flex-wrap: wrap;
  }
}
.video-list--box {
  flex: 1 1 calc((100% - 9rem) / 3);
}
@media (max-width: 767px) {
  .video-list--box {
    flex: 100%;
  }
}
.video-list--box iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

/*achieve
-----------------------------------------------------*/
.achieve {
  background-color: #f9f9f9;
}
.achieve .h-sec-wrap {
  margin-bottom: 2rem;
}
.achieve__slide__area {
  position: relative;
  overflow: visible;
}
.achieve__slide__area .achieve__swiper-wrap,
.achieve__slide__area .achieve__swiper {
  overflow: visible !important;
}
.achieve__slide__area .achieve__swiper-wrap {
  position: relative;
}
.achieve__slide__area .achieve__swiper {
  width: 100%;
  padding-right: 10%;
}
.achieve__slide__area .achieve__slide {
  width: 100%;
  max-width: 400px;
  height: auto !important;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
.achieve__slide__area .achieve__slide a {
  display: block;
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.achieve__slide__area .achieve__slide a img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}
.achieve__slide__area .achieve__slide a .text {
  padding: 3rem;
  background: #FFF;
}
.achieve__slide__area .achieve__slide a .text h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .achieve__slide__area .achieve__slide a .text h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 575px) {
  .achieve__slide__area .achieve__slide a .text h3 {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .achieve__slide__area .achieve__slide a .text ul {
    font-size: 1.4rem;
  }
}
.achieve .swiper-nav {
  display: flex;
  gap: 1rem;
  z-index: 10;
  height: 50px;
}
.achieve .swiper-button-prev,
.achieve .swiper-button-next {
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
  left: 0;
}
.achieve .swiper-button-prev::after,
.achieve .swiper-button-next::after {
  content: none !important;
}
.achieve .swiper-button-prev::before,
.achieve .swiper-button-next::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #458EFF;
  transition: opacity 0.3s;
}
.achieve .swiper-button-prev span,
.achieve .swiper-button-next span {
  position: absolute;
  position: relative;
  display: inline-block;
  width: 20px;
  height: 1px;
  margin-top: 3.4px;
  border-radius: 9999px;
  background-color: #ffffff;
}
.achieve .swiper-button-prev span::before,
.achieve .swiper-button-next span::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 0.5px) 50%;
}
.achieve:hover::before {
  opacity: 0.8;
}
.achieve .swiper-button-prev {
  transform: scaleX(-1);
}
.achieve .achieve-btn {
  margin-left: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: end;
  justify-content: center;
  margin-bottom: 3rem;
}

/*faq
-----------------------------------------------------*/
.faq-container {
  width: 100%;
  box-sizing: border-box;
}
.faq-container > .faq-item-title:first-of-type {
  margin-top: 0 !important;
}
.faq-container .faq-item-title {
  font-size: 3rem;
  margin: 8rem 0 4rem 0;
  line-height: 1.2;
  font-weight: bold;
}
@media (max-width: 767px) {
  .faq-container .faq-item-title {
    font-size: 2.4rem;
    margin: 6rem 0 3rem;
  }
}
@media (max-width: 575px) {
  .faq-container .faq-item-title {
    font-size: 2rem;
  }
}
.faq-container .faq-item-title small {
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .faq-container .faq-item-title small {
    font-size: 1.4rem;
  }
}
@media (max-width: 575px) {
  .faq-container .faq-item-title small {
    font-size: 1.2rem;
  }
}
.faq-container .faq-title {
  font-size: 2.2rem;
  padding: 3rem 4rem;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .faq-container .faq-title {
    font-size: 1.8rem;
    padding: 2rem 3rem;
  }
}
.faq-container .faq-text {
  padding: 3rem 4rem;
  box-sizing: border-box;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .faq-container .faq-text {
    font-size: 1.6rem;
    padding: 2rem 3rem;
  }
}
@media (max-width: 575px) {
  .faq-container .faq-text {
    font-size: 1.4rem;
  }
}
.faq-container .qa {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  margin-right: 4rem;
  position: relative;
}
.faq-container .qa::after {
  position: absolute;
  left: 0;
  top: -2px;
}
.faq-container .faq-in {
  display: flex;
}
.faq-container dl {
  margin-bottom: 3rem;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  background-color: #FFF;
}
.faq-container dl:last-of-type {
  margin-bottom: 0;
}
.faq-container dt {
  font-weight: bold;
  border-bottom: 1px solid #DFDFDF;
}
.faq-container dt .faq-in .qa::after {
  content: "Q";
  color: #458EFF;
}
.faq-container dd .faq-in .qa::after {
  content: "A";
  color: #3FC219;
}

/*top-news
-----------------------------------------------------*/
.news {
  padding-top: 0;
}
@media (max-width: 1023px) {
  .news .lg-none {
    display: none;
  }
}
.news .lg-block {
  display: none;
}
@media (max-width: 1023px) {
  .news .lg-block {
    display: block;
    margin-top: 4rem;
  }
}
.news .lg-block a {
  justify-content: end;
}

.top-news {
  gap: 8rem 12%;
}
@media (max-width: 1023px) {
  .top-news {
    flex-wrap: wrap;
  }
}
@media (max-width: 1023px) {
  .top-news {
    gap: 4rem;
  }
}
.top-news .col01 {
  width: 380px;
  position: relative;
}
.top-news .col01::after {
  content: "";
  background-color: #F3F3F3;
  width: 62vw;
  height: 100%;
  position: absolute;
  left: calc(-1 * (100vw - 100%) / 2);
  z-index: -2;
  top: 30px;
}
@media (max-width: 1023px) {
  .top-news .col01::after {
    width: 45vw;
    height: 80%;
  }
}
@media (max-width: 1023px) {
  .top-news .col01 {
    width: 100%;
  }
}
.top-news .col02 {
  width: 100%;
}
.top-news .col02 ul li a {
  text-decoration: none;
  display: flex;
  gap: 1rem 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid #DFDFDF;
}
@media (max-width: 575px) {
  .top-news .col02 ul li a {
    flex-wrap: wrap;
  }
}
.top-news .col02 ul li a .title-top {
  display: flex;
  gap: 2rem;
}
@media (max-width: 575px) {
  .top-news .col02 ul li a .title-top {
    width: 100%;
  }
}
.top-news .col02 ul li a .day {
  color: #333;
  word-break: keep-all;
}
.top-news .col02 ul li a .cat {
  border: 1px solid #458EFF;
  color: #458EFF;
  font-size: 1.2rem;
  padding: 0.3rem 1rem;
  word-break: keep-all;
}
.top-news .col02 ul li a h3 {
  font-weight: 400;
  font-size: 1.6rem;
}
@media (max-width: 575px) {
  .top-news .col02 ul li a h3 {
    font-size: 1.4rem;
  }
}

/*footer
-----------------------------------------------------*/
footer {
  background-color: #333333;
}
footer .footer-inner {
  padding: 7rem 0;
  display: flex;
  gap: 8rem 10rem;
}
@media (max-width: 1199px) {
  footer .footer-inner {
    gap: 6rem;
  }
}
@media (max-width: 1023px) {
  footer .footer-inner {
    flex-wrap: wrap;
  }
}
@media (max-width: 1023px) {
  footer .footer-inner .footer-logo {
    width: 100%;
  }
}
footer .footer-inner .footer-link {
  font-size: clamp(12px, 11.388px + 0.163vw, 14px);
}
@media (max-width: 1023px) {
  footer .footer-inner .footer-link {
    width: 100%;
  }
}
footer .footer-inner .footer-link__inner {
  display: flex;
  justify-content: center;
  gap: 4rem 6rem;
}
@media (max-width: 1199px) {
  footer .footer-inner .footer-link__inner {
    gap: 4rem;
  }
}
@media (max-width: 1023px) {
  footer .footer-inner .footer-link__inner {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4rem 10rem;
  }
}
@media (max-width: 767px) {
  footer .footer-inner .footer-link__inner {
    width: 100%;
    gap: 3rem 2%;
    justify-content: start;
  }
}
footer .footer-inner .footer-link a {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 767px) {
  footer .footer-inner .footer-link-list {
    width: 49%;
  }
}
@media (max-width: 575px) {
  footer .footer-inner .footer-link-list {
    width: 100%;
  }
}
footer .footer-inner .footer-link-list ul + ul {
  margin-top: 3rem;
}
footer .footer-inner .footer-link-list li {
  padding: 1rem;
}
footer .footer-inner .footer-link-list .menu-item-has-children .sub-menu {
  font-size: clamp(10px, 9.388px + 0.163vw, 12px);
}
footer .footer-inner .footer-link-list .menu-item-has-children .sub-menu li {
  position: relative;
  padding: 0.5rem 1rem;
}
footer .footer-inner .footer-link-list .menu-item-has-children .sub-menu li::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background-color: #FFF;
  width: 5px;
  height: 1px;
}
footer .footer-r {
  gap: 3rem;
  margin-left: auto;
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 1023px) {
  footer .footer-r {
    width: 100%;
  }
}
footer .footer-r .page-top a {
  display: block;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #000;
  text-align: center;
  z-index: 999;
}
footer .footer-r .page-top a .arrow {
  position: relative;
  display: inline-block;
  width: 1px;
  height: 20px;
  border-radius: 9999px;
  background-color: #ffffff;
  top: 18px;
}
footer .footer-r .page-top a .arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 10px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform: rotate(45deg);
  transform-origin: 50% 0.5px;
}
footer .footer-r .footer-copyright {
  color: #FFF;
  font-size: 1.2rem;
}

/* page-company
-----------------------------------------------------*/
.page-company .map-wrap {
  width: 100%;
  height: 500px;
  position: relative;
}
@media (max-width: 1023px) {
  .page-company .map-wrap {
    height: 300px;
  }
}
.page-company .map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* page-guidelines
-----------------------------------------------------*/
.page-guidelines {
  counter-reset: main;
}
.page-guidelines p,
.page-guidelines ul,
.page-guidelines ol {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .page-guidelines p,
  .page-guidelines ul,
  .page-guidelines ol {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .page-guidelines p,
  .page-guidelines ul,
  .page-guidelines ol {
    font-size: 1.4rem;
  }
}
.page-guidelines h3 {
  font-size: 3rem;
  margin: 6rem 0 3rem 0;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .page-guidelines h3 {
    font-size: 2.4rem;
    margin: 4rem 0 2.5rem;
  }
}
@media (max-width: 575px) {
  .page-guidelines h3 {
    font-size: 2rem;
  }
}
.page-guidelines h3 small {
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .page-guidelines h3 small {
    font-size: 1.4rem;
  }
}
@media (max-width: 575px) {
  .page-guidelines h3 small {
    font-size: 1.2rem;
  }
}
.page-guidelines h4 {
  font-size: 2.4rem;
  margin: 4rem 0 2.5rem;
}
@media (max-width: 767px) {
  .page-guidelines h4 {
    font-size: 1.8rem;
    margin: 3rem 0 2rem;
  }
}
.page-guidelines .decimal01 {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-guidelines .decimal01 > li {
  counter-increment: main;
  position: relative;
  padding-left: 2em;
  margin-bottom: 1em;
}
.page-guidelines .decimal01 > li::before {
  content: counter(main) ". ";
  position: absolute;
  left: 0;
  color: #333;
}
.page-guidelines .decimal01 .disc {
  list-style: disc;
  margin: 1em 0 0 1em;
  padding: 0;
}
.page-guidelines .decimal01 .disc li::marker {
  font-size: 10px;
}
.page-guidelines .decimal01 .disc li {
  list-style: disc;
}
.page-guidelines ul.parentheses {
  list-style: none;
  counter-reset: num;
  margin: 0;
  padding: 0;
}
.page-guidelines ul.parentheses > li {
  counter-increment: num;
  position: relative;
  padding-left: 2.8em;
  margin-bottom: 0.5em;
}
.page-guidelines ul.parentheses > li::before {
  content: "（" counter(num) "）";
  position: absolute;
  left: 0;
  color: #333;
}

ul.disc-none {
  list-style: none !important;
  position: relative;
  margin: 0;
  padding: 0;
}
ul.disc-none li {
  list-style: none !important;
  list-style-position: outside;
  margin: 0;
  padding-left: 1.25em;
}
ul.disc-none li span {
  position: absolute;
  left: 0;
  margin: 0;
}
ul.disc-none .disc {
  list-style: disc !important;
}
ul.disc-none .disc li {
  list-style: disc !important;
  padding-left: 0;
}

/*page-contact
-----------------------------------------------------*/
.form-box .required {
  background-color: #BF0000;
  font-size: 1.2rem;
  font-weight: bold;
  color: #FFF;
  padding: 0 8px;
  display: flex;
  align-items: center;
}
.form-box .ckr-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem 1.5rem;
}
.form-box input[type=text],
.form-box input[type=email],
.form-box input[type=tel],
.form-box textarea {
  width: 100%;
  padding: 1.5rem;
  border: 1px solid #DFDFDF;
  font-size: 1.6rem;
  border-radius: 0;
}
.form-box input[type=checkbox],
.form-box input[type=radio] {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}
.form-box input[type=checkbox] + label {
  cursor: pointer;
  padding-left: 3.5rem;
  position: relative;
}
.form-box input[type=checkbox] + label::before, .form-box input[type=checkbox] + label::after {
  content: "";
  display: block;
  position: absolute;
}
.form-box input[type=checkbox] + label::before {
  background: #fff;
  border-radius: 0%;
  border: 1px solid #DFDFDF;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  top: calc(50% + 1px);
  left: 0;
}
.form-box input[type=checkbox] + label::after {
  border-bottom: 3px solid #DFDFDF;
  border-left: 3px solid #DFDFDF;
  opacity: 0;
  height: 5px;
  width: 9px;
  transform: rotate(-45deg);
  top: 6px;
  left: 6px;
}
.form-box input[type=checkbox]:checked + label::after {
  opacity: 1;
}
.form-box input[type=radio] + label {
  cursor: pointer;
  padding-left: 3.5rem;
  position: relative;
}
.form-box input[type=radio] + label::before, .form-box input[type=radio] + label::after {
  content: "";
  display: block;
  position: absolute;
}
.form-box input[type=radio] + label::before {
  background: #fff;
  border-radius: 0%;
  border: 1px solid #DFDFDF;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  top: calc(50% + 1px);
  left: 0;
  transform: translateY(-50%);
}
.form-box input[type=radio] + label::after {
  opacity: 0;
  top: calc(50% + 1px);
  left: 5px;
  height: 14px;
  width: 14px;
  transform: translateY(-50%);
  background: #458EFF;
  border-radius: 50%;
}
.form-box input[type=radio]:checked + label::after {
  opacity: 1;
}
.form-box .form-row {
  border-bottom: 1px solid #DFDFDF;
  padding: 2rem 0;
  display: flex;
  gap: 1rem 6rem;
}
@media (max-width: 1023px) {
  .form-box .form-row {
    flex-wrap: wrap;
  }
}
.form-box .form-row:first-of-type {
  padding-top: 0;
}
.form-box .form-row .form-label {
  max-width: 220px;
  width: 100%;
}
@media (max-width: 1023px) {
  .form-box .form-row .form-label {
    max-width: 100%;
  }
}
.form-box .form-row .form-label label {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}
@media (max-width: 1023px) {
  .form-box .form-row .form-label label {
    justify-content: flex-start;
    gap: 0 2rem;
  }
}
.form-box .text-box {
  flex: 1;
}
.form-box input {
  width: 300px !important;
  max-width: 100%;
  box-sizing: border-box;
}
.form-box #company-name,
.form-box textarea {
  width: 100% !important;
  box-sizing: border-box;
}
.form-box textarea {
  height: 260px;
}
.form-box .submit-btn input {
  display: inline-block;
  min-width: 400px;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  background: #BF0000;
  padding: 3rem 4rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.4s ease;
}
.form-box .submit-btn input:hover {
  opacity: 0.6;
}
@media (max-width: 575px) {
  .form-box .submit-btn input {
    min-width: initial;
    max-width: 340px;
    width: 100%;
    padding: 2rem 3rem;
    font-size: 2rem;
  }
}
.form-box .submit-btn .wpcf7-spinner {
  display: block;
  align-items: center;
  margin: 1rem auto 0;
}

/*20251125追記ここから
-----------------------------------------------------*/
/*message
-----------------------------------------------------*/
.message-img {
  max-width: 1600px;
  margin: auto;
  background-size: contain;
  position: relative;
}
@media (max-width: 1023px) {
  .message-img {
    display: flex;
    flex-direction: column;
    gap: 2rem 0;
  }
}
@media (max-width: 1023px) {
  .message-img .container-lg {
    order: 1;
  }
}
.message-img .flex {
  flex-direction: column;
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .message-img .flex {
    position: static;
    display: block;
    text-align: center;
    transform: none;
    padding-top: 2rem;
  }
}
.message-img .flex h3 {
  background: linear-gradient(90deg, #458EFF, #4AD821);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(3rem, 4vw, 5.3rem);
  margin-bottom: 10%;
  display: inline-block;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .message-img .flex h3 {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .message-img img {
    aspect-ratio: 1600/527;
    object-fit: cover;
    height: 340px;
  }
}
@media (max-width: 767px) {
  .message-img img {
    aspect-ratio: auto;
    height: auto;
  }
}

.message-text {
  background-color: #FFF;
  padding: 6rem 12rem;
  margin-top: -4%;
  z-index: 1;
  position: relative;
}
@media (max-width: 1023px) {
  .message-text {
    margin-top: 0;
    padding: 6rem 0;
  }
}

/*advisor
-----------------------------------------------------*/
.advisor-link-flex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 767px) {
  .advisor-link-flex {
    grid-template-columns: repeat(2, 1fr);
  }
}
.advisor-link-flex .advisor-link {
  position: relative;
}
.advisor-link-flex .advisor-link a {
  color: #FFF;
  text-decoration: none;
}
.advisor-link-flex .advisor-link a h4 {
  position: absolute;
  z-index: 1;
  left: 2rem;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
}
.advisor-link-flex .advisor-link a h4 .name {
  font-size: 2.6rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .advisor-link-flex .advisor-link a h4 .name {
    font-size: 2.2rem;
  }
}
@media (max-width: 575px) {
  .advisor-link-flex .advisor-link a h4 .name {
    font-size: 1.8rem;
  }
}
.advisor-link-flex .advisor-link a h4 .posi {
  font-size: 1.6rem;
  font-weight: 400;
}
@media (max-width: 575px) {
  .advisor-link-flex .advisor-link a h4 .posi {
    font-size: 1.4rem;
  }
}
.advisor-link-flex .advisor-link a .img-wrap {
  position: relative;
  display: inline-block;
}
.advisor-link-flex .advisor-link a .img-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  pointer-events: none;
}
.advisor-link-flex .advisor-link a .img-wrap img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 30/37;
}
.advisor-link-flex .advisor-link .arrow {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-image: url("../images/common/arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 2rem;
  bottom: 2rem;
}
@media (max-width: 767px) {
  .advisor-link-flex .advisor-link .arrow {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 575px) {
  .advisor-link-flex .advisor-link .arrow {
    width: 30px;
    height: 30px;
  }
}

/*advisordetail
-----------------------------------------------------*/
.advisor-detail {
  display: flex;
  gap: 8rem;
  margin-bottom: 7rem;
}
@media (max-width: 1023px) {
  .advisor-detail {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.advisor-detail--side {
  max-width: 473px;
  width: 100%;
}
.advisor-detail--side .img {
  margin-bottom: 3rem;
}
.advisor-detail--side .profile {
  color: #458EFF;
  font-weight: 600;
  font-size: 4rem;
}
.advisor-detail--side .profile-box {
  position: relative;
  background-color: #F3F3F3;
  padding: 2rem 3rem;
}
.advisor-detail--side .profile-box::before {
  position: absolute;
  display: block;
  content: "";
  background: rgba(69, 142, 255, 0.2);
  width: 2px;
  height: 70%;
  z-index: 0;
  left: 105px;
  top: 26px;
}
.advisor-detail--side .profile-box-inner {
  display: flex;
  align-items: flex-start;
}
.advisor-detail--side .profile-box-inner:nth-child(n+2) {
  margin-top: 1.5rem;
}
.advisor-detail--side .profile-box-inner dt {
  position: relative;
  color: #458EFF;
  line-height: 1;
  box-sizing: border-box;
  word-break: break-all;
  font-weight: bold;
  width: 8rem;
}
.advisor-detail--side .profile-box-inner dt::before {
  position: absolute;
  display: block;
  content: "";
  top: 10px;
  right: 0;
  width: 8px;
  height: 8px;
  background: #458EFF;
  transform: translateY(-50%);
}
.advisor-detail--side .profile-box-inner dd {
  line-height: 1.5;
  flex: 1;
  margin-left: 2rem;
}
.advisor-detail--main-top {
  padding-bottom: 4rem;
  border-bottom: 1px solid #DFDFDF;
}
.advisor-detail--main-top .affi {
  font-size: 1.8rem;
}
@media (max-width: 575px) {
  .advisor-detail--main-top .affi {
    font-size: 1.6rem;
  }
}
.advisor-detail--main-top .name {
  font-size: 4rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
}
@media (max-width: 575px) {
  .advisor-detail--main-top .name {
    font-size: 3.2rem;
  }
}
.advisor-detail--main-top .name .en {
  font-size: 1.8rem;
  color: #999;
  font-weight: 600;
}
@media (max-width: 575px) {
  .advisor-detail--main-top .name .en {
    font-size: 1.6rem;
  }
}
.advisor-detail--main-top h3 {
  font-size: 2.4rem;
  line-height: 1.6;
}
@media (max-width: 575px) {
  .advisor-detail--main-top h3 {
    font-size: 2.2rem;
  }
}
.advisor-detail--main-top h4 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #458EFF;
  border: 1px solid #458EFF;
  display: inline-block;
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding: 0 1rem;
}
@media (max-width: 575px) {
  .advisor-detail--main-top h4 {
    font-size: 1.6rem;
  }
}
.advisor-detail--main-top p {
  font-size: 1.8rem;
}
@media (max-width: 575px) {
  .advisor-detail--main-top p {
    font-size: 1.6rem;
  }
}
.advisor-detail--main-bottom h3 {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: #458EFF;
  font-size: 2.4rem;
  margin: 4rem 0 2rem 0;
  line-height: 1.4;
}
@media (max-width: 575px) {
  .advisor-detail--main-bottom h3 {
    font-size: 2.2rem;
  }
}
.advisor-detail--main-bottom h3::before {
  content: "";
  height: 1px;
  width: 25px;
  background-color: #458EFF;
}
.advisor-detail--main-bottom .img {
  margin-top: 4rem;
}

/*news
-----------------------------------------------------*/
/*pagination*/
.pagination {
  margin-top: 5rem;
}
.pagination .page-numbers {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.pagination .page-numbers li {
  width: 40px;
  height: 40px;
}
.pagination .page-numbers .current {
  background-color: #458EFF !important;
  color: #FFF !important;
}
.pagination .page-numbers .page-numbers {
  background-color: #FFF;
  color: #333333;
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  width: 100%;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination .page-numbers .prev {
  position: relative;
  display: inline-block;
}
.pagination .page-numbers .prev::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 13px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #333333;
  border-right: 2px solid #333333;
  transform: translateY(-50%) rotate(-135deg);
}
.pagination .page-numbers .next {
  position: relative;
  display: inline-block;
}
.pagination .page-numbers .next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 13px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #333333;
  border-right: 2px solid #333333;
  transform: translateY(-50%) rotate(45deg);
}

/*newsdetail
-----------------------------------------------------*/
.single-sec {
  padding: 12rem 0;
}
@media (max-width: 767px) {
  .single-sec {
    padding: 6rem 0;
  }
}
.single-sec .title-top {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 575px) {
  .single-sec .title-top {
    width: 100%;
  }
}
.single-sec .day {
  color: #333;
  word-break: keep-all;
}
.single-sec .cat {
  border: 1px solid #458EFF;
  color: #458EFF;
  font-size: 1.2rem;
  padding: 0.3rem 1rem;
  word-break: keep-all;
}
.single-sec .thumbnail {
  width: 100%;
  margin: auto;
}
.single-sec .title {
  font-size: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .single-sec .title {
    font-size: 2.6rem;
  }
}
@media (max-width: 575px) {
  .single-sec .title {
    font-size: 2.2rem;
  }
}
.single-sec__contents {
  margin-bottom: 6rem;
}
.single-sec__contents h2 {
  position: relative;
  font-weight: bold;
  font-size: 2.6rem;
  border-bottom: 4px solid #DFDFDF;
  padding-bottom: 1.5rem;
  margin: 6rem 0 3rem 0;
}
@media (max-width: 575px) {
  .single-sec__contents h2 {
    font-size: 2.4rem;
  }
}
.single-sec__contents h2::before {
  position: absolute;
  bottom: -3px;
  width: 100px;
  height: 3px;
  display: block;
  content: "";
  background: #458EFF;
}
.single-sec__contents h3 {
  font-size: 2.4rem;
  border-bottom: 1px solid #458EFF;
  padding-bottom: 1rem;
  margin: 4rem 0 3rem 0;
}
@media (max-width: 575px) {
  .single-sec__contents h3 {
    font-size: 2.2rem;
  }
}
.single-sec__contents h4 {
  font-size: 2.2rem;
  margin: 3rem 0 2rem 0;
}
@media (max-width: 575px) {
  .single-sec__contents h4 {
    font-size: 2rem;
  }
}

/*philosophy
-----------------------------------------------------*/
.philosophy-box {
  padding: 10rem 0;
}
.philosophy-box .container-lg {
  position: relative;
}
.philosophy-box--odd h2 .en {
  color: #458EFF;
}
.philosophy-box--odd .num {
  color: #F3F3F3;
  top: -60px;
  right: 0;
  z-index: -1;
}
.philosophy-box--even {
  background-color: #F3F3F3;
  z-index: -1;
  position: relative;
}
.philosophy-box--even h2,
.philosophy-box--even h3,
.philosophy-box--even p {
  padding-left: 19%;
}
@media (max-width: 575px) {
  .philosophy-box--even h2,
  .philosophy-box--even h3,
  .philosophy-box--even p {
    padding-left: 0;
  }
}
.philosophy-box--even h2 .en {
  color: #3FC219;
}
.philosophy-box--even .num {
  color: #FFF;
  top: -60px;
  left: 100px;
  z-index: -1;
}
@media (max-width: 575px) {
  .philosophy-box--even .num {
    left: initial;
    right: 0;
  }
}
.philosophy-box h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}
@media (max-width: 575px) {
  .philosophy-box h2 {
    font-size: 1.8rem;
  }
}
.philosophy-box h2 .en {
  font-size: clamp(6.5rem, 4vw, 10rem);
  font-weight: 600;
  line-height: 1.2;
  margin-right: 2rem;
}
.philosophy-box h3 {
  font-size: 3rem;
  margin-bottom: 4rem;
  line-height: 1.4;
}
@media (max-width: 575px) {
  .philosophy-box h3 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
}
.philosophy-box p {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .philosophy-box p {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .philosophy-box p {
    font-size: 1.4rem;
  }
}
.philosophy-box .num {
  font-size: clamp(22rem, 15vw, 35rem);
  font-weight: 600;
  position: absolute;
  line-height: 1;
}
.philosophy-box .value-list--box {
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  padding: 3rem;
  margin-top: 1rem;
}
.philosophy-box .value-list--box:first-of-type {
  margin-top: 0;
}
.philosophy-box .value-list--box:nth-child(odd) h4 {
  color: #458EFF;
}
.philosophy-box .value-list--box:nth-child(even) h4 {
  color: #3FC219;
}
.philosophy-box .value-list--box h4 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  line-height: 1.2;
}
@media (max-width: 575px) {
  .philosophy-box .value-list--box h4 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
.philosophy-box .value-list--box p {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .philosophy-box .value-list--box p {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .philosophy-box .value-list--box p {
    font-size: 1.4rem;
  }
}

/*Those wishing
売却したい方、買収したい方共通
-----------------------------------------------------*/
.wishing--top {
  margin-bottom: 12rem;
  position: relative;
}
@media (max-width: 767px) {
  .wishing--top {
    margin-bottom: 6rem;
  }
}
.wishing--top::before {
  content: "";
  width: 30%;
  border-bottom: 340px solid #F3F3F3;
  border-right: 140px solid transparent;
  height: 0;
  position: absolute;
  left: 0;
  bottom: -122px;
  z-index: -1;
}
@media (max-width: 767px) {
  .wishing--top::before {
    width: 20%;
    border-bottom: 280px solid #F3F3F3;
  }
}
@media (max-width: 575px) {
  .wishing--top::before {
    width: 8%;
  }
}
.wishing--top .flex {
  gap: 5rem;
  position: relative;
}
@media (max-width: 767px) {
  .wishing--top .flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.wishing--top .flex .img {
  max-width: 500px;
}
.wishing--top .flex .text h2 {
  font-size: clamp(2.6rem, 3vw, 4rem);
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .wishing--top .flex .text h2 {
    margin-bottom: 3rem;
  }
}
.wishing--top .flex .text h2 .en {
  color: #458EFF;
  font-size: 1.6rem;
  font-size: 500;
}
.wishing--top .flex .text p {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .wishing--top .flex .text p {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .wishing--top .flex .text p {
    font-size: 1.4rem;
  }
}
.wishing--top .flex .en-bottom {
  font-size: 17rem;
  color: #F3F3F3;
  font-weight: 600;
  position: absolute;
  text-align: right;
  right: 0;
  bottom: -15rem;
  z-index: -1;
  line-height: 1;
}
@media (max-width: 767px) {
  .wishing--top .flex .en-bottom {
    font-size: 10rem;
    bottom: -8rem;
  }
}
.wishing--bottom {
  background-color: #F3F3F3;
  padding: 10rem 0 12rem 0;
}
@media (max-width: 767px) {
  .wishing--bottom {
    padding: 6rem 0;
  }
}
.wishing--bottom-box {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
.wishing--bottom-box:nth-child(n+2) {
  margin-top: 2rem;
}
.wishing--bottom-box:nth-of-type(odd) .h2-box {
  background-color: #458EFF;
}
.wishing--bottom-box:nth-of-type(even) .h2-box {
  background-color: #3FC219;
}
.wishing--bottom-box .h2-box h2 {
  font-size: 2.8rem;
  display: flex;
  align-items: center;
  color: #FFF;
  gap: 2rem;
  line-height: 1.4;
  padding: 1.5rem 2rem 1.5rem 4rem;
}
@media (max-width: 767px) {
  .wishing--bottom-box .h2-box h2 {
    font-size: 2.4rem;
    padding: 1.5rem 2rem;
    gap: 1.5rem;
  }
}
.wishing--bottom-box .h2-box h2 .en {
  font-size: 4.5rem;
  font-weight: 700;
  word-break: keep-all;
}
@media (max-width: 767px) {
  .wishing--bottom-box .h2-box h2 .en {
    font-size: 3.8rem;
  }
}
.wishing--bottom-box .text-box {
  background-color: #FFF;
  padding: 4rem 5rem;
}
@media (max-width: 767px) {
  .wishing--bottom-box .text-box {
    padding: 3rem;
  }
}
.wishing--bottom-box .text-box .detail-box {
  padding: 3rem 4rem;
}
@media (max-width: 767px) {
  .wishing--bottom-box .text-box .detail-box {
    padding: 2rem 3rem;
  }
}
.wishing--bottom-box .text-box .detail-box:nth-of-type(odd) {
  background-color: #EAF2FF;
  border-left: 10px solid #458EFF;
}
.wishing--bottom-box .text-box .detail-box:nth-of-type(odd) h3 {
  color: #458EFF;
}
.wishing--bottom-box .text-box .detail-box:nth-of-type(odd) .point .en {
  border: 1px solid #458EFF;
}
.wishing--bottom-box .text-box .detail-box:nth-of-type(even) {
  background-color: #ECFDE8;
  border-left: 10px solid #3FC219;
}
.wishing--bottom-box .text-box .detail-box:nth-of-type(even) h3 {
  color: #3FC219;
}
.wishing--bottom-box .text-box .detail-box:nth-of-type(even) .point .en {
  border: 1px solid #3FC219;
}
.wishing--bottom-box .text-box .detail-box h3 {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .wishing--bottom-box .text-box .detail-box h3 {
    font-size: 2rem;
  }
}
.wishing--bottom-box .text-box .detail-box p {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .wishing--bottom-box .text-box .detail-box p {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .wishing--bottom-box .text-box .detail-box p {
    font-size: 1.4rem;
  }
}
.wishing--bottom-box .text-box .detail-box ul {
  list-style: disc;
  margin: 0 0 0 2rem;
  padding: 0;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .wishing--bottom-box .text-box .detail-box ul {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .wishing--bottom-box .text-box .detail-box ul {
    font-size: 1.4rem;
  }
}
.wishing--bottom-box .text-box .detail-box ul li {
  list-style: disc;
}
.wishing--bottom-box .text-box .detail-box ul li::marker {
  font-size: 10px;
}
.wishing--bottom-box .text-box .detail-box .point h3 {
  display: flex;
  align-items: center;
  gap: 1rem 1.5rem;
  line-height: 1.4;
}
@media (max-width: 575px) {
  .wishing--bottom-box .text-box .detail-box .point h3 {
    flex-direction: column;
    align-items: baseline;
  }
}
.wishing--bottom-box .text-box .detail-box .point .en {
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0 1rem;
  word-break: keep-all;
}
@media (max-width: 575px) {
  .wishing--bottom-box .text-box .detail-box .point .en {
    font-size: 1.4rem;
  }
}
.wishing--bottom-box .text-box .detail-box .point .en span {
  margin-left: 0.5rem;
}

/*M&A
-----------------------------------------------------*/
.m-and-a--top {
  padding-bottom: 12rem;
}
@media (max-width: 767px) {
  .m-and-a--top {
    padding-bottom: 6rem;
  }
}
.m-and-a--top .h-wrap {
  position: relative;
}
@media (max-width: 1023px) {
  .m-and-a--top .h-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}
.m-and-a--top .h-wrap h2 {
  color: #FFF;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
}
.m-and-a--top .h-wrap h2 span {
  display: inline-block;
  background: linear-gradient(to right, #458EFF, #4AD821);
  color: #FFF;
  line-height: 1.2;
  padding: 1.5rem 2rem;
}
.m-and-a--top .h-wrap h2 span:nth-of-type(n+2) {
  margin-top: 1rem;
}
.m-and-a--top .h-wrap img {
  position: absolute;
  z-index: -1;
  left: 52%;
  bottom: 0;
}
@media (max-width: 1023px) {
  .m-and-a--top .h-wrap img {
    position: relative;
    left: initial;
    max-width: 380px;
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .m-and-a--top .h-wrap img {
    max-width: 280px;
  }
}
@media (max-width: 575px) {
  .m-and-a--top .h-wrap img {
    max-width: 220px;
  }
}
.m-and-a--top .text-flex {
  display: flex;
  align-items: center;
  gap: 3rem 7rem;
  margin-top: 6rem;
}
@media (max-width: 1023px) {
  .m-and-a--top .text-flex {
    gap: 3rem 4rem;
    margin-top: 4rem;
  }
}
@media (max-width: 767px) {
  .m-and-a--top .text-flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.m-and-a--top .text-flex .img {
  max-width: 450px;
  width: 100%;
}
.m-and-a--top .text-flex .text {
  width: 100%;
}

.case-sec {
  padding: 10rem 0;
  background-color: #F3F3F3;
}
@media (max-width: 767px) {
  .case-sec {
    padding: 6rem 0;
  }
}
.case-sec--box {
  background-color: #FFF;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  padding: 4rem 5rem;
}
.case-sec--box:nth-of-type(n+2) {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .case-sec--box {
    padding: 3rem;
  }
}
.case-sec--box .h-box {
  background-color: #458EFF;
  padding: 2rem 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .case-sec--box .h-box {
    margin-bottom: 3rem;
  }
}
.case-sec--box .h-box h3 {
  color: #FFF;
  font-size: 2.8rem;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 1rem 2rem;
}
@media (max-width: 1023px) {
  .case-sec--box .h-box h3 {
    font-size: 2.6rem;
  }
}
@media (max-width: 767px) {
  .case-sec--box .h-box h3 {
    font-size: 2.4rem;
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .case-sec--box .h-box h3 {
    font-size: 2.2rem;
  }
}
.case-sec--box .h-box h3 span {
  color: #458EFF;
  background-color: #FFF;
  font-size: 2.2rem;
  padding: 0.5rem 1rem;
  word-break: keep-all;
}
@media (max-width: 767px) {
  .case-sec--box .h-box h3 span {
    font-size: 1.8rem;
  }
}
.case-sec--box .pers h4 {
  font-size: 2.4rem;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .case-sec--box .pers h4 {
    font-size: 2.2rem;
  }
}
@media (max-width: 575px) {
  .case-sec--box .pers h4 {
    font-size: 2rem;
  }
}
.case-sec--box .pers--sell {
  margin-bottom: 6rem;
}
.case-sec--box .pers--sell h4 {
  color: #458EFF;
  border-bottom: 1px solid #458EFF;
}
.case-sec--box .pers--sell .point-box h6 .en {
  color: #458EFF;
  border: 1px solid #458EFF;
}
.case-sec--box .pers--buy h4 {
  color: #3FC219;
  border-bottom: 1px solid #3FC219;
}
.case-sec--box .pers--buy .point-box h6 .en {
  color: #3FC219;
  border: 1px solid #3FC219;
}
.case-sec--box .pers-flex {
  display: flex;
  gap: 3rem 5rem;
}
@media (max-width: 767px) {
  .case-sec--box .pers-flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.case-sec--box .pers-flex .img {
  max-width: 406px;
  width: 100%;
}
.case-sec--box .pers-flex .text {
  width: 100%;
}
.case-sec--box .pers .point {
  margin-top: 5rem;
}
.case-sec--box .pers .point h5 {
  font-size: 2rem;
  color: #FFF;
  background-color: #666;
  padding: 1rem 2rem;
  display: inline-block;
}
.case-sec--box .pers .point-box {
  background-color: #F3F3F3;
  padding: 3rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .case-sec--box .pers .point-box {
    padding: 3rem 2rem;
  }
}
.case-sec--box .pers .point-box h6 {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 575px) {
  .case-sec--box .pers .point-box h6 {
    flex-wrap: wrap;
  }
}
.case-sec--box .pers .point-box h6 .en {
  font-size: 1.6rem;
  font-weight: bold;
  padding: 0.1rem 1rem;
  word-break: keep-all;
}
.case-sec--box .pers .point-box ul {
  list-style: disc;
  margin: 0 0 0 2rem;
  padding: 0;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .case-sec--box .pers .point-box ul {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .case-sec--box .pers .point-box ul {
    font-size: 1.4rem;
  }
}
.case-sec--box .pers .point-box ul li {
  list-style: disc;
}
.case-sec--box .pers .point-box ul li::marker {
  font-size: 10px;
}

.strengths {
  background-color: #3FC219;
  padding: 12rem 0;
}
@media (max-width: 767px) {
  .strengths {
    padding: 6rem 0;
  }
}
.strengths h2 {
  color: #FFF;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .strengths h2 {
    display: flex;
    flex-direction: column;
  }
}
.strengths h2 .en {
  font-size: clamp(5rem, 7vw, 10rem);
  font-weight: bold;
  line-height: 1.2;
}
.strengths h2 .jp {
  font-size: 2.2rem;
  margin-left: 1rem;
}
.strengths .reason-list--strengths .num p {
  color: #3FC219;
}

.chance {
  padding: 12rem 0;
}
@media (max-width: 767px) {
  .chance {
    padding: 6rem 0;
  }
}
.chance h2 {
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .chance h2 {
    display: flex;
    flex-direction: column;
  }
}
.chance h2 .en {
  font-size: clamp(5rem, 7vw, 10rem);
  font-weight: bold;
  line-height: 1.2;
  color: #458EFF;
}
.chance h2 .jp {
  font-size: 2.2rem;
  margin-left: 1rem;
}
.chance .flex {
  gap: 3rem 5rem;
  margin-bottom: 6rem;
}
.chance-box {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  width: 50%;
}
@media (max-width: 1023px) {
  .chance-box {
    width: 100%;
  }
}
.chance-box--merit h4 {
  background-color: #458EFF;
}
.chance-box--demerit h4 {
  background-color: #3FC219;
}
.chance-box h4 {
  padding: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2.8rem;
  color: #FFF;
}
@media (max-width: 1023px) {
  .chance-box h4 {
    font-size: 2.4rem;
    padding: 2rem;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  .chance-box h4 {
    font-size: 2.2rem;
  }
}
@media (max-width: 575px) {
  .chance-box h4 {
    font-size: 2rem;
  }
}
.chance-box h4 .en {
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .chance-box h4 .en {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .chance-box h4 .en {
    font-size: 1.4rem;
  }
}
.chance-box .text {
  padding: 4rem;
  background-color: #FFF;
}
@media (max-width: 575px) {
  .chance-box .text {
    padding: 3rem 2rem;
  }
}
.chance-box .text ul {
  list-style: disc;
  margin: 0 0 0 2rem;
  padding: 0;
  font-size: 1.6rem;
}
.chance-box .text ul li {
  list-style: disc;
}
.chance-box .text ul li::marker {
  font-size: 10px;
}
.chance-box .text ul li + li {
  margin-top: 1.5rem;
}

.achieve-list {
  padding: 12rem 0;
}
@media (max-width: 767px) {
  .achieve-list {
    padding: 6rem 0;
  }
}
.achieve-list .flex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 4.5rem;
}
@media (max-width: 1023px) {
  .achieve-list .flex {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .achieve-list .flex {
    gap: 3rem 2rem;
  }
}
@media (max-width: 575px) {
  .achieve-list .flex {
    grid-template-columns: repeat(1, 1fr);
  }
}
.achieve-list .flex-box {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
.achieve-list .flex-box a {
  text-decoration: none;
}
.achieve-list .flex-box .img img {
  aspect-ratio: 3/2;
  width: 100%;
  max-width: 800px;
  object-fit: cover;
}
.achieve-list .flex-box .text {
  background-color: #FFF;
  padding: 3rem;
}
@media (max-width: 767px) {
  .achieve-list .flex-box .text {
    padding: 3rem 2rem;
  }
}
.achieve-list .flex-box .text h3 {
  margin-bottom: 1rem;
}

.flow {
  padding: 12rem 0;
  background-image: url(../images/common/bg-gray.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
}
@media (max-width: 767px) {
  .flow {
    padding: 6rem 0;
  }
}
.flow .flex {
  height: 400px;
  gap: 3rem;
}
@media (max-width: 1199px) {
  .flow .flex {
    gap: 2rem;
  }
}
@media (max-width: 1023px) {
  .flow .flex {
    flex-direction: column;
    height: auto;
  }
}
.flow .flex--out .vertical {
  background: linear-gradient(to bottom, #2F81FF, #00B7FF);
}
.flow .flex--in {
  margin-top: 2rem;
}
@media (max-width: 1023px) {
  .flow .flex--in {
    margin-top: 4rem;
  }
}
.flow .flex--in .vertical {
  background: linear-gradient(to top, #1DD002, #02B26E);
}
.flow .flex .vertical {
  color: #FFF;
  font-size: 2rem;
  padding: 2rem 1.5rem;
  text-align: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
@media (max-width: 1199px) {
  .flow .flex .vertical {
    font-size: 1.8rem;
  }
}
@media (max-width: 1023px) {
  .flow .flex .vertical {
    writing-mode: horizontal-tb;
  }
}
.flow .flex-box {
  width: 33.3333333333%;
  flex: 1;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
.flow .flex-box:nth-of-type(1) h4 {
  background-color: #458EFF;
}
.flow .flex-box:nth-of-type(2) h4 {
  background-color: #3FC219;
}
.flow .flex-box:nth-of-type(3) h4 {
  background-color: #F49735;
}
@media (max-width: 1023px) {
  .flow .flex-box {
    width: 100%;
  }
}
.flow .flex-box h4 {
  color: #FFF;
  font-size: 1.8rem;
  padding: 1rem 2rem;
  text-align: center;
}
@media (max-width: 1199px) {
  .flow .flex-box h4 {
    font-size: 1.6rem;
  }
}
.flow .flex-box .text {
  background-color: #FFF;
  padding: 3rem 2rem;
  overflow: auto;
  flex-grow: 1;
}
.flow .flex-box .text table {
  border-spacing: 1rem;
  border-collapse: separate;
  height: 100%;
}
@media (max-width: 1023px) {
  .flow .flex-box .text table {
    height: 280px;
  }
}
@media (max-width: 575px) {
  .flow .flex-box .text table {
    height: 200px;
  }
}
.flow .flex-box .text table td {
  border: 1px solid #DFDFDF;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  width: 54px;
  padding: 0;
  font-size: 1.6rem;
  font-weight: bold;
  box-sizing: border-box;
  line-height: 1.2;
  vertical-align: middle;
  text-align: center;
}
.flow .flex-box .text table td.empty {
  border: none;
}

.wishing-link {
  padding: 8rem 0;
}
@media (max-width: 767px) {
  .wishing-link {
    padding: 6rem 0;
  }
}
.wishing-link .link-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .wishing-link .link-box {
    flex-wrap: wrap;
  }
}
.wishing-link .link-box-btn {
  position: relative;
  width: 50%;
  height: 150px;
  display: flex;
  align-items: center;
  padding: 2rem 7rem 2rem 4rem;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .wishing-link .link-box-btn {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .wishing-link .link-box-btn {
    padding: 2rem 6rem 2rem 2rem;
    height: 130px;
  }
}
.wishing-link .link-box-btn a {
  text-decoration: none;
  color: #FFF;
  font-size: clamp(2.4rem, 5vw, 3rem);
  font-weight: bold;
  display: flex;
  gap: 3rem;
}
@media (max-width: 575px) {
  .wishing-link .link-box-btn a {
    gap: 2rem;
  }
}
.wishing-link .link-box-btn a .flex {
  display: flex;
  flex-direction: column;
}
.wishing-link .link-box-btn a .en {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.4;
}
@media (max-width: 575px) {
  .wishing-link .link-box-btn a .en {
    font-size: 1.4rem;
  }
}
.wishing-link .link-box-btn a img {
  width: 80px;
}
@media (max-width: 575px) {
  .wishing-link .link-box-btn a img {
    width: 60px;
  }
}
.wishing-link .link-box-btn .arrow {
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 1px;
  margin-top: 9.2px;
  border-radius: 9999px;
  background-color: #ffffff;
  top: 50%;
  right: 4rem;
  transform: translateY(-50%);
}
@media (max-width: 575px) {
  .wishing-link .link-box-btn .arrow {
    right: 2rem;
  }
}
.wishing-link .link-box-btn .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 14px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform: rotate(45deg);
  transform-origin: calc(100% - 0.5px) 50%;
}
.wishing-link .link-box-btn--sell {
  background-color: #458EFF;
}
.wishing-link .link-box-btn--buy {
  background-color: #3FC219;
}

/*M&A Achievements
-----------------------------------------------------*/
.achieve-detail .flex {
  gap: 2rem;
  position: relative;
}
@media (max-width: 1023px) {
  .achieve-detail .flex {
    flex-direction: column;
  }
}
.achieve-detail .box {
  width: 45.8333333333%;
}
@media (max-width: 1023px) {
  .achieve-detail .box {
    width: 100%;
  }
}
.achieve-detail .box--before {
  border: 1px solid #458EFF;
}
.achieve-detail .box--before .h-box {
  background-color: #458EFF;
}
.achieve-detail .box--before .h-box h3 span {
  color: #458EFF;
}
.achieve-detail .box--after {
  border: 1px solid #3FC219;
}
.achieve-detail .box--after .h-box {
  background-color: #3FC219;
}
.achieve-detail .box--after .h-box h3 span {
  color: #3FC219;
}
.achieve-detail .box .h-box {
  padding: 1rem 2rem;
}
.achieve-detail .box .h-box h3 {
  color: #FFF;
  font-size: 2rem;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 767px) {
  .achieve-detail .box .h-box h3 {
    font-size: 1.7rem;
  }
}
.achieve-detail .box .h-box h3 span {
  background-color: #FFF;
  font-size: 1.4rem;
  padding: 0.5rem 1rem;
  word-break: keep-all;
}
@media (max-width: 767px) {
  .achieve-detail .box .h-box h3 span {
    font-size: 1.2rem;
  }
}
.achieve-detail .box .text {
  padding: 2rem 3rem;
}
.achieve-detail .box .text table {
  text-align: left;
}
.achieve-detail .box .text table th {
  padding-right: 2rem;
  white-space: nowrap;
}
.achieve-detail .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 35px solid transparent;
  border-bottom: 35px solid transparent;
  border-left: 40px solid #3FC219;
  border-right: 0;
}
@media (max-width: 1023px) {
  .achieve-detail .arrow {
    position: static;
    transform: translate(0, 0);
    border-top: 25px solid #3FC219;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 0;
  }
}
.achieve-detail .table {
  margin: 5rem auto 6rem auto;
}
.achieve-detail .table table {
  width: 100%;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .achieve-detail .table table {
    font-size: 1.6rem;
  }
}
.achieve-detail .table table th {
  background-color: #F3F3F3;
  text-align: left;
  width: 206px;
  word-break: keep-all;
  vertical-align: middle;
}
@media (max-width: 1023px) {
  .achieve-detail .table table th {
    width: 180px;
  }
}
@media (max-width: 767px) {
  .achieve-detail .table table th {
    width: 100px;
  }
}
@media (max-width: 575px) {
  .achieve-detail .table table th {
    width: 60px;
  }
}
.achieve-detail .table table th,
.achieve-detail .table table td {
  padding: 1.5rem 2rem;
  border: 1px solid #DFDFDF;
}
.achieve-detail .comment {
  margin-bottom: 6rem;
  margin-left: 5.5rem;
  border-radius: 10px;
  background-color: #EAF2FF;
  padding: 5rem 5rem 5rem 8rem;
}
@media (max-width: 767px) {
  .achieve-detail .comment {
    padding: 4rem 3rem 4rem 5rem;
  }
}
.achieve-detail .comment .h-box {
  position: relative;
}
.achieve-detail .comment .h-box img {
  width: 110px;
  position: absolute;
  top: 50%;
  left: -13.5rem;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .achieve-detail .comment .h-box img {
    width: 80px;
    left: -10rem;
  }
}
.achieve-detail .comment .h-box h3 {
  font-size: 3rem;
  line-height: 1.4;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .achieve-detail .comment .h-box h3 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 575px) {
  .achieve-detail .comment .h-box h3 {
    font-size: 2.2rem;
  }
}/*# sourceMappingURL=style.css.map */