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

img {
  vertical-align: top;
}

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

body {
  line-height: 1;
}

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

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

del {
  text-decoration: line-through;
}

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

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

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

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

body {
  color: #1F1F1F;
  /*font: 1.6rem/1.8 YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;*/
  font: 1.6rem/1.8 "Hiragino Kaku Gothic ProN W5", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "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 {
  transition: 0.3s linear;
}

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

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

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

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

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

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

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

.align-items-center {
  align-items: center !important;
}
@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;
  }
}
@media (max-width: 1023px) {
  .align-items-end-lg {
    align-items: end;
  }
}
@media (max-width: 767px) {
  .align-items-end-md {
    align-items: end;
  }
}
@media (max-width: 575px) {
  .align-items-end-sm {
    align-items: end;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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: 2.5rem;
  margin-bottom: 3rem;
}

.float-l {
  float: left;
}

.float-r {
  float: right;
}

.orange {
  color: #f08200;
}

.arial {
  font-family: Arial, sans-serif;
}

.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: #0A379D !important;
}

.color-accent01 {
  color: !important;
}

.color-caution {
  color: red !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);
}

.bg-white {
  background-color: #FFF;
  padding-top: 10rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@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;
  }
}
@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;
  }
}
@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;
  }
}
@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;
  }
}
body.home footer {
  margin-top: 0 !important;
}

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

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

.header-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.05rem 4rem 1.05rem 2rem;
}
.header-box .logo {
  z-index: 100000;
}
.header-box .logo img {
  width: 192px;
}
@media (max-width: 1199px) {
  .header-box .logo img {
    width: 176px;
  }
}
@media (max-width: 575px) {
  .header-box .logo img {
    width: 160px;
  }
}
.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;
}
@media (max-width: 1023px) {
  .header-box .pc-nav {
    display: none;
  }
}
.header-box .pc-nav nav ul {
  display: flex;
  gap: 0 4rem;
}
@media (max-width: 1199px) {
  .header-box .pc-nav nav ul {
    gap: 0 3rem;
  }
}
.header-box .pc-nav nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 1.6rem;
  opacity: 0.9;
}
@media (max-width: 1199px) {
  .header-box .pc-nav nav ul li a {
    font-size: 1.4rem;
  }
}
.header-box .pc-nav .menu-item-has-children {
  position: relative;
  margin-right: 2rem;
}
.header-box .pc-nav .menu-item-has-children::before {
  content: "";
  margin: auto;
  position: absolute;
  top: -3px;
  bottom: 0;
  right: -20px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #0A379D;
  border-right: 2px solid #0A379D;
  transform: rotate(135deg);
}
.header-box .pc-nav .menu-item-has-children.parent-link-none > a {
  pointer-events: none;
}
.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: rgba(255, 255, 255, 0.9);
  transform: translateY(10px);
  padding: 2rem;
  flex-direction: column;
}
.header-box .pc-nav .menu-item-has-children .sub-menu a {
  display: block;
  text-decoration: none;
  color: #333;
  font-size: 1.3rem;
  padding: 1rem;
}
.header-box .pc-nav .menu-item-has-children .sub-menu a:hover {
  opacity: 0.6;
}
.header-box .pc-nav .menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(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: #0A379D;
  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: #0A379D;
}
.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: 40px;
  height: 40px;
  z-index: 300000;
  top: 10px;
  right: 20px;
  margin: auto;
  cursor: pointer;
  position: absolute;
  background: #0A379D;
  display: none;
  border-radius: 50px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1023px) {
  .nav_btn {
    display: block;
  }
}

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

.hamburger_line1 {
  top: 15px;
}

.hamburger_line2 {
  top: 24px;
}

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

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

.globalMenu {
  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: 9rem 2rem 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;
}
.nav__gnav li.menu-item-has-children {
  position: relative;
}
.nav__gnav li.menu-item-has-children.parent-link-none > a {
  pointer-events: none;
}
.nav__gnav li .sub-menu li {
  padding-left: 1rem;
  font-size: 1.3rem;
}
.nav__gnav li .sub-menu li a {
  transition: 0.3s linear;
  font-weight: normal;
  position: relative;
  margin-left: 2rem;
}
.nav__gnav li .sub-menu li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -2rem;
  transform: translateY(-50%);
  width: 7px;
  height: 1px;
  background: #fff;
  transition: 0.3s linear;
}
.nav__gnav li .sub-menu li a:hover {
  color: #0A379D;
}
.nav__gnav li .sub-menu li a:hover::before {
  background: #0A379D;
}

.globalMenu.active {
  opacity: 100;
  display: block;
  transform: translateY(0%);
}

/*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: 1000px;
  padding: 0 5%;
  margin: 0 auto;
}

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

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

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

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

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

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

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

.colors-main {
  color: #0A379D;
}

.colors-sub {
  color: #264996;
}

.no-link {
  cursor: default;
  pointer-events: none;
  /* 完全にクリック不能に */
}

@media (max-width: 575px) {
  .sm-100 {
    width: 100%;
  }
}

.gap-10 {
  gap: 1rem;
}

.gap-20 {
  gap: 2rem;
}

.gap-140 {
  gap: 2rem 14rem;
}
@media (max-width: 767px) {
  .gap-140 {
    gap: 2rem 4rem;
  }
}

/*h*/
.h-sec01 {
  margin-bottom: 3rem;
  font-size: 2.2rem;
}
@media (max-width: 767px) {
  .h-sec01 {
    font-size: 2rem;
  }
}

.h-sec02 {
  font-size: 8rem;
  font-size: clamp(6rem, 6vw, 8rem);
  word-break: keep-all;
  text-transform: uppercase;
  color: #FFF;
  font-weight: 600;
  line-height: 1.2;
}

.h-sec03 {
  text-align: center;
  margin-bottom: 3rem;
}
.h-sec03 span {
  font-size: 12rem;
  color: #FCB2B3;
  line-height: 1;
}
@media (max-width: 1023px) {
  .h-sec03 span {
    font-size: 12vw;
  }
}

/*breadcrumb
-----------------------------------------------------*/
#breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
}
#breadcrumb span {
  font-size: 1.4rem;
}
@media (max-width: 575px) {
  #breadcrumb span {
    font-size: 1.2rem;
  }
}
#breadcrumb a {
  text-decoration: none;
  color: #222222;
  font-size: 1.4rem;
}
@media (max-width: 575px) {
  #breadcrumb a {
    font-size: 1.2rem;
  }
}
#breadcrumb .arrow {
  position: relative;
}
#breadcrumb .arrow::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #252525;
  border-right: 2px solid #252525;
  transform: rotate(45deg);
}

/*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 {
  color: #fff;
  background: linear-gradient(to right, #0086CD, #00A1CC);
  transition: background 0.3s ease, opacity 0.3s ease;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  padding: 2rem;
  border-radius: 100px;
  box-sizing: border-box;
  max-width: 285px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin: auto;
  opacity: 1;
}
.btn01 .arrow {
  position: relative;
  width: 27px;
  height: 27px;
}
.btn01 .arrow::before, .btn01 .arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.btn01 .arrow::before {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #FFF;
}
.btn01 .arrow::after {
  left: 8px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #0086CD;
  border-right: 1px solid #0086CD;
  transform: rotate(45deg);
}

.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;
  border-radius: 50%;
  background: #0086CD;
}
.btn02 .arrow::after {
  left: 8px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  transform: rotate(45deg);
}

.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;
  justify-content: end;
  gap: 2rem;
}
.view-more a .arrow {
  position: relative;
  width: 12px;
  height: 30px;
}
.view-more a .arrow::after {
  left: 17px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #626262;
  border-right: 2px solid #626262;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

/*固定ページ・投稿ページ共通
-----------------------------------------------------*/
.post-sec__contents h2,
.post-sec__contents h3,
.post-sec__contents h4,
.post-sec__contents h5,
.post-sec__contents h6,
.page-sec__contents h2,
.page-sec__contents h3,
.page-sec__contents h4,
.page-sec__contents h5,
.page-sec__contents h6 {
  margin: 6rem 0 4rem 0;
  font-weight: 700;
}
.post-sec__contents h2,
.page-sec__contents h2 {
  padding-bottom: 5px;
  font-size: 2.8rem;
  color: #FFF;
  background-color: #264996;
  padding: 1.5rem 2rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .post-sec__contents h2,
  .page-sec__contents h2 {
    font-size: 2rem;
  }
}
.post-sec__contents h3,
.page-sec__contents h3 {
  border-left: 5px solid #264996;
  font-size: 2.4rem;
  line-height: 1.4;
  padding-left: 2rem;
}
@media (max-width: 767px) {
  .post-sec__contents h3,
  .page-sec__contents h3 {
    font-size: 2rem;
  }
}
.post-sec__contents h4,
.page-sec__contents h4 {
  font-size: 2.4rem;
  line-height: 1.4;
  position: relative;
  margin: 3rem 0;
  padding-bottom: 2rem;
  border-bottom: 2px solid #BDCBD3;
}
@media (max-width: 767px) {
  .post-sec__contents h4,
  .page-sec__contents h4 {
    font-size: 2rem;
  }
}
.post-sec__contents h4:after,
.page-sec__contents h4:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -2px;
  width: 13%;
  background: #264996;
}
.post-sec__contents h5,
.page-sec__contents h5 {
  font-size: 1.8rem;
  background-color: #E8EAF1;
  padding: 1.5rem 2rem;
  line-height: 1.5;
  margin: 4rem 0 3rem 0;
}
@media (max-width: 767px) {
  .post-sec__contents h5,
  .page-sec__contents h5 {
    font-size: 1.7rem;
  }
}
.post-sec__contents h6,
.page-sec__contents h6 {
  font-size: 1.8rem;
  color: #264996;
}
@media (max-width: 767px) {
  .post-sec__contents h6,
  .page-sec__contents h6 {
    font-size: 1.7rem;
  }
}
.post-sec__contents p + h2,
.page-sec__contents p + h2 {
  margin-top: 6rem;
}
.post-sec__contents > p,
.page-sec__contents > p {
  margin: 0 0 3rem;
}
@media (max-width: 575px) {
  .post-sec__contents > p,
  .page-sec__contents > p {
    margin: 0 0 2rem;
  }
}
.post-sec__contents figure + h3,
.page-sec__contents figure + h3 {
  margin-top: 8rem;
}
.post-sec__contents ul,
.page-sec__contents ul {
  margin: 3rem 0;
  padding-left: 2rem;
}
.post-sec__contents ul li,
.page-sec__contents ul li {
  list-style-type: disc;
  line-height: 1.6;
  padding: 0.5rem 0;
}
.post-sec__contents ul li::marker,
.page-sec__contents ul li::marker {
  color: #264996;
}
.post-sec__contents table th,
.post-sec__contents table td,
.page-sec__contents table th,
.page-sec__contents table td {
  padding: 2rem;
}
.post-sec__contents table ul,
.page-sec__contents table ul {
  margin: 0;
}
.post-sec__contents .wp-block-button__link,
.page-sec__contents .wp-block-button__link {
  background: #264996;
  color: #fff;
  font-size: 1.6rem;
}
.post-sec__contents .wp-block-buttons,
.page-sec__contents .wp-block-buttons {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.post-sec__contents .wp-block-buttons a,
.page-sec__contents .wp-block-buttons a {
  text-decoration: none;
}
.post-sec__contents a,
.page-sec__contents a {
  color: #264996;
}
.post-sec .wp-block-separator,
.page-sec .wp-block-separator {
  border-top: 1px solid;
}

.post-sec .wp-block-image {
  margin: 8rem auto;
  max-width: 780px;
}

.page-top {
  position: relative;
}
.page-top .page-header {
  border-top: 1px solid #EAEAEA;
}
.page-top .page-header .page-title {
  display: flex;
  align-items: center;
  gap: 0 2rem;
}
@media (max-width: 767px) {
  .page-top .page-header .page-title {
    flex-wrap: wrap;
  }
}
.page-top .page-header .page-title .sub-ttl {
  color: #0A379D;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.page-top .page-header .page-title .sub-ttl::before {
  content: "";
  width: 16px;
  height: 1px;
  background-color: #0A379D;
}

.page-thumbnail img {
  width: 100%;
  aspect-ratio: 16/3;
  -o-object-fit: cover;
     object-fit: cover;
  height: 270px;
}
@media (max-width: 575px) {
  .page-thumbnail img {
    height: 200px;
  }
}
.page-thumbnail--philosophy {
  text-align: center;
}
.page-thumbnail--philosophy img {
  aspect-ratio: initial;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
  max-width: 1200px;
}
.page-thumbnail--plan img {
  height: 490px;
}
@media (max-width: 575px) {
  .page-thumbnail--plan img {
    height: 200px;
  }
}
.page-thumbnail--lion_father img {
  aspect-ratio: 32/3;
}
@media (max-width: 1023px) {
  .page-thumbnail--lion_father img {
    height: 160px;
  }
}
@media (max-width: 767px) {
  .page-thumbnail--lion_father img {
    height: 135px;
  }
}
@media (max-width: 575px) {
  .page-thumbnail--lion_father img {
    height: 90px;
  }
}

.contents-wrap {
  padding-top: 10rem;
}

/*single
-----------------------------------------------------*/
.single-sec .contents-box {
  margin-bottom: 10rem;
}
.single-sec .flex {
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.single-sec .flex .date {
  font-size: 1.3rem;
  color: #666666;
}
.single-sec .flex .cat-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.single-sec .flex .cat {
  border: 1px solid #264996;
  color: #264996;
  font-size: 1.3rem;
  padding: 0.3rem 1rem;
  word-break: keep-all;
}
.single-sec .title {
  font-size: 3rem;
  line-height: 1.4;
  margin-bottom: 6rem;
  margin-top: 1.5rem;
}
.single-sec .single-pager {
  padding: 5rem 0;
  border-top: 1px solid #EAEAEA;
}
.single-sec .single-pager .flex {
  justify-content: space-between;
}
.single-sec .single-pager .flex a {
  text-decoration: none;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  line-height: 1.2;
}
.single-sec .single-pager .flex .prev,
.single-sec .single-pager .flex .next {
  font-family: Arial, sans-serif;
  width: 60px;
}
.single-sec .single-pager .flex .prev a::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #252525;
  border-right: 2px solid #252525;
  transform: rotate(-135deg);
}
.single-sec .single-pager .flex .next a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #252525;
  border-right: 2px solid #252525;
  transform: rotate(45deg);
}
.single-sec .single-banner {
  padding: 8rem 0 10rem 0;
}
.single-sec .related-posts {
  background-color: #F1F4F8;
  padding: 7rem 0 12rem 0;
}
.single-sec .related-posts .related-title {
  border-left: 5px solid #0A379D;
  font-size: 2.4rem;
  line-height: 1.4;
  padding-left: 2rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .single-sec .related-posts .related-title {
    font-size: 2rem;
  }
}
.single-sec .related-posts .related-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem 2rem;
}
.single-sec .related-posts .related-list li {
  width: calc(33.3333333333% - 1.333rem);
  padding: 0 3rem;
  box-sizing: border-box;
  background-color: #FFF;
  padding: 2.5rem;
}
@media (max-width: 1199px) {
  .single-sec .related-posts .related-list li {
    width: calc(50% - 2rem);
  }
}
@media (max-width: 575px) {
  .single-sec .related-posts .related-list li {
    width: 100%;
  }
}
.single-sec .related-posts .related-list li a {
  text-decoration: none;
  color: #000;
}
.single-sec .related-posts .related-list li .thumb {
  margin-bottom: 2rem;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
}
.single-sec .related-posts .related-list li .thumb img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-sec .related-posts .related-list li .cat {
  border: 1px solid #0A379D;
  color: #0A379D;
  font-size: 1.3rem;
  padding: 0.3rem 1rem;
  word-break: keep-all;
}
@media (max-width: 767px) {
  .single-sec .related-posts .related-list li .cat {
    font-size: 1rem;
  }
}
.single-sec .related-posts .related-list li .date {
  font-size: 1.3rem;
  color: #666666;
}
@media (max-width: 575px) {
  .single-sec .related-posts .related-list li .date {
    font-size: 1.2rem;
  }
}
.single-sec .related-posts .related-list li .ttl {
  font-size: 1.6rem;
  margin-top: 1rem;
}
@media (max-width: 575px) {
  .single-sec .related-posts .related-list li .ttl {
    font-size: 1.4rem;
  }
}

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

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

/*main
-----------------------------------------------------*/
.mainvisual-wrapper {
  position: relative;
  height: 200vh;
}
.mainvisual-wrapper .mainvisual {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}
.mainvisual-wrapper .mainvisual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mainvisual-wrapper .swiper,
.mainvisual-wrapper .swiper-wrapper,
.mainvisual-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
}
.mainvisual-wrapper .first-sec {
  height: 100vh;
  position: relative;
}
.mainvisual-wrapper .first-sec img {
  width: 36%;
  position: absolute;
  left: 6rem;
  bottom: 20rem;
}
@media (max-width: 767px) {
  .mainvisual-wrapper .first-sec img {
    top: 50%;
    transform: translateY(-50%);
    width: 80%;
    left: 4rem;
  }
}
.mainvisual-wrapper .second-sec {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFF;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
@media (max-width: 767px) {
  .mainvisual-wrapper .second-sec__inner {
    padding: 0 2rem;
  }
}
.mainvisual-wrapper .second-sec__inner .arial {
  font-size: 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.mainvisual-wrapper .second-sec__inner .arial::after {
  content: "";
  width: 1px;
  height: 68px;
  background-color: #FFF;
}
.mainvisual-wrapper .second-sec__inner p {
  font-size: 1.8rem;
  line-height: 2;
}
@media (max-width: 767px) {
  .mainvisual-wrapper .second-sec__inner p {
    font-size: 1.6rem;
  }
}
.mainvisual-wrapper .second-sec__inner strong {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .mainvisual-wrapper .second-sec__inner strong {
    font-size: 2.8rem;
  }
}
.mainvisual-wrapper .fixed-parts__btn {
  position: fixed;
  top: 140px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 100000;
}
@media (max-width: 767px) {
  .mainvisual-wrapper .fixed-parts__btn {
    display: none;
  }
}
.mainvisual-wrapper .fixed-parts__btn-btn img {
  width: 70px;
}
@media (max-width: 767px) {
  .mainvisual-wrapper .fixed-parts__btn-btn img {
    width: 60px;
  }
}
@media (max-width: 575px) {
  .mainvisual-wrapper .fixed-parts__btn-btn img {
    width: 50px;
  }
}
.mainvisual-wrapper .fixed-parts__banner {
  position: fixed;
  margin: 0 4.5rem 6rem 0;
  z-index: 99998;
  bottom: 0;
  right: 0;
}
@media (max-width: 767px) {
  .mainvisual-wrapper .fixed-parts__banner {
    margin: 0 3rem 8rem 0;
  }
}
@media (max-width: 575px) {
  .mainvisual-wrapper .fixed-parts__banner {
    margin: 0 2rem 8rem 0;
  }
}
.mainvisual-wrapper .fixed-parts__banner .banner-close {
  padding: 0;
  border: 0;
  position: absolute;
  right: 5px;
  top: -14px;
  z-index: 99999;
  border-radius: 50px;
}
.mainvisual-wrapper .fixed-parts__banner .banner-close img {
  width: 32px;
  height: 32px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 50px;
}
@media (max-width: 575px) {
  .mainvisual-wrapper .fixed-parts__banner .banner-close img {
    width: 26px;
    height: 26px;
  }
}
.mainvisual-wrapper .fixed-parts__banner .banner-img {
  border-radius: 10px;
}
.mainvisual-wrapper .fixed-parts__banner .banner-img img {
  max-width: 330px;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .mainvisual-wrapper .fixed-parts__banner .banner-img img {
    max-width: 280px;
  }
}
@media (max-width: 575px) {
  .mainvisual-wrapper .fixed-parts__banner .banner-img img {
    max-width: 180px;
  }
}

/*top-plan
-----------------------------------------------------*/
.post-list {
  display: flex;
  gap: 1.7rem;
}
@media (max-width: 1023px) {
  .post-list {
    flex-wrap: wrap;
  }
}
.post-list a {
  color: #333;
  text-decoration: none;
}
.post-list .post-item {
  width: calc(25% - 1.1rem);
  border-radius: 10px;
  border: 1px solid #E8EAF1;
}
@media (max-width: 1023px) {
  .post-list .post-item {
    width: calc(50% - 1.1rem);
  }
}
@media (max-width: 575px) {
  .post-list .post-item {
    width: 100%;
  }
}
.post-list .post-item img {
  border-radius: 10px 10px 0 0;
  width: 100%;
  aspect-ratio: 32/23;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-list .text-box {
  padding: 2.4rem;
}
@media (max-width: 1023px) {
  .post-list .text-box {
    padding: 2.4rem 2rem;
  }
}
.post-list .text-box h3 {
  color: #0A379D;
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}
@media (max-width: 1023px) {
  .post-list .text-box h3 {
    font-size: 1.6rem;
  }
}
.post-list .text-box p {
  font-size: 1.4rem;
}

.plan {
  border-top: 2px solid #E8EAF1;
  padding-top: 10rem;
}

.interview {
  border-top: 2px solid #E8EAF1;
  padding-top: 10rem;
}

.case {
  border-top: 2px solid #E8EAF1;
  padding-top: 10rem;
}

.top-case .post-list {
  display: flex;
  gap: 2.8rem;
}
@media (max-width: 1023px) {
  .top-case .post-list {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}
.top-case .post-list .post-item {
  width: calc(33.3333333333% - 1.4rem);
}
@media (max-width: 1023px) {
  .top-case .post-list .post-item {
    width: calc(50% - 1rem);
  }
}
@media (max-width: 575px) {
  .top-case .post-list .post-item {
    width: 100%;
  }
}
.top-case .post-list .post-item img {
  aspect-ratio: 106/65;
  -o-object-fit: cover;
     object-fit: cover;
}

.youtube {
  border-top: 2px solid #E8EAF1;
  padding-top: 10rem;
}

.youtube-list .youtube-categories {
  max-width: 1024px;
  width: 100%;
  margin-bottom: 10rem;
}
@media (max-width: 767px) {
  .youtube-list .youtube-categories {
    margin-bottom: 4rem;
  }
}
.youtube-list .youtube-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.youtube-list .youtube-categories ul li {
  border-radius: 10px;
  font-size: 1.7rem;
  text-align: center;
  width: calc(25% - 1.5rem);
}
@media (max-width: 1023px) {
  .youtube-list .youtube-categories ul li {
    width: calc(33.3333333333% - 1.35rem);
  }
}
@media (max-width: 767px) {
  .youtube-list .youtube-categories ul li {
    width: calc(50% - 1rem);
  }
}
.youtube-list .youtube-categories ul li a {
  color: #000000;
  text-decoration: none;
  padding: 1.5rem 2rem;
  background-color: #E8EAF1;
  border-radius: 10px;
  display: block;
  font-weight: 500;
}
.youtube-list .post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
}
@media (max-width: 1023px) {
  .youtube-list .post-list {
    gap: 2rem;
  }
}
.youtube-list .post-list .post-item {
  width: calc(25% - 3.75rem);
  background-color: #FFF;
  border-radius: 0;
  box-shadow: none;
  border: 0;
}
@media (max-width: 1023px) {
  .youtube-list .post-list .post-item {
    width: calc(50% - 1rem);
  }
}
@media (max-width: 575px) {
  .youtube-list .post-list .post-item {
    width: 100%;
  }
}
.youtube-list .post-list .post-item img {
  width: 100%;
  aspect-ratio: 73/41;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
}
.youtube-list .post-list .text-box {
  padding: 0.5rem 0;
}
.youtube-list .post-list .text-box .date {
  color: #0A379D;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.youtube-list .post-list .text-box h3 {
  color: #1F1F1F;
  font-weight: 500;
  font-size: 1.4rem;
}
.youtube-list__banner {
  max-width: 580px;
  margin: 14rem auto 0 auto;
}
@media (max-width: 575px) {
  .youtube-list__banner {
    margin: 10rem auto 0 auto;
  }
}

/*news
-----------------------------------------------------*/
.news {
  background-color: #FFF;
  border-top: 2px solid #E8EAF1;
  padding-top: 10rem;
}

.news-list ul li {
  margin-top: 4rem;
}
.news-list ul li:first-of-type {
  margin-top: 0;
}
.news-list ul li a {
  background-color: #FFF;
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  color: #333;
}
@media (max-width: 575px) {
  .news-list ul li a {
    flex-wrap: wrap;
  }
}
.news-list ul li a .title-top {
  display: flex;
  gap: 2rem;
}
@media (max-width: 575px) {
  .news-list ul li a .title-top {
    width: 100%;
  }
}
.news-list ul li a .day {
  color: #666666;
  word-break: keep-all;
  font-size: 1.3rem;
}
.news-list ul li a .cat {
  border: 1px solid #0A379D;
  color: #0A379D;
  font-size: 1.3rem;
  padding: 0.3rem 1rem;
  word-break: keep-all;
}
.news-list ul li a h3 {
  font-weight: 500;
  font-size: 1.6rem;
  width: 100%;
}
@media (max-width: 575px) {
  .news-list ul li a h3 {
    font-size: 1.4rem;
  }
}

.two-column .archive-ttl {
  border-left: 5px solid #0A379D;
  font-size: 1.8rem;
  line-height: 1.4;
  padding-left: 2rem;
  font-weight: bold;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .two-column .archive-ttl {
    font-size: 1.7rem;
  }
}
.two-column__flex {
  gap: 10rem 6rem;
}
@media (max-width: 1199px) {
  .two-column__flex {
    gap: 10rem 4rem;
  }
}
@media (max-width: 767px) {
  .two-column__flex {
    flex-wrap: wrap;
  }
}
.two-column__flex .main-contents {
  width: 100%;
}
.two-column__flex .main-contents .category-list {
  margin-bottom: 7rem;
}
.two-column__flex .main-contents .category-list ul {
  display: flex;
  gap: 1rem 1.5rem;
}
@media (max-width: 575px) {
  .two-column__flex .main-contents .category-list ul {
    flex-wrap: wrap;
  }
}
.two-column__flex .main-contents .category-list ul li {
  width: calc(33.3333333333% - 1rem);
  box-sizing: border-box;
  height: 40px;
}
@media (max-width: 575px) {
  .two-column__flex .main-contents .category-list ul li {
    width: 100%;
  }
}
.two-column__flex .main-contents .category-list ul li a {
  text-decoration: none;
  background-color: #E8EAF1;
  color: #0A379D;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
}
@media (max-width: 1023px) {
  .two-column__flex .main-contents .category-list ul li a {
    font-size: 1.4rem;
  }
}
.two-column__flex .main-contents .category-list ul li.current a {
  background: #0A379D;
  /* 好きな色 */
  color: #fff;
}
.two-column__flex .sidebar {
  max-width: 330px;
  width: 100%;
}
@media (max-width: 1199px) {
  .two-column__flex .sidebar {
    max-width: 240px;
  }
}
@media (max-width: 767px) {
  .two-column__flex .sidebar {
    max-width: 100%;
    display: flex;
    gap: 0 4rem;
  }
}
@media (max-width: 575px) {
  .two-column__flex .sidebar {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .two-column__flex .sidebar__box {
    width: calc(50% - 2rem);
  }
}
@media (max-width: 575px) {
  .two-column__flex .sidebar__box {
    width: 100%;
  }
}
.two-column__flex .sidebar h2 {
  font-size: 2.2rem;
  border-bottom: 2px solid #2B2B2B;
  padding-bottom: 1rem;
}
@media (max-width: 1199px) {
  .two-column__flex .sidebar h2 {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .two-column__flex .sidebar h2 {
    font-size: 1.8rem;
  }
}
.two-column__flex .sidebar ul li {
  border-bottom: 1px solid #DADADA;
}
.two-column__flex .sidebar ul li a {
  text-decoration: none;
  color: #000;
  padding: 2.5rem 1rem;
  display: block;
  position: relative;
}
.two-column__flex .sidebar ul li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 8px;
  height: 8px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: translateY(-50%) rotate(45deg);
}

.pagination {
  margin-top: 16rem;
}
@media (max-width: 767px) {
  .pagination {
    margin-top: 8rem;
  }
}
.pagination .page-numbers {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.pagination .page-numbers li {
  width: 40px;
  height: 40px;
}
.pagination .page-numbers .current {
  background-color: #0A379D !important;
  color: #FFF !important;
}
.pagination .page-numbers .page-numbers {
  background-color: #FFF;
  color: #0A379D;
  font-size: 1.5rem;
  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 #0A379D;
  border-right: 2px solid #0A379D;
  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 #0A379D;
  border-right: 2px solid #0A379D;
  transform: translateY(-50%) rotate(45deg);
}

/*blog
-----------------------------------------------------*/
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 0;
}
.blog-list .box {
  width: 50%;
  padding: 0 3rem;
  border-left: 1px solid #EAEAEA;
  box-sizing: border-box;
}
.blog-list .box:nth-of-type(2n), .blog-list .box:last-of-type {
  border-right: 1px solid #EAEAEA;
}
.blog-list .box a {
  text-decoration: none;
  color: #000;
}
.blog-list .box .thumb {
  margin-bottom: 2rem;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
}
.blog-list .box .thumb img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-list .box .cat {
  border: 1px solid #0A379D;
  color: #0A379D;
  font-size: 1.3rem;
  padding: 0.3rem 1rem;
  word-break: keep-all;
}
@media (max-width: 575px) {
  .blog-list .box .cat {
    font-size: 1.2rem;
  }
}
.blog-list .box .date {
  font-size: 1.3rem;
  color: #666666;
}
@media (max-width: 575px) {
  .blog-list .box .date {
    font-size: 1.2rem;
  }
}
.blog-list .box h2 {
  font-size: 1.6rem;
  margin-top: 1rem;
}
@media (max-width: 575px) {
  .blog-list .box h2 {
    font-size: 1.4rem;
  }
}

.blog-jirei-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 0;
}
@media (max-width: 575px) {
  .blog-jirei-list {
    gap: 4rem 0;
  }
}
.blog-jirei-list .box {
  width: 33.3333333333%;
  padding: 0 3rem;
  border-left: 1px solid #EAEAEA;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .blog-jirei-list .box {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .blog-jirei-list .box {
    padding: 0 2rem;
  }
}
@media (max-width: 575px) {
  .blog-jirei-list .box {
    width: 100%;
  }
}
.blog-jirei-list .box:nth-of-type(3n), .blog-jirei-list .box:last-child {
  border-right: 1px solid #EAEAEA;
}
@media (max-width: 1023px) {
  .blog-jirei-list .box:nth-of-type(3n), .blog-jirei-list .box:last-child {
    border-right: none;
  }
}
@media (max-width: 1023px) {
  .blog-jirei-list .box:nth-of-type(2n), .blog-jirei-list .box:last-child {
    border-right: 1px solid #EAEAEA;
  }
}
@media (max-width: 575px) {
  .blog-jirei-list .box:nth-child(odd) {
    border-right: 1px solid #EAEAEA;
  }
}
.blog-jirei-list .box a {
  text-decoration: none;
  color: #000;
}
.blog-jirei-list .box .thumb {
  margin-bottom: 2rem;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
}
.blog-jirei-list .box .thumb img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-jirei-list .box .cats {
  gap: 5px;
  display: flex;
  flex-wrap: wrap;
}
.blog-jirei-list .box .cat {
  border: 1px solid #0A379D;
  color: #0A379D;
  font-size: 1.3rem;
  padding: 0.3rem 1rem;
  word-break: keep-all;
  display: inline-block;
  box-sizing: border-box;
  line-height: 1.4;
}
@media (max-width: 575px) {
  .blog-jirei-list .box .cat {
    font-size: 1.2rem;
  }
}
.blog-jirei-list .box .date {
  font-size: 1.3rem;
  color: #666666;
  margin-top: 0.5rem;
}
@media (max-width: 575px) {
  .blog-jirei-list .box .date {
    font-size: 1.2rem;
  }
}
.blog-jirei-list .box h2 {
  font-size: 1.6rem;
}
@media (max-width: 575px) {
  .blog-jirei-list .box h2 {
    font-size: 1.4rem;
  }
}

/*event
-----------------------------------------------------*/
.event-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem 3rem;
}
@media (max-width: 575px) {
  .event-list {
    gap: 4rem 2rem;
  }
}
.event-list .box {
  width: calc(50% - 1.5rem);
  padding-bottom: 4rem;
  border-bottom: 1px solid #EAEAEA;
  box-sizing: border-box;
}
@media (max-width: 575px) {
  .event-list .box {
    padding-bottom: 3rem;
  }
}
.event-list .box a {
  text-decoration: none;
  color: #000;
}
.event-list .box .thumb {
  margin-bottom: 2rem;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
}
.event-list .box .thumb img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
.event-list .box .cat {
  border: 1px solid #0A379D;
  color: #0A379D;
  font-size: 1.3rem;
  padding: 0.3rem 1rem;
  word-break: keep-all;
}
@media (max-width: 575px) {
  .event-list .box .cat {
    font-size: 1.2rem;
  }
}
.event-list .box .date {
  font-size: 1.3rem;
  color: #666666;
}
@media (max-width: 575px) {
  .event-list .box .date {
    font-size: 1.2rem;
  }
}
.event-list .box h2 {
  font-size: 1.8rem;
  margin-top: 1rem;
  color: #0A379D;
}
@media (max-width: 767px) {
  .event-list .box h2 {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .event-list .box h2 {
    font-size: 1.4rem;
  }
}

.instructor-block--flex {
  display: flex;
  align-items: center;
  gap: 4rem 5rem;
}
@media (max-width: 767px) {
  .instructor-block--flex {
    flex-wrap: wrap;
  }
}
.instructor-block--flex-img {
  max-width: 368px;
  width: 100%;
}
@media (max-width: 767px) {
  .instructor-block--flex-img {
    margin: auto;
  }
}
.instructor-block--flex-img img {
  width: 100%;
  aspect-ratio: 184/215;
  -o-object-fit: cover;
     object-fit: cover;
}
.instructor-block--flex-text .name-box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.instructor-block--flex-text .name-box .name {
  margin: 0;
  font-size: 3rem;
  font-weight: 600;
}
.instructor-block--flex-text .name-box .name_en {
  margin: 0;
  font-weight: bold;
}
.instructor-block--flex-text .company_name {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.application_btn {
  max-width: 587px;
  margin: 14rem auto 0 auto;
}
.application_btn a {
  font-size: 2rem;
  color: #0A379D;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-right: 32px;
  border: 1px solid #0A379D;
  border-radius: 5px;
  text-decoration: none;
  display: block;
  padding: 3rem 2.5rem;
  text-align: center;
}
.application_btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background: url("../images/common/arrow.svg") no-repeat center;
  background-size: contain;
}

/*interview
-----------------------------------------------------*/
.interview-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem 3rem;
  margin-top: 6rem;
}
@media (max-width: 575px) {
  .interview-list {
    gap: 4rem 2rem;
  }
}
.interview-list .box {
  width: calc(33.3333333333% - 2rem);
  padding-bottom: 4rem;
  border-bottom: 1px solid #EAEAEA;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .interview-list .box {
    width: calc(50% - 1.5rem);
  }
}
@media (max-width: 575px) {
  .interview-list .box {
    width: calc(50% - 1rem);
    padding-bottom: 3rem;
  }
}
.interview-list .box a {
  text-decoration: none;
  color: #000;
}
.interview-list .box .thumb {
  margin-bottom: 2rem;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
}
.interview-list .box .thumb img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
.interview-list .box .cat {
  border: 1px solid #0A379D;
  color: #0A379D;
  font-size: 1.3rem;
  padding: 0.3rem 1rem;
  word-break: keep-all;
}
@media (max-width: 575px) {
  .interview-list .box .cat {
    font-size: 1.2rem;
  }
}
.interview-list .box .owner {
  font-size: 1.3rem;
  color: #666666;
}
@media (max-width: 575px) {
  .interview-list .box .owner {
    font-size: 1.2rem;
  }
}
.interview-list .box h2 {
  font-size: 1.8rem;
  margin-top: 1rem;
  color: #0A379D;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .interview-list .box h2 {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .interview-list .box h2 {
    font-size: 1.4rem;
  }
}

.post-interview--thumbnail {
  text-align: center;
}
.post-interview--thumbnail img {
  max-width: 50%;
  width: 100%;
}
@media (max-width: 1023px) {
  .post-interview h2:first-of-type {
    margin-top: 2rem;
  }
}
.post-interview .wp-block-details {
  background-color: #E8EAF1 !important;
  padding: 4rem 4rem 0 4rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}
.post-interview .wp-block-details summary {
  display: revert !important;
  margin-bottom: 4rem;
}
.post-interview .wp-block-details p:last-of-type {
  padding-bottom: 4rem;
}

/*message
-----------------------------------------------------*/
.page-message .flex {
  gap: 2rem 4%;
}
@media (max-width: 767px) {
  .page-message .flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.page-message .flex .col01 {
  width: 100%;
}
.page-message .flex .col02 {
  max-width: 400px;
  width: 100%;
  text-align: center;
}
@media (max-width: 1023px) {
  .page-message .flex .col02 {
    max-width: 340px;
  }
}
.page-message h2 {
  background-color: transparent;
  color: #0A379D;
  font-size: 3.3rem;
  padding: 0;
  margin-bottom: 5rem;
  margin-top: 0;
}
@media (max-width: 1199px) {
  .page-message h2 {
    font-size: 2.8rem;
  }
}
@media (max-width: 1023px) {
  .page-message h2 {
    font-size: 2.6rem;
  }
}
@media (max-width: 767px) {
  .page-message h2 {
    font-size: 2.4rem;
  }
}
@media (max-width: 575px) {
  .page-message h2 {
    font-size: 2rem;
  }
}
.page-message .message-name {
  font-size: 2rem;
  font-weight: 600;
  margin: 2rem 0;
}
@media (max-width: 575px) {
  .page-message .message-name {
    font-size: 1.8rem;
  }
}
.page-message .message-name-img {
  max-width: 325px;
  margin: auto;
}

/*company
-----------------------------------------------------*/
@media screen and (max-width: 768px) {
  .company-table th {
    padding-bottom: 1rem !important;
  }
  .company-table td {
    padding-top: 0 !important;
  }
}

.baselist {
  padding-top: 10rem;
}
.baselist-box {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 3rem 6rem;
  padding-top: 10rem;
  padding-bottom: 10rem;
  border-bottom: 1px solid #EAEAEA;
}
@media (max-width: 1023px) {
  .baselist-box {
    flex-wrap: wrap;
  }
}
.baselist-box:first-of-type {
  padding-top: 0;
}
.baselist-box:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}
.baselist-box .gmap {
  max-width: 600px;
  width: 100%;
}
@media (max-width: 1023px) {
  .baselist-box .gmap {
    max-width: 100%;
  }
}
.baselist-box .gmap iframe {
  height: 400px;
}
@media (max-width: 575px) {
  .baselist-box .gmap iframe {
    height: 300px;
  }
}
.baselist-box .text {
  width: 100%;
}
@media (max-width: 1023px) {
  .baselist-box .text {
    max-width: 100%;
  }
}
.baselist-box .text .base-name {
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
}
.baselist-box .text .base-address {
  line-height: 2;
}
.baselist-box .text .text-flex {
  display: flex;
  align-items: baseline;
  gap: 2rem;
}
.baselist-box .text .text-flex span {
  color: #FFF;
  background-color: #0A379D;
  font-size: 1.5rem;
  width: 110px;
  text-align: center;
  display: inline-block;
}
.baselist-box .text .text-flex p {
  margin: 0;
}
.baselist-box .text .text-flex:first-of-type {
  margin-bottom: 1.5rem;
}

/*aiwagroup
-----------------------------------------------------*/
.page-aiwagroup .wp-block-image {
  margin: 0 auto;
}
.page-aiwagroup .is-layout-flex {
  gap: 4rem 6rem;
}
.page-aiwagroup p {
  margin: 2rem 0;
}
.page-aiwagroup figure img {
  margin: 0 auto;
}
.page-aiwagroup .w-190 {
  max-width: 190px;
  margin: 0rem auto;
}
.page-aiwagroup .w-190 img {
  max-width: 190px;
}
.page-aiwagroup .group01 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 6rem;
  margin: 8rem auto 0 auto;
}
@media (max-width: 575px) {
  .page-aiwagroup .group01 {
    flex-wrap: wrap;
  }
}
.page-aiwagroup .group01-img {
  max-width: 150px;
  width: 100%;
}
.page-aiwagroup .group01-text {
  width: 100%;
}
.page-aiwagroup .group01-text .name {
  color: #0A379D;
  font-weight: 600;
}
.page-aiwagroup .group01-text .link {
  text-decoration: none;
  color: #0A379D;
}
.page-aiwagroup .link a {
  text-decoration: none;
  color: #0A379D;
}

/*history
-----------------------------------------------------*/
.history .dlBlock {
  position: relative;
  max-width: 1200px;
  margin: 6rem auto 0 auto;
}
.history .dlBlock:before {
  position: absolute;
  display: block;
  content: "";
  background: #0A379D;
  width: 1px;
  height: 98%;
  z-index: -1;
  top: 12px;
  left: 94px;
}
@media (max-width: 767px) {
  .history .dlBlock:before {
    height: 98%;
  }
}
@media (max-width: 575px) {
  .history .dlBlock:before {
    left: 64px;
    height: 99%;
    top: 6px;
  }
}
.history .dlBlock .dlInner {
  display: flex;
  align-items: flex-start;
  /*なくても問題ない？？*/
  padding-bottom: 40px;
}
.history .dlBlock .dlInner div {
  flex: 1;
}
.history .dlBlock .dlInner:last-of-type {
  padding-bottom: 0;
}
.history .dlBlock dt {
  position: relative;
  color: #0A379D;
  line-height: 1;
  box-sizing: border-box;
  word-break: break-all;
  font-family: Arial, sans-serif;
  font-weight: bold;
  width: 100px;
  padding-right: 15px;
  font-size: 24px;
}
@media (max-width: 575px) {
  .history .dlBlock dt {
    font-size: 20px;
    width: 70px;
  }
}
.history .dlBlock dt::before {
  position: absolute;
  display: block;
  content: "";
  top: 0.5em;
  right: 0;
  width: 10px;
  height: 10px;
  background: #0A379D;
  border-radius: 50%;
  transform: translateY(-50%);
}
.history .dlBlock dd {
  line-height: 1.5;
  flex: 1;
  margin-left: 36px;
  font-size: 16px;
  display: flex;
}
@media (max-width: 575px) {
  .history .dlBlock dd {
    font-size: 14px;
    margin-left: 20px;
  }
}
.history .dlBlock dd span {
  max-width: 46px;
  width: 100%;
  display: inline-block;
  white-space: nowrap;
  font-weight: 600;
  text-align: right;
  margin-right: 3rem;
}
@media (max-width: 575px) {
  .history .dlBlock dd span {
    max-width: 36px;
  }
}
.history .dlBlock dd + dd {
  margin-top: 2rem;
}

/*philosophy
-----------------------------------------------------*/
body.philosophy .page-header {
  border-top: 0;
}

body.single-interview .page-header {
  border-top: 0;
}

body.sitemap .wp-block-group__inner-container p + p {
  margin-top: 1rem;
}
body.sitemap .wp-block-group__inner-container a {
  color: #1F1F1F;
  text-decoration: none;
}
body.sitemap .wp-block-group a {
  color: #1F1F1F;
  text-decoration: none;
}

/*apartment_management テンプレート
-----------------------------------------------------*/
.apartment_management .management-h {
  background-color: transparent;
  color: #0A379D;
  font-size: 2.8rem;
  padding: 0;
}
@media (max-width: 1023px) {
  .apartment_management .management-h {
    font-size: 2.6rem;
  }
}
@media (max-width: 767px) {
  .apartment_management .management-h {
    font-size: 2.4rem;
  }
}
@media (max-width: 575px) {
  .apartment_management .management-h {
    font-size: 2rem;
  }
}
.apartment_management .management-h span {
  font-size: 1.4rem;
  color: #0A379D;
  position: relative;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}
.apartment_management .management-h span::after {
  content: "";
  width: 16px;
  height: 1px;
  background-color: #0A379D;
  position: absolute;
  left: 0;
  bottom: 0;
}

.about-nav {
  background-color: #264996;
  padding: 9rem 0;
  margin: 18rem auto 12rem auto;
}
.about-nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 0;
}
.about-nav ul li a {
  text-decoration: none;
  color: #FFF;
  font-size: 1.8rem;
  padding: 0 3rem;
  border-left: 1px solid #637BAF;
}
@media (max-width: 767px) {
  .about-nav ul li a {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .about-nav ul li a {
    font-size: 1.4rem;
  }
}
.about-nav ul li a:last-of-type {
  border-right: 1px solid #637BAF;
}

/*reason
-----------------------------------------------------*/
.reason-flex {
  display: flex;
  max-width: 1000px;
  margin: 6rem auto 0 auto;
  gap: 3rem;
}
@media (max-width: 575px) {
  .reason-flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.reason-flex div {
  width: calc(33.3333333333% - 1.5rem);
}
@media (max-width: 575px) {
  .reason-flex div {
    width: calc(50% - 1.5rem);
  }
}
.reason-case {
  margin: auto;
}
.reason-case--flex {
  display: flex;
  align-items: center;
  gap: 3rem 4rem;
  margin-bottom: 3rem;
}
@media (max-width: 575px) {
  .reason-case--flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.reason-case--flex .img {
  max-width: 180px;
  width: 100%;
}

/*merit
-----------------------------------------------------*/
.merit-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 754px;
  width: 100%;
  margin: 0 auto 12rem auto;
}
.merit-nav--box {
  width: 33.3333333333%;
  background-color: #FFF;
  border-top: 1px solid #bbc5da;
  border-left: 1px solid #bbc5da;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .merit-nav--box {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .merit-nav--box:nth-of-type(2) {
    border-right: 1px solid #bbc5da;
  }
}
.merit-nav--box:nth-of-type(3) {
  border-right: 1px solid #bbc5da;
}
@media (max-width: 767px) {
  .merit-nav--box:nth-of-type(3) {
    border-right: none;
  }
}
.merit-nav--box:nth-of-type(4) {
  border-bottom: 1px solid #bbc5da;
}
@media (max-width: 767px) {
  .merit-nav--box:nth-of-type(4) {
    border-right: 1px solid #bbc5da;
    border-bottom: none;
  }
}
.merit-nav--box:nth-of-type(5) {
  border-bottom: 1px solid #bbc5da;
}
.merit-nav--box:nth-of-type(6) {
  border-right: 1px solid #bbc5da;
  border-bottom: 1px solid #bbc5da;
}
.merit-nav--box p {
  font-size: 20px;
  font-weight: bold;
  margin: 0 auto 1rem auto;
  line-height: 1.4;
  height: 6rem;
  vertical-align: middle;
  display: flex;
  align-items: center;
}
@media (max-width: 1023px) {
  .merit-nav--box p {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .merit-nav--box p {
    font-size: 1.6rem;
  }
}
.merit-nav--box a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  box-sizing: border-box;
}
.merit .merit-box .text {
  position: relative;
}
@media (max-width: 767px) {
  .merit .merit-box .text {
    padding: 0 0 20px;
    background-color: #f1f4fa;
  }
}
.merit .merit-box .text p {
  padding: 40px 46px 50px 34px;
  background-color: #f1f4fa;
  color: #0c399e;
  padding-right: 22rem;
}
@media (max-width: 767px) {
  .merit .merit-box .text p {
    padding: 20px;
    margin: 0;
    width: auto;
  }
}
.merit .merit-box .text figure {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .merit .merit-box .text figure {
    position: static;
    text-align: center;
    transform: none;
  }
}
.merit .merit-box .flow {
  margin-top: 35px;
}
.merit .merit-box .flow ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .merit .merit-box .flow ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.merit .merit-box .flow ul,
.merit .merit-box .flow li {
  list-style: none;
}
.merit .merit-box .flow li {
  width: 28%;
  background-color: #FFF;
  border: 2px solid #0c399e;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 106px;
}
@media (max-width: 1023px) {
  .merit .merit-box .flow li {
    width: 26%;
  }
}
@media (max-width: 767px) {
  .merit .merit-box .flow li {
    width: 90%;
  }
}
.merit .merit-box .flow li:not(:last-child) {
  margin-right: 53.3px;
}
@media (max-width: 767px) {
  .merit .merit-box .flow li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.merit .merit-box .flow span {
  vertical-align: middle;
  text-align: center;
  color: #0c399e;
}
.merit .merit-box .flow li:not(:last-child):after {
  position: absolute;
  content: "";
  width: 53px;
  height: 100%;
  right: -53px;
  top: 50%;
  background: url(../images/merit/merit_arrow.png) no-repeat -12px center;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .merit .merit-box .flow li:not(:last-child):after {
    width: 16px;
    height: 16px;
    right: auto;
    left: 50%;
    top: auto;
    bottom: -16px;
    background-position: right center;
    transform: translateX(-50%) rotate(90deg);
  }
}

/*management
-----------------------------------------------------*/
.management .management-wrap {
  max-width: 1000px;
  margin: auto;
}
.management-flex {
  display: flex;
  gap: 3rem 3.5rem;
  margin-top: 7rem;
}
@media (max-width: 575px) {
  .management-flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.management-flex .col01 {
  max-width: 285px;
  width: 100%;
}
@media (max-width: 575px) {
  .management-flex .col01 {
    order: 1;
  }
}
.management-flex .col02 {
  width: 100%;
}
.management-flex .col02 h3 {
  font-size: 2.8rem;
  margin: 0 0 1rem 0;
  padding: 0;
  border-left: 0;
}
@media (max-width: 1023px) {
  .management-flex .col02 h3 {
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  .management-flex .col02 h3 {
    font-size: 2.2rem;
  }
}
@media (max-width: 575px) {
  .management-flex .col02 h3 {
    font-size: 2rem;
  }
}
.management-flex .col02 h3 span {
  display: inline-block;
  margin-right: 1.5rem;
}
.management-flex .col02 .charge {
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 2rem;
  display: inline-block;
}
.management-flex .col02 p + p {
  margin-top: 2rem;
}

/*property
-----------------------------------------------------*/
.property .property-wrap {
  margin: auto;
}
.property-link {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 10rem;
}
.property-link__flex {
  border: 1px solid #EAEAEA;
  width: calc(50% - 1rem);
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .property-link__flex {
    width: 100%;
  }
}
.property-link__flex a {
  display: flex;
  align-items: center;
  gap: 3rem;
  text-decoration: none;
  color: #0A379D;
  font-weight: 600;
}
@media (max-width: 575px) {
  .property-link__flex a {
    gap: 2rem;
  }
}
.property-link__flex a .col01 {
  max-width: 185px;
  width: 100%;
}
@media (max-width: 575px) {
  .property-link__flex a .col01 {
    max-width: 140px;
  }
}
.property-link__flex a .col01 img {
  -o-object-fit: cover;
     object-fit: cover;
}
.property-link__flex a .col02 {
  padding: 2rem 2rem 2rem 0;
}
@media (max-width: 575px) {
  .property-link__flex a .col02 {
    padding: 1rem 2rem 1rem 0;
  }
}
.property-link__flex a .col02 p {
  margin: 0;
}
.property-point .point1-flex {
  display: flex;
  align-items: center;
  gap: 2rem 4rem;
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .property-point .point1-flex {
    margin-top: 3rem;
    gap: 2rem 3rem;
  }
}
@media (max-width: 575px) {
  .property-point .point1-flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.property-point .point1-flex .col01 {
  max-width: 270px;
  width: 100%;
}
@media (max-width: 767px) {
  .property-point .point1-flex .col01 {
    max-width: 200px;
  }
}
@media (max-width: 575px) {
  .property-point .point1-flex .col01 {
    order: 1;
  }
}
.property-point .point1-flex .col02 {
  width: 100%;
}
.property-point .point1-flex .col02 h3 {
  font-size: 2.4rem;
  margin: 0 0 1rem 0;
  padding: 0;
  border-left: 0;
  color: #0A379D;
}
@media (max-width: 767px) {
  .property-point .point1-flex .col02 h3 {
    font-size: 2.2rem;
  }
}
@media (max-width: 575px) {
  .property-point .point1-flex .col02 h3 {
    font-size: 2rem;
  }
}
.property-point .point2-flex {
  display: flex;
  gap: 4rem;
  margin-top: 6rem;
}
@media (max-width: 575px) {
  .property-point .point2-flex {
    flex-wrap: wrap;
    margin-top: 3rem;
  }
}
.property-point .point2-flex__box {
  width: calc(50% - 2rem);
}
@media (max-width: 575px) {
  .property-point .point2-flex__box {
    width: 100%;
  }
}
.property-point .point2-flex__box h3 {
  font-size: 2rem;
  margin: 2rem 0 1rem 0;
  padding: 0;
  border-left: 0;
  color: #0A379D;
}
@media (max-width: 575px) {
  .property-point .point2-flex__box h3 {
    font-size: 1.8rem;
  }
}
.property-point .point3-flex {
  display: flex;
  justify-content: center;
  gap: 3rem 3.5rem;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .property-point .point3-flex {
    flex-wrap: wrap;
  }
}
.property-point .point3-flex__box {
  width: calc(33.3333333333% - 2rem);
}
@media (max-width: 767px) {
  .property-point .point3-flex__box {
    width: calc(50% - 2rem);
  }
}
@media (max-width: 575px) {
  .property-point .point3-flex__box {
    width: 100%;
  }
}
.property-point .point3-flex__box h3 {
  font-size: 2rem;
  margin: 2rem 0 0 0;
  text-align: center;
  padding: 0;
  border-left: 0;
  color: #0A379D;
}
@media (max-width: 575px) {
  .property-point .point3-flex__box h3 {
    font-size: 1.8rem;
  }
}
.property-point .point4-flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.property-point .point4-flex__box {
  width: calc(16.6666666667% - 1.25rem);
}
@media (max-width: 767px) {
  .property-point .point4-flex__box {
    width: calc(33.3333333333% - 1.25rem);
  }
}

/*strategy-finance
-----------------------------------------------------*/
.strategy-finance-wrap {
  margin: auto;
}
.strategy-finance .strategy-box1__flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin-top: 4rem;
}
.strategy-finance .strategy-box1__flex .box {
  width: calc(20% - 1.45rem);
}
@media (max-width: 767px) {
  .strategy-finance .strategy-box1__flex .box {
    width: calc(33.3333333333% - 1.45rem);
  }
}
.strategy-finance .strategy-box1__flex .box h3 {
  font-size: 2rem;
  margin: 1rem 0 0 0;
  text-align: center;
  padding: 0;
  border-left: 0;
  color: #0A379D;
}
@media (max-width: 1023px) {
  .strategy-finance .strategy-box1__flex .box h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 575px) {
  .strategy-finance .strategy-box1__flex .box h3 {
    font-size: 1.6rem;
  }
}
.strategy-finance .strategy-box2__flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem 4rem;
}
@media (max-width: 767px) {
  .strategy-finance .strategy-box2__flex {
    gap: 2rem;
  }
}
@media (max-width: 575px) {
  .strategy-finance .strategy-box2__flex {
    flex-wrap: wrap;
  }
}
.strategy-finance .strategy-box2__flex .col01 {
  max-width: 180px;
  width: 100%;
}
@media (max-width: 767px) {
  .strategy-finance .strategy-box2__flex .col01 {
    max-width: 120px;
  }
}
.strategy-finance .strategy-box2__flex .col02 {
  width: 100%;
}
.strategy-finance .strategy-box3__flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 4rem;
}
@media (max-width: 767px) {
  .strategy-finance .strategy-box3__flex {
    gap: 2rem;
  }
}
.strategy-finance .strategy-box3__flex .box {
  width: calc(25% - 3rem);
}
@media (max-width: 767px) {
  .strategy-finance .strategy-box3__flex .box {
    width: calc(50% - 1rem);
  }
}
.strategy-finance .strategy-box3__flex .box h3 {
  font-size: 2rem;
  margin: 1rem 0 0 0;
  text-align: center;
  padding: 0;
  border-left: 0;
  color: #0A379D;
}
@media (max-width: 1023px) {
  .strategy-finance .strategy-box3__flex .box h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 575px) {
  .strategy-finance .strategy-box3__flex .box h3 {
    font-size: 1.6rem;
  }
}
.strategy-finance .finance-sec-box {
  margin-top: 8rem;
}
.strategy-finance .finance-sec-box h3 {
  font-size: 2.2rem;
  margin: 0 0 2rem 0;
  padding: 0;
  border-left: 0;
  color: #222222;
}
@media (max-width: 1023px) {
  .strategy-finance .finance-sec-box h3 {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .strategy-finance .finance-sec-box h3 {
    font-size: 1.8rem;
  }
}
.strategy-finance .finance-sec-box__flex {
  display: flex;
  justify-content: center;
  gap: 2rem 3rem;
}
@media (max-width: 575px) {
  .strategy-finance .finance-sec-box__flex {
    flex-wrap: wrap;
  }
}
.strategy-finance .finance-sec-box__flex .col01 {
  max-width: 180px;
  width: 100%;
}
@media (max-width: 767px) {
  .strategy-finance .finance-sec-box__flex .col01 {
    max-width: 120px;
  }
}
.strategy-finance .finance-sec-box__flex .col02 {
  width: 100%;
}
.strategy-finance .finance-sec-box__flex .col02 h4 {
  color: #0A379D;
  font-size: 1.7rem;
  margin: 0;
  padding: 0;
  border: none;
}
.strategy-finance .finance-sec-box__flex .col02 h4::after {
  content: none;
}
@media (max-width: 767px) {
  .strategy-finance .finance-sec-box__flex .col02 h4 {
    font-size: 1.6rem;
  }
}
.strategy-finance .finance-sec-box__flex .col02 p {
  font-size: 1.8rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .strategy-finance .finance-sec-box__flex .col02 p {
    font-size: 1.5rem;
  }
}
.strategy-finance .finance-sec-box .text {
  font-size: 1.5rem;
  margin-top: 4rem;
}
@media (max-width: 575px) {
  .strategy-finance .finance-sec-box .text {
    font-size: 1.4rem;
  }
}

/*page-plan
-----------------------------------------------------*/
.plan-wrap .page-plan {
  width: 100%;
  margin: auto;
}
.plan-wrap .plan-link {
  width: 100%;
  margin: 12rem auto 0 auto;
}
@media (max-width: 767px) {
  .plan-wrap .plan-link {
    margin-top: 6rem;
  }
}
.plan-wrap .plan-link__flex {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
@media (max-width: 767px) {
  .plan-wrap .plan-link__flex {
    flex-wrap: wrap;
  }
}
.plan-wrap .plan-link__flex .btn {
  width: calc(50% - 1rem);
}
@media (max-width: 767px) {
  .plan-wrap .plan-link__flex .btn {
    width: 100%;
  }
}
.plan-wrap .plan-link__flex .btn a {
  background-color: #E8EAF1;
  color: #0A379D;
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: none;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.plan-wrap .plan-link__flex .btn a::after {
  content: "";
  margin: auto;
  position: absolute;
  bottom: 18px;
  right: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #0A379D;
  border-right: 2px solid #0A379D;
  transform: rotate(135deg);
}
.plan-wrap h2 {
  font-size: 2.2rem;
  margin-bottom: 5rem;
  margin-top: 12rem;
}
@media (max-width: 1023px) {
  .plan-wrap h2 {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .plan-wrap h2 {
    font-size: 1.8rem;
  }
}
.plan-wrap .plan-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem 0;
}
.plan-wrap .plan-list .box {
  width: 33.3333333333%;
  padding: 0 3rem;
  border-left: 1px solid #EAEAEA;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .plan-wrap .plan-list .box {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .plan-wrap .plan-list .box {
    padding: 0 2rem;
  }
}
@media (max-width: 575px) {
  .plan-wrap .plan-list .box {
    width: 100%;
  }
}
.plan-wrap .plan-list .box a {
  text-decoration: none;
  color: #0A379D;
}
.plan-wrap .plan-list .box .thumb img {
  width: 100%;
  aspect-ratio: 189/137;
  -o-object-fit: cover;
  object-fit: cover;
}
.plan-wrap .plan-list .box h3 {
  font-size: 1.8rem;
  margin-top: 1.5rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .plan-wrap .plan-list .box h3 {
    font-size: 1.6rem;
  }
}
.plan-wrap .plan-list .box:nth-of-type(3n), .plan-wrap .plan-list .box:last-child {
  border-right: 1px solid #EAEAEA;
}
@media (max-width: 1023px) {
  .plan-wrap .plan-list .box:nth-of-type(3n), .plan-wrap .plan-list .box:last-child {
    border-right: none;
  }
}
@media (max-width: 1023px) {
  .plan-wrap .plan-list .box:nth-of-type(2n), .plan-wrap .plan-list .box:last-child {
    border-right: 1px solid #EAEAEA;
  }
}
@media (max-width: 575px) {
  .plan-wrap .plan-list .box:nth-child(odd) {
    border-right: 1px solid #EAEAEA;
  }
}
.plan-wrap .plan-list .box .youtube-icon {
  width: 40px;
  margin-left: auto;
  margin-top: 1rem;
}

/*plan-sec(single-plan.php)
-----------------------------------------------------*/
.plan-sec {
  padding-bottom: 18rem;
}
.plan-sec__top h2 {
  color: #0A379D;
  font-size: 3.1rem;
  position: relative;
  line-height: 1.2;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 1023px) {
  .plan-sec__top h2 {
    font-size: 2.6rem;
  }
}
@media (max-width: 575px) {
  .plan-sec__top h2 {
    font-size: 2.2rem;
  }
}
.plan-sec__top h2 span {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .plan-sec__top h2 span {
    font-size: 1.8rem;
  }
}
.plan-sec__top h2::after {
  content: "";
  width: 16px;
  height: 1px;
  background-color: #0A379D;
  position: absolute;
  left: 0;
  bottom: 0;
}
.plan-sec__detail {
  background-color: #F1F4FA;
  margin: 10rem auto;
  padding: 10rem 0;
}
.plan-sec__detail .detail-flex {
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 1023px) {
  .plan-sec__detail .detail-flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.plan-sec__detail .detail-flex .plan-youtube {
  position: relative;
  width: 100%;
  max-width: 500px;
  flex-shrink: 0;
  height: 300px;
  padding-bottom: 0;
}
@media (max-width: 1023px) {
  .plan-sec__detail .detail-flex .plan-youtube {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 の比率 (9÷16=0.5625) */
    height: 0;
    overflow: hidden;
    max-width: none;
  }
}
.plan-sec__detail .detail-flex .plan-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.plan-sec__detail .detail-flex .text h3 {
  font-size: 2.2rem;
  color: #0A379D;
  margin-bottom: 0.5rem;
  margin-top: 2rem;
}
.plan-sec__detail .detail-flex .text h3:first-of-type {
  margin-top: 0;
}
@media (max-width: 767px) {
  .plan-sec__detail .detail-flex .text h3 {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .plan-sec__detail .detail-flex .text h3 {
    font-size: 1.8rem;
  }
}
.plan-sec__gallery h3 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}
@media (max-width: 575px) {
  .plan-sec__gallery h3 {
    font-size: 2rem;
  }
}
.plan-sec__equipment {
  margin-top: 10rem;
}
.plan-sec__equipment h3 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}
@media (max-width: 575px) {
  .plan-sec__equipment h3 {
    font-size: 2rem;
  }
}
.plan-sec__equipment h3 span {
  display: inline-block;
  margin-left: 1.5rem;
  font-size: 1.6rem;
  font-weight: 500;
}
@media (max-width: 575px) {
  .plan-sec__equipment h3 span {
    font-size: 1.4rem;
  }
}
.plan-sec__equipment .equipment-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 1.4rem;
}
.plan-sec__equipment .equipment-flex .box {
  width: calc(25% - 1.1rem);
}
@media (max-width: 1023px) {
  .plan-sec__equipment .equipment-flex .box {
    width: calc(50% - 0.7rem);
  }
}
.plan-sec__equipment .equipment-flex .box img {
  width: 100%;
  aspect-ratio: 32/23;
  -o-object-fit: cover;
  object-fit: cover;
}
.plan-sec__equipment .equipment-flex .box p {
  font-size: 1.4rem;
  color: #0A379D;
  font-weight: 600;
  margin-top: 1rem;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 575px) {
  .plan-sec__equipment .equipment-flex .box p {
    font-size: 1.2rem;
  }
}
.plan-sec__voice {
  margin-top: 10rem;
}
.plan-sec__voice h3 {
  font-size: 2.2rem;
  margin-bottom: 3rem;
}
@media (max-width: 575px) {
  .plan-sec__voice h3 {
    font-size: 2rem;
  }
}
.plan-sec__voice .voice-flex {
  display: flex;
  align-items: center;
  gap: 2rem 3.4rem;
  margin-top: 4rem;
}
.plan-sec__voice .voice-flex:first-of-type {
  margin-top: 0;
}
@media (max-width: 575px) {
  .plan-sec__voice .voice-flex {
    margin-top: 2rem;
    gap: 2rem;
  }
}
.plan-sec__voice .voice-flex .col01 {
  max-width: 130px;
  width: 100%;
}
@media (max-width: 575px) {
  .plan-sec__voice .voice-flex .col01 {
    max-width: 90px;
  }
}
.plan-sec__voice .voice-flex .col02 {
  width: 100%;
}
.plan-sec__voice .voice-flex .col02 h4 {
  color: #0A379D;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.plan-sec__room {
  margin-top: 10rem;
}
.plan-sec__room h3 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}
@media (max-width: 575px) {
  .plan-sec__room h3 {
    font-size: 2rem;
  }
}
.plan-sec__room .room-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2.8rem;
}
@media (max-width: 575px) {
  .plan-sec__room .room-flex {
    gap: 2rem;
  }
}
.plan-sec__room .room-flex div {
  width: calc(33.3333333333% - 1.9rem);
}
@media (max-width: 575px) {
  .plan-sec__room .room-flex div {
    width: calc(50% - 1rem);
  }
}
.plan-sec__room .room-flex div img {
  width: 100%;
  aspect-ratio: 19/14;
  -o-object-fit: cover;
  object-fit: cover;
}
.plan-sec__message {
  margin-top: 10rem;
}
.plan-sec__message h3 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}
@media (max-width: 575px) {
  .plan-sec__message h3 {
    font-size: 2rem;
  }
}
.plan-sec__message .message-flex {
  display: flex;
  align-items: center;
  gap: 2rem 3.4rem;
  margin-top: 4rem;
}
.plan-sec__message .message-flex:first-of-type {
  margin-top: 0;
}
@media (max-width: 1023px) {
  .plan-sec__message .message-flex {
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .plan-sec__message .message-flex {
    margin-top: 2rem;
    gap: 2rem;
  }
}
.plan-sec__message .message-flex .col01 {
  max-width: 130px;
  width: 100%;
}
@media (max-width: 575px) {
  .plan-sec__message .message-flex .col01 {
    max-width: 90px;
  }
}
.plan-sec__message .message-flex .col02 {
  width: 100%;
}
.plan-sec__point {
  margin-top: 10rem;
}
.plan-sec__point h3 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}
@media (max-width: 575px) {
  .plan-sec__point h3 {
    font-size: 2rem;
  }
}
.plan-sec__point h3 span {
  display: inline-block;
  margin-left: 1.5rem;
  font-size: 1.6rem;
  font-weight: 500;
}
@media (max-width: 575px) {
  .plan-sec__point h3 span {
    font-size: 1.4rem;
  }
}
.plan-sec__point .point-flex {
  display: flex;
  align-items: center;
  gap: 1rem 3.4rem;
  margin-top: 4rem;
}
@media (max-width: 575px) {
  .plan-sec__point .point-flex {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
    gap: 1rem 2rem;
  }
}
.plan-sec__point .point-flex:first-of-type {
  margin-top: 0;
}
.plan-sec__point .point-flex .col01 {
  max-width: 285px;
  width: 100%;
}
.plan-sec__point .point-flex .col01 img {
  aspect-ratio: 3/2;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.plan-sec__point .point-flex .col02 {
  width: 100%;
}
.plan-sec__point .point-flex .col02 h4 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 1023px) {
  .plan-sec__point .point-flex .col02 h4 {
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  .plan-sec__point .point-flex .col02 h4 {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .plan-sec__point .point-flex .col02 h4 {
    font-size: 1.8rem;
  }
}

/*page-privacypolicy
-----------------------------------------------------*/
.page-privacypolicy h2 {
  background-color: transparent;
  color: #222222;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
  padding: 0;
}
@media (max-width: 767px) {
  .page-privacypolicy h2 {
    font-size: 1.8rem;
  }
}

/*footer
-----------------------------------------------------*/
.footer-banner {
  padding: 8rem 0;
  margin-top: 18rem;
  border-top: 1px solid #E8EAF1;
}
.footer-banner .flex {
  justify-content: center;
  gap: 2rem 8rem;
}
@media (max-width: 767px) {
  .footer-banner .flex {
    flex-wrap: wrap;
    text-align: center;
  }
}
.footer-banner .flex-box {
  max-width: 508px;
  width: 100%;
}

.single footer {
  margin-top: 0;
}

footer {
  background-color: #FFF;
  margin-top: 16rem;
}
footer .footer-inner {
  padding: 0 0 6rem 0;
}
footer .footer-inner hr {
  margin: 0;
}
footer .footer-inner .footer-bottom {
  color: #000;
  border-top: 2px solid #E8EAF1;
  padding-top: 7rem;
}
footer .footer-inner .footer-bottom .flex {
  gap: 5rem 10%;
}
@media (max-width: 575px) {
  footer .footer-inner .footer-bottom .flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
footer .footer-inner .footer-bottom .flex .col01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 600;
  min-width: 110px;
}
footer .footer-inner .footer-bottom .flex .col01 img {
  max-width: 66px;
  width: 100%;
  margin-top: 1.5rem;
}
footer .footer-inner .footer-bottom .flex .col02 .footer__nav {
  gap: 0 2rem;
  padding: 0 0 3rem 0;
}
@media (max-width: 767px) {
  footer .footer-inner .footer-bottom .flex .col02 .footer__nav {
    padding: 2rem 0;
  }
}
footer .footer-inner .footer-bottom .flex .col02 .footer__nav a {
  display: block;
  line-height: 1.5;
}
footer .footer-inner .footer-bottom .flex .col02 .footer__nav > ul {
  width: calc(33.3333333333% - 4rem);
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  footer .footer-inner .footer-bottom .flex .col02 .footer__nav > ul {
    width: 46%;
  }
}
@media (max-width: 575px) {
  footer .footer-inner .footer-bottom .flex .col02 .footer__nav > ul {
    width: 100%;
  }
}
footer .footer-inner .footer-bottom .flex .col02 .footer__nav > ul > li > a {
  position: relative;
  padding: 0.8rem 0 0.8rem 4.3rem;
  text-decoration: none;
  color: #1F1F1F;
  font-weight: 600;
}
footer .footer-inner .footer-bottom .flex .col02 .footer__nav > ul > li > a:before {
  content: "";
  display: block;
  position: absolute;
  top: 1.8rem;
  left: 1.6rem;
  color: #1F1F1F;
  background: #1F1F1F;
  width: 16px;
  height: 1px;
}
footer .footer-inner .footer-bottom .flex .col02 .footer__nav > ul > li > .sub-menu a {
  position: relative;
  padding: 0.5rem 0 0.5rem 4.5rem;
  text-decoration: none;
  color: #1F1F1F;
  font-size: 1.4rem;
  font-weight: 400;
}
footer .footer-inner .footer-bottom .sns {
  display: flex;
  gap: 1.5rem;
  justify-content: end;
}
@media (max-width: 767px) {
  footer .footer-inner .footer-bottom .sns {
    justify-content: center;
  }
}
footer .footer-inner .footer-bottom .sns a {
  text-decoration: none;
  max-width: 34px;
}
footer .footer-inner .footer-bottom .copy {
  margin-top: 3rem;
  font-size: 1.2rem;
  text-align: center;
}

.fixed-parts--footer {
  display: none;
}
@media (max-width: 767px) {
  .fixed-parts--footer {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px;
  }
}
.fixed-parts--footer__btn {
  display: flex;
}
.fixed-parts--footer__btn-btn {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fixed-parts--footer__btn-btn a {
  text-decoration: none;
  color: #FFF;
  text-align: center;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 1.6rem;
  font-weight: 600;
}
.fixed-parts--footer__btn .btn-01 {
  background-color: #0C399E;
}
.fixed-parts--footer__btn .btn-02 {
  background-color: #092C79;
}

#markerobo-form_input_zi_liao_qi29_submit {
  max-width: 587px;
  width: 100%;
  margin: 5rem auto 0 auto;
  font-size: 2rem;
  color: #0A379D;
  font-weight: bold;
  border: 1px solid #0A379D;
  border-radius: 5px;
  background: #fff;
  /* 背景を白に */
  text-decoration: none;
  display: block;
  padding: 3rem 2.5rem;
  text-align: center;
  cursor: pointer;
}

#markerobo-form_input_otoiawasefo-mu-test1_song_xin {
  max-width: 587px;
  width: 100%;
  margin: 5rem auto 0 auto;
  font-size: 2rem;
  color: #0A379D;
  font-weight: bold;
  border: 1px solid #0A379D;
  border-radius: 5px;
  background: #fff;
  /* 背景を白に */
  text-decoration: none;
  display: block;
  padding: 3rem 2.5rem;
  text-align: center;
  cursor: pointer;
}

.markerobo-form-wrapper {
  max-width: none !important;
}/*# sourceMappingURL=style.css.map */