/* ============================================
   About Page
   ============================================ */

/* --- Marble Background --- */
#about-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* --- About Content --- */
.about-content {
  padding: 0 var(--padding-x);
  padding-top: var(--fv-padding-top);
  padding-bottom: 226rem;
  position: relative;
  z-index: 1;
}

.about-title {
  font-family: var(--font-en);
  font-size: var(--fv-title-font-size);
  font-weight: normal;
  line-height: normal;
  margin-bottom: var(--fv-title-margin-bottom);
}

.about-content .text-fit {
  margin-bottom: var(--fv-logo-margin-bottom);
}

.about-intro {
  font-size: 23rem;
  letter-spacing: 1.15rem;
  line-height: 1.9;
  max-width: 720rem;
  margin: 0 auto;
  margin-bottom: 180rem;
}

html[lang="en"] .about-intro {
  letter-spacing: 0;
  line-height: 1.8;
}

/* --- Tri-Process Cycle --- */
.about-cycle {
  text-align: center;
  margin-bottom: 120rem;

  .cycle-diagram {
    margin: 0 auto;
    max-width: 1047rem;
    img {
      margin: 0 auto;
      width: 100%;
      height: auto;
    }
  }

  .cycle-label {
    font-family: var(--font-en);
    font-size: 12rem;
    line-height: 2.4;
    margin-top: 10rem;
  }
}

.about-pillars {
  display: flex;
  gap: 71rem;
  justify-content: center;

  .pillar {
    flex: 0 0 347rem;
    text-align: center;

    .pillar-title {
      font-family: var(--font-ja);
      font-size: 30rem;
      font-weight: normal;
      letter-spacing: 1.5rem;
      line-height: 1.81;
    }

    .pillar-subtitle {
      font-family: var(--font-en);
      font-size: 14rem;
      line-height: 1.81;
      margin-bottom: 25rem;
    }

    .pillar-desc {
      font-family: var(--font-ja);
      font-size: 16rem;
      letter-spacing: 0.8rem;
      line-height: 1.7;
    }
  }
}

/* --- Yearly Goals --- */
.about-goals {
  padding: 0 var(--padding-x);
  padding-bottom: 233rem;

  .goals-heading {
    font-family: var(--font-ja);
    font-size: 32rem;
    font-weight: normal;
    letter-spacing: 1.6rem;
    line-height: 1.63;
    text-align: center;
    margin-bottom: 98rem;
  }

  .goals-desc {
    font-family: var(--font-ja);
    font-size: 21rem;
    letter-spacing: 1.05rem;
    line-height: 1.81;
    max-width: 720rem;
    margin: 0 auto 99rem;
  }

  .goals-list {
    display: flex;
    gap: 54rem;
    justify-content: center;

    .goal {
      flex: 0 0 296rem;

      .goal-year {
        font-family: var(--font-en);
        font-size: 19rem;
        letter-spacing: 0.95rem;
        line-height: 1.81;
        margin-bottom: 49rem;
      }

      .goal-title {
        font-family: var(--font-ja);
        font-size: 29rem;
        font-weight: normal;
        letter-spacing: 1.45rem;
        line-height: 1.81;
        margin-bottom: 69rem;
      }

      .goal-bar {
        width: 100%;
        height: 5rem;
        background-color: #000;
      }
    }
  }
}

html[lang="en"] .about-goals .goals-list .goal .goal-title {
  font-size: 27rem;
}

/* --- Program Overview --- */
.about-program {
  padding: 0 var(--padding-x);
  padding-bottom: 340rem;
  text-align: center;

  .program-heading {
    font-family: var(--font-ja);
    font-size: 32rem;
    font-weight: normal;
    letter-spacing: 1.6rem;
    line-height: 1.63;
    margin-bottom: 96rem;
  }

  .program-desc {
    font-family: var(--font-ja);
    font-size: 21rem;
    letter-spacing: 1.05rem;
    line-height: 1.81;
    max-width: 720rem;
    margin: 0 auto 101rem;
    text-align: left;
  }

  .program-note {
    font-family: var(--font-ja);
    font-size: 16.8rem;
    color: #575757;
    letter-spacing: 0.84rem;
    line-height: 1.81;
    max-width: 720rem;
    margin: 0 auto;
    text-align: left;
  }
}

/* ============================================
   Responsive - SP
   ============================================ */
@media (max-width: 700px) {
  .about-content {
    padding-bottom: 170rem;
  }

  .about-intro {
    font-size: 15rem;
    letter-spacing: 0.75rem;
    line-height: 2;
    margin-bottom: 68rem;
  }

  .about-cycle {
    margin-bottom: 51rem;

    .cycle-diagram {
      max-width: 100%;
    }

    .cycle-label {
      font-size: 10rem;
    }
  }

  .about-pillars {
    flex-direction: column;
    gap: 51rem;
    align-items: center;

    .pillar {
      flex: none;
      width: 100%;

      .pillar-title {
        font-size: 22rem;
        letter-spacing: 1.1rem;
        line-height: 1.81;
      }

      .pillar-subtitle {
        font-size: 10rem;
        line-height: 1.81;
        margin-bottom: 13rem;
      }

      .pillar-desc {
        font-size: 13rem;
        letter-spacing: 0.65rem;
        line-height: 1.7;
      }
    }
  }

  .about-goals {
    padding-bottom: 166rem;

    .goals-heading {
      font-size: 23rem;
      letter-spacing: 1.15rem;
      line-height: 1.8;
      text-align: left;
      margin-bottom: 44rem;
    }

    .goals-desc {
      font-size: 15rem;
      letter-spacing: 0.75rem;
      line-height: 2;
      margin-bottom: 56rem;
    }

    .goals-list {
      flex-direction: column;
      gap: 50rem;

      .goal {
        flex: none;
        width: 100%;
        display: flex;
        flex-direction: column;

        .goal-bar {
          order: -1;
          height: 3rem;
          margin-bottom: 28rem;
        }

        .goal-year {
          font-size: 12rem;
          letter-spacing: 0.6rem;
          line-height: 1;
          margin-bottom: 33rem;
        }

        .goal-title {
          font-size: 18rem;
          letter-spacing: 0.9rem;
          line-height: 1.81;
          margin-bottom: 0;
        }
      }
    }
  }

  .about-program {
    padding-bottom: 20rem;
    text-align: left;

    .program-heading {
      font-size: 23rem;
      letter-spacing: 1.15rem;
      line-height: 1.8;
      margin-bottom: 44rem;
    }

    .program-desc {
      font-size: 15rem;
      letter-spacing: 0.75rem;
      line-height: 2;
      margin-bottom: 49rem;
    }

    .program-note {
      font-size: 11rem;
      letter-spacing: 0.55rem;
      line-height: 1.81;
    }
  }
}
