@charset "UTF-8";
/* 
------------------------------------------------------------------------------
修正用共通CSS（原則修正時は既存CSSファイルを編集せずuniq.cssで上書きしてください）
------------------------------------------------------------------------------
/*-----追加260303--------------------------------*/
.top-strength tr td.tr-com span.number {
  margin-top: -0.3em;
}
.top-description__item:nth-child(3) .period .title .s-text {
  margin-top: 0.6rem;
}
.top-course__links {
  margin: 0;
  column-gap: 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "pink purple"
    "blue blue";
}
.top-course__link.pink {
  grid-area: pink;
}
.top-course__link.purple {
  grid-area: purple;
}
.top-course__link.blue {
  grid-area: blue;
}
.top-course__links-area {
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 4rem;
}
@media (max-width: 834px) {
  .top-course__links {
    width: 100%;
    gap: 1.2rem 3rem;
  }
}
