@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;
  }
}

/*----------------追加20260331---------------------*/
.top-description .period {
  margin-bottom: 2.5rem;
}
.top-description__main {
  padding: clamp(4rem, 6vw, 6rem) 6%;
}
.top-description .period .add {
  display: flex;
  align-items: center;
  margin-top: 0.3rem;
  justify-content: center;
  gap: 1rem;
  .top-description__item--title {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    margin: 0;
    white-space: nowrap;
    padding: 0.4rem 0.7rem;
  }
  .number {
    font-size: clamp(1.7rem, 2vw, 2rem);
    width: fit-content;
  }
  .emphasis {
    font-size: clamp(2.3rem, 2.4vw, 2.6rem);
  }
  .date {
    font-size: clamp(1.8rem, 2vw, 2.2rem);
  }
}
