@charset "utf-8";
  .subject-list {
    margin-top: 10px;
    border-top: 1px solid #ddd;
  }

  .subject-row {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
  }

  .subject-title {
    width: 150px;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.6;
  }

  .subject-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.8;
  }

  @media screen and (max-width: 768px) {
    .subject-row {
      display: block;
      padding: 16px 0;
    }

    .subject-title {
      width: auto;
      margin-bottom: 6px;
      font-size: 16px;
    }

    .subject-text {
      font-size: 14px;
      line-height: 1.8;
    }
  }




 .course-list {
    margin-top: 10px;
    border-top: 1px solid #ddd;
  }

  .course-row {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
  }

  .course-title {
    width: 220px;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.6;

  
    white-space: pre-line;
  }

  .course-term {
    flex: 1;
    font-size: 16px;
    line-height: 1.8;
    padding-left: 24px;
  }

  @media screen and (max-width: 768px) {
    .course-row {
      display: block;
      padding: 16px 0;
    }

    .course-title {
      width: auto;
      border-right: none;
      padding-right: 0;
      margin-bottom: 6px;
      font-size: 16px;
    }

    .course-term {
      padding-left: 0;
      font-size: 14px;
    }
  }





  .fee-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.1fr 1.1fr 1.4fr 1.2fr 1.2fr 1.1fr 1.1fr;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    width: 100%;
    font-size: 15px;
  }

  .fee-cell {
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 14px 12px;
    box-sizing: border-box;
    line-height: 1.8;
    background: #fff;
  }

  .fee-head {
    font-weight: 700;
    text-align: center;
    background: #f7f7f7;
  }

  .fee-center {
    text-align: center;
  }

  .fee-right {
    text-align: right;
    white-space: nowrap;
  }

  .fee-course {
    font-weight: 700;
    white-space: pre-line;
  }

  .fee-span-3 {
    grid-row: span 3;
  }

  .fee-note {
    white-space: pre-line;
  }

  .fee-total {
    font-weight: 700;
  }

  @media screen and (max-width: 768px) {
    .fee-grid {
      display: block;
      border: none;
      font-size: 14px;
    }

    .fee-head {
      display: none;
    }

    .fee-cell {
      border: none;
      padding: 0;
      background: transparent;
    }

    .fee-sp-group {
      border: 1px solid #ccc;
      margin-bottom: 16px;
      background: #fff;
    }

    .fee-sp-title {
      padding: 12px;
      font-weight: 700;
      border-bottom: 1px solid #ccc;
      background: #f7f7f7;
      line-height: 1.7;
    }

    .fee-sp-row {
      padding: 10px 12px;
      border-bottom: 1px solid #eee;
      line-height: 1.7;
    }

    .fee-sp-row:last-child {
      border-bottom: none;
    }

    .fee-sp-label {
      display: block;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .fee-pc {
      display: none;
    }
  }

  @media screen and (min-width: 769px) {
    .fee-sp {
      display: none;
    }
  }