/* Junior Course Split Layout - Basic and Middle courses */

/* PC: 横並び */
/* PC時の調整 */
@media (min-width: 768px) {
  .course-content__course-section-label {
    display: inline-block;
    margin-right: 0.5rem;
    margin-bottom: 0;
  }

  .course-content__course-section-content {
    display: inline;
  }
}

@media (min-width: 768px) {
  .course-content--split {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
  }

  .course-content--split__section {
    flex: 1;
    border: 1px solid #e0e0e0;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 0;
  }
}

/* SP: 縦並び（デフォルト） */
@media (max-width: 767px) {
.course-content--split__section {
  margin-bottom: 2rem;
  border: 1px solid #e0e0e0;
  padding: 1.5rem;
  border-radius: 4px;
}

/* 週１サポートコースの上にマージン（2番目のセクション） */
.course-content--split__section:not(:first-child) {
  margin-top: 1.5rem;
}
}

.course-content--split__section:last-child {
  margin-bottom: 0;
}

/* セクションタイトル */
.course-content__course-section-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
  line-height: 1.5;
}

/* セクションリスト */
.course-content__course-section-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.course-content__course-section-item {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.course-content__course-section-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* ラベル */
.course-content__course-section-label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #333;
}

/* コンテンツ */
.course-content__course-section-content {
  display: block;
  color: #666;
  line-height: 1.6;
}

/* 週１サポートコース料金表の上にマージン（2番目の料金表） */
.course-content__price .course-content__price-title:nth-of-type(2) {
  margin-top: 1.5rem;
}