@charset "utf-8";
:root {
  --ed-sky: #afe6ff;
  --ed-pink: #f7b5af;
  --ed-purple: #d0abca;
  --ed-blue: #0d64b0;
  --ed-magenta: #a98b99;
  --ed-brown: #a58c78;
  --ed-salmon: #e38aa7;
  --ed-gray: #abb6c8;
}


.section-outer .section-block__inner {
  padding: 56px 0;
}

.section-outer .section-block.left .section-block__inner {
  margin-left: 2.597cqw;
}

.bg-gl {
  margin-bottom: 60px;
  padding-bottom: 136px;
  @media screen and (max-width: 768px) {
    padding-bottom: 64px;
  }
}

.sec-head {
  position: relative;
  width: fit-content;
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  margin-inline: auto;
  @media screen and (max-width: 768px) {
    font-size: 2rem;
  }
  &.underline {
    &::before {
      content: "" ;
      position: absolute;
      bottom: 0;
      left: 50%;
      translate: -50% 0;
      width: 100%;
      height: 2px;
      background: var(--white);
      z-index: 1;
    }
  }
}

.head-num__unit {
  position: relative;
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  &::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 1px;
    background: var(--black);
    bottom: -8px;
    left: 4px;
    translate: 0 -50%;
    z-index: 1;
  }
  .num {
    font-family: var(--font-roboto);
    font-size: 8.8rem;
    font-weight: 500;
    color: var(--blue);
    line-height: 1;
  }
  .head {
    font-size: 3.2rem;
    line-height: 1.6;
  }
}

.section-outer .block-list {
  gap: 40px;
  padding-right: 40px;
}

.section-outer .block-list__item:has(.text) {
  width: calc((100% - 120px) / 2);
}

.section-outer .block-list__item:has:not(.text) {
  width: calc(100%  / 2);
} 

.section-outer .block-list__item .link {
  position: relative;
  font-size: 1.6rem;
  display: grid;
  place-content: center;
  aspect-ratio: 208/40;
  margin-top: 16px;
  width: 208px;
  border-radius: 50vmax;
  border: 2px solid var(--black);
  transition: ease 300ms opacity;
  &::before {
    content: "" ;
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    right: 16px;
    width: 8px;
    height: 8px;
    border-right: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
    rotate: -45deg;
    z-index: 1;
  }
  @media (any-hover: hover) {
    &:hover{
      opacity: .6;
    }
  }
}

section + section {
  margin-top: 60px;
  @media screen and (max-width: 768px) {
    margin-top: 24px;
  }
}
/* 
.sec-inner {
  max-width: calc(1040px + 72px);
  padding-inline: 36px;
  margin-inline: auto;
} */

.bg-inner {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 40px;
  @media screen and (max-width: 768px) {
    padding-inline: 16px;
  }
}

.intro {
  padding-block: 64px 40px;
  @media screen and (max-width: 768px) {
    padding-block: 56px 24px;
  }
  .intro-text {
    max-width: 880px;
    margin-top: 16px;
    margin-inline: auto;
  }
}

section:not(.sibling-links) {
  background: var(--white);
  border-radius: 64px;
  container-type: inline-size;
  box-shadow: 2px 0px 6px rgba(0, 0, 0, 0.15);
  padding-inline: 32px;
  container-type: inline-size;
  @media screen and (max-width: 768px) {
    border-radius: 32px;
    padding-inline: 16px;
  }
}

.sec-skill {
  padding-block: 40px 56px;

  .center-text {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.66;
    margin-bottom: 36px;
    @media screen and (max-width: 768px) {
      font-size: 2rem;
    }
  }

  .num-list {
    display: grid;
    justify-content: center;
    gap: 0 8px;
    grid-template-areas:
      "num1 num1"
      "num2 num3";
    @container (max-width: 780px) {
      grid-template-areas:
      "num1"
      "num2"
      "num3";
      gap: 16px;
      .text {
        letter-spacing: .01em;
      }
    }
  }

  .num-item {
    max-width: 440px;
    border-radius: 50vmax;
    box-shadow: 2px 0px 6px rgba(0, 0, 0, 0.15);
    @media screen and (max-width: 768px) {
      border-radius: 64px;
    }

    .item-inner {
      padding: 66px 48px 80px;
      @container (max-width: 780px) {
        padding: 32px 56px;
      }
      @media screen and (max-width: 768px) {
        padding: 32px 10cqw;
      }
    }

    &.num-01 {
      background: var(--ed-sky);
      grid-area: num1;
      margin-inline: auto;
    }
    &.num-02 {
      background: var(--ed-pink);
      grid-area: num2;
    }
    &.num-03 {
      background: var(--ed-purple);
      grid-area: num3;
    }
  }

  .num-unit {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    @media screen and (max-width: 768px) {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
    &::before {
      content: "";
      position: absolute;
      width: 50px;
      height: 1px;
      background: var(--black);
      bottom: -8px;
      left: 4px;;
      translate: 0 -50%;
      z-index: 1;
      @media screen and (max-width: 768px) {
        width: 32px;
        left: 2px;
      }
      @media screen and (max-width: 768px) {
        bottom: -16px;
      }
    }

    .num {
      font-family: var(--font-roboto);
      font-size: 5.6rem;
      color: var(--white);
      line-height: 1;
      @media screen and (max-width: 768px) {
        font-size: 3.2rem;
      }
    }
    .num-head {
      font-size: 2.4rem;
      font-weight: 700;
      @media screen and (max-width: 768px) {
        font-size: 1.6rem;
      }
    }
  }

}

.sec-head.radius {
  font-size: 3.2rem;
  border-radius: 48px;
  background: var(--white);
  max-width: 560px;
  aspect-ratio: 560/96;
  width: 100%;
  margin-inline: auto;
  margin-top: 60px;
  margin-bottom: 16px;
  display: grid;
  place-content: center;
  letter-spacing: .1em;
  box-shadow: 2px 0px 6px rgba(0, 0, 0, 0.15);
  @media screen and (max-width: 768px) {
    font-size: 1.8rem;
  }
}

.sec-skill {
  padding-block: 40px 56px;
  @media screen and (max-width: 768px) {
    padding-block: 40px;
  }
}

.sec-training,
.sec-layer,
.sec-other,
.sec-chart {
  padding-block: 40px 56px;
  /* max-width: calc(1040px - 64px); */
  margin-inline: auto;
  @media screen and (max-width: 768px) {
    padding-block: 40px;
  }

  .sec-inner {
    padding-inline: 4.73cqw;
    @media screen and (max-width: 768px) {
      padding-inline: 16px;
    }
  }

  .head-text__unit .head {
    font-size: 3.2rem;
    @media screen and (max-width: 768px) {
      font-size: 1.8rem;
    }
    /* &::before {
      top: 64px;
    } */
  }
}

.sec-training  {

  .radius-unit__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    @container (max-width: 840px) {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    @container (max-width: 580px) {
      grid-template-columns: repeat(1, 1fr);
      gap: 16px;
    }

    .list-item {
      display: grid;
      grid-template-rows: subgrid;
      grid-row: span 2;
      color: var(--white);
      border-radius: 64px;
      box-shadow: 2px 0px 6px rgba(0, 0, 0, 0.15);
      @media screen and (max-width: 768px) {
        border-radius: 32px;
      }
      .item-inner {
        display: grid;
        grid-template-rows: subgrid;
        align-items: center;
        grid-row: span 2;
        gap: 32px;
        padding: 40px 4.0984cqw 62px;
        @media screen and (max-width: 768px) {
          padding: 32px 16px;
        }
      }
      .head {
        position: relative;
        grid-row: 1;
        font-size: 2.4rem;
        @media screen and (max-width: 768px) {
          font-size: 1.8rem;
        }
        &::before {
          content: "";
          position: absolute;
          bottom: -24px;
          left: 0;
          width: 50px;
          height: 1px;
          background: var(--white);
          z-index: 1;
          @media screen and (max-width: 768px) {
            bottom: -16px;
          }
        }
      }
      .text {
        position: relative;
        grid-row: 2;
      }
      &.blue {
        background: var(--ed-blue);
      }
      &.pink {
        background: var(--ed-pink);
      }
      &.brown {
        background: var(--ed-brown);
      }
      &.purple {
        background: var(--ed-purple);
      }
      &.salmon {
        background: var(--ed-salmon);
      }
      &.magenta {
        background: var(--ed-magenta);
      }
      &.gray {
        background: var(--ed-gray);
      }
      &.gray {
        background: var(--ed-gray);
      }
    }
  }

  .radius-item {
    border-radius: 64px;
    background: var(--gray-light);
    padding-block: 64px;
    margin-top: 20px;
    box-shadow: 2px 0px 6px rgba(0, 0, 0, 0.15);
    @media screen and (max-width: 768px) {
      border-radius: 32px;
      padding-block: 32px;
    }
    .item-inner {
      display: flex;
      gap: 36px;
      padding-inline: 4.0984cqw;
      @media screen and (max-width: 768px) {
        flex-direction: column;
        padding-inline: 16px;
      }
    }

    .head-text__unit {
      .head {
        font-size: 2.4rem;
        /* &::before {
          top: 56px;
        } */
      }
    }

    img {
      width: 39.345cqw;
      height: fit-content;
      @media screen and (max-width: 768px) {
        width: auto;
      }
    }
  }
}

.detail-list {
  display: flex;
  gap: 30px;
  @media screen and (max-width: 768px) {
    flex-direction: column;
    gap: 16px;
  }
  .list-item {
    border-radius: 64px;
    width: calc(calc(100% - 60px) / 3);
    padding-block: 40px;
    box-shadow: 2px 0px 6px rgba(0, 0, 0, 0.15);
    @media screen and (max-width: 768px) {
      max-width: 260px;
      width: 100%;
      margin-inline: auto;
      padding-block: 54px;
    }
  }
  .item-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding-inline: 3.6885cqw;
    @media screen and (max-width: 768px) {
      padding-inline: 32px;
    }
  }
  .detail-text {
    font-size: 2cqw;
    font-weight: 700;
    @media screen and (max-width: 768px) {
      font-size: 1.8rem;
    }
  }
}

.sec-layer {
  .list-item {
    background: var(--lime);
  }
}

.sec-other {
  .list-item {
    background: var(--gray-light);
  }
}

.sec-chart {
  @media screen and (max-width: 768px) {
    overflow: hidden;
  }

  .head-text__unit  {
    margin-bottom: 56px;
    @media screen and (max-width: 768px) {
      margin-bottom: 48px;
    }
    .head::before {
      content: "";
      position: absolute;
      width: 50px;
      height: 1px;
      background: var(--black);
      bottom: -24px;
      left: 0;
      translate: 0 -50%;
      z-index: 1;
    }
  }

  .figure-container {
    overflow-x: auto;
    @media screen and (max-width: 768px) {
      width: 100vw;
      .sp-scroll {
        width: 716px;
        aspect-ratio: 716 / 448;
      }
    }
  }
}
.lowerPage .fv .fv-img::before {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, .3) 0%, rgba(255, 255, 255, 0) 100%);
  width: 50%;
}

@media screen and (max-width: 768px) {
  .lowerPage .fv .fv-img::before {
    width: 78%;
    background-image: linear-gradient(to left, transparent, rgba(255, 255, 255, 0.1));
  }
}

.lowerPage .fv .fv-deco {
  z-index: 1;
}

@media screen and (min-width: 769px) {
  .lowerPage .fv .fv-heading {
    top: 20%;
  }

  .lowerPage .fv .fv-deco .triangle.-show[data-num=tri03] {
    display: none;
  }
}