@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: #0E0E0E;
  /*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: #005C9F;
}
a:hover, a:active, a:focus {
  color: rgb(57, 171.5660377358, 255);
}
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;
}

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

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

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

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

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

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

.lh-7 {
  line-height: 1.7;
}

.lh-8 {
  line-height: 1.8;
}

.lh-9 {
  line-height: 1.9;
}

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

.lh-11 {
  line-height: 2.1;
}

.lh-12 {
  line-height: 2.2;
}

@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;
  }
  .lh-7-xl {
    line-height: 1.7;
  }
  .lh-8-xl {
    line-height: 1.8;
  }
  .lh-9-xl {
    line-height: 1.9;
  }
  .lh-10-xl {
    line-height: 2;
  }
  .lh-11-xl {
    line-height: 2.1;
  }
  .lh-12-xl {
    line-height: 2.2;
  }
}
@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;
  }
  .lh-7-lg {
    line-height: 1.7;
  }
  .lh-8-lg {
    line-height: 1.8;
  }
  .lh-9-lg {
    line-height: 1.9;
  }
  .lh-10-lg {
    line-height: 2;
  }
  .lh-11-lg {
    line-height: 2.1;
  }
  .lh-12-lg {
    line-height: 2.2;
  }
}
@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;
  }
  .lh-7-md {
    line-height: 1.7;
  }
  .lh-8-md {
    line-height: 1.8;
  }
  .lh-9-md {
    line-height: 1.9;
  }
  .lh-10-md {
    line-height: 2;
  }
  .lh-11-md {
    line-height: 2.1;
  }
  .lh-12-md {
    line-height: 2.2;
  }
}
@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;
  }
  .lh-7-sm {
    line-height: 1.7;
  }
  .lh-8-sm {
    line-height: 1.8;
  }
  .lh-9-sm {
    line-height: 1.9;
  }
  .lh-10-sm {
    line-height: 2;
  }
  .lh-11-sm {
    line-height: 2.1;
  }
  .lh-12-sm {
    line-height: 2.2;
  }
}
/*utility
-----------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
}

ol {
  padding-left: 1em;
}

.float-l {
  float: left;
}

.float-r {
  float: right;
}

.orange {
  color: #f08200;
}

.en {
  font-family: "Bungee", sans-serif;
  font-weight: 400;
  font-style: normal;
}

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

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

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

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

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

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

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

.color-main {
  color: #005C9F !important;
}

.color-accent01 {
  color: #3B96C7 !important;
}

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

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

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

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

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

.pos-r {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*header
-----------------------------------------------------*/
header {
  position: fixed;
  z-index: 99999;
  width: 100%;
  box-sizing: border-box;
  top: 0;
  left: 0;
  padding: 2rem 6rem 0 6rem;
  transition: background-color 0.3s;
}
@media (max-width: 1200px) {
  header {
    padding: 2rem 2rem 0 2rem;
  }
}

.header-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #D6E0E9;
  border-radius: 500px;
  padding: 1rem 3rem 1rem 5rem;
  box-sizing: border-box;
  background-color: #FFF;
  position: relative;
}
@media (max-width: 767px) {
  .header-box {
    padding: 1rem 3rem;
  }
}
.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: 575px) {
  .header-box .logo img {
    width: 180px;
  }
}
.header-box .logo a {
  display: flex;
  align-items: center;
}
.header-box .logo a:hover {
  opacity: 1;
}
.header-box .sm-nav {
  display: none;
}
@media (max-width: 1200px) {
  .header-box .sm-nav {
    display: block;
  }
}
.header-box .header-r-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
}
.header-box .pc-nav {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}
@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: #6E6E6E;
  font-size: 1.6rem;
  position: relative;
}
.header-box .pc-nav nav ul li a:hover {
  opacity: 1;
  color: #3B96C7;
}
.header-box .pc-nav nav ul li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #3B96C7;
  bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.header-box .pc-nav nav ul li a:hover::after {
  visibility: visible;
  bottom: -5px;
  opacity: 1;
}
@media (max-width: 1023px) {
  .header-box .pc-nav nav ul li a {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .header-box .pc-nav nav ul li a {
    color: #FFF;
    display: block;
    padding: 1rem;
  }
}
@media (max-width: 575px) {
  .header-box .pc-nav nav ul li a {
    padding: 1rem;
    line-height: 1.2;
  }
}
.header-box .pc-nav nav ul li.current-menu-item a, .header-box .pc-nav nav ul li.current-menu-parent a, .header-box .pc-nav nav ul li.current-menu-ancestor a, .header-box .pc-nav nav ul li.current_page_item a, .header-box .pc-nav nav ul li.current_page_parent a, .header-box .pc-nav nav ul li.current_page_ancestor a {
  opacity: 1;
  color: #3B96C7;
}
.header-box .pc-nav nav ul li.current-menu-item a::after, .header-box .pc-nav nav ul li.current-menu-parent a::after, .header-box .pc-nav nav ul li.current-menu-ancestor a::after, .header-box .pc-nav nav ul li.current_page_item a::after, .header-box .pc-nav nav ul li.current_page_parent a::after, .header-box .pc-nav nav ul li.current_page_ancestor a::after {
  visibility: visible;
  bottom: -5px;
  opacity: 1;
}
@media (max-width: 767px) {
  .header-box .pc-nav nav ul li.current-menu-item a, .header-box .pc-nav nav ul li.current-menu-parent a, .header-box .pc-nav nav ul li.current-menu-ancestor a, .header-box .pc-nav nav ul li.current_page_item a, .header-box .pc-nav nav ul li.current_page_parent a, .header-box .pc-nav nav ul li.current_page_ancestor a {
    color: #FFF;
  }
  .header-box .pc-nav nav ul li.current-menu-item a::after, .header-box .pc-nav nav ul li.current-menu-parent a::after, .header-box .pc-nav nav ul li.current-menu-ancestor a::after, .header-box .pc-nav nav ul li.current_page_item a::after, .header-box .pc-nav nav ul li.current_page_parent a::after, .header-box .pc-nav nav ul li.current_page_ancestor a::after {
    display: none;
  }
}
.header-box .header-btn li {
  display: flex;
  align-items: center;
}
.header-box .header-btn a {
  display: inline-block;
  border: 2px solid #09AED3;
  background-color: #09AED3;
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
  padding: 0.8rem 2.5rem;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
  will-change: transform;
  /* 円背景 */
}
.header-box .header-btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  padding-top: 120%;
  background: #FFF;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.1);
  opacity: 0;
  z-index: -1;
  transition: transform 0.6s ease, opacity 0.4s ease;
}
.header-box .header-btn a:hover {
  color: #09AED3;
  /* ぽよん */
  animation: bound 0.6s ease;
}
.header-box .header-btn a:hover::after {
  transform: translate(-50%, -50%) scale(1.2);
  opacity: 1;
}
@keyframes bound {
  0% {
    transform: translateY(0) scale(1);
  }
  30% {
    transform: translateY(-10px) scale(1.05);
  }
  50% {
    transform: translateY(0) scale(0.98);
  }
  70% {
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

/*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: #3B96C7;
  position: fixed;
  display: block;
}
.sm-nav__inner {
  padding: 0 2rem;
}
.sm-nav__inner a {
  display: block;
  color: #FFF;
  font-weight: 700;
  padding: 1.5rem 2rem;
  font-size: 1.6rem;
  text-decoration: none;
}
.sm-nav__inner a:hover {
  color: #B98D35;
}
.sm-nav__inner li {
  position: relative;
}
.sm-nav__inner li a {
  position: relative;
}
.sm-nav__inner .accordion-btn {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 49px;
  width: 70px;
  z-index: 1000;
  cursor: pointer;
  display: table;
}
.sm-nav__inner .accordion-btn::before {
  content: "";
  display: block;
  position: absolute;
  right: 2rem;
  top: 0;
  bottom: 0;
  margin: auto;
  text-align: right;
  border-right: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
}

.nav_btn {
  width: 40px;
  height: 40px;
  z-index: 300000;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  margin: auto;
  cursor: pointer;
  position: absolute;
  background: #3B96C7;
  display: none;
  border-radius: 50px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1023px) {
  .nav_btn {
    display: block;
  }
}

.hamburger_line {
  position: absolute;
  left: 10px;
  width: 20px;
  height: 1px;
  background-color: #fff;
  transition: all 0.6s;
}
.hamburger_line1 {
  top: 15px;
}
.hamburger_line2 {
  top: 24px;
}
.hamburger.active span {
  top: 20px;
  background: #fff;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2) {
  transform: rotate(45deg);
}

.globalMenu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-100%);
  transition: transform 0.6s ease;
  overscroll-behavior-y: contain;
  overflow-y: auto;
}
.globalMenu.active {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3rem;
  transform: translateY(0);
}
.globalMenu.active .nav__inner li {
  animation: menuFade 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
.globalMenu.active .nav__inner li:nth-child(1) {
  animation-delay: 0.75s;
}
.globalMenu.active .nav__inner li:nth-child(2) {
  animation-delay: 0.9s;
}
.globalMenu.active .nav__inner li:nth-child(3) {
  animation-delay: 1.05s;
}
.globalMenu.active .nav__inner li:nth-child(4) {
  animation-delay: 1.2s;
}
.globalMenu.active .nav__inner li:nth-child(5) {
  animation-delay: 1.35s;
}
.globalMenu.active .header-btn--sm {
  animation: menuFade 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 1.5s;
}
.globalMenu .nav__inner li {
  opacity: 0;
  transform: translateY(20px);
}

.nav__gnav {
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 1rem 2rem;
  text-align: center;
}
.nav__gnav li {
  width: 100%;
  box-sizing: border-box;
  padding: 0 1rem;
  list-style-type: none;
  font-size: 1.5rem;
  font-weight: bold;
  transition: all 0.4s;
}
.nav__gnav li:last-child {
  padding-bottom: 0;
}
.nav__gnav li a {
  display: inline-block;
  padding: 1.5rem 0;
  color: #333;
  font-size: 1.6rem;
  text-decoration: none;
}
.nav__gnav li.menu-item-has-children {
  position: relative;
}
.nav__gnav li.menu-item-has-children.parent-link-none > a {
  pointer-events: none;
}
.nav__gnav li .sub-menu li {
  padding-left: 1rem;
  font-size: 1.3rem;
}
.nav__gnav li .sub-menu li a {
  position: relative;
  margin-left: 2rem;
  font-weight: normal;
  transition: color 0.3s linear;
}
.nav__gnav li .sub-menu li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -2rem;
  width: 7px;
  height: 1px;
  background: #fff;
  transform: translateY(-50%);
  transition: background 0.3s linear;
}
.nav__gnav li .sub-menu li a:hover {
  color: #B98D35;
}
.nav__gnav li .sub-menu li a:hover::before {
  background: #B98D35;
}

.header-btn--sm {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
}

@keyframes menuFade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*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-ex,
  .container-lg,
  .container-xl {
    padding: 0 2rem;
  }
}
.page-sec {
  padding: 6rem 0;
}

.bg-lightblue {
  background-image: url(../images/common/bg_contents.jpg);
}

.bg-blue {
  background-image: url(../images/common/bg_message.jpg);
}

/* 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;
}

.block-375 {
  display: none;
}
@media (max-width: 375px) {
  .block-375 {
    display: block !important;
  }
}

/*h*/
.h-wrap {
  margin-bottom: 3rem;
}
@media (max-width: 575px) {
  .h-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

.h-wrap02 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 6rem;
}

.h-wrap03 {
  margin-bottom: 6rem;
}
@media (max-width: 575px) {
  .h-wrap03 {
    margin-bottom: 4rem;
  }
}

.h-wrap04 {
  text-align: center;
  margin-bottom: 3rem;
}
.h-wrap04 .en {
  font-size: 4.8rem;
  background-color: #3B96C7;
  color: #FFF;
  padding: 0 1.5rem;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .h-wrap04 .en {
    font-size: 4rem;
  }
}
@media (max-width: 575px) {
  .h-wrap04 .en {
    font-size: 3.2rem;
    border-radius: 12px;
  }
}
.h-wrap04 .en::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 13px solid transparent;
  border-left: 13px solid transparent;
  border-top: 20px solid #3B96C7;
  border-bottom: 0;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
}
.h-wrap04 h3 {
  font-size: 3.2rem;
  color: #005C9F;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .h-wrap04 h3 {
    font-size: 2.8rem;
  }
}
@media (max-width: 575px) {
  .h-wrap04 h3 {
    font-size: 2.4rem;
  }
}

.h-wrap04 {
  opacity: 0;
}
.h-wrap04.is-show {
  animation: introText 0.44s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards;
}

.h-sec01 {
  position: relative;
  flex-direction: column;
  line-height: 1;
  display: inline-flex;
  color: #005C9F;
  font-size: 2.2rem;
}
.h-sec01 span {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 8rem;
  line-height: 1.2;
  color: transparent;
  -webkit-text-stroke: 2px #005C9F;
}
@media (max-width: 575px) {
  .h-sec01 span {
    font-size: 6rem;
  }
}
.h-sec01 span {
  /* 最初の文字だけ塗る */
}
.h-sec01 span:first-letter {
  color: #005C9F;
  -webkit-text-stroke: 0;
}
.h-sec01 span::before {
  content: attr(data-text);
  position: absolute;
  top: 5px;
  left: 5px;
  width: 100%;
  z-index: -1;
  background: linear-gradient(90deg, #B6CCDE 0%, #B0D1BE 33%, #F4D292 66%, #E6BAC3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 0;
}
.h-sec01 span::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -30px;
  width: 70px;
  height: 74px;
  background: url("../images/common/h_circle.png") no-repeat center/contain;
  z-index: 1;
}
@media (max-width: 575px) {
  .h-sec01 span::after {
    left: -20px;
    width: 50px;
    height: 54px;
  }
}

.h-sec01 {
  opacity: 0;
}
.h-sec01.is-show {
  animation: introText 0.44s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards;
}

.h-sec01--fv.is-show {
  animation-delay: 0.8s;
}

.h-sec02 {
  font-size: 3.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .h-sec02 {
    font-size: 2.6rem;
  }
}
@media (max-width: 575px) {
  .h-sec02 {
    font-size: 2.4rem;
  }
}
.h-sec02 strong {
  background-color: #000;
  color: #FFF;
  padding: 0 0.5rem;
}
.h-sec02 strong .span-o {
  color: #F6DA9C;
}
.h-sec02 strong .span-g {
  color: #C2E8CC;
}
.h-sec02 strong .span-r {
  color: #F1C6C7;
}
.h-sec02 strong .span-b {
  color: #B7DEF5;
}
.h-sec02 .oswald {
  color: #3B96C7;
  font-size: 1.6rem;
  letter-spacing: 4px;
  margin-left: 4px;
}

.h-sec02 {
  opacity: 0;
}
.h-sec02.is-show {
  animation: introText 0.44s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards;
}

.h-sec02--fv.is-show {
  animation-delay: 1.2s;
}

.h-sec03 {
  border-bottom: 5px solid;
  -o-border-image: linear-gradient(90deg, #E6BAC3 0%, #F4D292 33%, #B0D1BE 66%, #B6CCDE 100%) 1;
     border-image: linear-gradient(90deg, #E6BAC3 0%, #F4D292 33%, #B0D1BE 66%, #B6CCDE 100%) 1;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
.h-sec03 h3 {
  font-size: 3.2rem;
  display: flex;
  line-height: 1.4;
  position: relative;
  word-break: keep-all;
  flex-wrap: wrap;
}
@media (max-width: 1199px) {
  .h-sec03 h3 {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .h-sec03 h3 {
    font-size: 2.6rem;
  }
}
@media (max-width: 575px) {
  .h-sec03 h3 {
    font-size: 2.4rem;
  }
}
.h-sec03 h3 strong {
  background-color: #000;
  color: #FFF;
  padding: 0 0.5rem;
}
.h-sec03 h3 strong .span-o {
  color: #F6DA9C;
}
.h-sec03 h3 strong .span-g {
  color: #C2E8CC;
}
.h-sec03 h3 strong .span-r {
  color: #F1C6C7;
}
.h-sec03 h3 strong .span-b {
  color: #B7DEF5;
}
.h-sec03 h3 .ruby {
  position: absolute;
  top: -2.5rem;
  left: 4px;
  font-size: 1.6rem;
}
.h-sec03 p {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}
@media (max-width: 1199px) {
  .h-sec03 p {
    font-size: 1.8rem;
  }
}

/*btn
-----------------------------------------------------*/
.view-more {
  background-color: #3B96C7;
  color: #FFF;
  text-decoration: none;
  padding: 0.5rem 2.5rem 0.5rem 3.5rem;
  border-radius: 100px;
  letter-spacing: 5px;
  margin: auto auto 0 auto;
  border: 2px solid #3B96C7;
  box-sizing: border-box;
}
.view-more .arrow {
  position: relative;
  display: inline-block;
  width: 14.7px;
  height: 8.4px;
  margin-left: 1rem;
}
.view-more .arrow::before,
.view-more .arrow::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: calc(50% - 1px);
  width: 2px;
  height: 10px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: 50% calc(100% - 1px);
  transition: 0.3s linear;
}
.view-more .arrow::before {
  transform: rotate(45deg);
}
.view-more .arrow::after {
  transform: rotate(-45deg);
}
.view-more:hover {
  color: #3B96C7;
  background-color: #FFF;
  opacity: 1;
}
.view-more:hover .arrow::before,
.view-more:hover .arrow::after {
  background-color: #3B96C7;
}

.kagi {
  position: relative;
  padding: 2rem;
  line-height: 1.6;
  margin-bottom: 6.5rem;
}
.kagi::before, .kagi::after {
  position: absolute;
  width: 30px;
  height: 66px;
  content: "";
}
.kagi::before {
  border-left: solid 2px #3B96C7;
  border-top: solid 2px #3B96C7;
  top: 0;
  left: 0;
}
.kagi::after {
  border-right: solid 2px #3B96C7;
  border-bottom: solid 2px #3B96C7;
  bottom: 0;
  right: 0;
}
.kagi p {
  color: #3B96C7;
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 1023px) {
  .kagi p {
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  .kagi p {
    font-size: 2.2rem;
  }
}
@media (max-width: 575px) {
  .kagi p {
    font-size: 1.7rem;
  }
}

.kagi {
  opacity: 0;
}
.kagi.is-show {
  animation: introText 0.44s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s forwards;
}

.kagi--fv.is-show {
  animation-delay: 1s;
}

.ribbon {
  font-size: 1.2rem;
  background: linear-gradient(90deg, #E6BAC3 0%, #F4D292 33%, #B0D1BE 66%, #B6CCDE 100%);
  color: #FFF;
  letter-spacing: 4px;
  text-align: center;
  margin: 8.8rem auto;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 0 1rem;
  box-sizing: border-box;
}

.page-header {
  background-image: url(../images/common/bg_ttl.jpg);
  padding: 20rem 0 0 0;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  top: -12rem;
  right: -16%;
  width: 100%;
  max-width: 680px;
  height: 68rem;
  background: url(../images/common/bg_ttl_circle.jpg) no-repeat center/contain;
  z-index: 0;
}
@media (max-width: 1350px) {
  .page-header::before {
    right: -30%;
  }
}
@media (max-width: 1023px) {
  .page-header::before {
    width: 80%;
    top: -12rem;
    right: -50%;
    left: auto;
  }
}
@media (max-width: 575px) {
  .page-header::before {
    width: 90%;
    top: -16rem;
    right: -60%;
    left: auto;
  }
}
.page-header::after {
  content: "";
  background-color: #FFF;
  height: 44px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .page-header::after {
    height: 70px;
  }
}
@media (max-width: 575px) {
  .page-header::after {
    height: 60px;
  }
}
.page-header .ttl-wrap {
  display: flex;
  align-items: center;
  gap: 0 3rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-header .ttl-wrap {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
  }
}
.page-header .ttl-wrap .sub-ttl {
  position: relative;
  font-size: 9.2rem;
  background: linear-gradient(90deg, #E6BAC3 0%, #F4D292 33%, #B0D1BE 66%, #B6CCDE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  line-height: 1;
  transform-origin: bottom;
  will-change: transform;
}
@media (max-width: 1023px) {
  .page-header .ttl-wrap .sub-ttl {
    font-size: 8rem;
  }
}
@media (max-width: 767px) {
  .page-header .ttl-wrap .sub-ttl {
    font-size: 6rem;
  }
}
@media (max-width: 575px) {
  .page-header .ttl-wrap .sub-ttl {
    font-size: 4.8rem;
  }
}
.page-header .ttl-wrap h1 {
  font-size: 3.2rem;
  color: #838383;
}
@media (max-width: 1023px) {
  .page-header .ttl-wrap h1 {
    font-size: 2.6rem;
  }
}
@media (max-width: 767px) {
  .page-header .ttl-wrap h1 {
    font-size: 2.2rem;
  }
}
@media (max-width: 575px) {
  .page-header .ttl-wrap h1 {
    font-size: 2rem;
  }
}

/* =========================
	page-header / animation
========================= */
.page-header::before {
  animation: floatingRotate 8s ease-in-out infinite;
  will-change: transform;
}

.ttl-wrap .sub-ttl,
.ttl-wrap h1 {
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  animation: ttlPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.ttl-wrap .sub-ttl {
  animation-delay: 0.45s;
}
.ttl-wrap h1 {
  animation-delay: 0.65s;
}

@keyframes ttlPop {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  60% {
    opacity: 1;
    transform: translateY(-8px) scale(1.08);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/*パンくずリスト*/
.breadcrumb-box {
  color: #6E6E6E;
  text-align: end;
}
.breadcrumb-box a {
  color: #6E6E6E;
}
.breadcrumb-box a:hover {
  opacity: 1;
  color: #3B96C7;
}

/*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 visual / design
========================= */
.main-v {
  position: relative;
  max-width: 1880px;
  margin: auto;
}
.main-v__img {
  position: relative;
  overflow: hidden;
}
.main-v__img img {
  display: block;
  width: 100%;
}
.main-v__text {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  height: 92%;
  z-index: 4;
}
@media (max-width: 767px) {
  .main-v__text {
    position: relative;
    height: auto;
  }
}
.main-v__text::before {
  content: "";
  position: absolute;
  top: -9rem;
  left: 20%;
  width: 38vw;
  max-width: 680px;
  height: 100%;
  background: url("../images/top/bg_circle.png") no-repeat center/contain;
  z-index: -1;
}
@media (max-width: 767px) {
  .main-v__text::before {
    width: 64vw;
    top: -2rem;
    right: -40%;
    left: auto;
  }
}
.main-v__text-inner {
  padding-left: 6%;
}
@media (max-width: 767px) {
  .main-v__text-inner {
    padding: 4rem;
  }
}
@media (max-width: 575px) {
  .main-v__text-inner {
    padding: 3rem 2rem;
  }
}
.main-v__text p + p {
  margin-top: 0;
}
.main-v__text .p01,
.main-v__text .p02 {
  position: relative;
  overflow: hidden;
}
.main-v__text .p01 img,
.main-v__text .p02 img {
  display: block;
  width: 100%;
}
.main-v__text .p01 {
  width: 50%;
}
@media (max-width: 767px) {
  .main-v__text .p01 {
    width: 88%;
  }
}
.main-v__text .p02 {
  width: 35%;
}
@media (max-width: 767px) {
  .main-v__text .p02 {
    width: 64%;
  }
}
.main-v__text .p03 {
  font-size: clamp(1.8rem, 3.4vw + 1.5rem, 6.7rem);
  color: transparent;
  -webkit-text-stroke: 1px #005C9F;
  text-shadow: 4px 4px 0 #E0E8ED;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .main-v__text .p03 {
    font-size: clamp(1.8rem, 7.6vw, 6.7rem);
  }
}
.main-v__text .p03 span {
  display: inline-block;
}

/* =========================
	main visual / animation
========================= */
.main-v__img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: 2;
  transform: translateX(-100%);
  animation: slideColor 0.65s ease forwards;
  animation-delay: 1.2s;
}
@media (max-width: 767px) {
  .main-v__img::before {
    animation-delay: 0s;
  }
}
.main-v__img img {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  animation: revealImage 0.45s ease forwards;
  animation-delay: 1.7s;
}
@media (max-width: 767px) {
  .main-v__img img {
    animation-delay: 0.3s;
  }
}
.main-v__text::before {
  animation: floatingRotate 8s ease-in-out infinite;
  will-change: transform;
}
.main-v__text .p01::before,
.main-v__text .p02::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #E6BAC3 0%, #F4D292 33%, #B0D1BE 66%, #B6CCDE 100%);
  z-index: 2;
  transform: translateX(-100%);
  animation: slideColor 0.65s ease forwards;
}
.main-v__text .p01 img,
.main-v__text .p02 img {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  animation: revealImage 0.45s ease forwards;
}
.main-v__text .p01 img {
  animation-delay: 0.3s;
}
@media (max-width: 767px) {
  .main-v__text .p01 img {
    animation-delay: 0.7s;
  }
}
@media (max-width: 767px) {
  .main-v__text .p01::before {
    animation-delay: 0.4s;
  }
}
.main-v__text .p02::before {
  animation-delay: 0.4s;
}
@media (max-width: 767px) {
  .main-v__text .p02::before {
    animation-delay: 0.8s;
  }
}
.main-v__text .p02 img {
  animation-delay: 0.7s;
}
@media (max-width: 767px) {
  .main-v__text .p02 img {
    animation-delay: 1s;
  }
}
.main-v__text .p03 span {
  opacity: 0;
  transform: translateY(20px) scale(0.6) rotate(8deg);
  animation: textPop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  will-change: transform, opacity;
}

/* =========================
	scroll down / design
========================= */
.scroll_down {
  position: absolute;
  right: 3%;
  bottom: 10%;
}
@media (max-width: 1199px) {
  .scroll_down {
    bottom: 5%;
  }
}
@media (max-width: 767px) {
  .scroll_down {
    top: 49%;
    right: 4%;
    bottom: auto;
  }
}
.scroll_down span {
  position: absolute;
  left: -16px;
  bottom: 110px;
  height: 90px;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.2em;
  writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 1023px) {
  .scroll_down span {
    left: -13px;
    bottom: 56px;
    font-size: 1.6rem;
  }
}
.scroll_down::before {
  content: "";
  position: absolute;
  left: -6px;
  bottom: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
}
.scroll_down::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 110px;
  background: #fff;
}
@media (max-width: 1023px) {
  .scroll_down::after {
    height: 70px;
  }
}

/* =========================
	scroll down / animation
========================= */
.scroll_down::before {
  animation: circlemove 1.6s ease-in-out infinite, circlemovehide 1.6s ease-out infinite;
}

/* =========================
	keyframes
========================= */
@keyframes slideColor {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(101%);
  }
}
@keyframes revealImage {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes floatingRotate {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-12px) rotate(90deg);
  }
  50% {
    transform: translateY(0) rotate(180deg);
  }
  75% {
    transform: translateY(12px) rotate(270deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}
@keyframes textPop {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.6) rotate(8deg);
  }
  60% {
    opacity: 1;
    transform: translateY(-8px) scale(1.12) rotate(-2deg);
  }
  80% {
    transform: translateY(2px) scale(0.98) rotate(1deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
  }
}
@keyframes circlemove {
  0% {
    bottom: 100px;
  }
  100% {
    bottom: 0;
  }
}
@media (max-width: 1023px) {
  @keyframes circlemove {
    0% {
      bottom: 50px;
    }
    100% {
      bottom: 0;
    }
  }
}
@keyframes circlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
/* intro
-----------------------------------------------------*/
/* intro design
-----------------------------------------------------*/
.intro {
  background-image: url(../images/top/bg_intro.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 8rem 0;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  color: #005C9F;
  margin-top: 6rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .intro {
    font-size: 1.6rem;
  }
}
.intro p {
  line-height: 2.4;
}
@media (max-width: 767px) {
  .intro p {
    line-height: 2.2;
  }
}
.intro p + p {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .intro p + p {
    margin-top: 3rem;
  }
}

/* intro animation
----------------------*/
.intro {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-color: #FFF;
  transform: translateX(-100%);
}
.intro.is-show {
  animation: revealStep 0.45s ease forwards;
}
.intro.is-show::before {
  animation: slideColor 0.8s ease forwards;
}
.intro p {
  opacity: 0;
  transform: translateY(30px) scale(0.96);
}
.intro.is-show p {
  animation: introText 0.44s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.intro.is-show p:nth-of-type(1) {
  animation-delay: 0.6s;
}
.intro.is-show p:nth-of-type(2) {
  animation-delay: 0.95s;
}
.intro.is-show p:nth-of-type(3) {
  animation-delay: 1.3s;
}

@keyframes slideColor {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(101%);
  }
}
@keyframes introText {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  70% {
    opacity: 1;
    transform: translateY(-4px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* entry-box
-----------------------------------------------------*/
/* =========================
	entry box / design
========================= */
.entry-box {
  background-image: url(../images/top/bg_entry.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6rem 0;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  color: #fff;
}
@media (max-width: 575px) {
  .entry-box {
    font-size: 1.8rem;
  }
}
.entry-box .flex {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.entry-box h2 {
  position: relative;
  display: inline-block;
  font-size: 9.6rem;
  letter-spacing: 10px;
  margin-left: 1rem;
  line-height: 1.2;
  color: transparent;
  -webkit-text-stroke: 3px #fff;
}
@media (max-width: 575px) {
  .entry-box h2 {
    font-size: 6.6rem;
  }
}
.entry-box h2::before {
  content: attr(data-text);
  position: absolute;
  top: 5px;
  left: 5px;
  width: 100%;
  z-index: 0;
  background: linear-gradient(90deg, #E6BAC3 0%, #F4D292 33%, #B0D1BE 66%, #B6CCDE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 0;
}
.entry-box h2 span {
  position: relative;
  z-index: 1;
  display: inline-block;
}
.entry-box .btn-entry {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  max-width: 370px;
  width: 100%;
  margin-top: 1rem;
  padding: 0.4rem 2rem;
  padding-left: 22px;
  border: 3px solid #fff;
  border-radius: 100px;
  background-color: #fff;
  background-image: radial-gradient(circle, #3B96C7 0%, #3B96C7 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0 0;
  color: #3B96C7;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: color 0.4s ease, background-size 0.5s ease, transform 0.3s ease;
}
@media (max-width: 575px) {
  .entry-box .btn-entry {
    font-size: 1.8rem;
  }
}
.entry-box .btn-entry::before {
  content: "";
  position: absolute;
  top: 0;
  right: 1rem;
  bottom: 0;
  width: 22px;
  height: 22px;
  margin: auto;
  border-radius: 50%;
  background: #3B96C7;
  transition: background 0.4s ease;
}
.entry-box .btn-entry::after {
  content: "";
  position: absolute;
  top: 0;
  right: 1.8rem;
  bottom: 0;
  width: 6px;
  height: 6px;
  margin: auto;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  transition: border-color 0.4s ease;
}
.entry-box .btn-entry:hover {
  color: #fff;
  background-size: 220% 220%;
  transform: translateY(-6px) scale(1.03);
}
.entry-box .btn-entry:hover::before {
  background: #fff;
}
.entry-box .btn-entry:hover::after {
  border-top-color: #3B96C7;
  border-right-color: #3B96C7;
}

/* =========================
	entry box / animation
========================= */
.entry-box p {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
}
.entry-box h2::before {
  opacity: 0;
  transform: translateY(20px) scale(0.6) rotate(8deg);
}
.entry-box h2 span {
  opacity: 0;
  transform: translateY(20px) scale(0.6) rotate(8deg);
  will-change: transform, opacity;
}
.entry-box .btn-entry {
  opacity: 0;
  transform: translateY(40px);
  will-change: transform;
}
.entry-box.is-show p {
  animation: entryLead 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.entry-box.is-show h2 span, .entry-box.is-show h2::before {
  animation: textPop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.entry-box.is-show .btn-entry {
  animation: entryBtn 0.7s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 0.65s;
}

/* =========================
	keyframes
========================= */
@keyframes entryLead {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes entryBtn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* about
-----------------------------------------------------*/
.about {
  padding: 12rem 0;
}
@media (max-width: 575px) {
  .about {
    padding: 8rem 0;
  }
}
.about-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem 6rem;
  margin-bottom: 12rem;
}
.about-flex .img {
  max-width: 490px;
  width: 100%;
}
.about-flex .text {
  width: 100%;
}
@media (max-width: 1199px) {
  .about-flex {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .about-flex {
    margin-bottom: 8rem;
  }
}
.about-link-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem 8rem;
}
.about-link-flex:nth-of-type(n+2) {
  margin-top: 9rem;
}
@media (max-width: 767px) {
  .about-link-flex:nth-of-type(n+2) {
    margin-top: 6rem;
  }
}
@media (max-width: 575px) {
  .about-link-flex:nth-of-type(n+2) {
    margin-top: 4rem;
  }
}
.about-link-flex {
  /* 2番目だけ反転 */
}
.about-link-flex:nth-child(2) {
  flex-direction: row-reverse;
}
@media (max-width: 1199px) {
  .about-link-flex {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .about-link-flex {
    flex-direction: column;
    /* SPでは戻す */
  }
  .about-link-flex:nth-child(2) {
    flex-direction: column;
  }
}
.about-link-flex .img {
  max-width: 520px;
  width: 100%;
}
.about-link-flex .text {
  width: 100%;
}
.about-link-flex .text a {
  text-decoration: none;
  display: block;
}
.about-link-flex .text a:nth-of-type(2) {
  margin-top: 5rem;
}
.about-link-flex .text a .en {
  position: relative;
  font-size: 6.4rem;
  background: linear-gradient(90deg, #E6BAC3 0%, #F4D292 33%, #B0D1BE 66%, #B6CCDE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  line-height: 1;
  padding-left: 5.8rem;
}
@media (max-width: 767px) {
  .about-link-flex .text a .en {
    font-size: 5.4rem;
    padding-left: 4.8rem;
  }
}
@media (max-width: 575px) {
  .about-link-flex .text a .en {
    font-size: 4.2rem;
  }
}
.about-link-flex .text a .en::before {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  content: "";
  width: 46px;
  height: 48px;
  background: url("../images/common/h_circle.png") no-repeat center/contain;
}
@media (max-width: 767px) {
  .about-link-flex .text a .en::before {
    width: 40px;
    height: 42px;
  }
}
.about-link-flex .text a .inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 575px) {
  .about-link-flex .text a .inline {
    flex-direction: column;
    align-items: flex-start;
  }
}
.about-link-flex .text a .inline::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  background-color: #D9D9D9;
}
@media (max-width: 575px) {
  .about-link-flex .text a .inline::after {
    top: 30%;
  }
}
.about-link-flex .text a .inline p + p {
  margin-top: 0;
}
.about-link-flex .text a .inline .p01 {
  color: #3B96C7;
  font-weight: bold;
  font-size: 2rem;
  background-color: #FFF;
  padding: 0 1.5rem 0 0;
}
.about-link-flex .text a .inline .p02 {
  color: #6E6E6E;
  background-color: #FFF;
  padding: 0 0 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 575px) {
  .about-link-flex .text a .inline .p02 {
    padding: 0;
  }
}
.about-link-flex .text a .inline .p02 .arrow {
  position: relative;
  display: inline-block;
  width: 7.7px;
  height: 13.3px;
}
.about-link-flex .text a .inline .p02 .arrow::before,
.about-link-flex .text a .inline .p02 .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0px);
  right: 0;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #9bbdcb;
  transform-origin: calc(100% - 1px) 50%;
}
.about-link-flex .text a .inline .p02 .arrow::before {
  transform: rotate(45deg);
}
.about-link-flex .text a .inline .p02 .arrow::after {
  transform: rotate(-45deg);
}

/* about scroll animation
---------------------------*/
.about-flex .img {
  position: relative;
  overflow: hidden;
}
.about-flex .img img {
  display: block;
  width: 100%;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
.about-flex .img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #E6BAC3 0%, #F4D292 33%, #B0D1BE 66%, #B6CCDE 100%);
  z-index: 2;
  transform: translateX(-100%);
}
.about-flex .h-sec01 span::after {
  left: 30px;
}
.about-flex .text .h-wrap,
.about-flex .text p {
  opacity: 0;
  transform: translateY(30px) scale(0.96);
}
.about-flex.is-show .img::before {
  animation: slideColor 0.65s ease forwards;
}
.about-flex.is-show .img img {
  animation: revealImage 0.45s ease forwards;
  animation-delay: 0.1s;
}
.about-flex.is-show .text .h-wrap {
  animation: introText 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.55s;
}
.about-flex.is-show .text p:nth-of-type(1) {
  animation: introText 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.75s;
}
.about-flex.is-show .text p:nth-of-type(2) {
  animation: introText 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.95s;
}
.about-flex.is-show .text p:nth-of-type(3) {
  animation: introText 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 1.15s;
}

/* about link scroll animation
---------------------------*/
.about-link-flex .img {
  position: relative;
  overflow: hidden;
}
.about-link-flex .img img {
  display: block;
  width: 100%;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
.about-link-flex .img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #E6BAC3 0%, #F4D292 33%, #B0D1BE 66%, #B6CCDE 100%);
  z-index: 2;
  transform: translateX(-100%);
}
.about-link-flex .text a {
  opacity: 0;
  transform: translateY(30px) scale(0.96);
}
.about-link-flex.is-show .img::before {
  animation: slideColor 0.65s ease forwards;
}
.about-link-flex.is-show .img img {
  animation: revealImage 0.45s ease forwards;
  animation-delay: 0.1s;
}
.about-link-flex.is-show .text a:nth-of-type(1) {
  animation: introText 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.55s;
}
.about-link-flex.is-show .text a:nth-of-type(2) {
  animation: introText 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.75s;
}

/* about link hover animation
---------------------------*/
.about-link-flex .text a .en {
  position: relative;
  font-size: 6.4rem;
  background: linear-gradient(90deg, #E6BAC3 0%, #F4D292 33%, #B0D1BE 66%, #B6CCDE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  line-height: 1;
  padding-left: 5.8rem;
  transform-origin: bottom;
  will-change: transform;
}
@media (max-width: 767px) {
  .about-link-flex .text a .en {
    font-size: 5.4rem;
  }
}
@media (max-width: 575px) {
  .about-link-flex .text a .en {
    font-size: 4.4rem;
    padding-left: 5rem;
  }
}

.about-link-flex .text a:hover .en {
  animation: jumpText 0.48s ease-out;
}

@keyframes jumpText {
  0% {
    transform: scaleY(1);
  }
  15% {
    transform: scaleY(0.9);
  }
  50% {
    transform: scaleY(1.25) translateY(-4px);
  }
  100% {
    transform: scaleY(1);
  }
}
/* message
-----------------------------------------------------*/
.message {
  background-image: url(../images/top/bg_message03.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10rem 0;
}
.message-text {
  max-width: 610px;
  width: 100%;
  margin-left: auto;
}
.message-text p {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .message-text p {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .message-text p {
    font-size: 1.4rem;
  }
}
.message-text ul {
  list-style: disc;
  font-weight: bold;
  font-size: 2rem;
  margin: 3rem 0;
  padding: 0 0 0 3rem;
}
@media (max-width: 767px) {
  .message-text ul {
    font-size: 1.8rem;
  }
}
@media (max-width: 575px) {
  .message-text ul {
    font-size: 1.6rem;
    padding: 0 0 0 2rem;
  }
}
.message-text ul li + li {
  margin-top: 0.5rem;
}
.message-text ul li::marker {
  color: #005C9F;
}

/* message animation
----------------------*/
.message {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
.message::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-color: #FFF;
  transform: translateX(-100%);
}
.message.is-show {
  animation: revealStep 0.45s ease forwards;
}
.message.is-show::before {
  animation: slideColor 0.8s ease forwards;
}
.message .message-text p,
.message .message-text ul {
  opacity: 0;
  transform: translateY(30px) scale(0.96);
}
.message.is-show .message-text p:nth-of-type(1) {
  animation: introText 0.44s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.6s;
}
.message.is-show .message-text ul {
  animation: introText 0.44s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.95s;
}
.message.is-show .message-text p:nth-of-type(2) {
  animation: introText 0.44s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 1.3s;
}

/*footer
-----------------------------------------------------*/
footer {
  background-color: #FFF;
}
footer .footer-inner {
  padding: 4rem 0;
}
@media (max-width: 1350px) {
  footer .footer-inner {
    padding: 4rem 0 12rem 0;
  }
}
footer .footer-inner .flex {
  gap: 4rem 4.5rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 3rem;
  border-bottom: 1px solid #D6E0E9;
}
@media (max-width: 767px) {
  footer .footer-inner .flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
footer .footer-inner .flex .col01 img {
  max-width: 247px;
  width: 100%;
}
@media (max-width: 767px) {
  footer .footer-inner .flex .col01 img {
    max-width: 320px;
  }
}
footer .footer-inner .flex .col02 ul {
  display: flex;
  gap: 2rem;
}
@media (max-width: 767px) {
  footer .footer-inner .flex .col02 ul {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  footer .footer-inner .flex .col02 ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  footer .footer-inner .flex .col02 {
    width: 100%;
  }
}
footer .footer-inner .flex .col02 a {
  color: #6E6E6E;
  text-decoration: none;
  position: relative;
}
footer .footer-inner .flex .col02 a:hover {
  opacity: 1;
  color: #3B96C7;
}
footer .footer-inner .flex .col02 a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #3B96C7;
  bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
footer .footer-inner .flex .col02 a:hover::after {
  visibility: visible;
  bottom: -5px;
  opacity: 1;
}
footer .footer-inner .footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 4.5rem;
}
@media (max-width: 767px) {
  footer .footer-inner .footer-bottom {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }
}
footer .footer-inner .footer-bottom ul {
  display: flex;
  gap: 3rem;
}
@media (max-width: 575px) {
  footer .footer-inner .footer-bottom ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
}
footer .footer-inner .footer-bottom ul a {
  color: #6E6E6E;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}
footer .footer-inner .footer-bottom ul a:hover {
  opacity: 1;
  color: #3B96C7;
}
footer .footer-inner .footer-bottom ul a::before {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #3B96C7;
  bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
footer .footer-inner .footer-bottom ul a:hover::before {
  visibility: visible;
  bottom: -5px;
  opacity: 1;
}
footer .footer-inner .footer-bottom ul a::after {
  content: "";
  background-image: url(../images/common/icon_newtab.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  display: block;
}
footer .footer-inner .footer-bottom .copy {
  font-size: 1.4rem;
  color: #A3A3A3;
}

.top-btn {
  display: none;
  position: fixed;
  width: 60px;
  height: 60px;
  background: #005C9F;
  bottom: 15px;
  right: 20px;
  border-radius: 10px 0 10px 0;
  border: 2px solid #005C9F;
  transition-delay: 0s;
  opacity: 1;
  visibility: visible;
  cursor: pointer;
  z-index: 100;
  transition: background 0.3s ease;
}
@media (max-width: 767px) {
  .top-btn {
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px 10px 0 0;
  }
}
.top-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 4px;
  margin-left: -8px;
  width: 15px;
  height: 15px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 2px solid #FFF;
  border-left: 2px solid #FFF;
}
.top-btn:hover {
  background: #FFF;
}
.top-btn:hover::after {
  border-top-color: #005C9F;
  border-left-color: #005C9F;
}

/*page-career
/*future
-----------------------------------------------------*/
.future {
  padding: 6rem 0 14rem 0;
}

.step-flex {
  display: flex;
  align-items: center;
  gap: 4rem 6.6rem;
  padding: 8rem 0 0 0;
}
@media (max-width: 767px) {
  .step-flex {
    flex-direction: column-reverse;
  }
}
.step-flex .img {
  max-width: 440px;
  width: 100%;
}
.step-flex .text {
  width: 100%;
  background-color: #F1F4F7;
  padding: 4rem;
  border-radius: 20px;
  position: relative;
  box-sizing: border-box;
}
@media (max-width: 575px) {
  .step-flex .text {
    padding: 4rem 2rem 3rem 2rem;
  }
}
.step-flex .text::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-right: 26px solid #f1f4f7;
  border-left: 0;
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .step-flex .text::before {
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 16px solid transparent;
    border-left: 16px solid transparent;
    border-top: 26px solid #f1f4f7;
    border-bottom: 0;
    top: auto;
    bottom: -25px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
.step-flex .text .en {
  font-size: 6rem;
  color: #3B96C7;
  position: absolute;
  top: -54px;
  right: 40px;
}
@media (max-width: 1023px) {
  .step-flex .text .en {
    top: -44px;
    font-size: 5rem;
  }
}
@media (max-width: 575px) {
  .step-flex .text .en {
    right: 20px;
  }
}
.step-flex .text h4 {
  color: #005C9F;
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}
.step-flex .text h4::before {
  display: block;
  content: "";
  width: 18px;
  height: 18px;
  background: url(../images/common/h_circle02.png) no-repeat center/contain;
}
@media (max-width: 575px) {
  .step-flex .text h4 {
    padding-bottom: 1rem;
    line-height: 1.4;
    font-size: 1.8rem;
  }
}
.step-flex .text h4 {
  border-bottom: 4px solid;
  -o-border-image: linear-gradient(90deg, #B6CCDE 0%, #B0D1BE 33%, #F4D292 66%, #E6BAC3 100%) 1;
     border-image: linear-gradient(90deg, #B6CCDE 0%, #B0D1BE 33%, #F4D292 66%, #E6BAC3 100%) 1;
}
.step-flex .text p {
  line-height: 1.6;
}
.step .reverse {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .step .reverse {
    flex-direction: column-reverse;
  }
}
.step .reverse .text::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 26px solid #f1f4f7;
  border-right: 0;
  position: absolute;
  top: 50%;
  right: -25px;
  left: auto;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .step .reverse .text::before {
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 16px solid transparent;
    border-left: 16px solid transparent;
    border-top: 26px solid #f1f4f7;
    border-bottom: 0;
    top: auto;
    bottom: -25px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

.step-flex {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
.step-flex::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.step-flex::before {
  background: linear-gradient(90deg, #E6BAC3 0%, #F4D292 33%, #B0D1BE 66%, #B6CCDE 100%);
  transform: translateX(-100%);
}
.step-flex.is-show {
  animation: revealStep 0.45s ease forwards;
}
.step-flex.is-show::before {
  animation: slideColor 0.8s ease forwards;
}

@keyframes revealStep {
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes slideColor {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(101%);
  }
}
/*business
-----------------------------------------------------*/
.business {
  padding: 14rem 0;
}
.business .whatis {
  background-color: #FFF;
  border-radius: 8rem 0 8rem 0;
  padding: 10rem;
}
@media (max-width: 1199px) {
  .business .whatis {
    border-radius: 6rem 0 6rem 0;
    padding: 8rem 6rem;
  }
}
@media (max-width: 767px) {
  .business .whatis {
    padding: 6rem 4rem;
  }
}
@media (max-width: 575px) {
  .business .whatis {
    padding: 5rem 2rem;
  }
}
.business .whatis-flex {
  display: flex;
  align-items: center;
  justify-items: center;
  gap: 4rem 6rem;
  margin-bottom: 7rem;
}
@media (max-width: 1023px) {
  .business .whatis-flex {
    flex-direction: column;
  }
}
.business .whatis-flex .img {
  max-width: 440px;
  width: 100%;
}
.business .whatis-flex .text {
  width: 100%;
}
.business .whatis-phase-flex {
  background-color: #F1F4F7;
  padding: 3rem 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem 6rem;
  border-radius: 4rem 0 4rem 0;
  margin-top: 4rem;
}
@media (max-width: 1023px) {
  .business .whatis-phase-flex {
    gap: 2rem 4rem;
    padding: 4rem;
  }
}
@media (max-width: 767px) {
  .business .whatis-phase-flex {
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .business .whatis-phase-flex {
    padding: 4rem 2rem;
  }
}
.business .whatis-phase-flex .img {
  max-width: 250px;
  width: 100%;
}
.business .whatis-phase-flex .text {
  width: 100%;
}
.business .whatis-phase-flex .text h4 {
  color: #005C9F;
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.business .whatis-phase-flex .text h4::before {
  display: block;
  content: "";
  width: 18px;
  height: 18px;
  background: url(../images/common/h_circle02.png) no-repeat center/contain;
}
@media (max-width: 575px) {
  .business .whatis-phase-flex .text h4 {
    padding-bottom: 1rem;
    font-size: 1.8rem;
  }
}
.business .whatis-phase-flex .text h4 {
  border-bottom: 4px solid #B6CCDE;
}
.business .whatis-phase-flex .text h5 {
  font-size: 1.6rem;
}

.whatis-flex {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
.whatis-flex::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.whatis-flex::before {
  background: linear-gradient(90deg, #E6BAC3 0%, #F4D292 33%, #B0D1BE 66%, #B6CCDE 100%);
  transform: translateX(-100%);
}
.whatis-flex.is-show {
  animation: revealStep 0.45s ease forwards;
}
.whatis-flex.is-show::before {
  animation: slideColor 0.8s ease forwards;
}

.whatis-phase-flex {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
.whatis-phase-flex::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.whatis-phase-flex::before {
  background: linear-gradient(90deg, #E6BAC3 0%, #F4D292 33%, #B0D1BE 66%, #B6CCDE 100%);
  transform: translateX(-100%);
}
.whatis-phase-flex.is-show {
  animation: revealStep 0.45s ease forwards;
}
.whatis-phase-flex.is-show::before {
  animation: slideColor 0.8s ease forwards;
}

.pop-p {
  opacity: 0;
}
.pop-p.is-show {
  animation: introText 0.44s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards;
}

/*page-spins-mind
/*company-intro
-----------------------------------------------------*/
.company {
  padding: 6rem 0 0 0;
}
.company-intro {
  background-image: url(../images/company/bg-company.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0 0 13rem 0;
}
@media (max-width: 767px) {
  .company-intro {
    padding: 0 0 8rem 0;
  }
}
.company-intro-inner {
  background-color: #FFF;
  border-radius: 0 0 40px 40px;
  padding: 0 9rem 6rem 9rem;
}
@media (max-width: 767px) {
  .company-intro-inner {
    padding: 0 6rem 4rem 6rem;
  }
}
@media (max-width: 575px) {
  .company-intro-inner {
    padding: 0 2rem 4rem 2rem;
  }
}

/*philosophy*/
.philosophy {
  padding: 12rem 0;
}
@media (max-width: 767px) {
  .philosophy {
    padding: 8rem 0;
  }
}
.philosophy-flex {
  display: flex;
  justify-content: space-between;
  gap: 4rem 14rem;
}
@media (max-width: 1023px) {
  .philosophy-flex {
    gap: 4rem;
  }
}
@media (max-width: 767px) {
  .philosophy-flex {
    flex-direction: column;
    align-items: center;
  }
}
.philosophy-flex .img {
  max-width: 260px;
  width: 100%;
  gap: 6rem;
}
@media (max-width: 1023px) {
  .philosophy-flex .img {
    max-width: 180px;
  }
}
@media (max-width: 767px) {
  .philosophy-flex .img {
    max-width: 500px;
  }
}
.philosophy-flex .text {
  width: 100%;
}
.philosophy-flex .text .box {
  position: relative;
  margin-top: 4.5rem;
}
.philosophy-flex .text .box::after {
  content: "";
  width: 100%;
  position: absolute;
  top: 28px;
  z-index: -1;
  border-bottom: 4px solid;
  -o-border-image: linear-gradient(90deg, #B6CCDE 0%, #B0D1BE 33%, #F4D292 66%, #E6BAC3 100%) 1;
     border-image: linear-gradient(90deg, #B6CCDE 0%, #B0D1BE 33%, #F4D292 66%, #E6BAC3 100%) 1;
}
.philosophy-flex .text .box:first-of-type {
  margin-top: 0;
}
.philosophy-flex .text .box h3 {
  font-size: 3.2rem;
  display: inline-block;
  background-color: #FFF;
  padding: 0 1rem 0 0;
  margin-bottom: 1.5rem;
}
.philosophy-flex .text .box h3 strong {
  background-color: #000;
  color: #FFF;
  padding: 0 0.3rem;
}
.philosophy-flex .text .box h3 strong .span-o {
  color: #F6DA9C;
}
.philosophy-flex .text .box h3 strong .span-g {
  color: #C2E8CC;
}
.philosophy-flex .text .box h3 strong .span-r {
  color: #F1C6C7;
}
.philosophy-flex .text .box h3 strong .span-b {
  color: #B7DEF5;
}
.philosophy-flex .text .box h4 {
  font-size: 2rem;
  color: #005C9F;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.philosophy-flex .text .box ul li + li {
  margin-top: 0.5rem;
}
.philosophy-flex .text .box ul li span {
  color: #005C9F;
  font-weight: bold;
}

.company-intro {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
.company-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, #E6BAC3 0%, #F4D292 33%, #B0D1BE 66%, #B6CCDE 100%);
  transform: translateX(-100%);
}
.company-intro.is-show {
  animation: revealStep 0.45s ease forwards;
  animation-delay: 1.4s;
}
.company-intro.is-show::before {
  animation: slideColor 0.8s ease forwards;
  animation-delay: 1.4s;
}

.slide-box {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
.slide-box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, #E6BAC3 0%, #F4D292 33%, #B0D1BE 66%, #B6CCDE 100%);
  transform: translateX(-100%);
}
.slide-box.is-show {
  animation: revealStep 0.45s ease forwards;
}
.slide-box.is-show::before {
  animation: slideColor 0.8s ease forwards;
}

.reason-flex-box {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
}
.reason-flex-box.is-show {
  animation: popUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes popUp {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  70% {
    opacity: 1;
    transform: translateY(-8px) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes popUp {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.8);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px) scale(1.08);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.reason-flex-box:nth-child(1).is-show {
  animation-delay: 0.1s;
}

.reason-flex-box:nth-child(2).is-show {
  animation-delay: 0.2s;
}

.reason-flex-box:nth-child(3).is-show {
  animation-delay: 0.3s;
}

.reason-sec-flex {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
.reason-sec-flex::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, #E6BAC3 0%, #F4D292 33%, #B0D1BE 66%, #B6CCDE 100%);
  transform: translateX(-100%);
}
.reason-sec-flex.is-show {
  animation: revealStep 0.45s ease forwards;
}
.reason-sec-flex.is-show::before {
  animation: slideColor 0.8s ease forwards;
}

.careerup-flex {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
.careerup-flex::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, #E6BAC3 0%, #F4D292 33%, #B0D1BE 66%, #B6CCDE 100%);
  transform: translateX(-100%);
}
.careerup-flex.is-show {
  animation: revealStep 0.45s ease forwards;
}
.careerup-flex.is-show::before {
  animation: slideColor 0.8s ease forwards;
}

.step-engineer-flex {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
}
.step-engineer-flex.is-show {
  animation: popUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.check-box {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
.check-box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, #E6BAC3 0%, #F4D292 33%, #B0D1BE 66%, #B6CCDE 100%);
  transform: translateX(-100%);
}
.check-box.is-show {
  animation: revealStep 0.45s ease forwards;
}
.check-box.is-show::before {
  animation: slideColor 0.8s ease forwards;
}

/*culture
-----------------------------------------------------*/
.culture {
  padding: 14rem 0;
}

.reason {
  background-color: #FFF;
  border-radius: 8rem 0 8rem 0;
  padding: 10rem;
  margin-top: 8rem;
}
@media (max-width: 1199px) {
  .reason {
    border-radius: 6rem 0 6rem 0;
    padding: 8rem 6rem;
  }
}
@media (max-width: 767px) {
  .reason {
    padding: 6rem 4rem;
    margin-top: 6rem;
  }
}
@media (max-width: 575px) {
  .reason {
    padding: 5rem 2rem;
  }
}
.reason-flex {
  display: flex;
  justify-content: center;
  gap: 6rem 3rem;
}
@media (max-width: 1199px) {
  .reason-flex {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
.reason-flex-box {
  border-radius: 4rem 0 4rem 0;
  background-color: #F1F4F7;
  position: relative;
  padding: 4rem 2.5rem 3rem 2.5rem;
  width: calc(33.3333333333% - 3rem);
  display: flex;
  flex-direction: column;
}
@media (max-width: 1199px) {
  .reason-flex-box {
    width: 100%;
    box-sizing: border-box;
  }
}
.reason-flex-box .en {
  font-size: 6rem;
  color: #3B96C7;
  position: absolute;
  top: -54px;
  right: 40px;
}
@media (max-width: 1023px) {
  .reason-flex-box .en {
    top: -44px;
    font-size: 5rem;
  }
}
@media (max-width: 767px) {
  .reason-flex-box .en {
    right: auto;
  }
}
@media (max-width: 575px) {
  .reason-flex-box .en {
    left: 20px;
  }
}
.reason-flex-box h4 {
  color: #005C9F;
  font-size: 1.8rem;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}
@media (max-width: 575px) {
  .reason-flex-box h4 {
    padding-bottom: 1rem;
    line-height: 1.4;
    font-size: 1.6rem;
  }
}
.reason-flex-box h4 {
  border-bottom: 4px solid;
  -o-border-image: linear-gradient(90deg, #B6CCDE 0%, #B0D1BE 33%, #F4D292 66%, #E6BAC3 100%) 1;
     border-image: linear-gradient(90deg, #B6CCDE 0%, #B0D1BE 33%, #F4D292 66%, #E6BAC3 100%) 1;
}
.reason-flex-box p {
  margin-bottom: 2rem;
}
.reason-sec-flex {
  display: flex;
  gap: 4rem 5rem;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1199px) {
  .reason-sec-flex {
    flex-wrap: wrap;
  }
}
.reason-sec-flex .text {
  width: 100%;
}
.reason-sec-flex .text h4 {
  color: #005C9F;
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.reason-sec-flex .text h4::before {
  display: block;
  content: "";
  width: 18px;
  height: 18px;
  background: url(../images/common/h_circle02.png) no-repeat center/contain;
}
@media (max-width: 575px) {
  .reason-sec-flex .text h4 {
    padding-bottom: 1rem;
    font-size: 1.8rem;
  }
}
.reason-sec-flex .text h4 {
  border-bottom: 4px solid #B6CCDE;
}
.reason-sec-flex .text h5 {
  font-size: 1.8rem;
  background-color: #E6F0F4;
  border-radius: 2rem 0 2rem 0;
  padding: 0.5rem 2rem;
  color: #005C9F;
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .reason-sec-flex .text h5 {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .reason-sec-flex .text h5 {
    font-size: 1.4rem;
  }
}
.reason-sec-flex .text h5 .en {
  font-size: 2.6rem;
  line-height: 0;
}
.reason-sec-flex .img {
  max-width: 440px;
  width: 100%;
}
.reason .careerup-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem 6rem;
  margin-top: 6rem;
}
@media (max-width: 1023px) {
  .reason .careerup-flex {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.reason .careerup-flex .img {
  max-width: 250px;
  width: 100%;
}
.reason .careerup-flex .text {
  width: 100%;
}
.reason .careerup-flex .text h4 {
  color: #005C9F;
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.reason .careerup-flex .text h4::before {
  display: block;
  content: "";
  width: 18px;
  height: 18px;
  background: url(../images/common/h_circle02.png) no-repeat center/contain;
}
@media (max-width: 575px) {
  .reason .careerup-flex .text h4 {
    padding-bottom: 1rem;
    font-size: 1.8rem;
  }
}
.reason .careerup-flex .text h4 {
  border-bottom: 4px solid #B6CCDE;
}

.step-engineer {
  background-color: #FFF;
  border-radius: 8rem 0 8rem 0;
  padding: 10rem;
  margin-top: 8rem;
}
@media (max-width: 1199px) {
  .step-engineer {
    border-radius: 6rem 0 6rem 0;
    padding: 8rem 6rem;
  }
}
@media (max-width: 1023px) {
  .step-engineer {
    padding: 6rem 4rem;
  }
}
@media (max-width: 575px) {
  .step-engineer {
    padding: 5rem 2rem;
  }
}
.step-engineer-flex {
  display: flex;
  align-items: center;
  gap: 4rem 6.6rem;
}
@media (max-width: 1023px) {
  .step-engineer-flex {
    gap: 4rem;
  }
}
@media (max-width: 767px) {
  .step-engineer-flex {
    flex-direction: column-reverse;
  }
}
.step-engineer-flex .img {
  max-width: 300px;
  width: 100%;
}
@media (max-width: 1023px) {
  .step-engineer-flex .img {
    max-width: 260px;
  }
}
.step-engineer-flex .text {
  width: 100%;
  background-color: #F1F4F7;
  padding: 4rem;
  border-radius: 20px;
  position: relative;
  box-sizing: border-box;
}
@media (max-width: 575px) {
  .step-engineer-flex .text {
    padding: 4rem 2rem 3rem 2rem;
  }
}
.step-engineer-flex .text::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-right: 26px solid #f1f4f7;
  border-left: 0;
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .step-engineer-flex .text::before {
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 16px solid transparent;
    border-left: 16px solid transparent;
    border-top: 26px solid #f1f4f7;
    border-bottom: 0;
    top: auto;
    bottom: -25px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
.step-engineer-flex .text .en {
  font-size: 6rem;
  color: #3B96C7;
  position: absolute;
  top: -54px;
  right: 40px;
}
@media (max-width: 1023px) {
  .step-engineer-flex .text .en {
    top: -44px;
    font-size: 5rem;
  }
}
@media (max-width: 575px) {
  .step-engineer-flex .text .en {
    right: 20px;
  }
}
.step-engineer-flex .text h4 {
  color: #005C9F;
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}
.step-engineer-flex .text h4::before {
  display: block;
  content: "";
  width: 18px;
  height: 18px;
  background: url(../images/common/h_circle02.png) no-repeat center/contain;
}
@media (max-width: 575px) {
  .step-engineer-flex .text h4 {
    padding-bottom: 1rem;
    line-height: 1.4;
    font-size: 1.8rem;
  }
}
.step-engineer-flex .text h4 {
  border-bottom: 4px solid;
  -o-border-image: linear-gradient(90deg, #B6CCDE 0%, #B0D1BE 33%, #F4D292 66%, #E6BAC3 100%) 1;
     border-image: linear-gradient(90deg, #B6CCDE 0%, #B0D1BE 33%, #F4D292 66%, #E6BAC3 100%) 1;
}
.step-engineer-flex .text p {
  line-height: 1.6;
}
.step-engineer .reverse {
  flex-direction: row-reverse;
  margin: 6rem 0;
}
@media (max-width: 767px) {
  .step-engineer .reverse {
    flex-direction: column-reverse;
  }
}
.step-engineer .reverse .text::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 26px solid #f1f4f7;
  border-right: 0;
  position: absolute;
  top: 50%;
  right: -25px;
  left: auto;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .step-engineer .reverse .text::before {
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 16px solid transparent;
    border-left: 16px solid transparent;
    border-top: 26px solid #f1f4f7;
    border-bottom: 0;
    top: auto;
    bottom: -25px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
.step-engineer .check-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 6rem;
}
@media (max-width: 1023px) {
  .step-engineer .check-box {
    flex-wrap: wrap;
  }
}
.step-engineer .check-box .text {
  width: 100%;
}
.step-engineer .check-box .text h4 {
  font-size: 2.4rem;
  color: #005C9F;
  border-bottom: 5px solid;
  -o-border-image: linear-gradient(90deg, #B6CCDE 0%, #B0D1BE 33%, #F4D292 66%, #E6BAC3 100%) 1;
     border-image: linear-gradient(90deg, #B6CCDE 0%, #B0D1BE 33%, #F4D292 66%, #E6BAC3 100%) 1;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}
@media (max-width: 575px) {
  .step-engineer .check-box .text h4 {
    font-size: 2rem;
  }
}
.step-engineer .check-box .text h4 .en {
  font-size: 2.2rem;
  background-color: #3B96C7;
  color: #FFF;
  border-radius: 4px;
  padding: 0 0.8rem;
  margin-right: 1rem;
}
.step-engineer .check-box .text ul {
  list-style: disc;
  font-size: 1.8rem;
  margin: 3rem 0;
  padding: 0 0 0 3rem;
}
@media (max-width: 767px) {
  .step-engineer .check-box .text ul {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .step-engineer .check-box .text ul {
    font-size: 1.4rem;
  }
}
.step-engineer .check-box .text ul li + li {
  margin-top: 0.5rem;
}
.step-engineer .check-box .text ul li::marker {
  color: #005C9F;
}
.step-engineer .check-box .img {
  width: 100%;
  max-width: 440px;
}

/*グラフ*/
.data-area {
  margin: 6rem auto 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 2rem;
  margin-bottom: 8rem;
}
@media (max-width: 1199px) {
  .data-area {
    max-width: 720px;
    grid-template-columns: 1fr;
  }
}
.data-area.is-show .ratio-bar__orange {
  width: 83%;
}
.data-area.is-show .ratio-bar__green {
  width: 17%;
}

.data-card {
  position: relative;
  border: 2px solid #3B96C7;
  border-radius: 10px;
  padding: 3rem 3rem 2rem 3rem;
  background: #fff;
  text-align: center;
}
@media (max-width: 575px) {
  .data-card {
    padding: 3rem 2rem 2rem 2rem;
  }
}
.data-card--wide {
  grid-column: 1/2;
}
@media (max-width: 1199px) {
  .data-card--wide {
    grid-column: auto;
  }
}
.data-card--job {
  grid-column: 2/3;
  grid-row: 1/3;
}
@media (max-width: 1199px) {
  .data-card--job {
    grid-column: auto;
    grid-row: auto;
  }
}

.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 2rem;
}

.data-label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #3B96C7;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  padding: 0.1rem 2.5rem;
  border-radius: 999px;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .data-label {
    font-size: 1.8rem;
    padding: 0.1rem 2rem;
  }
}

.data-num {
  color: #005C9F;
  font-weight: 900;
  font-size: 5rem;
  line-height: 1;
  margin: 0;
  font-family: "Bungee", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 767px) {
  .data-num {
    font-size: 4.2rem;
  }
}
@media (max-width: 575px) {
  .data-num {
    font-size: 3.2rem;
  }
}
.data-num small {
  color: #5D5D5D;
}

.ratio {
  display: flex;
  align-items: end;
  gap: 2rem;
}
@media (max-width: 575px) {
  .ratio {
    gap: 1rem;
  }
}

.ratio-num {
  color: #005C9F;
}
.ratio-num span {
  display: block;
  color: #5D5D5D;
  font-weight: 700;
}
.ratio-num strong {
  color: #005C9F;
  font-size: 5rem;
  line-height: 1;
  font-family: "Bungee", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 767px) {
  .ratio-num strong {
    font-size: 4.2rem;
  }
}
@media (max-width: 575px) {
  .ratio-num strong {
    font-size: 3.2rem;
  }
}
.ratio-num strong span {
  color: #005C9F;
}
.ratio-num strong.flex {
  display: flex;
  align-items: baseline;
}
.ratio-num small {
  font-size: 2rem;
  color: #555;
}

.ratio-bar {
  flex: 1;
  height: 60px;
  display: flex;
  background: #eee;
  overflow: hidden;
}
.ratio-bar span {
  display: block;
  width: 0;
  transition: width 1s ease;
}
.ratio-bar__orange {
  background: #f2a23a;
  border-right: 3px solid #FFF;
}
.ratio-bar__green {
  background: #63b66d;
}

.job-flex-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

.job-flex {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
}
@media (max-width: 767px) {
  .job-flex {
    flex-direction: column;
  }
}

.pie {
  flex: 0 0 150px;
  max-width: 150px;
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .pie {
    margin-top: 1rem;
  }
}
.pie svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.pie-ring {
  fill: none;
  stroke-width: 20;
  stroke-dasharray: 0 251.2;
  transition: stroke-dasharray 1.2s ease;
}

/* 初期値 */
.pie-blue,
.pie-red,
.pie-green,
.pie-orange {
  stroke-dasharray: 0 251.2;
}

/* 表示後 */
.data-area.is-show .pie-blue {
  stroke: #3ba2d6;
  stroke-dasharray: 136.5 251.2;
  stroke-dashoffset: 0;
}
.data-area.is-show .pie-red {
  stroke: #eb6666;
  stroke-dasharray: 61 251.2;
  stroke-dashoffset: -138.16;
}
.data-area.is-show .pie-green {
  stroke: #63b66d;
  stroke-dasharray: 36 251.2;
  stroke-dashoffset: -200.96;
}
.data-area.is-show .pie-orange {
  stroke: #f2a23a;
  stroke-dasharray: 11 251.2;
  stroke-dashoffset: -238.64;
}

.job-list {
  flex: 1;
  min-width: 0;
}
@media (max-width: 767px) {
  .job-list {
    width: 100%;
  }
}
.job-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.4rem 0;
  font-weight: 700;
  color: #5D5D5D;
  position: relative;
  justify-content: space-between;
}
.job-list li::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  background-color: #AFAFAF;
}
.job-list li .bg-w {
  background-color: #FFF;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 1;
  padding: 0 0.2rem;
}
.job-list strong {
  margin-left: auto;
  color: #5D5D5D;
  font-size: 2rem;
  line-height: 1;
  font-family: "Bungee", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.job-list strong span {
  font-size: 3.5rem;
  color: #005C9F;
}
@media (max-width: 575px) {
  .job-list strong span {
    font-size: 3.2rem;
  }
}

.dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  display: block;
}
.dot.blue {
  background: #3ba2d6;
}
.dot.red {
  background: #eb6666;
}
.dot.green {
  background: #63b66d;
}
.dot.orange {
  background: #f2a23a;
}

/*page-faq
-----------------------------------------------------*/
.sec-faq {
  padding: 6rem 0 14rem 0;
}

.faq-container {
  width: 100%;
  box-sizing: border-box;
}
.faq-container .faq-title {
  cursor: pointer;
  padding: 3.5rem 3rem;
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 2rem;
  border-radius: 20px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .faq-container .faq-title {
    padding: 2.5rem 2rem;
  }
}
@media (max-width: 575px) {
  .faq-container .faq-title {
    padding: 2.5rem 1rem;
  }
}
.faq-container .faq-title div {
  display: flex;
  gap: 2rem;
}
.faq-container .faq-title .open_btn {
  max-width: 34px;
  height: 34px;
  width: 100%;
  position: relative;
  margin-left: auto;
}
.faq-container .faq-title .open_btn::before, .faq-container .faq-title .open_btn::after {
  content: "";
  position: absolute;
  right: 7px;
  top: 16px;
  width: 20px;
  height: 2px;
  background-color: #3B96C7;
}
.faq-container .faq-title .open_btn::before {
  top: 17px;
  transition: transform 0.3s linear;
  transform: translateY(-50%) rotate(90deg);
}
.faq-container .faq-title.open {
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
}
.faq-container .faq-title.open .open_btn::before {
  transform: translateY(-50%) rotate(0deg) !important;
  transition: 0.3s;
}
.faq-container .faq-text {
  display: none;
  padding: 0 3rem 3.5rem 3rem;
  box-sizing: border-box;
  border-radius: 0 0 20px 20px;
}
@media (max-width: 767px) {
  .faq-container .faq-text {
    padding: 2rem;
  }
}
@media (max-width: 575px) {
  .faq-container .faq-text {
    padding: 1rem;
  }
}
.faq-container .faq-text .en {
  position: relative;
  margin-right: 4rem;
  height: 4rem;
}
.faq-container .faq-text .en::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  background: url("../images/faq/a.png") no-repeat center/contain;
}
.faq-container .faq-text div {
  display: flex;
  gap: 2rem;
}
.faq-container dl {
  border-top: 1px solid #97BBD4;
}
.faq-container dl:last-of-type {
  border-bottom: 1px solid #97BBD4;
}
.faq-container dt {
  font-weight: bold;
  background: #FFF;
}
.faq-container dt .en {
  position: relative;
  margin-right: 4rem;
  height: 4rem;
}
.faq-container dt .en::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  background: url("../images/faq/q.png") no-repeat center/contain;
}
.faq-container dt .faq-in {
  display: flex;
  align-items: center;
}
.faq-container dd {
  background-color: #FFF;
}

.faq-container dl {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: faqPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.faq-container dl:nth-child(1) {
  animation-delay: 0.8s;
}
.faq-container dl:nth-child(2) {
  animation-delay: 0.9s;
}
.faq-container dl:nth-child(3) {
  animation-delay: 1s;
}
.faq-container dl:nth-child(4) {
  animation-delay: 1.1s;
}
.faq-container dl:nth-child(5) {
  animation-delay: 1.2s;
}
.faq-container dl:nth-child(6) {
  animation-delay: 1.3s;
}
.faq-container dl:nth-child(7) {
  animation-delay: 1.4s;
}
.faq-container dl:nth-child(8) {
  animation-delay: 1.5s;
}
.faq-container dl:nth-child(9) {
  animation-delay: 1.6s;
}
.faq-container dl:nth-child(10) {
  animation-delay: 1.7s;
}
.faq-container dl:nth-child(11) {
  animation-delay: 1.8s;
}
.faq-container dl:nth-child(12) {
  animation-delay: 1.9s;
}
.faq-container dl:nth-child(13) {
  animation-delay: 2s;
}
.faq-container dl:nth-child(14) {
  animation-delay: 2.1s;
}
.faq-container dl:nth-child(15) {
  animation-delay: 2.2s;
}
.faq-container dl:nth-child(16) {
  animation-delay: 2.3s;
}
.faq-container dl:nth-child(17) {
  animation-delay: 2.4s;
}
.faq-container dl:nth-child(18) {
  animation-delay: 2.5s;
}
.faq-container dl:nth-child(19) {
  animation-delay: 2.6s;
}
.faq-container dl:nth-child(20) {
  animation-delay: 2.7s;
}

@keyframes faqPop {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  70% {
    opacity: 1;
    transform: translateY(-6px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/*page-recruitment
-----------------------------------------------------*/
.sec-recruitment {
  padding: 6rem 0 14rem 0;
}

.recruitment-box {
  background-color: #F1F4F7;
  border-radius: 20px;
  padding: 3rem 4rem;
  max-width: 460px;
  margin: 0 auto 6rem auto;
}
@media (max-width: 575px) {
  .recruitment-box {
    padding: 3rem 2rem;
  }
}
.recruitment-box ul {
  list-style: disc;
  padding: 0 0 0 3rem;
}
@media (max-width: 575px) {
  .recruitment-box ul {
    padding: 0 0 0 2rem;
  }
}
.recruitment-box ul li + li {
  margin-top: 0.5rem;
}
.recruitment-box ul li::marker {
  color: #005C9F;
}
.recruitment-table table {
  width: 100%;
}
.recruitment-table table tr {
  border-top: 1px solid #97BBD4;
}
.recruitment-table table tr:last-of-type {
  border-bottom: 1px solid #97BBD4;
}
.recruitment-table table th {
  color: #005C9F;
  width: 120px;
  padding: 2rem 1rem;
}
@media (max-width: 575px) {
  .recruitment-table table th {
    width: 100%;
    padding-bottom: 0;
  }
}
.recruitment-table table th,
.recruitment-table table td {
  text-align: left;
}
@media (max-width: 575px) {
  .recruitment-table table th,
  .recruitment-table table td {
    display: block;
  }
}
.recruitment-table table td {
  padding: 2rem 1rem;
}
@media (max-width: 575px) {
  .recruitment-table table td {
    padding-top: 1rem;
  }
}

.recruitment-box {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: faqPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.8s;
}

.recruitment-table {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: faqPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 1.1s;
}

/*page-interview
-----------------------------------------------------*/
/*interview*/
.sec-interview {
  padding: 6rem 0 14rem 0;
}

.interview-box {
  position: relative;
  margin: 12rem auto 0 auto;
}
.interview-box .inner {
  max-width: 600px;
  width: 100%;
  margin: auto;
}
.interview-box .inner .movie-box {
  width: 100%;
  border: 7px solid #000;
  box-sizing: border-box;
}
.interview-box .inner .movie-box iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  display: block;
}
.interview-box .inner .num {
  color: #DDEAF2;
  font-size: 20rem;
  position: absolute;
  line-height: 1;
  top: -14%;
  left: -1%;
  z-index: -1;
}
@media (max-width: 1023px) {
  .interview-box .inner .num {
    font-size: 16rem;
  }
}
@media (max-width: 767px) {
  .interview-box .inner .num {
    font-size: 12rem;
    top: -16%;
  }
}
@media (max-width: 575px) {
  .interview-box .inner .num {
    top: -23%;
  }
}
.interview-box .inner h3 {
  font-size: 2.4rem;
  color: #005C9F;
  font-weight: bold;
  margin-bottom: 2rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .interview-box .inner h3 {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .interview-box .inner h3 {
    font-size: 1.8rem;
  }
}
.interview-box .inner .voice-name {
  font-size: 2rem;
  letter-spacing: 2px;
  margin-top: 1rem;
  text-align: right;
  font-weight: bold;
}
.interview-box--even .num {
  left: auto !important;
  right: 0;
}
.interview .bg-circle::before {
  content: "";
  position: absolute;
  top: -10rem;
  width: 700px;
  height: 700px;
  background: url("../images/top/bg_circle.png") no-repeat center/contain;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  /*animation*/
  animation: floatingRotate 7s ease-in-out infinite;
  will-change: transform;
}
@keyframes floatingRotate {
  0% {
    transform: translateX(-50%) rotate(0deg);
  }
  100% {
    transform: translateX(-50%) rotate(360deg);
  }
}
@media (max-width: 767px) {
  .interview .bg-circle::before {
    top: -6rem;
    width: 600px;
    height: 600px;
  }
}
@media (max-width: 575px) {
  .interview .bg-circle::before {
    top: -6rem;
    width: 520px;
    height: 520px;
  }
}

/*page-message*/
.page-message {
  padding: 14rem 0;
}
.page-message-box {
  background-color: #FFF;
  border-radius: 8rem 0 8rem 0;
  padding: 6rem 10rem 30rem 10rem;
}
@media (max-width: 1199px) {
  .page-message-box {
    padding: 6rem 6rem 30rem 6rem;
  }
}
@media (max-width: 767px) {
  .page-message-box {
    padding: 6rem 2rem 30rem 2rem;
  }
}
@media (max-width: 575px) {
  .page-message-box {
    padding: 6rem 2rem 22rem 2rem;
  }
}
.page-message-box .flex {
  justify-content: space-between;
  gap: 3rem 7rem;
}
@media (max-width: 1199px) {
  .page-message-box .flex {
    gap: 3rem 4rem;
  }
}
@media (max-width: 1023px) {
  .page-message-box .flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.page-message-box .flex .text {
  width: 100%;
}
.page-message-box .flex .img {
  max-width: 360px;
  width: 100%;
  padding-top: 4.5rem;
  padding-right: 2rem;
}
@media (max-width: 1023px) {
  .page-message-box .flex .img {
    padding-top: 0;
  }
}
.page-message-box .flex .img .img-wrap {
  position: relative;
  display: inline-block;
}
.page-message-box .flex .img .img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(40deg, #E6BAC3 0%, #F4D292 33%, #B0D1BE 66%, #B6CCDE 100%);
  transform: translate(20px, 20px);
  z-index: 0;
  border-radius: 0 4rem 0 4rem;
}
.page-message-box .flex .img .img-wrap img {
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 0 4rem 0 4rem;
}
.page-message-box .flex .img .name {
  color: #FFF;
  font-size: 1.4rem;
  font-weight: bold;
  background-color: #000;
  border-radius: 15px 0 0 0;
  padding: 1rem 2rem;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.message-movie {
  text-align: center;
  margin-top: -25rem;
}
@media (max-width: 575px) {
  .message-movie {
    margin-top: -15rem;
  }
}
.message-movie .en {
  font-size: 4rem;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, #E6BAC3 0%, #F4D292 33%, #B0D1BE 66%, #B6CCDE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  line-height: 1;
}
@media (max-width: 767px) {
  .message-movie .en {
    font-size: 3rem;
  }
}
@media (max-width: 575px) {
  .message-movie .en {
    font-size: 2.4rem;
  }
}
.message-movie .inner {
  max-width: 600px;
  width: 100%;
  margin: auto;
}
@media (max-width: 1023px) {
  .message-movie .inner {
    padding: 0 2rem;
    box-sizing: border-box;
  }
}
.message-movie .movie-box {
  width: 100%;
  border: 7px solid #000;
  box-sizing: border-box;
}
.message-movie .movie-box iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  display: block;
}

.interview-box {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
}
.interview-box.is-show {
  animation: popUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.interview-box--fv.is-show {
  animation-delay: 1.2s;
}

.page-message-box--flex {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
.page-message-box--flex::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, #E6BAC3 0%, #F4D292 33%, #B0D1BE 66%, #B6CCDE 100%);
  transform: translateX(-100%);
}
.page-message-box--flex.is-show {
  animation: revealStep 0.45s ease forwards;
}
.page-message-box--flex.is-show::before {
  animation: slideColor 0.8s ease forwards;
}

.message-movie {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
}
.message-movie.is-show {
  animation: popUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/*entry
-----------------------------------------------------*/
.entry-form {
  margin-top: 5rem;
}
@media (max-width: 575px) {
  .entry-form {
    margin-top: 4rem;
  }
}
.entry-form .cf7-form {
  margin: 0 auto;
}
.entry-form .form-row {
  border-top: 1px solid #CECECE;
  padding: 1.8rem 0;
}
.entry-form .form-row:first-of-type {
  border-top: 0;
}
.entry-form .form-row label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .entry-form .form-row label {
    font-size: 1.6rem;
  }
}
.entry-form .form-row input[type=text],
.entry-form .form-row input[type=email],
.entry-form .form-row input[type=tel] {
  width: 100%;
  height: 46px;
  border: 1px solid #8B8B8B;
  padding: 0 1rem;
  box-sizing: border-box;
  background-color: #F7F7F7;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .entry-form .form-row input[type=text],
  .entry-form .form-row input[type=email],
  .entry-form .form-row input[type=tel] {
    font-size: 1.4rem;
  }
}
.entry-form .required,
.entry-form .optional {
  color: #fff;
  font-size: 1.2rem;
  padding: 0.2rem 0.6rem;
  font-weight: 500;
}
.entry-form .required {
  background: #E46A6C;
}
.entry-form .optional {
  background: #555;
}
.entry-form .form-submit {
  text-align: center;
  margin-top: 4rem;
}
@media (max-width: 575px) {
  .entry-form .form-submit {
    margin-top: 0;
  }
}
.entry-form .form-submit input {
  background: #09AED3;
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 2rem 8rem;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .entry-form .form-submit input {
    font-size: 1.6rem;
  }
}
.entry-form .radio-list .wpcf7-list-item {
  margin: 0 3rem 0 0;
}
.entry-form .radio-list label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .entry-form .radio-list label {
    font-size: 1.4rem;
  }
}
.entry-form .radio-list input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border: 1px solid #5E5E5E;
  border-radius: 50%;
  background: #fff;
  position: relative;
  margin: 0;
  cursor: pointer;
}
.entry-form .radio-list input[type=radio]:checked {
  border-color: #005C9F;
}
.entry-form .radio-list input[type=radio]:checked::before {
  content: "";
  position: absolute;
  inset: 5px;
  background: #005C9F;
  border-radius: 50%;
}
.entry-form .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.entry-form .wpcf7-acceptance label {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .entry-form .wpcf7-acceptance label {
    font-size: 1.4rem;
  }
}
.entry-form .wpcf7-acceptance input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 1px solid #5E5E5E;
  background: #fff;
  margin: 0;
  position: relative;
  cursor: pointer;
  border-radius: 2px;
}
.entry-form .wpcf7-acceptance input[type=checkbox]:checked {
  background: #005C9F;
  border-color: #005C9F;
}
.entry-form .wpcf7-acceptance input[type=checkbox]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}
.entry-form .privacy-text a {
  font-weight: bold;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0.5rem;
}
.entry-form .privacy-text a::after {
  content: "";
  background-image: url(../images/common/icon_newtab_b.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  display: block;
}/*# sourceMappingURL=style.css.map */