/* 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: #222;
  font: 1.6rem/2 "Noto Sans JP", sans-serif;
  font-weight: 400;
  overflow-wrap: break-word;
  word-break: break-word;
  overflow: hidden;
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
    font-weight: 400;
  }
}

/* link
-----------------------------------------------------*/
a {
  transition: 0.3s linear;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

ol {
  padding-left: 1em;
}

.float-l {
  float: left;
}

.float-r {
  float: right;
}

.orange {
  color: #f08200;
}

.en {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.oswald {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.mincho {
  font-family: "Noto Serif CJK JP";
}

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: #2454A9 !important;
}

.color-accent01 {
  color: #9E7F41 !important;
}

.color-caution {
  color: red !important;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

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

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

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

.pos-r {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.header-box .logo picture {
  display: flex;
  align-items: center;
}
.header-box .logo img {
  width: 170px;
}
@media (max-width: 1300px) {
  .header-box .logo img {
    width: 140px;
  }
}
@media (max-width: 575px) {
  .header-box .logo img {
    width: 100px;
  }
}
.header-box .logo a {
  display: flex;
  align-items: center;
}
.header-box .logo a:hover {
  opacity: 1;
}
.header-box-btn {
  display: flex;
  gap: 1rem;
}

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

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

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

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

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

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

@media (max-width: 575px) {
  .container-sm,
  .container-md,
  .container-ex,
  .container-lg,
  .container-xl,
  .container-xxl {
    padding: 0 2rem;
  }
}
/* parts */
p + p {
  margin-top: 3rem;
}

.colors-b {
  color: #2454A9;
}

.colors-w {
  color: #FFF;
}

.colors-p {
  color: #FF0F70;
}

.colors-y {
  color: #FAF60E;
}

br.br-xl {
  display: none;
}
@media (max-width: 1199px) {
  br.br-xl {
    display: block;
  }
}

br.br-md {
  display: none;
}
@media (max-width: 767px) {
  br.br-md {
    display: block;
  }
}

br.br-sm {
  display: none;
}
@media (max-width: 575px) {
  br.br-sm {
    display: block;
  }
}

@media (max-width: 575px) {
  br.br-sm-none {
    display: none;
  }
}

/*h*/
.side-line {
  font-size: 2.8rem;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.side-line::before, .side-line::after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #000;
}
.side-line::before {
  margin-right: 2rem;
}
.side-line::after {
  margin-left: 2rem;
}

/*btn
-----------------------------------------------------*/
.header-btn {
  width: 224px;
  height: 40px;
  border-radius: 120px;
  font-weight: 700;
  text-decoration: none;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-btn__01, .header-btn__02 {
  transition: filter 0.3s ease;
}
.header-btn__01:hover, .header-btn__02:hover {
  filter: brightness(1.2);
}
.header-btn__01 {
  background: linear-gradient(0deg, #0A4EB4 0%, #276EF7 100%);
}
.header-btn__02 {
  background: linear-gradient(0deg, #247CAE 0%, #36B9C4 100%);
}
@media (max-width: 767px) {
  .header-btn {
    height: 30px;
    font-size: 1.1rem;
    width: 113px;
  }
}

.btn-box--wrap {
  background-color: #E6F3F9;
  padding: 5rem 0;
}
@media (max-width: 767px) {
  .btn-box--wrap {
    padding: 2.2rem 0;
  }
}

.btn-box {
  display: flex;
  justify-content: center;
  gap: 4rem 3rem;
  margin-top: 2.6rem;
}
@media (max-width: 767px) {
  .btn-box {
    flex-wrap: wrap;
    margin-top: 2rem;
  }
}

.common-btn {
  position: relative;
  max-width: 535px;
  width: 100%;
  height: 90px;
  border-radius: 120px;
  font-weight: 700;
  text-decoration: none;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
}
.common-btn__01, .common-btn__02 {
  transition: filter 0.3s ease;
}
.common-btn__01:hover, .common-btn__02:hover {
  filter: brightness(1.2);
}
.common-btn__01 {
  background: linear-gradient(0deg, #0A4EB4 0%, #276EF7 100%);
}
.common-btn__02 {
  background: linear-gradient(0deg, #247CAE 0%, #36B9C4 100%);
}
@media (max-width: 1199px) {
  .common-btn {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .common-btn {
    height: 58px;
    font-size: 1.8rem;
  }
}
.common-btn:after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid #FFF;
  border-right: 3px solid #FFF;
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
@media (max-width: 767px) {
  .common-btn:after {
    right: 2rem;
  }
}
.common-btn span {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FAF60E;
  color: #222222;
  max-width: 286px;
  width: 100%;
  height: 44px;
  font-size: 2rem;
  border-radius: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .common-btn span {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .common-btn span {
    top: -18px;
    height: 30px;
    font-size: 1.4rem;
  }
}

/*main
-----------------------------------------------------*/
.main-v {
  max-width: 2000px;
  margin: 0 auto 4rem;
}
.main-v img {
  width: 100%;
}

/*about
-----------------------------------------------------*/
.give_it_a_try {
  position: relative;
  padding: 6.6rem 0 3rem 0;
}
@media (max-width: 767px) {
  .give_it_a_try {
    padding: 6.6rem 0 0 0;
  }
}
.give_it_a_try::before {
  content: "";
  background-image: url(../images/bg.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: cover;
  position: absolute;
  bottom: 0;
  height: 292px;
  width: 100%;
  z-index: -1;
}
@media (max-width: 767px) {
  .give_it_a_try::before {
    height: 163px;
    bottom: 6rem;
  }
}
@media (max-width: 1023px) {
  .give_it_a_try .container-xl {
    padding: 0 10%;
  }
}
@media (max-width: 767px) {
  .give_it_a_try .container-xl {
    padding: 0 2rem;
  }
}
.give_it_a_try .flex {
  align-items: center;
  gap: 2rem;
}
@media (max-width: 1023px) {
  .give_it_a_try .flex {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
}
.give_it_a_try .flex .col01 {
  width: 40%;
}
@media (max-width: 1023px) {
  .give_it_a_try .flex .col01 {
    width: 100%;
    order: 1;
  }
}
.give_it_a_try .flex .col01 .img01 {
  max-width: 542px;
  width: 100%;
}
.give_it_a_try .flex .col02 {
  width: 60%;
}
@media (max-width: 1023px) {
  .give_it_a_try .flex .col02 {
    width: 100%;
  }
}
.give_it_a_try .flex .col02 h2 {
  position: relative;
  color: #2454A9;
  font-size: 3.6rem;
  line-height: 1.4;
  margin-bottom: 2.5rem;
}
@media (max-width: 1599px) {
  .give_it_a_try .flex .col02 h2 {
    font-size: 3rem;
  }
}
@media (max-width: 1023px) {
  .give_it_a_try .flex .col02 h2 {
    display: inline-block;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .give_it_a_try .flex .col02 h2 {
    font-size: 2rem;
  }
}
.give_it_a_try .flex .col02 h2 .img02 {
  max-width: 274px;
  width: 100%;
  position: absolute;
  left: -9rem;
  top: -10rem;
}
@media (max-width: 1599px) {
  .give_it_a_try .flex .col02 h2 .img02 {
    max-width: 200px;
    left: -9rem;
    top: -6rem;
  }
}
@media (max-width: 1023px) {
  .give_it_a_try .flex .col02 h2 .img02 {
    max-width: 154px;
    left: -2rem;
    top: -6rem;
  }
}
.give_it_a_try .flex .col02 ul li {
  font-size: 2.4rem;
  background-color: #2454A9;
  border: 1px solid #2454A9;
  font-weight: 700;
  border-radius: 120px;
  color: #FFF;
  padding: 1.4rem 3.5rem;
  line-height: 1.4;
  box-sizing: border-box;
  display: inline-block;
}
@media (max-width: 1599px) {
  .give_it_a_try .flex .col02 ul li {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .give_it_a_try .flex .col02 ul li {
    font-size: 1.8rem;
    display: block;
  }
}
.give_it_a_try .flex .col02 ul li:nth-child(even) {
  background-color: #FFF;
  color: #2454A9;
}
.give_it_a_try .flex .col02 ul li + li {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .give_it_a_try .flex .col02 ul li + li {
    margin-top: 1rem;
  }
}

.for_fifty {
  text-align: center;
}
.for_fifty__h01 {
  padding: 7rem 0;
}
@media (max-width: 767px) {
  .for_fifty__h01 {
    padding: 2rem 0 4rem 0;
  }
}
.for_fifty__h01 h3 {
  font-size: 3.2rem;
  line-height: 1.4;
}
@media (max-width: 1199px) {
  .for_fifty__h01 h3 {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) {
  .for_fifty__h01 h3 {
    font-size: 1.8rem;
  }
}
.for_fifty__h01 h3 strong {
  font-size: 4.8rem;
  border-bottom: 3px solid #000;
  margin-bottom: 2rem;
  display: inline-block;
}
@media (max-width: 1199px) {
  .for_fifty__h01 h3 strong {
    font-size: 3.8rem;
  }
}
@media (max-width: 767px) {
  .for_fifty__h01 h3 strong {
    font-size: 2.4rem;
    display: block;
    padding-bottom: 2rem;
    margin-bottom: 0rem;
  }
}
.for_fifty .bg02 {
  height: 420px;
  background-image: url(../images/bg02.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .for_fifty .bg02 {
    height: 240px;
  }
}
.for_fifty__h02 {
  padding: 8.4rem 0 7rem 0;
  text-align: center;
  position: relative;
}
@media (max-width: 1023px) {
  .for_fifty__h02 {
    padding: 6rem 0;
  }
}
@media (max-width: 767px) {
  .for_fifty__h02 {
    padding: 4rem 0;
  }
}
.for_fifty__h02 h3 {
  font-size: 3.6rem;
  line-height: 1.4;
}
.for_fifty__h02 h3 .img02 {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .for_fifty__h02 h3 .img02 {
    max-width: 310px;
    margin-bottom: 1rem;
  }
}
@media (max-width: 1599px) {
  .for_fifty__h02 h3 {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .for_fifty__h02 h3 {
    font-size: 2.4rem;
  }
}
.for_fifty__h02 .img03 {
  max-width: 470px;
  position: absolute;
  top: -4rem;
  right: -8rem;
}
@media (max-width: 1199px) {
  .for_fifty__h02 .img03 {
    max-width: 380px;
    top: 0;
    right: -10rem;
  }
}
@media (max-width: 1023px) {
  .for_fifty__h02 .img03.lg-none {
    display: none;
  }
}
.for_fifty .img03.lg-block {
  display: none;
}
@media (max-width: 1023px) {
  .for_fifty .img03.lg-block {
    display: block;
    max-width: 500px;
    width: 100%;
    margin: 3rem auto 0 auto;
  }
}

.about-list {
  position: relative;
}
.about-list::before {
  content: "";
  height: 380px;
  width: 500px;
  left: 0;
  top: 0;
  background-image: url(../images/bg03-01.png);
  background-repeat: no-repeat;
  position: absolute;
  background-size: cover;
  z-index: -1;
}
@media (max-width: 767px) {
  .about-list::before {
    display: none;
  }
}
.about-list::after {
  content: "";
  height: 300px;
  width: 400px;
  right: 0;
  bottom: 0;
  background-image: url(../images/bg03-02.png);
  background-repeat: no-repeat;
  position: absolute;
  background-size: cover;
  z-index: -1;
}
@media (max-width: 767px) {
  .about-list::after {
    display: none;
  }
}
.about-list .flex {
  justify-content: center;
  align-items: flex-end;
  gap: 3.5rem 2rem;
}
@media (max-width: 1023px) {
  .about-list .flex {
    flex-wrap: wrap;
  }
}
@media (max-width: 1023px) {
  .about-list__box {
    width: calc(50% - 2rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .about-list__box {
    width: 100%;
  }
}
.about-list__box p {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
  margin: 0 1rem 2rem 1rem;
  padding: 0 3rem;
}
@media (max-width: 575px) {
  .about-list__box p {
    font-size: 1.8rem;
    display: inline-block;
  }
}
.about-list__box p::before {
  content: "";
  background-image: url(../images/line-l.svg);
  height: 36px;
  width: 24px;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}
.about-list__box p::after {
  content: "";
  background-image: url(../images/line-r.svg);
  height: 36px;
  width: 24px;
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .about-list__box img {
    border-radius: 50%;
    max-width: 240px;
  }
}
@media (max-width: 767px) {
  .about-list__box__01 {
    position: relative;
  }
}
@media (max-width: 767px) {
  .about-list__box__01::before {
    content: "";
    height: 380px;
    width: 500px;
    right: -22rem;
    top: -12rem;
    background-image: url(../images/bg03-01-sm.png);
    background-repeat: no-repeat;
    position: absolute;
    background-size: contain;
    z-index: -1;
  }
}
@media (max-width: 767px) {
  .about-list__box__02 {
    position: relative;
  }
}
@media (max-width: 767px) {
  .about-list__box__02::before {
    content: "";
    height: 400px;
    width: 500px;
    left: -18rem;
    top: -10rem;
    background-image: url(../images/bg03-02-sm.png);
    background-repeat: no-repeat;
    position: absolute;
    background-size: cover;
    z-index: -1;
  }
}
.about-list h3 {
  font-size: 3.6rem;
  margin-top: 7rem;
  line-height: 1.4;
}
@media (max-width: 1199px) {
  .about-list h3 {
    font-size: 3rem;
    margin-top: 5rem;
  }
}
@media (max-width: 1023px) {
  .about-list h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .about-list h3 {
    margin-top: 4rem;
  }
}

/*anxiety
-----------------------------------------------------*/
@media (max-width: 1023px) {
  .anxiety {
    margin-top: -4rem;
  }
}
.anxiety .bg08-wrap {
  position: relative;
  overflow: hidden;
}
.anxiety .bg08 {
  position: absolute;
  inset: 0;
  background-image: url(../images/bg08.png);
  background-size: cover;
  background-position: top center;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
}
@media (max-width: 767px) {
  .anxiety .bg08 {
    padding: 8rem 0 10rem 0;
    background-position: center -2rem;
    margin-top: 0;
    -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
  }
}
@media (max-width: 575px) {
  .anxiety .bg08 {
    -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgba(0, 0, 0, 0) 100%);
  }
}
.anxiety .container-xxl {
  position: relative;
  z-index: 1;
  padding-top: 20rem;
  padding-bottom: 20rem;
}
@media (max-width: 767px) {
  .anxiety .container-xxl {
    padding-top: 10rem;
    padding-bottom: 14rem;
  }
}
@media (max-width: 575px) {
  .anxiety .container-xxl {
    padding-bottom: 12rem;
  }
}
.anxiety-flex {
  display: flex;
  justify-content: center;
  gap: 1rem 2rem;
}
@media (max-width: 767px) {
  .anxiety-flex {
    flex-direction: column;
  }
}
.anxiety-flex img {
  max-width: 357px;
  width: 100%;
}
@media (max-width: 767px) {
  .anxiety-flex img {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .anxiety-flex .img {
    display: none;
  }
}
.anxiety-flex .img-md {
  display: none;
}
@media (max-width: 767px) {
  .anxiety-flex .img-md {
    display: block;
  }
}
.anxiety-box {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .anxiety-box {
    margin-top: 2rem;
  }
}
.anxiety-box h2 {
  color: #FFF;
  font-size: 3.6rem;
  text-align: center;
  background-color: #2454A9;
  border-radius: 10px 10px 0 0;
  padding: 0.5rem 2rem;
}
@media (max-width: 1199px) {
  .anxiety-box h2 {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) {
  .anxiety-box h2 {
    font-size: 1.6rem;
    padding: 1rem 2rem;
  }
}
.anxiety-box__inner {
  display: flex;
  justify-content: center;
  gap: 0 3rem;
  text-align: center;
  align-items: center;
  position: relative;
}
@media (max-width: 1199px) {
  .anxiety-box__inner {
    flex-wrap: wrap;
  }
}
.anxiety-box__inner p {
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .anxiety-box__inner p {
    font-size: 1.6rem;
  }
}
.anxiety-box__inner .img01 {
  max-width: 462px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1599px) {
  .anxiety-box__inner .img01 {
    max-width: 360px;
  }
}
@media (max-width: 1199px) {
  .anxiety-box__inner .img01 {
    position: static;
    transform: none;
    max-width: 300px;
  }
}
.anxiety-box__inner .img02 {
  max-width: 440px;
  width: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1599px) {
  .anxiety-box__inner .img02 {
    max-width: 340px;
  }
}
@media (max-width: 1199px) {
  .anxiety-box__inner .img02 {
    position: static;
    transform: none;
    max-width: 300px;
  }
}
@media (max-width: 767px) {
  .anxiety-box__inner__01 {
    display: none;
  }
}
@media (max-width: 1199px) {
  .anxiety-box__inner__02 {
    width: 100%;
    order: -1;
  }
}
@media (max-width: 767px) {
  .anxiety-box__inner__03 {
    display: none;
  }
}
.anxiety-box .box-w {
  background-color: #FFF;
  padding: 6rem 2rem;
  border-radius: 0 0 10px 10px;
}
@media (max-width: 767px) {
  .anxiety-box .box-w {
    padding: 3rem 2rem;
  }
}
.anxiety-box .img-sm {
  display: none;
}
@media (max-width: 767px) {
  .anxiety-box .img-sm {
    display: block;
    max-width: 500px;
    width: 100%;
    margin: 3rem auto 0 auto;
  }
}
.anxiety .course {
  background-color: #E6F3F9;
  padding-top: 20rem;
  margin-top: -30rem;
  padding-bottom: 4rem;
}
@media (max-width: 1023px) {
  .anxiety .course {
    padding-bottom: 8rem;
    position: relative;
  }
}
@media (max-width: 767px) {
  .anxiety .course {
    padding-bottom: 6rem;
  }
}
.anxiety .course-flex {
  display: flex;
  gap: 2.4rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .anxiety .course-flex {
    flex-wrap: wrap;
  }
}
.anxiety .course-flex .col01,
.anxiety .course-flex .col02 {
  text-align: center;
  width: calc(50% - 1.2rem);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  background-color: #FFF;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .anxiety .course-flex .col01,
  .anxiety .course-flex .col02 {
    width: 100%;
  }
}
.anxiety .course-flex .col01 h3,
.anxiety .course-flex .col02 h3 {
  color: #FFF;
  border-radius: 10px 10px 0 0;
  font-size: 2.4rem;
  padding: 1rem 2rem;
}
@media (max-width: 1199px) {
  .anxiety .course-flex .col01 h3,
  .anxiety .course-flex .col02 h3 {
    font-size: 2.2rem;
  }
}
@media (max-width: 767px) {
  .anxiety .course-flex .col01 h3,
  .anxiety .course-flex .col02 h3 {
    font-size: 1.6rem;
  }
}
.anxiety .course-flex .col01 .inner,
.anxiety .course-flex .col02 .inner {
  padding: 1.5rem 3.5rem;
  background-color: #FFF;
  border-radius: 0 0 10px 10px;
}
@media (max-width: 1023px) {
  .anxiety .course-flex .col01 .inner,
  .anxiety .course-flex .col02 .inner {
    padding: 2rem;
  }
}
.anxiety .course-flex .col01 .inner h4,
.anxiety .course-flex .col02 .inner h4 {
  font-size: 2.8rem;
  border-bottom: 2px solid #000;
  padding-bottom: 1.5rem;
}
@media (max-width: 1199px) {
  .anxiety .course-flex .col01 .inner h4,
  .anxiety .course-flex .col02 .inner h4 {
    font-size: 2.2rem;
  }
}
@media (max-width: 767px) {
  .anxiety .course-flex .col01 .inner h4,
  .anxiety .course-flex .col02 .inner h4 {
    font-size: 2rem;
  }
}
.anxiety .course-flex .col01 .inner ul li,
.anxiety .course-flex .col02 .inner ul li {
  font-size: 2rem;
  border-bottom: 2px dashed #BDBDBD;
  padding: 1.5rem 0;
}
@media (max-width: 1023px) {
  .anxiety .course-flex .col01 .inner ul li,
  .anxiety .course-flex .col02 .inner ul li {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .anxiety .course-flex .col01 .inner ul li,
  .anxiety .course-flex .col02 .inner ul li {
    font-size: 1.6rem;
  }
}
.anxiety .course-flex .col01 .inner ul li strong,
.anxiety .course-flex .col02 .inner ul li strong {
  font-size: 4rem;
}
@media (max-width: 767px) {
  .anxiety .course-flex .col01 .inner ul li strong,
  .anxiety .course-flex .col02 .inner ul li strong {
    font-size: 3.2rem;
  }
}
.anxiety .course-flex .col01 .inner ul li:last-of-type,
.anxiety .course-flex .col02 .inner ul li:last-of-type {
  border-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.anxiety .course-flex .col01 h3 {
  background-color: #2899A1;
}
.anxiety .course-flex .col02 h3 {
  background-color: #3D7CAF;
}
.anxiety .course .shop-list {
  background-color: #FFF;
  border-radius: 10px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  padding: 2.5rem 3.5rem;
  position: relative;
  margin-bottom: 7rem;
}
@media (max-width: 767px) {
  .anxiety .course .shop-list {
    padding: 2.5rem 2rem;
    margin-bottom: 4rem;
  }
}
.anxiety .course .shop-list table {
  border-collapse: separate;
  border-spacing: 0 10px;
  width: 100%;
}
.anxiety .course .shop-list table th,
.anxiety .course .shop-list table td {
  padding: 0 1.5rem;
  vertical-align: middle;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .anxiety .course .shop-list table th,
  .anxiety .course .shop-list table td {
    display: block;
    width: 100%;
    text-align: center;
  }
}
.anxiety .course .shop-list table th {
  font-size: 2rem;
  color: #FFF;
  background: linear-gradient(90deg, #36B8C5 0%, #428DC7 100%);
}
@media (max-width: 767px) {
  .anxiety .course .shop-list table th {
    font-size: 2rem;
    padding: 0.5rem 1.5rem;
  }
}
.anxiety .course .shop-list table td {
  font-size: 2.2rem;
  word-break: keep-all;
}
@media (max-width: 767px) {
  .anxiety .course .shop-list table td {
    font-size: 1.8rem;
    padding: 1rem 2.5rem;
  }
}
.anxiety .course .shop-list img {
  position: absolute;
  right: 0;
  bottom: -4rem;
  width: 108px;
}
.anxiety .course .feature-list__box {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  margin-top: 4.5rem;
}
.anxiety .course .feature-list__box:first-of-type {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .anxiety .course .feature-list__box:first-of-type {
    margin-top: 7rem;
  }
}
@media (max-width: 767px) {
  .anxiety .course .feature-list__box {
    margin-top: 8rem;
    border-radius: 0;
  }
}
.anxiety .course .feature-list__box h3 {
  position: relative;
  font-size: 2.7rem;
  background-color: #2454A9;
  padding: 1.5rem 2rem 1.5rem 16rem;
  color: #FFF;
  border-radius: 10px 10px 0 0;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .anxiety .course .feature-list__box h3 {
    font-size: 2.2rem;
    text-align: center;
    padding: 2rem 2rem 1.5rem 2rem;
    border-radius: 0;
  }
}
.anxiety .course .feature-list__box h3 img {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .anxiety .course .feature-list__box h3 img {
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
  }
}
.anxiety .course .feature-list__box .inner {
  padding: 3rem 4.5rem;
}
@media (max-width: 767px) {
  .anxiety .course .feature-list__box .inner {
    padding: 3rem 2rem;
  }
}
.anxiety .course .feature-list__box .inner-flex {
  display: flex;
  gap: 2rem 7%;
  justify-content: center;
}
@media (max-width: 1023px) {
  .anxiety .course .feature-list__box .inner-flex {
    flex-wrap: wrap;
  }
}
.anxiety .course .feature-list__box .inner-flex .col01 {
  max-width: 420px;
  width: 100%;
}
@media (max-width: 1023px) {
  .anxiety .course .feature-list__box .inner-flex .col01 {
    order: 1;
  }
}
.anxiety .course .feature-list__box .inner-flex .col02 {
  width: 100%;
}
.anxiety .course .feature-list__box .inner-flex .col02 p {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .anxiety .course .feature-list__box .inner-flex .col02 p {
    font-size: 1.6rem;
  }
}
.anxiety .course .feature-list__box .inner-flex .col02 ul {
  margin-top: 1rem;
}
.anxiety .course .feature-list__box .inner-flex .col02 ul li {
  font-size: 1.8rem;
  color: #FFF;
  background: linear-gradient(90deg, #36B8C5 0%, #428DC7 100%);
  border-radius: 5px;
  font-weight: 700;
  padding: 0.8rem 2rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .anxiety .course .feature-list__box .inner-flex .col02 ul li {
    font-size: 1.6rem;
  }
}
.anxiety .course .feature-list__box .inner-flex .col02 ul li + li {
  margin-top: 10px;
}
.anxiety .course .fish02-block {
  display: none;
}
@media (max-width: 1023px) {
  .anxiety .course .fish02-block {
    width: 160px;
    display: block;
    position: absolute;
    bottom: -5.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
}
@media (max-width: 767px) {
  .anxiety .course .fish02-block {
    width: 77px;
    bottom: -4rem;
  }
}

/*tour
-----------------------------------------------------*/
.tour {
  background-color: #E6F3F9;
}
.tour .bg08-wrap {
  position: relative;
  overflow: hidden;
  padding-top: 10rem;
}
@media (max-width: 1023px) {
  .tour .bg08-wrap {
    padding-top: 6rem;
  }
}
.tour .bg08 {
  position: absolute;
  inset: 0;
  background-image: url(../images/bg08.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: 0;
}
@media (max-width: 1023px) {
  .tour .bg08 {
    background-size: cover;
    background-position: center -30rem;
  }
}
.tour .container-ex {
  position: relative;
  z-index: 1;
}
.tour .fish02-none {
  width: 215px;
  position: absolute;
  left: 2rem;
  top: -3rem;
}
@media (max-width: 1199px) {
  .tour .fish02-none {
    width: 160px;
  }
}
@media (max-width: 1023px) {
  .tour .fish02-none {
    display: none;
  }
}
.tour-box {
  background-color: #FFF;
  padding: 4.5rem;
  border-radius: 10px;
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .tour-box {
    margin-top: 4rem;
    padding: 3rem 2rem;
  }
}
.tour-box h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #2454A9;
  gap: 2rem;
  font-size: 3.6rem;
}
@media (max-width: 1023px) {
  .tour-box h2 {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) {
  .tour-box h2 {
    font-size: 2rem;
  }
}
.tour-box h3 {
  background-color: #2454A9;
  color: #FFF;
  border-radius: 10px 0 10px 0;
  font-size: 2.4rem;
  line-height: 1.4;
  text-align: center;
  padding: 1.5rem 2rem;
  margin-top: 5rem;
  margin-bottom: 3.5rem;
}
@media (max-width: 767px) {
  .tour-box h3 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
.tour-box .link {
  max-width: 795px;
  width: 100%;
  margin: auto;
  display: block;
}
.tour-box .flex {
  gap: 3rem;
  padding: 0 2rem;
}
@media (max-width: 1023px) {
  .tour-box .flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .tour-box .flex {
    padding: 0;
  }
}
.tour-box .flex .col01 {
  width: 100%;
  max-width: 450px;
}
.tour-box .flex .col02 p {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .tour-box .flex .col02 p {
    font-size: 1.6rem;
  }
}
.tour .btn-box--wrap {
  padding: 7rem 0;
}
@media (max-width: 767px) {
  .tour .btn-box--wrap {
    padding: 4rem 0;
  }
}
.tour .btn-box--wrap p {
  font-size: 2.3rem;
  text-align: center;
}
@media (max-width: 767px) {
  .tour .btn-box--wrap p {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
}
.tour .btn-box--wrap .mincho {
  font-size: 4rem;
  font-weight: 700;
  margin-top: 0;
  background: linear-gradient(to right, #4AB1C4, #1277A1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
@media (max-width: 767px) {
  .tour .btn-box--wrap .mincho {
    font-size: 2.9rem;
    line-height: 1.4;
  }
}
.tour .youtube {
  max-width: 795px;
  width: 100%;
  margin: auto;
}
.tour .youtube-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 = 9 / 16 = 0.5625 */
  height: 0;
  overflow: hidden;
}
.tour .youtube-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.tour .youtube p {
  background-color: #FF0F70;
  color: #FFF;
  font-size: 2rem;
  padding: 1.5rem 2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .tour .youtube p {
    font-size: 1.4rem;
  }
}

/*chance
-----------------------------------------------------*/
.chance-bg {
  background-color: #E6F3F9;
  z-index: -1;
  position: relative;
}
.chance-box {
  position: relative;
  padding: 20rem 0;
  background-image: url(../images/bg04.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.chance-box::before {
  content: "";
  background-image: url(../images/bg-wave01.svg);
  background-position: top left 300px;
  background-repeat: repeat-x;
  width: 100%;
  height: 160px;
  position: absolute;
  left: 0;
  top: -1px;
}
@media (max-width: 1023px) {
  .chance-box::before {
    display: none;
  }
}
.chance-box::after {
  content: "";
  background-image: url(../images/bg-wave02.svg);
  background-position: bottom left;
  background-repeat: repeat-x;
  width: 100%;
  height: 150px;
  position: absolute;
  left: 0;
  bottom: -1px;
}
@media (max-width: 1023px) {
  .chance-box::after {
    display: none;
  }
}
@media (max-width: 1023px) {
  .chance-box {
    background-position: center;
    padding: 8rem 0 4rem 0;
  }
}
@media (max-width: 1023px) {
  .chance-box .container-xl {
    padding: 0 10%;
  }
}
@media (max-width: 767px) {
  .chance-box .container-xl {
    padding: 0 2rem;
  }
}
.chance-box .flex {
  align-items: center;
  gap: 4rem;
}
@media (max-width: 1023px) {
  .chance-box .flex {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
}
.chance-box .flex .col01 {
  width: 40%;
}
@media (max-width: 1023px) {
  .chance-box .flex .col01 {
    width: 100%;
    order: 1;
  }
}
.chance-box .flex .col01 .img01 {
  max-width: 542px;
  width: 100%;
}
.chance-box .flex .col02 {
  width: 60%;
}
@media (max-width: 1023px) {
  .chance-box .flex .col02 {
    width: 100%;
  }
}
.chance-box .flex .col02 h2 {
  position: relative;
  color: #FFF;
  font-size: 3.6rem;
  line-height: 1.4;
  margin-bottom: 2.5rem;
}
@media (max-width: 1599px) {
  .chance-box .flex .col02 h2 {
    font-size: 3rem;
  }
}
@media (max-width: 1023px) {
  .chance-box .flex .col02 h2 {
    display: inline-block;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .chance-box .flex .col02 h2 {
    font-size: 2.4rem;
  }
}
.chance-box .flex .col02 h2 .img02 {
  max-width: 274px;
  width: 100%;
  position: absolute;
  left: -9rem;
  top: -10rem;
}
@media (max-width: 1599px) {
  .chance-box .flex .col02 h2 .img02 {
    max-width: 230px;
    left: -2rem;
    top: -8rem;
  }
}
.chance-box .flex .col02 ul li {
  font-size: 2.4rem;
  background-color: #FFF;
  border: 1px solid #FFF;
  font-weight: 700;
  border-radius: 120px;
  color: #2454A9;
  padding: 0.5rem 2rem;
  line-height: 1.4;
  box-sizing: border-box;
  display: inline-block;
}
@media (max-width: 1599px) {
  .chance-box .flex .col02 ul li {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .chance-box .flex .col02 ul li {
    font-size: 1.8rem;
    display: block;
  }
}
.chance-box .flex .col02 ul li:nth-child(even) {
  background-color: #FAF60E;
  border: 1px solid #FAF60E;
  color: #2454A9;
}
.chance-box .flex .col02 ul li + li {
  margin-top: 1rem;
}

/*voice
-----------------------------------------------------*/
.voice {
  padding-top: 10rem;
}
@media (max-width: 767px) {
  .voice {
    padding-top: 5rem;
  }
}
.voice-h {
  position: relative;
}
.voice-h .img01 {
  position: absolute;
  left: 0;
  top: -3rem;
  max-width: 300px;
}
@media (max-width: 1023px) {
  .voice-h .img01 {
    display: none;
  }
}
.voice-h .img02 {
  position: absolute;
  right: 0;
  top: -9rem;
  max-width: 380px;
}
@media (max-width: 1023px) {
  .voice-h .img02 {
    display: none;
  }
}
.voice-h .h-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.voice-h .h-wrap .oswald {
  color: #EEF9FF;
  font-size: 14rem;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .voice-h .h-wrap .oswald {
    font-size: 7.2rem;
  }
}
@media (max-width: 320px) {
  .voice-h .h-wrap .oswald {
    font-size: 5.2rem;
  }
}
.voice-h .h-wrap h2 {
  font-size: clamp(2.4rem, 0.456rem + 4.05vw, 4rem);
  position: relative;
  z-index: 1;
  text-align: center;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
@media (max-width: 767px) {
  .voice-h .h-wrap h2 {
    gap: 1.5rem;
  }
}
.voice-h .h-wrap h2::before {
  content: "";
  background-image: url(../images/bubble-l.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 120px;
  height: 100px;
}
@media (max-width: 767px) {
  .voice-h .h-wrap h2::before {
    width: 100px;
    height: 80px;
    position: absolute;
    left: -10rem;
    z-index: -1;
  }
}
.voice-h .h-wrap h2::after {
  content: "";
  background-image: url(../images/bubble-r.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 120px;
  height: 100px;
}
@media (max-width: 767px) {
  .voice-h .h-wrap h2::after {
    width: 100px;
    height: 80px;
    position: absolute;
    right: -10rem;
    z-index: -1;
  }
}
.voice-box {
  display: flex;
  gap: 3rem;
  justify-content: space-between;
  padding-bottom: 4rem;
  border-bottom: 1px solid #ccc;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .voice-box {
    padding-bottom: 3.5rem;
    margin-bottom: 3.5rem;
  }
}
.voice-box:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.voice-box .col01 {
  max-width: 235px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 767px) {
  .voice-box .col01--pc {
    display: none;
  }
}
.voice-box .col01--md {
  display: none;
}
@media (max-width: 767px) {
  .voice-box .col01--md {
    display: flex;
    margin: 0 auto 2rem auto;
  }
}
.voice-box .col02 h3 {
  color: #FFF;
  background-color: #2454A9;
  font-size: 2.4rem;
  padding: 0.8rem 2rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .voice-box .col02 h3 {
    font-size: 1.8rem;
  }
}
.voice-box .col02 p {
  font-size: 1.6rem;
}

.message {
  text-align: center;
  color: #FFF;
  margin-top: 3rem;
}
.message-bg {
  background-color: #E6F3F9;
  z-index: -1;
  position: relative;
}
.message-box {
  position: relative;
  padding: 20rem 0;
  background-image: url(../images/bg05.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.message-box::before {
  content: "";
  background-image: url(../images/bg-wave01-w.svg);
  background-position: top left;
  background-repeat: repeat-x;
  width: 105%;
  height: 160px;
  position: absolute;
  left: 0;
  top: -1px;
}
.message-box::after {
  content: "";
  background-image: url(../images/bg-wave02-b.svg);
  background-position: bottom left;
  background-repeat: repeat-x;
  width: 100%;
  height: 150px;
  position: absolute;
  left: 0;
  bottom: -1px;
}
@media (max-width: 767px) {
  .message-box {
    background-position: center -50rem;
    background-size: inherit;
    padding: 12rem 0;
  }
}
.message-box h3 {
  font-size: 3.2rem;
  margin-bottom: 3rem;
  line-height: 1.9;
}
@media (max-width: 1023px) {
  .message-box h3 {
    font-size: 2.4rem;
  }
}
.message-box p {
  font-size: 2rem;
  font-weight: 700;
}
.message-box p + p {
  margin-top: 2rem;
}

/*flow
-----------------------------------------------------*/
.flow {
  background-color: #E6F3F9;
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .flow .container-ex {
    padding: 0;
  }
}
.flow .h-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow .h-wrap .oswald {
  color: #FFF;
  font-size: 14rem;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .flow .h-wrap .oswald {
    font-size: 7.2rem;
  }
}
@media (max-width: 320px) {
  .flow .h-wrap .oswald {
    font-size: 5.2rem;
  }
}
.flow .h-wrap h2 {
  font-size: clamp(2.4rem, 0.456rem + 4.05vw, 4rem);
  line-height: 1.3;
  position: relative;
  z-index: 1;
  text-align: center;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
@media (max-width: 767px) {
  .flow .h-wrap h2 {
    gap: 1.5rem;
  }
}
.flow .h-wrap h2::before {
  content: "";
  background-image: url(../images/bubble-w-l.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 120px;
  height: 100px;
}
@media (max-width: 767px) {
  .flow .h-wrap h2::before {
    width: 100px;
    height: 80px;
    position: absolute;
    left: -10rem;
    z-index: -1;
  }
}
.flow .h-wrap h2::after {
  content: "";
  background-image: url(../images/bubble-w-r.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 120px;
  height: 100px;
}
@media (max-width: 767px) {
  .flow .h-wrap h2::after {
    width: 100px;
    height: 80px;
    position: absolute;
    right: -10rem;
    z-index: -1;
  }
}
.flow .flow-container {
  width: 100%;
  box-sizing: border-box;
}
.flow .flow-container .course01 {
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .flow .flow-container .course01 {
    margin-bottom: 0;
  }
}
.flow .flow-container .course01 .flow-title {
  background-color: #2899A1;
}
.flow .flow-container .course01 .open_btn::after {
  border-top: 4px solid #2899A1;
  border-right: 4px solid #2899A1;
}
@media (max-width: 767px) {
  .flow .flow-container .course01 .open_btn::after {
    border-top: 3px solid #2899A1;
    border-right: 3px solid #2899A1;
  }
}
.flow .flow-container .course01 .col02 h4 {
  color: #2899A1;
}
.flow .flow-container .course02 .flow-title {
  background-color: #3D7CAF;
}
.flow .flow-container .course02 .open_btn::after {
  border-top: 4px solid #3D7CAF;
  border-right: 4px solid #3D7CAF;
}
@media (max-width: 767px) {
  .flow .flow-container .course02 .open_btn::after {
    border-top: 3px solid #3D7CAF;
    border-right: 3px solid #3D7CAF;
  }
}
.flow .flow-container .course02 .col02 h4 {
  color: #3D7CAF;
}
.flow .flow-container .course01,
.flow .flow-container .course02 {
  background-color: #FFF;
}
.flow .flow-container .flow-title {
  color: #FFF;
  cursor: pointer;
  padding: 2.5rem 2.5rem 2.5rem 4rem;
  position: relative;
  box-sizing: border-box;
  line-height: 1;
}
@media (max-width: 767px) {
  .flow .flow-container .flow-title {
    padding: 1.5rem 6.5rem 1.5rem 2rem;
    line-height: 1.4;
  }
}
.flow .flow-container .flow-title .flow-in {
  display: inline-block;
  font-size: clamp(2rem, 1.028rem + 2.03vw, 2.8rem);
}
.flow .flow-container .flow-title .open_btn {
  position: absolute;
  right: 7.5rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .flow .flow-container .flow-title .open_btn {
    right: 5rem;
  }
}
.flow .flow-container .flow-title .open_btn::before, .flow .flow-container .flow-title .open_btn::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  transition: 0.3s;
}
.flow .flow-container .flow-title .open_btn::before {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #FFF;
}
@media (max-width: 767px) {
  .flow .flow-container .flow-title .open_btn::before {
    width: 30px;
    height: 30px;
  }
}
.flow .flow-container .flow-title .open_btn::after {
  left: 17.5px;
  width: 12px;
  height: 12px;
  top: -4px;
  transform: rotate(135deg);
}
@media (max-width: 767px) {
  .flow .flow-container .flow-title .open_btn::after {
    left: 11px;
    width: 6px;
    height: 6px;
    top: -4px;
  }
}
.flow .flow-container .flow-title.open .open_btn::after {
  transform: rotate(-45deg);
  top: 3px;
}
@media (max-width: 767px) {
  .flow .flow-container .flow-title.open .open_btn::after {
    top: 2px;
  }
}
.flow .flow-container .flow-text {
  display: none;
  padding: 4.5rem;
  box-sizing: border-box;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .flow .flow-container .flow-text {
    padding: 1.8rem 2rem;
  }
}
.flow .flow-container .flow-text__box {
  display: flex;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid #CCCCCC;
}
.flow .flow-container .flow-text__box:first-of-type {
  padding-top: 0;
}
.flow .flow-container .flow-text__box:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}
.flow .flow-container .flow-text__box .col01 {
  width: 100%;
  max-width: 80px;
}
@media (max-width: 767px) {
  .flow .flow-container .flow-text__box .col01--pc {
    display: none;
  }
}
.flow .flow-container .flow-text__box .icon--md {
  display: none;
}
@media (max-width: 767px) {
  .flow .flow-container .flow-text__box .icon--md {
    display: block;
    width: 50px;
    height: 50px;
  }
}
.flow .flow-container .flow-text__box .col02 {
  width: 100%;
}
.flow .flow-container .flow-text__box .col02 h4 {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .flow .flow-container .flow-text__box .col02 h4 {
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
}
.flow .flow-container .flow-text__box .col02 .colors-p {
  display: inline-block;
  margin-top: 5px;
}
.flow .flow-container .flow-text h4 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}
.flow .flow-container .flow-text .colors-p {
  display: inline-block;
  margin-top: 5px;
}
.flow .flow-container .flow-text .border-box {
  padding: 1rem 2.5rem;
  border: 1px solid #000;
  display: inline-block;
  margin-top: 1rem;
}
.flow .flow-container .flow-text .border-box strong {
  font-size: 2.4rem;
  font-weight: 400;
}
@media (max-width: 767px) {
  .flow .flow-container .flow-text .border-box strong {
    font-size: 2rem;
  }
}
.flow .flow-container .flow-text .border-box strong a {
  color: #FF0F70;
}

/*price
-----------------------------------------------------*/
.price {
  background-color: #E6F3F9;
  padding: 6rem 0 0;
}
@media (max-width: 767px) {
  .price {
    padding: 0;
  }
}
.price .h-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price .h-wrap .oswald {
  color: #FFF;
  font-size: 14rem;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .price .h-wrap .oswald {
    font-size: 7.2rem;
  }
}
@media (max-width: 575px) {
  .price .h-wrap .oswald {
    font-size: 6.8rem;
  }
}
@media (max-width: 320px) {
  .price .h-wrap .oswald {
    font-size: 5.2rem;
  }
}
.price .h-wrap h2 {
  font-size: clamp(2.4rem, 0.456rem + 4.05vw, 4rem);
  line-height: 1.3;
  position: relative;
  z-index: 1;
  text-align: center;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
@media (max-width: 767px) {
  .price .h-wrap h2 {
    gap: 1.5rem;
  }
}
.price .h-wrap h2::before {
  content: "";
  background-image: url(../images/bubble-w-l.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 120px;
  height: 100px;
}
@media (max-width: 767px) {
  .price .h-wrap h2::before {
    width: 100px;
    height: 80px;
    position: absolute;
    left: -10rem;
    z-index: -1;
  }
}
.price .h-wrap h2::after {
  content: "";
  background-image: url(../images/bubble-w-r.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 120px;
  height: 100px;
}
@media (max-width: 767px) {
  .price .h-wrap h2::after {
    width: 100px;
    height: 80px;
    position: absolute;
    right: -10rem;
    z-index: -1;
  }
}
.price .plan-box {
  background-color: #FFF;
}
.price .plan-box h3 {
  color: #FFF;
  font-size: 2.8rem;
  padding: 3rem 2rem;
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .price .plan-box h3 {
    font-size: 2rem;
    padding: 2.5rem 2rem;
  }
}
@media (max-width: 767px) {
  .price .plan-box h3 span {
    font-size: 1.6rem;
  }
}
.price .plan-box h4 {
  background-color: #F2F5F6;
  padding: 1rem 2rem;
  text-align: center;
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .price .plan-box h4 {
    font-size: 2rem;
  }
}
.price .plan-box .inner {
  background-color: #FFF;
  padding: 3.5rem 4.5rem;
}
@media (max-width: 767px) {
  .price .plan-box .inner {
    padding: 3rem 2rem;
  }
}
.price .plan-box .inner-box {
  background-color: #F2F5F6;
  padding: 2rem 3rem;
  margin-top: 3rem;
}
.price .plan-box .inner-box p {
  font-size: 1.8rem;
}
.price .plan-box .inner figure img {
  margin: auto;
}
.price .plan-box .inner hr {
  margin: 3.5rem 0;
}
@media (max-width: 1023px) {
  .price .plan-box .inner .plan--pc {
    display: none;
  }
}
.price .plan-box .inner .plan--lg {
  display: none;
}
@media (max-width: 1023px) {
  .price .plan-box .inner .plan--lg {
    display: block;
  }
}
.price .plan-box .inner-table {
  margin-top: 3rem;
}
.price .plan-box .inner-table table {
  width: 100%;
}
.price .plan-box .inner-table table tr {
  border-bottom: 1px solid #CCCCCC;
}
.price .plan-box .inner-table table tr:last-of-type {
  border-bottom: 0;
}
.price .plan-box .inner-table table th,
.price .plan-box .inner-table table td {
  font-size: 1.8rem;
  padding: 2.5rem;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .price .plan-box .inner-table table th,
  .price .plan-box .inner-table table td {
    display: block;
    padding: 1.5rem 2rem;
    font-size: 1.6rem;
  }
}
.price .plan-box .inner-table table th {
  width: 280px;
  background: #3D7CAF;
  color: #FFF;
  text-align: left;
  vertical-align: middle;
}
@media (max-width: 1023px) {
  .price .plan-box .inner-table table th {
    width: 100%;
  }
}
.price .plan-box .inner-table table td {
  background: #F2F5F6;
}
.price .plan-box .inner-table table td strong {
  text-decoration: underline;
}
.price .plan-box-01 {
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .price .plan-box-01 {
    margin-bottom: 0;
  }
}
.price .plan-box-01 h3 {
  background-color: #2899A1;
}
.price .plan-box-01 h4 {
  color: #2899A1;
}
.price .plan-box-02 h3 {
  background-color: #3D7CAF;
}
.price .plan-box-02 h4 {
  color: #3D7CAF;
}

/*ranking
-----------------------------------------------------*/
.ranking {
  background: url(../images/bg06.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10rem 0 20rem 0;
}
@media (max-width: 1023px) {
  .ranking {
    padding: 6rem 0 10rem 0;
  }
}
@media (max-width: 1023px) {
  .ranking .ranking--pc {
    display: none;
  }
}
.ranking .ranking--lg {
  display: none;
}
@media (max-width: 1023px) {
  .ranking .ranking--lg {
    display: block;
  }
}
.ranking figure {
  text-align: center;
}
.ranking figure img {
  margin: auto;
}

/*license
-----------------------------------------------------*/
.license {
  margin-top: -2px;
}
@media (max-width: 1023px) {
  .license .license--pc {
    display: none;
  }
}
.license .license--lg {
  display: none;
}
@media (max-width: 1023px) {
  .license .license--lg {
    display: block;
  }
}
.license figure img {
  width: 100%;
}

/*faq
-----------------------------------------------------*/
.faq {
  background-color: #2454A9;
  padding: 8rem 0 30rem 0;
}
@media (max-width: 767px) {
  .faq {
    padding: 5rem 0 30rem 0;
  }
}
@media (max-width: 767px) {
  .faq .container-ex {
    padding: 0 2rem;
  }
}
.faq .h-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq .h-wrap .oswald {
  color: rgba(255, 255, 255, 0.07);
  font-size: 14rem;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .faq .h-wrap .oswald {
    font-size: 7.2rem;
  }
}
@media (max-width: 320px) {
  .faq .h-wrap .oswald {
    font-size: 5.2rem;
  }
}
.faq .h-wrap h2 {
  font-size: clamp(2.4rem, 0.456rem + 4.05vw, 4rem);
  position: relative;
  z-index: 1;
  text-align: center;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
@media (max-width: 767px) {
  .faq .h-wrap h2 {
    gap: 1.5rem;
  }
}
.faq .h-wrap h2::before {
  content: "";
  background-image: url(../images/faq-bubble-l.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 120px;
  height: 100px;
}
@media (max-width: 767px) {
  .faq .h-wrap h2::before {
    width: 100px;
    height: 80px;
    position: absolute;
    left: -10rem;
    z-index: -1;
  }
}
.faq .h-wrap h2::after {
  content: "";
  background-image: url(../images/faq-bubble-r.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 120px;
  height: 100px;
}
@media (max-width: 767px) {
  .faq .h-wrap h2::after {
    width: 100px;
    height: 80px;
    position: absolute;
    right: -10rem;
    z-index: -1;
  }
}

.faq-container {
  width: 100%;
  box-sizing: border-box;
}
.faq-container .faq-title {
  cursor: pointer;
  font-size: 2rem;
  padding: 2.5rem 8rem 2.5rem 3.5rem;
  position: relative;
  box-sizing: border-box;
  display: flex;
  gap: 1rem;
  border-radius: 10px;
}
@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 6rem 1.5rem 2rem;
  }
}
.faq-container .faq-title .faq-in {
  line-height: 1.4;
}
.faq-container .faq-title .open_btn {
  position: absolute;
  right: 7.5rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .faq-container .faq-title .open_btn {
    right: 5rem;
  }
}
.faq-container .faq-title .open_btn::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  transition: 0.3s;
}
.faq-container .faq-title .open_btn::after {
  left: 17.5px;
  width: 12px;
  height: 12px;
  top: -4px;
  transform: rotate(135deg);
  border-top: 4px solid #2454A9;
  border-right: 4px solid #2454A9;
}
@media (max-width: 767px) {
  .faq-container .faq-title .open_btn::after {
    left: 11px;
    width: 6px;
    height: 6px;
    top: -4px;
    border-top: 3px solid #2454A9;
    border-right: 3px solid #2454A9;
  }
}
.faq-container .faq-title.open {
  border-radius: 10px 10px 0 0;
}
.faq-container .faq-title.open .open_btn::after {
  transform: rotate(-45deg);
  top: 3px;
}
@media (max-width: 767px) {
  .faq-container .faq-title.open .open_btn::after {
    top: 2px;
  }
}
.faq-container .faq-text {
  display: none;
  padding: 0 4rem 3rem 3.5rem;
  box-sizing: border-box;
  border-radius: 0 0 10px 10px;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .faq-container .faq-text {
    font-size: 1.6rem;
    padding: 1.5rem 3rem 2.5rem 2rem;
  }
}
.faq-container .faq-text__inner {
  display: flex;
  gap: 1rem;
}
.faq-container .faq-text .faq-in {
  line-height: 1.6;
}
.faq-container dl {
  margin-bottom: clamp(1rem, -0.215rem + 2.53vw, 2rem);
}
.faq-container dt {
  font-weight: bold;
  background: #FFF;
}
.faq-container dt .oswald-q {
  position: relative;
  margin-right: 3.5rem;
}
.faq-container dt .oswald-q::after {
  position: absolute;
  content: "Q.";
  color: #FF0F70;
  font-size: 3.2rem;
  line-height: 1;
  word-break: keep-all;
}
.faq-container dd {
  background-color: #FFF;
}
.faq-container dd .oswald-a {
  position: relative;
  margin-right: 3.5rem;
}
.faq-container dd .oswald-a::after {
  position: absolute;
  content: "A.";
  color: #2454A9;
  font-size: 3.2rem;
  line-height: 1;
  word-break: keep-all;
}

/*contact
-----------------------------------------------------*/
.contact {
  background-image: url(../images/bg07-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  color: #FFF;
  font-weight: 700;
  text-align: center;
  padding: 20rem 0 46rem 0;
  margin-top: -24rem;
  position: relative;
}
@media (max-width: 767px) {
  .contact {
    background-image: url(../images/bg07-sm.png);
    padding: 10rem 0 32rem 0;
  }
}
.contact::before {
  content: "";
  background-image: url(../images/bg-wave03.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: -1px;
}
@media (max-width: 1599px) {
  .contact::before {
    height: 190px;
  }
}
@media (max-width: 767px) {
  .contact::before {
    display: none;
  }
}
.contact .fish03 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .contact .fish03 {
    top: -4rem;
  }
}
.contact .fish03 img {
  max-width: 400px;
  width: 100%;
}
.contact h2 {
  font-size: 3.2rem;
  margin-bottom: 4rem;
  text-shadow: 0px 0px 4px rgb(1, 72, 152);
  line-height: 1.4;
}
@media (max-width: 767px) {
  .contact h2 {
    font-size: 2.8rem;
  }
}
.contact p {
  font-size: 2rem;
  text-shadow: 0px 0px 4px rgb(1, 72, 152);
}
@media (max-width: 767px) {
  .contact p {
    font-size: 1.6rem;
  }
}

/*footer
-----------------------------------------------------*/
footer {
  background: #FFF;
  padding: 5rem 0 7rem 0;
}
@media (max-width: 767px) {
  footer {
    padding: 4.5rem 0;
  }
}
footer .flex {
  flex-direction: column;
  gap: 3rem 0;
  justify-content: center;
  text-align: center;
}
footer .copyright {
  font-size: 1.2rem;
}
footer .top-btn img {
  max-width: 60px;
  width: 100%;
  margin: auto;
}/*# sourceMappingURL=style.css.map */