/* Import common styles from course-common.css */
@import url('./course-common.css');


/* 共通部品の上書き */
.course1-wrapper {
  .course-learn-container {
    background-image: url('../images/course1/learn-bg.webp');


  }

  @media screen and (max-width: 768px) {
    .course-learn-container {
      min-height: 200vw;
      background-image: url('../images/course1/learn-bg-sp.webp');
    }
  }

  @media screen and (max-width: 375px) {
    .course-learn-container {
      h3 {
        font-size: 15px;
      }
    }

    .course-subject-container {
      .title-main {
        font-size: 15px;
      }
    }

    .course-seminar-container {
      .title-main {
        font-size: 15px;
      }
    }

    .course-path-container {
      .title-main {
        font-size: 16px;
      }
    }

  }
}

/* コース1固有のスタイル */