@charset "UTF-8";
/*----------------------------------------------------
  変数セット
----------------------------------------------------*/
/*----------------------------------------------------
  メイン
----------------------------------------------------*/
.main-wrap {
  display: grid;
  grid-template-areas: "stack";
  place-items: center;
  margin-inline: auto;
  height: 370px;
}
@media screen and (max-width: 767.98px) {
  .main-wrap {
    padding-top: 6.5rem;
    height: 250px;
  }
}
.main-wrap .page-title {
  display: inline-block;
}
.main-wrap .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: relative;
  z-index: 1;
}
.main-wrap .container .text-area {
  z-index: 1;
  font-weight: 700;
  height: 100%;
  grid-area: stack;
  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;
  margin-right: auto;
  max-width: 1400px;
  width: 100%;
  padding: 0 3rem;
}
@media screen and (max-width: 767.98px) {
  .main-wrap .container .text-area {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    top: 30%;
    left: 2rem;
    font-size: 8vw;
    padding: 0 2rem;
  }
}
.main-wrap .image-canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  grid-area: stack;
  margin-left: auto;
}
.main-wrap .image-canvas .dots-area {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}
.main-wrap .image-canvas .dots-area .dot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  translate: -50% -50%;
  width: clamp(32px, var(--s, 2.4) * 1vw, 128px);
  aspect-ratio: 1/1;
  border-radius: 50%;
}
@media screen and (max-width: 767.98px) {
  .main-wrap .image-canvas .dots-area .dot {
    width: clamp(24px, var(--s, 2.4) * 1vw, 128px);
  }
}
.main-wrap .image-canvas .dots-area .dot-red {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  background: #C94A4A;
}
.main-wrap .image-canvas .dots-area .dot-blue {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  background: #4A6FA8;
}
.main-wrap .image-canvas .dots-area .dot-yellow {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  background: #EEAE50;
}
.main-wrap .image-canvas .dots-area .dot-01 {
  --x: 70%;
  --y: 27%;
  --s: 4;
}
@media screen and (max-width: 767.98px) {
  .main-wrap .image-canvas .dots-area .dot-01 {
    --x: 70%;
    --y: 27%;
    --s: 4;
  }
}
.main-wrap .image-canvas .dots-area .dot-02 {
  --x: 80%;
  --y: 52%;
  --s: 3;
}
@media screen and (max-width: 767.98px) {
  .main-wrap .image-canvas .dots-area .dot-02 {
    --x: 80%;
    --y: 52%;
    --s: 3;
  }
}
.main-wrap .image-canvas .dots-area .dot-03 {
  --x: 90%;
  --y: 15%;
  --s: 2;
}
@media screen and (max-width: 767.98px) {
  .main-wrap .image-canvas .dots-area .dot-03 {
    --x: 90%;
    --y: 15%;
    --s: 2;
  }
}
.main-wrap .image-canvas .dots-area .dot-04 {
  --x: 95%;
  --y: 50%;
  --s: 10;
}
@media screen and (max-width: 767.98px) {
  .main-wrap .image-canvas .dots-area .dot-04 {
    --x: 95%;
    --y: 50%;
    --s: 10;
  }
}

.section-wrap .section-inner {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}
.section-wrap .contents-title {
  font-size: 2.4rem;
  margin-top: 8rem;
  margin-bottom: 0.5em;
  font-weight: 700;
}
@media screen and (max-width: 767.98px) {
  .section-wrap .contents-title {
    font-size: 2rem;
    margin-top: 5rem;
  }
}