@media (min-width: 768px) {
  :root .sp {
    display: none;
  }
}
@media (max-width: 767px) {
  :root .pc {
    display: none;
  }
}

#mv {
  position: relative;
}
@media (min-width: 768px) {
  #mv {
    {* margin-top: 4rem; *}
  }
}
#mv .mv-animate {
  opacity: 0;
  -webkit-animation: mv 0.8s ease-in forwards;
          animation: mv 0.8s ease-in forwards;
}
#mv .bg {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(0, 204, 253)), to(rgb(51, 117, 228)));
  background: -webkit-linear-gradient(top, rgb(0, 204, 253) 0%, rgb(51, 117, 228) 100%);
  background: linear-gradient(180deg, rgb(0, 204, 253) 0%, rgb(51, 117, 228) 100%);
}
@media (min-width: 768px) {
  #mv .bg {
    text-align: center;
  }
  #mv .bg img {
    max-width: none;
    width: min(100%, 1520px);
    margin: 0 auto;
    mix-blend-mode: multiply;
    opacity: 0.6;
  }
}
#mv .hgroup {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
@media (min-width: 768px) {
  #mv .hgroup {
    width: min(100%, 1520px);
    margin: 0 auto;
    inset-inline: 0;
  }
}
#mv .hgroup .inner {
  background: rgba(244, 244, 244, 0.9);
  padding: 1rem 0.6rem 1.6rem;
  margin: 0 5%;
  border-radius: 3rem;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
#mv .hgroup .inner h2 {
  color: #0068B6;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5em;
}
#mv .hgroup .inner p {
  font-size: 0.52rem;
  text-align: justify;
  font-weight: 500;
  line-height: 1.8;
}
@media (min-width: 768px) {
  #mv .hgroup .inner {
    border-radius: 100vmax;
    width: min(90%, 1000px);
    margin: 0 auto;
    padding: 4% 13%;
  }
  #mv .hgroup .inner h2 {
    font-size: 36px;
  }
  #mv .hgroup .inner p {
    font-size: 20px;
  }
}

#intro .intro-second {
  background: #f4f4f4;
  padding: 1.4rem 0 0;
}
#intro .intro-second h3 {
  color: #0068B6;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5em;
}
#intro .intro-second p {
  font-size: 0.52rem;
  text-align: justify;
  font-weight: 500;
  line-height: 1.8;
  margin: 0 5%;
}
@media (min-width: 768px) {
  #intro .intro-second {
    padding: 60px 0 0;
  }
  #intro .intro-second h3 {
    font-size: 36px;
  }
  #intro .intro-second p {
    font-size: 20px;
    text-align: center;
  }
  #intro .intro-second p img {
    width: min(100%, 1000px);
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .container {
    width: min(100%, 1200px);
    margin: 0 auto;
  }
  #sec1 h2 {
    text-align: center;
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), color-stop(42%, rgb(255, 255, 255)), color-stop(42%, rgb(0, 204, 253)), to(rgb(51, 117, 228)));
    background: -webkit-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 42%, rgb(0, 204, 253) 42%, rgb(51, 117, 228) 100%);
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 42%, rgb(0, 204, 253) 42%, rgb(51, 117, 228) 100%);
  }
  #sec1 h2 img {
    width: min(100%, 1000px);
  }
  #sec2 h2 {
    text-align: center;
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), color-stop(48%, rgb(255, 255, 255)), color-stop(48%, rgb(0, 204, 253)), to(rgb(51, 117, 228)));
    background: -webkit-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 48%, rgb(0, 204, 253) 48%, rgb(51, 117, 228) 100%);
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 48%, rgb(0, 204, 253) 48%, rgb(51, 117, 228) 100%);
  }
  #sec2 h2 img {
    width: min(100%, 1000px);
  }
  .sec1_end {
    background: #f4f4f4;
    text-align: center;
    padding: 60px 0;
  }
  .sec1_end img {
    width: min(100%, 1000px);
  }
}
.sec2-block {
  padding: 1rem 0.8rem;
}
.sec2-block h4 {
  margin-bottom: 0.5rem;
}
.sec2-block p {
  font-size: 0.4rem;
  margin: 1em 0;
}
.sec2-block p.button {
  text-align: center;
  margin-bottom: 1rem;
}
.sec2-block p.button img {
  width: 6rem;
}
.sec2-block p + h4 {
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .sec2-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 5%;
    width: min(100%, 1000px);
    margin: 0 auto;
    row-gap: 30px;
  }
  .sec2-block.center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sec2-block .col {
    width: 30%;
  }
  .sec2-block .col p {
    font-size: 16px;
  }
  .sec2-block .col p.button {
    text-align: right;
  }
  .sec2-block .col p.button img {
    width: 60%;
  }
}

.sec1_lead3 {
  position: relative;
}
.sec1_lead3 .sub {
  display: block;
  position: absolute;
  width: 24%;
  top: 34%;
  right: 3%;
}
@media (min-width: 768px) {
  .sec1_lead3 .sub {
    width: 18%;
    top: 20%;
    right: 11%;
  }
}

.sec1_1_body1 {
  position: relative;
}
.sec1_1_body1 .sub {
  display: block;
  position: absolute;
  width: 21%;
  top: 5%;
  right: 9%;
}
@media (min-width: 768px) {
  .sec1_1_body1 .sub {
    width: 12.5%;
    top: 6%;
    right: 6%;
  }
}

.sec1_1_body2 {
  position: relative;
}
.sec1_1_body2 .sub {
  display: block;
  position: absolute;
  width: 21%;
  top: -1%;
  right: 9%;
}
@media (min-width: 768px) {
  .sec1_1_body2 .sub {
    width: 12.5%;
    top: -2%;
    right: 6%;
  }
}

.sec1_2_body1 {
  position: relative;
}
.sec1_2_body1 .sub {
  display: block;
  position: absolute;
  width: 21%;
  top: 5%;
  right: 9%;
}
@media (min-width: 768px) {
  .sec1_2_body1 .sub {
    width: 12.5%;
    top: 6%;
    right: 6%;
  }
}

.sec1_2_body2 {
  position: relative;
}
.sec1_2_body2 .sub {
  display: block;
  position: absolute;
  width: 21%;
  top: -1%;
  right: 9%;
}
@media (min-width: 768px) {
  .sec1_2_body2 .sub {
    width: 12.5%;
    top: -2%;
    right: 6%;
  }
}

.sec1_end {
  position: relative;
}
@media (min-width: 768px) {
  .sec1_end .inner {
    width: min(100%, 1000px);
    margin: 0 auto;
    position: relative;
  }
}
.sec1_end .sub1 {
  display: block;
  position: absolute;
  width: 19%;
  top: 20%;
  right: 9%;
}
@media (min-width: 768px) {
  .sec1_end .sub1 {
    width: 12.75%;
    top: 18%;
    right: 37%;
  }
}
.sec1_end .sub2 {
  display: block;
  position: absolute;
  width: 19%;
  top: 42%;
  right: 9%;
}
@media (min-width: 768px) {
  .sec1_end .sub2 {
    width: 12.75%;
    top: 57%;
    right: 37%;
  }
}

#sec3 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(0, 204, 253)), color-stop(52%, rgb(51, 117, 228)));
  background: -webkit-linear-gradient(top, rgb(0, 204, 253) 0%, rgb(51, 117, 228) 52%);
  background: linear-gradient(180deg, rgb(0, 204, 253) 0%, rgb(51, 117, 228) 52%);
}
#sec3 p {
  margin: 0 0.5rem 0.2rem;
}
#sec3 p.end {
  margin: 1.5rem 0 0;
}
@media (min-width: 768px) {
  #sec3 {
    padding-bottom: 80px;
  }
  #sec3 .row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: min(90%, 1120px);
    margin: 0 auto 5px;
    gap: 5px;
  }
  #sec3 .row:first-of-type {
    aspect-ratio: 720/164;
  }
  #sec3 .row:nth-of-type(2) {
    aspect-ratio: 720/272;
  }
  #sec3 .row:nth-of-type(3) {
    aspect-ratio: 720/302;
  }
  #sec3 .row:nth-of-type(4) {
    aspect-ratio: 720/314;
  }
  #sec3 .row:nth-of-type(5) {
    aspect-ratio: 720/327;
  }
  #sec3 .row:nth-of-type(6) {
    aspect-ratio: 720/225;
  }
  #sec3 .row p {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0;
    height: 100%;
  }
  #sec3 .row p img {
    width: auto;
    height: 100%;
  }
}

@-webkit-keyframes mv {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}

@keyframes mv {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .footer-pagetop {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 100;
    width: 58px;
    height: 58px;
    background-color: rgba(18, 102, 205, 0.9);
  }
  .footer-pagetop__link {
    position: relative;
    display: block;
    padding-top: 28px;
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: center;
    font-size: 11px;
  }
  .footer-pagetop__link:before {
    position: absolute;
    top: 18px;
    right: 0;
    left: 0;
    display: block;
    margin: auto;
    width: 12px;
    height: 12px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    content: "";
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}/*# sourceMappingURL=educational-capability.css.map */

/* 2026.04.27追記 */
@media (min-width: 881px) and (max-width: 1000px) {
  #intro {
    padding-top: 5%;
  }
}
@media (min-width: 870px) and (max-width: 880px) {
  #intro {
    padding-top: 7.5%;
  }
}
@media (min-width: 801px) and (max-width: 869px) {
  #intro {
    padding-top: 10%;
  }
}
@media (min-width: 778px) and (max-width: 800px) {
  #intro {
    padding-top: 20%;
  }
}
@media (min-width: 768px) and (max-width: 777px) {
  #intro {
    padding-top: 25%;
  }
}