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

img {
  vertical-align: top;
}

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

body {
  line-height: 1;
}

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

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

del {
  text-decoration: line-through;
}

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

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

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

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

body {
  color: #374151;
  /*font: 1.6rem/1.8 YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;*/
  font: 1.6rem/1.8 "Noto Sans JP", sans-serif;
  font-weight: 400;
  overflow-wrap: break-word;
  word-break: break-word;
  overflow: hidden;
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
    font-weight: 400;
  }
}

/* link
-----------------------------------------------------*/
a {
  color: #E6004C;
}
a:hover, a:active, a:focus {
  color: rgb(255, 128, 169.9652173913);
}
a {
  transition: 0.3s linear;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

ol {
  padding-left: 1em;
}

.float-l {
  float: left;
}

.float-r {
  float: right;
}

.orange {
  color: #f08200;
}

.en {
  font-family: "Josefin Sans", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.mincho {
  font: 1.6rem/1.8 "Noto Serif CJK JP", serif;
}

.gothic {
  font: 1.6rem/1.8 "Noto Sans JP", sans-serif;
}

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

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

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

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

.color-main {
  color: #E6004C !important;
}

.color-accent01 {
  color: #2A9D8F !important;
}

.color-caution {
  color: !important;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

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

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

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

.pos-r {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1199px) {
  .mt-0-xl {
    margin-top: 0rem !important;
  }
  .pt-0-xl {
    padding-top: 0rem !important;
  }
  .mb-0-xl {
    margin-bottom: 0rem !important;
  }
  .pb-0-xl {
    padding-bottom: 0rem !important;
  }
  .ml-0-xl {
    margin-left: 0rem !important;
  }
  .pl-0-xl {
    padding-left: 0rem !important;
  }
  .mr-0-xl {
    margin-right: 0rem !important;
  }
  .pr-0-xl {
    padding-right: 0rem !important;
  }
  .mt-5-xl {
    margin-top: 0.5rem !important;
  }
  .pt-5-xl {
    padding-top: 0.5rem !important;
  }
  .mb-5-xl {
    margin-bottom: 0.5rem !important;
  }
  .pb-5-xl {
    padding-bottom: 0.5rem !important;
  }
  .ml-5-xl {
    margin-left: 0.5rem !important;
  }
  .pl-5-xl {
    padding-left: 0.5rem !important;
  }
  .mr-5-xl {
    margin-right: 0.5rem !important;
  }
  .pr-5-xl {
    padding-right: 0.5rem !important;
  }
  .mt-10-xl {
    margin-top: 1rem !important;
  }
  .pt-10-xl {
    padding-top: 1rem !important;
  }
  .mb-10-xl {
    margin-bottom: 1rem !important;
  }
  .pb-10-xl {
    padding-bottom: 1rem !important;
  }
  .ml-10-xl {
    margin-left: 1rem !important;
  }
  .pl-10-xl {
    padding-left: 1rem !important;
  }
  .mr-10-xl {
    margin-right: 1rem !important;
  }
  .pr-10-xl {
    padding-right: 1rem !important;
  }
  .mt-15-xl {
    margin-top: 1.5rem !important;
  }
  .pt-15-xl {
    padding-top: 1.5rem !important;
  }
  .mb-15-xl {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-xl {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-xl {
    margin-left: 1.5rem !important;
  }
  .pl-15-xl {
    padding-left: 1.5rem !important;
  }
  .mr-15-xl {
    margin-right: 1.5rem !important;
  }
  .pr-15-xl {
    padding-right: 1.5rem !important;
  }
  .mt-20-xl {
    margin-top: 2rem !important;
  }
  .pt-20-xl {
    padding-top: 2rem !important;
  }
  .mb-20-xl {
    margin-bottom: 2rem !important;
  }
  .pb-20-xl {
    padding-bottom: 2rem !important;
  }
  .ml-20-xl {
    margin-left: 2rem !important;
  }
  .pl-20-xl {
    padding-left: 2rem !important;
  }
  .mr-20-xl {
    margin-right: 2rem !important;
  }
  .pr-20-xl {
    padding-right: 2rem !important;
  }
  .mt-25-xl {
    margin-top: 2.5rem !important;
  }
  .pt-25-xl {
    padding-top: 2.5rem !important;
  }
  .mb-25-xl {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-xl {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-xl {
    margin-left: 2.5rem !important;
  }
  .pl-25-xl {
    padding-left: 2.5rem !important;
  }
  .mr-25-xl {
    margin-right: 2.5rem !important;
  }
  .pr-25-xl {
    padding-right: 2.5rem !important;
  }
  .mt-30-xl {
    margin-top: 3rem !important;
  }
  .pt-30-xl {
    padding-top: 3rem !important;
  }
  .mb-30-xl {
    margin-bottom: 3rem !important;
  }
  .pb-30-xl {
    padding-bottom: 3rem !important;
  }
  .ml-30-xl {
    margin-left: 3rem !important;
  }
  .pl-30-xl {
    padding-left: 3rem !important;
  }
  .mr-30-xl {
    margin-right: 3rem !important;
  }
  .pr-30-xl {
    padding-right: 3rem !important;
  }
  .mt-35-xl {
    margin-top: 3.5rem !important;
  }
  .pt-35-xl {
    padding-top: 3.5rem !important;
  }
  .mb-35-xl {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-xl {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-xl {
    margin-left: 3.5rem !important;
  }
  .pl-35-xl {
    padding-left: 3.5rem !important;
  }
  .mr-35-xl {
    margin-right: 3.5rem !important;
  }
  .pr-35-xl {
    padding-right: 3.5rem !important;
  }
  .mt-40-xl {
    margin-top: 4rem !important;
  }
  .pt-40-xl {
    padding-top: 4rem !important;
  }
  .mb-40-xl {
    margin-bottom: 4rem !important;
  }
  .pb-40-xl {
    padding-bottom: 4rem !important;
  }
  .ml-40-xl {
    margin-left: 4rem !important;
  }
  .pl-40-xl {
    padding-left: 4rem !important;
  }
  .mr-40-xl {
    margin-right: 4rem !important;
  }
  .pr-40-xl {
    padding-right: 4rem !important;
  }
  .mt-45-xl {
    margin-top: 4.5rem !important;
  }
  .pt-45-xl {
    padding-top: 4.5rem !important;
  }
  .mb-45-xl {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-xl {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-xl {
    margin-left: 4.5rem !important;
  }
  .pl-45-xl {
    padding-left: 4.5rem !important;
  }
  .mr-45-xl {
    margin-right: 4.5rem !important;
  }
  .pr-45-xl {
    padding-right: 4.5rem !important;
  }
  .mt-50-xl {
    margin-top: 5rem !important;
  }
  .pt-50-xl {
    padding-top: 5rem !important;
  }
  .mb-50-xl {
    margin-bottom: 5rem !important;
  }
  .pb-50-xl {
    padding-bottom: 5rem !important;
  }
  .ml-50-xl {
    margin-left: 5rem !important;
  }
  .pl-50-xl {
    padding-left: 5rem !important;
  }
  .mr-50-xl {
    margin-right: 5rem !important;
  }
  .pr-50-xl {
    padding-right: 5rem !important;
  }
  .mt-60-xl {
    margin-top: 6rem !important;
  }
  .pt-60-xl {
    padding-top: 6rem !important;
  }
  .mb-60-xl {
    margin-bottom: 6rem !important;
  }
  .pb-60-xl {
    padding-bottom: 6rem !important;
  }
  .ml-60-xl {
    margin-left: 6rem !important;
  }
  .pl-60-xl {
    padding-left: 6rem !important;
  }
  .mr-60-xl {
    margin-right: 6rem !important;
  }
  .pr-60-xl {
    padding-right: 6rem !important;
  }
  .mt-70-xl {
    margin-top: 7rem !important;
  }
  .pt-70-xl {
    padding-top: 7rem !important;
  }
  .mb-70-xl {
    margin-bottom: 7rem !important;
  }
  .pb-70-xl {
    padding-bottom: 7rem !important;
  }
  .ml-70-xl {
    margin-left: 7rem !important;
  }
  .pl-70-xl {
    padding-left: 7rem !important;
  }
  .mr-70-xl {
    margin-right: 7rem !important;
  }
  .pr-70-xl {
    padding-right: 7rem !important;
  }
  .mt-80-xl {
    margin-top: 8rem !important;
  }
  .pt-80-xl {
    padding-top: 8rem !important;
  }
  .mb-80-xl {
    margin-bottom: 8rem !important;
  }
  .pb-80-xl {
    padding-bottom: 8rem !important;
  }
  .ml-80-xl {
    margin-left: 8rem !important;
  }
  .pl-80-xl {
    padding-left: 8rem !important;
  }
  .mr-80-xl {
    margin-right: 8rem !important;
  }
  .pr-80-xl {
    padding-right: 8rem !important;
  }
  .mt-100-xl {
    margin-top: 10rem !important;
  }
  .pt-100-xl {
    padding-top: 10rem !important;
  }
  .mb-100-xl {
    margin-bottom: 10rem !important;
  }
  .pb-100-xl {
    padding-bottom: 10rem !important;
  }
  .ml-100-xl {
    margin-left: 10rem !important;
  }
  .pl-100-xl {
    padding-left: 10rem !important;
  }
  .mr-100-xl {
    margin-right: 10rem !important;
  }
  .pr-100-xl {
    padding-right: 10rem !important;
  }
}
@media (max-width: 1023px) {
  .mt-0-lg {
    margin-top: 0rem !important;
  }
  .pt-0-lg {
    padding-top: 0rem !important;
  }
  .mb-0-lg {
    margin-bottom: 0rem !important;
  }
  .pb-0-lg {
    padding-bottom: 0rem !important;
  }
  .ml-0-lg {
    margin-left: 0rem !important;
  }
  .pl-0-lg {
    padding-left: 0rem !important;
  }
  .mr-0-lg {
    margin-right: 0rem !important;
  }
  .pr-0-lg {
    padding-right: 0rem !important;
  }
  .mt-5-lg {
    margin-top: 0.5rem !important;
  }
  .pt-5-lg {
    padding-top: 0.5rem !important;
  }
  .mb-5-lg {
    margin-bottom: 0.5rem !important;
  }
  .pb-5-lg {
    padding-bottom: 0.5rem !important;
  }
  .ml-5-lg {
    margin-left: 0.5rem !important;
  }
  .pl-5-lg {
    padding-left: 0.5rem !important;
  }
  .mr-5-lg {
    margin-right: 0.5rem !important;
  }
  .pr-5-lg {
    padding-right: 0.5rem !important;
  }
  .mt-10-lg {
    margin-top: 1rem !important;
  }
  .pt-10-lg {
    padding-top: 1rem !important;
  }
  .mb-10-lg {
    margin-bottom: 1rem !important;
  }
  .pb-10-lg {
    padding-bottom: 1rem !important;
  }
  .ml-10-lg {
    margin-left: 1rem !important;
  }
  .pl-10-lg {
    padding-left: 1rem !important;
  }
  .mr-10-lg {
    margin-right: 1rem !important;
  }
  .pr-10-lg {
    padding-right: 1rem !important;
  }
  .mt-15-lg {
    margin-top: 1.5rem !important;
  }
  .pt-15-lg {
    padding-top: 1.5rem !important;
  }
  .mb-15-lg {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-lg {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-lg {
    margin-left: 1.5rem !important;
  }
  .pl-15-lg {
    padding-left: 1.5rem !important;
  }
  .mr-15-lg {
    margin-right: 1.5rem !important;
  }
  .pr-15-lg {
    padding-right: 1.5rem !important;
  }
  .mt-20-lg {
    margin-top: 2rem !important;
  }
  .pt-20-lg {
    padding-top: 2rem !important;
  }
  .mb-20-lg {
    margin-bottom: 2rem !important;
  }
  .pb-20-lg {
    padding-bottom: 2rem !important;
  }
  .ml-20-lg {
    margin-left: 2rem !important;
  }
  .pl-20-lg {
    padding-left: 2rem !important;
  }
  .mr-20-lg {
    margin-right: 2rem !important;
  }
  .pr-20-lg {
    padding-right: 2rem !important;
  }
  .mt-25-lg {
    margin-top: 2.5rem !important;
  }
  .pt-25-lg {
    padding-top: 2.5rem !important;
  }
  .mb-25-lg {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-lg {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-lg {
    margin-left: 2.5rem !important;
  }
  .pl-25-lg {
    padding-left: 2.5rem !important;
  }
  .mr-25-lg {
    margin-right: 2.5rem !important;
  }
  .pr-25-lg {
    padding-right: 2.5rem !important;
  }
  .mt-30-lg {
    margin-top: 3rem !important;
  }
  .pt-30-lg {
    padding-top: 3rem !important;
  }
  .mb-30-lg {
    margin-bottom: 3rem !important;
  }
  .pb-30-lg {
    padding-bottom: 3rem !important;
  }
  .ml-30-lg {
    margin-left: 3rem !important;
  }
  .pl-30-lg {
    padding-left: 3rem !important;
  }
  .mr-30-lg {
    margin-right: 3rem !important;
  }
  .pr-30-lg {
    padding-right: 3rem !important;
  }
  .mt-35-lg {
    margin-top: 3.5rem !important;
  }
  .pt-35-lg {
    padding-top: 3.5rem !important;
  }
  .mb-35-lg {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-lg {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-lg {
    margin-left: 3.5rem !important;
  }
  .pl-35-lg {
    padding-left: 3.5rem !important;
  }
  .mr-35-lg {
    margin-right: 3.5rem !important;
  }
  .pr-35-lg {
    padding-right: 3.5rem !important;
  }
  .mt-40-lg {
    margin-top: 4rem !important;
  }
  .pt-40-lg {
    padding-top: 4rem !important;
  }
  .mb-40-lg {
    margin-bottom: 4rem !important;
  }
  .pb-40-lg {
    padding-bottom: 4rem !important;
  }
  .ml-40-lg {
    margin-left: 4rem !important;
  }
  .pl-40-lg {
    padding-left: 4rem !important;
  }
  .mr-40-lg {
    margin-right: 4rem !important;
  }
  .pr-40-lg {
    padding-right: 4rem !important;
  }
  .mt-45-lg {
    margin-top: 4.5rem !important;
  }
  .pt-45-lg {
    padding-top: 4.5rem !important;
  }
  .mb-45-lg {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-lg {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-lg {
    margin-left: 4.5rem !important;
  }
  .pl-45-lg {
    padding-left: 4.5rem !important;
  }
  .mr-45-lg {
    margin-right: 4.5rem !important;
  }
  .pr-45-lg {
    padding-right: 4.5rem !important;
  }
  .mt-50-lg {
    margin-top: 5rem !important;
  }
  .pt-50-lg {
    padding-top: 5rem !important;
  }
  .mb-50-lg {
    margin-bottom: 5rem !important;
  }
  .pb-50-lg {
    padding-bottom: 5rem !important;
  }
  .ml-50-lg {
    margin-left: 5rem !important;
  }
  .pl-50-lg {
    padding-left: 5rem !important;
  }
  .mr-50-lg {
    margin-right: 5rem !important;
  }
  .pr-50-lg {
    padding-right: 5rem !important;
  }
  .mt-60-lg {
    margin-top: 6rem !important;
  }
  .pt-60-lg {
    padding-top: 6rem !important;
  }
  .mb-60-lg {
    margin-bottom: 6rem !important;
  }
  .pb-60-lg {
    padding-bottom: 6rem !important;
  }
  .ml-60-lg {
    margin-left: 6rem !important;
  }
  .pl-60-lg {
    padding-left: 6rem !important;
  }
  .mr-60-lg {
    margin-right: 6rem !important;
  }
  .pr-60-lg {
    padding-right: 6rem !important;
  }
  .mt-70-lg {
    margin-top: 7rem !important;
  }
  .pt-70-lg {
    padding-top: 7rem !important;
  }
  .mb-70-lg {
    margin-bottom: 7rem !important;
  }
  .pb-70-lg {
    padding-bottom: 7rem !important;
  }
  .ml-70-lg {
    margin-left: 7rem !important;
  }
  .pl-70-lg {
    padding-left: 7rem !important;
  }
  .mr-70-lg {
    margin-right: 7rem !important;
  }
  .pr-70-lg {
    padding-right: 7rem !important;
  }
  .mt-80-lg {
    margin-top: 8rem !important;
  }
  .pt-80-lg {
    padding-top: 8rem !important;
  }
  .mb-80-lg {
    margin-bottom: 8rem !important;
  }
  .pb-80-lg {
    padding-bottom: 8rem !important;
  }
  .ml-80-lg {
    margin-left: 8rem !important;
  }
  .pl-80-lg {
    padding-left: 8rem !important;
  }
  .mr-80-lg {
    margin-right: 8rem !important;
  }
  .pr-80-lg {
    padding-right: 8rem !important;
  }
  .mt-100-lg {
    margin-top: 10rem !important;
  }
  .pt-100-lg {
    padding-top: 10rem !important;
  }
  .mb-100-lg {
    margin-bottom: 10rem !important;
  }
  .pb-100-lg {
    padding-bottom: 10rem !important;
  }
  .ml-100-lg {
    margin-left: 10rem !important;
  }
  .pl-100-lg {
    padding-left: 10rem !important;
  }
  .mr-100-lg {
    margin-right: 10rem !important;
  }
  .pr-100-lg {
    padding-right: 10rem !important;
  }
}
@media (max-width: 767px) {
  .mt-0-md {
    margin-top: 0rem !important;
  }
  .pt-0-md {
    padding-top: 0rem !important;
  }
  .mb-0-md {
    margin-bottom: 0rem !important;
  }
  .pb-0-md {
    padding-bottom: 0rem !important;
  }
  .ml-0-md {
    margin-left: 0rem !important;
  }
  .pl-0-md {
    padding-left: 0rem !important;
  }
  .mr-0-md {
    margin-right: 0rem !important;
  }
  .pr-0-md {
    padding-right: 0rem !important;
  }
  .mt-5-md {
    margin-top: 0.5rem !important;
  }
  .pt-5-md {
    padding-top: 0.5rem !important;
  }
  .mb-5-md {
    margin-bottom: 0.5rem !important;
  }
  .pb-5-md {
    padding-bottom: 0.5rem !important;
  }
  .ml-5-md {
    margin-left: 0.5rem !important;
  }
  .pl-5-md {
    padding-left: 0.5rem !important;
  }
  .mr-5-md {
    margin-right: 0.5rem !important;
  }
  .pr-5-md {
    padding-right: 0.5rem !important;
  }
  .mt-10-md {
    margin-top: 1rem !important;
  }
  .pt-10-md {
    padding-top: 1rem !important;
  }
  .mb-10-md {
    margin-bottom: 1rem !important;
  }
  .pb-10-md {
    padding-bottom: 1rem !important;
  }
  .ml-10-md {
    margin-left: 1rem !important;
  }
  .pl-10-md {
    padding-left: 1rem !important;
  }
  .mr-10-md {
    margin-right: 1rem !important;
  }
  .pr-10-md {
    padding-right: 1rem !important;
  }
  .mt-15-md {
    margin-top: 1.5rem !important;
  }
  .pt-15-md {
    padding-top: 1.5rem !important;
  }
  .mb-15-md {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-md {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-md {
    margin-left: 1.5rem !important;
  }
  .pl-15-md {
    padding-left: 1.5rem !important;
  }
  .mr-15-md {
    margin-right: 1.5rem !important;
  }
  .pr-15-md {
    padding-right: 1.5rem !important;
  }
  .mt-20-md {
    margin-top: 2rem !important;
  }
  .pt-20-md {
    padding-top: 2rem !important;
  }
  .mb-20-md {
    margin-bottom: 2rem !important;
  }
  .pb-20-md {
    padding-bottom: 2rem !important;
  }
  .ml-20-md {
    margin-left: 2rem !important;
  }
  .pl-20-md {
    padding-left: 2rem !important;
  }
  .mr-20-md {
    margin-right: 2rem !important;
  }
  .pr-20-md {
    padding-right: 2rem !important;
  }
  .mt-25-md {
    margin-top: 2.5rem !important;
  }
  .pt-25-md {
    padding-top: 2.5rem !important;
  }
  .mb-25-md {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-md {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-md {
    margin-left: 2.5rem !important;
  }
  .pl-25-md {
    padding-left: 2.5rem !important;
  }
  .mr-25-md {
    margin-right: 2.5rem !important;
  }
  .pr-25-md {
    padding-right: 2.5rem !important;
  }
  .mt-30-md {
    margin-top: 3rem !important;
  }
  .pt-30-md {
    padding-top: 3rem !important;
  }
  .mb-30-md {
    margin-bottom: 3rem !important;
  }
  .pb-30-md {
    padding-bottom: 3rem !important;
  }
  .ml-30-md {
    margin-left: 3rem !important;
  }
  .pl-30-md {
    padding-left: 3rem !important;
  }
  .mr-30-md {
    margin-right: 3rem !important;
  }
  .pr-30-md {
    padding-right: 3rem !important;
  }
  .mt-35-md {
    margin-top: 3.5rem !important;
  }
  .pt-35-md {
    padding-top: 3.5rem !important;
  }
  .mb-35-md {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-md {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-md {
    margin-left: 3.5rem !important;
  }
  .pl-35-md {
    padding-left: 3.5rem !important;
  }
  .mr-35-md {
    margin-right: 3.5rem !important;
  }
  .pr-35-md {
    padding-right: 3.5rem !important;
  }
  .mt-40-md {
    margin-top: 4rem !important;
  }
  .pt-40-md {
    padding-top: 4rem !important;
  }
  .mb-40-md {
    margin-bottom: 4rem !important;
  }
  .pb-40-md {
    padding-bottom: 4rem !important;
  }
  .ml-40-md {
    margin-left: 4rem !important;
  }
  .pl-40-md {
    padding-left: 4rem !important;
  }
  .mr-40-md {
    margin-right: 4rem !important;
  }
  .pr-40-md {
    padding-right: 4rem !important;
  }
  .mt-45-md {
    margin-top: 4.5rem !important;
  }
  .pt-45-md {
    padding-top: 4.5rem !important;
  }
  .mb-45-md {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-md {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-md {
    margin-left: 4.5rem !important;
  }
  .pl-45-md {
    padding-left: 4.5rem !important;
  }
  .mr-45-md {
    margin-right: 4.5rem !important;
  }
  .pr-45-md {
    padding-right: 4.5rem !important;
  }
  .mt-50-md {
    margin-top: 5rem !important;
  }
  .pt-50-md {
    padding-top: 5rem !important;
  }
  .mb-50-md {
    margin-bottom: 5rem !important;
  }
  .pb-50-md {
    padding-bottom: 5rem !important;
  }
  .ml-50-md {
    margin-left: 5rem !important;
  }
  .pl-50-md {
    padding-left: 5rem !important;
  }
  .mr-50-md {
    margin-right: 5rem !important;
  }
  .pr-50-md {
    padding-right: 5rem !important;
  }
  .mt-60-md {
    margin-top: 6rem !important;
  }
  .pt-60-md {
    padding-top: 6rem !important;
  }
  .mb-60-md {
    margin-bottom: 6rem !important;
  }
  .pb-60-md {
    padding-bottom: 6rem !important;
  }
  .ml-60-md {
    margin-left: 6rem !important;
  }
  .pl-60-md {
    padding-left: 6rem !important;
  }
  .mr-60-md {
    margin-right: 6rem !important;
  }
  .pr-60-md {
    padding-right: 6rem !important;
  }
  .mt-70-md {
    margin-top: 7rem !important;
  }
  .pt-70-md {
    padding-top: 7rem !important;
  }
  .mb-70-md {
    margin-bottom: 7rem !important;
  }
  .pb-70-md {
    padding-bottom: 7rem !important;
  }
  .ml-70-md {
    margin-left: 7rem !important;
  }
  .pl-70-md {
    padding-left: 7rem !important;
  }
  .mr-70-md {
    margin-right: 7rem !important;
  }
  .pr-70-md {
    padding-right: 7rem !important;
  }
  .mt-80-md {
    margin-top: 8rem !important;
  }
  .pt-80-md {
    padding-top: 8rem !important;
  }
  .mb-80-md {
    margin-bottom: 8rem !important;
  }
  .pb-80-md {
    padding-bottom: 8rem !important;
  }
  .ml-80-md {
    margin-left: 8rem !important;
  }
  .pl-80-md {
    padding-left: 8rem !important;
  }
  .mr-80-md {
    margin-right: 8rem !important;
  }
  .pr-80-md {
    padding-right: 8rem !important;
  }
  .mt-100-md {
    margin-top: 10rem !important;
  }
  .pt-100-md {
    padding-top: 10rem !important;
  }
  .mb-100-md {
    margin-bottom: 10rem !important;
  }
  .pb-100-md {
    padding-bottom: 10rem !important;
  }
  .ml-100-md {
    margin-left: 10rem !important;
  }
  .pl-100-md {
    padding-left: 10rem !important;
  }
  .mr-100-md {
    margin-right: 10rem !important;
  }
  .pr-100-md {
    padding-right: 10rem !important;
  }
}
@media (max-width: 575px) {
  .mt-0-sm {
    margin-top: 0rem !important;
  }
  .pt-0-sm {
    padding-top: 0rem !important;
  }
  .mb-0-sm {
    margin-bottom: 0rem !important;
  }
  .pb-0-sm {
    padding-bottom: 0rem !important;
  }
  .ml-0-sm {
    margin-left: 0rem !important;
  }
  .pl-0-sm {
    padding-left: 0rem !important;
  }
  .mr-0-sm {
    margin-right: 0rem !important;
  }
  .pr-0-sm {
    padding-right: 0rem !important;
  }
  .mt-5-sm {
    margin-top: 0.5rem !important;
  }
  .pt-5-sm {
    padding-top: 0.5rem !important;
  }
  .mb-5-sm {
    margin-bottom: 0.5rem !important;
  }
  .pb-5-sm {
    padding-bottom: 0.5rem !important;
  }
  .ml-5-sm {
    margin-left: 0.5rem !important;
  }
  .pl-5-sm {
    padding-left: 0.5rem !important;
  }
  .mr-5-sm {
    margin-right: 0.5rem !important;
  }
  .pr-5-sm {
    padding-right: 0.5rem !important;
  }
  .mt-10-sm {
    margin-top: 1rem !important;
  }
  .pt-10-sm {
    padding-top: 1rem !important;
  }
  .mb-10-sm {
    margin-bottom: 1rem !important;
  }
  .pb-10-sm {
    padding-bottom: 1rem !important;
  }
  .ml-10-sm {
    margin-left: 1rem !important;
  }
  .pl-10-sm {
    padding-left: 1rem !important;
  }
  .mr-10-sm {
    margin-right: 1rem !important;
  }
  .pr-10-sm {
    padding-right: 1rem !important;
  }
  .mt-15-sm {
    margin-top: 1.5rem !important;
  }
  .pt-15-sm {
    padding-top: 1.5rem !important;
  }
  .mb-15-sm {
    margin-bottom: 1.5rem !important;
  }
  .pb-15-sm {
    padding-bottom: 1.5rem !important;
  }
  .ml-15-sm {
    margin-left: 1.5rem !important;
  }
  .pl-15-sm {
    padding-left: 1.5rem !important;
  }
  .mr-15-sm {
    margin-right: 1.5rem !important;
  }
  .pr-15-sm {
    padding-right: 1.5rem !important;
  }
  .mt-20-sm {
    margin-top: 2rem !important;
  }
  .pt-20-sm {
    padding-top: 2rem !important;
  }
  .mb-20-sm {
    margin-bottom: 2rem !important;
  }
  .pb-20-sm {
    padding-bottom: 2rem !important;
  }
  .ml-20-sm {
    margin-left: 2rem !important;
  }
  .pl-20-sm {
    padding-left: 2rem !important;
  }
  .mr-20-sm {
    margin-right: 2rem !important;
  }
  .pr-20-sm {
    padding-right: 2rem !important;
  }
  .mt-25-sm {
    margin-top: 2.5rem !important;
  }
  .pt-25-sm {
    padding-top: 2.5rem !important;
  }
  .mb-25-sm {
    margin-bottom: 2.5rem !important;
  }
  .pb-25-sm {
    padding-bottom: 2.5rem !important;
  }
  .ml-25-sm {
    margin-left: 2.5rem !important;
  }
  .pl-25-sm {
    padding-left: 2.5rem !important;
  }
  .mr-25-sm {
    margin-right: 2.5rem !important;
  }
  .pr-25-sm {
    padding-right: 2.5rem !important;
  }
  .mt-30-sm {
    margin-top: 3rem !important;
  }
  .pt-30-sm {
    padding-top: 3rem !important;
  }
  .mb-30-sm {
    margin-bottom: 3rem !important;
  }
  .pb-30-sm {
    padding-bottom: 3rem !important;
  }
  .ml-30-sm {
    margin-left: 3rem !important;
  }
  .pl-30-sm {
    padding-left: 3rem !important;
  }
  .mr-30-sm {
    margin-right: 3rem !important;
  }
  .pr-30-sm {
    padding-right: 3rem !important;
  }
  .mt-35-sm {
    margin-top: 3.5rem !important;
  }
  .pt-35-sm {
    padding-top: 3.5rem !important;
  }
  .mb-35-sm {
    margin-bottom: 3.5rem !important;
  }
  .pb-35-sm {
    padding-bottom: 3.5rem !important;
  }
  .ml-35-sm {
    margin-left: 3.5rem !important;
  }
  .pl-35-sm {
    padding-left: 3.5rem !important;
  }
  .mr-35-sm {
    margin-right: 3.5rem !important;
  }
  .pr-35-sm {
    padding-right: 3.5rem !important;
  }
  .mt-40-sm {
    margin-top: 4rem !important;
  }
  .pt-40-sm {
    padding-top: 4rem !important;
  }
  .mb-40-sm {
    margin-bottom: 4rem !important;
  }
  .pb-40-sm {
    padding-bottom: 4rem !important;
  }
  .ml-40-sm {
    margin-left: 4rem !important;
  }
  .pl-40-sm {
    padding-left: 4rem !important;
  }
  .mr-40-sm {
    margin-right: 4rem !important;
  }
  .pr-40-sm {
    padding-right: 4rem !important;
  }
  .mt-45-sm {
    margin-top: 4.5rem !important;
  }
  .pt-45-sm {
    padding-top: 4.5rem !important;
  }
  .mb-45-sm {
    margin-bottom: 4.5rem !important;
  }
  .pb-45-sm {
    padding-bottom: 4.5rem !important;
  }
  .ml-45-sm {
    margin-left: 4.5rem !important;
  }
  .pl-45-sm {
    padding-left: 4.5rem !important;
  }
  .mr-45-sm {
    margin-right: 4.5rem !important;
  }
  .pr-45-sm {
    padding-right: 4.5rem !important;
  }
  .mt-50-sm {
    margin-top: 5rem !important;
  }
  .pt-50-sm {
    padding-top: 5rem !important;
  }
  .mb-50-sm {
    margin-bottom: 5rem !important;
  }
  .pb-50-sm {
    padding-bottom: 5rem !important;
  }
  .ml-50-sm {
    margin-left: 5rem !important;
  }
  .pl-50-sm {
    padding-left: 5rem !important;
  }
  .mr-50-sm {
    margin-right: 5rem !important;
  }
  .pr-50-sm {
    padding-right: 5rem !important;
  }
  .mt-60-sm {
    margin-top: 6rem !important;
  }
  .pt-60-sm {
    padding-top: 6rem !important;
  }
  .mb-60-sm {
    margin-bottom: 6rem !important;
  }
  .pb-60-sm {
    padding-bottom: 6rem !important;
  }
  .ml-60-sm {
    margin-left: 6rem !important;
  }
  .pl-60-sm {
    padding-left: 6rem !important;
  }
  .mr-60-sm {
    margin-right: 6rem !important;
  }
  .pr-60-sm {
    padding-right: 6rem !important;
  }
  .mt-70-sm {
    margin-top: 7rem !important;
  }
  .pt-70-sm {
    padding-top: 7rem !important;
  }
  .mb-70-sm {
    margin-bottom: 7rem !important;
  }
  .pb-70-sm {
    padding-bottom: 7rem !important;
  }
  .ml-70-sm {
    margin-left: 7rem !important;
  }
  .pl-70-sm {
    padding-left: 7rem !important;
  }
  .mr-70-sm {
    margin-right: 7rem !important;
  }
  .pr-70-sm {
    padding-right: 7rem !important;
  }
  .mt-80-sm {
    margin-top: 8rem !important;
  }
  .pt-80-sm {
    padding-top: 8rem !important;
  }
  .mb-80-sm {
    margin-bottom: 8rem !important;
  }
  .pb-80-sm {
    padding-bottom: 8rem !important;
  }
  .ml-80-sm {
    margin-left: 8rem !important;
  }
  .pl-80-sm {
    padding-left: 8rem !important;
  }
  .mr-80-sm {
    margin-right: 8rem !important;
  }
  .pr-80-sm {
    padding-right: 8rem !important;
  }
  .mt-100-sm {
    margin-top: 10rem !important;
  }
  .pt-100-sm {
    padding-top: 10rem !important;
  }
  .mb-100-sm {
    margin-bottom: 10rem !important;
  }
  .pb-100-sm {
    padding-bottom: 10rem !important;
  }
  .ml-100-sm {
    margin-left: 10rem !important;
  }
  .pl-100-sm {
    padding-left: 10rem !important;
  }
  .mr-100-sm {
    margin-right: 10rem !important;
  }
  .pr-100-sm {
    padding-right: 10rem !important;
  }
}
body {
  background-color: #FFF;
}

/*header
-----------------------------------------------------*/
header {
  position: fixed;
  z-index: 99999;
  width: 100%;
  box-sizing: border-box;
  top: 0;
  left: 0;
  padding: 1.5rem 4rem;
  background-color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 1023px) {
  header {
    padding: 1.5rem 2rem;
  }
}

.header-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-box .logo img {
  width: 178px;
}
@media (max-width: 1023px) {
  .header-box .logo img {
    width: 160px;
  }
}
@media (max-width: 767px) {
  .header-box .logo img {
    width: 140px;
  }
}
@media (max-width: 575px) {
  .header-box .logo img {
    width: 120px;
  }
}
.header-box .logo a {
  display: flex;
  align-items: center;
}
.header-box .logo a:hover {
  opacity: 1;
}
.header-box .header-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header-box .header-btn01 img {
  max-width: 232px;
  width: 100%;
}
@media (max-width: 1023px) {
  .header-box .header-btn01 img {
    width: 210px;
  }
}
@media (max-width: 767px) {
  .header-box .header-btn01 img {
    width: 180px;
  }
}
@media (max-width: 575px) {
  .header-box .header-btn01 img {
    width: 160px;
  }
}
.header-box .header-btn02,
.header-box .header-btn03 {
  color: #FFF;
  font-weight: bold;
  font-size: 2rem;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  padding: 1.5rem 3rem;
  border-radius: 100px;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .header-box .header-btn02,
  .header-box .header-btn03 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .header-box .header-btn02,
  .header-box .header-btn03 {
    flex: 1;
    box-sizing: border-box;
  }
}
@media (max-width: 575px) {
  .header-box .header-btn02,
  .header-box .header-btn03 {
    font-size: 1.6rem;
    padding: 1rem 2rem;
  }
}
.header-box .header-btn02 {
  background-color: #E6004C;
}
.header-box .header-btn03 {
  background-color: #22C55E;
}
.header-box .btn-wrap {
  display: flex;
  gap: 1rem;
}
@media (max-width: 767px) {
  .header-box .btn-wrap {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 1.5rem 2rem;
    justify-content: center;
    box-sizing: border-box;
    gap: 2rem;
  }
}
@media (max-width: 767px) and (max-width: 575px) {
  .header-box .btn-wrap {
    gap: 1rem;
  }
}

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

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

.container-ex1 {
  max-width: 1300px;
  padding: 0 2rem;
  margin: 0 auto;
}

.container-ex2 {
  max-width: 1380px;
  padding: 0 2rem;
  margin: 0 auto;
}

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

.container-xl {
  max-width: 1430px;
  padding: 0 2rem;
  margin: 0 auto;
}

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

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

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

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

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

/*main
-----------------------------------------------------*/
.main-v__img {
  position: relative;
}
.main-v__img img {
  width: 100%;
}
.main-v__img .mv_btn {
  position: absolute;
  bottom: 7%;
  left: 12%;
  display: block;
  width: 28%;
  transition: 0.2s;
}
@media (max-width: 767px) {
  .main-v__img .mv_btn {
    bottom: 3%;
    left: 4%;
    width: 92%;
  }
}
.main-v__img .mv_btn:hover {
  transform: translateY(3px);
}
.main-v__img .mv_btn img {
  display: block;
  filter: drop-shadow(0 0 19px rgba(0, 0, 0, 0.29));
}

/*what-if
-----------------------------------------------------*/
.what-if {
  background-color: #F6F1E5;
  padding: 3rem 0;
}
.what-if-flex {
  gap: 1rem;
}
@media (max-width: 767px) {
  .what-if-flex {
    flex-wrap: wrap;
  }
}
.what-if-flex--box {
  border-radius: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
  background-color: #FFF;
}
@media (max-width: 767px) {
  .what-if-flex--box {
    width: 100%;
    flex: none;
  }
}
.what-if-flex--box h2 {
  color: #FFF;
  padding: 1rem 2rem;
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .what-if-flex--box h2 {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .what-if-flex--box h2 {
    font-size: 1.8rem;
  }
}
.what-if-flex--box:nth-child(1) {
  border: 4px solid #2A9D8F;
}
.what-if-flex--box:nth-child(1) h2 {
  background-color: #2A9D8F;
}
.what-if-flex--box:nth-child(2) {
  border: 4px solid #E6004C;
}
.what-if-flex--box:nth-child(2) h2 {
  background-color: #E6004C;
}
.what-if-flex--box .flex {
  padding: 1.5rem 2rem;
  flex-direction: column;
  flex: 1;
}
.what-if-flex--box .flex p {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .what-if-flex--box .flex p {
    text-align: left;
    font-size: 1.8rem;
  }
}
@media (max-width: 575px) {
  .what-if-flex--box .flex p {
    font-size: 1.6rem;
  }
}
.what-if-flex--box .flex p span {
  color: #2A9D8F;
}
.what-if-flex--box .flex img {
  max-width: 370px;
  width: 100%;
}
@media (max-width: 767px) {
  .what-if-flex--box .flex img {
    max-width: 304px;
  }
}

/*service
-----------------------------------------------------*/
.service {
  background-color: #007078;
  padding: 4.5rem 0 5rem 0;
}
@media (max-width: 575px) {
  .service {
    padding: 2.5rem 0 3rem 0;
  }
}
.service h2 {
  color: #FFF;
  font-size: 3.4rem;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .service h2 {
    font-size: 2.8rem;
  }
}
@media (max-width: 575px) {
  .service h2 {
    font-size: 2.2rem;
  }
}
.service-flex {
  gap: 1rem;
}
.service-flex--box {
  background-color: #FFF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .service-flex--box {
    padding: 1.5rem;
    width: calc(50% - 0.5rem);
  }
}
@media (max-width: 575px) {
  .service-flex--box {
    padding: 1.5rem 1rem;
  }
}
.service-flex--box img {
  width: 80px;
}
@media (max-width: 767px) {
  .service-flex--box img {
    width: 60px;
  }
}
@media (max-width: 575px) {
  .service-flex--box img {
    width: 46px;
  }
}
.service-flex--box p {
  font-size: 2.4rem;
  font-weight: bold;
  color: #007078;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .service-flex--box p {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .service-flex--box p {
    font-size: 1.6rem;
    line-height: 1.2;
  }
}
.service-flex--box:nth-child(1) img {
  width: 66px;
}
@media (max-width: 575px) {
  .service-flex--box:nth-child(1) img {
    width: 46px;
  }
}
.service-flex--box:nth-child(2) img {
  width: 35px;
}
@media (max-width: 575px) {
  .service-flex--box:nth-child(2) img {
    width: 24px;
  }
}
.service-flex--box:nth-child(3) img {
  width: 79px;
}
@media (max-width: 575px) {
  .service-flex--box:nth-child(3) img {
    width: 46px;
  }
}
.service-flex--box:nth-child(4) img {
  width: 53px;
}
@media (max-width: 575px) {
  .service-flex--box:nth-child(4) img {
    width: 37px;
  }
}
.service-flex--box:nth-child(5) img {
  width: 54px;
}
@media (max-width: 575px) {
  .service-flex--box:nth-child(5) img {
    width: 38px;
  }
}
.service-flex--box:nth-child(6) img {
  width: 47px;
}
@media (max-width: 575px) {
  .service-flex--box:nth-child(6) img {
    width: 30px;
  }
}
.service-flex--box:nth-child(7) img {
  width: 48px;
}
@media (max-width: 575px) {
  .service-flex--box:nth-child(7) img {
    width: 32px;
  }
}
.service-flex--box:nth-child(8) img {
  width: 62px;
}
@media (max-width: 575px) {
  .service-flex--box:nth-child(8) img {
    width: 41px;
  }
}
.service-flex--box:nth-child(9) img {
  width: 57px;
}
@media (max-width: 575px) {
  .service-flex--box:nth-child(9) img {
    width: 38px;
  }
}

/*tv
-----------------------------------------------------*/
.tv {
  background-image: url(../images/bg_tv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 4.5rem 0;
}
.tv img {
  max-width: 776px;
  width: 100%;
  margin: auto;
  filter: drop-shadow(0px 4px 21px rgba(0, 0, 0, 0.25));
}

/*worries
-----------------------------------------------------*/
.worries-top {
  background-color: #F6F1E5;
  padding: 7rem 0 12rem 0;
  position: relative;
  margin-bottom: -5rem;
}
.worries-top::after {
  content: "";
  position: absolute;
  bottom: -7rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 285px solid transparent;
  border-left: 285px solid transparent;
  border-top: 70px solid #F6F1E5;
  border-bottom: 0;
}
.worries-top h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  font-size: 4.2rem;
  font-weight: bold;
  margin-bottom: 7rem;
}
@media (max-width: 1023px) {
  .worries-top h2 {
    font-size: 3.2vw;
  }
}
@media (max-width: 575px) {
  .worries-top h2 {
    margin-bottom: 0;
  }
}
.worries-top h2 img {
  max-width: 185px;
}
@media (max-width: 1023px) {
  .worries-top h2 img {
    width: 138px;
  }
}
@media (max-width: 575px) {
  .worries-top h2 img {
    max-width: none;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}
.worries-top h2 span {
  color: #0D696C;
}
.worries-top-flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5rem 1.5rem;
  position: relative;
}
@media (max-width: 575px) {
  .worries-top-flex {
    gap: 2.5rem 1.5rem;
  }
}
.worries-top-flex::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 196px;
  height: 229px;
  background-image: url("../images/illust_onayami01.png");
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: bottom left;
}
@media (max-width: 1023px) {
  .worries-top-flex::before {
    background-size: 68%;
  }
}
@media (max-width: 767px) {
  .worries-top-flex::before {
    background-size: 60%;
  }
}
@media (max-width: 575px) {
  .worries-top-flex::before {
    display: none;
  }
}
.worries-top-flex::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 229px;
  height: 249px;
  background-image: url("../images/illust_onayami02.png");
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: bottom right;
}
@media (max-width: 1023px) {
  .worries-top-flex::after {
    background-size: 68%;
  }
}
@media (max-width: 767px) {
  .worries-top-flex::after {
    background-size: 60%;
  }
}
@media (max-width: 575px) {
  .worries-top-flex::after {
    display: none;
  }
}
.worries-top-flex--box {
  width: calc(33.333% - 1rem);
  text-align: center;
  background-color: #FFF;
  border-radius: 20px;
  box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.25);
  position: relative;
  padding: 4.5rem 2rem 4rem 2rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1023px) {
  .worries-top-flex--box {
    width: calc(50% - 1rem);
    padding: 4rem 2rem 3rem 2rem;
  }
}
@media (max-width: 575px) {
  .worries-top-flex--box {
    width: 100%;
    padding: 3rem 2rem 2.5rem 2rem;
  }
}
.worries-top-flex--box::after {
  content: "";
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 53px;
  height: 53px;
  background-image: url("../images/icon_check.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 1023px) {
  .worries-top-flex--box::after {
    width: 46px;
    height: 46px;
    top: -22px;
  }
}
@media (max-width: 575px) {
  .worries-top-flex--box::after {
    width: 29px;
    height: 29px;
    top: -14px;
  }
}
.worries-top-flex--box p {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .worries-top-flex--box p {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .worries-top-flex--box p {
    font-size: 1.8rem;
  }
}
.worries-top-flex--box p span {
  color: #0D696C;
}
.worries-bottom {
  background-color: #FFEFC9;
}
.worries-bottom img {
  position: relative;
  z-index: 0;
}

/*reason
-----------------------------------------------------*/
.reason {
  padding: 10rem 0;
}
@media (max-width: 767px) {
  .reason {
    padding: 6rem 0;
  }
}
.reason h2 {
  margin-bottom: 6rem;
  text-align: center;
}
@media (max-width: 575px) {
  .reason h2 {
    margin-bottom: 4rem;
  }
}
.reason h2 img {
  max-width: 976px;
  width: 100%;
}
@media (max-width: 575px) {
  .reason h2 img {
    max-width: none;
  }
}
.reason-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5.5rem;
  position: relative;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .reason-flex {
    gap: 4rem 2rem;
  }
}
@media (max-width: 575px) {
  .reason-flex {
    flex-wrap: wrap;
  }
}
.reason-flex:nth-child(odd) {
  flex-direction: row-reverse;
}
.reason-flex:nth-child(odd)::before {
  left: auto;
  right: 0;
  transform: scaleX(-1);
}
.reason-flex::before {
  content: "";
  position: absolute;
  top: 3rem;
  left: 3rem;
  width: 415px;
  height: 423px;
  background-image: url("../images/bg_reason.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (max-width: 767px) {
  .reason-flex::before {
    display: none;
  }
}
.reason-flex-img {
  max-width: 425px;
  width: 100%;
}
@media (max-width: 767px) {
  .reason-flex-img {
    margin-right: -4rem;
  }
}
@media (max-width: 575px) {
  .reason-flex-img {
    max-width: 234px;
  }
}
.reason-flex-text {
  max-width: 450px;
  width: 100%;
}
@media (max-width: 575px) {
  .reason-flex-text {
    max-width: none;
    text-align: center;
  }
}
.reason-flex-text h3 {
  font-size: 3.5rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
@media (max-width: 1023px) {
  .reason-flex-text h3 {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) {
  .reason-flex-text h3 {
    font-size: 2.6rem;
  }
}
.reason-flex-text p {
  font-size: 1.8rem;
  line-height: 1.6;
}
@media (max-width: 1023px) {
  .reason-flex-text p {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .reason-flex-text p {
    font-size: 1.8rem;
  }
}
.reason-flex-text p + p {
  margin-top: 1rem;
}
.reason-flex-text span {
  color: #E6004C;
}
@media (max-width: 767px) {
  .reason-flex:nth-child(even) .reason-flex-img {
    margin-right: 1rem;
  }
}

/*staff
-----------------------------------------------------*/
.staff {
  background-color: #F6F1E5;
  padding-bottom: 9rem;
}
@media (max-width: 767px) {
  .staff {
    padding-bottom: 6rem;
  }
}
@media (max-width: 767px) {
  .staff h2 {
    position: relative;
  }
  .staff h2::before {
    content: "";
    background-color: #FFF;
    height: 66px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
}
.staff h2 img {
  margin-top: -7%;
}
@media (max-width: 767px) {
  .staff h2 img {
    max-width: none;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    position: relative;
    z-index: 1;
    margin-top: -8rem;
  }
}
.staff-list {
  border: 6px solid #F2C300;
  border-radius: 20px;
  background: url("../images/bg_staff.png") no-repeat center/cover, #fff;
  padding: 5rem;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .staff-list {
    padding: 2.5rem 1.5rem;
    background: url("../images/bg_staff_sm.png") no-repeat center/cover, #fff;
  }
}
@media (max-width: 767px) {
  .staff-list {
    margin-bottom: 4rem;
  }
}
.staff-list-flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem 2.5rem;
}
@media (max-width: 767px) {
  .staff-list-flex {
    gap: 2rem 0.5rem;
  }
}
.staff-list-flex--box {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 300px;
  width: 100%;
}
@media (max-width: 767px) {
  .staff-list-flex--box {
    width: calc(50% - 0.25rem);
  }
}
.staff-list-flex--box .fukidashi {
  background-color: #079FAA;
  border-radius: 22px;
  padding: 1rem 2rem;
  color: #FFF;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
  position: relative;
  box-sizing: border-box;
  min-height: 110px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .staff-list-flex--box .fukidashi {
    font-size: 1.4rem;
    flex: 1;
    padding: 1.5rem;
  }
}
.staff-list-flex--box .fukidashi::after {
  content: "";
  background-image: url(../images/fukidashi.svg);
  background-repeat: no-repeat;
  width: 23px;
  height: 20px;
  position: absolute;
  left: 28%;
  bottom: -19px;
}
@media (max-width: 767px) {
  .staff-list-flex--box .fukidashi::after {
    left: 16%;
  }
}
@media (max-width: 575px) {
  .staff-list-flex--box .fukidashi::after {
    bottom: -14px;
  }
}
.staff-list-flex--box img {
  max-width: 151px;
  width: 100%;
  margin: 5px auto 10px auto;
}
.staff-list-flex--box h3 {
  font-size: 2rem;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .staff-list-flex--box h3 {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .staff-list-flex--box h3 {
    font-size: 1.4rem;
  }
}
.staff-list-flex--box .position {
  font-size: 1.7rem;
}
@media (max-width: 767px) {
  .staff-list-flex--box .position {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .staff-list-flex--box .position {
    font-size: 1.3rem;
  }
}
.staff .dashed {
  text-align: center;
}
.staff .dashed:nth-of-type(2) {
  margin-top: 1.5rem;
}
.staff .dashed p {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 2.2;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-image: repeating-linear-gradient(to right, #000 0 6px, transparent 6px 12px);
  background-position: bottom;
  background-repeat: repeat-x;
  background-size: auto 1px;
}
@media (max-width: 767px) {
  .staff .dashed p {
    font-size: 2.2rem;
  }
}
@media (max-width: 575px) {
  .staff .dashed p {
    font-size: 1.6rem;
  }
}
.staff .dashed p span {
  color: #E6004C;
}

/*case
-----------------------------------------------------*/
.case {
  background-color: #FFF7E3;
  border-top: solid 10px #FFEFC9;
  border-bottom: solid 10px #FFEFC9;
  padding: 8rem 0;
}
@media (max-width: 767px) {
  .case {
    padding: 6rem 0;
  }
}
.case h2 {
  text-align: center;
  margin-bottom: 3rem;
}
.case h2 img {
  max-width: 540px;
  width: 100%;
  margin: auto;
}
.case-p {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 575px) {
  .case-p {
    font-size: 2rem;
  }
}
.case-p span {
  color: #E6004C;
  background: linear-gradient(transparent 50%, #FFE600 0%);
  display: inline;
}
.case-p span strong {
  font-size: 4rem;
}
@media (max-width: 575px) {
  .case-p span strong {
    font-size: 3rem;
  }
}
.case-box {
  border: 8px solid #E6004C;
  border-radius: 0 20px 20px 20px;
  position: relative;
  padding: 4.5rem;
  background-color: #FFF;
  margin-top: 10rem;
}
@media (max-width: 767px) {
  .case-box {
    padding: 3rem;
  }
}
@media (max-width: 575px) {
  .case-box {
    margin-top: 6rem;
    border: 3px solid #E6004C;
  }
}
.case-box h3 {
  position: absolute;
  left: -8px;
  top: -74px;
  background-color: #E6004C;
  color: #FFF;
  border-radius: 4px 4px 0 0;
  font-size: 3.2rem;
  line-height: 1;
  padding: 2rem 3rem;
}
@media (max-width: 1023px) {
  .case-box h3 {
    font-size: 2.8rem;
  }
}
@media (max-width: 575px) {
  .case-box h3 {
    font-size: 1.6rem;
    padding: 1.5rem 2rem;
    top: -47px;
    left: -3px;
  }
}
.case-box-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .case-box-flex {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1rem;
  }
}
.case-box-flex-img img {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  max-width: 384px;
  width: 100%;
}
@media (max-width: 767px) {
  .case-box-flex .arrow {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.case-box-flex .arrow img {
  width: 16px;
}
.case-box-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
}
.case-box-bottom-text {
  max-width: 384px;
  width: 100%;
}
.case-box-bottom-text p {
  font-size: 2.8rem;
  margin-top: 0 !important;
}
@media (max-width: 1023px) {
  .case-box-bottom-text p {
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  .case-box-bottom-text p {
    font-size: 2rem;
  }
}
.case-box-bottom-text p span {
  font-size: 2.4rem;
  background-color: #E6004C;
  color: #FFF;
  display: inline-block;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  line-height: 1.2;
}
@media (max-width: 1023px) {
  .case-box-bottom-text p span {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .case-box-bottom-text p span {
    font-size: 1.8rem;
  }
}
.case-box-bottom-text p strong {
  color: #E6004C;
  font-size: 5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  margin-left: auto;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .case-box-bottom-text p strong {
    font-size: 3.8rem;
  }
}
@media (max-width: 767px) {
  .case-box-bottom-text p strong {
    font-size: 3.2rem;
  }
}
.case-box-bottom-text .flex {
  align-items: center;
}
@media (max-width: 1023px) {
  .case-box-bottom-text .flex:nth-of-type(2) {
    margin-top: 1.5rem !important;
  }
}
.case-box table {
  margin-top: 3rem;
  font-weight: bold;
  font-size: 2rem;
  border: 1px solid #E6004C;
  width: 100%;
}
@media (max-width: 1023px) {
  .case-box table {
    font-size: 1.8rem;
  }
}
.case-box table th,
.case-box table td {
  border: 1px solid #E6004C;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .case-box table th,
  .case-box table td {
    display: block;
    text-align: center;
  }
}
.case-box table th {
  background-color: #FFCCDC;
  width: 127px;
}
@media (max-width: 767px) {
  .case-box table th {
    width: 100%;
  }
}
.case-box table td {
  width: 33%;
}
@media (max-width: 1023px) {
  .case-box table td {
    width: 28%;
  }
}
@media (max-width: 767px) {
  .case-box table td {
    width: 100%;
  }
}

/*price
-----------------------------------------------------*/
.price {
  padding: 10rem 0;
}
@media (max-width: 767px) {
  .price {
    padding: 8rem 0;
  }
}
@media (max-width: 575px) {
  .price {
    padding: 8rem 0;
  }
}
.price h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.price h2 img {
  max-width: 520px;
  width: 100%;
  margin: auto;
}
@media (max-width: 575px) {
  .price h2 img {
    max-width: 300px;
  }
}
.price-p {
  font-size: 2.6rem;
  text-align: center;
  font-weight: bold;
}
@media (max-width: 575px) {
  .price-p {
    font-size: 1.6rem;
    margin-bottom: 3rem;
  }
}
.price-p span {
  color: #E6004C;
}
.price-top {
  margin-bottom: 6rem;
}
@media (max-width: 575px) {
  .price-top {
    margin-bottom: 3rem;
  }
}
.price-bottom {
  max-width: 940px;
  margin: auto;
}
.price-bottom table {
  width: 100%;
  border: 1px solid #007078;
  font-weight: bold;
  text-align: center;
  font-size: 2.8rem;
  table-layout: fixed;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .price-bottom table {
    font-size: 2.2rem;
  }
}
@media (max-width: 575px) {
  .price-bottom table {
    font-size: 1.8rem;
    table-layout: auto;
  }
}
.price-bottom table th,
.price-bottom table td {
  border: 1px solid #007078;
  padding: 1.2rem 2rem;
  width: 33.333%;
  box-sizing: border-box;
}
.price-bottom table th {
  background-color: #1FB7C2;
  color: #FFF;
}
.price-bottom table .th-price {
  background-color: #00929D;
}
.price-bottom table .td-price {
  background-color: #FFFDEB;
  color: #007078;
  font-size: 3.2rem;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
@media (max-width: 767px) {
  .price-bottom table .td-price {
    font-size: 2.2rem;
  }
}
@media (max-width: 575px) {
  .price-bottom table .td-price {
    font-size: 2rem;
  }
}
.price-bottom ul {
  color: #6B7280;
}

/*voice
-----------------------------------------------------*/
.voice {
  padding: 8rem 0;
  background-color: #FFF7E3;
}
@media (max-width: 767px) {
  .voice {
    padding: 6rem 0;
  }
}
.voice h2 {
  text-align: center;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .voice h2 {
    margin-bottom: 4rem;
  }
}
.voice h2 img {
  max-width: 210px;
  width: 100%;
  margin: auto;
}
@media (max-width: 575px) {
  .voice h2 img {
    max-width: 150px;
  }
}
.voice-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.voice-flex--box {
  background-color: #FFF;
  border-radius: 16px;
  box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.25);
  padding: 8rem 3.5rem 3.5rem 3.5rem;
  flex: 0 0 calc(50% - 1.5rem);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .voice-flex--box {
    flex: 0 0 100%;
  }
}
.voice-flex--box-top {
  position: relative;
}
.voice-flex--box-top img {
  width: 18px;
  position: absolute;
  top: -5rem;
  left: -1rem;
}
.voice-flex--box-top p {
  color: #5A5A5A;
  font-size: 1.8rem;
}
@media (max-width: 575px) {
  .voice-flex--box-top p {
    font-size: 1.6rem;
  }
}
.voice-flex--box-bottom {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding-top: 2rem;
  border-top: 1px solid #E0E0E0;
}
.voice-flex--box-bottom .img {
  width: 50px;
}
.voice-flex--box-bottom .text p {
  color: #264653;
  font-weight: bold;
  line-height: 1.2;
}
.voice-flex--box-bottom .text a {
  color: #6B7280;
}
.voice-flex--box:nth-child(3) {
  flex: 0 0 100%;
}

/*contact-sec
-----------------------------------------------------*/
@media (max-width: 767px) {
  .contact-sec {
    margin-top: -4rem;
  }
}
.contact-sec--top {
  background-color: #007078;
  position: relative;
}
.contact-sec--top::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -40px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 46px solid transparent;
  border-left: 46px solid transparent;
  border-top: 50px solid #007078;
  border-bottom: 0;
}
@media (max-width: 767px) {
  .contact-sec--top::after {
    border-right: 33px solid transparent;
    border-left: 33px solid transparent;
    border-top: 30px solid #007078;
    bottom: -25px;
  }
}
@media (max-width: 767px) {
  .contact-sec--top::before {
    content: "";
    background-color: #FFF;
    height: 16%;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
}
.contact-sec--top img {
  margin-top: -5%;
}
@media (max-width: 767px) {
  .contact-sec--top img {
    margin-top: 0;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    z-index: 1;
    position: relative;
  }
}
.contact-sec--bottom {
  background-image: url(../images/bg_btn.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .contact-sec--bottom {
    padding: 4rem 0;
  }
}
.contact-sec--bottom .flex {
  align-items: end;
  gap: 2rem;
}
@media (max-width: 767px) {
  .contact-sec--bottom .flex {
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .contact-sec--bottom .flex img {
    max-width: 420px;
    width: 100%;
  }
}

/*faq
-----------------------------------------------------*/
.faq {
  background-color: #FFFDF6;
  padding: 8rem 0;
}
@media (max-width: 767px) {
  .faq {
    padding: 6rem 0;
  }
}
.faq h2 {
  text-align: center;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .faq h2 {
    margin-bottom: 4rem;
  }
}
.faq h2 img {
  max-width: 294px;
  width: 100%;
}
@media (max-width: 575px) {
  .faq h2 img {
    max-width: 204px;
  }
}
.faq-container {
  width: 100%;
  box-sizing: border-box;
}
.faq-container .faq-title {
  cursor: pointer;
  font-size: 2rem;
  padding: 2.5rem 3.5rem;
  position: relative;
  box-sizing: border-box;
  display: flex;
  gap: 2rem;
  border-radius: 15px;
  color: #264653;
  font-weight: 500;
}
@media (max-width: 767px) {
  .faq-container .faq-title {
    font-size: 1.8rem;
    padding: 1.5rem 3rem 1.5rem 2rem;
  }
}
@media (max-width: 575px) {
  .faq-container .faq-title {
    font-size: 1.6rem;
    padding: 1.5rem 2rem 1.5rem 2rem;
  }
}
.faq-container .faq-title .open_btn {
  max-width: 34px;
  height: 34px;
  width: 100%;
  border-radius: 50%;
  position: relative;
  background-color: #F5F0EB;
  margin-left: auto;
}
.faq-container .faq-title .open_btn::before, .faq-container .faq-title .open_btn::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 16px;
  width: 14px;
  height: 2px;
  background-color: #2A9D8F;
}
.faq-container .faq-title .open_btn::before {
  top: 17px;
  transition: transform 0.3s linear;
  transform: translateY(-50%) rotate(90deg);
}
.faq-container .faq-title.open {
  border-bottom: 1px solid #EEEEEE;
  border-radius: 15px 15px 0 0;
  background-color: #D2EFEC;
}
.faq-container .faq-title.open .open_btn::before {
  transform: translateY(-50%) rotate(0deg) !important;
  transition: 0.3s;
}
.faq-container .faq-text {
  display: none;
  padding: 2.5rem 3.5rem;
  box-sizing: border-box;
  border-radius: 0 0 15px 15px;
  font-size: 2rem;
  font-weight: bold;
  color: #264653;
}
@media (max-width: 767px) {
  .faq-container .faq-text {
    font-size: 1.6rem;
    padding: 1.5rem 3rem 2.5rem 2rem;
  }
}
@media (max-width: 575px) {
  .faq-container .faq-text {
    font-size: 1.4rem;
  }
}
.faq-container .faq-text ul li {
  font-size: 1.6rem;
  color: #6B7280;
  font-weight: 500;
}
.faq-container dl {
  margin-bottom: 2rem;
  border: 1px solid #EEEEEE;
  border-radius: 15px;
}
.faq-container dt {
  font-weight: bold;
  background: #FFF;
}
.faq-container dt .en {
  position: relative;
  margin-right: 3.5rem;
}
.faq-container dt .en::after {
  position: absolute;
  content: "";
  width: 37px;
  height: 37px;
  background-image: url("../images/faq_q.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
}
.faq-container dd {
  background-color: #FFF;
}
.faq-container dd div {
  display: flex;
  gap: 2rem;
}
.faq-container dd div .en {
  position: relative;
  margin-right: 3.5rem;
}
.faq-container dd div .en::after {
  position: absolute;
  content: "";
  width: 37px;
  height: 37px;
  background-image: url("../images/faq_a.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
}
.faq-container dd .faq-in {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/*flow
-----------------------------------------------------*/
.flow {
  background-color: #B0EADC;
  padding: 8rem 0;
  position: relative;
}
@media (max-width: 1350px) {
  .flow {
    padding: 8rem 0 16rem 0;
  }
}
@media (max-width: 767px) {
  .flow {
    padding: 6rem 0;
  }
}
.flow .img-l {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 260px;
  width: 100%;
}
@media (max-width: 767px) {
  .flow .img-l {
    max-width: 200px;
    top: 45rem;
  }
}
@media (max-width: 575px) {
  .flow .img-l {
    max-width: 130px;
    top: 52rem;
  }
}
.flow .img-r {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 260px;
  width: 100%;
}
@media (max-width: 767px) {
  .flow .img-r {
    max-width: 200px;
    bottom: 69rem;
  }
}
@media (max-width: 575px) {
  .flow .img-r {
    max-width: 130px;
    bottom: 69rem;
  }
}
.flow h2 {
  text-align: center;
  margin-bottom: 9rem;
}
@media (max-width: 767px) {
  .flow h2 {
    margin-bottom: 6rem;
  }
}
.flow h2 img {
  max-width: 294px;
  width: 100%;
}
@media (max-width: 575px) {
  .flow h2 img {
    max-width: 204px;
  }
}
.flow-flex {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0 1rem;
}
@media (max-width: 1023px) {
  .flow-flex {
    flex-direction: column;
    align-items: center;
  }
}
.flow-flex--box {
  background-color: #FFF;
  border: 7px solid #DCDCDC;
  border-radius: 10px;
  position: relative;
  text-align: center;
  min-height: 328px;
  max-width: 270px;
  width: 100%;
  padding: 6rem 2rem 5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
}
@media (max-width: 1199px) {
  .flow-flex--box {
    padding: 6rem 1.5rem 5rem 1.5rem;
  }
}
@media (max-width: 1023px) {
  .flow-flex--box {
    max-width: 600px;
    min-height: auto;
    padding: 5rem 2rem 4rem 2rem;
  }
}
@media (max-width: 767px) {
  .flow-flex--box {
    padding: 4rem 2rem 3rem 2rem;
  }
}
.flow-flex--box .num {
  position: absolute;
  top: -42px;
  font-size: 3.2rem;
  background-color: #007078;
  color: #FFF;
  border-radius: 100px;
  width: 67px;
  height: 67px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 575px) {
  .flow-flex--box .num {
    width: 50px;
    height: 50px;
    font-size: 2.4rem;
    top: -30px;
  }
}
.flow-flex--box img {
  width: 70px;
  margin: 0 auto 3rem auto;
}
@media (max-width: 1023px) {
  .flow-flex--box img {
    margin: 0 auto 2rem auto;
  }
}
.flow-flex--box h3 {
  font-size: 2.4rem;
  line-height: 1.2;
  color: #007078;
  margin-bottom: 1.5rem;
}
@media (max-width: 1199px) {
  .flow-flex--box h3 {
    font-size: 2.2rem;
  }
}
@media (max-width: 1023px) {
  .flow-flex--box h3 {
    font-size: 2.4rem;
  }
}
.flow-flex--box p {
  font-size: 1.8rem;
  line-height: 1.6;
}
@media (max-width: 1199px) {
  .flow-flex--box p {
    font-size: 1.6rem;
  }
}
@media (max-width: 1023px) {
  .flow-flex--box p {
    font-size: 1.8rem;
  }
}
.flow-flex .arrow {
  display: flex;
  align-items: center;
}
@media (max-width: 1023px) {
  .flow-flex .arrow {
    margin: 2rem auto 5rem auto;
  }
}
.flow-flex .arrow img {
  max-width: 16px;
}
@media (max-width: 1023px) {
  .flow-flex .arrow img {
    transform: rotate(90deg);
  }
}

/*message
-----------------------------------------------------*/
.message {
  background-color: #F6F1E5;
  padding: 10rem 0;
}
@media (max-width: 767px) {
  .message {
    padding: 6rem 0 7rem 0;
  }
}
.message h2 {
  text-align: center;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .message h2 {
    margin-bottom: 4rem;
  }
}
.message h2 img {
  max-width: 714px;
  width: 100%;
}
.message-flex {
  display: flex;
  justify-content: center;
  gap: 3rem 6rem;
}
@media (max-width: 1023px) {
  .message-flex {
    flex-wrap: wrap;
  }
}
.message-flex--l {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  color: #333333;
  width: 100%;
  max-width: 382px;
}
@media (max-width: 1023px) {
  .message-flex--l {
    flex-direction: row;
    max-width: none;
    justify-content: center;
  }
}
.message-flex--l img {
  max-width: 382px;
  width: 100%;
}
@media (max-width: 1023px) {
  .message-flex--l img {
    max-width: 280px;
  }
}
@media (max-width: 575px) {
  .message-flex--l img {
    max-width: 180px;
  }
}
.message-flex--r {
  width: 100%;
}
.message-flex--r h3 {
  font-size: 4.4rem;
  color: #007078;
  line-height: 1.4;
  margin-bottom: 2.5rem;
}
@media (max-width: 1023px) {
  .message-flex--r h3 {
    font-size: 4rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .message-flex--r h3 {
    font-size: 3.2rem;
  }
}
@media (max-width: 575px) {
  .message-flex--r h3 {
    font-size: 2.6rem;
  }
}
.message-flex--r p {
  font-size: 2rem;
  color: #333333;
  line-height: 2.2;
}
@media (max-width: 767px) {
  .message-flex--r p {
    font-size: 1.6rem;
  }
}
.message-flex--r div img {
  max-width: 206px;
  width: 100%;
}
@media (max-width: 575px) {
  .message-flex--r div img {
    max-width: 148px;
  }
}

/*form
-----------------------------------------------------*/
.form {
  padding: 10rem 0;
}
@media (max-width: 767px) {
  .form {
    padding: 6rem 0;
  }
}
.form h2 {
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .form h2 {
    margin-bottom: 3rem;
  }
}
.form h2 img {
  max-width: 335px;
  width: 100%;
}
@media (max-width: 575px) {
  .form h2 img {
    max-width: 260px;
  }
}
.form-box {
  background-color: #F6F1E5;
  padding: 8rem;
  border-radius: 60px;
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .form-box {
    padding: 6rem 3rem;
  }
}
@media (max-width: 575px) {
  .form-box {
    padding: 6rem 2rem;
    margin-top: 3rem;
  }
}
.form-box .ttl {
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.form-box .ttl .required {
  background-color: #E6004C;
  color: #FFF;
  font-size: 1.4rem;
  padding: 0 1rem;
}
.form-box p {
  color: #333;
}
.form-box--inner {
  max-width: 600px;
  width: 100%;
  margin: auto;
}
.form-box input {
  width: 100%;
  border: 1px solid #CCCCCC;
  border-radius: 10px;
  height: 50px;
  padding: 0 1rem;
  box-sizing: border-box;
}
.form-box textarea {
  width: 100%;
  height: 150px;
  border: 1px solid #CCCCCC;
  border-radius: 10px;
  padding: 0 1rem;
  box-sizing: border-box;
}
.form-box select {
  width: 200px;
  height: 50px;
  border: 1px solid #CCCCCC;
  border-radius: 10px;
  padding: 0 1rem;
  box-sizing: border-box;
}
.form-box .zip {
  width: 200px;
  box-sizing: border-box;
}
.form-box .input-name {
  display: flex;
  gap: 1rem;
}
.form-box .input-name input {
  height: 50px;
  padding: 0 1rem;
  box-sizing: border-box;
  width: 50%;
}
.form-box .btn {
  text-align: center;
  margin-top: 5rem;
}
.form-box .btn input {
  max-width: 380px;
  width: 100%;
  background-color: #E6004C;
  color: #FFF;
  font-weight: bold;
  font-size: 2rem;
  border-radius: 200px;
  padding: 2.5rem;
  height: auto;
}

/*footer
-----------------------------------------------------*/
footer {
  padding: 2.5rem 0;
  position: relative;
}
@media (max-width: 767px) {
  footer {
    padding: 2.5rem 0 12rem 0;
  }
}
footer .flex {
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  footer .flex {
    flex-direction: column;
  }
}
footer .flex-box {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media (max-width: 767px) {
  footer .flex-box {
    flex-direction: column;
    margin-bottom: 2rem;
  }
}
footer .flex-box .logo {
  max-width: 178px;
  width: 100%;
}
footer .flex-box ul {
  display: flex;
  gap: 2rem;
}
footer .flex-box ul a {
  color: #111111;
  font-size: 1.8rem;
}
@media (max-width: 575px) {
  footer .flex-box ul a {
    font-size: 1.4rem;
  }
}
footer .flex-box ul span {
  color: #B7B7B7;
}
footer .flex-box .copy {
  font-size: 1.6rem;
  color: #7E7E7E;
}
@media (max-width: 575px) {
  footer .flex-box .copy {
    font-size: 1.2rem;
  }
}
footer .to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 49px;
  height: 49px;
  background: url(../images/to_top.png) no-repeat center/contain;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 100;
}
footer .to-top.is-show {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 1350px) {
  footer .to-top {
    bottom: 30px;
  }
  footer .to-top.is-bottom {
    bottom: 86px;
  }
}
@media (max-width: 767px) {
  footer .to-top {
    bottom: 100px;
    right: 20px;
  }
  footer .to-top.is-bottom {
    bottom: 100px;
  }
}

a[href^="tel:"] {
  pointer-events: none;
}

@media (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}/*# sourceMappingURL=style.css.map */