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

img {
  vertical-align: top;
}

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

body {
  line-height: 1;
}

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

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

del {
  text-decoration: line-through;
}

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

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

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

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

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

/* link
-----------------------------------------------------*/
a {
  color: #18A0DB;
}
a:hover, a:active, a:focus {
  color: rgb(152.2592592593, 216.0617283951, 243.7407407407);
}
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 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

ol {
  padding-left: 1em;
}

.float-l {
  float: left;
}

.float-r {
  float: right;
}

.en {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.en02 {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.en03 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

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

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

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

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

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

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

.color-main {
  color: #18A0DB !important;
}

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

.color-caution {
  color: #F23838 !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;
  }
}
html {
  -webkit-text-size-adjust: 100%;
}
@media (max-width: 767px) {
  html {
    margin-top: 46px !important;
  }
}

body {
  background-image: url(../images/common/bg.png);
}

main {
  padding-top: 4rem;
}
@media (max-width: 767px) {
  main {
    padding-top: 2rem;
    -webkit-padding-before: 20px;
    box-sizing: border-box;
  }
}

/*header
-----------------------------------------------------*/
header {
  position: fixed;
  z-index: 99999;
  width: 100%;
  box-sizing: border-box;
  top: 0;
  left: 0;
  padding: 2.5rem 6rem;
  transition: background-color 0.3s;
}
@media (max-width: 1200px) {
  header {
    padding: 0 2rem;
    height: 70px;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 575px) {
  header {
    height: 50px;
  }
}

.header-bg {
  background-color: rgba(255, 255, 255, 0.9);
  transition: background-color 0.3s;
}

.header-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-box .logo picture {
  display: flex;
  align-items: center;
}
.header-box .logo img {
  width: 270px;
}
@media (max-width: 1300px) {
  .header-box .logo img {
    width: 200px;
  }
}
@media (max-width: 1200px) {
  .header-box .logo img {
    width: 180px;
  }
}
@media (max-width: 575px) {
  .header-box .logo img {
    width: 140px;
  }
}
.header-box .logo a {
  display: flex;
  align-items: center;
}
.header-box .logo a:hover {
  opacity: 1;
}
.header-box .header-r-box {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.header-box .header-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 1023px) {
  .header-box .header-contact {
    display: none;
  }
}
.header-box .header-btn01,
.header-box .header-btn02 {
  color: #FFF;
  font-weight: bold;
  font-size: 1.4rem;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  padding: 1rem 1.5rem;
  box-sizing: border-box;
  width: 120px;
}
.header-box .header-btn01 {
  background: linear-gradient(90deg, #18A0DB 0%, #1984DB 100%);
}
.header-box .header-btn02 {
  background: linear-gradient(90deg, #165090 0%, #0C5FBA 100%);
}
@media (max-width: 1023px) {
  .header-box .pc-nav {
    display: none;
  }
}
.header-box .pc-nav nav ul {
  display: flex;
  gap: 0 3rem;
}
.header-box .pc-nav nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
.header-box .pc-nav nav ul .menu-item-has-children {
  position: relative;
}
.header-box .pc-nav nav ul .menu-item-has-children > a {
  position: relative;
  padding-right: 2rem;
}
.header-box .pc-nav nav ul .menu-item-has-children > a::after {
  content: "";
  position: absolute;
  top: 45%;
  right: 0;
  width: 8px;
  height: 8px;
  border-right: 2px solid #18A0DB;
  border-bottom: 2px solid #18A0DB;
  transform: translateY(-50%) rotate(45deg);
}
.header-box .pc-nav nav ul .menu-item-has-children .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  background: linear-gradient(90deg, #165090 0%, #0C5FBA 100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 100;
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
}
.header-box .pc-nav nav ul .menu-item-has-children .sub-menu li {
  margin: 0.5rem 0;
}
.header-box .pc-nav nav ul .menu-item-has-children .sub-menu a {
  color: #FFF;
  font-size: 1.5rem;
}
.header-box .pc-nav nav ul .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/*hamburger
-----------------------------------------------------*/
.sm-nav {
  margin: 0;
  transition: all 0.6s;
  overflow-y: auto;
  width: 255px;
  height: 100vh;
  z-index: 200;
  top: 0;
  left: -320px;
  background-color: #18A0DB;
  position: fixed;
  display: none;
}
@media (max-width: 1200px) {
  .sm-nav {
    display: block;
  }
}
.sm-nav__inner {
  padding: 0 2rem;
}
.sm-nav__inner a {
  display: block;
  color: #FFF;
  font-weight: 700;
  padding: 1.5rem 2rem;
  font-size: 1.6rem;
  text-decoration: none;
}

.nav_btn {
  width: 70px;
  height: 70px;
  z-index: 300000;
  top: 0;
  right: 0;
  margin: auto;
  cursor: pointer;
  position: absolute;
  background: #18A0DB;
  display: none;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 1023px) {
  .nav_btn {
    display: block;
  }
}
@media (max-width: 575px) {
  .nav_btn {
    width: 50px;
    height: 50px;
  }
}

.hamburger_line {
  transition: all 0.6s;
  width: 34px;
  height: 1px;
  background-color: #FFF;
  position: absolute;
  left: 19px;
}
@media (max-width: 575px) {
  .hamburger_line {
    width: 24px;
    left: 14px;
  }
}

.hamburger_line1 {
  top: 28px;
}
@media (max-width: 575px) {
  .hamburger_line1 {
    top: 20px;
  }
}

.hamburger_line2 {
  top: 40px;
}
@media (max-width: 575px) {
  .hamburger_line2 {
    top: 30px;
  }
}

.hamburger.active span:nth-child(1), .hamburger.active span:nth-child(2) {
  top: 34px;
  background: #FFF;
}
@media (max-width: 575px) {
  .hamburger.active span:nth-child(1), .hamburger.active span:nth-child(2) {
    top: 24px;
  }
}
.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2) {
  transform: rotate(45deg);
}

.globalMenu {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overscroll-behavior-y: contain;
  overflow-y: auto;
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 0.6s ease, opacity 0.4s ease;
}
.globalMenu.active {
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(0);
  flex-direction: column;
  gap: 2rem;
}

.nav__gnav .menu-item-has-children > a {
  position: relative;
  padding-right: 3rem;
}
.nav__gnav .menu-item-has-children > a::before, .nav__gnav .menu-item-has-children > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 2px;
  background: #18A0DB;
  transition: transform 0.3s ease;
  transform-origin: center;
}
.nav__gnav .menu-item-has-children > a::before {
  transform: translateY(-50%) rotate(0deg);
}
.nav__gnav .menu-item-has-children > a::after {
  transform: translateY(-50%) rotate(90deg);
}
.nav__gnav .menu-item-has-children.is-open > a::after {
  transform: translateY(-50%) rotate(0deg);
}
.nav__gnav .menu-item-has-children.is-open .sub-menu {
  max-height: 300px;
  opacity: 1;
}
.nav__gnav .sub-menu {
  display: block !important;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.8s ease, opacity 0.6s ease;
}
.nav__gnav .nav__inner li {
  text-align: center;
  margin: 2rem 0;
}
.nav__gnav .nav__inner li a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.6rem;
}

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

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

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

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

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

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

.page-sec {
  padding: 14rem 0 12rem 0;
}
@media (max-width: 767px) {
  .page-sec {
    padding: 10rem 0 8rem 0;
  }
}
@media (max-width: 575px) {
  .page-sec {
    padding: 8rem 0 6rem 0;
  }
}

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

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

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

/*h
-----------------------------------------------------*/
.h-sec01,
.h-sec02,
.h-sec03,
.h-sec04,
.h-sec05,
.h-sec06 {
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-family: "Noto Serif CJK JP", serif;
  line-height: 1.2;
}

.h-sec01,
.h-sec02,
.h-sec03,
.h-sec04,
.h-sec06 {
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .h-sec01,
  .h-sec02,
  .h-sec03,
  .h-sec04,
  .h-sec06 {
    margin-bottom: 3rem;
  }
}

.h-sec01 {
  font-size: clamp(4rem, 4vw, 6.5rem);
}
.h-sec01 .en {
  color: #18A0DB;
  line-height: 1;
  font-size: clamp(2.2rem, 4vw, 3rem);
}

.h-sec02 {
  font-size: clamp(3rem, 4vw, 5rem);
}
.h-sec02 .en {
  color: #18A0DB;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(2.2rem, 4vw, 3rem);
}
.h-sec02 .en::before {
  content: "";
  width: 10px;
  height: 1px;
  background-color: #18A0DB;
  display: block;
}

.h-sec03 {
  text-align: center;
  gap: 1rem;
  font-size: clamp(3.2rem, 4vw, 6.5rem);
}
.h-sec03 .en {
  color: #18A0DB;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  font-size: clamp(2.2rem, 4vw, 3rem);
}
.h-sec03 .en::before {
  content: "";
  width: 10px;
  height: 1px;
  background-color: #18A0DB;
  display: block;
}

.h-sec04 {
  text-align: center;
  color: #FFF;
  font-size: clamp(4rem, 4vw, 6.5rem);
}
.h-sec04 .en {
  color: #FFF;
  line-height: 1;
  font-size: clamp(2.2rem, 4vw, 3rem);
}

.h-sec05 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}
.h-sec05 .en {
  color: #18A0DB;
  line-height: 1;
  font-size: clamp(4rem, 4vw, 10rem);
}

.h-sec06 {
  text-align: center;
  gap: 1rem;
  font-size: clamp(2.6rem, 6vw, 5rem);
  color: #FFF;
}
.h-sec06 .en {
  color: #FFF;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}
.h-sec06 .en::before {
  content: "";
  width: 10px;
  height: 1px;
  background-color: #FFF;
  display: block;
}
.h-sec06 strong {
  color: #FFF;
  font-weight: 400;
}

/*btn
-----------------------------------------------------*/
/*ページ内共通*/
.contact-btn {
  display: flex;
  gap: 1.5rem 2rem;
  justify-content: center;
}
@media (max-width: 575px) {
  .contact-btn {
    gap: 1.5rem 1rem;
  }
}

.btn01 {
  color: #FFF;
  font-weight: bold;
  text-decoration: none;
  padding: 1.8rem 2rem;
  box-sizing: border-box;
  max-width: 280px;
  width: 100%;
  background: linear-gradient(-90deg, #18A0DB 0%, #1984DB 100%);
  display: block;
  text-align: center;
  position: relative;
}
.btn01 .arrow {
  position: absolute;
  display: block;
  transform: rotate(90deg);
  right: 30px;
  top: 34px;
}
.btn01 .arrow::before, .btn01 .arrow::after {
  content: "";
  position: absolute;
  background: #FFF;
  border-radius: 100px;
}
.btn01 .arrow::before {
  width: 1px;
  height: 14px;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -32%);
}
.btn01 .arrow::after {
  width: 8px;
  height: 1px;
  left: 50%;
  top: -5px;
  transform: translate(-95%, -85%) rotate(-45deg);
  transform-origin: right center;
}

.btn02 {
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.btn02 .arrow {
  background-color: #FFF;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  display: block;
  transform: rotate(90deg);
}
@media (max-width: 1023px) {
  .btn02 .arrow {
    width: 44px;
    height: 44px;
  }
}
.btn02 .arrow::before, .btn02 .arrow::after {
  content: "";
  position: absolute;
  background: #18A0DB;
  border-radius: 100px;
}
.btn02 .arrow::before {
  width: 1px;
  height: 14px;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -32%);
}
.btn02 .arrow::after {
  width: 8px;
  height: 1px;
  left: 50%;
  top: 23px;
  transform: translate(-95%, -85%) rotate(-45deg);
  transform-origin: right center;
}
@media (max-width: 1023px) {
  .btn02 .arrow::after {
    top: 16px;
  }
}

.btn03 {
  font-size: 1.4rem;
  font-weight: bold;
  color: #18A0DB;
  text-decoration: none;
  padding-bottom: 0.5rem;
  padding-right: 0.5rem;
  border-bottom: 1px solid #18A0DB;
  display: inline-flex;
  align-items: center;
  gap: 2rem;
}
.btn03 .arrow {
  display: block;
  transform: rotate(90deg);
}
.btn03 .arrow::before, .btn03 .arrow::after {
  content: "";
  position: absolute;
  background: #18A0DB;
  border-radius: 100px;
}
.btn03 .arrow::before {
  width: 1px;
  height: 14px;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -32%);
}
.btn03 .arrow::after {
  width: 8px;
  height: 1px;
  left: 50%;
  top: -5px;
  transform: translate(-95%, -85%) rotate(-45deg);
  transform-origin: right center;
}

/*page-header
-----------------------------------------------------*/
.page-header .ttl-wrap p {
  color: #18A0DB;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.page-header .ttl-wrap p::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  background-color: #18A0DB;
}
.page-header .ttl-wrap h1 {
  font-size: clamp(3.2rem, 6vw, 7rem);
  font-family: "Noto Serif CJK JP";
  font-weight: 400;
  line-height: 1.4;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

/*breadcrumb
-----------------------------------------------------*/
.breadcrumb-box {
  background-color: #FFF;
  font-size: 1.2rem;
  padding: 1.5rem 0;
  margin-top: 4.5rem;
  border-bottom: 1px solid #DFDFDF;
}
.breadcrumb-box #breadcrumb {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}
.breadcrumb-box a {
  color: #333;
  text-decoration: none;
  flex-shrink: 0;
}
.breadcrumb-box span {
  min-width: 0;
}
.breadcrumb-box span:last-child {
  display: inline-block;
  max-width: 42rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: bottom;
}
@media (max-width: 767px) {
  .breadcrumb-box span:last-child {
    max-width: 24rem;
  }
}
@media (max-width: 575px) {
  .breadcrumb-box span:last-child {
    max-width: 16rem;
  }
}
.breadcrumb-box .arrow {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  flex-shrink: 0;
}

/*scroll-hint
-----------------------------------------------------*/
.tableArea {
  max-width: 100%;
  overflow: auto;
}
@media (max-width: 767px) {
  .tableArea {
    font-size: 1.4rem !important;
  }
}

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

/*main
-----------------------------------------------------*/
.main-v {
  position: relative;
  padding: 0 10rem;
}
@media (max-width: 767px) {
  .main-v {
    padding: 0 6rem;
  }
}
@media (max-width: 575px) {
  .main-v {
    padding: 0 2rem;
  }
}
.main-v__img {
  position: relative;
}
.main-v__img picture,
.main-v__img img {
  display: block;
  width: 100%;
}
.main-v__copy {
  position: absolute;
  top: 50%;
  left: 4%;
  transform: translateY(-50%);
  z-index: 2;
}
@media (max-width: 767px) {
  .main-v__copy {
    top: 8%;
    left: 2%;
    transform: none;
  }
}
.main-v__copy img {
  display: block;
  width: 46vw;
}
@media (max-width: 767px) {
  .main-v__copy img {
    width: 75vw;
  }
}
@media (max-width: 575px) {
  .main-v__copy img {
    width: 84vw;
  }
}
.main-v .contact-btn {
  width: 100%;
  margin-top: 10rem;
}
@media (max-width: 767px) {
  .main-v .contact-btn {
    margin-top: 4rem;
  }
}
.main-v .contact-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
  gap: 2rem 3.5rem;
}
@media (max-width: 767px) {
  .main-v .contact-tel {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .main-v .contact-tel .bold {
    border-bottom: 1px solid #333;
    padding-bottom: 2rem;
  }
}
.main-v .contact-tel .tel {
  border-left: 1px solid #333;
  padding-left: 3.5rem;
}
@media (max-width: 767px) {
  .main-v .contact-tel .tel {
    width: 100%;
    padding-left: 0;
    border-left: 0;
    text-align: center;
  }
}
.main-v .contact-tel .tel .en {
  font-size: 8rem;
  line-height: 1;
}
@media (max-width: 1023px) {
  .main-v .contact-tel .tel .en {
    font-size: 6rem;
  }
}
@media (max-width: 575px) {
  .main-v .contact-tel .tel .en {
    font-size: 5rem;
  }
}
.main-v .contact-tel .tel a {
  color: #333;
  text-decoration: none;
}

/*floating
-----------------------------------------------------*/
.floating {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.floating a {
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  writing-mode: vertical-rl;
  letter-spacing: 0.08em;
  padding: 4rem 0;
}
.floating a img {
  width: 28px;
  height: auto;
}

.floating-btn01 {
  background: linear-gradient(45deg, #18A0DB 0%, #1984DB 100%);
}

.floating-btn02 {
  background: linear-gradient(45deg, #165090 0%, #0C5FBA 100%);
}

.floating-btn03 {
  background: linear-gradient(45deg, #1ED1F0 0%, #009DB8 100%);
}

@media (max-width: 767px) {
  .floating {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    transform: none;
    flex-direction: row;
    gap: 0;
  }
  .floating a {
    width: auto;
    flex: 1;
    writing-mode: horizontal-tb;
    font-size: 1.2rem;
    gap: 0.4rem;
    padding: 1.2rem 0;
    flex-direction: column;
  }
  .floating a img {
    width: 22px;
  }
  body {
    padding-bottom: 70px;
  }
}
/*top--our-way
-----------------------------------------------------*/
.top--our-way .flex {
  justify-content: space-between;
  gap: 2rem 4rem;
}
@media (max-width: 767px) {
  .top--our-way .flex {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
.top--our-way .flex .text {
  max-width: 310px;
  width: 100%;
}
.top--our-way .flex .text .btn01 {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .top--our-way .flex .text .btn01 {
    margin: 4rem auto 0 auto;
  }
}
.top--our-way .flex .img {
  max-width: 600px;
  width: 100%;
}
@media (max-width: 767px) {
  .top--our-way .flex .img {
    margin: auto;
  }
}

/*top--service
-----------------------------------------------------*/
.top--service {
  background-image: url(../images/top/bg-service.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  color: #FFF;
}
.top--service .service-box {
  border-bottom: 1px solid #FFF;
  padding: 7rem 0;
}
@media (max-width: 767px) {
  .top--service .service-box {
    padding: 5rem 0;
  }
}
.top--service .service-box:first-of-type {
  padding-top: 0;
}
.top--service .service-box:last-of-type {
  padding-bottom: 0;
  border-bottom: 0;
}
.top--service .service-box h3 {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  line-height: 1.4;
  margin-bottom: 2rem;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
}
.top--service .service-box h3 .en {
  font-weight: bold;
  font-size: clamp(1.6rem, 4vw, 2rem);
}
.top--service .service-box p {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .top--service .service-box p {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .top--service .service-box p {
    font-size: 1.4rem;
  }
}
.top--service .service-box .service-flex {
  margin-top: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem 7rem;
}
@media (max-width: 1023px) {
  .top--service .service-box .service-flex {
    flex-direction: column;
  }
}
.top--service .service-box .service-flex .text {
  width: 100%;
}
.top--service .service-box .service-flex .text h4 {
  font-size: 3rem;
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
  line-height: 1.4;
  gap: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
}
.top--service .service-box .service-flex .text h4 .en {
  font-weight: bold;
  font-size: clamp(1.4rem, 4vw, 1.6rem);
}
.top--service .service-box .service-flex .text .btn-wrap {
  margin-top: 5rem;
}
.top--service .service-box .service-flex .img {
  width: 100%;
  max-width: 600px;
}

/*top--implementing
-----------------------------------------------------*/
.top--implementing {
  position: relative;
}
.top--implementing::before {
  content: "";
  background-image: url(../images/top/bg_implementing.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 273px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.top--implementing .h-wrap {
  text-align: center;
}
.top--implementing .h-wrap .h-sec03 {
  background-color: #FFF;
  display: inline-flex;
  padding: 5rem 13rem 1rem 13rem;
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .top--implementing .h-wrap .h-sec03 {
    display: flex;
    padding: 5rem 2rem 1rem 2rem;
    margin-top: 8rem;
  }
}
.top--implementing .h-wrap .h-sec03 .flex {
  gap: 0;
}
.top--implementing .flex {
  gap: 1rem 2rem;
  justify-content: center;
}
.top--implementing .flex .implementing-logo__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 224px;
  height: 100px;
  background-color: #FFF;
}
@media (max-width: 767px) {
  .top--implementing .flex .implementing-logo__item {
    width: 200px;
    height: 80px;
  }
}
@media (max-width: 575px) {
  .top--implementing .flex .implementing-logo__item {
    width: 150px;
    height: 50px;
  }
}
.top--implementing .flex img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

/*top--card(共通)
-----------------------------------------------------*/
.top--card {
  position: relative;
}
.top--card::after {
  content: "";
  background-color: #F3F3F3;
  width: 50%;
  height: 400px;
  position: absolute;
  right: 0;
  top: 12rem;
  z-index: -1;
  filter: opacity(0.5);
}
.top--card .h-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6rem;
  align-items: end;
}
.top--card .h-wrap .h-sec02 {
  margin-bottom: 0;
}

.case--card,
.column--card {
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  height: 100%;
}
.case--card a,
.column--card a {
  text-decoration: none;
  color: #333;
}
.case--card .thumb,
.column--card .thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.case--card .thumb img,
.column--card .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.case--card .text,
.column--card .text {
  background-color: #FFF;
  padding: 3rem;
}
.case--card .text h3,
.column--card .text h3 {
  font-size: 1.6rem;
}
@media (max-width: 575px) {
  .case--card .text h3,
  .column--card .text h3 {
    font-size: 1.4rem;
  }
}

.case--card {
  height: 100%;
}
.case--card .text h3 {
  margin-bottom: 1rem;
}

.column--card .text .flex {
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.column--card .text .flex .day {
  font-size: 1.4rem;
}
@media (max-width: 575px) {
  .column--card .text .flex .day {
    font-size: 1.2rem;
  }
}
.column--card .text .flex ul {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.column--card .text .flex ul li {
  font-size: 1.2rem;
  color: #18A0DB;
  border: 1px solid #18A0DB;
  border-radius: 50px;
  padding: 0.2rem 2rem;
}

.top--case,
.top--column {
  overflow: hidden;
}
.top--case .swiper-wrapper,
.top--column .swiper-wrapper {
  align-items: stretch;
}
.top--case .swiper-slide,
.top--column .swiper-slide {
  height: auto;
}

.top--case .case--list {
  margin-left: max((100vw - 1200px) / 2, 2rem);
  overflow: visible;
}

.top--column .column--list {
  margin-left: max((100vw - 1200px) / 2, 2rem);
  overflow: visible;
}

/*top--news
-----------------------------------------------------*/
.top--news {
  position: relative;
}
.top--news::after {
  content: "";
  background-color: #F3F3F3;
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  filter: opacity(0.5);
}
.top--news .flex {
  align-items: center;
  justify-content: space-between;
  gap: 0 6rem;
}
@media (max-width: 1023px) {
  .top--news .flex {
    flex-direction: column;
  }
}
.top--news .flex-l {
  width: 100%;
  max-width: 240px;
}
@media (max-width: 1023px) {
  .top--news .flex-l {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6rem;
    align-items: end;
    max-width: none;
  }
}
.top--news .flex-r {
  max-width: 800px;
  width: 100%;
}
@media (max-width: 1023px) {
  .top--news .flex-r {
    max-width: none;
  }
}

.top--news ul.list > li,
.page--news ul.list > li {
  padding: 2rem 0;
  border-bottom: 1px solid #DFDFDF;
}
.top--news ul.list > li a,
.page--news ul.list > li a {
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: center;
  gap: 1rem 1.5rem;
}
@media (max-width: 767px) {
  .top--news ul.list > li a,
  .page--news ul.list > li a {
    flex-wrap: wrap;
  }
}
.top--news .day,
.page--news .day {
  word-break: keep-all;
}
.top--news ul.cat,
.page--news ul.cat {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 767px) {
  .top--news ul.cat,
  .page--news ul.cat {
    flex-wrap: wrap;
  }
}
.top--news ul.cat li,
.page--news ul.cat li {
  font-size: 1.2rem;
  color: #18A0DB;
  border: 1px solid #18A0DB;
  border-radius: 50px;
  padding: 0.2rem 2rem;
  word-break: keep-all;
}
.top--news h3,
.page--news h3 {
  font-weight: 400;
  font-size: 1.6rem;
}
@media (max-width: 575px) {
  .top--news h3,
  .page--news h3 {
    font-size: 1.4rem;
  }
}

.page--news .news-cat,
.page--news .column-cat,
.page--column .news-cat,
.page--column .column-cat {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .page--news .news-cat,
  .page--news .column-cat,
  .page--column .news-cat,
  .page--column .column-cat {
    justify-content: flex-start;
    margin-bottom: 4rem;
  }
}
.page--news .news-cat__link,
.page--news .column-cat__link,
.page--column .news-cat__link,
.page--column .column-cat__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 3rem;
  border: 1px solid #18A0DB;
  border-radius: 999px;
  color: #18A0DB;
  font-size: 1.4rem;
  line-height: 1.4;
  text-decoration: none;
  background-color: #FFF;
  transition: color 0.2s ease, background-color 0.2s ease;
}
@media (max-width: 767px) {
  .page--news .news-cat__link,
  .page--news .column-cat__link,
  .page--column .news-cat__link,
  .page--column .column-cat__link {
    padding-inline: 1.6rem;
    padding: 0.5rem 2rem;
  }
}
.page--news .news-cat__link:hover, .page--news .news-cat__link.is-current,
.page--news .column-cat__link:hover,
.page--news .column-cat__link.is-current,
.page--column .news-cat__link:hover,
.page--column .news-cat__link.is-current,
.page--column .column-cat__link:hover,
.page--column .column-cat__link.is-current {
  color: #FFF;
  background-color: #18A0DB;
}

.page--column .column--list,
.page--column .case--list,
.page--case_study .column--list,
.page--case_study .case--list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  align-items: stretch;
}
@media (max-width: 767px) {
  .page--column .column--list,
  .page--column .case--list,
  .page--case_study .column--list,
  .page--case_study .case--list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .page--column .column--list,
  .page--column .case--list,
  .page--case_study .column--list,
  .page--case_study .case--list {
    grid-template-columns: 1fr;
  }
}
.page--column .column--list .column--card,
.page--column .column--list .case--card,
.page--column .case--list .column--card,
.page--column .case--list .case--card,
.page--case_study .column--list .column--card,
.page--case_study .column--list .case--card,
.page--case_study .case--list .column--card,
.page--case_study .case--list .case--card {
  height: 100%;
}
.page--column .column--list .column--card a,
.page--column .column--list .case--card a,
.page--column .case--list .column--card a,
.page--column .case--list .case--card a,
.page--case_study .column--list .column--card a,
.page--case_study .column--list .case--card a,
.page--case_study .case--list .column--card a,
.page--case_study .case--list .case--card a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.page--column .column--list .column--card .thumb,
.page--column .column--list .case--card .thumb,
.page--column .case--list .column--card .thumb,
.page--column .case--list .case--card .thumb,
.page--case_study .column--list .column--card .thumb,
.page--case_study .column--list .case--card .thumb,
.page--case_study .case--list .column--card .thumb,
.page--case_study .case--list .case--card .thumb {
  flex-shrink: 0;
}
.page--column .column--list .column--card .text,
.page--column .column--list .case--card .text,
.page--column .case--list .column--card .text,
.page--column .case--list .case--card .text,
.page--case_study .column--list .column--card .text,
.page--case_study .column--list .case--card .text,
.page--case_study .case--list .column--card .text,
.page--case_study .case--list .case--card .text {
  flex: 1;
}

.pagination {
  margin-top: 5.6rem;
}
@media (max-width: 767px) {
  .pagination {
    margin-top: 4rem;
  }
}
.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid #DFDFDF;
  border-radius: 50%;
  color: #333333;
  font-size: 1.4rem;
  line-height: 1;
  text-decoration: none;
  background-color: #FFF;
}
.pagination .current {
  border-color: #18A0DB;
  color: #FFF;
  background-color: #18A0DB;
}
.pagination .prev,
.pagination .next {
  border-color: transparent;
  font-size: 0;
  position: relative;
}
.pagination .prev::before,
.pagination .next::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
}
.pagination .prev::before {
  transform: rotate(-135deg);
}
.pagination .next::before {
  transform: rotate(45deg);
}

/*page--seminar
-----------------------------------------------------*/
.page--seminar .seminar-list,
.page--seminar .download-list,
.page--download .seminar-list,
.page--download .download-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (max-width: 767px) {
  .page--seminar .seminar-list,
  .page--seminar .download-list,
  .page--download .seminar-list,
  .page--download .download-list {
    gap: 2rem;
  }
}
.page--seminar .seminar-item,
.page--seminar .download-item,
.page--download .seminar-item,
.page--download .download-item {
  background-color: #FFF;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  padding: 5rem 10rem 5rem 5rem;
  position: relative;
}
@media (max-width: 1023px) {
  .page--seminar .seminar-item,
  .page--seminar .download-item,
  .page--download .seminar-item,
  .page--download .download-item {
    padding: 4rem 9rem 4rem 4rem;
  }
}
@media (max-width: 575px) {
  .page--seminar .seminar-item,
  .page--seminar .download-item,
  .page--download .seminar-item,
  .page--download .download-item {
    padding: 2rem 7rem 2rem 2rem;
  }
}
.page--seminar .seminar-item__link,
.page--seminar .download-item__link,
.page--download .seminar-item__link,
.page--download .download-item__link {
  color: #333;
  text-decoration: none;
}
.page--seminar .seminar-item__link-flex,
.page--seminar .download-item__link-flex,
.page--download .seminar-item__link-flex,
.page--download .download-item__link-flex {
  display: flex;
  align-items: center;
  gap: 3rem 5rem;
}
@media (max-width: 1023px) {
  .page--seminar .seminar-item__link-flex,
  .page--seminar .download-item__link-flex,
  .page--download .seminar-item__link-flex,
  .page--download .download-item__link-flex {
    gap: 3rem;
  }
}
@media (max-width: 767px) {
  .page--seminar .seminar-item__link-flex,
  .page--seminar .download-item__link-flex,
  .page--download .seminar-item__link-flex,
  .page--download .download-item__link-flex {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .page--seminar .seminar-item__link-flex,
  .page--seminar .download-item__link-flex,
  .page--download .seminar-item__link-flex,
  .page--download .download-item__link-flex {
    gap: 2rem;
  }
}
.page--seminar .seminar-item__thumb,
.page--seminar .download-item__thumb,
.page--download .seminar-item__thumb,
.page--download .download-item__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  max-width: 384px;
  width: 100%;
}
.page--seminar .seminar-item__thumb img,
.page--seminar .download-item__thumb img,
.page--download .seminar-item__thumb img,
.page--download .download-item__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  max-width: 384px;
}
.page--seminar .seminar-item__ttl,
.page--seminar .download-item__ttl,
.page--download .seminar-item__ttl,
.page--download .download-item__ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
@media (max-width: 1023px) {
  .page--seminar .seminar-item__ttl,
  .page--seminar .download-item__ttl,
  .page--download .seminar-item__ttl,
  .page--download .download-item__ttl {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .page--seminar .seminar-item__ttl,
  .page--seminar .download-item__ttl,
  .page--download .seminar-item__ttl,
  .page--download .download-item__ttl {
    font-size: 1.6rem;
  }
}
.page--seminar .seminar-item__arrow,
.page--seminar .download-item__arrow,
.page--download .seminar-item__arrow,
.page--download .download-item__arrow {
  align-self: stretch;
  position: absolute;
  display: block;
  background: linear-gradient(180deg, #1984DB 0%, #18A0DB 100%);
  right: 0;
  top: 0;
  width: 50px;
  height: 100%;
}
.page--seminar .seminar-item__arrow span,
.page--seminar .download-item__arrow span,
.page--download .seminar-item__arrow span,
.page--download .download-item__arrow span {
  position: relative;
  width: 50px;
  height: 50px;
  display: block;
  top: 50%;
  transform: translateY(-50%);
}
.page--seminar .seminar-item__arrow span::before, .page--seminar .seminar-item__arrow span::after,
.page--seminar .download-item__arrow span::before,
.page--seminar .download-item__arrow span::after,
.page--download .seminar-item__arrow span::before,
.page--download .seminar-item__arrow span::after,
.page--download .download-item__arrow span::before,
.page--download .download-item__arrow span::after {
  content: "";
  position: absolute;
  background: #FFF;
  border-radius: 100px;
}
.page--seminar .seminar-item__arrow span::before,
.page--seminar .download-item__arrow span::before,
.page--download .seminar-item__arrow span::before,
.page--download .download-item__arrow span::before {
  width: 14px;
  height: 1px;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -32%);
}
.page--seminar .seminar-item__arrow span::after,
.page--seminar .download-item__arrow span::after,
.page--download .seminar-item__arrow span::after,
.page--download .download-item__arrow span::after {
  width: 8px;
  height: 1px;
  left: 50%;
  top: 24px;
  transform: translate(-20%, -75%) rotate(45deg);
  transform-origin: right center;
}

/*single-article
-----------------------------------------------------*/
.single-article__inner {
  max-width: 960px;
  margin: 0 auto;
}
.single-article__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .single-article__thumb {
    margin-bottom: 3rem;
  }
}
.single-article__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.single-article__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.single-article__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 5rem;
}
@media (max-width: 575px) {
  .single-article__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }
}
.single-article__cat {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.single-article__cat li {
  font-size: 1.2rem;
  color: #18A0DB;
  border: 1px solid #18A0DB;
  border-radius: 50px;
  padding: 0.2rem 1.2rem;
  line-height: 1.4;
}
.single-article__date {
  color: #333;
  word-break: keep-all;
}
.single-article__btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 7rem;
}
.single-article__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 1.8rem 5rem;
  color: #FFF;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(90deg, #1984DB 0%, #18A0DB 100%);
  box-sizing: border-box;
}
.single-article__btn .arrow {
  align-self: stretch;
  position: absolute;
  right: 3.5rem;
  top: 51%;
  transform: translateY(-50%);
}
.single-article__btn .arrow::before, .single-article__btn .arrow::after {
  content: "";
  position: absolute;
  background: #FFF;
  border-radius: 100px;
}
.single-article__btn .arrow::before {
  width: 14px;
  height: 1px;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -32%);
}
.single-article__btn .arrow::after {
  width: 8px;
  height: 1px;
  left: 50%;
  top: 0;
  transform: translate(-20%, -75%) rotate(45deg);
  transform-origin: right center;
}

/*editor*/
.single-article__body,
.page--common {
  line-height: 2;
}
.single-article__body p,
.page--common p {
  margin-bottom: 3rem;
}
.single-article__body h2,
.page--common h2 {
  color: #FFF;
  background: #18A0DB;
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.5;
  padding: 1.4rem 2rem;
  border-radius: 4px;
  margin: 6rem 0 3rem;
}
.single-article__body h3,
.page--common h3 {
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 1.5rem;
  margin: 6rem 0 3rem;
  border-bottom: 1px solid #DFDFDF;
  position: relative;
}
.single-article__body h3::after,
.page--common h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 10rem;
  height: 2px;
  background-color: #18A0DB;
}
.single-article__body h4,
.page--common h4 {
  color: #18A0DB;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 5rem 0 2rem;
}
@media (max-width: 767px) {
  .single-article__body h4,
  .page--common h4 {
    font-size: 1.8rem;
  }
}
@media (max-width: 575px) {
  .single-article__body h4,
  .page--common h4 {
    font-size: 1.6rem;
  }
}
.single-article__body img,
.page--common img {
  max-width: 100%;
  height: auto;
}
.single-article__body figure,
.page--common figure {
  text-align: center;
}

/*single-seminar
-----------------------------------------------------*/
.single-seminar__article {
  max-width: 960px;
  margin: 0 auto 8rem;
}
.single-seminar__title {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 3rem;
}
.single-seminar__lead {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 4rem;
}
.single-seminar__lead p {
  margin-bottom: 0;
}
.single-seminar__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 4rem;
}
.single-seminar__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.single-seminar__body {
  font-size: 1.6rem;
  line-height: 2;
}
.single-seminar__body p {
  margin-bottom: 3rem;
}
.single-seminar__body h2 {
  color: #FFF;
  background: linear-gradient(90deg, #18A0DB 0%, #1984DB 100%);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 1.4rem 2rem;
  border-radius: 4px;
  margin: 5rem 0 3rem;
}
@media (max-width: 575px) {
  .single-seminar__body h2 {
    font-size: 2rem;
  }
}
.single-seminar__body h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 1.5rem;
  margin: 5rem 0 3rem;
  border-bottom: 1px solid #DFDFDF;
  position: relative;
}
@media (max-width: 575px) {
  .single-seminar__body h3 {
    font-size: 2rem;
  }
}
.single-seminar__body h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 10rem;
  height: 2px;
  background-color: #18A0DB;
}
.single-seminar__body h4 {
  color: #18A0DB;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 5rem 0 2rem;
}
@media (max-width: 575px) {
  .single-seminar__body h4 {
    font-size: 1.8rem;
  }
}
.single-seminar__btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 6rem;
}
.single-seminar__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 1.8rem 5rem;
  color: #FFF;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(90deg, #1984DB 0%, #18A0DB 100%);
  box-sizing: border-box;
}
.single-seminar__btn .arrow {
  align-self: stretch;
  position: absolute;
  right: 3.5rem;
  top: 51%;
  transform: translateY(-50%);
}
.single-seminar__btn .arrow::before, .single-seminar__btn .arrow::after {
  content: "";
  position: absolute;
  background: #FFF;
  border-radius: 100px;
}
.single-seminar__btn .arrow::before {
  width: 14px;
  height: 1px;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -32%);
}
.single-seminar__btn .arrow::after {
  width: 8px;
  height: 1px;
  left: 50%;
  top: 0;
  transform: translate(-20%, -75%) rotate(45deg);
  transform-origin: right center;
}

.seminar-form {
  padding: 6rem 0;
  background-color: #ECF6FB;
}
.seminar-form__ttl {
  color: #FFF;
  background: linear-gradient(90deg, #18A0DB 0%, #1984DB 100%);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 1.4rem 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 575px) {
  .seminar-form__ttl {
    font-size: 1.8rem;
  }
}
.seminar-form__body {
  background-color: #FFF;
  padding: 5rem 8rem;
}
@media (max-width: 1023px) {
  .seminar-form__body {
    padding: 4rem 6rem;
  }
}
@media (max-width: 767px) {
  .seminar-form__body {
    padding: 4rem;
  }
}
@media (max-width: 575px) {
  .seminar-form__body {
    padding: 4rem 2rem;
  }
}

/*seminar-cf7
-----------------------------------------------------*/
.seminar-cf7__row {
  display: grid;
  grid-template-columns: 15rem 5rem 30rem;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  align-items: center;
  padding: 2.4rem 0;
  border-bottom: 1px solid #DFDFDF;
}
@media (max-width: 1023px) {
  .seminar-cf7__row {
    grid-template-columns: 14rem 5rem 1fr;
  }
}
@media (max-width: 767px) {
  .seminar-cf7__row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}
.seminar-cf7__label {
  font-weight: 700;
  line-height: 1.6;
}
.seminar-cf7__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.2rem;
  height: 2.6rem;
  color: #FFF;
  background-color: #F23838;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .seminar-cf7__required {
    justify-self: end;
  }
}
@media (max-width: 767px) {
  .seminar-cf7__field {
    width: 100%;
  }
}
.seminar-cf7__field input {
  width: 100%;
  height: 5rem;
  padding: 0 1.8rem;
  border: 1px solid #DFDFDF;
  box-sizing: border-box;
  background-color: #FFF;
}
.seminar-cf7__field input::-moz-placeholder {
  color: #A1A1A1;
}
.seminar-cf7__field input::placeholder {
  color: #A1A1A1;
}
.seminar-cf7__submit-wrap {
  position: relative;
  width: 28rem;
  margin: 5rem auto 0;
}
.seminar-cf7__submit-wrap::before, .seminar-cf7__submit-wrap::after {
  content: "";
  position: absolute;
  right: 3rem;
  top: 51%;
  background: #FFF;
  border-radius: 100px;
  pointer-events: none;
  z-index: 2;
}
.seminar-cf7__submit-wrap::before {
  width: 14px;
  height: 1px;
  transform: translateY(-50%);
}
.seminar-cf7__submit-wrap::after {
  width: 8px;
  height: 1px;
  transform: translate(1px, 0) rotate(45deg);
  transform-origin: right center;
}
.seminar-cf7__submit {
  width: 100%;
  height: 7rem;
  border: 0;
  color: #FFF;
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(90deg, #F23838 0%, #E20A0A 100%);
  cursor: pointer;
}

.wpcf7-spinner {
  display: none;
}

/*single-download
-----------------------------------------------------*/
.single-download__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5rem;
  align-items: start;
}
@media (max-width: 1023px) {
  .single-download__layout {
    grid-template-columns: 1fr;
  }
}
.single-download__title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 4rem;
}
.single-download__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 3rem;
}
.single-download__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.single-download__body {
  line-height: 2;
}
.single-download__body p {
  margin-bottom: 3rem;
}
.single-download__body h2 {
  color: #FFF;
  background: linear-gradient(90deg, #18A0DB 0%, #1984DB 100%);
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.5;
  padding: 1.2rem 2rem;
  border-radius: 4px;
  margin: 5rem 0 3rem;
}
.single-download__body h3 {
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 1.5rem;
  margin: 5rem 0 3rem;
  border-bottom: 1px solid #DFDFDF;
  position: relative;
}
.single-download__body h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 10rem;
  height: 2px;
  background-color: #18A0DB;
}
.single-download__body h4 {
  color: #18A0DB;
  font-size: clamp(1.8rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
  margin: 5rem 0 2rem;
}
.single-download__btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 8rem;
}
.single-download__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 1.8rem 5rem;
  color: #FFF;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(90deg, #1984DB 0%, #18A0DB 100%);
  box-sizing: border-box;
}
.single-download__btn .arrow {
  align-self: stretch;
  position: absolute;
  right: 3rem;
  top: 51%;
  transform: translateY(-50%);
}
.single-download__btn .arrow::before, .single-download__btn .arrow::after {
  content: "";
  position: absolute;
  background: #FFF;
  border-radius: 100px;
}
.single-download__btn .arrow::before {
  width: 14px;
  height: 1px;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -32%);
}
.single-download__btn .arrow::after {
  width: 8px;
  height: 1px;
  left: 50%;
  top: 0;
  transform: translate(-20%, -75%) rotate(45deg);
  transform-origin: right center;
}

.download-form {
  background-color: #ECF6FB;
  padding: 4rem;
}
@media (max-width: 575px) {
  .download-form {
    padding: 2.4rem;
  }
}
.download-form__ttl {
  color: #FFF;
  background: linear-gradient(90deg, #18A0DB 0%, #1984DB 100%);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 1.4rem 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .download-form__ttl {
    font-size: 1.6rem;
  }
}

.download-cf7__row {
  margin-bottom: 2.4rem;
}
.download-cf7__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.download-cf7__head p {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.download-cf7__head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.2rem;
  height: 2.4rem;
  color: #FFF;
  background-color: #F32735;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}
.download-cf7 input {
  width: 100%;
  height: 5.6rem;
  padding: 0 1.8rem;
  border: 1px solid #DFDFDF;
  box-sizing: border-box;
  font-size: 1.6rem;
  background-color: #FFF;
}
.download-cf7 input::-moz-placeholder {
  color: #AAA;
}
.download-cf7 input::placeholder {
  color: #AAA;
}
.download-cf7__submit-wrap {
  position: relative;
  width: 24rem;
  margin: 4rem auto 0;
}
.download-cf7__submit-wrap::before, .download-cf7__submit-wrap::after {
  content: "";
  position: absolute;
  right: 3.5rem;
  top: 50%;
  background: #FFF;
  border-radius: 100px;
  pointer-events: none;
  z-index: 2;
}
.download-cf7__submit-wrap::before {
  width: 14px;
  height: 1px;
  transform: translateY(-50%);
}
.download-cf7__submit-wrap::after {
  width: 8px;
  height: 1px;
  transform: translate(1px, 0px) rotate(45deg);
  transform-origin: right center;
}
.download-cf7__submit {
  width: 100%;
  height: 6.4rem;
  border: 0;
  color: #FFF;
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(90deg, #F32735 0%, #E60012 100%);
  cursor: pointer;
}

/*page--thanks
-----------------------------------------------------*/
.page--thanks .thanks-box h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 4rem;
}
.page--thanks .thanks-box p {
  text-align: left;
  line-height: 2;
  margin-bottom: 6rem;
}
.page--thanks .thanks-box__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 1.8rem 5rem;
  color: #FFF;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(90deg, #1984DB 0%, #18A0DB 100%);
  box-sizing: border-box;
}
.page--thanks .thanks-box__btn .arrow {
  position: absolute;
  right: 3.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.page--thanks .thanks-box__btn .arrow::before, .page--thanks .thanks-box__btn .arrow::after {
  content: "";
  position: absolute;
  background: #FFF;
  border-radius: 100px;
}
.page--thanks .thanks-box__btn .arrow::before {
  width: 14px;
  height: 1px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.page--thanks .thanks-box__btn .arrow::after {
  width: 8px;
  height: 1px;
  left: 50%;
  top: 0;
  transform: translate(-20%, -75%) rotate(45deg);
  transform-origin: right center;
}

/*page--members
-----------------------------------------------------*/
.page--members .member-password__text {
  margin-bottom: 3rem;
}
.page--members .member-password__form {
  display: flex;
  gap: 1rem;
}
@media (max-width: 575px) {
  .page--members .member-password__form {
    flex-direction: column;
  }
}
.page--members .member-password__form input {
  width: 28rem;
  height: 5.2rem;
  padding: 0 1.6rem;
  border: 1px solid #DFDFDF;
  box-sizing: border-box;
  font-size: 1.6rem;
}
@media (max-width: 575px) {
  .page--members .member-password__form input {
    width: 100%;
  }
}
.page--members .member-password__form input::-moz-placeholder {
  color: #AAA;
}
.page--members .member-password__form input::placeholder {
  color: #AAA;
}
.page--members .member-password__form button {
  width: 10rem;
  height: 5.2rem;
  border: 0;
  color: #FFF;
  background: linear-gradient(90deg, #18A0DB 0%, #1984DB 100%);
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
}
@media (max-width: 575px) {
  .page--members .member-password__form button {
    width: 100%;
  }
}

/*member-content
-----------------------------------------------------*/
.member-content {
  max-width: 960px;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 2;
}
@media (max-width: 575px) {
  .member-content {
    font-size: 1.4rem;
  }
}
.member-content p {
  margin-bottom: 3rem;
}
.member-content h2 {
  color: #FFF;
  background: linear-gradient(90deg, #18A0DB 0%, #1984DB 100%);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 1.4rem 2rem;
  border-radius: 4px;
  margin: 6rem 0 3rem;
}
@media (max-width: 575px) {
  .member-content h2 {
    font-size: 2rem;
  }
}
.member-content h2:first-child {
  margin-top: 0;
}
.member-content h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 1.5rem;
  margin: 6rem 0 3rem;
  border-bottom: 1px solid #DFDFDF;
  position: relative;
}
@media (max-width: 575px) {
  .member-content h3 {
    font-size: 2rem;
  }
}
.member-content h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 10rem;
  height: 2px;
  background-color: #18A0DB;
}
.member-content h4 {
  color: #18A0DB;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 5rem 0 2rem;
}
@media (max-width: 575px) {
  .member-content h4 {
    font-size: 1.8rem;
  }
}
.member-content img {
  max-width: 100%;
  height: auto;
}
.member-content iframe,
.member-content video {
  display: block;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 16/9;
  height: auto;
  margin: 4rem auto;
}
.member-content .wp-block-embed,
.member-content .wp-block-video {
  max-width: 640px;
  margin: 4rem auto;
}

.member-content .wp-block-embed__wrapper {
  position: relative;
  aspect-ratio: 16/9;
}
.member-content .wp-block-embed__wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

/*page--contact
-----------------------------------------------------*/
.page--contact .contact-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  gap: 0 1rem;
}
.page--contact .contact-tabs__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 6rem;
  color: #333;
  background-color: #DFDFDF;
  font-weight: 700;
  text-decoration: none;
}
.page--contact .contact-tabs__link.is-current {
  color: #FFF;
  background: linear-gradient(90deg, #165090 0%, #0C5FBA 100%);
}
.page--contact .contact-form-box {
  padding: 8rem 11rem;
  background-color: #FFF;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
}
@media (max-width: 1023px) {
  .page--contact .contact-form-box {
    padding: 6rem 4rem;
  }
}
@media (max-width: 767px) {
  .page--contact .contact-form-box {
    padding: 5rem 3rem;
  }
}
@media (max-width: 575px) {
  .page--contact .contact-form-box {
    padding: 4rem 2rem;
  }
}

/*contact-cf7
-----------------------------------------------------*/
.contact-cf7__row {
  display: grid;
  grid-template-columns: 16rem 5rem 1fr;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  align-items: center;
  padding: 2.4rem 0;
  border-bottom: 1px solid #DFDFDF;
}
@media (max-width: 767px) {
  .contact-cf7__row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}
.contact-cf7__row--textarea {
  align-items: start;
}
.contact-cf7__row--textarea .contact-cf7__label,
.contact-cf7__row--textarea .contact-cf7__required {
  margin-top: 1.6rem;
}
@media (max-width: 767px) {
  .contact-cf7__row--textarea .contact-cf7__label,
  .contact-cf7__row--textarea .contact-cf7__required {
    margin-top: 0;
  }
}
.contact-cf7__label {
  font-weight: 700;
  line-height: 1.6;
}
.contact-cf7__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.2rem;
  height: 2.4rem;
  color: #FFF;
  background-color: #F32735;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .contact-cf7__field {
    grid-column: 1/-1;
    width: 100%;
  }
}
.contact-cf7__field input,
.contact-cf7__field textarea {
  width: 100%;
  border: 1px solid #DFDFDF;
  box-sizing: border-box;
  font-size: 1.6rem;
  background-color: #FFF;
}
.contact-cf7__field input::-moz-placeholder, .contact-cf7__field textarea::-moz-placeholder {
  color: #AAA;
}
.contact-cf7__field input::placeholder,
.contact-cf7__field textarea::placeholder {
  color: #AAA;
}
.contact-cf7__field input {
  max-width: 32rem;
  height: 5.2rem;
  padding: 0 1.6rem;
}
@media (max-width: 767px) {
  .contact-cf7__field input {
    max-width: none;
  }
}
.contact-cf7__field textarea {
  height: 24rem;
  padding: 1.6rem;
  resize: vertical;
}
.contact-cf7__submit-wrap {
  position: relative;
  width: 28rem;
  margin: 5rem auto 0;
}
.contact-cf7__submit-wrap::before, .contact-cf7__submit-wrap::after {
  content: "";
  position: absolute;
  right: 3.5rem;
  top: 50%;
  background: #FFF;
  border-radius: 100px;
  pointer-events: none;
  z-index: 2;
}
.contact-cf7__submit-wrap::before {
  width: 14px;
  height: 1px;
  transform: translateY(-50%);
}
.contact-cf7__submit-wrap::after {
  width: 8px;
  height: 1px;
  transform: translate(1px, 0px) rotate(45deg);
  transform-origin: right center;
}
.contact-cf7__submit {
  width: 100%;
  height: 6.4rem;
  border: 0;
  color: #FFF;
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(90deg, #F32735 0%, #E60012 100%);
  cursor: pointer;
}

/* block editor custom boxes
-----------------------------------------------------*/
.is-style-blue-box {
  background-color: #ECF6FB;
  padding: 4rem;
  margin: 4rem 0;
}
@media (max-width: 767px) {
  .is-style-blue-box {
    padding: 3rem 2rem;
  }
}
.is-style-blue-box p:last-child {
  margin-bottom: 0;
}

.is-style-border-box {
  border: 1px solid #DFDFDF;
  padding: 4rem;
  margin: 4rem 0;
}
@media (max-width: 767px) {
  .is-style-border-box {
    padding: 3rem 2rem;
  }
}
.is-style-border-box p:last-child,
.is-style-border-box ul:last-child,
.is-style-border-box ol:last-child {
  margin-bottom: 0;
}
.is-style-border-box ul {
  padding-left: 1.5em;
  list-style: disc;
}

.is-style-flexbox {
  display: flex;
  gap: 3rem 5rem;
}
.is-style-flexbox > * {
  flex: 1;
  min-width: 0;
}
.is-style-flexbox > .wp-block-image {
  flex: 0 0 430px;
  max-width: 430px;
}
.is-style-flexbox > .wp-block-image img {
  width: 100%;
  height: auto;
}
@media (max-width: 1023px) {
  .is-style-flexbox {
    flex-direction: column;
    align-items: center;
  }
  .is-style-flexbox > .wp-block-image {
    flex: none;
    max-width: 430px;
    width: 100%;
    margin-inline: auto;
  }
}

/* 404
-----------------------------------------------------*/
.home__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 1.8rem 5rem;
  color: #FFF;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(90deg, #1984DB 0%, #18A0DB 100%);
  box-sizing: border-box;
}
.home__btn .arrow {
  position: absolute;
  right: 3.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.home__btn .arrow::before, .home__btn .arrow::after {
  content: "";
  position: absolute;
  background: #FFF;
  border-radius: 100px;
}
.home__btn .arrow::before {
  width: 14px;
  height: 1px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.home__btn .arrow::after {
  width: 8px;
  height: 1px;
  left: 50%;
  top: 0;
  transform: translate(-20%, -75%) rotate(45deg);
  transform-origin: right center;
}

/*banner
-----------------------------------------------------*/
.banner {
  background-color: #ECF6FB;
  padding: 8rem 0;
}
.banner ul {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
}
@media (max-width: 767px) {
  .banner ul {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .banner ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
.banner ul li {
  flex: 1;
}
@media (max-width: 767px) {
  .banner ul li {
    width: calc((100% - 2.4rem) / 2);
    flex: none;
  }
}
@media (max-width: 575px) {
  .banner ul li {
    flex: 1;
    width: 100%;
    text-align: center;
  }
}
.banner ul a img {
  width: 100%;
}

/*information
-----------------------------------------------------*/
.information .flex {
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .information .flex {
    flex-direction: column;
  }
}
.information .flex-l {
  padding-right: 7rem;
  border-right: 1px solid #333;
}
@media (max-width: 1023px) {
  .information .flex-l {
    padding-right: 3rem;
  }
}
@media (max-width: 767px) {
  .information .flex-l {
    padding-right: 0;
    padding-bottom: 3rem;
    border-right: 0;
    border-bottom: 1px solid #333;
  }
}
@media (max-width: 767px) {
  .information .flex-l .h-sec05 {
    text-align: center;
  }
}
.information .flex-r {
  padding-left: 7rem;
}
@media (max-width: 1023px) {
  .information .flex-r {
    padding-left: 3rem;
  }
}
@media (max-width: 767px) {
  .information .flex-r {
    padding-left: 0;
    padding-top: 3rem;
  }
}
.information .flex-r ul {
  display: flex;
  gap: 2rem;
}
@media (max-width: 575px) {
  .information .flex-r ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
}
.information .flex-r ul li a img {
  width: 70px;
}
@media (max-width: 575px) {
  .information .flex-r ul li a img {
    width: 50px;
  }
}

/*contact-us
-----------------------------------------------------*/
.contact-us {
  background-image: url(../images/common/bg_contact.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6rem 0;
}
.contact-us h2 {
  font-size: clamp(3rem, 10vw + 1.5rem, 12rem);
  color: #FFF;
  text-align: center;
  line-height: 1;
  margin-bottom: 3rem;
}
.contact-us ul {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .contact-us ul {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
.contact-us ul li {
  flex: 1;
  border-right: 1px solid #FFF;
  padding-right: 3rem;
  margin-left: 3rem;
}
@media (max-width: 767px) {
  .contact-us ul li {
    border-right: 0;
    border-bottom: 1px solid #FFF;
    padding-right: 0;
    padding-bottom: 2rem;
    margin-left: 0;
    margin-top: 2rem;
  }
}
.contact-us ul li:first-of-type {
  margin-left: 0;
}
@media (max-width: 767px) {
  .contact-us ul li:first-of-type {
    margin-top: 0;
  }
}
.contact-us ul li:last-of-type {
  padding-right: 0;
  border-right: 0;
}
@media (max-width: 767px) {
  .contact-us ul li:last-of-type {
    padding-bottom: 0;
    border-bottom: 0;
  }
}
.contact-us ul li a {
  color: #FFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}
.contact-us ul li a p {
  font-size: 3.2rem;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}
@media (max-width: 1023px) {
  .contact-us ul li a p {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) {
  .contact-us ul li a p {
    font-size: 2.4rem;
  }
}
.contact-us ul li a p .en {
  color: rgba(255, 255, 255, 0.5);
  font-size: 2.4rem;
}
@media (max-width: 1023px) {
  .contact-us ul li a p .en {
    font-size: 2rem;
  }
}
.contact-us .arrow {
  background-color: #FFF;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  display: block;
  transform: rotate(90deg);
}
@media (max-width: 1023px) {
  .contact-us .arrow {
    width: 44px;
    height: 44px;
  }
}
.contact-us .arrow::before, .contact-us .arrow::after {
  content: "";
  position: absolute;
  background: #165090;
  border-radius: 100px;
}
.contact-us .arrow::before {
  width: 1px;
  height: 14px;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -32%);
}
.contact-us .arrow::after {
  width: 8px;
  height: 1px;
  left: 50%;
  top: 23px;
  transform: translate(-95%, -85%) rotate(-45deg);
  transform-origin: right center;
}
@media (max-width: 1023px) {
  .contact-us .arrow::after {
    top: 16px;
  }
}

/*footer
-----------------------------------------------------*/
footer {
  padding: 8rem 0 6rem 0;
}
footer .flex {
  gap: 4rem 2rem;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  footer .flex {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  footer .flex {
    flex-direction: column;
    align-items: center;
  }
}
footer .flex .col01 {
  display: flex;
  gap: 2.5rem;
}
@media (max-width: 767px) {
  footer .flex .col01 {
    flex-direction: column;
    align-items: center;
  }
}
footer .flex .col01 .address p {
  margin-top: 0;
}
footer .flex .col02 {
  display: flex;
  flex-direction: column;
  align-items: end;
}
@media (max-width: 1023px) {
  footer .flex .col02 {
    align-items: flex-start;
    width: 100%;
  }
}
@media (max-width: 767px) {
  footer .flex .col02 {
    flex-direction: column;
    align-items: center;
  }
}
footer .flex .col02 .footer-menu {
  display: flex;
  margin-top: 2rem;
}
footer .flex .col02 .footer-menu li {
  border-left: 1px solid #333;
  padding: 0 1rem;
  line-height: 1;
}
footer .flex .col02 .footer-menu li:first-of-type {
  border-left: 0;
  padding-left: 0;
}
footer .flex .col02 .footer-menu li:last-of-type {
  padding-right: 0;
}
footer .flex .col02 .footer-menu a {
  text-decoration: none;
  color: #333;
  font-size: 1.2rem;
}
footer .flex .footer-nav {
  display: flex;
  gap: 2rem 6rem;
}
@media (max-width: 575px) {
  footer .flex .footer-nav {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
footer .flex .footer-nav > ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
footer .flex .footer-nav li {
  line-height: 1.6;
}
footer .flex .footer-nav a {
  color: #333;
  font-size: 1.4rem;
  text-decoration: none;
}
footer .flex .footer-nav .menu-item-has-children > a {
  pointer-events: none;
  cursor: default;
  color: #333;
}
footer .flex .footer-nav .menu-item-has-children .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.4rem;
  padding-left: 1em;
}
@media (max-width: 575px) {
  footer .flex .footer-nav .menu-item-has-children .sub-menu {
    padding-left: 0;
  }
}
footer .flex .footer-nav .menu-item-has-children .sub-menu a {
  position: relative;
  font-size: 1.3rem;
}
footer .flex .footer-nav .menu-item-has-children .sub-menu a::before {
  content: "-";
  margin-right: 0.4em;
}
footer .flex .copy {
  display: flex;
  align-items: end;
  font-size: 1.2rem;
}
@media (max-width: 1023px) {
  footer .flex .copy {
    width: 100%;
  }
}
@media (max-width: 767px) {
  footer .flex .copy {
    align-items: center;
    text-align: center;
    justify-content: center;
  }
}
footer .footer-logo img {
  max-width: 276px;
  width: 100%;
}
footer .footer-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
}
footer .footer-btn01,
footer .footer-btn02 {
  color: #FFF;
  font-weight: bold;
  font-size: 1.4rem;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  padding: 1rem 1.5rem;
  box-sizing: border-box;
  width: 120px;
}
footer .footer-btn01 {
  background: linear-gradient(90deg, #18A0DB 0%, #1984DB 100%);
}
footer .footer-btn02 {
  background: linear-gradient(90deg, #165090 0%, #0C5FBA 100%);
}

.top-btn {
  position: fixed;
  right: 4rem;
  bottom: 4rem;
  z-index: 100;
  background-color: #FFF;
  width: 60px;
  height: 60px;
  border: 1px solid #18A0DB;
  border-radius: 50%;
  cursor: pointer;
}
@media (max-width: 767px) {
  .top-btn {
    right: 2rem;
    bottom: 9rem;
  }
}
.top-btn::before, .top-btn::after {
  content: "";
  position: absolute;
  background: #18A0DB;
  border-radius: 100px;
}
.top-btn::before {
  width: 1px;
  height: 14px;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -32%);
}
.top-btn::after {
  width: 8px;
  height: 1px;
  left: 50%;
  top: 23px;
  transform: translate(-95%, -85%) rotate(-45deg);
  transform-origin: right center;
}

/*page--our-way
-----------------------------------------------------*/
.page--our-way {
  position: relative;
}
.page--our-way::after {
  content: "";
  background-color: #ECF6FB;
  width: 100%;
  height: 270px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.page--our-way .top {
  background-image: url(../images/ourway/shindo.png);
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: right top;
}
@media (max-width: 767px) {
  .page--our-way .top {
    background-position: right bottom;
    background-size: 90%;
  }
}
.page--our-way .top h2 {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  color: #18A0DB;
}
.page--our-way .top h2 .en {
  color: #18A0DB;
  line-height: 1;
  margin-bottom: 4rem;
  font-size: clamp(8rem, 6vw, 14rem);
}
@media (max-width: 767px) {
  .page--our-way .top h2 .en {
    margin-bottom: 2rem;
  }
}
.page--our-way .bottom {
  margin-top: 10rem;
}
.page--our-way .bottom h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .page--our-way .bottom h3 {
    font-size: 3rem;
  }
}
@media (max-width: 575px) {
  .page--our-way .bottom h3 {
    font-size: 2.4rem;
  }
}
.page--our-way .bottom h3::before, .page--our-way .bottom h3::after {
  content: "";
  width: 40px;
  height: 1px;
  background: #333;
}
.page--our-way .bottom .flex {
  justify-content: center;
  gap: 2.4rem;
}
@media (max-width: 1023px) {
  .page--our-way .bottom .flex {
    flex-wrap: wrap;
  }
}
.page--our-way .bottom .flex-box {
  background-color: #FFF;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  border-top: 5px solid #18A0DB;
  padding: 1.5rem 2rem 3rem;
  flex: 1;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .page--our-way .bottom .flex-box {
    flex: 0 0 calc((100% - 2.4rem) / 2);
  }
}
@media (max-width: 575px) {
  .page--our-way .bottom .flex-box {
    flex-basis: 100%;
  }
}
.page--our-way .bottom .flex-box h4 {
  font-size: 1.8rem;
  line-height: 1.4;
  -moz-text-align-last: center;
       text-align-last: center;
  margin-top: 1rem;
}
@media (max-width: 575px) {
  .page--our-way .bottom .flex-box h4 {
    margin-top: 0;
  }
}

/*page--value
-----------------------------------------------------*/
.page--value {
  background: linear-gradient(90deg, #18A0DB 0%, #1984DB 100%);
  color: #FFF;
}
.page--value .flex {
  justify-content: center;
  gap: 2rem 3rem;
  margin: 4rem auto;
  flex-wrap: wrap;
}
.page--value .flex-box {
  background-color: #FFF;
  color: #18A0DB;
  text-align: center;
  padding: 4rem 2rem 3rem;
  box-sizing: border-box;
  flex: 0 1 300px;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .page--value .flex-box {
    flex: 0 1 280px;
  }
}
@media (max-width: 575px) {
  .page--value .flex-box {
    flex: 0 1 260px;
  }
}
.page--value .flex-box .num {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page--value .flex-box .num strong {
  font-weight: 500;
  font-size: 6.4rem;
  line-height: 0.8;
}
.page--value .flex-box h3 {
  font-size: 2.2rem;
  line-height: 1.6;
}
@media (max-width: 575px) {
  .page--value .flex-box h3 {
    font-size: 1.8rem;
  }
}

/*page--about
-----------------------------------------------------*/
.page--about .flex {
  gap: 3rem 5rem;
}
@media (max-width: 767px) {
  .page--about .flex {
    flex-direction: column;
    align-items: center;
  }
}
.page--about .flex .text {
  width: 100%;
}
.page--about .flex .text h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  margin-bottom: 5rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .page--about .flex .text h2 {
    margin-bottom: 3rem;
  }
}
.page--about .flex .img {
  max-width: 450px;
  width: 100%;
}

/*page--closing
-----------------------------------------------------*/
.page--closing {
  position: relative;
  padding-bottom: 0;
}
.page--closing::after {
  content: "";
  background-color: #F3F3F3;
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  filter: opacity(0.5);
}

/*page--profile
-----------------------------------------------------*/
.page--profile .flex {
  gap: 6rem 10rem;
}
@media (max-width: 1023px) {
  .page--profile .flex {
    gap: 6rem;
  }
}
@media (max-width: 767px) {
  .page--profile .flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.page--profile .flex .text {
  width: 100%;
}
.page--profile .flex .img {
  max-width: 500px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.page--profile .flex .img img {
  display: block;
  position: relative;
  z-index: 2;
}
.page--profile .flex .img::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 590px;
  background: #18A0DB;
  right: -50%;
  bottom: 27%;
  z-index: -1;
}
@media (max-width: 1199px) {
  .page--profile .flex .img::after {
    bottom: 40%;
  }
}
@media (max-width: 1023px) {
  .page--profile .flex .img::after {
    bottom: 56%;
    height: 480px;
    width: 360px;
    right: -16%;
  }
}
@media (max-width: 767px) {
  .page--profile .flex .img::after {
    bottom: -16%;
    height: 580px;
    width: 480px;
    right: -27%;
  }
}
@media (max-width: 575px) {
  .page--profile .flex .img::after {
    bottom: -12%;
    height: 390px;
    width: 360px;
    right: -20%;
  }
}
.page--profile h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  margin-bottom: 4rem;
}
.page--profile h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
}
.page--profile h3 .en {
  color: #18A0DB;
  font-size: 1.6rem;
  margin-left: 1.5rem;
}
@media (max-width: 575px) {
  .page--profile h3 .en {
    font-size: 1.4rem;
  }
}
.page--profile h4 {
  margin-top: 3rem;
  font-size: 1.6rem;
}/*# sourceMappingURL=style.css.map */