/* 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 rgba(0, 0, 0, 0.1);
  margin: 1em 0;
  padding: 0;
}

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

body {
  color: #222;
  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: #1372E4;
  transition: 0.3s linear;
}
a:hover, a:active, a:focus {
  color: rgb(153.4615384615, 195.7692307692, 246.5384615385);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fs-50 {
  font-size: 5rem;
}

.fs-51 {
  font-size: 5.1rem;
}

.fs-52 {
  font-size: 5.2rem;
}

.fs-53 {
  font-size: 5.3rem;
}

.fs-54 {
  font-size: 5.4rem;
}

.fs-55 {
  font-size: 5.5rem;
}

.fs-56 {
  font-size: 5.6rem;
}

.fs-57 {
  font-size: 5.7rem;
}

.fs-58 {
  font-size: 5.8rem;
}

.fs-59 {
  font-size: 5.9rem;
}

.fs-60 {
  font-size: 6rem;
}

@media (max-width: 1199px) {
  .fs-10-xl {
    font-size: 1rem;
  }
  .fs-11-xl {
    font-size: 1.1rem;
  }
  .fs-12-xl {
    font-size: 1.2rem;
  }
  .fs-13-xl {
    font-size: 1.3rem;
  }
  .fs-14-xl {
    font-size: 1.4rem;
  }
  .fs-15-xl {
    font-size: 1.5rem;
  }
  .fs-16-xl {
    font-size: 1.6rem;
  }
  .fs-17-xl {
    font-size: 1.7rem;
  }
  .fs-18-xl {
    font-size: 1.8rem;
  }
  .fs-19-xl {
    font-size: 1.9rem;
  }
  .fs-20-xl {
    font-size: 2rem;
  }
  .fs-21-xl {
    font-size: 2.1rem;
  }
  .fs-22-xl {
    font-size: 2.2rem;
  }
  .fs-23-xl {
    font-size: 2.3rem;
  }
  .fs-24-xl {
    font-size: 2.4rem;
  }
  .fs-25-xl {
    font-size: 2.5rem;
  }
  .fs-26-xl {
    font-size: 2.6rem;
  }
  .fs-27-xl {
    font-size: 2.7rem;
  }
  .fs-28-xl {
    font-size: 2.8rem;
  }
  .fs-29-xl {
    font-size: 2.9rem;
  }
  .fs-30-xl {
    font-size: 3rem;
  }
  .fs-31-xl {
    font-size: 3.1rem;
  }
  .fs-32-xl {
    font-size: 3.2rem;
  }
  .fs-33-xl {
    font-size: 3.3rem;
  }
  .fs-34-xl {
    font-size: 3.4rem;
  }
  .fs-35-xl {
    font-size: 3.5rem;
  }
  .fs-36-xl {
    font-size: 3.6rem;
  }
  .fs-37-xl {
    font-size: 3.7rem;
  }
  .fs-38-xl {
    font-size: 3.8rem;
  }
  .fs-39-xl {
    font-size: 3.9rem;
  }
  .fs-40-xl {
    font-size: 4rem;
  }
  .fs-41-xl {
    font-size: 4.1rem;
  }
  .fs-42-xl {
    font-size: 4.2rem;
  }
  .fs-43-xl {
    font-size: 4.3rem;
  }
  .fs-44-xl {
    font-size: 4.4rem;
  }
  .fs-45-xl {
    font-size: 4.5rem;
  }
  .fs-46-xl {
    font-size: 4.6rem;
  }
  .fs-47-xl {
    font-size: 4.7rem;
  }
  .fs-48-xl {
    font-size: 4.8rem;
  }
  .fs-49-xl {
    font-size: 4.9rem;
  }
  .fs-50-xl {
    font-size: 5rem;
  }
  .fs-51-xl {
    font-size: 5.1rem;
  }
  .fs-52-xl {
    font-size: 5.2rem;
  }
  .fs-53-xl {
    font-size: 5.3rem;
  }
  .fs-54-xl {
    font-size: 5.4rem;
  }
  .fs-55-xl {
    font-size: 5.5rem;
  }
  .fs-56-xl {
    font-size: 5.6rem;
  }
  .fs-57-xl {
    font-size: 5.7rem;
  }
  .fs-58-xl {
    font-size: 5.8rem;
  }
  .fs-59-xl {
    font-size: 5.9rem;
  }
  .fs-60-xl {
    font-size: 6rem;
  }
}
@media (max-width: 1023px) {
  .fs-10-lg {
    font-size: 1rem;
  }
  .fs-11-lg {
    font-size: 1.1rem;
  }
  .fs-12-lg {
    font-size: 1.2rem;
  }
  .fs-13-lg {
    font-size: 1.3rem;
  }
  .fs-14-lg {
    font-size: 1.4rem;
  }
  .fs-15-lg {
    font-size: 1.5rem;
  }
  .fs-16-lg {
    font-size: 1.6rem;
  }
  .fs-17-lg {
    font-size: 1.7rem;
  }
  .fs-18-lg {
    font-size: 1.8rem;
  }
  .fs-19-lg {
    font-size: 1.9rem;
  }
  .fs-20-lg {
    font-size: 2rem;
  }
  .fs-21-lg {
    font-size: 2.1rem;
  }
  .fs-22-lg {
    font-size: 2.2rem;
  }
  .fs-23-lg {
    font-size: 2.3rem;
  }
  .fs-24-lg {
    font-size: 2.4rem;
  }
  .fs-25-lg {
    font-size: 2.5rem;
  }
  .fs-26-lg {
    font-size: 2.6rem;
  }
  .fs-27-lg {
    font-size: 2.7rem;
  }
  .fs-28-lg {
    font-size: 2.8rem;
  }
  .fs-29-lg {
    font-size: 2.9rem;
  }
  .fs-30-lg {
    font-size: 3rem;
  }
  .fs-31-lg {
    font-size: 3.1rem;
  }
  .fs-32-lg {
    font-size: 3.2rem;
  }
  .fs-33-lg {
    font-size: 3.3rem;
  }
  .fs-34-lg {
    font-size: 3.4rem;
  }
  .fs-35-lg {
    font-size: 3.5rem;
  }
  .fs-36-lg {
    font-size: 3.6rem;
  }
  .fs-37-lg {
    font-size: 3.7rem;
  }
  .fs-38-lg {
    font-size: 3.8rem;
  }
  .fs-39-lg {
    font-size: 3.9rem;
  }
  .fs-40-lg {
    font-size: 4rem;
  }
  .fs-41-lg {
    font-size: 4.1rem;
  }
  .fs-42-lg {
    font-size: 4.2rem;
  }
  .fs-43-lg {
    font-size: 4.3rem;
  }
  .fs-44-lg {
    font-size: 4.4rem;
  }
  .fs-45-lg {
    font-size: 4.5rem;
  }
  .fs-46-lg {
    font-size: 4.6rem;
  }
  .fs-47-lg {
    font-size: 4.7rem;
  }
  .fs-48-lg {
    font-size: 4.8rem;
  }
  .fs-49-lg {
    font-size: 4.9rem;
  }
  .fs-50-lg {
    font-size: 5rem;
  }
  .fs-51-lg {
    font-size: 5.1rem;
  }
  .fs-52-lg {
    font-size: 5.2rem;
  }
  .fs-53-lg {
    font-size: 5.3rem;
  }
  .fs-54-lg {
    font-size: 5.4rem;
  }
  .fs-55-lg {
    font-size: 5.5rem;
  }
  .fs-56-lg {
    font-size: 5.6rem;
  }
  .fs-57-lg {
    font-size: 5.7rem;
  }
  .fs-58-lg {
    font-size: 5.8rem;
  }
  .fs-59-lg {
    font-size: 5.9rem;
  }
  .fs-60-lg {
    font-size: 6rem;
  }
}
@media (max-width: 767px) {
  .fs-10-md {
    font-size: 1rem;
  }
  .fs-11-md {
    font-size: 1.1rem;
  }
  .fs-12-md {
    font-size: 1.2rem;
  }
  .fs-13-md {
    font-size: 1.3rem;
  }
  .fs-14-md {
    font-size: 1.4rem;
  }
  .fs-15-md {
    font-size: 1.5rem;
  }
  .fs-16-md {
    font-size: 1.6rem;
  }
  .fs-17-md {
    font-size: 1.7rem;
  }
  .fs-18-md {
    font-size: 1.8rem;
  }
  .fs-19-md {
    font-size: 1.9rem;
  }
  .fs-20-md {
    font-size: 2rem;
  }
  .fs-21-md {
    font-size: 2.1rem;
  }
  .fs-22-md {
    font-size: 2.2rem;
  }
  .fs-23-md {
    font-size: 2.3rem;
  }
  .fs-24-md {
    font-size: 2.4rem;
  }
  .fs-25-md {
    font-size: 2.5rem;
  }
  .fs-26-md {
    font-size: 2.6rem;
  }
  .fs-27-md {
    font-size: 2.7rem;
  }
  .fs-28-md {
    font-size: 2.8rem;
  }
  .fs-29-md {
    font-size: 2.9rem;
  }
  .fs-30-md {
    font-size: 3rem;
  }
  .fs-31-md {
    font-size: 3.1rem;
  }
  .fs-32-md {
    font-size: 3.2rem;
  }
  .fs-33-md {
    font-size: 3.3rem;
  }
  .fs-34-md {
    font-size: 3.4rem;
  }
  .fs-35-md {
    font-size: 3.5rem;
  }
  .fs-36-md {
    font-size: 3.6rem;
  }
  .fs-37-md {
    font-size: 3.7rem;
  }
  .fs-38-md {
    font-size: 3.8rem;
  }
  .fs-39-md {
    font-size: 3.9rem;
  }
  .fs-40-md {
    font-size: 4rem;
  }
  .fs-41-md {
    font-size: 4.1rem;
  }
  .fs-42-md {
    font-size: 4.2rem;
  }
  .fs-43-md {
    font-size: 4.3rem;
  }
  .fs-44-md {
    font-size: 4.4rem;
  }
  .fs-45-md {
    font-size: 4.5rem;
  }
  .fs-46-md {
    font-size: 4.6rem;
  }
  .fs-47-md {
    font-size: 4.7rem;
  }
  .fs-48-md {
    font-size: 4.8rem;
  }
  .fs-49-md {
    font-size: 4.9rem;
  }
  .fs-50-md {
    font-size: 5rem;
  }
  .fs-51-md {
    font-size: 5.1rem;
  }
  .fs-52-md {
    font-size: 5.2rem;
  }
  .fs-53-md {
    font-size: 5.3rem;
  }
  .fs-54-md {
    font-size: 5.4rem;
  }
  .fs-55-md {
    font-size: 5.5rem;
  }
  .fs-56-md {
    font-size: 5.6rem;
  }
  .fs-57-md {
    font-size: 5.7rem;
  }
  .fs-58-md {
    font-size: 5.8rem;
  }
  .fs-59-md {
    font-size: 5.9rem;
  }
  .fs-60-md {
    font-size: 6rem;
  }
}
@media (max-width: 575px) {
  .fs-10-sm {
    font-size: 1rem;
  }
  .fs-11-sm {
    font-size: 1.1rem;
  }
  .fs-12-sm {
    font-size: 1.2rem;
  }
  .fs-13-sm {
    font-size: 1.3rem;
  }
  .fs-14-sm {
    font-size: 1.4rem;
  }
  .fs-15-sm {
    font-size: 1.5rem;
  }
  .fs-16-sm {
    font-size: 1.6rem;
  }
  .fs-17-sm {
    font-size: 1.7rem;
  }
  .fs-18-sm {
    font-size: 1.8rem;
  }
  .fs-19-sm {
    font-size: 1.9rem;
  }
  .fs-20-sm {
    font-size: 2rem;
  }
  .fs-21-sm {
    font-size: 2.1rem;
  }
  .fs-22-sm {
    font-size: 2.2rem;
  }
  .fs-23-sm {
    font-size: 2.3rem;
  }
  .fs-24-sm {
    font-size: 2.4rem;
  }
  .fs-25-sm {
    font-size: 2.5rem;
  }
  .fs-26-sm {
    font-size: 2.6rem;
  }
  .fs-27-sm {
    font-size: 2.7rem;
  }
  .fs-28-sm {
    font-size: 2.8rem;
  }
  .fs-29-sm {
    font-size: 2.9rem;
  }
  .fs-30-sm {
    font-size: 3rem;
  }
  .fs-31-sm {
    font-size: 3.1rem;
  }
  .fs-32-sm {
    font-size: 3.2rem;
  }
  .fs-33-sm {
    font-size: 3.3rem;
  }
  .fs-34-sm {
    font-size: 3.4rem;
  }
  .fs-35-sm {
    font-size: 3.5rem;
  }
  .fs-36-sm {
    font-size: 3.6rem;
  }
  .fs-37-sm {
    font-size: 3.7rem;
  }
  .fs-38-sm {
    font-size: 3.8rem;
  }
  .fs-39-sm {
    font-size: 3.9rem;
  }
  .fs-40-sm {
    font-size: 4rem;
  }
  .fs-41-sm {
    font-size: 4.1rem;
  }
  .fs-42-sm {
    font-size: 4.2rem;
  }
  .fs-43-sm {
    font-size: 4.3rem;
  }
  .fs-44-sm {
    font-size: 4.4rem;
  }
  .fs-45-sm {
    font-size: 4.5rem;
  }
  .fs-46-sm {
    font-size: 4.6rem;
  }
  .fs-47-sm {
    font-size: 4.7rem;
  }
  .fs-48-sm {
    font-size: 4.8rem;
  }
  .fs-49-sm {
    font-size: 4.9rem;
  }
  .fs-50-sm {
    font-size: 5rem;
  }
  .fs-51-sm {
    font-size: 5.1rem;
  }
  .fs-52-sm {
    font-size: 5.2rem;
  }
  .fs-53-sm {
    font-size: 5.3rem;
  }
  .fs-54-sm {
    font-size: 5.4rem;
  }
  .fs-55-sm {
    font-size: 5.5rem;
  }
  .fs-56-sm {
    font-size: 5.6rem;
  }
  .fs-57-sm {
    font-size: 5.7rem;
  }
  .fs-58-sm {
    font-size: 5.8rem;
  }
  .fs-59-sm {
    font-size: 5.9rem;
  }
  .fs-60-sm {
    font-size: 6rem;
  }
}
.lh-1 {
  line-height: 1.1;
}

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

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

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

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

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

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

ol {
  padding-left: 1em;
}

.float-l {
  float: left;
}

.float-r {
  float: right;
}

.vertical-rl {
  writing-mode: vertical-rl;
  word-break: keep-all;
}

.en {
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
}

.lato {
  font-family: "Lato", sans-serif;
  font-weight: 700;
}
.lato-l {
  font-weight: 300;
  font-style: normal;
}
.lato-r {
  font-weight: 400;
  font-style: normal;
}
.lato-b {
  font-weight: 700;
  font-style: normal;
}
.lato-bl {
  font-weight: 900;
  font-style: normal;
}
.lato-l-i {
  font-weight: 300;
  font-style: italic;
}
.lato-r-i {
  font-weight: 400;
  font-style: italic;
}
.lato-b-i {
  font-weight: 700;
  font-style: italic;
}
.lato-bl-i {
  font-weight: 900;
  font-style: italic;
}

.mincho {
  font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

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

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

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

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

.color-main {
  color: #1D2088 !important;
}

.color-accent01 {
  color: #20992A !important;
}

.color-caution {
  color: #C81900 !important;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

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

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

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

.pos-r {
  position: relative;
}

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

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

.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-55 {
  margin-top: 5.5rem !important;
}

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

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

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

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

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

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

.pr-55 {
  padding-right: 5.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-65 {
  margin-top: 6.5rem !important;
}

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

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

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

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

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

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

.pr-65 {
  padding-right: 6.5rem !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-75 {
  margin-top: 7.5rem !important;
}

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

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

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

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

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

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

.pr-75 {
  padding-right: 7.5rem !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-85 {
  margin-top: 8.5rem !important;
}

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

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

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

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

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

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

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

.mt-90 {
  margin-top: 9rem !important;
}

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

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

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

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

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

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

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

.mt-95 {
  margin-top: 9.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@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-55-xl {
    margin-top: 5.5rem !important;
  }
  .pt-55-xl {
    padding-top: 5.5rem !important;
  }
  .mb-55-xl {
    margin-bottom: 5.5rem !important;
  }
  .pb-55-xl {
    padding-bottom: 5.5rem !important;
  }
  .ml-55-xl {
    margin-left: 5.5rem !important;
  }
  .pl-55-xl {
    padding-left: 5.5rem !important;
  }
  .mr-55-xl {
    margin-right: 5.5rem !important;
  }
  .pr-55-xl {
    padding-right: 5.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-65-xl {
    margin-top: 6.5rem !important;
  }
  .pt-65-xl {
    padding-top: 6.5rem !important;
  }
  .mb-65-xl {
    margin-bottom: 6.5rem !important;
  }
  .pb-65-xl {
    padding-bottom: 6.5rem !important;
  }
  .ml-65-xl {
    margin-left: 6.5rem !important;
  }
  .pl-65-xl {
    padding-left: 6.5rem !important;
  }
  .mr-65-xl {
    margin-right: 6.5rem !important;
  }
  .pr-65-xl {
    padding-right: 6.5rem !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-75-xl {
    margin-top: 7.5rem !important;
  }
  .pt-75-xl {
    padding-top: 7.5rem !important;
  }
  .mb-75-xl {
    margin-bottom: 7.5rem !important;
  }
  .pb-75-xl {
    padding-bottom: 7.5rem !important;
  }
  .ml-75-xl {
    margin-left: 7.5rem !important;
  }
  .pl-75-xl {
    padding-left: 7.5rem !important;
  }
  .mr-75-xl {
    margin-right: 7.5rem !important;
  }
  .pr-75-xl {
    padding-right: 7.5rem !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-85-xl {
    margin-top: 8.5rem !important;
  }
  .pt-85-xl {
    padding-top: 8.5rem !important;
  }
  .mb-85-xl {
    margin-bottom: 8.5rem !important;
  }
  .pb-85-xl {
    padding-bottom: 8.5rem !important;
  }
  .ml-85-xl {
    margin-left: 8.5rem !important;
  }
  .pl-85-xl {
    padding-left: 8.5rem !important;
  }
  .mr-85-xl {
    margin-right: 8.5rem !important;
  }
  .pr-85-xl {
    padding-right: 8.5rem !important;
  }
  .mt-90-xl {
    margin-top: 9rem !important;
  }
  .pt-90-xl {
    padding-top: 9rem !important;
  }
  .mb-90-xl {
    margin-bottom: 9rem !important;
  }
  .pb-90-xl {
    padding-bottom: 9rem !important;
  }
  .ml-90-xl {
    margin-left: 9rem !important;
  }
  .pl-90-xl {
    padding-left: 9rem !important;
  }
  .mr-90-xl {
    margin-right: 9rem !important;
  }
  .pr-90-xl {
    padding-right: 9rem !important;
  }
  .mt-95-xl {
    margin-top: 9.5rem !important;
  }
  .pt-95-xl {
    padding-top: 9.5rem !important;
  }
  .mb-95-xl {
    margin-bottom: 9.5rem !important;
  }
  .pb-95-xl {
    padding-bottom: 9.5rem !important;
  }
  .ml-95-xl {
    margin-left: 9.5rem !important;
  }
  .pl-95-xl {
    padding-left: 9.5rem !important;
  }
  .mr-95-xl {
    margin-right: 9.5rem !important;
  }
  .pr-95-xl {
    padding-right: 9.5rem !important;
  }
  .mt-100-xl {
    margin-top: 10rem !important;
  }
  .pt-100-xl {
    padding-top: 10rem !important;
  }
  .mb-100-xl {
    margin-bottom: 10rem !important;
  }
  .pb-100-xl {
    padding-bottom: 10rem !important;
  }
  .ml-100-xl {
    margin-left: 10rem !important;
  }
  .pl-100-xl {
    padding-left: 10rem !important;
  }
  .mr-100-xl {
    margin-right: 10rem !important;
  }
  .pr-100-xl {
    padding-right: 10rem !important;
  }
  .mt-110-xl {
    margin-top: 11rem !important;
  }
  .pt-110-xl {
    padding-top: 11rem !important;
  }
  .mb-110-xl {
    margin-bottom: 11rem !important;
  }
  .pb-110-xl {
    padding-bottom: 11rem !important;
  }
  .ml-110-xl {
    margin-left: 11rem !important;
  }
  .pl-110-xl {
    padding-left: 11rem !important;
  }
  .mr-110-xl {
    margin-right: 11rem !important;
  }
  .pr-110-xl {
    padding-right: 11rem !important;
  }
  .mt-120-xl {
    margin-top: 12rem !important;
  }
  .pt-120-xl {
    padding-top: 12rem !important;
  }
  .mb-120-xl {
    margin-bottom: 12rem !important;
  }
  .pb-120-xl {
    padding-bottom: 12rem !important;
  }
  .ml-120-xl {
    margin-left: 12rem !important;
  }
  .pl-120-xl {
    padding-left: 12rem !important;
  }
  .mr-120-xl {
    margin-right: 12rem !important;
  }
  .pr-120-xl {
    padding-right: 12rem !important;
  }
  .mt-130-xl {
    margin-top: 13rem !important;
  }
  .pt-130-xl {
    padding-top: 13rem !important;
  }
  .mb-130-xl {
    margin-bottom: 13rem !important;
  }
  .pb-130-xl {
    padding-bottom: 13rem !important;
  }
  .ml-130-xl {
    margin-left: 13rem !important;
  }
  .pl-130-xl {
    padding-left: 13rem !important;
  }
  .mr-130-xl {
    margin-right: 13rem !important;
  }
  .pr-130-xl {
    padding-right: 13rem !important;
  }
  .mt-140-xl {
    margin-top: 14rem !important;
  }
  .pt-140-xl {
    padding-top: 14rem !important;
  }
  .mb-140-xl {
    margin-bottom: 14rem !important;
  }
  .pb-140-xl {
    padding-bottom: 14rem !important;
  }
  .ml-140-xl {
    margin-left: 14rem !important;
  }
  .pl-140-xl {
    padding-left: 14rem !important;
  }
  .mr-140-xl {
    margin-right: 14rem !important;
  }
  .pr-140-xl {
    padding-right: 14rem !important;
  }
  .mt-150-xl {
    margin-top: 15rem !important;
  }
  .pt-150-xl {
    padding-top: 15rem !important;
  }
  .mb-150-xl {
    margin-bottom: 15rem !important;
  }
  .pb-150-xl {
    padding-bottom: 15rem !important;
  }
  .ml-150-xl {
    margin-left: 15rem !important;
  }
  .pl-150-xl {
    padding-left: 15rem !important;
  }
  .mr-150-xl {
    margin-right: 15rem !important;
  }
  .pr-150-xl {
    padding-right: 15rem !important;
  }
  .mt-160-xl {
    margin-top: 16rem !important;
  }
  .pt-160-xl {
    padding-top: 16rem !important;
  }
  .mb-160-xl {
    margin-bottom: 16rem !important;
  }
  .pb-160-xl {
    padding-bottom: 16rem !important;
  }
  .ml-160-xl {
    margin-left: 16rem !important;
  }
  .pl-160-xl {
    padding-left: 16rem !important;
  }
  .mr-160-xl {
    margin-right: 16rem !important;
  }
  .pr-160-xl {
    padding-right: 16rem !important;
  }
}
@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-55-lg {
    margin-top: 5.5rem !important;
  }
  .pt-55-lg {
    padding-top: 5.5rem !important;
  }
  .mb-55-lg {
    margin-bottom: 5.5rem !important;
  }
  .pb-55-lg {
    padding-bottom: 5.5rem !important;
  }
  .ml-55-lg {
    margin-left: 5.5rem !important;
  }
  .pl-55-lg {
    padding-left: 5.5rem !important;
  }
  .mr-55-lg {
    margin-right: 5.5rem !important;
  }
  .pr-55-lg {
    padding-right: 5.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-65-lg {
    margin-top: 6.5rem !important;
  }
  .pt-65-lg {
    padding-top: 6.5rem !important;
  }
  .mb-65-lg {
    margin-bottom: 6.5rem !important;
  }
  .pb-65-lg {
    padding-bottom: 6.5rem !important;
  }
  .ml-65-lg {
    margin-left: 6.5rem !important;
  }
  .pl-65-lg {
    padding-left: 6.5rem !important;
  }
  .mr-65-lg {
    margin-right: 6.5rem !important;
  }
  .pr-65-lg {
    padding-right: 6.5rem !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-75-lg {
    margin-top: 7.5rem !important;
  }
  .pt-75-lg {
    padding-top: 7.5rem !important;
  }
  .mb-75-lg {
    margin-bottom: 7.5rem !important;
  }
  .pb-75-lg {
    padding-bottom: 7.5rem !important;
  }
  .ml-75-lg {
    margin-left: 7.5rem !important;
  }
  .pl-75-lg {
    padding-left: 7.5rem !important;
  }
  .mr-75-lg {
    margin-right: 7.5rem !important;
  }
  .pr-75-lg {
    padding-right: 7.5rem !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-85-lg {
    margin-top: 8.5rem !important;
  }
  .pt-85-lg {
    padding-top: 8.5rem !important;
  }
  .mb-85-lg {
    margin-bottom: 8.5rem !important;
  }
  .pb-85-lg {
    padding-bottom: 8.5rem !important;
  }
  .ml-85-lg {
    margin-left: 8.5rem !important;
  }
  .pl-85-lg {
    padding-left: 8.5rem !important;
  }
  .mr-85-lg {
    margin-right: 8.5rem !important;
  }
  .pr-85-lg {
    padding-right: 8.5rem !important;
  }
  .mt-90-lg {
    margin-top: 9rem !important;
  }
  .pt-90-lg {
    padding-top: 9rem !important;
  }
  .mb-90-lg {
    margin-bottom: 9rem !important;
  }
  .pb-90-lg {
    padding-bottom: 9rem !important;
  }
  .ml-90-lg {
    margin-left: 9rem !important;
  }
  .pl-90-lg {
    padding-left: 9rem !important;
  }
  .mr-90-lg {
    margin-right: 9rem !important;
  }
  .pr-90-lg {
    padding-right: 9rem !important;
  }
  .mt-95-lg {
    margin-top: 9.5rem !important;
  }
  .pt-95-lg {
    padding-top: 9.5rem !important;
  }
  .mb-95-lg {
    margin-bottom: 9.5rem !important;
  }
  .pb-95-lg {
    padding-bottom: 9.5rem !important;
  }
  .ml-95-lg {
    margin-left: 9.5rem !important;
  }
  .pl-95-lg {
    padding-left: 9.5rem !important;
  }
  .mr-95-lg {
    margin-right: 9.5rem !important;
  }
  .pr-95-lg {
    padding-right: 9.5rem !important;
  }
  .mt-100-lg {
    margin-top: 10rem !important;
  }
  .pt-100-lg {
    padding-top: 10rem !important;
  }
  .mb-100-lg {
    margin-bottom: 10rem !important;
  }
  .pb-100-lg {
    padding-bottom: 10rem !important;
  }
  .ml-100-lg {
    margin-left: 10rem !important;
  }
  .pl-100-lg {
    padding-left: 10rem !important;
  }
  .mr-100-lg {
    margin-right: 10rem !important;
  }
  .pr-100-lg {
    padding-right: 10rem !important;
  }
  .mt-110-lg {
    margin-top: 11rem !important;
  }
  .pt-110-lg {
    padding-top: 11rem !important;
  }
  .mb-110-lg {
    margin-bottom: 11rem !important;
  }
  .pb-110-lg {
    padding-bottom: 11rem !important;
  }
  .ml-110-lg {
    margin-left: 11rem !important;
  }
  .pl-110-lg {
    padding-left: 11rem !important;
  }
  .mr-110-lg {
    margin-right: 11rem !important;
  }
  .pr-110-lg {
    padding-right: 11rem !important;
  }
  .mt-120-lg {
    margin-top: 12rem !important;
  }
  .pt-120-lg {
    padding-top: 12rem !important;
  }
  .mb-120-lg {
    margin-bottom: 12rem !important;
  }
  .pb-120-lg {
    padding-bottom: 12rem !important;
  }
  .ml-120-lg {
    margin-left: 12rem !important;
  }
  .pl-120-lg {
    padding-left: 12rem !important;
  }
  .mr-120-lg {
    margin-right: 12rem !important;
  }
  .pr-120-lg {
    padding-right: 12rem !important;
  }
  .mt-130-lg {
    margin-top: 13rem !important;
  }
  .pt-130-lg {
    padding-top: 13rem !important;
  }
  .mb-130-lg {
    margin-bottom: 13rem !important;
  }
  .pb-130-lg {
    padding-bottom: 13rem !important;
  }
  .ml-130-lg {
    margin-left: 13rem !important;
  }
  .pl-130-lg {
    padding-left: 13rem !important;
  }
  .mr-130-lg {
    margin-right: 13rem !important;
  }
  .pr-130-lg {
    padding-right: 13rem !important;
  }
  .mt-140-lg {
    margin-top: 14rem !important;
  }
  .pt-140-lg {
    padding-top: 14rem !important;
  }
  .mb-140-lg {
    margin-bottom: 14rem !important;
  }
  .pb-140-lg {
    padding-bottom: 14rem !important;
  }
  .ml-140-lg {
    margin-left: 14rem !important;
  }
  .pl-140-lg {
    padding-left: 14rem !important;
  }
  .mr-140-lg {
    margin-right: 14rem !important;
  }
  .pr-140-lg {
    padding-right: 14rem !important;
  }
  .mt-150-lg {
    margin-top: 15rem !important;
  }
  .pt-150-lg {
    padding-top: 15rem !important;
  }
  .mb-150-lg {
    margin-bottom: 15rem !important;
  }
  .pb-150-lg {
    padding-bottom: 15rem !important;
  }
  .ml-150-lg {
    margin-left: 15rem !important;
  }
  .pl-150-lg {
    padding-left: 15rem !important;
  }
  .mr-150-lg {
    margin-right: 15rem !important;
  }
  .pr-150-lg {
    padding-right: 15rem !important;
  }
  .mt-160-lg {
    margin-top: 16rem !important;
  }
  .pt-160-lg {
    padding-top: 16rem !important;
  }
  .mb-160-lg {
    margin-bottom: 16rem !important;
  }
  .pb-160-lg {
    padding-bottom: 16rem !important;
  }
  .ml-160-lg {
    margin-left: 16rem !important;
  }
  .pl-160-lg {
    padding-left: 16rem !important;
  }
  .mr-160-lg {
    margin-right: 16rem !important;
  }
  .pr-160-lg {
    padding-right: 16rem !important;
  }
}
@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-55-md {
    margin-top: 5.5rem !important;
  }
  .pt-55-md {
    padding-top: 5.5rem !important;
  }
  .mb-55-md {
    margin-bottom: 5.5rem !important;
  }
  .pb-55-md {
    padding-bottom: 5.5rem !important;
  }
  .ml-55-md {
    margin-left: 5.5rem !important;
  }
  .pl-55-md {
    padding-left: 5.5rem !important;
  }
  .mr-55-md {
    margin-right: 5.5rem !important;
  }
  .pr-55-md {
    padding-right: 5.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-65-md {
    margin-top: 6.5rem !important;
  }
  .pt-65-md {
    padding-top: 6.5rem !important;
  }
  .mb-65-md {
    margin-bottom: 6.5rem !important;
  }
  .pb-65-md {
    padding-bottom: 6.5rem !important;
  }
  .ml-65-md {
    margin-left: 6.5rem !important;
  }
  .pl-65-md {
    padding-left: 6.5rem !important;
  }
  .mr-65-md {
    margin-right: 6.5rem !important;
  }
  .pr-65-md {
    padding-right: 6.5rem !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-75-md {
    margin-top: 7.5rem !important;
  }
  .pt-75-md {
    padding-top: 7.5rem !important;
  }
  .mb-75-md {
    margin-bottom: 7.5rem !important;
  }
  .pb-75-md {
    padding-bottom: 7.5rem !important;
  }
  .ml-75-md {
    margin-left: 7.5rem !important;
  }
  .pl-75-md {
    padding-left: 7.5rem !important;
  }
  .mr-75-md {
    margin-right: 7.5rem !important;
  }
  .pr-75-md {
    padding-right: 7.5rem !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-85-md {
    margin-top: 8.5rem !important;
  }
  .pt-85-md {
    padding-top: 8.5rem !important;
  }
  .mb-85-md {
    margin-bottom: 8.5rem !important;
  }
  .pb-85-md {
    padding-bottom: 8.5rem !important;
  }
  .ml-85-md {
    margin-left: 8.5rem !important;
  }
  .pl-85-md {
    padding-left: 8.5rem !important;
  }
  .mr-85-md {
    margin-right: 8.5rem !important;
  }
  .pr-85-md {
    padding-right: 8.5rem !important;
  }
  .mt-90-md {
    margin-top: 9rem !important;
  }
  .pt-90-md {
    padding-top: 9rem !important;
  }
  .mb-90-md {
    margin-bottom: 9rem !important;
  }
  .pb-90-md {
    padding-bottom: 9rem !important;
  }
  .ml-90-md {
    margin-left: 9rem !important;
  }
  .pl-90-md {
    padding-left: 9rem !important;
  }
  .mr-90-md {
    margin-right: 9rem !important;
  }
  .pr-90-md {
    padding-right: 9rem !important;
  }
  .mt-95-md {
    margin-top: 9.5rem !important;
  }
  .pt-95-md {
    padding-top: 9.5rem !important;
  }
  .mb-95-md {
    margin-bottom: 9.5rem !important;
  }
  .pb-95-md {
    padding-bottom: 9.5rem !important;
  }
  .ml-95-md {
    margin-left: 9.5rem !important;
  }
  .pl-95-md {
    padding-left: 9.5rem !important;
  }
  .mr-95-md {
    margin-right: 9.5rem !important;
  }
  .pr-95-md {
    padding-right: 9.5rem !important;
  }
  .mt-100-md {
    margin-top: 10rem !important;
  }
  .pt-100-md {
    padding-top: 10rem !important;
  }
  .mb-100-md {
    margin-bottom: 10rem !important;
  }
  .pb-100-md {
    padding-bottom: 10rem !important;
  }
  .ml-100-md {
    margin-left: 10rem !important;
  }
  .pl-100-md {
    padding-left: 10rem !important;
  }
  .mr-100-md {
    margin-right: 10rem !important;
  }
  .pr-100-md {
    padding-right: 10rem !important;
  }
  .mt-110-md {
    margin-top: 11rem !important;
  }
  .pt-110-md {
    padding-top: 11rem !important;
  }
  .mb-110-md {
    margin-bottom: 11rem !important;
  }
  .pb-110-md {
    padding-bottom: 11rem !important;
  }
  .ml-110-md {
    margin-left: 11rem !important;
  }
  .pl-110-md {
    padding-left: 11rem !important;
  }
  .mr-110-md {
    margin-right: 11rem !important;
  }
  .pr-110-md {
    padding-right: 11rem !important;
  }
  .mt-120-md {
    margin-top: 12rem !important;
  }
  .pt-120-md {
    padding-top: 12rem !important;
  }
  .mb-120-md {
    margin-bottom: 12rem !important;
  }
  .pb-120-md {
    padding-bottom: 12rem !important;
  }
  .ml-120-md {
    margin-left: 12rem !important;
  }
  .pl-120-md {
    padding-left: 12rem !important;
  }
  .mr-120-md {
    margin-right: 12rem !important;
  }
  .pr-120-md {
    padding-right: 12rem !important;
  }
  .mt-130-md {
    margin-top: 13rem !important;
  }
  .pt-130-md {
    padding-top: 13rem !important;
  }
  .mb-130-md {
    margin-bottom: 13rem !important;
  }
  .pb-130-md {
    padding-bottom: 13rem !important;
  }
  .ml-130-md {
    margin-left: 13rem !important;
  }
  .pl-130-md {
    padding-left: 13rem !important;
  }
  .mr-130-md {
    margin-right: 13rem !important;
  }
  .pr-130-md {
    padding-right: 13rem !important;
  }
  .mt-140-md {
    margin-top: 14rem !important;
  }
  .pt-140-md {
    padding-top: 14rem !important;
  }
  .mb-140-md {
    margin-bottom: 14rem !important;
  }
  .pb-140-md {
    padding-bottom: 14rem !important;
  }
  .ml-140-md {
    margin-left: 14rem !important;
  }
  .pl-140-md {
    padding-left: 14rem !important;
  }
  .mr-140-md {
    margin-right: 14rem !important;
  }
  .pr-140-md {
    padding-right: 14rem !important;
  }
  .mt-150-md {
    margin-top: 15rem !important;
  }
  .pt-150-md {
    padding-top: 15rem !important;
  }
  .mb-150-md {
    margin-bottom: 15rem !important;
  }
  .pb-150-md {
    padding-bottom: 15rem !important;
  }
  .ml-150-md {
    margin-left: 15rem !important;
  }
  .pl-150-md {
    padding-left: 15rem !important;
  }
  .mr-150-md {
    margin-right: 15rem !important;
  }
  .pr-150-md {
    padding-right: 15rem !important;
  }
  .mt-160-md {
    margin-top: 16rem !important;
  }
  .pt-160-md {
    padding-top: 16rem !important;
  }
  .mb-160-md {
    margin-bottom: 16rem !important;
  }
  .pb-160-md {
    padding-bottom: 16rem !important;
  }
  .ml-160-md {
    margin-left: 16rem !important;
  }
  .pl-160-md {
    padding-left: 16rem !important;
  }
  .mr-160-md {
    margin-right: 16rem !important;
  }
  .pr-160-md {
    padding-right: 16rem !important;
  }
}
@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-55-sm {
    margin-top: 5.5rem !important;
  }
  .pt-55-sm {
    padding-top: 5.5rem !important;
  }
  .mb-55-sm {
    margin-bottom: 5.5rem !important;
  }
  .pb-55-sm {
    padding-bottom: 5.5rem !important;
  }
  .ml-55-sm {
    margin-left: 5.5rem !important;
  }
  .pl-55-sm {
    padding-left: 5.5rem !important;
  }
  .mr-55-sm {
    margin-right: 5.5rem !important;
  }
  .pr-55-sm {
    padding-right: 5.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-65-sm {
    margin-top: 6.5rem !important;
  }
  .pt-65-sm {
    padding-top: 6.5rem !important;
  }
  .mb-65-sm {
    margin-bottom: 6.5rem !important;
  }
  .pb-65-sm {
    padding-bottom: 6.5rem !important;
  }
  .ml-65-sm {
    margin-left: 6.5rem !important;
  }
  .pl-65-sm {
    padding-left: 6.5rem !important;
  }
  .mr-65-sm {
    margin-right: 6.5rem !important;
  }
  .pr-65-sm {
    padding-right: 6.5rem !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-75-sm {
    margin-top: 7.5rem !important;
  }
  .pt-75-sm {
    padding-top: 7.5rem !important;
  }
  .mb-75-sm {
    margin-bottom: 7.5rem !important;
  }
  .pb-75-sm {
    padding-bottom: 7.5rem !important;
  }
  .ml-75-sm {
    margin-left: 7.5rem !important;
  }
  .pl-75-sm {
    padding-left: 7.5rem !important;
  }
  .mr-75-sm {
    margin-right: 7.5rem !important;
  }
  .pr-75-sm {
    padding-right: 7.5rem !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-85-sm {
    margin-top: 8.5rem !important;
  }
  .pt-85-sm {
    padding-top: 8.5rem !important;
  }
  .mb-85-sm {
    margin-bottom: 8.5rem !important;
  }
  .pb-85-sm {
    padding-bottom: 8.5rem !important;
  }
  .ml-85-sm {
    margin-left: 8.5rem !important;
  }
  .pl-85-sm {
    padding-left: 8.5rem !important;
  }
  .mr-85-sm {
    margin-right: 8.5rem !important;
  }
  .pr-85-sm {
    padding-right: 8.5rem !important;
  }
  .mt-90-sm {
    margin-top: 9rem !important;
  }
  .pt-90-sm {
    padding-top: 9rem !important;
  }
  .mb-90-sm {
    margin-bottom: 9rem !important;
  }
  .pb-90-sm {
    padding-bottom: 9rem !important;
  }
  .ml-90-sm {
    margin-left: 9rem !important;
  }
  .pl-90-sm {
    padding-left: 9rem !important;
  }
  .mr-90-sm {
    margin-right: 9rem !important;
  }
  .pr-90-sm {
    padding-right: 9rem !important;
  }
  .mt-95-sm {
    margin-top: 9.5rem !important;
  }
  .pt-95-sm {
    padding-top: 9.5rem !important;
  }
  .mb-95-sm {
    margin-bottom: 9.5rem !important;
  }
  .pb-95-sm {
    padding-bottom: 9.5rem !important;
  }
  .ml-95-sm {
    margin-left: 9.5rem !important;
  }
  .pl-95-sm {
    padding-left: 9.5rem !important;
  }
  .mr-95-sm {
    margin-right: 9.5rem !important;
  }
  .pr-95-sm {
    padding-right: 9.5rem !important;
  }
  .mt-100-sm {
    margin-top: 10rem !important;
  }
  .pt-100-sm {
    padding-top: 10rem !important;
  }
  .mb-100-sm {
    margin-bottom: 10rem !important;
  }
  .pb-100-sm {
    padding-bottom: 10rem !important;
  }
  .ml-100-sm {
    margin-left: 10rem !important;
  }
  .pl-100-sm {
    padding-left: 10rem !important;
  }
  .mr-100-sm {
    margin-right: 10rem !important;
  }
  .pr-100-sm {
    padding-right: 10rem !important;
  }
  .mt-110-sm {
    margin-top: 11rem !important;
  }
  .pt-110-sm {
    padding-top: 11rem !important;
  }
  .mb-110-sm {
    margin-bottom: 11rem !important;
  }
  .pb-110-sm {
    padding-bottom: 11rem !important;
  }
  .ml-110-sm {
    margin-left: 11rem !important;
  }
  .pl-110-sm {
    padding-left: 11rem !important;
  }
  .mr-110-sm {
    margin-right: 11rem !important;
  }
  .pr-110-sm {
    padding-right: 11rem !important;
  }
  .mt-120-sm {
    margin-top: 12rem !important;
  }
  .pt-120-sm {
    padding-top: 12rem !important;
  }
  .mb-120-sm {
    margin-bottom: 12rem !important;
  }
  .pb-120-sm {
    padding-bottom: 12rem !important;
  }
  .ml-120-sm {
    margin-left: 12rem !important;
  }
  .pl-120-sm {
    padding-left: 12rem !important;
  }
  .mr-120-sm {
    margin-right: 12rem !important;
  }
  .pr-120-sm {
    padding-right: 12rem !important;
  }
  .mt-130-sm {
    margin-top: 13rem !important;
  }
  .pt-130-sm {
    padding-top: 13rem !important;
  }
  .mb-130-sm {
    margin-bottom: 13rem !important;
  }
  .pb-130-sm {
    padding-bottom: 13rem !important;
  }
  .ml-130-sm {
    margin-left: 13rem !important;
  }
  .pl-130-sm {
    padding-left: 13rem !important;
  }
  .mr-130-sm {
    margin-right: 13rem !important;
  }
  .pr-130-sm {
    padding-right: 13rem !important;
  }
  .mt-140-sm {
    margin-top: 14rem !important;
  }
  .pt-140-sm {
    padding-top: 14rem !important;
  }
  .mb-140-sm {
    margin-bottom: 14rem !important;
  }
  .pb-140-sm {
    padding-bottom: 14rem !important;
  }
  .ml-140-sm {
    margin-left: 14rem !important;
  }
  .pl-140-sm {
    padding-left: 14rem !important;
  }
  .mr-140-sm {
    margin-right: 14rem !important;
  }
  .pr-140-sm {
    padding-right: 14rem !important;
  }
  .mt-150-sm {
    margin-top: 15rem !important;
  }
  .pt-150-sm {
    padding-top: 15rem !important;
  }
  .mb-150-sm {
    margin-bottom: 15rem !important;
  }
  .pb-150-sm {
    padding-bottom: 15rem !important;
  }
  .ml-150-sm {
    margin-left: 15rem !important;
  }
  .pl-150-sm {
    padding-left: 15rem !important;
  }
  .mr-150-sm {
    margin-right: 15rem !important;
  }
  .pr-150-sm {
    padding-right: 15rem !important;
  }
  .mt-160-sm {
    margin-top: 16rem !important;
  }
  .pt-160-sm {
    padding-top: 16rem !important;
  }
  .mb-160-sm {
    margin-bottom: 16rem !important;
  }
  .pb-160-sm {
    padding-bottom: 16rem !important;
  }
  .ml-160-sm {
    margin-left: 16rem !important;
  }
  .pl-160-sm {
    padding-left: 16rem !important;
  }
  .mr-160-sm {
    margin-right: 16rem !important;
  }
  .pr-160-sm {
    padding-right: 16rem !important;
  }
}
/*floating
-----------------------------------------------------*/
.floating {
  background-color: #FFF;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 2rem 0;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
}
.floating-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.floating-flex .price-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.floating-flex .price-wrap .img {
  max-width: 116px;
  width: 100%;
  margin-top: -3rem;
}
.floating-flex .price-wrap .price .name {
  color: #1D2088;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-size: 2.8rem;
}
.floating-flex .price-wrap .price .num {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.floating-flex .price-wrap .price .num .single {
  font-size: 1.3rem;
  color: #FFF;
  background-color: #1D2088;
  padding: 0.5rem 1rem;
}
@media (max-width: 767px) {
  .floating-flex .price-wrap .price .num .single {
    font-size: 1.3rem;
  }
}
.floating-flex .price-wrap .price .num p {
  font-weight: bold;
}
.floating-flex .price-wrap .price .num p strong {
  font-size: 3rem;
}
.floating-flex .border {
  border-right: 1px solid #E6E6E6;
  width: 1px;
  height: 110px;
}
.floating-flex .btn {
  width: 38%;
}
.floating-flex .btn .otoku {
  margin-bottom: 1rem;
}
.floating-flex .btn .otoku p {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #DA3D24;
  font-size: 1.5rem;
  font-weight: bold;
}
.floating-flex .btn .otoku p::before, .floating-flex .btn .otoku p::after {
  content: "";
  background-color: #DA3D24;
  height: 2px;
  width: 22px;
}
.floating-flex .btn .otoku p::before {
  margin-right: 10px;
  transform: rotate(60deg);
}
.floating-flex .btn .otoku p::after {
  margin-left: 10px;
  transform: rotate(-60deg);
}

.floating_sm {
  background-color: #FFF;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
}
.floating_sm .btn {
  text-align: center;
}
.floating_sm .otoku {
  margin-bottom: 0.5rem;
}
.floating_sm .otoku p {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
}
.floating_sm .otoku p::before, .floating_sm .otoku p::after {
  content: "";
  background-color: #222;
  height: 2px;
  width: 22px;
}
.floating_sm .otoku p::before {
  margin-right: 10px;
  transform: rotate(60deg);
}
.floating_sm .otoku p::after {
  margin-left: 10px;
  transform: rotate(-60deg);
}
.floating_sm .otoku p strong {
  color: #D33502;
}

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

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

.container-ex {
  max-width: 1024px;
  padding: 0 5%;
  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-ex,
  .container-lg,
  .container-xl {
    padding: 0 2rem;
  }
}
.sec {
  padding: 6rem 0;
}

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

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

/*h
-----------------------------------------------------*/
.h-sec {
  width: 100%;
  text-align: center;
  position: relative;
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  .h-sec {
    margin-bottom: 6rem;
  }
}
.h-sec--inner {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.h-sec--inner p {
  color: #000;
  font-size: 1.3rem;
  line-height: 1;
  width: 100%;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .h-sec--inner p {
    margin-bottom: 1rem;
  }
}
.h-sec--inner h1 {
  font-size: 3.3rem;
  color: #000;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .h-sec--inner h1 {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .h-sec--inner h1 {
    font-size: 2.6rem;
  }
}
@media (max-width: 575px) {
  .h-sec--inner h1 {
    font-size: 2.2rem;
  }
}
.h-sec span {
  color: transparent;
  -webkit-text-stroke: 1px #BCDFCD;
  font-size: 13rem;
  line-height: 1;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .h-sec span {
    font-size: 10rem;
  }
}
@media (max-width: 575px) {
  .h-sec span {
    font-size: 7.5rem;
  }
}
.h-sec .en--w {
  color: #FFF;
  -webkit-text-stroke: 1px #FFF;
}
.h-sec--w p {
  color: #FFF;
}
.h-sec--w h1 {
  color: #FFF;
}

.h-sec01 {
  width: 100%;
  text-align: center;
  position: relative;
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  .h-sec01 {
    margin-bottom: 6rem;
  }
}
.h-sec01--inner {
  width: 100%;
}
.h-sec01--inner p {
  color: #000;
  font-size: 1.3rem;
  line-height: 1;
  width: 100%;
  margin-bottom: 2rem;
}
.h-sec01--inner h1 {
  font-size: 3.3rem;
  color: #000;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .h-sec01--inner h1 {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .h-sec01--inner h1 {
    font-size: 2.6rem;
  }
}
@media (max-width: 575px) {
  .h-sec01--inner h1 {
    font-size: 2.2rem;
  }
}
.h-sec01--w p {
  color: #FFF;
}
.h-sec01--w h1 {
  color: #FFF;
}

.h-sec02 {
  width: 100%;
  text-align: center;
  position: relative;
  margin-bottom: 8rem;
}
.h-sec02::after {
  content: "";
  width: 80px;
  height: 4px;
  background-color: #000;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5rem;
}
.h-sec02--inner {
  width: 100%;
  font-weight: 700;
}
.h-sec02--inner span {
  font-size: 2.2rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  display: inline-block;
}
@media (max-width: 575px) {
  .h-sec02--inner span {
    font-size: 2rem;
  }
}
.h-sec02--inner p {
  font-size: 3.6rem;
  color: #000;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .h-sec02--inner p {
    font-size: 3.4rem;
  }
}
.h-sec02--inner h1 {
  color: #000;
  font-size: 5.9rem;
  line-height: 1;
  width: 100%;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 575px) {
  .h-sec02--inner h1 {
    font-size: 5rem;
  }
}
.h-sec02--inner small {
  font-size: 3rem;
  vertical-align: super;
}

/*ul
-----------------------------------------------------*/
ul.list-dot li {
  padding-left: 1.5rem;
  text-indent: -1.5rem;
}
ul.list-dot li:before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #333;
  border-radius: 10px;
  vertical-align: middle;
  margin-right: 1rem;
  margin-bottom: 0.3rem;
}
ul.list-dot li a {
  color: #0f76f7;
}

ul.list-dot02 {
  list-style: disc;
  font-size: 1.8rem;
  padding-left: 3rem;
}
@media (max-width: 575px) {
  ul.list-dot02 {
    padding-left: 2rem;
  }
}

/*btn
-----------------------------------------------------*/
a.btn01 {
  background: linear-gradient(to right, #DA3B24, #FFB428);
  color: #FFF;
  font-weight: bold;
  text-decoration: none;
  border-radius: 80px;
  box-sizing: border-box;
  padding: 1.7rem 3rem;
  max-width: 340px;
  width: 100%;
  text-align: center;
  display: inline-block;
  position: relative;
}
a.btn01 .arrow {
  position: absolute;
  top: 50%;
  right: 2.4rem;
  transform: translateY(-50%);
  display: inline-block;
  width: 10px;
  height: 10px;
}
a.btn01 .arrow::before, a.btn01 .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1.5px);
  right: 0;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 1.5px) 50%;
}
a.btn01 .arrow::before {
  transform: rotate(45deg);
}
a.btn01 .arrow::after {
  transform: rotate(-45deg);
}
a.btn01--big {
  max-width: 492px;
  padding: 2.5rem 3rem;
  font-size: 1.8rem;
}

a.btn02 {
  background: linear-gradient(to right, #DA3B24, #FFB428);
  color: #FFF;
  font-weight: bold;
  text-decoration: none;
  box-sizing: border-box;
  padding: 1.7rem 3rem;
  max-width: 384px;
  width: 100%;
  text-align: center;
  display: inline-block;
  position: relative;
  font-size: 2rem;
  border-radius: 5px;
}
a.btn02 .arrow {
  position: absolute;
  top: 50%;
  right: 2.4rem;
  transform: translateY(-50%);
  display: inline-block;
  width: 10px;
  height: 10px;
}
a.btn02 .arrow::before, a.btn02 .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1.5px);
  right: 0;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 1.5px) 50%;
}
a.btn02 .arrow::before {
  transform: rotate(45deg);
}
a.btn02 .arrow::after {
  transform: rotate(-45deg);
}
a.btn02--sm {
  font-size: 1.8rem;
  padding: 1.5rem;
}

/*main
-----------------------------------------------------*/
.main-v img {
  width: 100%;
}

/*about
-----------------------------------------------------*/
.about {
  position: relative;
  padding-bottom: 18rem;
}
@media (max-width: 767px) {
  .about {
    padding-bottom: 10rem;
  }
}
.about::before {
  border-color: transparent #E4F4E9 transparent transparent;
  border-style: solid;
  border-width: 160px 100vw 0 0;
  bottom: 0;
  content: "";
  height: 0;
  position: absolute;
}
@media (max-width: 767px) {
  .about::before {
    border-width: 60px 100vw 0 0;
  }
}
.about .flex {
  gap: 2rem 4rem;
}
@media (max-width: 767px) {
  .about .flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.about .flex .col01 {
  max-width: 390px;
  width: 100%;
}
.about .flex .col02 {
  width: 100%;
}
@media (max-width: 767px) {
  .about .flex .col02 {
    order: 1;
  }
}
.about .flex .col02 .h-wrap h1 {
  line-height: 1.2;
}
.about .flex .col02 .h-wrap h1 .lato {
  color: #1D2088;
  font-size: 5.4rem;
  margin-right: 1rem;
}
@media (max-width: 767px) {
  .about .flex .col02 .h-wrap h1 .lato {
    font-size: 4rem;
  }
}
.about .flex .col02 .h-wrap .sub {
  color: #20992A;
  font-size: 1.3rem;
  font-weight: 700;
}

/*problem
-----------------------------------------------------*/
.problem {
  background-color: #E4F4E9;
  position: relative;
  padding-bottom: 22rem;
}
@media (max-width: 767px) {
  .problem {
    padding-bottom: 10rem;
    padding-top: 8rem;
  }
}
.problem::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100vw;
  height: 160px;
  background: linear-gradient(to right, #1CA05D 0%, #7CD857 100%);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  z-index: 1;
}
@media (max-width: 767px) {
  .problem::before {
    height: 60px;
  }
}
.problem-main {
  text-align: center;
}
.problem-main img {
  max-width: 710px;
  margin: 0 auto 6rem auto;
}
.problem-main p {
  font-size: 3.2rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .problem-main p {
    font-size: 2.2rem;
  }
}
@media (max-width: 575px) {
  .problem-main p {
    font-size: 2rem;
  }
}
.problem-main p span {
  color: #1D2088;
  font-weight: bold;
  font-size: 4.4rem;
}
@media (max-width: 767px) {
  .problem-main p span {
    font-size: 3.6rem;
  }
}
@media (max-width: 575px) {
  .problem-main p span {
    font-size: 3rem;
  }
}
.problem .bg-circle-l {
  bottom: 22rem !important;
}

.bg-circle-l {
  position: absolute;
  width: 550px;
  height: 550px;
  left: -28rem;
  bottom: 0;
}
.bg-circle-l::before {
  content: "";
  background-image: url(../images/bg-01.png);
  background-repeat: no-repeat;
  background-size: 550px;
  width: 550px;
  height: 550px;
  position: absolute;
}
.bg-circle-l--w::before {
  background-image: url(../images/bg-02.png);
}

.bg-circle-r,
.bg-circle-r2 {
  position: absolute;
  width: 550px;
  height: 550px;
  right: -28rem;
  top: 0;
}
.bg-circle-r::before,
.bg-circle-r2::before {
  content: "";
  background-image: url(../images/bg-01.png);
  background-repeat: no-repeat;
  background-size: 550px;
  width: 550px;
  height: 550px;
  position: absolute;
}
.bg-circle-r--w::before,
.bg-circle-r2--w::before {
  background-image: url(../images/bg-02.png);
}

/*reasons
-----------------------------------------------------*/
.reasons {
  background: linear-gradient(to right, #1CA05D, #7CD857);
  position: relative;
  padding-bottom: 22rem;
}
@media (max-width: 767px) {
  .reasons {
    padding-bottom: 10rem;
  }
}
.reasons::before {
  border-color: transparent #FFF transparent transparent;
  border-style: solid;
  border-width: 160px 100vw 0 0;
  bottom: -2px;
  content: "";
  height: 0;
  position: absolute;
}
@media (max-width: 767px) {
  .reasons::before {
    border-width: 60px 100vw 0 0;
  }
}
.reasons .colors-w {
  color: #FFF;
}
.reasons .bg-circle-r {
  top: 1rem;
  right: -23rem;
}
.reasons .bg-circle-r2 {
  bottom: 0;
  top: auto;
}
.reasons .bg-circle-l {
  top: 50%;
  transform: translateY(-50%);
}
.reasons .flex {
  gap: 6rem 4rem;
  flex-wrap: wrap;
}
.reasons .flex-box {
  background-color: #FFF;
  border-radius: 10px;
  position: relative;
  padding: 4.5rem 5rem;
  flex: 0 0 calc(50% - 2rem);
  box-sizing: border-box;
}
@media (max-width: 1299px) {
  .reasons .flex-box {
    flex: 0 0 100%;
  }
}
@media (max-width: 767px) {
  .reasons .flex-box {
    padding: 5rem 1.5rem 4rem 1.5rem;
  }
}
.reasons .flex-box h2 {
  font-size: 2.6rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .reasons .flex-box h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
  }
}
.reasons .flex-box--last {
  padding: 0;
  flex: 0 0 100%;
}
.reasons .flex-box--last .img {
  position: relative;
  border-radius: 10px 10px 0 0;
}
.reasons .flex-box--last .img h2 {
  margin-bottom: 0;
}
.reasons .flex-box--last .img h2 img {
  border-radius: 10px 10px 0 0;
}
.reasons .flex-box--last .img .medal {
  position: absolute;
  right: 0;
  bottom: -5rem;
  width: 160px;
}
@media (max-width: 767px) {
  .reasons .flex-box--last .img .medal {
    width: 110px;
    right: 1rem;
    bottom: -6rem;
  }
}
@media (max-width: 575px) {
  .reasons .flex-box--last .img .medal {
    width: 90px;
  }
}
.reasons .flex-box--last .text {
  background-image: url(../images/reason02.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 4.5rem 5rem;
  border-radius: 0 0 10px 10px;
}
@media (max-width: 767px) {
  .reasons .flex-box--last .text {
    padding: 3rem 1.5rem;
  }
}
.reasons .flex-box--last .text h3 {
  font-size: 1.8rem;
  padding: 0 1.5rem;
  background: transparent;
  border-left: solid 6px #AE9043;
  line-height: 1.4;
  margin-bottom: 2rem;
}
.reasons .flex-box--last .text strong {
  color: #C81900;
}
.reasons .num {
  position: absolute;
  left: -2.5rem;
  top: -2.5rem;
  z-index: 1;
}
@media (max-width: 767px) {
  .reasons .num {
    top: -4rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
.reasons .num img {
  width: 76px;
}
.reasons .ribbon-box {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.reasons .ribbon {
  display: inline-block;
  position: relative;
  min-height: 50px;
  line-height: 1.5;
  text-align: center;
  padding: 5px 0;
  font-size: 1.5rem;
  color: #FFF;
  box-sizing: border-box;
  white-space: normal;
}
@media (max-width: 575px) {
  .reasons .ribbon {
    font-size: 1.4rem;
  }
}
.reasons .ribbon::after {
  position: absolute;
  content: "";
  z-index: 1;
  top: 0;
  right: -1px;
  width: 0;
  height: 0;
  border-width: 26px 18px 28px 0;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}
.reasons .ribbon h3 {
  margin: 0;
  padding: 8px 30px 8px 15px;
  line-height: 1.4;
  text-align: left;
}
.reasons .ribbon--01 {
  background: #219771;
}
.reasons .ribbon--01 h3 {
  border-top: solid 1px #FFE101;
  border-bottom: solid 1px #FFE101;
}
.reasons .ribbon--02 {
  background: #B94B41;
}
.reasons .ribbon--02 h3 {
  border-top: solid 1px #FFE101;
  border-bottom: solid 1px #FFE101;
}
.reasons .ribbon--03 {
  background: #0F79C5;
}
.reasons .ribbon--03 h3 {
  border-top: solid 1px #FFE101;
  border-bottom: solid 1px #FFE101;
}
.reasons .ribbon--04 {
  background: #CA4298;
}
.reasons .ribbon--04 h3 {
  border-top: solid 1px #FFE101;
  border-bottom: solid 1px #FFE101;
}
.reasons .ribbon--05 {
  background: #C28015;
}
.reasons .ribbon--05 h3 {
  border-top: solid 1px #FFE101;
  border-bottom: solid 1px #FFE101;
}
.reasons .ribbon--06 {
  background: #004EA8;
}
.reasons .ribbon--06 h3 {
  border-top: solid 1px #FFF;
  border-bottom: solid 1px #FFF;
}
@media (max-width: 575px) {
  .reasons .ribbon--06::after {
    border-width: 38px 18px 38px 0;
  }
}
.reasons .ribbon--07 {
  background: #7DA314;
}
.reasons .ribbon--07 h3 {
  border-top: solid 1px #FFF;
  border-bottom: solid 1px #FFF;
}
@media (max-width: 575px) {
  .reasons .ribbon--07::after {
    border-width: 38px 18px 38px 0;
  }
}
.reasons .color-y {
  color: #C28015;
}
.reasons .color-b {
  color: #004EA8;
}

/*point
-----------------------------------------------------*/
.point {
  position: relative;
  padding-bottom: 22rem;
}
@media (max-width: 767px) {
  .point {
    padding-bottom: 10rem;
  }
}
.point .mame {
  position: absolute;
  z-index: 0;
  top: -6rem;
  right: -7rem;
  max-width: 490px;
  width: 100%;
}
@media (max-width: 1599px) {
  .point .mame {
    z-index: -1;
    top: 0rem;
    right: -10rem;
  }
}
@media (max-width: 1023px) {
  .point .mame {
    display: none;
  }
}
.point .mame_sm {
  max-width: 490px;
  width: 100%;
  margin: 2rem auto;
}
@media (max-width: 767px) {
  .point .mame_sm {
    max-width: 230px;
  }
}
.point .fukidashi {
  position: relative;
  display: inline-block;
  margin-bottom: 5rem;
  padding: 30px 90px;
  border: 2px solid #036b36;
  background-color: #ffffff;
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.4;
  color: #036b36;
}
@media (max-width: 1023px) {
  .point .fukidashi {
    font-size: 2.6rem;
    padding: 3rem 6rem;
  }
}
@media (max-width: 767px) {
  .point .fukidashi {
    font-size: 2.2rem;
    padding: 3rem 4rem;
  }
}
@media (max-width: 575px) {
  .point .fukidashi {
    font-size: 2rem;
    padding: 3rem 1.5rem;
  }
}
.point .fukidashi::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 24px 25px 0 25px;
  border-color: #036b36 transparent transparent;
  translate: -50% 100%;
}
.point .fukidashi::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 21.2px 22.1px 0 22.1px;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
}
.point-flex {
  display: flex;
  gap: 2.8rem;
}
@media (max-width: 1199px) {
  .point-flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.point-flex--box {
  background-color: #1CA05D;
  color: #FFF;
  padding: 3rem 2.5rem;
  flex: 1;
  box-sizing: border-box;
}
@media (max-width: 1199px) {
  .point-flex--box {
    width: calc(50% - 2.8rem);
    flex: none;
  }
}
@media (max-width: 767px) {
  .point-flex--box {
    width: 100%;
  }
}
.point-flex--box .h2-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 8rem;
}
.point-flex--box h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .point-flex--box h2 {
    font-size: 2.2rem;
  }
}
.point-flex--box .img {
  position: relative;
}
.point-flex--box .img .num {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 2.5rem;
  line-height: 1;
}
.point-flex--box .img .num span {
  font-size: 7rem;
}
.point-flex--box p {
  font-size: 1.8rem;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .point-flex--box p {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .point-flex--box p {
    font-size: 1.4rem;
  }
}

/*osusume
-----------------------------------------------------*/
.osusume {
  background-color: #E4F4E9;
  position: relative;
}
.osusume::before {
  border-color: transparent transparent transparent #E4F4E9;
  border-style: solid;
  border-width: 160px 0 0 100vw;
  top: -15.8rem;
  content: "";
  height: 0;
  position: absolute;
}
@media (max-width: 767px) {
  .osusume::before {
    border-width: 60px 0 0 100vw;
    top: -5.8rem;
  }
}
.osusume::after {
  border-color: #E4F4E9 transparent transparent transparent;
  border-style: solid;
  border-width: 160px 100vw 0 0;
  bottom: -15.8rem;
  content: "";
  height: 0;
  position: absolute;
}
@media (max-width: 767px) {
  .osusume::after {
    border-width: 60px 0 0 100vw;
    bottom: -5.8rem;
  }
}
.osusume .osusume-flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  flex-wrap: wrap;
  gap: 4rem 3rem;
  align-items: stretch;
}
@media (max-width: 767px) {
  .osusume .osusume-flex {
    grid-template-columns: repeat(1, 1fr);
  }
}
.osusume .osusume-flex--box {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  background-color: #009147;
  color: #FFF;
}
.osusume .osusume-flex--box .img {
  position: relative;
}
.osusume .osusume-flex--box .img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.osusume .osusume-flex--box .img p {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 4rem;
  background: linear-gradient(to bottom, #1CA05D, #7CD857);
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .osusume .osusume-flex--box .img p {
    font-size: 2.6rem;
    width: 46px;
    height: 46px;
  }
}
.osusume .osusume-flex--box .text {
  flex-grow: 1;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .osusume .osusume-flex--box .text {
    text-align: left;
  }
}
.osusume .osusume-flex--box .text h2 {
  font-size: 2.4rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
@media (max-width: 1023px) {
  .osusume .osusume-flex--box .text h2 {
    font-size: 2rem;
  }
}

/*voice
-----------------------------------------------------*/
.voice {
  padding-top: 22rem;
  padding-bottom: 8rem;
  background-image: url(../images/bg-voice.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}
@media (max-width: 767px) {
  .voice {
    padding-top: 10rem;
  }
}
.voice-list--box {
  background-color: #FFF;
  border-radius: 10px;
  padding: 4.5rem 4rem 4.5rem 13rem;
  position: relative;
  margin-top: 4rem;
  margin-left: 4rem;
}
.voice-list--box:first-of-type {
  margin-top: 0;
}
@media (max-width: 767px) {
  .voice-list--box:first-of-type {
    margin-top: 12rem;
  }
}
@media (max-width: 767px) {
  .voice-list--box {
    padding: 6rem 2.5rem 3rem 2.5rem;
    margin-left: 0;
    margin-top: 9rem;
  }
}
.voice-list--box .img {
  width: 154px;
  position: absolute;
  top: 50%;
  left: -5rem;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .voice-list--box .img {
    width: 120px;
    top: -7rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
.voice-list--box .text p {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .voice-list--box .text p {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .voice-list--box .text p {
    font-size: 1.4rem;
  }
}
.voice-list--box .text span {
  color: #1D2088;
  font-size: 1.4rem;
}

/*faq
-----------------------------------------------------*/
.faq {
  padding: 12rem 0 0 0;
}
@media (max-width: 767px) {
  .faq {
    padding: 6rem 0 0 0;
  }
}
.faq-box {
  background: #FFF;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 4rem 4.5rem;
  margin-top: 3rem;
}
.faq-box:first-of-type {
  margin-top: 0;
}
@media (max-width: 767px) {
  .faq-box {
    padding: 4rem;
  }
}
@media (max-width: 575px) {
  .faq-box {
    padding: 3rem;
  }
}
.faq-box .question {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  line-height: 1.4;
  color: #1D2088;
}
@media (max-width: 767px) {
  .faq-box .question {
    font-size: 1.8rem;
  }
}
@media (max-width: 575px) {
  .faq-box .question {
    font-size: 1.6rem;
  }
}
.faq-box .question:before {
  content: "Q";
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 2.5rem;
  color: #FFF;
  background-color: #1D2088;
  margin-right: 2rem;
  max-width: 50px;
  width: 100%;
  height: 50px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.faq-box .answer {
  margin-top: 0;
  margin-left: 2rem;
}
@media (max-width: 767px) {
  .faq-box .answer {
    margin-left: 0;
  }
}
.faq .img {
  margin-top: 12rem;
}
@media (max-width: 767px) {
  .faq .img {
    margin-top: 6rem;
  }
}

/*message
-----------------------------------------------------*/
.message {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 12rem;
}
.message .bg-circle-r {
  top: 70rem;
}
.message .h-sec01 h1 {
  font-size: 3rem;
  font-weight: 400;
}
@media (max-width: 767px) {
  .message .h-sec01 h1 {
    font-size: 2.8rem;
  }
}
.message .h-sec01 h1 span {
  font-size: 4rem;
}
@media (max-width: 767px) {
  .message .h-sec01 h1 span {
    font-size: 3.2rem;
  }
}
.message .h-sec01 h1 span strong {
  color: #1D2088;
}
.message-box01 {
  position: relative;
}
.message-box01--img {
  width: 100%;
  box-sizing: border-box;
}
.message-box01--text {
  position: absolute;
  top: 7rem;
  left: -7rem;
  background-color: #FFF;
  max-width: 670px;
  width: 100%;
  padding: 6rem;
  box-sizing: border-box;
}
@media (max-width: 1199px) {
  .message-box01--text {
    width: 58%;
    padding: 6rem 4rem;
    left: -4rem;
  }
}
@media (max-width: 1023px) {
  .message-box01--text {
    position: static;
    width: 100%;
    max-width: 100%;
    background-color: transparent;
    padding: 4rem 0;
  }
}
.message-box01--text .h-sec {
  margin-bottom: 5rem;
}
@media (max-width: 1023px) {
  .message-box01--text .h-sec {
    margin-bottom: 3rem;
  }
}
.message-box01--text .h-sec h1 {
  font-size: 2.2rem;
}
@media (max-width: 1023px) {
  .message-box01--text .h-sec h1 {
    font-size: 2.2rem;
  }
}
@media (max-width: 767px) {
  .message-box01--text .h-sec h1 {
    font-size: 2.2rem;
  }
}
@media (max-width: 575px) {
  .message-box01--text .h-sec h1 {
    font-size: 2.2rem;
  }
}
.message-box01--text .h-sec p {
  font-size: 1.4rem;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .message-box01--text .h-sec .en {
    font-size: 10rem;
  }
}
@media (max-width: 767px) {
  .message-box01--text .h-sec .en {
    font-size: 8rem;
  }
}
@media (max-width: 575px) {
  .message-box01--text .h-sec .en {
    font-size: 7rem;
  }
}
.message-box01--text h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
  line-height: 1.4;
}
@media (max-width: 1199px) {
  .message-box01--text h2 {
    font-size: 2.6rem;
  }
}
@media (max-width: 1023px) {
  .message-box01--text h2 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .message-box01--text h2 {
    font-size: 2.2rem;
  }
}
.message-box02 {
  display: flex;
  gap: 4rem 7rem;
  padding-top: 20rem;
}
@media (max-width: 1599px) {
  .message-box02 {
    padding-top: 26rem;
  }
}
@media (max-width: 1199px) {
  .message-box02 {
    padding-top: 40rem;
  }
}
@media (max-width: 1023px) {
  .message-box02 {
    padding-top: 4rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.message-box02--img {
  max-width: 580px;
  width: 100%;
}
@media (max-width: 1023px) {
  .message-box02--img {
    max-width: 100%;
  }
}
.message-box02--text {
  width: 100%;
}
.message-box02--text h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
  line-height: 1.4;
}
@media (max-width: 1199px) {
  .message-box02--text h2 {
    font-size: 2.6rem;
  }
}
@media (max-width: 1023px) {
  .message-box02--text h2 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .message-box02--text h2 {
    font-size: 2.2rem;
  }
}
.message-box02--text ul {
  list-style: disc;
  padding: 4rem 0 4rem 2rem;
}
.message-box02--text ul li {
  margin: 0 0.5rem;
}

/*plan
-----------------------------------------------------*/
.plan {
  background-image: url(../images/bg-plan.png);
  background-repeat: no-repeat;
  background-size: 100vw;
  position: relative;
  padding-top: 14%;
  padding-bottom: 1rem;
}
@media (max-width: 1023px) {
  .plan {
    background-image: none;
    padding-top: 0;
  }
}
.plan .bg-circle-l {
  z-index: -1;
  bottom: 12%;
}
.plan .bg-circle-r {
  z-index: -1;
  top: 28%;
}
.plan-flex {
  display: flex;
  align-items: center;
  gap: 0 5rem;
}
@media (max-width: 1199px) {
  .plan-flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.plan-flex .img {
  max-width: 520px;
  width: 100%;
}
@media (max-width: 1199px) {
  .plan-flex .img {
    margin-right: 10rem;
  }
}
@media (max-width: 1023px) {
  .plan-flex .img {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    max-width: none;
  }
}
.plan-flex .text {
  width: 100%;
}
.plan-flex .text h2 {
  font-size: 3.3rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
@media (max-width: 1023px) {
  .plan-flex .text h2 {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) {
  .plan-flex .text h2 {
    font-size: 2.4rem;
  }
}
@media (max-width: 575px) {
  .plan-flex .text h2 {
    font-size: 2.2rem;
  }
}
.plan-flex .text h2 strong {
  color: #1D2088;
  font-size: 4.4rem;
}
@media (max-width: 767px) {
  .plan-flex .text h2 strong {
    font-size: 3rem;
  }
}
.plan-flex .text .price {
  border-top: 2px solid #1D2088;
  margin-top: 3rem;
  padding-top: 3rem;
}
.plan-flex .text .price .name {
  color: #1D2088;
  line-height: 1;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .plan-flex .text .price .name {
    margin-bottom: 0.5rem;
    line-height: 0.8;
  }
}
.plan-flex .text .price .num {
  display: flex;
  align-items: center;
}
.plan-flex .text .price .num .single {
  font-size: 1.5rem;
  color: #FFF;
  background-color: #1D2088;
  padding: 0.5rem 1rem;
}
@media (max-width: 767px) {
  .plan-flex .text .price .num .single {
    font-size: 1.3rem;
  }
}
.plan-flex .text .price .num p {
  font-weight: bold;
}
.plan-flex .text .price .num p strong {
  color: #CE0003;
  font-size: 2.7rem;
  position: relative;
}
.plan-flex .text .price .num p strong::after {
  content: "";
  background-image: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 17px;
}
.plan .drink {
  border: 1px solid #1D2088;
  padding: 8rem 9rem 5rem 9rem;
  position: relative;
  margin-top: 8rem;
  background-color: #FFF;
}
@media (max-width: 1199px) {
  .plan .drink {
    padding: 8rem 4rem 5rem 4rem;
  }
}
@media (max-width: 575px) {
  .plan .drink {
    padding: 6rem 3rem 4rem 3rem;
  }
}
.plan .drink h2 {
  max-width: 570px;
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1023px) {
  .plan .drink h2 {
    min-width: 312px;
    max-width: none;
    width: 60%;
  }
}
@media (max-width: 767px) {
  .plan .drink h2 {
    width: 80%;
  }
}
@media (max-width: 575px) {
  .plan .drink h2 {
    width: 90%;
  }
}
.plan .drink .text {
  text-align: center;
}
.plan .drink .text-flex {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  gap: 6rem;
}
@media (max-width: 1023px) {
  .plan .drink .text-flex {
    flex-wrap: wrap;
  }
}
.plan .drink .text-flex--box {
  position: relative;
}
.plan .drink .text-flex--box .top h3 {
  color: #1D2088;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .plan .drink .text-flex--box .top h3 {
    font-size: 2.2rem;
  }
}
@media (max-width: 575px) {
  .plan .drink .text-flex--box .top h3 {
    font-size: 2rem;
  }
}
.plan .drink .text-flex--box .top h3 span {
  color: #222;
  font-size: 1.6rem;
  font-weight: 400;
}
@media (max-width: 575px) {
  .plan .drink .text-flex--box .top h3 span {
    font-size: 1.4rem;
  }
}
.plan .drink .text-flex--box .top p {
  background: linear-gradient(transparent 50%, #FFE732 50%);
  display: inline-block;
  font-weight: bold;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}
.plan .drink .text-flex--box .bottom p {
  font-size: 2rem;
  margin-top: 1rem;
}
.plan .drink .text-flex--box .day {
  width: 115px;
  height: 115px;
  position: absolute;
  right: -3rem;
  bottom: 0;
}
@media (max-width: 1023px) {
  .plan .drink .text-flex--box .day {
    width: 90px;
    height: 90px;
  }
}
.plan .plan-detail {
  margin-top: 6rem;
}
.plan .plan-detail h3 {
  font-size: 2.4rem;
  padding: 0 1.5rem;
  background: transparent;
  border-left: solid 6px #20992A;
  line-height: 1.4;
  margin-bottom: 3rem;
}
.plan .plan-detail table {
  width: 100%;
}
@media (max-width: 767px) {
  .plan .plan-detail table {
    border-top: 1px solid #C2C2C2;
  }
}
.plan .plan-detail table th,
.plan .plan-detail table td {
  border: 1px solid #C2C2C2;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .plan .plan-detail table th,
  .plan .plan-detail table td {
    display: block;
  }
}
.plan .plan-detail table th {
  background: linear-gradient(to right, #1CA05D, #7CD857);
  color: #FFF;
  vertical-align: middle;
  font-size: 2rem;
  width: 230px;
  padding: 4rem 2rem;
}
@media (max-width: 767px) {
  .plan .plan-detail table th {
    padding: 1rem 2rem;
    width: 100%;
    border-top: 0;
  }
}
.plan .plan-detail table td {
  padding: 4rem;
}
@media (max-width: 767px) {
  .plan .plan-detail table td {
    padding: 3rem 2rem;
    border-top: 0;
  }
}
.plan .plan-detail table td .otoku {
  background-color: #FFE101;
  color: #1D2088;
  font-size: 2rem;
  font-weight: bold;
  padding: 0.2rem 1rem;
  margin-bottom: 1rem;
  display: inline-block;
  margin-left: 3.5rem;
  margin-top: 1.5rem;
}
.plan .plan-detail table td .square {
  font-size: 2.4rem;
  font-weight: bold;
}
.plan .plan-detail table td .square span {
  color: #1D2088;
}
.plan .plan-detail table td .text {
  font-size: 2rem;
  margin: 0 0 0 3.5rem;
}
.plan .plan-detail table td .price0 {
  margin-left: 3.5rem;
}
.plan .plan-detail table td .price0 p {
  font-weight: bold;
  font-size: 2rem;
}
.plan .plan-detail table td .price0 p strong {
  color: #CE0003;
  font-size: 2.7rem;
  position: relative;
}
.plan .plan-detail table td .price {
  margin-left: 3.5rem;
  margin-top: 3rem;
}
.plan .plan-detail table td .price p {
  font-weight: bold;
  font-size: 2rem;
}
.plan .plan-detail table td .price p strong {
  color: #CE0003;
  font-size: 2.7rem;
  position: relative;
}
.plan .plan-detail table td .price p strong::after {
  content: "";
  background-image: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 17px;
}
.plan .plan-detail table td .price p .dashed {
  padding: 0.5rem 1.5rem;
  margin-left: 1.5rem;
  display: inline-block;
  background-image: repeating-linear-gradient(90deg, #1d2088, #1d2088 8px, transparent 8px, transparent 13px), repeating-linear-gradient(180deg, #1d2088, #1d2088 8px, transparent 8px, transparent 13px), repeating-linear-gradient(90deg, #1d2088, #1d2088 8px, transparent 8px, transparent 13px), repeating-linear-gradient(180deg, #1d2088, #1d2088 8px, transparent 8px, transparent 13px);
  background-position: left top, right top, left bottom, left top;
  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
  background-size: 100% 2px, 2px 100%, 100% 2px, 2px 100%;
}
@media (max-width: 1023px) {
  .plan .plan-detail table td .price p .dashed {
    margin: 1rem 0 0 0;
  }
}
.plan .banner {
  text-align: center;
  margin-top: 4rem;
}

/*product
-----------------------------------------------------*/
.product {
  padding: 12rem 0;
}
@media (max-width: 767px) {
  .product {
    padding: 6rem 0;
  }
}
@media (max-width: 767px) {
  .product .h-sec {
    margin-bottom: 3rem;
  }
}
.product-flex {
  display: flex;
  gap: 0 5rem;
}
@media (max-width: 1023px) {
  .product-flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.product-flex .img {
  position: relative;
  max-width: 410px;
  width: 100%;
}
@media (max-width: 1023px) {
  .product-flex .img {
    margin-right: 13rem;
  }
}
@media (max-width: 575px) {
  .product-flex .img {
    max-width: 236px;
    margin-right: 8rem;
  }
}
.product-flex .img::after {
  content: "";
  height: 300px;
  width: 90vw;
  background: linear-gradient(to right, #1CA05D, #7CD857);
  position: absolute;
  left: calc(-1 * (100vw - 100%) / 1);
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
@media (max-width: 575px) {
  .product-flex .img::after {
    width: 86vw;
    height: 180px;
  }
}
.product-flex .text {
  width: 100%;
}
.product-flex .text dl {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  margin-top: 1.5rem;
  gap: 1rem 1.5rem;
}
.product-flex .text dl:first-of-type {
  margin-top: 0;
}
@media (max-width: 575px) {
  .product-flex .text dl {
    flex-wrap: wrap;
  }
}
.product-flex .text dl dt {
  color: #1D2088;
  font-size: 1.3rem;
  font-weight: 500;
  width: 110px;
  padding: 0.5rem 0;
  box-sizing: border-box;
  border: 1px solid #1D2088;
  display: inline-block;
  text-align: center;
}
.product-flex .text dl dd {
  flex: 1;
}
@media (max-width: 575px) {
  .product-flex .text dl dd {
    width: 100%;
    flex: none;
  }
}

/*apply
-----------------------------------------------------*/
.apply {
  background-color: #F6F6F6;
}
.apply .link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #222;
  text-decoration: none;
  text-align: center;
  margin-top: 3rem;
}
.apply .link::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 8px solid #db3d24;
  border-right: 0;
}

/*footer
-----------------------------------------------------*/
.footer {
  color: #FFF;
  background: linear-gradient(to right, #1CA05D, #7CD857);
  padding: 8rem 0 3rem 0;
  margin-bottom: 150px;
}
@media (max-width: 1023px) {
  .footer {
    margin-bottom: 92.39px;
  }
}
.footer ul {
  font-size: 1.3rem;
  display: flex;
  justify-content: center;
  gap: 0 3rem;
  margin-top: 5rem;
}
@media (max-width: 575px) {
  .footer ul {
    font-size: 1.2rem;
  }
}
.footer ul a {
  text-decoration: none;
  color: #FFF;
}

.itemarea {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 447px) {
  .itemarea {
    display: block;
  }
}
.itemarea .free {
  display: flex;
  margin-top: 3rem;
  color: #DA3D24;
  font-size: 1.4rem;
  font-weight: bold;
  border: solid 1px #DA3D24;
  box-sizing: border-box;
  padding: 0.2rem 1rem;
  border-radius: 500px;
}
.itemarea .free-icon {
  width: 24px;
  margin-right: 0.5rem;
}
@media screen and (max-width: 447px) {
  .itemarea .free {
    margin-top: 0;
    width: 110px;
  }
}

@media screen and (max-width: 447px) {
  .freebox {
    display: flex;
    justify-content: flex-end;
  }
}/*# sourceMappingURL=style.css.map */