/* 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 #cccccc;
  margin: 1em 0;
  padding: 0;
}

::-moz-selection {
  background-color: #E5EDD3;
  color: #7D9A3F;
}

::selection {
  background-color: #E5EDD3;
  color: #7D9A3F;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

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

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

/* link
-----------------------------------------------------*/
a {
  color: #2C2416;
}
a:hover, a:active, a:focus {
  color: #7D9A3F;
}
a {
  transition: 0.3s linear;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

ol {
  padding-left: 1em;
}

.float-l {
  float: left;
}

.float-r {
  float: right;
}

.en {
  font-family: "EB Garamond", serif;
}

.mincho {
  font-family: "Shippori Mincho", 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;
}

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

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

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

.pos-r {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {
  .mt-0-xl {
    margin-top: 0rem !important;
  }
  .pt-0-xl {
    padding-top: 0rem !important;
  }
  .mb-0-xl {
    margin-bottom: 0rem !important;
  }
  .pb-0-xl {
    padding-bottom: 0rem !important;
  }
  .ml-0-xl {
    margin-left: 0rem !important;
  }
  .pl-0-xl {
    padding-left: 0rem !important;
  }
  .mr-0-xl {
    margin-right: 0rem !important;
  }
  .pr-0-xl {
    padding-right: 0rem !important;
  }
  .mt-10-xl {
    margin-top: 1rem !important;
  }
  .pt-10-xl {
    padding-top: 1rem !important;
  }
  .mb-10-xl {
    margin-bottom: 1rem !important;
  }
  .pb-10-xl {
    padding-bottom: 1rem !important;
  }
  .ml-10-xl {
    margin-left: 1rem !important;
  }
  .pl-10-xl {
    padding-left: 1rem !important;
  }
  .mr-10-xl {
    margin-right: 1rem !important;
  }
  .pr-10-xl {
    padding-right: 1rem !important;
  }
  .mt-15-xl {
    margin-top: 1.5rem !important;
  }
  .pt-15-xl {
    padding-top: 1.5rem !important;
  }
  .mb-15-xl {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-xl {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-xl {
    margin-left: 1.5rem !important;
  }
  .pl-15-xl {
    padding-left: 1.5rem !important;
  }
  .mr-15-xl {
    margin-right: 1.5rem !important;
  }
  .pr-15-xl {
    padding-right: 1.5rem !important;
  }
  .mt-20-xl {
    margin-top: 2rem !important;
  }
  .pt-20-xl {
    padding-top: 2rem !important;
  }
  .mb-20-xl {
    margin-bottom: 2rem !important;
  }
  .pb-20-xl {
    padding-bottom: 2rem !important;
  }
  .ml-20-xl {
    margin-left: 2rem !important;
  }
  .pl-20-xl {
    padding-left: 2rem !important;
  }
  .mr-20-xl {
    margin-right: 2rem !important;
  }
  .pr-20-xl {
    padding-right: 2rem !important;
  }
  .mt-25-xl {
    margin-top: 2.5rem !important;
  }
  .pt-25-xl {
    padding-top: 2.5rem !important;
  }
  .mb-25-xl {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-xl {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-xl {
    margin-left: 2.5rem !important;
  }
  .pl-25-xl {
    padding-left: 2.5rem !important;
  }
  .mr-25-xl {
    margin-right: 2.5rem !important;
  }
  .pr-25-xl {
    padding-right: 2.5rem !important;
  }
  .mt-30-xl {
    margin-top: 3rem !important;
  }
  .pt-30-xl {
    padding-top: 3rem !important;
  }
  .mb-30-xl {
    margin-bottom: 3rem !important;
  }
  .pb-30-xl {
    padding-bottom: 3rem !important;
  }
  .ml-30-xl {
    margin-left: 3rem !important;
  }
  .pl-30-xl {
    padding-left: 3rem !important;
  }
  .mr-30-xl {
    margin-right: 3rem !important;
  }
  .pr-30-xl {
    padding-right: 3rem !important;
  }
  .mt-35-xl {
    margin-top: 3.5rem !important;
  }
  .pt-35-xl {
    padding-top: 3.5rem !important;
  }
  .mb-35-xl {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-xl {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-xl {
    margin-left: 3.5rem !important;
  }
  .pl-35-xl {
    padding-left: 3.5rem !important;
  }
  .mr-35-xl {
    margin-right: 3.5rem !important;
  }
  .pr-35-xl {
    padding-right: 3.5rem !important;
  }
  .mt-40-xl {
    margin-top: 4rem !important;
  }
  .pt-40-xl {
    padding-top: 4rem !important;
  }
  .mb-40-xl {
    margin-bottom: 4rem !important;
  }
  .pb-40-xl {
    padding-bottom: 4rem !important;
  }
  .ml-40-xl {
    margin-left: 4rem !important;
  }
  .pl-40-xl {
    padding-left: 4rem !important;
  }
  .mr-40-xl {
    margin-right: 4rem !important;
  }
  .pr-40-xl {
    padding-right: 4rem !important;
  }
  .mt-45-xl {
    margin-top: 4.5rem !important;
  }
  .pt-45-xl {
    padding-top: 4.5rem !important;
  }
  .mb-45-xl {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-xl {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-xl {
    margin-left: 4.5rem !important;
  }
  .pl-45-xl {
    padding-left: 4.5rem !important;
  }
  .mr-45-xl {
    margin-right: 4.5rem !important;
  }
  .pr-45-xl {
    padding-right: 4.5rem !important;
  }
  .mt-50-xl {
    margin-top: 5rem !important;
  }
  .pt-50-xl {
    padding-top: 5rem !important;
  }
  .mb-50-xl {
    margin-bottom: 5rem !important;
  }
  .pb-50-xl {
    padding-bottom: 5rem !important;
  }
  .ml-50-xl {
    margin-left: 5rem !important;
  }
  .pl-50-xl {
    padding-left: 5rem !important;
  }
  .mr-50-xl {
    margin-right: 5rem !important;
  }
  .pr-50-xl {
    padding-right: 5rem !important;
  }
  .mt-60-xl {
    margin-top: 6rem !important;
  }
  .pt-60-xl {
    padding-top: 6rem !important;
  }
  .mb-60-xl {
    margin-bottom: 6rem !important;
  }
  .pb-60-xl {
    padding-bottom: 6rem !important;
  }
  .ml-60-xl {
    margin-left: 6rem !important;
  }
  .pl-60-xl {
    padding-left: 6rem !important;
  }
  .mr-60-xl {
    margin-right: 6rem !important;
  }
  .pr-60-xl {
    padding-right: 6rem !important;
  }
  .mt-70-xl {
    margin-top: 7rem !important;
  }
  .pt-70-xl {
    padding-top: 7rem !important;
  }
  .mb-70-xl {
    margin-bottom: 7rem !important;
  }
  .pb-70-xl {
    padding-bottom: 7rem !important;
  }
  .ml-70-xl {
    margin-left: 7rem !important;
  }
  .pl-70-xl {
    padding-left: 7rem !important;
  }
  .mr-70-xl {
    margin-right: 7rem !important;
  }
  .pr-70-xl {
    padding-right: 7rem !important;
  }
  .mt-80-xl {
    margin-top: 8rem !important;
  }
  .pt-80-xl {
    padding-top: 8rem !important;
  }
  .mb-80-xl {
    margin-bottom: 8rem !important;
  }
  .pb-80-xl {
    padding-bottom: 8rem !important;
  }
  .ml-80-xl {
    margin-left: 8rem !important;
  }
  .pl-80-xl {
    padding-left: 8rem !important;
  }
  .mr-80-xl {
    margin-right: 8rem !important;
  }
  .pr-80-xl {
    padding-right: 8rem !important;
  }
  .mt-100-xl {
    margin-top: 10rem !important;
  }
  .pt-100-xl {
    padding-top: 10rem !important;
  }
  .mb-100-xl {
    margin-bottom: 10rem !important;
  }
  .pb-100-xl {
    padding-bottom: 10rem !important;
  }
  .ml-100-xl {
    margin-left: 10rem !important;
  }
  .pl-100-xl {
    padding-left: 10rem !important;
  }
  .mr-100-xl {
    margin-right: 10rem !important;
  }
  .pr-100-xl {
    padding-right: 10rem !important;
  }
}
@media (max-width: 1023px) {
  .mt-0-lg {
    margin-top: 0rem !important;
  }
  .pt-0-lg {
    padding-top: 0rem !important;
  }
  .mb-0-lg {
    margin-bottom: 0rem !important;
  }
  .pb-0-lg {
    padding-bottom: 0rem !important;
  }
  .ml-0-lg {
    margin-left: 0rem !important;
  }
  .pl-0-lg {
    padding-left: 0rem !important;
  }
  .mr-0-lg {
    margin-right: 0rem !important;
  }
  .pr-0-lg {
    padding-right: 0rem !important;
  }
  .mt-10-lg {
    margin-top: 1rem !important;
  }
  .pt-10-lg {
    padding-top: 1rem !important;
  }
  .mb-10-lg {
    margin-bottom: 1rem !important;
  }
  .pb-10-lg {
    padding-bottom: 1rem !important;
  }
  .ml-10-lg {
    margin-left: 1rem !important;
  }
  .pl-10-lg {
    padding-left: 1rem !important;
  }
  .mr-10-lg {
    margin-right: 1rem !important;
  }
  .pr-10-lg {
    padding-right: 1rem !important;
  }
  .mt-15-lg {
    margin-top: 1.5rem !important;
  }
  .pt-15-lg {
    padding-top: 1.5rem !important;
  }
  .mb-15-lg {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-lg {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-lg {
    margin-left: 1.5rem !important;
  }
  .pl-15-lg {
    padding-left: 1.5rem !important;
  }
  .mr-15-lg {
    margin-right: 1.5rem !important;
  }
  .pr-15-lg {
    padding-right: 1.5rem !important;
  }
  .mt-20-lg {
    margin-top: 2rem !important;
  }
  .pt-20-lg {
    padding-top: 2rem !important;
  }
  .mb-20-lg {
    margin-bottom: 2rem !important;
  }
  .pb-20-lg {
    padding-bottom: 2rem !important;
  }
  .ml-20-lg {
    margin-left: 2rem !important;
  }
  .pl-20-lg {
    padding-left: 2rem !important;
  }
  .mr-20-lg {
    margin-right: 2rem !important;
  }
  .pr-20-lg {
    padding-right: 2rem !important;
  }
  .mt-25-lg {
    margin-top: 2.5rem !important;
  }
  .pt-25-lg {
    padding-top: 2.5rem !important;
  }
  .mb-25-lg {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-lg {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-lg {
    margin-left: 2.5rem !important;
  }
  .pl-25-lg {
    padding-left: 2.5rem !important;
  }
  .mr-25-lg {
    margin-right: 2.5rem !important;
  }
  .pr-25-lg {
    padding-right: 2.5rem !important;
  }
  .mt-30-lg {
    margin-top: 3rem !important;
  }
  .pt-30-lg {
    padding-top: 3rem !important;
  }
  .mb-30-lg {
    margin-bottom: 3rem !important;
  }
  .pb-30-lg {
    padding-bottom: 3rem !important;
  }
  .ml-30-lg {
    margin-left: 3rem !important;
  }
  .pl-30-lg {
    padding-left: 3rem !important;
  }
  .mr-30-lg {
    margin-right: 3rem !important;
  }
  .pr-30-lg {
    padding-right: 3rem !important;
  }
  .mt-35-lg {
    margin-top: 3.5rem !important;
  }
  .pt-35-lg {
    padding-top: 3.5rem !important;
  }
  .mb-35-lg {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-lg {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-lg {
    margin-left: 3.5rem !important;
  }
  .pl-35-lg {
    padding-left: 3.5rem !important;
  }
  .mr-35-lg {
    margin-right: 3.5rem !important;
  }
  .pr-35-lg {
    padding-right: 3.5rem !important;
  }
  .mt-40-lg {
    margin-top: 4rem !important;
  }
  .pt-40-lg {
    padding-top: 4rem !important;
  }
  .mb-40-lg {
    margin-bottom: 4rem !important;
  }
  .pb-40-lg {
    padding-bottom: 4rem !important;
  }
  .ml-40-lg {
    margin-left: 4rem !important;
  }
  .pl-40-lg {
    padding-left: 4rem !important;
  }
  .mr-40-lg {
    margin-right: 4rem !important;
  }
  .pr-40-lg {
    padding-right: 4rem !important;
  }
  .mt-45-lg {
    margin-top: 4.5rem !important;
  }
  .pt-45-lg {
    padding-top: 4.5rem !important;
  }
  .mb-45-lg {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-lg {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-lg {
    margin-left: 4.5rem !important;
  }
  .pl-45-lg {
    padding-left: 4.5rem !important;
  }
  .mr-45-lg {
    margin-right: 4.5rem !important;
  }
  .pr-45-lg {
    padding-right: 4.5rem !important;
  }
  .mt-50-lg {
    margin-top: 5rem !important;
  }
  .pt-50-lg {
    padding-top: 5rem !important;
  }
  .mb-50-lg {
    margin-bottom: 5rem !important;
  }
  .pb-50-lg {
    padding-bottom: 5rem !important;
  }
  .ml-50-lg {
    margin-left: 5rem !important;
  }
  .pl-50-lg {
    padding-left: 5rem !important;
  }
  .mr-50-lg {
    margin-right: 5rem !important;
  }
  .pr-50-lg {
    padding-right: 5rem !important;
  }
  .mt-60-lg {
    margin-top: 6rem !important;
  }
  .pt-60-lg {
    padding-top: 6rem !important;
  }
  .mb-60-lg {
    margin-bottom: 6rem !important;
  }
  .pb-60-lg {
    padding-bottom: 6rem !important;
  }
  .ml-60-lg {
    margin-left: 6rem !important;
  }
  .pl-60-lg {
    padding-left: 6rem !important;
  }
  .mr-60-lg {
    margin-right: 6rem !important;
  }
  .pr-60-lg {
    padding-right: 6rem !important;
  }
  .mt-70-lg {
    margin-top: 7rem !important;
  }
  .pt-70-lg {
    padding-top: 7rem !important;
  }
  .mb-70-lg {
    margin-bottom: 7rem !important;
  }
  .pb-70-lg {
    padding-bottom: 7rem !important;
  }
  .ml-70-lg {
    margin-left: 7rem !important;
  }
  .pl-70-lg {
    padding-left: 7rem !important;
  }
  .mr-70-lg {
    margin-right: 7rem !important;
  }
  .pr-70-lg {
    padding-right: 7rem !important;
  }
  .mt-80-lg {
    margin-top: 8rem !important;
  }
  .pt-80-lg {
    padding-top: 8rem !important;
  }
  .mb-80-lg {
    margin-bottom: 8rem !important;
  }
  .pb-80-lg {
    padding-bottom: 8rem !important;
  }
  .ml-80-lg {
    margin-left: 8rem !important;
  }
  .pl-80-lg {
    padding-left: 8rem !important;
  }
  .mr-80-lg {
    margin-right: 8rem !important;
  }
  .pr-80-lg {
    padding-right: 8rem !important;
  }
  .mt-100-lg {
    margin-top: 10rem !important;
  }
  .pt-100-lg {
    padding-top: 10rem !important;
  }
  .mb-100-lg {
    margin-bottom: 10rem !important;
  }
  .pb-100-lg {
    padding-bottom: 10rem !important;
  }
  .ml-100-lg {
    margin-left: 10rem !important;
  }
  .pl-100-lg {
    padding-left: 10rem !important;
  }
  .mr-100-lg {
    margin-right: 10rem !important;
  }
  .pr-100-lg {
    padding-right: 10rem !important;
  }
}
@media (max-width: 767px) {
  .mt-0-md {
    margin-top: 0rem !important;
  }
  .pt-0-md {
    padding-top: 0rem !important;
  }
  .mb-0-md {
    margin-bottom: 0rem !important;
  }
  .pb-0-md {
    padding-bottom: 0rem !important;
  }
  .ml-0-md {
    margin-left: 0rem !important;
  }
  .pl-0-md {
    padding-left: 0rem !important;
  }
  .mr-0-md {
    margin-right: 0rem !important;
  }
  .pr-0-md {
    padding-right: 0rem !important;
  }
  .mt-10-md {
    margin-top: 1rem !important;
  }
  .pt-10-md {
    padding-top: 1rem !important;
  }
  .mb-10-md {
    margin-bottom: 1rem !important;
  }
  .pb-10-md {
    padding-bottom: 1rem !important;
  }
  .ml-10-md {
    margin-left: 1rem !important;
  }
  .pl-10-md {
    padding-left: 1rem !important;
  }
  .mr-10-md {
    margin-right: 1rem !important;
  }
  .pr-10-md {
    padding-right: 1rem !important;
  }
  .mt-15-md {
    margin-top: 1.5rem !important;
  }
  .pt-15-md {
    padding-top: 1.5rem !important;
  }
  .mb-15-md {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-md {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-md {
    margin-left: 1.5rem !important;
  }
  .pl-15-md {
    padding-left: 1.5rem !important;
  }
  .mr-15-md {
    margin-right: 1.5rem !important;
  }
  .pr-15-md {
    padding-right: 1.5rem !important;
  }
  .mt-20-md {
    margin-top: 2rem !important;
  }
  .pt-20-md {
    padding-top: 2rem !important;
  }
  .mb-20-md {
    margin-bottom: 2rem !important;
  }
  .pb-20-md {
    padding-bottom: 2rem !important;
  }
  .ml-20-md {
    margin-left: 2rem !important;
  }
  .pl-20-md {
    padding-left: 2rem !important;
  }
  .mr-20-md {
    margin-right: 2rem !important;
  }
  .pr-20-md {
    padding-right: 2rem !important;
  }
  .mt-25-md {
    margin-top: 2.5rem !important;
  }
  .pt-25-md {
    padding-top: 2.5rem !important;
  }
  .mb-25-md {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-md {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-md {
    margin-left: 2.5rem !important;
  }
  .pl-25-md {
    padding-left: 2.5rem !important;
  }
  .mr-25-md {
    margin-right: 2.5rem !important;
  }
  .pr-25-md {
    padding-right: 2.5rem !important;
  }
  .mt-30-md {
    margin-top: 3rem !important;
  }
  .pt-30-md {
    padding-top: 3rem !important;
  }
  .mb-30-md {
    margin-bottom: 3rem !important;
  }
  .pb-30-md {
    padding-bottom: 3rem !important;
  }
  .ml-30-md {
    margin-left: 3rem !important;
  }
  .pl-30-md {
    padding-left: 3rem !important;
  }
  .mr-30-md {
    margin-right: 3rem !important;
  }
  .pr-30-md {
    padding-right: 3rem !important;
  }
  .mt-35-md {
    margin-top: 3.5rem !important;
  }
  .pt-35-md {
    padding-top: 3.5rem !important;
  }
  .mb-35-md {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-md {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-md {
    margin-left: 3.5rem !important;
  }
  .pl-35-md {
    padding-left: 3.5rem !important;
  }
  .mr-35-md {
    margin-right: 3.5rem !important;
  }
  .pr-35-md {
    padding-right: 3.5rem !important;
  }
  .mt-40-md {
    margin-top: 4rem !important;
  }
  .pt-40-md {
    padding-top: 4rem !important;
  }
  .mb-40-md {
    margin-bottom: 4rem !important;
  }
  .pb-40-md {
    padding-bottom: 4rem !important;
  }
  .ml-40-md {
    margin-left: 4rem !important;
  }
  .pl-40-md {
    padding-left: 4rem !important;
  }
  .mr-40-md {
    margin-right: 4rem !important;
  }
  .pr-40-md {
    padding-right: 4rem !important;
  }
  .mt-45-md {
    margin-top: 4.5rem !important;
  }
  .pt-45-md {
    padding-top: 4.5rem !important;
  }
  .mb-45-md {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-md {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-md {
    margin-left: 4.5rem !important;
  }
  .pl-45-md {
    padding-left: 4.5rem !important;
  }
  .mr-45-md {
    margin-right: 4.5rem !important;
  }
  .pr-45-md {
    padding-right: 4.5rem !important;
  }
  .mt-50-md {
    margin-top: 5rem !important;
  }
  .pt-50-md {
    padding-top: 5rem !important;
  }
  .mb-50-md {
    margin-bottom: 5rem !important;
  }
  .pb-50-md {
    padding-bottom: 5rem !important;
  }
  .ml-50-md {
    margin-left: 5rem !important;
  }
  .pl-50-md {
    padding-left: 5rem !important;
  }
  .mr-50-md {
    margin-right: 5rem !important;
  }
  .pr-50-md {
    padding-right: 5rem !important;
  }
  .mt-60-md {
    margin-top: 6rem !important;
  }
  .pt-60-md {
    padding-top: 6rem !important;
  }
  .mb-60-md {
    margin-bottom: 6rem !important;
  }
  .pb-60-md {
    padding-bottom: 6rem !important;
  }
  .ml-60-md {
    margin-left: 6rem !important;
  }
  .pl-60-md {
    padding-left: 6rem !important;
  }
  .mr-60-md {
    margin-right: 6rem !important;
  }
  .pr-60-md {
    padding-right: 6rem !important;
  }
  .mt-70-md {
    margin-top: 7rem !important;
  }
  .pt-70-md {
    padding-top: 7rem !important;
  }
  .mb-70-md {
    margin-bottom: 7rem !important;
  }
  .pb-70-md {
    padding-bottom: 7rem !important;
  }
  .ml-70-md {
    margin-left: 7rem !important;
  }
  .pl-70-md {
    padding-left: 7rem !important;
  }
  .mr-70-md {
    margin-right: 7rem !important;
  }
  .pr-70-md {
    padding-right: 7rem !important;
  }
  .mt-80-md {
    margin-top: 8rem !important;
  }
  .pt-80-md {
    padding-top: 8rem !important;
  }
  .mb-80-md {
    margin-bottom: 8rem !important;
  }
  .pb-80-md {
    padding-bottom: 8rem !important;
  }
  .ml-80-md {
    margin-left: 8rem !important;
  }
  .pl-80-md {
    padding-left: 8rem !important;
  }
  .mr-80-md {
    margin-right: 8rem !important;
  }
  .pr-80-md {
    padding-right: 8rem !important;
  }
  .mt-100-md {
    margin-top: 10rem !important;
  }
  .pt-100-md {
    padding-top: 10rem !important;
  }
  .mb-100-md {
    margin-bottom: 10rem !important;
  }
  .pb-100-md {
    padding-bottom: 10rem !important;
  }
  .ml-100-md {
    margin-left: 10rem !important;
  }
  .pl-100-md {
    padding-left: 10rem !important;
  }
  .mr-100-md {
    margin-right: 10rem !important;
  }
  .pr-100-md {
    padding-right: 10rem !important;
  }
}
@media (max-width: 575px) {
  .mt-0-sm {
    margin-top: 0rem !important;
  }
  .pt-0-sm {
    padding-top: 0rem !important;
  }
  .mb-0-sm {
    margin-bottom: 0rem !important;
  }
  .pb-0-sm {
    padding-bottom: 0rem !important;
  }
  .ml-0-sm {
    margin-left: 0rem !important;
  }
  .pl-0-sm {
    padding-left: 0rem !important;
  }
  .mr-0-sm {
    margin-right: 0rem !important;
  }
  .pr-0-sm {
    padding-right: 0rem !important;
  }
  .mt-10-sm {
    margin-top: 1rem !important;
  }
  .pt-10-sm {
    padding-top: 1rem !important;
  }
  .mb-10-sm {
    margin-bottom: 1rem !important;
  }
  .pb-10-sm {
    padding-bottom: 1rem !important;
  }
  .ml-10-sm {
    margin-left: 1rem !important;
  }
  .pl-10-sm {
    padding-left: 1rem !important;
  }
  .mr-10-sm {
    margin-right: 1rem !important;
  }
  .pr-10-sm {
    padding-right: 1rem !important;
  }
  .mt-15-sm {
    margin-top: 1.5rem !important;
  }
  .pt-15-sm {
    padding-top: 1.5rem !important;
  }
  .mb-15-sm {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-sm {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-sm {
    margin-left: 1.5rem !important;
  }
  .pl-15-sm {
    padding-left: 1.5rem !important;
  }
  .mr-15-sm {
    margin-right: 1.5rem !important;
  }
  .pr-15-sm {
    padding-right: 1.5rem !important;
  }
  .mt-20-sm {
    margin-top: 2rem !important;
  }
  .pt-20-sm {
    padding-top: 2rem !important;
  }
  .mb-20-sm {
    margin-bottom: 2rem !important;
  }
  .pb-20-sm {
    padding-bottom: 2rem !important;
  }
  .ml-20-sm {
    margin-left: 2rem !important;
  }
  .pl-20-sm {
    padding-left: 2rem !important;
  }
  .mr-20-sm {
    margin-right: 2rem !important;
  }
  .pr-20-sm {
    padding-right: 2rem !important;
  }
  .mt-25-sm {
    margin-top: 2.5rem !important;
  }
  .pt-25-sm {
    padding-top: 2.5rem !important;
  }
  .mb-25-sm {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-sm {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-sm {
    margin-left: 2.5rem !important;
  }
  .pl-25-sm {
    padding-left: 2.5rem !important;
  }
  .mr-25-sm {
    margin-right: 2.5rem !important;
  }
  .pr-25-sm {
    padding-right: 2.5rem !important;
  }
  .mt-30-sm {
    margin-top: 3rem !important;
  }
  .pt-30-sm {
    padding-top: 3rem !important;
  }
  .mb-30-sm {
    margin-bottom: 3rem !important;
  }
  .pb-30-sm {
    padding-bottom: 3rem !important;
  }
  .ml-30-sm {
    margin-left: 3rem !important;
  }
  .pl-30-sm {
    padding-left: 3rem !important;
  }
  .mr-30-sm {
    margin-right: 3rem !important;
  }
  .pr-30-sm {
    padding-right: 3rem !important;
  }
  .mt-35-sm {
    margin-top: 3.5rem !important;
  }
  .pt-35-sm {
    padding-top: 3.5rem !important;
  }
  .mb-35-sm {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-sm {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-sm {
    margin-left: 3.5rem !important;
  }
  .pl-35-sm {
    padding-left: 3.5rem !important;
  }
  .mr-35-sm {
    margin-right: 3.5rem !important;
  }
  .pr-35-sm {
    padding-right: 3.5rem !important;
  }
  .mt-40-sm {
    margin-top: 4rem !important;
  }
  .pt-40-sm {
    padding-top: 4rem !important;
  }
  .mb-40-sm {
    margin-bottom: 4rem !important;
  }
  .pb-40-sm {
    padding-bottom: 4rem !important;
  }
  .ml-40-sm {
    margin-left: 4rem !important;
  }
  .pl-40-sm {
    padding-left: 4rem !important;
  }
  .mr-40-sm {
    margin-right: 4rem !important;
  }
  .pr-40-sm {
    padding-right: 4rem !important;
  }
  .mt-45-sm {
    margin-top: 4.5rem !important;
  }
  .pt-45-sm {
    padding-top: 4.5rem !important;
  }
  .mb-45-sm {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-sm {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-sm {
    margin-left: 4.5rem !important;
  }
  .pl-45-sm {
    padding-left: 4.5rem !important;
  }
  .mr-45-sm {
    margin-right: 4.5rem !important;
  }
  .pr-45-sm {
    padding-right: 4.5rem !important;
  }
  .mt-50-sm {
    margin-top: 5rem !important;
  }
  .pt-50-sm {
    padding-top: 5rem !important;
  }
  .mb-50-sm {
    margin-bottom: 5rem !important;
  }
  .pb-50-sm {
    padding-bottom: 5rem !important;
  }
  .ml-50-sm {
    margin-left: 5rem !important;
  }
  .pl-50-sm {
    padding-left: 5rem !important;
  }
  .mr-50-sm {
    margin-right: 5rem !important;
  }
  .pr-50-sm {
    padding-right: 5rem !important;
  }
  .mt-60-sm {
    margin-top: 6rem !important;
  }
  .pt-60-sm {
    padding-top: 6rem !important;
  }
  .mb-60-sm {
    margin-bottom: 6rem !important;
  }
  .pb-60-sm {
    padding-bottom: 6rem !important;
  }
  .ml-60-sm {
    margin-left: 6rem !important;
  }
  .pl-60-sm {
    padding-left: 6rem !important;
  }
  .mr-60-sm {
    margin-right: 6rem !important;
  }
  .pr-60-sm {
    padding-right: 6rem !important;
  }
  .mt-70-sm {
    margin-top: 7rem !important;
  }
  .pt-70-sm {
    padding-top: 7rem !important;
  }
  .mb-70-sm {
    margin-bottom: 7rem !important;
  }
  .pb-70-sm {
    padding-bottom: 7rem !important;
  }
  .ml-70-sm {
    margin-left: 7rem !important;
  }
  .pl-70-sm {
    padding-left: 7rem !important;
  }
  .mr-70-sm {
    margin-right: 7rem !important;
  }
  .pr-70-sm {
    padding-right: 7rem !important;
  }
  .mt-80-sm {
    margin-top: 8rem !important;
  }
  .pt-80-sm {
    padding-top: 8rem !important;
  }
  .mb-80-sm {
    margin-bottom: 8rem !important;
  }
  .pb-80-sm {
    padding-bottom: 8rem !important;
  }
  .ml-80-sm {
    margin-left: 8rem !important;
  }
  .pl-80-sm {
    padding-left: 8rem !important;
  }
  .mr-80-sm {
    margin-right: 8rem !important;
  }
  .pr-80-sm {
    padding-right: 8rem !important;
  }
  .mt-100-sm {
    margin-top: 10rem !important;
  }
  .pt-100-sm {
    padding-top: 10rem !important;
  }
  .mb-100-sm {
    margin-bottom: 10rem !important;
  }
  .pb-100-sm {
    padding-bottom: 10rem !important;
  }
  .ml-100-sm {
    margin-left: 10rem !important;
  }
  .pl-100-sm {
    padding-left: 10rem !important;
  }
  .mr-100-sm {
    margin-right: 10rem !important;
  }
  .pr-100-sm {
    padding-right: 10rem !important;
  }
}
/*header
-----------------------------------------------------*/
.header-top_text {
  background-color: #9AB55E;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  padding: 0.6rem 1rem;
  font-weight: bold;
}
@media (max-width: 1023px) {
  .header-top_text {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
}
@media (max-width: 767px) {
  .header-top_text {
    display: none;
  }
}

.header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100000;
}

header {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
  background-color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 1023px) {
  header {
    padding: 0;
  }
}
header.menu-open {
  background-color: rgb(245, 240, 232);
}

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

.header-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem 1.8rem;
}
@media (max-width: 1023px) {
  .header-box {
    height: 50px;
    padding: 0;
  }
}
.header-box .logo {
  z-index: 100000;
}
@media (max-width: 1023px) {
  .header-box .logo {
    padding-left: 1.5rem;
  }
}
.header-box .logo img {
  width: 186px;
}
@media (max-width: 1023px) {
  .header-box .logo img {
    width: 120px;
  }
}
.header-box .logo a {
  display: flex;
  align-items: center;
}
.header-box .logo a:hover {
  opacity: 1;
}
.header-box .sm-nav {
  display: none;
}
@media (max-width: 1023px) {
  .header-box .sm-nav {
    display: block;
  }
}
.header-box .header-r-box {
  display: flex;
  align-items: flex-end;
  align-items: center;
  gap: 4rem;
}
.header-box .header-tel {
  width: 280px;
  height: 60px;
}
@media (max-width: 1023px) {
  .header-box .header-tel {
    display: none;
  }
}
.header-box .header-tel-btn {
  display: block;
  line-height: 0;
  text-decoration: none;
}
.header-box .header-tel-btn:hover {
  opacity: 0.6;
}
.header-box .header-tel-btn img {
  width: 100%;
  height: auto;
  display: block;
}
.header-box .header-cta-sm {
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.header-box .header-cta-sm-TELbtn {
  display: block;
  line-height: 0;
  text-decoration: none;
  width: 100%;
  margin-bottom: 2rem;
}
.header-box .header-cta-sm-TELbtn img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  max-width: 400px;
}
.header-box .header-cta-sm .line_btn {
  color: #fff;
  background-color: #7D9A3F;
}
.header-box .header-cta-sm .line_btn::before {
  background: url("../images/line_img_white.svg") no-repeat top center/contain;
}
.header-box .header-cta-sm-btn_contact {
  width: 100%;
  display: flex;
  margin: 0 auto;
  font-size: 1.6rem;
  letter-spacing: 1px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 1.5rem 0;
  gap: 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  background-color: #7D9A3F;
}
.header-box .header-cta-sm-btn_contact::before {
  content: "";
  display: block;
  width: 22px;
  height: 18px;
  background: url("../images/contact_img_white.svg") no-repeat center/contain;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .header-box .header-cta-sm-btn_contact::before {
    width: 21px;
    height: 17px;
  }
}
@media (max-width: 1023px) {
  .header-box .pc-nav {
    display: none;
  }
}
.header-box .pc-nav ul {
  display: flex;
  gap: 3rem;
}
.header-box .pc-nav ul a {
  text-decoration: none;
  font-weight: bold;
}

/*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: #2C2416;
  position: fixed;
  display: block;
}
.sm-nav__inner {
  padding: 0 2rem;
}
.sm-nav__inner a {
  display: block;
  color: #FFF;
  font-weight: 700;
  padding: 1.5rem 2rem;
  font-size: 1.6rem;
  text-decoration: none;
}
.sm-nav__inner a:hover {
  color: #B98D35;
}
.sm-nav__inner li {
  position: relative;
}
.sm-nav__inner li a {
  position: relative;
}

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

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

.hamburger_line1 {
  top: 18px;
}

.hamburger_line2 {
  top: 30px;
}

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

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

.globalMenu {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  background: rgb(245, 240, 232);
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overscroll-behavior-y: contain;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s, visibility 0.6s;
}

.nav__gnav {
  margin: 0 auto;
  padding: 1rem 2rem;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
}
.nav__gnav li {
  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;
  font-size: 1.6rem;
  padding: 1.5rem 0;
  text-decoration: none;
  display: inline-block;
}

.globalMenu.active {
  opacity: 1;
  visibility: visible;
}

/*fixed-cta
-----------------------------------------------------*/
.cta-fixed {
  display: none;
}
@media (max-width: 767px) {
  .cta-fixed {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99998;
  }
}
.cta-fixed__line.line_btn, .cta-fixed__contact.contact_btn {
  height: 55px;
  padding: 0;
}
.cta-fixed__line.line_btn {
  flex: 1;
  border-radius: 0;
  font-size: 1.5rem;
  background-color: #8BAA46;
  color: #fff;
}
.cta-fixed__line.line_btn::before {
  width: 40px;
  height: 20px;
  background: url("../images/line_img_white.svg") no-repeat top center/contain;
}
.cta-fixed__line.line_btn::after {
  top: -1.5rem;
}
@media (max-width: 767px) {
  .cta-fixed__line.line_btn::after {
    width: 100px;
    height: 24px;
  }
}
.cta-fixed__contact.contact_btn {
  flex: 1;
  border-radius: 0;
  font-size: 1.5rem;
  background-color: #7D9A3F;
  color: #fff;
}
.cta-fixed__contact.contact_btn::before {
  background: url("../images/contact_img_white.svg") no-repeat top center/contain;
}

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

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

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

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

@media (max-width: 575px) {
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    padding: 0 2rem;
  }
}
/* page-sec */
.page-sec {
  padding: 6rem 0;
}
.page-sec p + p {
  margin-top: 1.5rem;
}

.page-sec02 {
  padding: 0 0 12rem;
}
@media (max-width: 767px) {
  .page-sec02 {
    padding-bottom: 6rem;
  }
}

/*btn
-----------------------------------------------------*/
/* line */
.line_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  height: 64px;
  color: #7D9A3F;
  text-decoration: none;
  background-color: #fff;
  border-radius: 5px;
  font-size: 1.8rem;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  border: 3px solid transparent;
}
@media (max-width: 767px) {
  .line_btn {
    gap: 0.2rem;
  }
}
@media (max-width: 575px) {
  .line_btn {
    font-size: 1.6rem;
  }
}
.line_btn::before {
  content: "";
  display: block;
  width: 41px;
  height: 24px;
  background: url("../images/line_img.svg") no-repeat top center/contain;
}
@media (max-width: 767px) {
  .line_btn::before {
    width: 38px;
    height: 21px;
  }
}
.line_btn::after {
  position: absolute;
  content: "";
  display: block;
  width: 106px;
  height: 29px;
  background: url("../images/line_deco_img.svg") no-repeat top center/contain;
  top: -1.9rem;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .line_btn::after {
    width: 104px;
    height: 27px;
  }
}
@media (max-width: 575px) {
  .line_btn::after {
    width: 100px;
    height: 23px;
    top: -1.5rem;
  }
}
.line_btn:hover {
  background-color: #7D9A3F;
  border: 3px solid #fff;
  color: #fff;
}
.line_btn:hover::before {
  background-image: url("../images/line_img_white.svg");
}

/* contact */
.contact_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  height: 60px;
  color: #7D9A3F;
  text-decoration: none;
  background-color: #fff;
  border-radius: 5px;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.15rem;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  border: 3px solid transparent;
}
@media (max-width: 767px) {
  .contact_btn {
    gap: 0.5rem;
  }
}
@media (max-width: 575px) {
  .contact_btn {
    font-size: 1.6rem;
  }
}
.contact_btn::before {
  content: "";
  display: block;
  width: 24px;
  height: 20px;
  background-image: url("../images/contact_img.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .contact_btn::before {
    width: 21px;
    height: 17px;
  }
}
.contact_btn:hover {
  background-color: #7D9A3F;
  border: 3px solid #fff;
  color: #fff;
}
.contact_btn:hover::before {
  background-image: url("../images/contact_img_white.svg");
}

/*h2 ~
-----------------------------------------------------*/
.TitleBox {
  margin: 0 auto 4rem;
}
@media (max-width: 767px) {
  .TitleBox {
    margin: 0 auto 2.5rem;
  }
}
.TitleBox::before {
  content: "";
  display: block;
  width: 1px;
  height: 60px;
  background-color: #2C2416;
  margin: 0 auto 2rem;
}
@media (max-width: 767px) {
  .TitleBox::before {
    height: 40px;
    margin: 0 auto 1.5rem;
  }
}

.title-sub-text {
  color: #7D9A3F;
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
  margin-bottom: 1rem;
  letter-spacing: 1.5px;
  line-height: 1;
}
@media (max-width: 767px) {
  .title-sub-text {
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
  }
}
@media (max-width: 575px) {
  .title-sub-text {
    font-size: 1.8rem;
  }
}

h2.h2-title01 {
  color: #2C2416;
  font-size: 3.6rem;
  font-weight: bold;
  letter-spacing: 3px;
  line-height: 1.4;
  text-align: center;
  position: relative;
}
@media (max-width: 1023px) {
  h2.h2-title01 {
    font-size: 3.8rem;
    letter-spacing: 1px;
  }
}
@media (max-width: 767px) {
  h2.h2-title01 {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 575px) {
  h2.h2-title01 {
    font-size: 2.4rem;
  }
}

.TitleBox__LeadText {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
}
@media (max-width: 1023px) {
  .TitleBox__LeadText {
    font-size: 1.6rem;
  }
}

h1 + h2,
h2 + h3,
h3 + h4 {
  margin-top: 0 !important;
}

.caution {
  font-size: 1.8rem;
  color: #919191;
  margin-top: 3rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .caution {
    font-size: 1.4rem;
  }
}

p span {
  color: #7D9A3F;
  font-weight: bold;
}

/*main-v
-----------------------------------------------------*/
.main-v {
  position: relative;
  padding-top: 127px;
  max-width: 1920px;
  background-color: #F5F0E8;
}
@media (max-width: 1023px) {
  .main-v {
    padding-top: 50px;
  }
}
s .main-v__img img {
  width: 100%;
}
.main-v__tel--btn {
  position: absolute;
  left: 0;
  right: 54%;
  bottom: 8%;
  margin: auto;
  width: 30%;
}
@media (max-width: 1199px) {
  .main-v__tel--btn {
    bottom: 4%;
  }
}
@media (max-width: 1023px) {
  .main-v__tel--btn {
    bottom: 6%;
  }
}
@media (max-width: 767px) {
  .main-v__tel--btn {
    left: 0;
    right: 0;
    bottom: 42vw;
    margin: auto;
    width: 80%;
  }
}
@media (max-width: 575px) {
  .main-v__tel--btn {
    bottom: 37vw;
  }
}
.main-v__tel--btn .tel_btn {
  position: relative;
  width: 100%;
  height: 73px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: #fff;
  text-decoration: none;
  background-color: #7D9A3F;
  border-radius: 5px;
  font-size: 2.8rem;
  letter-spacing: 0.15rem;
  border: 3px solid transparent;
  pointer-events: none;
}
@media (max-width: 1023px) {
  .main-v__tel--btn .tel_btn {
    height: 52px;
    line-height: 1;
    font-size: 2.2rem;
  }
}
@media (max-width: 767px) {
  .main-v__tel--btn .tel_btn {
    font-size: 2rem;
    pointer-events: auto;
  }
}
@media (max-width: 575px) {
  .main-v__tel--btn .tel_btn {
    height: 48px;
  }
}
.main-v__tel--btn .tel_btn:hover {
  background-color: #fff;
  border: 3px solid #7D9A3F;
  color: #7D9A3F;
}
.main-v__tel--btn .tel_btn:hover::before {
  background-image: url("../images/tel_img_accent01.svg");
}
.main-v__tel--btn .tel_btn::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("../images/tel_img.svg") no-repeat center/contain;
}
@media (max-width: 1023px) {
  .main-v__tel--btn .tel_btn::before {
    width: 17px;
    height: 17px;
  }
}
.main-v__tel--btn .tel_btn::after {
  position: absolute;
  content: "";
  display: block;
  width: 203px;
  height: 34px;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  background: url("../images/tel_deco_img.svg") no-repeat center/contain;
}
@media (max-width: 1023px) {
  .main-v__tel--btn .tel_btn::after {
    width: 190px;
    height: 21px;
    top: -8%;
  }
}
@media (max-width: 767px) {
  .main-v__tel--btn .tel_btn::after {
    width: clamp(150px, 20vw, 203px);
    height: clamp(26px, 3vw, 34px);
  }
}
@media (max-width: 767px) {
  .main-v__tel--btn .tel_btn::after {
    width: clamp(120px, 15vw, 160px);
    height: clamp(20px, 2.5vw, 28px);
  }
}

/*problem
-----------------------------------------------------*/
.problem .h2-problem-title {
  color: #2C2416;
  font-size: 3.6rem;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 2px;
}
@media (max-width: 1023px) {
  .problem .h2-problem-title {
    font-size: 2.6rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 575px) {
  .problem .h2-problem-title {
    font-size: 2rem;
  }
}
.problem_img {
  position: relative;
}
.problem_img img {
  width: 979px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .problem_img img {
    width: 100%;
  }
}
.problem_text {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .problem_text {
    margin-top: 1.5rem;
  }
}
.problem_text p {
  font-weight: bold;
  text-align: center;
  font-size: 2.2rem;
  letter-spacing: 0.2rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .problem_text p {
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
  }
}
@media (max-width: 575px) {
  .problem_text p {
    font-size: 1.6rem;
  }
}
.problem_text p:first-of-type {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .problem_text p:first-of-type {
    font-size: 1.8rem;
  }
}
@media (max-width: 575px) {
  .problem_text p:first-of-type {
    font-size: 1.6rem;
  }
}
.problem_text p span {
  color: #7D9A3F;
}

/*cta
-----------------------------------------------------*/
.cta {
  background-image: url("../images/cta_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cta_TitleText {
  text-align: center;
  color: #fff;
  margin-bottom: 4rem;
}
@media (max-width: 575px) {
  .cta_TitleText {
    margin-bottom: 3eem;
  }
}
.cta_TitleText h2 {
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 3rem;
}
@media (max-width: 1023px) {
  .cta_TitleText h2 {
    font-size: 2.6rem;
    margin-bottom: 2rem;
  }
}
.cta_TitleText p {
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .cta_TitleText p {
    font-size: 1.6rem;
  }
}
.cta_contactBox {
  display: flex;
  gap: 1rem;
}
@media (max-width: 767px) {
  .cta_contactBox {
    flex-direction: column;
    align-items: center;
  }
}

/*risk
-----------------------------------------------------*/
.risk {
  background-image: url("../images/risk_bg_img.png");
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
}
.risk .TitleBox .title-sub-text {
  color: #318090;
}
.risk_LeadText {
  text-align: center;
  font-weight: bold;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .risk_LeadText {
    margin-bottom: 3rem;
  }
}
.risk_LeadText p {
  margin-bottom: 1.5rem;
  line-height: 2.2;
}
@media (max-width: 767px) {
  .risk_LeadText p {
    margin-bottom: 1rem;
    line-height: 1.9;
  }
}
.risk_LeadText p:last-child {
  margin-bottom: 0;
}
.risk_LeadText p span {
  color: #318090;
}
.risk_list {
  background-color: #fff;
  padding: 4rem 6rem 5rem;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .risk_list {
    padding: 2.5rem 2rem;
  }
}
.risk_list .risk_item {
  margin-bottom: 4rem;
}
.risk_list .risk_item:last-child {
  margin-bottom: 0;
}
.risk_list .risk_item__head {
  text-align: center;
  position: relative;
  border-bottom: 2px solid #318090;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 1023px) {
  .risk_list .risk_item__head {
    padding-bottom: 1.5rem;
  }
}
.risk_list .risk_item__head::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  border-right: 2px solid #318090;
  border-bottom: 2px solid #318090;
  background-color: #fff;
}
.risk_list .risk_item__head__num {
  font-size: 2.4rem;
  color: #318090;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .risk_list .risk_item__head__num {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
}
.risk_list .risk_item__head__num span {
  font-weight: 600;
  font-size: 2.6rem;
  padding-left: 0.5rem;
  color: #318090;
}
@media (max-width: 767px) {
  .risk_list .risk_item__head__num span {
    font-size: 2.4rem;
  }
}
.risk_list .risk_item__head__title {
  font-size: 2.6rem;
  font-weight: bold;
}
@media (max-width: 1023px) {
  .risk_list .risk_item__head__title {
    font-size: 2.2rem;
  }
}
@media (max-width: 767px) {
  .risk_list .risk_item__head__title {
    font-size: 2rem;
    line-height: 1.3;
  }
}
.risk_list .risk_item__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}
@media (max-width: 1023px) {
  .risk_list .risk_item__body {
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .risk_list .risk_item__body {
    flex-direction: column;
  }
}
.risk_list .risk_item__img {
  flex-shrink: 0;
  width: 42%;
}
@media (max-width: 767px) {
  .risk_list .risk_item__img {
    width: 60%;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .risk_list .risk_item__img {
    width: 80%;
  }
}
.risk_list .risk_item__img img {
  width: 100%;
  height: auto;
  display: block;
}
.risk_list .risk_item__content {
  flex: 1;
}
.risk_list .risk_item__content-title {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  color: #318090;
  background-color: #EEF7F9;
  border-radius: 5px;
  padding: 0.5rem 0;
  margin-bottom: 1.5rem;
}
@media (max-width: 1023px) {
  .risk_list .risk_item__content-title {
    font-size: 1.6rem;
  }
}
.risk_list .risk_item__content-sub {
  font-size: 1.8rem;
  font-weight: bold;
  color: #318090;
  position: relative;
  padding-left: 1.1rem;
}
@media (max-width: 1023px) {
  .risk_list .risk_item__content-sub {
    font-size: 1.6rem;
  }
}
.risk_list .risk_item__content-sub::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #318090;
}
@media (max-width: 1023px) {
  .risk_list .risk_item__content-sub::before {
    width: 4px;
    height: 4px;
  }
}
.risk_list .risk_item__content-text {
  margin: 0.5rem 0 1.5rem;
}
@media (max-width: 767px) {
  .risk_list .risk_item__content-text {
    margin: 0.5rem 0 0.5rem;
  }
}
.risk_list .risk_item__content-text:last-of-type {
  margin-bottom: 0;
}
.risk_summary-text {
  margin: 6rem auto 0;
  position: relative;
  max-width: 100%;
  width: 883px;
  height: 160px;
  padding: 3rem 0;
}
@media (max-width: 1023px) {
  .risk_summary-text {
    height: auto;
    padding: 2rem 4rem;
  }
}
@media (max-width: 767px) {
  .risk_summary-text {
    margin: 3rem auto 0;
    padding: 3rem;
  }
}
.risk_summary-text::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 38px;
  height: 54px;
  background-image: url("../images/deco_left.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.risk_summary-text::after {
  position: absolute;
  content: "";
  display: block;
  bottom: 0;
  right: 0;
  width: 38px;
  height: 54px;
  background-image: url("../images/deco_right.png");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .risk_summary-text::before, .risk_summary-text::after {
    width: 31px;
    height: 47px;
  }
}
.risk_summary-text p {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 4px;
}
@media (max-width: 1023px) {
  .risk_summary-text p {
    font-size: 2.6rem;
    line-height: 1.8;
  }
}
@media (max-width: 767px) {
  .risk_summary-text p {
    font-size: 2.2rem;
  }
}
@media (max-width: 575px) {
  .risk_summary-text p {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}
.risk_summary-text p span {
  color: #7D9A3F;
}

/*plan
-----------------------------------------------------*/
.plan .TitleBox {
  margin-bottom: 8rem;
}
@media (max-width: 1023px) {
  .plan .TitleBox {
    margin-bottom: 3rem;
  }
}
.plan .TitleBox .h2-title01 {
  margin-bottom: 3rem;
}
.plan .TitleBox .TitleBox__LeadText span {
  color: #7D9A3F;
}
.plan .TitleBox .TitleBox__LeadText .annotation {
  color: #7D9A3F;
  font-size: 1.2rem;
  vertical-align: super;
  text-decoration: none;
}
.plan_list {
  display: flex;
  align-items: stretch;
  margin-bottom: 8rem;
}
@media (max-width: 1023px) {
  .plan_list {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .plan_list {
    margin-bottom: 4rem;
  }
}
.plan_item {
  flex: 1;
  margin-left: -1px;
}
.plan_item:first-child {
  margin-left: 0;
}
@media (max-width: 1023px) {
  .plan_item {
    width: 100%;
  }
}
.plan_item__popular {
  border: 2px solid #7D9A3F;
  margin-top: -2rem;
  margin-bottom: -2rem;
  position: relative;
}
@media (max-width: 1023px) {
  .plan_item__popular {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.plan_item__popular::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 122px;
  height: 52px;
  background-image: url(../images/plan_deco.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 1023px) {
  .plan_item__popular::before {
    background-image: url(../images/plan_deco_sp.svg);
    width: 90px;
    height: 30px;
    top: 17px;
  }
}
.plan_item__popular .plan_item__head {
  background-color: #7D9A3F;
  padding-top: 3.5rem;
}
@media (max-width: 1023px) {
  .plan_item__popular .plan_item__head {
    padding-top: 6rem;
  }
}
.plan_item__popular .plan_item__head-lead, .plan_item__popular .plan_item__head-title {
  color: #fff;
}
.plan_item__popular .plan_item__price-text-unit {
  color: #7D9A3F;
}
.plan_item__popular .plan_item__price-tag .tag-label {
  color: #7D9A3F;
  border-color: #7D9A3F;
}
.plan_item__popular .plan_item__content-label {
  color: #7D9A3F;
}
@media (max-width: 1023px) {
  .plan_item__popular .plan_item__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .plan_item__popular .plan_item__list li:first-child,
  .plan_item__popular .plan_item__list .is-plus {
    grid-column: 1/-1;
  }
  .plan_item__popular .plan_item__list .is-plus {
    justify-self: center;
  }
  .plan_item__popular .plan_item__list li:first-child {
    text-align: center;
    padding-left: 0;
  }
  .plan_item__popular .plan_item__list li:first-child::before {
    position: static;
    display: inline-block;
    vertical-align: 0;
    margin-right: 1rem;
    transform: rotate(45deg);
  }
}
.plan_item__popular .plan_item__list li::before {
  border-right: 2px solid #7D9A3F;
  border-bottom: 2px solid #7D9A3F;
}
.plan_item__popular .plan_item__list li.is-plus {
  text-align: center;
  margin: 1rem auto;
  font-size: 2.5rem;
  color: #7D9A3F;
  border-bottom: none;
  padding: 0.5rem 0;
  background-color: #E5EDD3;
  width: 35px;
  height: 35px;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.plan_item__popular .plan_item__list li.is-plus::before {
  display: none;
}
.plan_item__plus .plan_item__head {
  background-color: #96B74E;
}
.plan_item__plus .plan_item__head-lead, .plan_item__plus .plan_item__head-title {
  color: #fff;
}
.plan_item__plus .plan_item__price-text-unit {
  color: #96B74E;
}
.plan_item__plus .plan_item__price-tag .tag-label {
  color: #96B74E;
  border-color: #96B74E;
}
.plan_item__plus .plan_item__content-label {
  color: #96B74E;
}
.plan_item__plus .plan_item__list li::before {
  border-right: 2px solid #96B74E;
  border-bottom: 2px solid #96B74E;
}

.plan_item {
  border: 1px solid #D6CDB8;
  border-radius: 5px;
  position: relative;
}
.plan_item__head {
  background-color: #F5F0E8;
  padding: 3rem 1.5rem;
  text-align: center;
  border-radius: 4px 4px 0 0;
  line-height: 1;
}
@media (max-width: 1023px) {
  .plan_item__head {
    padding: 2rem 1.5rem;
  }
}
.plan_item__head-lead {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media (max-width: 1023px) {
  .plan_item__head-lead {
    font-size: 1.6rem;
  }
}
.plan_item__head-title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #2C2416;
}
.plan_item__body {
  padding: 2rem 2rem 4rem 2rem;
}
@media (max-width: 1023px) {
  .plan_item__body {
    padding: 1rem 2rem 2rem;
  }
}
.plan_item__price {
  margin-bottom: 2rem;
  text-align: center;
}
@media (max-width: 1023px) {
  .plan_item__price {
    margin-bottom: 1rem;
  }
}
.plan_item__price-text {
  font-size: 2rem;
  font-weight: bold;
  color: #2C2416;
  line-height: 1;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .plan_item__price-text {
    font-size: 1.6rem;
  }
}
.plan_item__price-text-unit {
  font-size: 6.5rem;
  color: #B2944F;
  font-weight: 500;
}
@media (max-width: 767px) {
  .plan_item__price-text-unit {
    font-size: 5.7rem;
  }
}
@media (max-width: 575px) {
  .plan_item__price-text-unit {
    font-size: 5rem;
  }
}
.plan_item__price-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: bold;
}
.plan_item__price-tag .tag-label {
  font-size: 1.8rem;
  display: inline-block;
  color: #B2944F;
  border: 1px solid #B2944F;
  padding: 0.3rem 0.6rem;
  border-radius: 3px;
  line-height: 1;
  font-weight: normal;
}
@media (max-width: 767px) {
  .plan_item__price-tag .tag-label {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .plan_item__price-tag .tag-label {
    font-size: 1.4rem;
  }
}
.plan_item__content-label {
  font-size: 1.6rem;
  color: #B2944F;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 767px) {
  .plan_item__content-label {
    margin-bottom: 0;
  }
}
.plan_item__content-label::before, .plan_item__content-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #EDE6D6;
}
.plan_item__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 1023px) {
  .plan_item__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 450px;
  }
}
.plan_item__list li {
  font-size: 1.8rem;
  padding: 1rem 0 1rem 2rem;
  font-weight: bold;
  position: relative;
  line-height: 1;
}
@media (max-width: 1023px) {
  .plan_item__list li {
    font-size: 1.6rem;
    line-height: 1.5;
    padding: 1rem 0 0 2rem;
  }
}
@media (max-width: 575px) {
  .plan_item__list li {
    font-size: 1.4rem;
  }
}
.plan_item__list li:last-child {
  border-bottom: none;
}
.plan_item__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9rem;
  transform: rotate(45deg);
  width: 7px;
  height: 15px;
  border-right: 2px solid #B2944F;
  border-bottom: 2px solid #B2944F;
}
@media (max-width: 1023px) {
  .plan_item__list li::before {
    top: 1.2rem;
  }
}

.apartment_TitleBox .TitleBox__LeadText {
  color: #7D9A3F;
}
.apartment_TitleBox .TitleBox__LeadText .annotation {
  color: #7D9A3F;
  font-size: 1.2rem;
  vertical-align: super;
  text-decoration: none;
}
.apartment_TitleBox .h2-title01 span {
  font-size: 2.6rem;
  margin: 0 -0.5em;
}
@media (max-width: 767px) {
  .apartment_TitleBox .h2-title01 span {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .apartment_TitleBox .h2-title01 span {
    font-size: 1.8rem;
  }
}

.plan_item__apartment {
  max-width: 545px;
  margin: 3rem auto 0;
}
@media (max-width: 1023px) {
  .plan_item__apartment {
    max-width: 100%;
  }
}
.plan_item__apartment .plan_item__head {
  background-color: #D998A6;
  color: #fff;
}
.plan_item__apartment .plan_item__head-title {
  color: #fff !important;
}
.plan_item__apartment .plan_item__head-title {
  color: #D998A6;
}
.plan_item__apartment .tag-label {
  color: #D998A6;
  border-color: #D998A6;
}
.plan_item__apartment .plan_item__price-text-unit {
  color: #D998A6;
}
.plan_item__apartment .plan_item__price-tag .tag-label {
  color: #D998A6;
  border-color: #D998A6;
}
.plan_item__apartment .plan_item__content-label {
  color: #D998A6;
}
.plan_item__apartment__list__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}
.plan_item__apartment__list__grid li::before {
  content: "";
  border-right: 2px solid #D998A6;
  border-bottom: 2px solid #D998A6;
}
@media (max-width: 1023px) {
  .plan_item__apartment__list__grid li::before {
    top: 1.2rem;
  }
}

/*strength
-----------------------------------------------------*/
.strength {
  background-color: #F2EBD9;
  position: relative;
  overflow: hidden;
  padding: 9rem 0;
}
@media (max-width: 767px) {
  .strength {
    padding: 19rem 0 6rem;
  }
}
@media (max-width: 575px) {
  .strength {
    padding: 15rem 0 6rem;
  }
}
.strength::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  background: url("../images/strength_map.png") no-repeat left 0/50%;
}
@media (max-width: 767px) {
  .strength::before {
    left: 50%;
    top: 0;
    background: url("../images/strength_map_sp.png") no-repeat center top/65%;
    transform: translateX(-50%);
  }
}
@media (max-width: 575px) {
  .strength::before {
    background-size: 100%;
  }
}
.strength__content {
  position: relative;
  z-index: 1;
  width: 60%;
  margin-left: auto;
}
@media (max-width: 1023px) {
  .strength__content {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .strength__content {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .strength__content {
    margin-left: 0;
  }
}
.strength__item:nth-of-type(n+2) {
  margin-top: 4rem;
}
@media (max-width: 1023px) {
  .strength__item:nth-of-type(n+2) {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .strength__item:nth-of-type(n+2) {
    margin-top: 1rem;
  }
}
@media (max-width: 767px) {
  .strength__item:first-of-type {
    margin-bottom: 2rem;
  }
}
.strength__title {
  font-size: 3.2rem;
  font-weight: bold;
  color: #2C2416;
  margin-bottom: 2.2rem;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .strength__title {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 767px) {
  .strength__title {
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 575px) {
  .strength__title {
    font-size: 2rem;
  }
}
.strength__title span {
  color: #7D9A3F;
}
.strength__text p {
  font-size: 1.8rem;
  line-height: 2.3;
  font-weight: bold;
}
@media (max-width: 1023px) {
  .strength__text p {
    line-height: 2;
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .strength__text p {
    line-height: 2;
    font-size: 1.4rem;
  }
}

/*merit
-----------------------------------------------------*/
.merit {
  background-color: #F5F0E8;
}
.merit .TitleBox {
  position: relative;
  z-index: 1;
}
.merit .TitleBox::after {
  position: absolute;
  content: "";
  display: block;
  bottom: -6rem;
  right: 21rem;
  width: 334px;
  height: 136px;
  background: url("../images/Merit_title_img.svg") no-repeat center/contain;
  z-index: -1;
}
@media (max-width: 1023px) {
  .merit .TitleBox::after {
    width: 324px;
    height: 126px;
    bottom: -5rem;
    right: 10rem;
  }
}
@media (max-width: 767px) {
  .merit .TitleBox::after {
    bottom: -3rem;
  }
}
@media (max-width: 575px) {
  .merit .TitleBox::after {
    width: 304px;
    height: 106px;
    right: 50%;
    transform: translateX(50%);
  }
}

.merit-list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
@media (max-width: 767px) {
  .merit-list {
    gap: 4rem;
  }
}

.merit-item {
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 767px) {
  .merit-item {
    flex-direction: column;
    gap: 2rem;
  }
}
.merit-item__reverse {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .merit-item__reverse {
    flex-direction: column;
  }
}
.merit-item__img {
  width: 40%;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .merit-item__img {
    width: 90%;
  }
}
.merit-item__img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
}
.merit-item__content {
  flex: 1;
}
@media (max-width: 767px) {
  .merit-item__content {
    width: 100%;
  }
}
.merit-item__num {
  display: block;
  width: 132px;
  height: 24px;
  margin-bottom: 2rem;
}
@media (max-width: 1023px) {
  .merit-item__num {
    width: 127px;
    height: 19px;
  }
}
@media (max-width: 767px) {
  .merit-item__num {
    width: 112px;
    height: 4px;
    margin-bottom: 3rem;
  }
}
.merit-item__num img {
  width: 100%;
  height: auto;
  display: block;
}
.merit-item__title {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 3rem;
  line-height: 1.4;
  letter-spacing: 3px;
}
@media (max-width: 1023px) {
  .merit-item__title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 767px) {
  .merit-item__title {
    font-size: 2.2rem;
    letter-spacing: 2px;
    line-height: 1.3;
  }
}
.merit-item__text {
  line-height: 1.8;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .merit-item__text {
    font-size: 1.6rem;
  }
}
.merit-item__text span {
  color: #7D9A3F;
}

.merit-item--report {
  flex-direction: column;
  align-items: flex-start;
  gap: 4rem;
}
@media (max-width: 767px) {
  .merit-item--report {
    gap: 2.5rem;
  }
}
.merit-item__top {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: 100%;
}
@media (max-width: 767px) {
  .merit-item__top {
    flex-direction: column;
    gap: 2rem;
  }
}
.merit-item__top .merit-item__img {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .merit-item__top .merit-item__img {
    width: 80%;
  }
}
.merit-item__top .merit-item__content {
  flex: 1;
}
.merit-item__report {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
}
.merit-item__report-imgs {
  max-width: 660px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .merit-item__report-imgs {
    gap: 1rem;
  }
}
.merit-item__report-img {
  flex: 1;
}
.merit-item__report-img img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0.5rem;
  border: 1px solid #D6CDB8;
}
.merit-item__report-img p {
  display: flex;
  font-size: 1.4rem;
  align-items: flex-start;
  gap: 0.4rem;
}
@media (max-width: 767px) {
  .merit-item__report-img p {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
.merit-item__report-img p span {
  color: #7D9A3F;
  font-size: 0.8rem;
  margin-top: 0.6em;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .merit-item__report-img p span {
    font-size: 0.6rem;
    margin-top: 0.9em;
  }
}
.merit-item__report-text {
  text-align: center;
  padding: 4rem 3rem 3rem;
  border: 1px solid #E1D2BA;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 5px;
  margin-top: 6.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .merit-item__report-text {
    margin-top: 5.5rem;
    padding: 4rem 2rem 3rem;
  }
}
.merit-item__report-text::before {
  content: "";
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 67px;
  height: 67px;
  background: url("../images/report_icon.svg") no-repeat center/contain;
}
@media (max-width: 767px) {
  .merit-item__report-text::before {
    width: 60px;
    height: 60px;
    top: -30px;
  }
}
.merit-item__report-title {
  font-size: 2.6rem;
  font-weight: bold;
  color: #7D9A3F;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .merit-item__report-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}
.merit-item__report-desc {
  font-size: 1.5rem;
  line-height: 1.8;
  text-align: left;
}
@media (max-width: 767px) {
  .merit-item__report-desc {
    font-size: 1.4rem;
  }
}

/*flow
-----------------------------------------------------*/
.flow-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2rem;
  position: relative;
}
@media (max-width: 767px) {
  .flow-list {
    flex-direction: column;
  }
}
.flow-list::before {
  content: "";
  position: absolute;
  top: 26%;
  left: 50%;
  width: 86%;
  height: 5px;
  background-color: #E5EDD3;
  z-index: 0;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .flow-list::before {
    top: 70px;
    left: 103px;
    width: 3px;
    height: calc(100% - 140px);
    transform: none;
  }
}
@media (max-width: 575px) {
  .flow-list::before {
    left: 29px;
  }
}

.flow-item {
  flex: 1;
  text-align: center;
  position: relative;
}
@media (max-width: 767px) {
  .flow-item {
    width: 80%;
    display: flex;
    align-items: flex-start;
    margin: 0 auto;
    gap: 2rem;
    text-align: left;
  }
}
@media (max-width: 575px) {
  .flow-item {
    width: 100%;
    gap: 1.5rem;
  }
}
.flow-item__img {
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  margin: 0 auto 2rem;
  width: 140px;
  height: 140px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1023px) {
  .flow-item__img {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 767px) {
  .flow-item__img {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    margin: 0;
  }
}
@media (max-width: 575px) {
  .flow-item__img {
    width: 60px;
    height: 60px;
  }
}
.flow-item__img img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 767px) {
  .flow-item__content {
    flex: 1;
    margin-top: 1.5rem;
  }
}
.flow-item__title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #2C2416;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
@media (max-width: 1023px) {
  .flow-item__title {
    font-size: 2rem;
    min-height: 2.6em;
  }
}
@media (max-width: 767px) {
  .flow-item__title {
    min-height: 1em;
  }
}
@media (max-width: 575px) {
  .flow-item__title {
    font-size: 1.8rem;
  }
}
.flow-item__text {
  line-height: 1.8;
  text-align: center;
}
@media (max-width: 1023px) {
  .flow-item__text {
    font-size: 1.4rem;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .flow-item__text {
    text-align: left;
  }
}

/*message
-----------------------------------------------------*/
.message {
  background-color: #F5F0E8;
}
.message__item {
  position: relative;
  padding-bottom: 5rem;
  border-bottom: 1px solid #E1D2BA;
}
@media (max-width: 767px) {
  .message__item {
    padding-bottom: 3rem;
  }
}
.message__item:nth-of-type(n+2) {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .message__item:nth-of-type(n+2) {
    margin-top: 3rem;
  }
}
.message__item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.message__item--01 {
  z-index: 1;
}
.message__item--01::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -270px;
  transform: translateY(-50%);
  width: 542px;
  height: 811px;
  background: url("../images/message_item_bg01.png") no-repeat center/contain;
  z-index: -1;
}
.message__item--02 {
  z-index: 1;
}
.message__item--02 .message__inner {
  flex-direction: row-reverse;
  gap: 4rem;
}
@media (max-width: 767px) {
  .message__item--02 .message__inner {
    flex-direction: column;
    gap: 3rem;
  }
}
.message__item--02::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -240px;
  transform: translateY(-50%);
  width: 501px;
  height: 811px;
  background: url("../images/message_item_bg02.png") no-repeat center/contain;
  z-index: -1;
}
.message__item--03 {
  z-index: 1;
}
.message__item--03 .message__inner {
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 767px) {
  .message__item--03 .message__inner {
    gap: 2rem;
  }
}
.message__item--03 .message__img {
  width: 542px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .message__item--03 .message__img {
    width: 80%;
  }
}
@media (max-width: 575px) {
  .message__item--03 .message__img {
    width: 100%;
  }
}
.message__item--03 .message__content {
  text-align: center;
}
.message__item--03 .message__accent {
  display: inline-block;
  text-align: left;
}
.message__item--03 p {
  text-align: center;
}
@media (max-width: 767px) {
  .message__item--03 p {
    text-align: left;
  }
}
.message__item--03::before {
  content: "";
  position: absolute;
  top: 70%;
  left: -270px;
  transform: translateY(-50%);
  width: 542px;
  height: 811px;
  background: url("../images/message_item_bg01.png") no-repeat center/contain;
  z-index: -1;
}
.message__inner {
  display: flex;
  gap: 11rem;
  align-items: flex-start;
  max-width: 930px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .message__inner {
    gap: 6rem;
  }
}
@media (max-width: 767px) {
  .message__inner {
    flex-direction: column;
    gap: 2rem;
  }
}
.message__img {
  width: 100px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .message__img {
    width: 362px;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .message__img {
    width: 75%;
  }
}
.message__img img {
  width: 100%;
  height: auto;
  display: block;
}
.message__content {
  flex: 1;
}
.message__block p {
  font-size: 1.8rem;
  line-height: 2;
}
@media (max-width: 767px) {
  .message__block p {
    font-size: 1.5rem;
  }
}
@media (max-width: 575px) {
  .message__block p {
    font-size: 1.4rem;
  }
}
.message__block p + p {
  margin-top: 1.2rem;
}
.message__block + .message__block {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .message__block + .message__block {
    margin-top: 2rem;
  }
}
.message__text-img {
  margin: 2rem 0;
}
.message__text-img img {
  width: 100%;
  max-width: 510px;
  height: auto;
  display: block;
}
@media (max-width: 767px) {
  .message__text-img img {
    max-width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .message__text-img img {
    max-width: 96%;
  }
}
.message__accent {
  font-size: 2.8rem;
  font-weight: bold;
  color: #7D9A3F;
  margin: 1.5rem 0;
  padding-left: 2.5rem;
  line-height: 1.6;
  position: relative;
}
@media (max-width: 1023px) {
  .message__accent {
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  .message__accent {
    font-size: 2rem;
    padding-left: 2rem;
  }
}
@media (max-width: 575px) {
  .message__accent {
    font-size: 1.8rem;
  }
}
.message__accent::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 17px;
  height: 2px;
  background-color: #7D9A3F;
}
@media (max-width: 767px) {
  .message__accent::before {
    width: 12px;
  }
}
.message__lead {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .message__lead {
    font-size: 1.6rem;
  }
}
.message__lead::after {
  content: "";
  display: block;
  width: 13px;
  height: 4px;
  background: url("../images/lead_deco.svg") no-repeat center/contain;
  margin-top: 1rem;
}
.message__bold {
  font-weight: bold;
}
.message__deco {
  color: #7D9A3F;
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
}
.message__signature {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .message__signature {
    margin-top: 4rem;
  }
}
.message__signature-role {
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .message__signature-role {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .message__signature-role {
    font-size: 1.4rem;
  }
}
.message__signature-img {
  width: 162px;
}
@media (max-width: 767px) {
  .message__signature-img {
    width: 120px;
  }
}
.message__signature-img img {
  width: 100%;
  height: auto;
  display: block;
}

.promise {
  margin-top: 5.5rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .promise {
    margin-top: 4rem;
  }
}
.promise__title {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.promise__title::before, .promise__title::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #E1D2BA;
}
@media (max-width: 767px) {
  .promise__title {
    font-size: 2rem;
  }
}
.promise__list {
  background-color: rgba(255, 255, 255, 0.65);
  border-radius: 5px;
  padding: 3rem 3rem 5rem;
}
@media (max-width: 767px) {
  .promise__list {
    padding: 2rem 1.5rem 3rem;
  }
}
.promise__itemBox {
  padding: 0 3rem;
}
@media (max-width: 767px) {
  .promise__itemBox {
    padding: 0;
  }
}
.promise__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 2.2rem;
}
.promise__item:first-of-type {
  padding-top: 0;
}
@media (max-width: 767px) {
  .promise__item {
    align-items: flex-start;
  }
}
.promise__icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .promise__icon {
    width: 36px;
    height: 36px;
  }
}
.promise__icon img {
  width: 100%;
  height: auto;
  display: block;
}
.promise__text {
  font-size: 1.8rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .promise__text {
    font-size: 1.4rem;
  }
}
.promise__closing {
  position: relative;
  margin-top: 2.5rem;
  padding-top: 5rem;
}
@media (max-width: 767px) {
  .promise__closing {
    margin-top: 1.5rem;
    padding-top: 4rem;
  }
}
.promise__closing::before {
  position: absolute;
  content: "";
  display: block;
  width: 6px;
  height: 32px;
  background: url("../images/dot_img.svg") no-repeat center/contain;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .promise__closing::before {
    width: 4px;
    height: 28px;
  }
}
.promise__closing p {
  font-weight: bold;
  text-align: center;
  font-size: 2.4rem;
  letter-spacing: 0.2rem;
  line-height: 2;
}
@media (max-width: 767px) {
  .promise__closing p {
    font-size: 1.8rem;
    letter-spacing: 0;
  }
}
@media (max-width: 575px) {
  .promise__closing p {
    font-size: 1.6rem;
  }
}

/*voice
-----------------------------------------------------*/
.voice-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.voice-item {
  border: 1px solid #D6CDB8;
  border-radius: 5px;
  overflow: hidden;
  padding: 4rem 5rem 3.5rem;
}
@media (max-width: 767px) {
  .voice-item {
    padding: 3rem 3rem 3.5rem;
  }
}
@media (max-width: 575px) {
  .voice-item {
    padding: 2.5rem 3rem 3rem;
  }
}
.voice-item__head {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #D6CDB8;
}
@media (max-width: 767px) {
  .voice-item__head {
    padding-bottom: 2rem;
  }
}
@media (max-width: 575px) {
  .voice-item__head {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.voice-item__avatar {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .voice-item__avatar {
    width: 80px;
    height: 80px;
  }
}
.voice-item__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.voice-item__head-content {
  flex: 1;
  position: relative;
}
.voice-item__head-content .voice-item__deco {
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-50%);
  width: 71px;
  height: 56px;
  background: url("../images/voice_deco.svg") no-repeat center/contain;
  z-index: -1;
}
@media (max-width: 767px) {
  .voice-item__head-content .voice-item__deco {
    width: 65px;
    height: 56px;
  }
}
.voice-item__title {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .voice-item__title {
    font-size: 2.2rem;
  }
}
@media (max-width: 767px) {
  .voice-item__title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
}
.voice-item__info {
  font-size: 1.8rem;
  color: #C1A373;
  font-weight: bold;
}
@media (max-width: 767px) {
  .voice-item__info {
    font-size: 1.2rem;
  }
}
@media (max-width: 575px) {
  .voice-item__info {
    text-align: center;
  }
}
.voice-item__body {
  padding-top: 3rem;
}
@media (max-width: 767px) {
  .voice-item__body {
    padding-top: 2rem;
  }
}
.voice-item__body p {
  font-size: 1.6rem;
  line-height: 2.2;
}
@media (max-width: 767px) {
  .voice-item__body p {
    font-size: 1.4rem;
  }
}
.voice-item__accent {
  font-size: 1.8rem !important;
  color: #7D9A3F;
  line-height: 1.7 !important;
  margin: 1rem 0 !important;
  font-weight: bold !important;
}
@media (max-width: 767px) {
  .voice-item__accent {
    font-size: 1.6rem !important;
  }
}

/*qa
-----------------------------------------------------*/
.qa {
  background-color: #F7F7F7;
  padding-bottom: 36rem;
}
@media (max-width: 767px) {
  .qa {
    padding-bottom: 12rem;
  }
}
.qa-list {
  border-radius: 5px;
  overflow: hidden;
}

.qa-category:nth-of-type(n+2) {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .qa-category:nth-of-type(n+2) {
    margin-top: 3rem;
  }
}
.qa-category__title {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .qa-category__title {
    font-size: 2.2rem;
  }
}
@media (max-width: 575px) {
  .qa-category__title {
    font-size: 1.8rem;
  }
}
.qa-category__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #7D9A3F;
}

.qa-item:nth-of-type(n+2) {
  margin-top: 1rem;
}
.qa-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.5rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: 2rem;
  background-color: #fff;
}
@media (max-width: 767px) {
  .qa-item__question {
    padding: 1.5rem 2rem;
  }
}
.qa-item__question p {
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
@media (max-width: 767px) {
  .qa-item__question p {
    font-size: 1.6rem;
    line-height: 1.6;
    gap: 0.5rem;
  }
}
.qa-item__question p span {
  display: inline-block;
  width: 23px;
  height: 23px;
  background: url("../images/q_icon.svg") no-repeat center/contain;
  flex-shrink: 0;
  margin-top: 0.8rem;
}
@media (max-width: 767px) {
  .qa-item__question p span {
    width: 18px;
    height: 18px;
    margin-top: 0.4rem;
  }
}
@media (max-width: 767px) {
  .qa-item__question p span {
    width: 15px;
    height: 15px;
    margin-top: 0.5rem;
  }
}
.qa-item__icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #E5EDD3;
  color: #7D9A3F;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
@media (max-width: 767px) {
  .qa-item__icon {
    width: 30px;
    height: 30px;
    font-size: 2.4rem;
  }
}
@media (max-width: 575px) {
  .qa-item__icon {
    width: 22px;
    height: 22px;
    font-size: 2rem;
    padding-bottom: 2px;
  }
}
.qa-item__answer {
  display: none;
  overflow: hidden;
  background-color: transparent;
}
.qa-item__answer p {
  font-size: 1.5rem;
  line-height: 2;
  padding: 1.5rem 2.5rem;
}
@media (max-width: 767px) {
  .qa-item__answer p {
    font-size: 1.4rem;
  }
}
.qa-item.is-open .qa-item__icon {
  transform: rotate(45deg);
}

/*qa-cta
-----------------------------------------------------*/
.qa-cta_wrap {
  position: relative;
  z-index: 1;
}
.qa-cta_wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background-color: #F7F7F7;
  z-index: -1;
}
.qa-cta_wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #F5F0E8;
  z-index: -1;
}

.qa-cta {
  background-image: url("../images/qa_cta_bg.png");
  background-size: cover;
  background-position: center;
  margin: -25rem 1% 0;
  padding: 6rem 0;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .qa-cta {
    padding: 3rem 0;
    margin-top: -6rem;
  }
}
.qa-cta__inner {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 4rem 3rem;
  text-align: center;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .qa-cta__inner {
    padding: 3rem 2rem;
  }
}
.qa-cta__title {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.6;
}
@media (max-width: 1023px) {
  .qa-cta__title {
    font-size: 2.6rem;
  }
}
@media (max-width: 767px) {
  .qa-cta__title {
    font-size: 2.2rem;
  }
}
@media (max-width: 575px) {
  .qa-cta__title {
    font-size: 2rem;
  }
}
.qa-cta__deco {
  width: 30px;
  height: 5px;
  margin: 2rem auto;
  line-height: 0;
}
@media (max-width: 575px) {
  .qa-cta__deco {
    width: 29px;
    height: 3px;
    margin: 1.5rem auto;
  }
}
.qa-cta__deco img {
  width: 100%;
  height: 100%;
  display: block;
}
.qa-cta__text {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: bold;
  position: relative;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
}
@media (max-width: 1023px) {
  .qa-cta__text {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
@media (max-width: 767px) {
  .qa-cta__text {
    text-align: left;
    margin-top: 2rem;
    padding-top: 2rem;
  }
}
@media (max-width: 575px) {
  .qa-cta__text {
    font-size: 1.4rem;
  }
}
.qa-cta__text::before {
  position: absolute;
  content: "";
  display: block;
  width: 30px;
  height: 5px;
  background: url("../images/qa-cta_deco_img.svg") no-repeat center/contain;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .qa-cta__text::before {
    width: 29px;
    height: 4px;
  }
}

/*form
-----------------------------------------------------*/
.form {
  background-color: #F5F0E8;
}

/*footer
-----------------------------------------------------*/
.footer {
  color: #fff;
}
.footer__inner {
  display: flex;
}
@media (max-width: 767px) {
  .footer__inner {
    flex-direction: column;
  }
}
.footer__label {
  display: flex;
  font-size: 2.6rem;
  font-weight: bold;
  align-items: center;
  margin-bottom: 2rem;
  gap: 0.8rem;
}
@media (max-width: 1023px) {
  .footer__label {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .footer__label {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
}
.footer__label span {
  font-size: 0.8rem;
  color: #fff;
}
.footer__tel, .footer__company {
  padding: 7rem 9%;
}
@media (max-width: 1199px) {
  .footer__tel, .footer__company {
    padding: 7rem 5%;
  }
}
@media (max-width: 1023px) {
  .footer__tel, .footer__company {
    padding: 5rem 5%;
  }
}
@media (max-width: 767px) {
  .footer__tel, .footer__company {
    padding: 4rem 6rem;
  }
}
@media (max-width: 575px) {
  .footer__tel, .footer__company {
    padding: 4rem 2rem;
  }
}
.footer__tel {
  flex: 1;
  background-color: #7D9A3F;
}
.footer__tel-num {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 5.6rem;
  color: #fff;
  letter-spacing: 2px;
  text-decoration: none;
  border-bottom: 1px solid #fff;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  line-height: 1;
  pointer-events: none;
}
@media (max-width: 1023px) {
  .footer__tel-num {
    font-size: 4.5rem;
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  .footer__tel-num {
    font-size: 3.8rem;
    pointer-events: auto;
  }
}
@media (max-width: 575px) {
  .footer__tel-num {
    font-size: 3.2rem;
  }
}
.footer__tel-icon {
  display: block;
  width: 41px;
  height: 41px;
  background: url("../images/tel_img.svg") no-repeat center/contain;
}
@media (max-width: 1023px) {
  .footer__tel-icon {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 575px) {
  .footer__tel-icon {
    width: 25px;
    height: 25px;
  }
}
.footer__info p {
  font-size: 2rem;
  line-height: 1.5;
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 1023px) {
  .footer__info p {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .footer__info p {
    font-size: 1.4rem;
    gap: 1rem;
  }
}
.footer__info p + p {
  margin-top: 0.5rem;
}
.footer__info p span {
  color: #fff;
  flex-shrink: 0;
  font-weight: normal;
}
.footer__info--day span {
  padding-right: 1.5rem;
}
.footer__company {
  flex: 1;
  background-color: #75913B;
}
.footer__company-name, .footer__company-address {
  font-size: 2rem;
}
@media (max-width: 1023px) {
  .footer__company-name, .footer__company-address {
    font-size: 1.6rem;
  }
}
.footer__company-name {
  margin-bottom: 1rem;
}
.footer__company-address {
  line-height: 1.7;
  margin-bottom: 2rem;
}
.footer__line__btn {
  max-width: 100%;
}
.footer__line__btn::after {
  display: none;
}
.footer__copy {
  padding: 1rem 0;
  text-align: center;
}
.footer__copy p {
  font-size: 1.2rem;
  color: #C8BFB1;
}/*# sourceMappingURL=style.css.map */