@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

*::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  line-height: 1;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

svg {
  width: 100%;
  height: auto;
  display: block;
}

:root {
  --baseColor: #fff;
  --mainColor: #2576d7;
  --subColor: #73b601;
  --accentColor: #ed5096;
  --highlight: #ecf5fe;
  --textColor: #3a475c;
  --container: 1340px;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--textColor);
  background: var(--baseColor);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 1360px) {
  body {
    font-size: 1.34vw;
  }
}

@media screen and (max-width: 800px) {
  body {
    font-size: max(2.8vw,1.5rem);
  }
}

a {
  color: inherit;
  text-decoration: none;
}

input, textarea, select, button {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: inherit;
  background: initial;
  border: initial;
  cursor: pointer;
}

*:focus-visible {
  outline: var(--accentColor) auto 4px;
  outline-offset: 4px;
}

/* Link Button */
.c-btn {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
  max-width: 16.67em;
  min-height: 3.34em;
  color: #fff;
  background: var(--mainColor);
  border-radius: 3em;
  padding: 0.25em 2em 0.25em 1.25em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.2s cubic-bezier(0, 0.5, 0.5, 1.5);
  transition: 0.2s cubic-bezier(0, 0.5, 0.5, 1.5);
  position: relative;
}

.c-btn:after {
  content: '';
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  margin: auto;
  width: 0.625em;
  height: 0.8125em;
  background: currentColor;
  -webkit-mask: url(../img/icons/arrow001.svg) no-repeat center/contain;
          mask: url(../img/icons/arrow001.svg) no-repeat center/contain;
  -webkit-transition: inherit;
  transition: inherit;
}

.c-btn.--typeA {
  color: #fff;
}

.c-btn.--typeA.--blue {
  background: #2576d7;
}

.c-btn.--typeA.--green {
  background: #73b601;
}

.c-btn.--typeA.--pink {
  background: #ed5096;
}

.c-btn.--typeA.--white {
  color: var(--mainColor);
  background: #fff;
}

.c-btn.--typeB {
  color: var(--textColor);
  background: #fff;
  border: 2px solid currentColor;
}

.c-btn.--typeB.--blue {
  border-color: #2576d7;
}

.c-btn.--typeB.--green {
  border-color: #73b601;
}

.c-btn.--typeB.--pink {
  border-color: #ed5096;
}

.c-btn.--fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: none;
  min-height: 2.5em;
}

.c-btn.--left {
  margin-left: 0;
  margin-right: auto;
}

.c-btn.--right {
  margin-left: auto;
  margin-right: 0;
}

.c-btn.--center {
  margin-left: auto;
  margin-right: auto;
}

.c-btn[target="_blank"]:after {
  width: 0.75em;
  height: 0.75em;
  -webkit-mask-image: url(../img/icons/blank.svg);
          mask-image: url(../img/icons/blank.svg);
}

.c-btn[target="_blank"]:hover:after {
  right: 1em;
}

.c-btn:hover {
  -webkit-filter: contrast(0.7) brightness(1.2);
          filter: contrast(0.7) brightness(1.2);
  -webkit-transform: scale(0.97);
          transform: scale(0.97);
}

.c-btn:hover:after {
  right: 0.5em;
}

@media screen and (max-width: 1360px) {
  .c-btn {
    font-size: 1.34vw;
  }
}

@media screen and (max-width: 800px) {
  .c-btn {
    font-size: 4vw;
    max-width: 25.6em;
  }
}

/* Block Link */
.c-blocklink a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Image Link */
.c-imglink.left {
  text-align: left;
}

.c-imglink.center {
  text-align: center;
}

.c-imglink.right {
  text-align: right;
}

.c-imglink img {
  display: inline;
}

:root {
  --c-flex-gap: 20px;
}

@media screen and (max-width: 1360px) {
  :root {
    --c-flex-gap: 1.5vw;
  }
}

@media screen and (max-width: 800px) {
  :root {
    --c-flex-gap: 4vw;
  }
}

.c-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-flex.gap {
  gap: var(--c-flex-gap);
}

.c-flex.gapLarge {
  gap: calc(var(--c-flex-gap) * 2);
}

.c-flex--2 > * {
  width: calc(100% / 2);
}

.c-flex--2.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(2 - 1))) / 2);
}

.c-flex--3 > * {
  width: calc(100% / 3);
}

.c-flex--3.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(3 - 1))) / 3);
}

.c-flex--4 > * {
  width: calc(100% / 4);
}

.c-flex--4.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(4 - 1))) / 4);
}

.c-flex--5 > * {
  width: calc(100% / 5);
}

.c-flex--5.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(5 - 1))) / 5);
}

.c-flex--6 > * {
  width: calc(100% / 6);
}

.c-flex--6.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(6 - 1))) / 6);
}

.c-flex.--end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.c-flex.--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-flex.--between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-flex.--alignEnd {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.c-flex.--alignCenter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-flex.--nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.c-flex.--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.c-flex.--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 800px) {
  .c-flex--2 > * {
    width: 100%;
  }
  .c-flex--2.gap > * {
    width: 100%;
  }
  .c-flex--3 > * {
    width: 100%;
  }
  .c-flex--3.gap > * {
    width: 100%;
  }
  .c-flex--4 > * {
    width: 100%;
  }
  .c-flex--4.gap > * {
    width: 100%;
  }
  .c-flex--5 > * {
    width: 100%;
  }
  .c-flex--5.gap > * {
    width: 100%;
  }
  .c-flex--6 > * {
    width: 100%;
  }
  .c-flex--6.gap > * {
    width: 100%;
  }
}

.c-heading {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  letter-spacing: -0.05em;
  position: relative;
}

.c-heading.--left {
  text-align: left;
}

.c-heading.--center {
  text-align: center;
}

.c-heading.--right {
  text-align: right;
}

.c-heading.--icon img {
  position: absolute;
  top: 0;
  width: 2em;
}

.c-heading.--icon.--left {
  padding-left: 2.5em;
}

.c-heading.--icon.--left img {
  left: 0;
}

.c-heading.--icon.--right {
  padding-right: 2.5em;
}

.c-heading.--icon.--right img {
  right: 0;
}

.c-heading .en {
  font-family: "Inter", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 0.5em;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 1em;
  color: var(--mainColor);
  display: block;
}

.c-heading .en.--green {
  color: #73b601;
}

.c-heading .en.--pink {
  color: #ed5096;
}

.c-heading .sub {
  font-size: 0.5em;
  margin-top: 0.5em;
  display: block;
}

@media screen and (max-width: 1360px) {
  .c-heading {
    font-size: 3vw;
  }
}

@media screen and (max-width: 800px) {
  .c-heading {
    font-size: 8vw;
  }
}

.c-heading2 {
  font-size: 3rem;
  font-weight: bold;
  padding-bottom: 0.5em;
  position: relative;
}

.c-heading2:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 3.1em;
  height: 0.134em;
  background: var(--mainColor);
  border-radius: 0.134em;
}

.c-heading2.--center {
  text-align: center;
}

.c-heading2.--left {
  text-align: left;
}

.c-heading2.--left:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.134em;
  background: #e8e8e8;
  border-radius: 0.134em;
}

.c-heading2.--left:after {
  right: auto;
}

.c-heading2.js-scroll {
  -webkit-transition: 0.5s ease 0.3s;
  transition: 0.5s ease 0.3s;
  opacity: 0;
  -webkit-transform: translateY(0.5em);
          transform: translateY(0.5em);
}

.c-heading2.js-scroll:after {
  -webkit-transition: 0.5s ease 0.5s;
  transition: 0.5s ease 0.5s;
  width: 0;
}

.c-heading2.is-scroll {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.c-heading2.is-scroll:after {
  width: 3.1em;
}

@media screen and (max-width: 1360px) {
  .c-heading2 {
    font-size: 2.24vw;
  }
}

@media screen and (max-width: 800px) {
  .c-heading2 {
    font-size: 5vw;
  }
}

.c-heading3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--mainColor);
}

.c-heading3.--large {
  font-size: 2.6rem;
}

@media screen and (max-width: 1360px) {
  .c-heading3 {
    font-size: 1.75vw;
  }
  .c-heading3.--large {
    font-size: 2vw;
  }
}

@media screen and (max-width: 800px) {
  .c-heading3 {
    font-size: 4vw;
  }
  .c-heading3.--large {
    font-size: 4.34vw;
  }
}

.c-ul01 > li {
  padding-left: 1em;
  position: relative;
}

.c-ul01 > li:before {
  content: '・';
  position: absolute;
  top: 0;
  left: 0;
}

.c-notes > li {
  padding-left: 1em;
  text-indent: -1em;
}

.c-ulArrow > li {
  padding-left: 1.25em;
  position: relative;
}

.c-ulArrow > li:before {
  content: '';
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 0.612em;
  aspect-ratio: 1 / 1.091;
  background: currentColor;
  -webkit-mask: url(../img/icons/arrow003.svg) no-repeat center/contain;
          mask: url(../img/icons/arrow003.svg) no-repeat center/contain;
}

.c-ulCheck > li {
  padding-left: 1.75em;
  position: relative;
}

.c-ulCheck > li:before {
  content: '';
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 1.2em;
  aspect-ratio: 1 / 1;
  background: var(--mainColor);
  -webkit-mask: url(../img/icons/check.svg) no-repeat center/contain;
          mask: url(../img/icons/check.svg) no-repeat center/contain;
}

.c-table01 {
  width: 100%;
  border-collapse: collapse;
}

.c-table01 th, .c-table01 td {
  text-align: left;
  padding: 0.65em 1em;
}

.c-table01 th {
  font-weight: bold;
  white-space: nowrap;
  padding: 0.65em 1em 0.65em 2em;
}

.c-table01 tr + tr th, .c-table01 tr + tr td {
  border-top: 1px solid #bfd1e2;
}

@media screen and (max-width: 800px) {
  .c-table01 th {
    padding: 0.65em 1em;
  }
}

.c-imgDec {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 40px;
  position: relative;
  z-index: 1;
}

.c-imgDec img {
  border-radius: inherit;
}

.c-imgDec:before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: inherit;
  background: -webkit-gradient(linear, left top, right top, color-stop(12%, #f59aa1), color-stop(39%, #fac241), color-stop(57%, #b4dc61), color-stop(78%, #a0d1ff)) border-box border-box;
  background: linear-gradient(90deg, #f59aa1 12%, #fac241 39%, #b4dc61 57%, #a0d1ff 78%) border-box border-box;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) padding-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
          mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) padding-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) border-box;
          mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.c-imgDec.--reverse:before {
  right: auto;
  left: -20px;
}

@media screen and (max-width: 1360px) {
  .c-imgDec {
    border-radius: 3vw;
  }
  .c-imgDec:before {
    top: -1.5vw;
    right: -1.5vw;
  }
  .c-imgDec.--reverse:before {
    left: -1.5vw;
  }
}

@media screen and (max-width: 800px) {
  .c-imgDec {
    border-radius: 8vw;
  }
  .c-imgDec:before {
    top: -4vw;
    right: -4vw;
  }
  .c-imgDec.--reverse:before {
    left: -4vw;
  }
}

.c-layout01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.c-layout01.--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.c-layout01.--reverse .content {
  border-radius: 40px 40px 40px 0;
  text-align: right;
}

.c-layout01 .c-heading .en {
  margin-bottom: 0.5em;
}

.c-layout01 .content {
  width: 47.8%;
  min-height: 360px;
  background: var(--highlight);
  border-radius: 40px 40px 0 40px;
  padding: 2em 3.5em 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-layout01 .content p {
  font-size: 1.8rem;
  font-weight: bold;
}

.c-layout01 .content .c-btn {
  margin-top: auto;
}

.c-layout01 .img {
  position: relative;
  top: 40px;
}

@media screen and (max-width: 1360px) {
  .c-layout01 {
    gap: 1.5vw;
  }
  .c-layout01.--reverse .content {
    border-radius: 3vw 3vw 3vw 0;
  }
  .c-layout01 .content {
    min-height: 2.7vw;
    border-radius: 3vw 3vw 0 3vw;
  }
  .c-layout01 .content p {
    font-size: 1.34vw;
  }
  .c-layout01 .img {
    top: 3vw;
  }
}

@media screen and (max-width: 800px) {
  .c-layout01 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6vw;
  }
  .c-layout01.--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-layout01.--reverse .content {
    border-radius: 8vw 8vw 8vw 0;
  }
  .c-layout01 .content {
    width: 100%;
    min-height: none;
    padding: 1em 2em 1.5em;
    border-radius: 8vw 8vw 0 8vw;
  }
  .c-layout01 .content p {
    font-size: 4vw;
  }
  .c-layout01 .content .c-btn {
    margin-top: 1em;
  }
}

.c-video {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.c-video video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-video .playWrapper {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.c-video .playWrapper.is-play {
  opacity: 0;
  pointer-events: none;
}

.c-video .playWrapper.is-play .playIcon {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.c-video .playWrapper:hover .playIcon, .c-video .playWrapper:focus-visible .playIcon {
  opacity: 0.75;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  background: linear-gradient(135deg, #ffbca2, #fd90a8);
}

.c-video .playIcon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 8%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #93e0fd, #61b5ff);
  -webkit-mask: url(../img/icons/play.svg) no-repeat center/contain;
          mask: url(../img/icons/play.svg) no-repeat center/contain;
  -webkit-filter: drop-shadow(0 0 4px #fff) drop-shadow(0 0 4px #fff) drop-shadow(0 0 4px #fff);
          filter: drop-shadow(0 0 4px #fff) drop-shadow(0 0 4px #fff) drop-shadow(0 0 4px #fff);
  border-radius: 50%;
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 1360px) {
  .c-video {
    border-radius: 1.5vw;
  }
}

@media screen and (max-width: 800px) {
  .c-video .playIcon {
    width: 16%;
  }
}

.c-signature {
  font-weight: bold;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.c-signature .position {
  margin-right: 1em;
  display: inline-block;
  vertical-align: middle;
}

.c-signature .name {
  font-size: 187.5%;
  display: inline-block;
  vertical-align: middle;
}

.c-article + .c-article {
  margin-top: 75px;
}

.c-article h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--mainColor);
}

.c-article h3 {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.2;
}

.c-article p {
  line-height: 1.9;
  letter-spacing: -0.05em;
}

@media screen and (max-width: 1360px) {
  .c-article + .c-article {
    margin-top: 5.6vw;
  }
  .c-article h2 {
    font-size: 1.5vw;
  }
  .c-article h3 {
    font-size: 1.94vw;
  }
}

@media screen and (max-width: 800px) {
  .c-article + .c-article {
    margin-top: 12.5vw;
  }
  .c-article h2 {
    font-size: 4vw;
  }
  .c-article h3 {
    font-size: 4.34vw;
  }
}

.c-breadcrumbs {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  padding: 1.45em 3em;
  font-size: 1.3rem;
  font-weight: bold;
}

.c-breadcrumbs > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-breadcrumbs > ul > li .home {
  width: 1.3em;
  height: 1.3em;
  background: var(--mainColor);
  -webkit-mask: url(../img/icons/home.svg) no-repeat center/contain;
          mask: url(../img/icons/home.svg) no-repeat center/contain;
  display: inline-block;
}

.c-breadcrumbs > ul > li + li {
  margin-left: 3em;
  position: relative;
}

.c-breadcrumbs > ul > li + li:before {
  content: '＞';
  position: absolute;
  top: 0;
  left: -2em;
}

@media screen and (max-width: 1360px) {
  .c-breadcrumbs {
    font-size: 1vw;
  }
}

@media screen and (max-width: 800px) {
  .c-breadcrumbs {
    font-size: 3vw;
    padding: 1em 1.5em;
  }
}

.c-frame {
  background: var(--highlight);
  border-radius: 20px;
}

@media screen and (max-width: 1360px) {
  .c-frame {
    border-radius: 1.5vw;
  }
}

.c-graph {
  position: relative;
  margin-left: 2.5em;
}

.c-graphGroup {
  position: relative;
}

.c-graphGroup .graphTitle {
  font-size: 2rem;
  font-weight: bold;
}

.c-graphGroup .legend {
  position: absolute;
  top: 0.5em;
  right: 1.5em;
}

.c-graphGroup .legend ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5em;
}

.c-graphGroup .legend ul > li {
  line-height: 1;
  padding-left: 1.5em;
  position: relative;
}

.c-graphGroup .legend ul > li:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  background: var(--mainColor);
  border-radius: 50%;
}

.c-graphGroup .legend ul > li.blue:before {
  background: #3687ed;
}

.c-graphGroup .legend ul > li.red:before {
  background: #fd567b;
}

.c-graph .vertical {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 2em;
}

.c-graph .vertical > * {
  height: 40px;
  position: relative;
}

.c-graph .vertical > * .val {
  position: absolute;
  top: -0.5em;
  left: -2em;
  text-align: right;
  line-height: 1;
  display: block;
  width: 1em;
}

.c-graph .vertical > *.unit .val {
  top: 0;
  left: -2.75em;
  font-size: 1.6rem;
}

.c-graph .vertical > *:not(.unit) {
  border-top: 2px dashed #e8e8e8;
}

.c-graph .vertical > *:not(.unit) .val {
  font-size: 1.8rem;
}

.c-graph .vertical > *:last-child {
  height: 0;
  border-style: solid;
}

.c-graph .horizontal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 60px;
}

.c-graph .horizontal > * {
  width: 80px;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.c-graph .horizontal .name {
  position: absolute;
  top: calc(100% + 0.25em);
  left: 0;
  right: 0;
  margin: auto;
  font-size: 1.8rem;
  text-align: center;
}

.c-graph .horizontal .data {
  width: 100%;
  height: 0%;
  background: var(--mainColor);
}

.c-graph .horizontal .data:last-child {
  border-radius: 8px 8px 0 0;
}

.c-graph .horizontal .data.--d1 {
  background: #3687ed;
}

.c-graph .horizontal .data.--d2 {
  background: #fd567b;
}

.c-graph.js-scroll .horizontal > * {
  -webkit-transition: 0.8s ease 0.6s;
  transition: 0.8s ease 0.6s;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
}

.c-graph.is-scroll .horizontal > * {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

@media screen and (max-width: 1360px) {
  .c-graphGroup .graphTitle {
    font-size: 1.5vw;
  }
  .c-graph .vertical > * {
    height: 3vw;
  }
  .c-graph .vertical > *.unit .val {
    font-size: 1.04vw;
  }
  .c-graph .vertical > *:not(.unit) .val {
    font-size: 1.34vw;
  }
  .c-graph .horizontal {
    padding: 0 4.5vw;
  }
  .c-graph .horizontal > * {
    width: 6vw;
  }
  .c-graph .horizontal .name {
    font-size: 1.34vw;
  }
  .c-graph .horizontal .data:last-child {
    border-radius: 0.5vw 0.5vw 0 0;
  }
}

@media screen and (max-width: 800px) {
  .c-graphGroup .graphTitle {
    font-size: 3.34vw;
  }
  .c-graph .vertical > * {
    height: 6.67vw;
  }
  .c-graph .vertical > *.unit .val {
    font-size: 2.8vw;
  }
  .c-graph .vertical > *:not(.unit) .val {
    font-size: 3vw;
  }
  .c-graph .horizontal {
    padding: 0 7.5vw;
  }
  .c-graph .horizontal > * {
    width: 10vw;
  }
  .c-graph .horizontal .name {
    font-size: 3vw;
  }
  .c-graph .horizontal .data:last-child {
    border-radius: 1.34vw 1.34vw 0 0;
  }
}

.c-empData {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3em;
  height: 100%;
}

.c-empData .icon {
  width: 80px;
}

.c-empData .txt {
  width: calc(100% - 80px - 3em);
}

.c-empData .title {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
}

.c-empData .point {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.125em;
  color: var(--mainColor);
}

.c-empData .point .val {
  font-family: "Inter", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 200%;
}

@media screen and (max-width: 1360px) {
  .c-empData {
    gap: 1em;
  }
  .c-empData .icon {
    width: 6vw;
  }
  .c-empData .txt {
    width: calc(100% - 6vw - 1em);
  }
  .c-empData .title {
    font-size: 1.34vw;
  }
  .c-empData .point {
    font-size: 2.24vw;
  }
}

@media screen and (max-width: 800px) {
  .c-empData {
    gap: 2vw;
  }
  .c-empData .icon {
    width: 10vw;
  }
  .c-empData .txt {
    width: calc(100% - 12vw);
  }
  .c-empData .title {
    font-size: 3vw;
  }
  .c-empData .point {
    font-size: 3.5vw;
  }
}

.c-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}

.c-steps > .step {
  position: relative;
}

.c-steps > .step:not(:last-child):after {
  content: '';
  position: absolute;
  top: 0;
  left: calc(100% + 7px);
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: 12px solid transparent;
  border-left: 19px solid #74787e;
  border-right: 0;
}

@media screen and (max-width: 1360px) {
  .c-steps {
    gap: 2.4vw;
  }
  .c-steps > .step:not(:last-child):after {
    left: calc(100% + 0.5vw);
    border-width: 0.9vw;
    border-left-width: 1.42vw;
    border-right: 0;
  }
}

@media screen and (max-width: 800px) {
  .c-steps {
    gap: 10vw;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .c-steps > .step:not(:last-child):after {
    top: calc(100% + 3.415vw);
    left: 0;
    right: 0;
    bottom: auto;
    border: 2vw solid transparent;
    border-top: 3.17vw solid #74787e;
    border-bottom: 0;
  }
}

.c-faq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2em;
}

.c-faq_item .question {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  color: var(--mainColor);
  background: var(--highlight);
  border-radius: 0.5em;
  padding: 0.75em 3em 0.75em 80px;
  cursor: pointer;
  position: relative;
}

.c-faq_item .question:before, .c-faq_item .question:after {
  content: '';
  position: absolute;
  top: 0;
  right: 1.5em;
  bottom: 0;
  margin: auto;
  width: 0.8em;
  height: 0.1em;
  background: var(--mainColor);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-faq_item .question:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.c-faq_item .question i.q {
  position: absolute;
  top: 0.4em;
  left: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--mainColor);
}

.c-faq_item .question i.q:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 35%;
  aspect-ratio: 1 / 1.357;
  background: #fff;
  -webkit-mask: url(../img/icons/q.svg) no-repeat center/contain;
          mask: url(../img/icons/q.svg) no-repeat center/contain;
}

.c-faq_item .answer {
  line-height: 1.75;
  padding: 1.5em 4em 2em 80px;
  position: relative;
}

.c-faq_item .answer i.a {
  position: absolute;
  top: 2em;
  left: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--highlight);
}

.c-faq_item .answer i.a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 35%;
  aspect-ratio: 1 / 1.357;
  background: var(--mainColor);
  -webkit-mask: url(../img/icons/a.svg) no-repeat center/contain;
          mask: url(../img/icons/a.svg) no-repeat center/contain;
}

.c-faq_item.is-open .question {
  border-radius: 0.5em 0.5em 0 0;
}

.c-faq_item.is-open .question:before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.c-faq_item.is-open .question:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media screen and (max-width: 1360px) {
  .c-faq_item .question {
    font-size: 1.5vw;
    padding-left: 6vw;
  }
  .c-faq_item .question i.q {
    left: 1.5vw;
    width: 3vw;
    height: 3vw;
  }
  .c-faq_item .answer {
    padding-left: 6vw;
  }
  .c-faq_item .answer i.a {
    left: 1.5vw;
    width: 3vw;
    height: 3vw;
  }
}

@media screen and (max-width: 800px) {
  .c-faq_item .question {
    font-size: 4vw;
    padding-left: 13.34vw;
  }
  .c-faq_item .question i.q {
    left: 3vw;
    width: 6.67vw;
    height: 6.67vw;
  }
  .c-faq_item .answer {
    padding-left: 13.34vw;
    padding-right: 1em;
  }
  .c-faq_item .answer i.a {
    left: 3vw;
    width: 6.67vw;
    height: 6.67vw;
  }
}

.u-tal {
  text-align: left !important;
}

.u-tac {
  text-align: center !important;
}

.u-tar {
  text-align: right !important;
}

.u-imgLeft {
  margin-left: 0;
  margin-right: auto;
}

.u-imgCenter {
  margin-left: auto;
  margin-right: auto;
}

.u-imgRight {
  margin-left: auto;
  margin-right: 0;
}

.u-ls10 {
  letter-spacing: 0.01em;
}

.u-ls25 {
  letter-spacing: 0.025em;
}

.u-ls50 {
  letter-spacing: 0.05em;
}

.u-ls100 {
  letter-spacing: 0.1em;
}

.u-lsn10 {
  letter-spacing: -0.01em;
}

.u-lsn25 {
  letter-spacing: -0.025em;
}

.u-lsn50 {
  letter-spacing: -0.05em;
}

.u-lsn100 {
  letter-spacing: -0.1em;
}

.u-lh10 {
  line-height: 1;
}

.u-lh13 {
  line-height: 1.3;
}

.u-lh15 {
  line-height: 1.5;
}

.u-lh17 {
  line-height: 1.7;
}

.u-lh20 {
  line-height: 2;
}

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

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

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

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

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

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

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

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

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

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

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

@media screen and (min-width: 801px) and (max-width: 1360px) {
  .font-10 {
    font-size: 0.83333vw !important;
  }
  .font-12 {
    font-size: 1vw !important;
  }
  .font-14 {
    font-size: 1.16667vw !important;
  }
  .font-16 {
    font-size: 1.33333vw !important;
  }
  .font-18 {
    font-size: 1.5vw !important;
  }
  .font-20 {
    font-size: 1.66667vw !important;
  }
  .font-22 {
    font-size: 1.83333vw !important;
  }
  .font-24 {
    font-size: 2vw !important;
  }
  .font-26 {
    font-size: 2.16667vw !important;
  }
  .font-28 {
    font-size: 2.33333vw !important;
  }
  .font-30 {
    font-size: 2.5vw !important;
  }
}

@media screen and (max-width: 800px) {
  .font-10 {
    font-size: max(2vw * 5 / 800 * 100 * ((24 - 5) * 0.1),1.5rem) !important;
  }
  .font-12 {
    font-size: max(2vw * 6 / 800 * 100 * ((24 - 6) * 0.1),1.5rem) !important;
  }
  .font-14 {
    font-size: max(2vw * 7 / 800 * 100 * ((24 - 7) * 0.1),1.5rem) !important;
  }
  .font-16 {
    font-size: max(2vw * 8 / 800 * 100 * ((24 - 8) * 0.1),1.5rem) !important;
  }
  .font-18 {
    font-size: max(2vw * 9 / 800 * 100 * ((24 - 9) * 0.1),1.5rem) !important;
  }
  .font-20 {
    font-size: max(2vw * 10 / 800 * 100 * ((24 - 10) * 0.1),1.5rem) !important;
  }
  .font-22 {
    font-size: max(2vw * 11 / 800 * 100 * ((24 - 11) * 0.1),1.5rem) !important;
  }
  .font-24 {
    font-size: max(2vw * 12 / 800 * 100 * ((24 - 12) * 0.1),1.5rem) !important;
  }
  .font-26 {
    font-size: max(2vw * 13 / 800 * 100 * ((24 - 13) * 0.1),1.5rem) !important;
  }
  .font-28 {
    font-size: max(2vw * 14 / 800 * 100 * ((24 - 14) * 0.1),1.5rem) !important;
  }
  .font-30 {
    font-size: max(2vw * 15 / 800 * 100 * ((24 - 15) * 0.1),1.5rem) !important;
  }
}

.font-inter {
  font-family: "Inter", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.font-maru {
  font-family: "Zen Maru Gothic", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.u-bg {
  background: #fffc01;
  padding: 0 0.2em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.u-marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #F4DF42));
  background: linear-gradient(transparent 50%, #F4DF42 50%);
  padding-bottom: 0.3em;
}

.u-bold {
  font-weight: bold;
}

.u-mainColor {
  color: var(--mainColor);
}

.u-subcolor {
  color: var(--subColor);
}

.u-yellow {
  color: #facc15;
}

.u-emp {
  color: #BD0010;
}

.u-link {
  color: var(--mainColor);
  text-decoration: underline;
}

.u-link:hover {
  text-decoration: none;
}

.u-radius {
  border-radius: 40px;
}

@media screen and (max-width: 1360px) {
  .u-radius {
    border-radius: 3vw;
  }
}

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

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

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

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

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

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

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

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

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

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

i.icon {
  display: inline-block;
  width: 0.9em;
  aspect-ratio: 1 / 1;
  background: currentColor;
}

i.i-blank {
  -webkit-mask: url(../img/icons/blank.svg) no-repeat center/contain;
          mask: url(../img/icons/blank.svg) no-repeat center/contain;
}

main {
  position: relative;
}

.js-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 9999;
  background: #fff;
}

.js-loading .logo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 250px;
  max-width: 40vw;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.js-loading.is-loaded {
  -webkit-transition: 0.5s ease 0.3s;
  transition: 0.5s ease 0.3s;
  opacity: 0;
  pointer-events: none;
}

.parallaxWrapper {
  overflow: hidden;
  position: relative;
}

.parallax {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
  z-index: -1;
}

.parallax .bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

@media screen and (max-width: 800px) {
  .parallax {
    background-size: auto 100vh;
  }
}

.js-parallaxBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.js-parallaxBg img {
  width: 100%;
  max-width: none;
}

.js-parallaxBg > * {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  max-width: none;
}

.js-parallaxBg > *.bg1 {
  top: 200%;
}

.js-parallaxBg > *.bg2 {
  top: 150%;
}

.p-kv {
  overflow: hidden;
  position: relative;
}

.p-kv img {
  width: 100%;
  max-width: none;
}

.p-kv > * {
  position: absolute;
  z-index: 1;
}

.p-kv .balls {
  width: 24.07%;
  padding-top: 41.1%;
}

.p-kv .balls > span {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  position: absolute;
  -webkit-animation: kvBall 4s ease-in-out 0s infinite alternate forwards running;
          animation: kvBall 4s ease-in-out 0s infinite alternate forwards running;
}

@-webkit-keyframes kvBall {
  0% {
    -webkit-transform: translateY(0.5vw);
            transform: translateY(0.5vw);
  }
  100% {
    -webkit-transform: translateY(-0.5vw);
            transform: translateY(-0.5vw);
  }
}

@keyframes kvBall {
  0% {
    -webkit-transform: translateY(0.5vw);
            transform: translateY(0.5vw);
  }
  100% {
    -webkit-transform: translateY(-0.5vw);
            transform: translateY(-0.5vw);
  }
}

.p-kv .balls > span.--yellow {
  background: linear-gradient(135deg, #ffdc38, #fec03c);
}

.p-kv .balls > span.--green {
  background: linear-gradient(135deg, #cce981, #a6d44c);
}

.p-kv .balls > span.--red {
  background: linear-gradient(135deg, #ffbca2, #fd90a8);
}

.p-kv .balls > span.--blue {
  background: linear-gradient(135deg, #8ee3fc, #84c1ff);
}

.p-kv .balls .ball1 {
  top: 13%;
  left: 0%;
  width: 2.76%;
}

.p-kv .balls .ball2 {
  top: 2%;
  left: 25%;
  width: 8.28%;
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}

.p-kv .balls .ball3 {
  top: 4%;
  left: 52%;
  width: 14.935%;
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
}

.p-kv .balls .ball4 {
  top: 0%;
  left: 81%;
  width: 2.76%;
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
}

.p-kv .balls .ball5 {
  top: 13%;
  left: 92%;
  width: 8.28%;
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
}

.p-kv .balls .ball6 {
  top: 90%;
  left: 24%;
  width: 2.76%;
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
}

.p-kv .balls .ball7 {
  top: 97%;
  left: 71%;
  width: 5.52%;
  -webkit-animation-delay: -6s;
          animation-delay: -6s;
}

.p-kv .frame {
  left: 0%;
  bottom: 0%;
  width: 100%;
}

.p-kv .motionStop {
  font-size: 0.9375vw;
  font-weight: bold;
  color: #fff;
  width: 12.5em;
  padding: 0 3em 0 0;
}

.p-kv .motionStop.is-stop i:after {
  -webkit-mask-image: url(../img/icons/player-play.svg);
          mask-image: url(../img/icons/player-play.svg);
}

.p-kv .motionStop i {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 1.953125vw;
  height: 1.953125vw;
  border: 1px solid #fff;
  border-radius: 50%;
  display: block;
}

.p-kv .motionStop i:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  background: #fff;
  -webkit-mask: url(../img/icons/player-pause.svg) no-repeat center/60%;
          mask: url(../img/icons/player-pause.svg) no-repeat center/60%;
}

.p-kv_slider {
  top: 0%;
  left: 0%;
  width: 100%;
}

.p-kv_slider .swiper-slide-active img, .p-kv_slider .swiper-slide-prev img, .p-kv_slider .swiper-slide-duplicate-active img {
  -webkit-animation: kvImg 6s linear 0s 1 normal forwards running;
          animation: kvImg 6s linear 0s 1 normal forwards running;
}

@-webkit-keyframes kvImg {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
  }
}

@keyframes kvImg {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
  }
}

.p-kv.--top {
  aspect-ratio: 1 / 0.522;
}

.p-kv.--top .balls {
  top: 4%;
  left: 6.1%;
}

.p-kv.--top .txt {
  top: 47%;
  left: 5%;
  width: 21em;
  font-size: 1.07vw;
  font-weight: bold;
  line-height: 1.9;
  letter-spacing: 0.07em;
  color: #fff;
}

.p-kv.--top .catch1 {
  top: 24%;
  left: 4.2%;
  width: 8em;
  font-family: "Zen Maru Gothic", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 3.2vw;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #fff;
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
}

.p-kv.--top .catch2 {
  top: 74%;
  left: 4.4%;
  width: 21.2%;
}

.p-kv.--top .motionStop {
  top: 66.5%;
  left: 4.5%;
}

.p-kv.--top.js-scroll .balls {
  -webkit-transition: 1.5s cubic-bezier(0.33, 0.2, 0.33, 1) 0.3s;
  transition: 1.5s cubic-bezier(0.33, 0.2, 0.33, 1) 0.3s;
  opacity: 0;
  -webkit-transform: scale(0.75);
          transform: scale(0.75);
}

.p-kv.--top.js-scroll .frame {
  -webkit-transition: 1.5s ease 0.3s;
  transition: 1.5s ease 0.3s;
  -webkit-mask: -webkit-gradient(linear, left top, right top, color-stop(45%, #000), color-stop(55%, transparent)) no-repeat 100% 0/250% 100%;
  -webkit-mask: linear-gradient(90deg, #000 45%, transparent 55%) no-repeat 100% 0/250% 100%;
          mask: -webkit-gradient(linear, left top, right top, color-stop(45%, #000), color-stop(55%, transparent)) no-repeat 100% 0/250% 100%;
          mask: linear-gradient(90deg, #000 45%, transparent 55%) no-repeat 100% 0/250% 100%;
}

.p-kv.--top.js-scroll .catch1 {
  -webkit-transition: 1s ease 0.6s;
  transition: 1s ease 0.6s;
  opacity: 0;
}

.p-kv.--top.js-scroll .catch1 > * {
  -webkit-transition: 1s ease 0.9s;
  transition: 1s ease 0.9s;
  opacity: 0;
}

.p-kv.--top.js-scroll .txt {
  -webkit-transition: 1s cubic-bezier(0.5, 1.2, 0.5, 1) 1.2s;
  transition: 1s cubic-bezier(0.5, 1.2, 0.5, 1) 1.2s;
  opacity: 0;
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
}

.p-kv.--top.js-scroll .catch2 {
  -webkit-transition: 1s cubic-bezier(0.5, 1.2, 0.5, 1) 1.4s;
  transition: 1s cubic-bezier(0.5, 1.2, 0.5, 1) 1.4s;
  opacity: 0;
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
}

.p-kv.--top.js-scroll .motionStop {
  -webkit-transition: 1s ease 1.6s;
  transition: 1s ease 1.6s;
  opacity: 0;
  -webkit-transform: translateX(-10%);
          transform: translateX(-10%);
}

.p-kv.--top.js-scroll .swiper:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #302a30;
  -webkit-transition: 1s ease 2s;
  transition: 1s ease 2s;
  z-index: 2;
}

.p-kv.--top.is-scroll .frame {
  -webkit-mask-position: 0% 0%;
          mask-position: 0% 0%;
}

.p-kv.--top.is-scroll .catch1 {
  opacity: 1;
}

.p-kv.--top.is-scroll .catch1 > * {
  opacity: 1;
}

.p-kv.--top.is-scroll .balls, .p-kv.--top.is-scroll .txt, .p-kv.--top.is-scroll .catch2, .p-kv.--top.is-scroll .motionStop {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.p-kv.--top.is-scroll .swiper:after {
  opacity: 0;
}

.p-kv.--page {
  background: #f2f8fe;
  aspect-ratio: 1 / 0.386;
}

.p-kv.--page .img {
  top: 7%;
  right: 2.6%;
  width: 52%;
  border-radius: 13.34vw;
}

.p-kv.--page .img:before {
  content: '';
  position: absolute;
  top: -1.34vw;
  left: -1.34vw;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: inherit;
  background: -webkit-gradient(linear, left top, right top, color-stop(12%, #f59aa1), color-stop(39%, #fac241), color-stop(57%, #b4dc61), color-stop(78%, #a0d1ff)) border-box border-box;
  background: linear-gradient(90deg, #f59aa1 12%, #fac241 39%, #b4dc61 57%, #a0d1ff 78%) border-box border-box;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) padding-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
          mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) padding-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) border-box;
          mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.p-kv.--page .img img {
  border-radius: inherit;
}

.p-kv.--page .frame {
  left: 0;
  bottom: 0;
}

.p-kv.--page .balls {
  top: 9.6%;
  left: 6.1%;
  padding-top: 27.7%;
}

.p-kv.--page .balls .ball3 {
  width: 16.62%;
}

.p-kv.--page .balls .ball7 {
  width: 8.31%;
}

.p-kv.--page .catch {
  top: 5.8%;
  right: 51.6%;
  width: 11.34%;
}

.p-kv.--page .title {
  top: 24.5%;
  left: 9.2%;
  font-size: 3.34vw;
  font-weight: bold;
  letter-spacing: -0.05em;
}

.p-kv.--page .title .en {
  font-family: "Inter", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 40%;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--mainColor);
  display: block;
}

.p-kv.--page .txt {
  top: 48%;
  left: 9.3%;
  font-size: 1.74vw;
  font-weight: bold;
  line-height: 1.3;
}

.p-kv.--page .c-signature {
  top: 64%;
  left: 9.3%;
}

.p-kv.--page .motionStop {
  top: 75%;
  left: 9%;
  color: var(--mainColor);
}

.p-kv.--page .motionStop i {
  border-color: var(--mainColor);
}

.p-kv.--page .motionStop i:after {
  background: var(--mainColor);
}

.p-kv.--page.--data .txt {
  font-size: 1.2vw;
  line-height: 1.7;
}

.p-kv.--page.--data .catch {
  width: 14.94%;
}

.p-kv.--page.--jobs .txt {
  font-size: 1.2vw;
  line-height: 1.7;
}

.p-kv.--page.--jobs .catch {
  width: 13.6%;
}

.p-kv.--page.--people .catch {
  width: 12.06vw;
}

.p-kv.--page.--people .txt {
  font-size: 1.2vw;
}

.p-kv.--page.--benefits .catch {
  width: 13.867vw;
}

.p-kv.--page.--benefits .txt {
  top: 60%;
  font-size: 1.2vw;
}

.p-kv.--page.--benefits .motionStop {
  top: 70%;
}

.p-kv.--page.--faq .catch {
  width: 13.32vw;
}

.p-kv.--page.--faq .txt {
  top: 48%;
  font-size: 1.2vw;
}

.p-kv.--page.--faq .motionStop {
  top: 60%;
}

.p-kv.--page.js-scroll .balls {
  -webkit-transition: 1.5s cubic-bezier(0.33, 0.2, 0.33, 1) 0.3s;
  transition: 1.5s cubic-bezier(0.33, 0.2, 0.33, 1) 0.3s;
  opacity: 0;
  -webkit-transform: scale(0.75);
          transform: scale(0.75);
}

.p-kv.--page.js-scroll .frame {
  -webkit-transition: 1.5s ease 0.3s;
  transition: 1.5s ease 0.3s;
  -webkit-mask: -webkit-gradient(linear, left top, right top, color-stop(45%, #000), color-stop(55%, transparent)) no-repeat 100% 0/250% 100%;
  -webkit-mask: linear-gradient(90deg, #000 45%, transparent 55%) no-repeat 100% 0/250% 100%;
          mask: -webkit-gradient(linear, left top, right top, color-stop(45%, #000), color-stop(55%, transparent)) no-repeat 100% 0/250% 100%;
          mask: linear-gradient(90deg, #000 45%, transparent 55%) no-repeat 100% 0/250% 100%;
}

.p-kv.--page.js-scroll .catch {
  -webkit-transition: 1s ease 0.6s;
  transition: 1s ease 0.6s;
  opacity: 0;
}

.p-kv.--page.js-scroll .catch > * {
  -webkit-transition: 1s ease 0.9s;
  transition: 1s ease 0.9s;
  opacity: 0;
}

.p-kv.--page.js-scroll .title, .p-kv.--page.js-scroll .txt, .p-kv.--page.js-scroll .c-signature {
  -webkit-transition: 1s cubic-bezier(0.5, 1.2, 0.5, 1) 0.6s;
  transition: 1s cubic-bezier(0.5, 1.2, 0.5, 1) 0.6s;
  opacity: 0;
  -webkit-transform: translateX(-2vw);
          transform: translateX(-2vw);
}

.p-kv.--page.js-scroll .catch {
  -webkit-transition: 1s cubic-bezier(0.5, 1.2, 0.5, 1) 1s;
  transition: 1s cubic-bezier(0.5, 1.2, 0.5, 1) 1s;
  opacity: 0;
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
}

.p-kv.--page.js-scroll .motionStop {
  -webkit-transition: 1s ease 1s;
  transition: 1s ease 1s;
  opacity: 0;
  -webkit-transform: translateX(-10%);
          transform: translateX(-10%);
}

.p-kv.--page.js-scroll .img {
  -webkit-transition: 1s ease 0.3s;
  transition: 1s ease 0.3s;
  opacity: 0;
  -webkit-transform: translateX(2vw);
          transform: translateX(2vw);
}

.p-kv.--page.is-scroll .frame {
  -webkit-mask-position: 0% 0%;
          mask-position: 0% 0%;
}

.p-kv.--page.is-scroll .catch {
  opacity: 1;
}

.p-kv.--page.is-scroll .catch > * {
  opacity: 1;
}

.p-kv.--page.is-scroll .balls, .p-kv.--page.is-scroll .title, .p-kv.--page.is-scroll .txt, .p-kv.--page.is-scroll .c-signature, .p-kv.--page.is-scroll .catch, .p-kv.--page.is-scroll .motionStop {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.p-kv.--page.is-scroll .img {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.p-kv.--voice {
  aspect-ratio: 1 / 0.386;
}

.p-kv.--voice .img {
  top: 0%;
  right: 0%;
  width: 71.67%;
  border-radius: 13.34vw 0 0 13.34vw;
}

.p-kv.--voice .img img {
  border-radius: inherit;
}

.p-kv.--voice .balls {
  top: 15%;
  left: 5.3%;
  padding-top: 25.5%;
}

.p-kv.--voice .balls .ball1 {
  top: 6%;
  left: 0%;
  width: 11.08%;
}

.p-kv.--voice .balls .ball2 {
  top: 13%;
  left: 26%;
  width: 16.62%;
}

.p-kv.--voice .balls .ball3 {
  top: 0%;
  left: 53%;
  width: 8.31%;
}

.p-kv.--voice .balls .ball4 {
  top: 19%;
  left: 77%;
  width: 2.77%;
}

.p-kv.--voice .balls .ball5 {
  top: 96%;
  left: 15%;
  width: 2.77%;
}

.p-kv.--voice .balls .ball6 {
  top: 86%;
  left: 44%;
  width: 8.31%;
}

.p-kv.--voice .balls .ball7 {
  top: 95%;
  left: 74%;
  width: 5.54%;
}

.p-kv.--voice .catch {
  top: 5.8%;
  right: 68.6%;
  width: 6.934%;
}

.p-kv.--voice .title {
  top: 38.5%;
  left: 9.4%;
  font-size: 2vw;
  line-height: 1.65;
  font-weight: bold;
  color: #fff;
}

.p-kv.--voice .title > * {
  background: var(--mainColor);
  border-radius: 0.27em 0.27em 0 0.27em;
  padding: 0 0.25em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.p-kv.--voice .profile {
  top: 59%;
  left: 9.4%;
}

.p-kv.--voice .profile .name {
  font-size: 1.34vw;
  font-weight: bold;
}

.p-kv.--voice .profile .join {
  font-size: 1.07vw;
}

.p-kv.--voice .motionStop {
  top: 72%;
  left: 9%;
  color: var(--mainColor);
}

.p-kv.--voice .motionStop i {
  border-color: var(--mainColor);
}

.p-kv.--voice .motionStop i:after {
  background: var(--mainColor);
}

.p-kv.--voice.js-scroll .balls {
  -webkit-transition: 1.5s cubic-bezier(0.33, 0.2, 0.33, 1) 0.3s;
  transition: 1.5s cubic-bezier(0.33, 0.2, 0.33, 1) 0.3s;
  opacity: 0;
  -webkit-transform: scale(0.75);
          transform: scale(0.75);
}

.p-kv.--voice.js-scroll .frame {
  -webkit-transition: 1.5s ease 0.3s;
  transition: 1.5s ease 0.3s;
  -webkit-mask: -webkit-gradient(linear, left top, right top, color-stop(45%, #000), color-stop(55%, transparent)) no-repeat 100% 0/250% 100%;
  -webkit-mask: linear-gradient(90deg, #000 45%, transparent 55%) no-repeat 100% 0/250% 100%;
          mask: -webkit-gradient(linear, left top, right top, color-stop(45%, #000), color-stop(55%, transparent)) no-repeat 100% 0/250% 100%;
          mask: linear-gradient(90deg, #000 45%, transparent 55%) no-repeat 100% 0/250% 100%;
}

.p-kv.--voice.js-scroll .catch {
  -webkit-transition: 1s ease 0.6s;
  transition: 1s ease 0.6s;
  opacity: 0;
}

.p-kv.--voice.js-scroll .catch > * {
  -webkit-transition: 1s ease 0.9s;
  transition: 1s ease 0.9s;
  opacity: 0;
}

.p-kv.--voice.js-scroll .title, .p-kv.--voice.js-scroll .profile {
  -webkit-transition: 1s cubic-bezier(0.5, 1.2, 0.5, 1) 0.6s;
  transition: 1s cubic-bezier(0.5, 1.2, 0.5, 1) 0.6s;
  opacity: 0;
  -webkit-transform: translateX(-2vw);
          transform: translateX(-2vw);
}

.p-kv.--voice.js-scroll .catch {
  -webkit-transition: 1s cubic-bezier(0.5, 1.2, 0.5, 1) 1s;
  transition: 1s cubic-bezier(0.5, 1.2, 0.5, 1) 1s;
  opacity: 0;
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
}

.p-kv.--voice.js-scroll .motionStop {
  -webkit-transition: 1s ease 1s;
  transition: 1s ease 1s;
  opacity: 0;
  -webkit-transform: translateX(-10%);
          transform: translateX(-10%);
}

.p-kv.--voice.js-scroll .img {
  -webkit-transition: 1s ease 0.3s;
  transition: 1s ease 0.3s;
  opacity: 0;
  -webkit-transform: translateX(2vw);
          transform: translateX(2vw);
}

.p-kv.--voice.is-scroll .frame {
  -webkit-mask-position: 0% 0%;
          mask-position: 0% 0%;
}

.p-kv.--voice.is-scroll .catch {
  opacity: 1;
}

.p-kv.--voice.is-scroll .catch > * {
  opacity: 1;
}

.p-kv.--voice.is-scroll .balls, .p-kv.--voice.is-scroll .title, .p-kv.--voice.is-scroll .profile, .p-kv.--voice.is-scroll .catch, .p-kv.--voice.is-scroll .motionStop {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.p-kv.--voice.is-scroll .img {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

@media screen and (max-width: 800px) {
  .p-kv .balls {
    width: 80%;
    padding-top: 90.5%;
  }
  .p-kv .motionStop {
    font-size: 3vw;
    padding-right: 2.5em;
  }
  .p-kv .motionStop i {
    width: 5.8vw;
    height: 5.8vw;
  }
  .p-kv.--top {
    aspect-ratio: 1 / 1.751;
  }
  .p-kv.--top .balls {
    top: 36.2%;
  }
  .p-kv.--top .balls .ball2 {
    top: 0%;
    left: 17%;
    width: 5.625%;
  }
  .p-kv.--top .balls .ball3 {
    top: 3%;
    left: 35%;
    width: 11.25%;
  }
  .p-kv.--top .balls .ball4 {
    top: 11%;
    left: 0%;
    width: 3.75%;
  }
  .p-kv.--top .balls .ball5 {
    top: 10%;
    left: 69%;
    width: 5.625%;
  }
  .p-kv.--top .balls .ball6 {
    top: 95%;
    left: 21%;
    width: 3.75%;
  }
  .p-kv.--top .balls .ball7 {
    top: 94%;
    left: 88%;
    width: 6.25%;
  }
  .p-kv.--top .txt {
    top: 62.5%;
    left: 15.5%;
    font-size: 3.6vw;
  }
  .p-kv.--top .catch1 {
    top: 45%;
    left: 13.5%;
    font-size: 9.6vw;
  }
  .p-kv.--top .catch2 {
    top: 85.2%;
    left: 4.2%;
    width: 64.7%;
  }
  .p-kv.--top .motionStop {
    top: 81%;
    left: 58%;
  }
  .p-kv.--page {
    aspect-ratio: 1 / 1.72;
  }
  .p-kv.--page .img {
    top: auto;
    right: -33%;
    bottom: 0%;
    width: 133.1%;
    border-radius: 34.133vw;
  }
  .p-kv.--page .img:before {
    top: -3.4vw;
    left: -3.4vw;
  }
  .p-kv.--page .frame {
    width: 250%;
    left: -135%;
  }
  .p-kv.--page .balls {
    top: 3%;
    left: 30.6%;
    width: 62%;
    padding-top: 60%;
  }
  .p-kv.--page .balls .ball6 {
    left: 44%;
  }
  .p-kv.--page .balls .ball7 {
    top: 91%;
    left: 83%;
  }
  .p-kv.--page .catch {
    top: 39%;
    left: 3%;
    width: 28.8%;
  }
  .p-kv.--page .title {
    top: 8%;
    left: 4%;
    font-size: 9.7vw;
  }
  .p-kv.--page .txt {
    top: 23%;
    left: 4%;
    font-size: 3.34vw;
  }
  .p-kv.--page .motionStop {
    top: auto;
    left: 59%;
    bottom: 57%;
  }
  .p-kv.--page.--message {
    aspect-ratio: 1 / 1.89;
  }
  .p-kv.--page.--message .c-signature {
    top: 32%;
    left: 4%;
  }
  .p-kv.--page.--message .txt {
    top: 22%;
    font-size: 5vw;
  }
  .p-kv.--page.--message .catch {
    top: 40.7%;
    width: 28.8%;
  }
  .p-kv.--page.--message .motionStop {
    bottom: 55%;
  }
  .p-kv.--page.--data .title {
    top: 9%;
  }
  .p-kv.--page.--data .catch {
    width: 38.3%;
  }
  .p-kv.--page.--data .txt {
    font-size: 4vw;
  }
  .p-kv.--page.--jobs .txt {
    font-size: 4vw;
  }
  .p-kv.--page.--jobs .catch {
    width: 34.7vw;
  }
  .p-kv.--page.--people .catch {
    top: 37%;
    width: 31vw;
  }
  .p-kv.--page.--people .txt {
    font-size: 4vw;
  }
  .p-kv.--page.--people .motionStop {
    bottom: 60%;
  }
  .p-kv.--page.--benefits .catch {
    width: 35.5vw;
  }
  .p-kv.--page.--benefits .txt {
    top: 30%;
    font-size: 4vw;
  }
  .p-kv.--page.--benefits .motionStop {
    top: auto;
  }
  .p-kv.--page.--faq .catch {
    width: 35.5vw;
  }
  .p-kv.--page.--faq .title {
    top: 12%;
  }
  .p-kv.--page.--faq .txt {
    top: 26%;
    font-size: 4vw;
  }
  .p-kv.--page.--faq .motionStop {
    top: auto;
  }
  .p-kv.--voice {
    aspect-ratio: 1 / 1.43;
  }
  .p-kv.--voice .img {
    top: 8.2%;
    width: 100%;
    border-radius: 34.133vw 0 0 34.133vw;
  }
  .p-kv.--voice .balls {
    top: 59%;
    left: 2.3%;
    width: 57%;
  }
  .p-kv.--voice .balls .ball1 {
    top: 30%;
  }
  .p-kv.--voice .balls .ball4 {
    top: 40%;
  }
  .p-kv.--voice .frame {
    width: 250%;
    left: -135%;
  }
  .p-kv.--voice .catch {
    top: 7%;
    right: auto;
    left: 3%;
    width: 17.7vw;
  }
  .p-kv.--voice .title {
    top: 72%;
    left: 4%;
    font-size: 4.5vw;
  }
  .p-kv.--voice .profile {
    top: 84%;
    left: 4%;
  }
  .p-kv.--voice .profile .name {
    font-size: 4vw;
  }
  .p-kv.--voice .profile .join {
    font-size: 3.6vw;
  }
  .p-kv.--voice .motionStop {
    top: 92%;
    left: 60%;
  }
}

.p-about {
  padding: 25px 0 75px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f2f8fe));
  background: linear-gradient(#fff, #f2f8fe);
}

.p-about .block1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.p-about .block1:before {
  content: '';
  position: absolute;
  top: -34%;
  left: -2%;
  width: 23.36%;
  aspect-ratio: 1 / 0.326;
  background: url(../img/top/about_dec01.png) no-repeat center/contain;
}

.p-about .block1 .content {
  width: 50%;
  font-weight: 500;
}

.p-about .block1 .content .title {
  font-weight: bold;
}

.p-about .block1 .content .title .name {
  font-size: 187.5%;
  margin-left: 1em;
}

.p-about .block1 .content .illust {
  float: right;
  margin-left: 1em;
  margin-top: -0.5em;
  position: relative;
  z-index: -1;
}

.p-about .block1 .illust {
  width: 16.4%;
}

.p-about .block1 .img {
  width: 26.8%;
}

@media screen and (min-width: 801px) {
  .p-about .block1 .img {
    margin-top: -20px;
  }
}

@media screen and (max-width: 1360px) {
  .p-about {
    padding: 2% 0 5.6%;
  }
  .p-about .block1 {
    gap: 1.5vw;
    margin-top: 1.5vw;
  }
}

@media screen and (max-width: 800px) {
  .p-about {
    padding: 4% 0 10%;
  }
  .p-about .block1 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 6vw;
    margin-top: 6vw;
  }
  .p-about .block1:before {
    top: -33vw;
    width: 27.1%;
  }
  .p-about .block1 .content {
    width: 100%;
  }
  .p-about .block1 .illust {
    width: 37%;
  }
  .p-about .block1 .img {
    width: 78%;
    margin: 0 auto;
  }
  .p-about .block1 .img img {
    width: 100%;
    max-width: none;
  }
}

.p-point {
  padding: 100px 0 95px;
}

.p-point .block1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 60px;
  counter-reset: num;
}

.p-point .block1 > * {
  width: calc(calc(100% - 40px) / 3);
}

.p-point .block1 .item {
  background: #fff;
  border-radius: 40px;
  -webkit-box-shadow: 0 0 35px rgba(4, 0, 0, 0.08);
          box-shadow: 0 0 35px rgba(4, 0, 0, 0.08);
  padding: 2.25em 2em 2em;
  position: relative;
  z-index: 1;
}

.p-point .block1 .item:before {
  counter-increment: num;
  content: counter(num, decimal-leading-zero);
  position: absolute;
  top: 0.1em;
  left: 0.25em;
  font-family: "Zen Maru Gothic", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 7.5rem;
  font-weight: bold;
  line-height: 1;
  color: #bcdcf1;
  z-index: -1;
}

.p-point .block1 .item figure {
  float: right;
  width: 35.1%;
  margin-left: 1em;
}

.p-point .block1 .item .txt {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 2em;
}

.p-point .block1 h3 {
  font-size: 3.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}

@media screen and (max-width: 1360px) {
  .p-point {
    padding: 7.5% 0 7%;
  }
  .p-point .block1 {
    gap: 1.5vw;
    margin-top: 4.5vw;
  }
  .p-point .block1 > * {
    width: calc(calc(100% - 3vw) / 3);
  }
  .p-point .block1 .item {
    border-radius: 3vw;
    -webkit-box-shadow: 0 0 2.6vw rgba(4, 0, 0, 0.08);
            box-shadow: 0 0 2.6vw rgba(4, 0, 0, 0.08);
  }
  .p-point .block1 .item:before {
    font-size: 5.6vw;
  }
  .p-point .block1 .item .txt {
    font-size: 1.34vw;
  }
  .p-point .block1 h3 {
    font-size: 2.5vw;
  }
}

@media screen and (max-width: 800px) {
  .p-point {
    padding: 15% 0 14%;
  }
  .p-point .block1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4vw;
    margin-top: 8vw;
  }
  .p-point .block1 > * {
    width: 100%;
  }
  .p-point .block1 .item {
    border-radius: 8vw;
    padding: 1.5em 2em 2em;
  }
  .p-point .block1 .item:before {
    font-size: 12vw;
  }
  .p-point .block1 .item figure {
    width: 24%;
  }
  .p-point .block1 .item .txt {
    font-size: 4vw;
    margin-top: 0.5em;
  }
  .p-point .block1 h3 {
    font-size: 6.8vw;
  }
}

.p-recruit {
  padding: 100px 0 110px;
  background: -webkit-gradient(linear, left top, right top, from(#b4d5fd), color-stop(#ccf1b2), to(#fee588));
  background: linear-gradient(90deg, #b4d5fd, #ccf1b2, #fee588);
  -webkit-mask: url(../img/mask/mask_wave.svg) no-repeat center top/100% 4.6vw, linear-gradient(transparent calc(4.6vw - 1px), #000 calc(4.6vw - 1px));
          mask: url(../img/mask/mask_wave.svg) no-repeat center top/100% 4.6vw, linear-gradient(transparent calc(4.6vw - 1px), #000 calc(4.6vw - 1px));
}

.p-recruit .c-layout01 {
  margin-top: 15px;
}

@media screen and (max-width: 1360px) {
  .p-recruit {
    padding: 7.5% 0 8.2%;
  }
  .p-recruit .c-layout01 {
    margin-top: 1.2vw;
  }
}

@media screen and (max-width: 800px) {
  .p-recruit {
    padding: 11% 0 12%;
    -webkit-mask: url(../img/mask/mask_wave4.svg) no-repeat center top/100% 6.89vw, linear-gradient(transparent calc(6.89vw - 1px), #000 calc(6.89vw - 1px));
            mask: url(../img/mask/mask_wave4.svg) no-repeat center top/100% 6.89vw, linear-gradient(transparent calc(6.89vw - 1px), #000 calc(6.89vw - 1px));
  }
}

.p-interview {
  padding: 100px 0 70px;
}

@media screen and (max-width: 1360px) {
  .p-interview {
    padding: 7.5% 0 5.2%;
  }
}

@media screen and (max-width: 800px) {
  .p-interview {
    padding: 11% 0 8%;
  }
}

.p-benefits {
  padding: 70px 0;
}

@media screen and (max-width: 1360px) {
  .p-benefits {
    padding: 5.2% 0;
  }
}

@media screen and (max-width: 800px) {
  .p-benefits {
    padding: 8% 0;
  }
}

.p-faq {
  padding: 70px 0;
}

.p-faq .block1 {
  background: var(--highlight) url(../img/top/faq_bgImg.png) no-repeat left 6% top 2em/11.64% auto;
  border-radius: 40px;
  padding: 2em 4% 2.5em;
  position: relative;
}

.p-faq .c-heading .en {
  margin-bottom: 0.5em;
}

@media screen and (min-width: 801px) {
  .p-faq .block1 .c-btn {
    position: absolute;
    right: 4%;
    bottom: 1.5em;
  }
}

@media screen and (max-width: 1360px) {
  .p-faq {
    padding: 5.2% 0;
  }
  .p-faq .block1 {
    border-radius: 3vw;
  }
}

@media screen and (max-width: 800px) {
  .p-faq .block1 {
    background-size: 19% auto;
  }
  .p-faq .block1 .c-btn {
    margin: 2em auto 0;
  }
}

.p-movie {
  padding: 70px 0 60px;
}

@media screen and (max-width: 1360px) {
  .p-movie {
    padding: 5.2% 0 4.5%;
  }
}

@media screen and (max-width: 800px) {
  .p-movie {
    padding: 8% 0 15%;
  }
}

/* modal */
.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  opacity: 0;
  pointer-events: none;
  z-index: 502;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-modalTrigger {
  cursor: pointer;
}

.c-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.c-modal_close {
  position: absolute;
  top: -3em;
  right: 0;
  width: 2.5em;
  height: 2.5em;
  cursor: pointer;
  z-index: 503;
}

.c-modal_close:before, .c-modal_close:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 0.15em;
  background: #fff;
}

.c-modal_close:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.c-modal_close:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

#is-cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 501;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* Animation */
.js-scroll.fadeInUp {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.js-scroll.fadeInLeft {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}

.js-scroll.fadeInRight {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

.js-scroll.fadeInZoom {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.js-scroll.fadeInPop {
  -webkit-transition: 0.4s cubic-bezier(0.2, 0, 0.2, 1.6) 0.3s;
  transition: 0.4s cubic-bezier(0.2, 0, 0.2, 1.6) 0.3s;
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}

.js-scroll.fadeInMask {
  -webkit-transition: 1.5s ease 0.3s;
  transition: 1.5s ease 0.3s;
  -webkit-mask-image: linear-gradient(-45deg, transparent 45%, #000 55%);
          mask-image: linear-gradient(-45deg, transparent 45%, #000 55%);
  -webkit-mask-size: 300% 300%;
          mask-size: 300% 300%;
  -webkit-mask-position: 100% 100%;
          mask-position: 100% 100%;
}

.js-scroll.fadeInUpOrder > * {
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.js-scroll.fadeInLeftOrder > * {
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}

.js-scroll.is-scroll.fadeInUp, .js-scroll.is-scroll.fadeInLeft, .js-scroll.is-scroll.fadeInRight, .js-scroll.is-scroll.fadeInZoom, .js-scroll.is-scroll.fadeInPop {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.js-scroll.is-scroll.fadeInMask {
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
}

.js-scroll.is-scroll.fadeInUpOrder > *, .js-scroll.is-scroll.fadeInLeftOrder > * {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.p-data01 {
  margin-top: 80px;
}

.p-data01 .inner {
  background: #fff;
  -webkit-box-shadow: 2.5px 3.1px 35px rgba(4, 0, 0, 0.08);
          box-shadow: 2.5px 3.1px 35px rgba(4, 0, 0, 0.08);
  border-radius: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 120px 45px;
  position: relative;
  z-index: 1;
}

.p-data01 h3 {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.3;
  color: var(--mainColor);
  position: relative;
}

.p-data01 h3:before {
  content: '';
  position: absolute;
  top: -0.1em;
  left: -2em;
  width: 1.54em;
  aspect-ratio: 1 / 1;
  background: currentColor;
}

.p-data01 h3.num1:before {
  -webkit-mask: url(../img/icons/num1.svg) no-repeat center/contain;
          mask: url(../img/icons/num1.svg) no-repeat center/contain;
}

.p-data01 h3.num2:before {
  -webkit-mask: url(../img/icons/num2.svg) no-repeat center/contain;
          mask: url(../img/icons/num2.svg) no-repeat center/contain;
}

.p-data01 h3.num3:before {
  -webkit-mask: url(../img/icons/num3.svg) no-repeat center/contain;
          mask: url(../img/icons/num3.svg) no-repeat center/contain;
}

.p-data01 .block {
  font-size: 1.125em;
  line-height: 1.65;
  padding-left: 50px;
}

.p-data01 .img {
  position: absolute;
  right: 7%;
  bottom: 8%;
  width: 14.34%;
  z-index: -1;
}

.p-data01 .img img {
  width: 100%;
  max-width: none;
}

@media screen and (max-width: 1360px) {
  .p-data01 {
    margin-top: 6vw;
  }
  .p-data01 .inner {
    border-radius: 3vw;
    padding: 2.24vw 9vw 3.35vw 4vw;
  }
  .p-data01 h3 {
    font-size: 1.94vw;
  }
  .p-data01 .block {
    padding-left: 3.8vw;
  }
}

@media screen and (max-width: 800px) {
  .p-data01 {
    margin-top: 12vw;
  }
  .p-data01 .inner {
    padding: 4vw;
  }
  .p-data01 h3 {
    font-size: 4.34vw;
  }
  .p-data01 .block {
    padding-left: 8.34vw;
  }
  .p-data01 .img {
    left: 0;
    bottom: 0;
    width: 50%;
    position: relative;
    margin: 2em auto 0;
  }
}

.p-data02 {
  margin-top: 70px;
}

.p-data02 .block1 h3 {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  color: var(--mainColor);
}

.p-data02 .block1 h4 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  color: var(--mainColor);
}

.p-data02 .block1 h4 .num {
  font-size: 130%;
}

.p-data02 .block1 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.p-data02 .block1 .flex > * {
  width: calc(calc(100% - 20px) / 2);
}

.p-data02 .block1 .flex .item {
  padding: 1.5em 2.5em;
}

.p-data02 .block1 .flex .item p {
  line-height: 1.9;
  letter-spacing: -0.05em;
}

.p-data02 .block2 {
  margin-top: 54px;
}

.p-data02 .block2 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.p-data02 .block2 .flex > *.--w1 {
  width: calc(1300px / 3);
}

.p-data02 .block2 .flex > *.--w2 {
  width: calc(1300px / 3 * 2 + 20px);
}

.p-data02 .block2 .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1em;
  padding: 1.25em 1.25em 1.5em;
}

.p-data02 .block2 .item.--item5 .content3 {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-data02 .block2 .txt1 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.75;
  color: var(--mainColor);
}

.p-data02 .block2 h4 {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.3;
  color: var(--mainColor);
}

.p-data02 .block2 .c-ul01 {
  font-size: 1.3rem;
}

.p-data02 .block3 {
  margin-top: 60px;
}

.p-data02 .block3 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.p-data02 .block3 .flex > * {
  width: calc(calc(100% - 20px) / 2);
}

.p-data02 .block3 .item {
  padding: 0.75em 2em 1.75em;
}

.p-data02 .block3 .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
}

.p-data02 .block3 .content .img {
  width: 45%;
}

.p-data02 .block3 .content .txt {
  width: calc(55% - 1em);
}

.p-data02 .block3 h4 {
  font-weight: bold;
  color: var(--mainColor);
}

.p-data02 .block4 {
  margin-top: 56px;
}

.p-data02 .block4 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.p-data02 .block4 .flex > * {
  width: calc(calc(100% - 20px) / 2);
}

.p-data02 .block4 .item {
  padding: 1.75em 2em;
}

.p-data02 .block4 h4 {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--mainColor);
}

.p-data02 .block4 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5em;
}

.p-data02 .block4 ul > li {
  width: calc(calc(100% - 1.5em) / 2);
}

.p-data02 .block4 dl {
  padding-left: 1em;
}

.p-data02 .block4 dl dt {
  font-weight: bold;
  position: relative;
}

.p-data02 .block4 dl dt:before {
  content: '';
  position: absolute;
  top: 0.4em;
  left: -1em;
  width: 0.6875em;
  aspect-ratio: 1 / 1.1;
  background: var(--mainColor);
  -webkit-mask: url(../img/icons/arrow003.svg) no-repeat center/contain;
          mask: url(../img/icons/arrow003.svg) no-repeat center/contain;
}

@media screen and (max-width: 1360px) {
  .p-data02 {
    margin-top: 5.2vw;
  }
  .p-data02 .block1 h3 {
    font-size: 2.8vw;
  }
  .p-data02 .block1 h4 {
    font-size: 1.5vw;
  }
  .p-data02 .block1 .flex {
    gap: 0.75vw;
  }
  .p-data02 .block1 .flex > * {
    width: calc(calc(100% - 1.5vw) / 2);
  }
  .p-data02 .block2 {
    margin-top: 4vw;
  }
  .p-data02 .block2 .flex {
    gap: 0.75vw;
  }
  .p-data02 .block2 .flex > *.--w1 {
    max-width: calc(calc(100% - 0.75vw) / 2);
  }
  .p-data02 .block2 .txt1 {
    font-size: 2vw;
  }
  .p-data02 .block2 h4 {
    font-size: 1.5vw;
  }
  .p-data02 .block3 {
    margin-top: 4.5vw;
  }
  .p-data02 .block3 .flex {
    gap: 0.75vw;
  }
  .p-data02 .block3 .flex > * {
    width: calc(calc(100% - 0.75vw) / 2);
  }
  .p-data02 .block4 {
    margin-top: 4.2vw;
  }
  .p-data02 .block4 .flex {
    gap: 0.75vw;
  }
  .p-data02 .block4 .flex > * {
    width: calc(calc(100% - 0.75vw) / 2);
  }
  .p-data02 .block4 h4 {
    font-size: 1.67vw;
  }
}

@media screen and (max-width: 800px) {
  .p-data02 {
    margin-top: 10vw;
  }
  .p-data02 .block1 h3 {
    font-size: 4.8vw;
  }
  .p-data02 .block1 h4 {
    font-size: 4vw;
  }
  .p-data02 .block1 .flex {
    gap: 3vw;
  }
  .p-data02 .block1 .flex > * {
    width: 100%;
  }
  .p-data02 .block1 .flex .item {
    padding: 1em 1.5em;
  }
  .p-data02 .block2 {
    margin-top: 8vw;
  }
  .p-data02 .block2 .flex .item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-data02 .block2 .flex .item > * {
    width: 100%;
  }
  .p-data02 .block2 .flex .item.--item5 > * {
    width: calc(calc(100% - 1em) / 2);
  }
  .p-data02 .block2 .flex .item.--item5 .img {
    width: 35%;
  }
  .p-data02 .block2 .flex .item.--item5 .content3 {
    width: calc(65% - 1em);
    height: auto;
  }
  .p-data02 .block2 .txt1 {
    font-size: 4vw;
  }
  .p-data02 .block2 h4 {
    font-size: 4vw;
  }
  .p-data02 .block2 .c-ul01 {
    font-size: 3.8vw;
  }
  .p-data02 .block3 {
    margin-top: 9vw;
  }
  .p-data02 .block3 .flex {
    gap: 3vw;
  }
  .p-data02 .block3 .flex > * {
    width: 100%;
  }
  .p-data02 .block3 .content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-data02 .block3 .content > * {
    width: 100% !important;
  }
  .p-data02 .block4 {
    margin-top: 8.4vw;
  }
  .p-data02 .block4 .flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 3vw;
  }
  .p-data02 .block4 .flex > * {
    width: 100%;
  }
  .p-data02 .block4 .item {
    padding: 1em 1.5em;
  }
  .p-data02 .block4 h4 {
    font-size: 4vw;
  }
  .p-data02 .block4 ul {
    gap: 0.75em;
  }
  .p-data02 .block4 ul > li {
    width: 100%;
  }
}

.p-data03 {
  margin-top: 70px;
}

.p-data03_grid {
  display: grid;
  grid-template-columns: 34.7% 34.7% auto;
  grid-template-rows: repeat(4, 1fr);
  gap: 10px;
}

.p-data03_grid .grid {
  border: 2px solid var(--mainColor);
  border-radius: 20px;
  padding: 1em 1.75em;
}

.p-data03_grid .grid.--grid1 {
  grid-column: 1 / 3;
  grid-row: 1 / 4;
}

.p-data03_grid .grid.--grid2 {
  grid-column: 1 / 2;
  grid-row: 4 / 5;
}

.p-data03_grid .grid.--grid3 {
  grid-column: 2 / 3;
  grid-row: 4 / 5;
}

@media screen and (max-width: 1360px) {
  .p-data03 {
    margin-top: 5.2vw;
  }
  .p-data03_grid {
    gap: 0.75vw;
  }
  .p-data03_grid .grid {
    border-radius: 1.5vw;
    padding: 1em 1.5em;
  }
}

@media screen and (max-width: 800px) {
  .p-data03 {
    margin-top: 10vw;
  }
  .p-data03_grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, auto);
  }
  .p-data03_grid .grid {
    border-width: 0.25vw;
    padding: 1em;
  }
  .p-data03_grid .grid.--grid1 {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
  .p-data03_grid .grid.--grid2 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  .p-data03_grid .grid.--grid3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
}

.p-data04 {
  margin-top: 70px;
  margin-bottom: 70px;
}

.p-data04 .block1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}

.p-data04 .block1 .item.--item1 {
  width: 49%;
  padding: 1em;
}

.p-data04 .block1 .item.--item2 {
  width: calc(51% - 60px);
}

.p-data04 .block1 .item.--item2 ul > li + li {
  margin-top: 0.4em;
}

.p-data04_division {
  padding-top: 40%;
  position: relative;
}

.p-data04_division svg {
  position: absolute;
  top: -10%;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 31%;
  aspect-ratio: 1 / 0.75;
}

.p-data04_division > * {
  position: absolute;
  z-index: 2;
}

.p-data04_division .division {
  width: 228px;
  background: linear-gradient(var(--mainColor) 8px, #fff 8px);
  border: 2px solid var(--mainColor);
  border-radius: 10px;
  padding: 1.25em;
}

.p-data04_division .division .name {
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  color: var(--mainColor);
  padding-bottom: 0.45em;
  position: relative;
}

.p-data04_division .division .name:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 2em;
  height: 2px;
  background: currentColor;
}

.p-data04_division .division .c-ul01 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.p-data04_division .division .c-ul01 > li + li {
  margin-top: 0.4em;
}

.p-data04_division .division.--div1 {
  top: 9%;
  left: 20%;
  background: linear-gradient(#2e9fba 8px, #fff 8px);
  border-color: #2e9fba;
}

.p-data04_division .division.--div1 .name {
  color: #2e9fba;
}

.p-data04_division .division.--div2 {
  top: 9%;
  left: 41.5%;
}

.p-data04_division .division.--div3 {
  top: 46.6%;
  left: 20%;
  background: linear-gradient(#0b57ab 8px, #fff 8px);
  border-color: #0b57ab;
}

.p-data04_division .division.--div3 .name {
  color: #0b57ab;
}

.p-data04_division .division.--div4 {
  top: 41.5%;
  left: 63%;
  background: linear-gradient(#21b0f2 8px, #fff 8px);
  border-color: #21b0f2;
}

.p-data04_division .division.--div4 .name {
  color: #21b0f2;
}

@media screen and (max-width: 1360px) {
  .p-data04 {
    margin-top: 5.2vw;
    margin-bottom: 5.2vw;
  }
  .p-data04 .block1 {
    gap: 4.5vw;
  }
  .p-data04 .block1 .item.--item2 {
    width: calc(51% - 4.5vw);
  }
  .p-data04_division .division {
    width: 18%;
  }
  .p-data04_division .division .name {
    font-size: 1.67vw;
  }
}

@media screen and (max-width: 800px) {
  .p-data04 {
    margin-top: 10vw;
    margin-bottom: 10vw;
  }
  .p-data04 .block1 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-data04 .block1 .item.--item1 {
    width: 100%;
  }
  .p-data04 .block1 .item.--item2 {
    width: 100%;
  }
  .p-data04_division {
    padding-top: 150%;
  }
  .p-data04_division svg {
    width: 58%;
  }
  .p-data04_division .division {
    width: 43vw;
    padding: 1em 0.5em;
  }
  .p-data04_division .division .name {
    font-size: 4vw;
  }
  .p-data04_division .division.--div1 {
    top: 4%;
    left: 2%;
  }
  .p-data04_division .division.--div2 {
    top: 4%;
    left: 52%;
  }
  .p-data04_division .division.--div3 {
    top: 50%;
    left: 2%;
  }
  .p-data04_division .division.--div4 {
    top: 50%;
    left: 52%;
  }
}

.p-jobs01 {
  margin-top: 60px;
}

.p-jobs01 .block1 h2 {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 0.25em;
  color: #fff;
  background: var(--mainColor);
  border-radius: 0.2em 0.2em 0.2em 0;
}

.p-jobs01 .block1 .txt1 {
  font-size: 2.6rem;
  font-weight: bold;
  max-width: 42em;
  margin: 0 auto;
}

.p-jobs01 .block2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 75px;
}

.p-jobs01 .block2 > * {
  width: calc(calc(100% - 20px) / 2);
}

.p-jobs01 .block2 .item {
  padding: 2.5em 3em;
}

.p-jobs01 .block2 h3 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}

.p-jobs01 .block2 h3 img {
  width: 2.67em;
}

.p-jobs01 .block3 {
  margin-top: 40px;
  padding: 2em 3.5em;
}

.p-jobs01 .block3 .check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1em;
}

.p-jobs01 .block3 .check > li {
  font-size: 2rem;
  font-weight: bold;
  padding-left: 1.75em;
  position: relative;
}

.p-jobs01 .block3 .check > li:before {
  content: '';
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 1.2em;
  aspect-ratio: 1/ 1;
  background: var(--mainColor);
  -webkit-mask: url(../img/icons/check.svg) no-repeat center/contain;
          mask: url(../img/icons/check.svg) no-repeat center/contain;
}

@media screen and (max-width: 1360px) {
  .p-jobs01 {
    margin-top: 4.5vw;
  }
  .p-jobs01 .block1 h2 {
    font-size: 3vw;
  }
  .p-jobs01 .block1 .txt1 {
    font-size: 2vw;
  }
  .p-jobs01 .block2 {
    gap: 1.5vw;
    margin-top: 5.6vw;
  }
  .p-jobs01 .block2 > * {
    width: calc(calc(100% - 1.5vw) / 2);
  }
  .p-jobs01 .block2 .item {
    padding: 1.5em 2em;
  }
  .p-jobs01 .block2 h3 {
    font-size: 2.24vw;
  }
  .p-jobs01 .block3 {
    margin-top: 3vw;
    padding: 1.5em 2em;
  }
  .p-jobs01 .block3 .check > li {
    font-size: 1.5vw;
  }
}

@media screen and (max-width: 800px) {
  .p-jobs01 {
    margin-top: 9vw;
  }
  .p-jobs01 .block1 h2 {
    font-size: 5vw;
    width: 100%;
    padding: 0.2em 0.5em;
    border-radius: 0.4em 0.4em 0.4em 0;
  }
  .p-jobs01 .block1 .txt1 {
    font-size: 4vw;
  }
  .p-jobs01 .block2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 3vw;
  }
  .p-jobs01 .block2 > * {
    width: 100%;
  }
  .p-jobs01 .block2 h3 {
    font-size: 5vw;
  }
  .p-jobs01 .block3 .check {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .p-jobs01 .block3 .check > li {
    font-size: 4vw;
  }
}

.p-jobs02 {
  margin-top: 70px;
}

.p-jobs02 .c-steps > .step {
  width: calc(calc(100% - 96px) / 4);
  padding: 1.5em 1em;
}

.p-jobs02 .c-steps > .step h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--mainColor);
}

@media screen and (max-width: 1360px) {
  .p-jobs02 {
    margin-top: 5.2vw;
  }
  .p-jobs02 .c-steps > .step {
    width: calc(calc(100% - 7.2vw) / 4);
  }
  .p-jobs02 .c-steps > .step h3 {
    font-size: 1.5vw;
  }
}

@media screen and (max-width: 800px) {
  .p-jobs02 {
    margin-top: 10vw;
  }
  .p-jobs02 .c-steps > .step {
    width: 100%;
  }
  .p-jobs02 .c-steps > .step h3 {
    font-size: 4vw;
  }
}

.p-jobs03 {
  margin-top: 80px;
}

.p-jobs03 .block1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
}

.p-jobs03 .block1 > * {
  width: calc(calc(100% - 20px) / 2);
}

.p-jobs03 .block1 .item {
  background: #ffff;
  border: 2px solid var(--mainColor);
  border-radius: 20px;
  padding: 1.5em 2em 1.75em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5em;
}

.p-jobs03 .block1 .item.--green {
  border-color: #3dbb06;
}

.p-jobs03 .block1 .item.--green h3 {
  color: #3dbb06;
}

.p-jobs03 .block1 .item.--pink {
  border-color: #ed5096;
}

.p-jobs03 .block1 .item.--pink h3 {
  color: #ed5096;
}

.p-jobs03 .block1 .item.--purple {
  border-color: #a152d9;
}

.p-jobs03 .block1 .item.--purple h3 {
  color: #a152d9;
}

.p-jobs03 .block1 .item .icon {
  width: 75px;
}

.p-jobs03 .block1 .item .txt {
  width: calc(100% - 75px - 1.5em);
  height: 100%;
}

.p-jobs03 .block1 h3 {
  font-size: 2.6rem;
  font-weight: bold;
  color: var(--mainColor);
}

@media screen and (max-width: 1360px) {
  .p-jobs03 {
    margin-top: 6vw;
  }
  .p-jobs03 .block1 {
    gap: 1.5vw;
    margin-top: 3.73vw;
  }
  .p-jobs03 .block1 > * {
    width: calc(calc(100% - 1.5vw) / 2);
  }
  .p-jobs03 .block1 .item .icon {
    width: 4.6875em;
  }
  .p-jobs03 .block1 .item .txt {
    width: calc(100% - 4.6875em - 1.5em);
  }
  .p-jobs03 .block1 h3 {
    font-size: 2vw;
  }
}

@media screen and (max-width: 800px) {
  .p-jobs03 {
    margin-top: 12vw;
  }
  .p-jobs03 .block1 {
    gap: 4vw;
    margin-top: 7vw;
  }
  .p-jobs03 .block1 > * {
    width: 100%;
  }
  .p-jobs03 .block1 h3 {
    font-size: 4.34vw;
  }
}

.p-jobs04 {
  margin-top: 70px;
  margin-bottom: 70px;
}

.p-jobs04 .block1 {
  margin-top: 50px;
  padding: 0 20px;
}

.p-jobs04 .block1 .c-steps > .step {
  width: calc(calc(100% - 128px) / 5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}

.p-jobs04 .block1 .c-steps > .step:after {
  top: 15%;
  bottom: auto;
  border-left-color: var(--mainColor);
}

.p-jobs04 .block1 .icon {
  display: flex;
  justify-content: center;
}

.p-jobs04 .block1 h3 {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  color: var(--mainColor);
}

.p-jobs04 .block2 {
  margin-top: 50px;
  padding: 2em 2em 3em;
}

.p-jobs04 .block2 h3 {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  color: var(--mainColor);
}

.p-jobs04 .block2 .c-btn {
  font-size: 2.4rem;
  max-width: 27.084em;
}

@media screen and (max-width: 1360px) {
  .p-jobs04 {
    margin-top: 5.2vw;
    margin-bottom: 5.2vw;
  }
  .p-jobs04 .block1 {
    margin-top: 3.73vw;
    padding: 0 1.5vw;
  }
  .p-jobs04 .block1 .c-steps > .step {
    width: calc(calc(100% - 9.6vw) / 5);
  }
  .p-jobs04 .block1 .c-steps > .step:after {
    top: 18%;
  }
  .p-jobs04 .block1 .icon {
    width: 9vw;
    margin: 0 auto;
  }
  .p-jobs04 .block1 h3 {
    font-size: 2vw;
  }
  .p-jobs04 .block2 {
    margin-top: 3.73vw;
    padding: 1em 1em 2em;
  }
  .p-jobs04 .block2 h3 {
    font-size: 3vw;
  }
  .p-jobs04 .block2 .c-btn {
    font-size: 1.8vw;
  }
}

@media screen and (max-width: 800px) {
  .p-jobs04 {
    margin-top: 10vw;
    margin-bottom: 10vw;
  }
  .p-jobs04 .block1 {
    margin-top: 7vw;
  }
  .p-jobs04 .block1 .c-steps {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-jobs04 .block1 .c-steps > .step {
    width: 80%;
  }
  .p-jobs04 .block1 .c-steps > .step:after {
    top: calc(100% + 3.415vw);
    border: 2vw solid transparent;
    border-top: 3.17vw solid var(--mainColor);
    border-bottom: 0;
  }
  .p-jobs04 .block1 .icon {
    width: 20vw;
  }
  .p-jobs04 .block1 h3 {
    font-size: 4.34vw;
  }
  .p-jobs04 .block2 {
    margin-top: 7vw;
  }
  .p-jobs04 .block2 h3 {
    font-size: 5vw;
  }
  .p-jobs04 .block2 .c-btn {
    font-size: 4vw;
  }
}

.p-people01 {
  margin-top: 60px;
  margin-bottom: 70px;
}

.p-people01_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}

.p-people01_list > li > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--highlight);
  border-radius: 40px;
  min-height: 400px;
  overflow: hidden;
  position: relative;
}

.p-people01_list > li > a:hover .img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.p-people01_list > li > a:hover .arrow {
  color: var(--mainColor);
}

.p-people01_list > li > a:hover .arrow:before {
  background: var(--mainColor);
}

.p-people01_list > li > a:hover .arrow:after {
  background: #fff;
}

.p-people01_list .img {
  width: 46.27%;
  overflow: hidden;
  position: relative;
}

.p-people01_list .img > img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-people01_list .content {
  width: 53.73%;
  padding: 2.5em 3.75em;
}

.p-people01_list .content .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}

.p-people01_list .content .tags .num {
  font-family: "Inter", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  color: #fff;
  background: var(--mainColor);
  border-radius: 0.4em 0.4em 0.4em 0;
  padding: 0.25em 0.5em;
  width: 5.7em;
}

.p-people01_list .content .tags .division {
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
  color: var(--mainColor);
  background: #fff;
  border-radius: 0.267em;
  padding: 0.5em 0.5em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-people01_list .content .title {
  font-size: 2.6rem;
  font-weight: bold;
  margin-top: 1.25em;
}

.p-people01_list .content .name {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 2em;
}

.p-people01_list .arrow {
  position: absolute;
  right: 3%;
  bottom: 2.6em;
  font-size: 1.8rem;
  font-weight: bold;
  padding-right: 3em;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.p-people01_list .arrow:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 2.45em;
  height: 2.45em;
  border: 2px solid var(--mainColor);
  border-radius: 50%;
  -webkit-transition: inherit;
  transition: inherit;
}

.p-people01_list .arrow:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0.9em;
  bottom: 0;
  margin: auto;
  width: 0.56em;
  height: 0.834em;
  background: var(--textColor);
  -webkit-mask: url(../img/icons/arrow001.svg) no-repeat center/contain;
          mask: url(../img/icons/arrow001.svg) no-repeat center/contain;
  -webkit-transition: inherit;
  transition: inherit;
}

@media screen and (max-width: 1360px) {
  .p-people01 {
    margin-top: 4.5vw;
    margin-bottom: 5.2vw;
  }
  .p-people01_list {
    gap: 4.5vw;
  }
  .p-people01_list > li > * {
    min-height: 30vw;
    border-radius: 3vw;
  }
  .p-people01_list .content {
    padding: 2em 3em;
  }
  .p-people01_list .content .tags .num {
    font-size: 1.5vw;
  }
  .p-people01_list .content .tags .division {
    font-size: 1.2vw;
  }
  .p-people01_list .content .title {
    font-size: 2vw;
  }
  .p-people01_list .content .name {
    font-size: 1.5vw;
  }
  .p-people01_list .arrow {
    font-size: 1.34vw;
  }
}

@media screen and (max-width: 800px) {
  .p-people01 {
    margin-top: 9vw;
    margin-bottom: 10vw;
  }
  .p-people01_list > li > * {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 8vw;
    min-height: none;
  }
  .p-people01_list .img {
    width: 100%;
    aspect-ratio: 1 / 0.578;
  }
  .p-people01_list .content {
    width: 100%;
    padding: 1.5em 1em 5em;
  }
  .p-people01_list .content .tags .num {
    font-size: 4vw;
  }
  .p-people01_list .content .tags .division {
    font-size: 3vw;
  }
  .p-people01_list .content .title {
    font-size: 6.5vw;
    margin-top: 0.5em;
  }
  .p-people01_list .content .name {
    font-size: 4vw;
    margin-top: 1em;
  }
  .p-people01_list .content .join {
    font-size: 3.2vw;
  }
  .p-people01_list .arrow {
    right: 1.5em;
    bottom: 2em;
    font-size: 3.6vw;
  }
}

.p-benefits01 {
  margin-top: 65px;
}

.p-benefits01 .block1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
}

.p-benefits01 .block1 > * {
  width: calc(calc(100% - 20px) / 2);
}

.p-benefits01 .block1 .c-frame {
  padding: 1.5em 2em 1.75em;
}

.p-benefits01 .block1 h3 {
  font-size: 2rem;
  font-weight: bold;
  color: var(--mainColor);
}

.p-benefits01 .block1 .gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

.p-benefits01 .block1 .gallery > li {
  width: calc(calc(100% - 20px) / 3);
  aspect-ratio: 1 / 0.94;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.p-benefits01 .block1 .gallery > li img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1360px) {
  .p-benefits01 {
    margin-top: 5vw;
  }
  .p-benefits01 .block1 {
    gap: 1.5vw;
    margin-top: 3.73vw;
  }
  .p-benefits01 .block1 > * {
    width: calc(calc(100% - 1.5vw) / 2);
  }
  .p-benefits01 .block1 h3 {
    font-size: 1.5vw;
  }
  .p-benefits01 .block1 .gallery {
    gap: 0.75vw;
  }
  .p-benefits01 .block1 .gallery > li {
    width: calc(calc(100% - 1.5vw) / 3);
    border-radius: 1.5vw;
  }
}

@media screen and (max-width: 800px) {
  .p-benefits01 {
    margin-top: 10vw;
  }
  .p-benefits01 .block1 {
    gap: 3vw;
    margin-top: 7vw;
  }
  .p-benefits01 .block1 > * {
    width: 100%;
  }
  .p-benefits01 .block1 h3 {
    font-size: 4.8vw;
  }
}

.p-benefits02 {
  margin-top: 70px;
}

.p-benefits02 .block1 {
  margin-top: 45px;
}

.p-benefits02 .block1 .c-ulArrow {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--mainColor);
  padding: 0 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.45em 2em;
}

.p-benefits02 .block1 .c-ulArrow > li {
  width: calc(calc(100% - 2em) / 2);
}

@media screen and (max-width: 1360px) {
  .p-benefits02 {
    margin-top: 5.2vw;
  }
  .p-benefits02 .block1 {
    margin-top: 3.36vw;
  }
  .p-benefits02 .block1 .c-ulArrow {
    font-size: 1.34vw;
  }
}

@media screen and (max-width: 800px) {
  .p-benefits02 {
    margin-top: 10vw;
  }
  .p-benefits02 .block1 {
    margin-top: 7vw;
  }
  .p-benefits02 .block1 .c-ulArrow {
    font-size: 4vw;
  }
  .p-benefits02 .block1 .c-ulArrow > li {
    width: 100%;
  }
}

.p-benefits03 {
  margin-top: 70px;
  margin-bottom: 70px;
}

.p-benefits03 .block1 {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
}

.p-benefits03 .block1 .item.--item1 {
  width: 29%;
}

.p-benefits03 .block1 .item.--item1 .c-frame {
  padding: 2em;
}

.p-benefits03 .block1 .item.--item1 .c-ulCheck {
  font-size: 2rem;
  font-weight: bold;
}

.p-benefits03 .block1 .item.--item1 .c-ulCheck > li + li {
  margin-top: 0.75em;
}

.p-benefits03 .block1 .item.--item2 {
  width: calc(71% - 70px);
}

.p-benefits03 .block1 .item.--item2 .c-frame {
  padding: 1em;
}

.p-benefits03 .block1 .item.--item2 h4 {
  font-weight: bold;
  padding-bottom: 0.75em;
  border-bottom: 1px solid #bfd1e2;
}

.p-benefits03 .block1 .item.--item2 ul {
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-template-rows: repeat(auto-fit, auto);
  gap: 1.5em 1em;
  padding: 1em 0.75em;
}

.p-benefits03 .block1 .item.--item2 ul dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}

.p-benefits03 .block1 .item.--item2 ul dl dd {
  font-size: 112.5%;
  color: var(--mainColor);
}

@media screen and (max-width: 1360px) {
  .p-benefits03 {
    margin-top: 5.2vw;
    margin-bottom: 5.2vw;
  }
  .p-benefits03 .block1 {
    margin-top: 3.36vw;
    gap: 5.2vw;
  }
  .p-benefits03 .block1 .item.--item1 .c-ulCheck {
    font-size: 1.5vw;
  }
  .p-benefits03 .block1 .item.--item2 {
    width: calc(71% - 5.2vw);
  }
}

@media screen and (max-width: 800px) {
  .p-benefits03 {
    margin-top: 10vw;
    margin-bottom: 10vw;
  }
  .p-benefits03 .block1 {
    margin-top: 7vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-benefits03 .block1 .item {
    width: 100% !important;
  }
  .p-benefits03 .block1 .item.--item1 .c-ulCheck {
    font-size: 4vw;
  }
  .p-benefits03 .block1 .item.--item2 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1em;
  }
}

.p-error {
  padding: 70px 0;
}

.p-error h2 {
  font-family: "Inter", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 6rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.1;
  color: var(--mainColor);
  padding-top: 2.8em;
  position: relative;
}

.p-error h2:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 2.6em;
  aspect-ratio: 1 / 1;
  background: #d0e1fc;
  -webkit-mask: url(../img/icons/exclamation.svg) no-repeat center/contain;
          mask: url(../img/icons/exclamation.svg) no-repeat center/contain;
}

.p-error h2 .num {
  font-size: 250%;
  display: block;
}

.p-error .message {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}

.p-error .button {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
  max-width: 16.67em;
  min-height: 3.34em;
  margin: 0 auto;
  padding: 0.25em 1em;
  color: var(--mainColor);
  border: 2px solid var(--mainColor);
  border-radius: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.p-error .button:hover {
  color: #fff;
  background: var(--mainColor);
}

@media screen and (max-width: 1360px) {
  .p-error {
    padding: 5.2vw 0;
  }
  .p-error h2 {
    font-size: 4.5vw;
  }
  .p-error .message {
    font-size: 1.8vw;
  }
  .p-error .button {
    font-size: 1.8vw;
  }
}

@media screen and (max-width: 800px) {
  .p-error {
    padding: 10vw 0;
  }
  .p-error h2 {
    font-size: 7.5vw;
  }
  .p-error .message {
    font-size: 4vw;
  }
  .p-error .button {
    font-size: 4vw;
  }
}

.l-header {
  background: #fff;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 201;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}

.l-header:not(.fixed) {
  position: absolute;
}

.l-header.fixed {
  position: fixed;
}

.is-scrolled .l-header {
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
}

.l-header_inner {
  height: 80px;
  padding: 10px 2.8%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-header h1.hidden {
  position: absolute;
  top: 0;
  left: 0;
  text-indent: -9999px;
}

.l-header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.l-header .logo img {
  width: 102px;
  max-width: 7.612vw;
}

.l-header .logo .txt {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--mainColor);
  text-align: center;
}

.l-header .logo .txt .s {
  font-size: 93.4%;
}

.l-header_menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  font-size: 1.8rem;
  padding: 2em 4% 4em;
  background: #ecf5fe;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.is-menuOpen .l-header_menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.l-header_menu .parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: wrap column;
          flex-flow: wrap column;
  gap: 1.8em 7em;
  max-width: 820px;
  max-height: 14.5em;
  margin: 0 auto;
}

.l-header_menu .parent > li > a {
  font-weight: bold;
}

.l-header_menu .child {
  font-size: 88.9%;
}

.l-header_menu .child > li {
  margin-top: 0.75em;
}

.l-header_menu .child > li > a {
  font-weight: 500;
}

.l-header_menu > ul a {
  -webkit-transition: 0.15s;
  transition: 0.15s;
}

.l-header_menu > ul a:hover {
  color: var(--mainColor);
}

@media screen and (max-width: 1499px) {
  .l-header_inner {
    height: 6vw;
    padding: 0.75vw 1.4%;
  }
  .l-header .logo {
    gap: 1.5vw;
  }
  .l-header .logo .txt {
    font-size: 1.2vw;
  }
}

@media screen and (max-width: 1360px) {
  .l-header_menu {
    font-size: 1.34vw;
  }
}

@media screen and (max-width: 800px) {
  .l-header_inner {
    height: 18vw;
    padding: 0.75vw 4%;
  }
  .l-header .logo {
    gap: 4.5vw;
  }
  .l-header .logo img {
    width: 242px;
    max-width: 24.2vw;
  }
  .l-header .logo .txt {
    font-size: max(3.6vw,.36px);
  }
  .l-header_menu {
    font-size: 4vw;
    padding: 3em 1em;
    max-height: calc(100vh - 18vw);
    overflow: auto;
  }
  .l-header_menu::-webkit-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: var(--maincolor) rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    width: 4px;
  }
  .l-header_menu::-webkit-scrollbar-thumb {
    background: var(--mainColor);
    border-radius: 4px;
  }
  .l-header_menu .parent {
    max-height: none;
    gap: 2em;
    padding-left: 2.25em;
  }
  .l-header_menu .btns {
    margin-top: 2em;
  }
  .l-header_menu .btns .c-btn {
    font-size: 4vw;
    max-width: 100%;
  }
}

#globalNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

#globalNav .parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2em;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: -0.025em;
}

#globalNav .parent > li > a {
  -webkit-transition: 0.15s;
  transition: 0.15s;
  position: relative;
}

#globalNav .parent > li > a:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25em;
  margin: auto;
  width: 0;
  height: 1px;
  background: currentColor;
  border-radius: 3px;
  -webkit-transition: inherit;
  transition: inherit;
}

#globalNav .parent > li > a:hover {
  color: var(--mainColor);
}

#globalNav .parent > li > a:hover:after {
  width: 100%;
}

#globalNav .parent > li.current > a:after {
  bottom: -0.75em;
  width: 100%;
  height: 3px;
  background: var(--mainColor);
}

#globalNav .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

#globalNav .btns .c-btn {
  font-size: 1.6rem;
}

@media screen and (max-width: 1499px) {
  #globalNav {
    gap: 1.5vw;
  }
  #globalNav .parent {
    font-size: 1.05vw;
    gap: 1em;
  }
  #globalNav .btns .c-btn {
    font-size: 1.05vw;
  }
}

#hamburger {
  font-size: 3rem;
  width: 1em;
  aspect-ratio: 1 / 0.77;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 103;
  cursor: pointer;
  position: relative;
}

#hamburger span {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 0.13em;
  background: var(--textColor);
  display: block;
  -webkit-transition: .5s;
  transition: .5s;
}

#hamburger span:nth-child(1) {
  top: 0;
}

#hamburger span:nth-child(2) {
  top: 0;
  bottom: 0;
}

#hamburger span:nth-child(3) {
  bottom: 0;
}

.is-menuOpen #hamburger span:nth-child(1) {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  top: 50%;
}

.is-menuOpen #hamburger span:nth-child(2) {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  opacity: 0;
}

.is-menuOpen #hamburger span:nth-child(3) {
  -webkit-transform: translateY(50%) rotate(-45deg);
          transform: translateY(50%) rotate(-45deg);
  bottom: 50%;
}

@media screen and (max-width: 1499px) {
  #hamburger {
    font-size: 2.2vw;
  }
}

@media screen and (max-width: 800px) {
  #hamburger {
    font-size: 9vw;
  }
}

.l-footer {
  padding: 175px 0 50px;
  position: relative;
  z-index: 101;
}

.l-footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ecf5fe;
  -webkit-mask: url(../img/mask/mask_wave2.svg) no-repeat center top/100% 8vw, linear-gradient(transparent calc(8vw - 1px), #000 calc(8vw - 1px));
          mask: url(../img/mask/mask_wave2.svg) no-repeat center top/100% 8vw, linear-gradient(transparent calc(8vw - 1px), #000 calc(8vw - 1px));
  z-index: -2;
}

.l-footer:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4.4vw;
  background: -webkit-gradient(linear, left top, right top, from(#b4d5fd), to(#cff58e));
  background: linear-gradient(90deg, #b4d5fd, #cff58e);
  -webkit-mask: url(../img/mask/mask_wave3.svg) no-repeat center bottom/100% 100%;
          mask: url(../img/mask/mask_wave3.svg) no-repeat center bottom/100% 100%;
  z-index: -1;
}

.l-footer .block1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.l-footer .block1 .c-btn {
  font-size: 2.4rem;
  max-width: 100%;
}

.l-footer .block2 {
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid #bfd1e2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 74px;
}

.l-footer .block2 .--item01 {
  width: 21%;
}

.l-footer .block2 .--item01 .logo {
  width: 164px;
  max-width: 100%;
}

.l-footer .block2 .--item01 .companyName {
  font-size: 2.4rem;
}

.l-footer .block2 .--item01 .address {
  font-size: 1.4rem;
}

.l-footer .block2 .--item01 .tel {
  font-size: 1.4rem;
}

.l-footer .block2 .--item01 .c-btn {
  font-size: 1.4rem;
  white-space: nowrap;
}

.l-footer .block2 .--item02 {
  width: calc(51% - 148px);
}

.l-footer .block2 .--item03 {
  width: 28%;
}

.l-footer .block2 .--item03 img {
  border-radius: 20px;
}

.l-footer_menu {
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3em;
}

.l-footer_menu .parent > li + li {
  margin-top: 2.75em;
}

.l-footer_menu .parent > li > a {
  font-weight: bold;
}

.l-footer_menu .child {
  font-size: 93%;
}

.l-footer_menu .child > li {
  margin-top: 0.75em;
}

.l-footer_menu a {
  -webkit-transition: 0.15s;
  transition: 0.15s;
}

.l-footer_menu a:hover {
  color: var(--mainColor);
}

.l-footer .copyright {
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  margin-top: 3.5em;
}

@media screen and (max-width: 1360px) {
  .l-footer {
    padding: 13% 0 3.7%;
  }
  .l-footer .block1 {
    gap: 3vw;
  }
  .l-footer .block1 .c-btn {
    font-size: 1.8vw;
  }
  .l-footer .block2 {
    margin-top: 4.5%;
    padding-top: 3.7%;
    gap: 5.5vw;
  }
  .l-footer .block2 .--item01 .companyName {
    font-size: 1.8vw;
  }
  .l-footer .block2 .--item01 .address, .l-footer .block2 .--item01 .tel {
    font-size: 1.06vw;
  }
  .l-footer .block2 .--item01 .c-btn {
    font-size: 1.04vw;
  }
  .l-footer .block2 .--item02 {
    width: calc(51% - 11vw);
  }
  .l-footer .block2 .--item03 img {
    border-radius: 1.5vw;
  }
  .l-footer_menu {
    font-size: 1.04vw;
  }
  .l-footer .copyright {
    font-size: 1vw;
  }
}

@media screen and (max-width: 800px) {
  .l-footer {
    padding: 18% 0 20%;
  }
  .l-footer:after {
    height: 15.4vw;
    -webkit-mask: url(../img/mask/mask_wave5.svg) no-repeat center bottom/100% 100%;
            mask: url(../img/mask/mask_wave5.svg) no-repeat center bottom/100% 100%;
  }
  .l-footer .block1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .l-footer .block1 .c-btn {
    font-size: 4vw;
  }
  .l-footer .block2 {
    margin-top: 8.4vw;
    padding-top: 8.4vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 9vw;
  }
  .l-footer .block2 .--item01 {
    width: 100%;
  }
  .l-footer .block2 .--item01 .logo {
    max-width: 36%;
  }
  .l-footer .block2 .--item01 .companyName {
    font-size: 5vw;
  }
  .l-footer .block2 .--item01 .address, .l-footer .block2 .--item01 .tel {
    font-size: 4vw;
  }
  .l-footer .block2 .--item01 .c-btn {
    font-size: 4.2vw;
  }
  .l-footer .block2 .--item02 {
    width: 100%;
  }
  .l-footer .block2 .--item03 {
    width: 100%;
  }
  .l-footer_menu {
    font-size: 3.8vw;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1em;
  }
  .l-footer_menu > * {
    width: calc(calc(100% - 1em) / 2);
  }
  .l-footer_menu .parent > li + li {
    margin-top: 2em;
  }
  .l-footer_menu .child > li {
    margin-top: 1.5em;
  }
  .l-footer .copyright {
    font-size: 3vw;
  }
}

#totop {
  position: absolute;
  top: 75px;
  right: 2.5vw;
  width: 60px;
  max-width: 4.5vw;
  aspect-ratio: 1 / 1;
  z-index: 102;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#totop.fixed {
  position: fixed;
  top: auto;
  right: 2.5vw;
  bottom: 2.5vw;
}

#totop.active {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (max-width: 1360px) {
  #totop {
    top: 5.6vw;
  }
}

@media screen and (max-width: 800px) {
  #totop {
    top: auto;
    bottom: 10vw;
    max-width: 12vw;
  }
}

/* container */
.l-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

@media screen and (max-width: 1360px) {
  .l-container {
    padding-left: 4%;
    padding-right: 4%;
  }
}

/* PC/SP */
@media screen and (min-width: 801px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 800px) {
  .pc {
    display: none !important;
  }
}

/* clearfix */
.clearfix:after {
  content: '';
  display: block;
  clear: both;
}

.l-main_column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  margin-bottom: 80px;
}

.l-main_side {
  width: 264px;
}

.l-main_content {
  width: calc((100% - 344px));
}

@media screen and (max-width: 1360px) {
  .l-main_column {
    gap: 6vw;
    margin-bottom: 6vw;
  }
  .l-main_side {
    width: 19.7vw;
  }
  .l-main_content {
    width: calc(100% - 15.7vw);
  }
}

@media screen and (max-width: 800px) {
  .l-main_column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 6vw;
  }
  .l-main_side {
    width: 100%;
  }
  .l-main_content {
    width: 100%;
  }
}

#sideMenu {
  position: sticky;
  top: 100px;
  left: 0;
}

#sideMenu .anchor {
  background: var(--highlight);
  border-radius: 14px;
  padding: 2.2em 2.4em 2.6em;
  font-size: 1.6rem;
  font-weight: bold;
}

#sideMenu .anchor > li + li {
  margin-top: 1.6em;
}

#sideMenu .anchor > li.current {
  color: var(--mainColor);
}

#sideMenu .anchor > li a {
  -webkit-transition: 0.15s;
  transition: 0.15s;
}

#sideMenu .anchor > li a:hover {
  color: var(--mainColor);
}

#sideMenu .buttons > li + li {
  margin-top: 0.5em;
}

#sideMenu .buttons > li > * {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  width: 100%;
  min-height: 2.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  padding: 0.25em 1em;
  margin: 0 auto;
  color: var(--mainColor);
  background: #fff;
  border: 1px solid var(--mainColor);
  border-radius: 3em;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#sideMenu .buttons > li > * .arrow {
  width: 0.625em;
  height: 0.8125em;
  background: currentColor;
  -webkit-mask: url(../img/icons/arrow001.svg) no-repeat center/contain;
          mask: url(../img/icons/arrow001.svg) no-repeat center/contain;
}

#sideMenu .buttons > li > *.disabled {
  cursor: none;
  pointer-events: none;
  color: #fff;
  background: #bec9d4;
  border-color: #bec9d4;
}

#sideMenu .buttons > li > *:hover {
  color: #fff;
  background: var(--mainColor);
}

@media screen and (max-width: 1360px) {
  #sideMenu {
    top: calc(6vw + 20px);
  }
  #sideMenu .anchor {
    font-size: 1.2vw;
    border-radius: 1.04vw;
    padding: 1.5em 1.7em 1.9em;
  }
  #sideMenu .buttons > li > * {
    font-size: 1.2vw;
  }
}

@media screen and (max-width: 800px) {
  #sideMenu .anchor {
    font-size: 5vw;
    border-radius: 1.75vw;
  }
  #sideMenu .anchor > li + li {
    margin-top: 1em;
  }
  #sideMenu .buttons > li > * {
    font-size: 4.5vw;
  }
}

#contentsNav > ul {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#contentsNav > ul > li {
  position: relative;
}

#contentsNav > ul > li + li:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 100%;
  background: #bfd1e2;
}

#contentsNav > ul > li > * {
  display: block;
  padding: 1em 3em 1em 7em;
}

#contentsNav > ul > li > * img {
  position: absolute;
  top: 0;
  left: 3em;
  bottom: 0;
  margin: auto;
  width: 3.25em;
}

#contentsNav > ul > li > a {
  -webkit-transition: 0.15s;
  transition: 0.15s;
  position: relative;
  z-index: 1;
}

#contentsNav > ul > li > a:after {
  content: '';
  position: absolute;
  top: 105%;
  left: 0;
  right: 0;
  margin: auto;
  width: 1em;
  aspect-ratio: 1 / 0.45;
  background: var(--mainColor);
  -webkit-mask: url(../img/icons/arrow002.svg) no-repeat center/contain;
          mask: url(../img/icons/arrow002.svg) no-repeat center/contain;
  -webkit-transition: inherit;
  transition: inherit;
}

#contentsNav > ul > li > a:hover, #contentsNav > ul > li > a:focus-visible {
  color: var(--mainColor);
}

#contentsNav > ul > li > a:hover:after, #contentsNav > ul > li > a:focus-visible:after {
  top: 110%;
}

@media screen and (max-width: 1360px) {
  #contentsNav > ul {
    font-size: 1.5vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsNav > ul {
    font-size: 4vw;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4vw;
    padding: 0 4%;
  }
  #contentsNav > ul > li {
    width: calc(calc(100% - 4vw) / 2);
  }
  #contentsNav > ul > li.--w1 {
    width: 100%;
  }
  #contentsNav > ul > li:before {
    content: none !important;
  }
  #contentsNav > ul > li > * {
    padding: 4.5em 1em 1.5em;
    border-radius: 8vw;
    -webkit-box-shadow: 2.5px 3.1px 3.5vw rgba(4, 0, 0, 0.08);
            box-shadow: 2.5px 3.1px 3.5vw rgba(4, 0, 0, 0.08);
  }
  #contentsNav > ul > li > * img {
    top: 1em;
    left: 0;
    right: 0;
    bottom: auto;
    margin: auto;
    z-index: -1;
    opacity: 0.5;
  }
  #contentsNav > ul > li > a:after {
    top: auto;
    bottom: 5%;
  }
  #contentsNav > ul > li > a:hover {
    background: var(--highlight);
  }
  #contentsNav > ul > li > a:hover:after {
    top: auto;
    bottom: 2%;
  }
}
