/* ========================================================================== */
/* 共通インナー */
/* ========================================================================== */

.page-inner {
  margin: 0 auto;
  padding: 80px 100px;
}

.student-links {
  position: relative;
  z-index: 1;
}

/* ========================================================================== */
/* Color Variations */
/* ========================================================================== */

.student-card.is-sky .student-card-title {
  color: #1EA7E1;
}

.student-card.is-blue .student-card-title {
  color: var(--title-text-dark-blue);
}

/* ========================================================================== */
/* Card List */
/* ========================================================================== */

.student-card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* ========================================================================== */
/* Card Base */
/* ========================================================================== */

.student-card {
  display: block;
  position: relative;
}

.student-card-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* ========================================================================== */
/* Card Body (Gridの核) */
/* ========================================================================== */

.student-card-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  padding: 16px 24px;
}

.student-card-title {
  grid-column: 1;
  grid-row: 2;
  font-size: 36px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: 1.44px;
}

.student-card-action {
  align-self: auto;
}

.student-card-action img {
  width: 48px;
  height: 48px;
}

/* ========================================================================== */
/* @media：PC */
/* ========================================================================== */

@media (min-width: 1024px) {
  .student-page-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
  }

  .circle-right-img {
    position: absolute;
    right: -50px;
    top: 350px;
    width: 227px;
    height: 227px;
  }
}

/* ========================================================================== */
/* @media：TB */
/* ========================================================================== */

@media (max-width: 1023px) {
  .circle-right-img {
    display: none;
  }

  /* ==================================================== */
  /* 共通インナー */
  /* ==================================================== */

  .page-inner {
    padding: 64px 40px;
  }

  /* ==================================================== */
  /* Card List */
  /* ==================================================== */

  .student-card-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* ==================================================== */
  /* Card Body (Gridの核) */
  /* ==================================================== */

  .student-card-body {
    gap: 0;
  }

  .student-card-title {
    font-size: 24px;
  }
}

/* ========================================================================== */
/* @media：SP */
/* ========================================================================== */

@media (max-width: 767px) {
  /* ==================================================== */
  /* 共通インナー */
  /* ==================================================== */

  .page-inner {
    padding: 64px 24px;
  }

  /* ==================================================== */
  /* Card List */
  /* ==================================================== */

  .student-card-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* ==================================================== */
  /* Card Body (Gridの核) */
  /* ==================================================== */

  .student-card-body {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .student-card-title {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.96px;
  }

  .student-card-action {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media print {
  .student-card-list {
    display: flex;
    flex-direction: column;
  }
}