@charset "UTF-8";

/*-------------------------------------------------------------------------
                            /研修コースページ共通スタイル/
    career_plan の子ページ（各研修コースページ）で使用する共通CSS
-------------------------------------------------------------------------*/

/* セクション見出し */
.section_p_1 {
  margin-top: 100px;
}
.section_p_2 {
  margin-top: 24px;
  font-size: 14px;
  color: #707070;
}

/* コースリスト（順序付き） */
.course-ol {
  margin-left: 20px;
}
.course-ol li {
  margin-bottom: 24px;
}

/* コースリスト（順序なし） */
.course-ul {
  margin-left: 20px;
  margin-bottom: 40px;
}
.course-ul li {
  margin-bottom: 12px;
  position: relative;
}
.course-ul li::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 14px;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: #326a3a;
}

/* コースサブリスト */
.course-ul-sub {
  margin-left: 40px;
}
.course-ul-sub li {
  margin-bottom: 12px;
  position: relative;
}
.course-ul-sub li::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 14px;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  background-color: #000;
}

/* スペーサー */
.spacer_1 {
  height: 120px;
}
.spacer_2 {
  height: 80px;
}
.spacer_3 {
  height: 40px;
}

/* マージンユーティリティ */
.mt-16 {
  margin-top: 16px !important;
}
.mb-8 {
  margin-bottom: 8px !important;
}

/* フレックスコンテンツ */
.flex_wrap_content {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}
.flex_wrap_content img {
  aspect-ratio: 3 / 2;
  width: 100%;
  max-width: 430px;
  object-fit: cover;
}

/* コース補足説明 */
.course-sub-desc {
  font-size: 14px;
  line-height: 24px;
  padding-left: 18px;
  position: relative;
}
.course-sub-desc::after {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

/* リンク */
a {
  display: inline;
}

/* プロフィールカード */
.flex_wrap_content__prof:not(:last-of-type) {
  margin-bottom: 24px;
}
.flex_wrap_content__prof img {
  aspect-ratio: unset;
  width: 120px;
  height: auto;
}
.flex_wrap_content__prof p {
  font-size: 14px;
  line-height: 1.25;
  margin: 6.25px 0 -1.75px;
  text-align: center;
}

@media (max-width: 767px) {
  .flex_wrap_content {
    flex-wrap: wrap-reverse;
  }
}
