/* ===============================================
 * WordPress管理バーを非表示
 * ============================================= */
#wpadminbar { display: none !important; }
html { margin-top: 0 !important; }

/* ===============================================
 * CSS変数
 * ============================================= */
/*

1. デフォルトスタイル = スマートフォン（SP）用
2. @media (min-width: 768px) = PC・タブレット用の上書き

*/

:root {
  --color-pink-50: rgba(252, 116, 100, 0.5);
  --color-green-50: rgba(95, 194, 121, 0.5);
  --color-orange-50: rgba(252, 116, 100, 0.5);
  --color-red: #FC7464;
  --color-green: #5FC279;
  --color-orange: #FC7464;
  --bg-color-cream: #FFF7D6;
  --bg-color-light-cream: #FFFDF1;

  /* フォントサイズスケール（モバイル） */
  --font-xs: 12px;
  --font-sm: 14px;
  --font-base: 16px;
  --font-lg: 18px;
  --font-xl: 20px;
  --font-2xl: 24px;

  /* フォントサイズスケール（PC） */
  --font-sm-pc: 16px;
  --font-base-pc: 18px;
  --font-lg-pc: 20px;
  --font-xl-pc: 24px;
  --font-2xl-pc: 28px;
  --font-3xl-pc: 32px;
}

/* ===============================================
 * 共通ユーティリティ
 * ============================================= */
a {
  text-decoration: none;
}

.font-orange {
  color: var(--color-orange);
}

.text-orange {
  color: #f3511a;
}

.text-marker {
  background: linear-gradient(transparent 60%, rgba(252, 205, 100, 0.5) 60%);
  padding: 0 2px;
}

.text-note {
  font-size: var(--font-xs);
  font-weight: 400;
  color: #666;
  margin-top: 8px;
}

.text-center {
  text-align: center;
}

.bg-cream {
  background-color: var(--bg-color-cream);
}

.bg-light-cream {
  background-color: var(--bg-color-light-cream);
}

/* ===============================================
 * 共通パーツ
 * ============================================= */

/* カード */
.c-card {
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.16);
}

/* 見出し（モバイルファースト） */
.c-heading {
  font-size: var(--font-xl);
  font-weight: bold;
  text-align: center;
  line-height: normal;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.c-heading--dot::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-color: #61C27B;
  border-radius: 50%;
}

.c-heading--dot.c-heading--green::after {
  width: 14px;
  height: 14px;
  background-color: transparent;
  background-image: url('../../img/general/h2path.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0;
}

.c-heading--dot.c-heading--orange::after {
  background-color: #EEB05D;
}

.c-heading--dot.c-heading--blue::after {
  background-color: #5BB8E5;
}

.c-heading--dot.c-heading--purple::after {
  background-color: #B08CC7;
}

.c-heading--sm {
  font-size: var(--font-base);
  gap: 0px;
}

@media (min-width: 768px) {
  .c-heading {
    font-size: 38px;
    margin-bottom: 60px;
  }

  .c-heading--sm {
    font-size: var(--font-2xl-pc);
  }
}

/* ライン（モバイルファースト） */
.c-line {
  display: inline-block;
  margin-top: 3px;
  position: relative;
}

.c-line::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-green);
  border-radius: 3px;
}

.c-line--orange::after {
  background-color: var(--color-orange-50);
}

.c-line--red::after {
  background-color: var(--color-red);
}

.c-line--green::after {
  background-color: var(--color-green-50);
}

.c-cta-line {
  display: inline-block;
  position: relative;
  margin-right: 8px;
}

.c-cta-line::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fc7464;
  border-radius: 2px;
}

@media (min-width: 768px) {
  .c-line::after {
    height: 6px;
    border-radius: 0;
  }
}

/* ===============================================
 * FVセクション
 * ============================================= */
.c-fv-section {
  position: relative;
  width: 100%;
  padding-bottom: 20px;
}

@media (min-width: 480px) and (max-width: 600px) {
  .c-fv-section {
    padding-bottom: 0;
  }
}

@media (min-width: 601px) and (max-width: 767px) {
  .c-fv-section {
    padding-bottom: 0;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .c-fv-section {
    padding-bottom: 0;
  }
}

/* SP用FV */
.c-fv-sp {
  position: relative;
  width: 100%;
  background-image: url('../../img/general/fv-bg-sp.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 20px 30px;
}

.c-fv-pc {
  display: none;
}

.c-fv-sp-content {
  max-width: 600px;
  margin: 0 auto;
}

.c-fv-catch {
  width: 90%;
  margin: 0 auto;
  padding-top: 40px;
  max-width: 500px;
}

.c-fv-catch-image {
  width: 100%;
  height: auto;
  display: block;
}

.c-fv-people {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto 20px;
}

.c-fv-man,
.c-fv-woman {
  flex: 1;
  width: 100%;
}

.c-fv-man-image,
.c-fv-woman-image {
  width: 100%;
  height: auto;
  display: block;
}

/* PC用FV */
@media (min-width: 768px) {
  .c-fv-sp {
    display: none;
  }

  .c-fv-pc {
    display: block;
  }

  .c-fv-pc-bg {
    width: 100%;
    background-color: var(--bg-color-light-cream);
    background-image: url('../../img/general/bg-fv.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 120px 0 0;
  }

  .c-fv-pc-container {
    max-width: 1366px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
  }

  .c-fv-pc-catch {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: clamp(160px, 63vw, 750px);
  }

  .c-fv-pc-catch-image {
    width: 100%;
    height: auto;
    display: block;
  }

  .c-fv-pc-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
  }

  .c-fv-pc-man,
  .c-fv-pc-woman {
    flex: 1;
    width: 100%;
    flex-shrink: 0;
  }

  .c-fv-pc .c-intro-box {
    flex: 2;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .c-fv-pc-man-image,
  .c-fv-pc-woman-image {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* ===============================================
 * イントロボックス
 * ============================================= */
.c-intro-box {
  padding: 0;
  text-align: center;
}

/* テキスト共通スタイル */
.c-intro-box-text,
.c-intro-box-text-inline,
.c-intro-box-text-bottom {
  font-size: 13px;
  font-weight: bold;
  line-height: 22px;
  color: #3d3d3d;
  margin: 0;
}

.c-intro-box-text {
  margin-bottom: 12px;
}

.c-intro-box-tags {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}

.c-intro-box-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 28px;
  border: 2px solid;
  background-color: #fff;
  font-size: 13px;
  font-weight: bold;
  line-height: 21px;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.16);
}

@media (max-width:359px) {
  .c-intro-box-tag {
    display: inline-block;
    padding: 2px 4px;
    border-radius: 28px;
    border: 2px solid;
    background-color: #fff;
    font-size: 12px;
    font-weight: bold;
    line-height: 21px;
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.16);
  }
}

.c-intro-box-tag--blue {
  border-color: #0086ce;
  color: #0086ce;
}

.c-intro-box-tag--orange {
  border-color: #f09f33;
  color: #f0a033;
}

.c-intro-box-tag--purple {
  border-color: #b67ccb;
  color: #b67bcb;
}

@media (min-width: 375px) and (max-width: 767px) {

  .c-intro-box-text,
  .c-intro-box-text-inline,
  .c-intro-box-text-bottom {
    font-size: clamp(13px, 3.5vw, 18px);
    line-height: clamp(22px, 5vw, 30px);
  }

  .c-intro-box-tag {
    font-size: clamp(13px, 3.2vw, 16px);
    padding: clamp(4px, 1vw, 6px) clamp(12px, 2.5vw, 14px);
  }
}

@media (min-width: 1080px) {
  .c-intro-box {
    padding: 0;
  }

  .c-intro-box-text,
  .c-intro-box-text-inline,
  .c-intro-box-text-bottom {
    font-size: clamp(14px, 1.4vw, 21px);
    line-height: 200%;
  }

  .c-intro-box-text-inline {
    line-height: normal;
  }

  .c-intro-box-tag {
    font-size: clamp(14px, 1vw, 18px);
    padding: 6px 16px;
  }
}

/* ===============================================
 * CTAボタン（モバイルファースト）
 * ============================================= */
.c-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 0;
}

.c-cta-buttons-fv {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
}

.c-cta-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 290px;
  padding: 12px 24px;
  border-radius: 67px;
  text-decoration: none;
  box-shadow: 0 3px 2.5px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s, box-shadow 0.2s;
}

.c-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}

.c-cta-button--orange {
  background: linear-gradient(180deg, #ff8b00 0%, #ffab14 100%);
}

.c-cta-button--line {
  background: linear-gradient(180deg, #1abf16 0%, #029a00 100%);
  gap: 17px;
}

.c-cta-button-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.c-cta-button--orange .c-cta-button-text {
  margin-right: 30px;
}

.c-cta-button-subtitle {
  font-size: 8px;
  letter-spacing: 0.48px;
  color: white;
  font-weight: bold;
  text-shadow: 0 3px 2.5px rgba(0, 0, 0, 0.16);
}

.c-cta-button-title {
  font-size: 15px;
  letter-spacing: 0.9px;
  color: white;
  font-weight: bold;
  text-shadow: 0 3px 2.5px rgba(0, 0, 0, 0.16);
  line-height: 1.4;
}

.c-cta-button-icon {
  position: absolute;
  right: 20px;
  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-cta-button-icon svg {
  width: 20px;
  height: 20px;
  fill: #ff8b00;
}

.c-cta-button--line .c-cta-button-icon {
  background-color: transparent;
  border-radius: 0;
}

.c-cta-button--line .c-cta-button-icon:first-child {
  position: absolute;
  left: 20px;
  width: 30px;
  height: 29px;
}

.c-cta-button--line .c-cta-button-icon:last-child {
  width: 15px;
  height: 13px;
}

.c-cta-button--line .c-cta-button-icon img {
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .c-cta-button {
    width: 530px;
    padding: 16px 48px;
  }

  .c-cta-button-subtitle {
    font-size: 14px;
  }

  .c-cta-button-title {
    font-size: 22px;
  }

  .c-cta-button-icon {
    width: 40px;
    height: 40px;
  }

  .c-cta-button-icon svg {
    width: 24px;
    height: 24px;
  }

  .c-cta-button--line .c-cta-button-icon:first-child {
    width: 40px;
    height: 39px;
  }
}

/* ===============================================
 * お悩みセクション
 * ============================================= */
.c-worrys-section {
  background-image: url('../../img/general/bg-worrys-sp-wide.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.c-worrys-heading {
  font-size: var(--font-xl);
  margin-bottom: 20px;
}

.c-worrys-gradient-container {
  width: 96%;
  margin: 0 auto;
  background: linear-gradient(180deg, #FFFDF3 0%, #FFE9A0 100%);
  padding: 30px 10px 50px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), 50% 100%, 0 calc(100% - 50px));
}

.c-worrys-image {
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
}



.c-worrys-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .c-worrys-image {
    width: 80%;
    max-width: 800px;
  }

  .c-worrys-section {
    background-image: url('../../img/general/bg-worrys-pc-wide.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 40px 0 0 0;
  }

  .c-worrys-heading {
    font-size: var(--font-3xl-pc);
    margin-bottom: 56px;
  }

  .c-worrys-gradient-container {
    width: 100%;
    padding: 60px 40px 80px;
    margin: 0 auto 0;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 80px), 50% 100%, 0 calc(100% - 80px));
  }

  .c-worrys-image {
    width: 100%;
  }
}

/* ===============================================
 * ジョブトレが解決します
 * ============================================= */
.c-solution {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.c-solution-illustration {
  width: 86%;
  max-width: 350px;
}

.c-solution-illustration img {
  width: 100%;
  height: auto;
  display: block;
}

.c-solution-arrow {
  width: 88px;
  height: 47px;
}

.c-solution-arrow img {
  width: 100%;
  height: 100%;
  display: block;
}

@media (min-width: 768px) {
  .c-solution {
    gap: 40px;
  }

  .c-solution-arrow {
    width: 120px;
    height: 64px;
  }

  .c-solution-illustration {
    width: 86%;
    max-width: 800px;
  }
}

/* ===============================================
 * ジョブトレとは
 * ============================================= */
.c-jobtraining-wrapper {
  position: relative;
  padding-top: 30px;
}

.c-jobtraining-card {
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.16);
  padding: 50px 17px 19px 17px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}

.c-jobtraining-card::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 60px;
  background-image: url('../../img/general/whatisjobtraining.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.c-jobtraining-title {
  font-size: var(--font-base);
  font-weight: bold;
  line-height: 32px;
  color: #000000;
  margin: 0;
  width: 100%;
}

.c-jobtraining-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.c-jobtraining-text {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.c-jobtraining-description {
  font-size: var(--font-sm);
  font-weight: bold;
  line-height: 28px;
  color: #000000;
  margin: 0;
  width: 100%;
}

.c-jobtraining-image {
  width: 234px;
  height: auto;
}

.c-jobtraining-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .c-jobtraining-wrapper {
    padding-top: 50px;
  }

  .c-jobtraining-card {
    padding: 40px 50px;
    gap: 30px;
  }

  .c-jobtraining-card::before {
    top: -50px;
    width: 300px;
    height: 90px;
  }

  .c-jobtraining-title {
    font-size: var(--font-xl-pc);
    line-height: 48px;
    text-align: center;
  }

  .c-jobtraining-title-line1::after {
    content: "\A";
    white-space: pre;
  }

  .c-jobtraining-content {
    gap: 30px;
    flex-direction: row;
    align-items: flex-start;
  }

  .c-jobtraining-text {
    flex: 2;
  }

  .c-jobtraining-description {
    font-size: var(--font-base-pc);
    line-height: 36px;
  }

  .c-jobtraining-image {
    flex: 1;
    width: auto;
    flex-shrink: 0;
  }
}

/* ===============================================
 * 特徴セクション
 * ============================================= */
.c-feature-section {
  position: relative;
}

.c-feature-bg {
  width: 100%;
}

.c-feature-bg-image {
  width: 100%;
  display: block;
}

.c-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 21px;
  position: relative;
  z-index: 1;
  margin-top: -50px;
}

.c-feature-item {
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  border-radius: 10px;
}

.c-feature-number {
  width: 52px;
  height: 42px;
  flex-shrink: 0;
}

.c-feature-number img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.c-feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.c-feature-title {
  font-size: var(--font-sm);
  font-weight: bold;
  line-height: 23px;
  color: #f3511a;
  margin: 0;
}

.c-feature-description {
  font-size: var(--font-sm);
  font-weight: bold;
  line-height: 24px;
  color: #000;
  margin: 0;
}

.c-feature-note-inline {
  font-size: 10px;
  color: #9b9b9b;
  font-weight: normal;
}

.c-feature-note {
  font-size: 10px;
  font-weight: 500;
  line-height: normal;
  color: #9b9b9b;
  margin: 0;
}

@media (min-width: 768px) {
  .c-feature-section {
    padding-top: 0;
    background-image: url('../../img/general/feature-pc.png');
    background-size: cover;
    background-position: clamp(10%, calc((100vw - 1080px) * 0.3), 0%) center;
    background-repeat: no-repeat;
    padding: 60px 0 120px 0;
  }

  .c-feature-bg {
    display: none;
  }

  .c-feature-list {
    flex-direction: column;
    gap: 20px;
    padding: 0 40px 0 0;
    width: 55%;
    max-width: none;
    margin-left: auto;
    margin-right: 0;
    margin-top: 0;
  }

  .c-feature-item {
    width: 100%;
    padding: 24px 20px;
  }

  .c-feature-number {
    width: 86px;
    height: 73px;
  }

  .c-feature-title {
    font-size: var(--font-xl-pc);
    line-height: 1.6;
  }

  .c-feature-description {
    font-size: var(--font-base-pc);
    line-height: 1.8;
  }
}

/* ===============================================
 * 選ばれる理由（モバイルファースト）
 * ============================================= */
.c-reason-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
}

.c-reason-item {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  padding: 32px 23px;
  flex: 1;
}

.c-reason-image {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.c-reason-image picture {
  width: auto;
  height: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-reason-image img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: scale-down;
}

.c-reason-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.c-reason-title {
  font-size: var(--font-xl);
  font-weight: bold;
}

.c-reason-description {
  font-size: var(--font-sm);
  line-height: 2;
}

@media (min-width: 768px) {
  .c-reason-list {
    flex-direction: row;
    gap: 30px;
  }

  .c-reason-title {
    font-size: var(--font-lg-pc);
  }

  .c-reason-description {
    font-size: var(--font-sm-pc);
  }
}

/* ===============================================
 * コース紹介（モバイルファースト）
 * ============================================= */
.c-course-balloon {
  background-color: #FC7464;
  color: white;
  font-size: var(--font-sm);
  font-weight: bold;
  padding: 16px 24px;
  border-radius: 50px;
  text-align: center;
  position: relative;
  display: inline-block;
  margin: 0 auto 30px;
  width: fit-content;
  display: flex;
  justify-content: center;
}

.c-course-balloon::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #FC7464;
}

@media (min-width: 768px) {
  .c-course-balloon {
    font-size: var(--font-lg-pc);
    padding: 20px 30px;
  }
}

.bg-course {
  background-image: url('../../img/general/bg-course-sp.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .bg-course {
    background-image: url('../../img/general/bg-course-pc.png');
  }
}

.c-course-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.c-course-item {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 20px;
}

.c-course-image {
  width: 100%;
  flex-shrink: 0;
}

.c-course-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 294 / 216;
}

.c-course-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.c-course-header {
  display: flex;
  gap: 5px;
  align-items: center;
}

.c-course-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: #5fc279;
  line-height: 1;
  flex-shrink: 0;
}

.c-course-title {
  font-size: var(--font-sm);
  font-weight: bold;
  line-height: 1.5;
}

.c-course-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 0;
}

.c-course-description {
  font-size: var(--font-xs);
  font-weight: bold;
  line-height: 2;
}

@media (min-width: 768px) {
  .c-course-item {
    flex-direction: row;
    gap: 20px;
    padding: 40px;
  }

  .c-course-image {
    width: 294px;
  }

  .c-course-number {
    font-size: 61px;
  }

  .c-course-title {
    font-size: var(--font-sm-pc);
  }

  .c-course-description {
    font-size: var(--font-sm);
  }
}

/* ===============================================
 * CTA説明会セクション（モバイルファースト）
 * ============================================= */
.c-cta-section {
  background-image: url('../../img/general/cta-area-sp.png');
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  padding: 60px 0;
}

.c-cta-text-upper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c-cta-section--upper {
  background-image: url('../../img/general/bg-cta-upper-sp.png');
  background-position: center;
}

.c-cta-content {
  display: flex;
  flex-direction: column;
  gap: 46px;
  padding-bottom: 200px;
}

.c-cta-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.c-cta-title {
  font-size: var(--font-xl);
  font-weight: bold;
  line-height: 1.2;
  color: #000;
  margin: 0;
  margin-right: 8px;
}

.c-cta-subtitle {
  display: inline;
  background-color: #fc7464;
  color: white;
  font-size: var(--font-xl);
  font-weight: bold;
  padding: 3.5px 6px;
  line-height: 1.45;
}

.c-cta-description {
  font-size: var(--font-sm);
  font-weight: bold;
  line-height: 28px;
  color: #000;
}

.c-cta-description .text-red {
  color: #f3511a;
}

@media (min-width: 768px) {
  .c-cta-section {
    background-image: url('../../img/general/cta-area-pc.png');
    background-position: center;
  }

  .c-cta-section--upper {
    background-image: url('../../img/general/bg-cta-upper-pc.png');
    background-position: calc(100% + max(0px, (1080px - 100vw) * 0.5)) center;
  }

  .c-cta-title {
    font-size: 34px;
    margin-right: 8px;
  }

  .c-cta-subtitle {
    font-size: 34px;
  }

  .c-cta-content {
    padding-bottom: 100px;
  }

  .c-cta-description {
    font-size: var(--font-base-pc);
    line-height: 36px;
  }
}

/* ===============================================
 * 対象者セクション（モバイルファースト）
 * ============================================= */
.c-target-intro {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-direction: column;
}

.c-target-intro-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.c-target-intro-title {
  font-size: var(--font-lg);
  font-weight: bold;
  line-height: 26px;
  color: #f3511a;
  text-align: center;
  margin: 0;
}

.c-target-intro-description {
  font-size: var(--font-sm);
  font-weight: bold;
  line-height: 28px;
  color: #000;
  margin: 0;
}

.c-target-intro-image {
  width: 220px;
  height: auto;
}

.c-target-intro-image img {
  width: 100%;
  height: auto;
  display: block;
}

.c-target-section {
  position: relative;
}

.c-target-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 40px solid #fff7d6;
}

.c-target-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
}

.c-target-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.16);
  overflow: hidden;
  flex: 1;
}

.c-target-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.c-target-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-target-title {
  font-size: var(--font-lg);
  font-weight: bold;
  text-align: center;
  padding: 26px 18px 29px;
}

.c-target-description {
  margin-top: 50px;
}

.c-target-description p {
  font-size: var(--font-lg);
  line-height: 2;
}

@media (min-width: 768px) {
  .c-target-intro {
    flex-direction: row;
    gap: 40px;
  }

  .c-target-intro-content {
    flex: 2;
    order: 1;
  }

  .c-target-intro-image {
    order: 2;
    width: 200px;
    height: auto;
    flex-shrink: 0;
  }

  .c-target-intro-title {
    font-size: var(--font-2xl-pc);
    line-height: 1.4;
    text-align: left;
  }

  .c-target-intro-description {
    font-size: var(--font-sm-pc);
    line-height: 32px;
  }

  .c-target-list {
    flex-direction: row;
  }
}

.c-target-description {
  margin-top: 30px;
}

.c-target-description p {
  font-size: var(--font-sm);
}


/* ===============================================
 * その他コンポーネント（FAQ、講師、データ）
 * ============================================= */

/* FAQ（よくある質問）- モバイルファースト */
.c-faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.c-faq-item {
  padding: 22px 20px;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.43);
}

.c-faq-question,
.c-faq-answer {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.c-faq-answer {
  gap: 13px;
}

.c-faq-icon {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.c-faq-icon--q {
  background-color: #5FC279;
  color: #fff;
}

.c-faq-icon--a {
  background-color: #F0FAF6;
  color: #5FC279;
}

.c-faq-text {
  font-size: var(--font-base);
  line-height: 30px;
  letter-spacing: 0.96px;
  flex: 1;
}

.c-faq-question .c-faq-text {
  font-size: var(--font-base);
  font-weight: bold;
}

.c-faq-answer .c-faq-text {
  font-size: var(--font-base);
  font-weight: 500;
  line-height: 32px;
}

.c-faq-divider {
  border: none;
  border-top: 1px solid #E0E0E0;
  margin: 19px 0;
}

@media (min-width: 768px) {
  .c-faq-item {
    padding: 40px 60px;
  }

  .c-faq-list {
    gap: 30px;
  }

  .c-faq-question .c-faq-text {
    font-size: var(--font-lg-pc);
  }

  .c-faq-answer .c-faq-text {
    font-size: var(--font-base-pc);
  }
}

/* 講師紹介 - モバイルファースト */
.c-teacher-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  justify-content: center;
}

.c-teacher-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
}

.c-teacher-image {
  width: 240px;
  height: 240px;
  border-radius: 120px;
  overflow: hidden;
  box-shadow: 10px 10px 15px 0 rgba(255, 255, 255, 0.35);
}

.c-teacher-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-teacher-name {
  font-size: var(--font-2xl);
  font-weight: bold;
  text-align: center;
}

.c-teacher-description {
  padding: 22px 24px;
  border-radius: 10px;
  max-width: 350px;
}

.c-teacher-description p {
  font-size: var(--font-base);
  font-weight: 500;
  line-height: 32px;
}

@media (min-width: 768px) {
  .c-teacher-list {
    flex-direction: row;
    gap: 30px;
  }
}

/* データで見るジョブトレ - モバイルファースト */
.c-data-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
}

.c-data-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding: 18px 24px;
  flex: 1;
}

.c-data-title {
  font-size: var(--font-2xl);
  font-weight: bold;
  text-align: center;
  line-height: 60px;
  color: #222;
}

.c-data-image {
  width: 100%;
  max-width: 242px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-data-image img {
  width: 100%;
  height: auto;
}

.c-data-description {
  font-size: var(--font-sm);
  font-weight: bold;
  line-height: 28px;
  text-align: center;
  color: #222;
}

@media (min-width: 768px) {
  .c-data-list {
    flex-direction: row;
    gap: 30px;
  }
}

/* ===============================================
 * フッター
 * ============================================= */
.l-footer--contents {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 20px 0 100px;
}

.l-footer--contents-title {
  font-size: var(--font-base);
  font-weight: bold;
  line-height: normal;
  color: white;
  margin: 0;
}

.l-footer--contents-text {
  font-weight: 500;
  line-height: 30px;
  color: white;
}

.l-footer--contents-text p {
  margin: 0;
}

/* ===============================================
 * レガシースタイル（後方互換性のため保持）- モバイルファースト
 * ============================================= */
.section--tit {
  font-size: var(--font-xl);
  text-align: center;
}

.section--tit::after {
  margin: 10px auto 25px;
}

.course_btn,
.voice_btn {
  margin-top: 63px;
}

.cta_btn {
  width: 287px;
  height: 54px;
  font-size: var(--font-sm);
}

.footer_btn {
  position: absolute;
  right: 0;
  top: 0;
}

.p-top .brown {
  border-radius: 0 125px 0 0;
}

@media (min-width: 768px) {
  .section--tit {
    font-size: var(--font-2xl-pc);
  }

  .section--tit::after {
    margin: auto;
  }

  .course_btn,
  .voice_btn {
    margin-top: auto;
  }

  .cta_btn {
    width: auto;
    height: auto;
    font-size: inherit;
  }

  .footer_btn {
    position: static;
  }

  .p-top .brown {
    border-radius: 0 250px 0 0;
  }
}

.section--tit::after {
  display: block;
  margin: 16px auto 30px;
}

.btn {
  width: 287px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 27px;
  color: #fff;
  background-color: #61C27B;
  font-weight: bold;
}

.btn-orange {
  background-color: #FF8C42;
}

.course_btn {
  margin: 50.5px auto 0;
}

.voice_btn {
  margin: 50.5px auto 0;
}

.cta_btn {
  margin: 60px auto 0;
  width: 428.5px;
  height: 70px;
  font-size: 16px;
  border-radius: 35px;
}

.footer_btn {
  width: 150px;
  height: 34px;
  border-radius: 17px;
  font-size: var(--font-sm);
}

.p-top {
  overflow: hidden;
}

.p-top img {
  width: 100%;
}

.p-top a {
  text-decoration: none;
}

.p-top .section--tit {
  line-height: 1.4;
}

.p-top .cream {
  background-color: #FFFDF0;
}

.p-top .brown {
  background-color: #F7F1DF;
  border-radius: 0 250px 0 0;
}

.p-top--about2 {
  padding-top: 120px;
}

.p-top--about2 .section--tit::after {
  content: url(../../common/img/top/green.svg);
}

.p-top--about2--box {
  background-color: #fff;
  border-radius: 30px;
  padding: 50px 0 46px 44px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.p-top--about2--box--tit {
  font-size: 24px;
}

.p-top--about2--box--tit span {
  color: #EFB05F;
}

.p-top--about2--box--txt {
  width: 630px;
  line-height: 2;
}

.p-top--about2--box--txt2 {
  width: fit-content;
}

.p-top--about2--box--tit+.p-top--about2--box--txt2 {
  margin-top: 20px;
}

.p-top--about2--box--pic {
  width: 144.62px;
}

.p-top--about2--box--pic2 {
  width: 301px;
  margin: auto;
}

.p-top--course {
  padding: 62px 0 100.5px;
}

.p-top--course .section--tit::after {
  content: url(../../common/img/top/orenge.svg);
}

.p-top--course--list {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.p-top--course--item {
  width: 220px;
}

.p-top--course--item img {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
}

.p-top--voice {
  padding: 120px 0;
  box-sizing: border-box;
}

.p-top--voice .section--tit::after {
  content: url(../../common/img/top/blue.svg);
}

.p-top--voice--list {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.p-top--voice--item {
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  background-color: #fff;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-top--voice--item--pic {
  width: 100%;
  max-width: 120px;
  margin: 0 auto;
}

.p-top--voice--item--pic img {
  width: 100%;
  height: auto;
  display: block;
}

.p-top--voice--item--content {
  width: 100%;
  padding-top: 0;
}

.p-top--voice--item--content--tit {
  font-size: var(--font-base);
  line-height: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.p-top--voice--item--content--tit span {
  height: 26px;
  color: #A8A8A8;
  display: flex;
  align-items: center;
  padding-right: 10px;
  position: relative;
}

.p-top--voice--item--content--tit span::after {
  position: absolute;
  content: "";
  background-color: #B1B1B1;
  width: 1px;
  height: 16px;
  display: block;
  right: 0;
}

.p-top--voice--item--content--txt {
  font-size: var(--font-sm);
  line-height: 2;
  margin-top: 17px;
}

@media (min-width: 768px) {
  .p-top--voice--item {
    padding: 31px 40px 38px;
    flex-direction: row;
    gap: 40px;
  }

  .p-top--voice--item--pic {
    width: 144px;
    max-width: none;
    margin: 0;
  }

  .p-top--voice--item--content {
    width: 636px;
    padding-top: 5px;
  }

  .p-top--voice--item--content--tit {
    font-size: var(--font-base-pc);
    gap: 20px;
  }

  .p-top--voice--item--content--tit span {
    padding-right: 20px;
  }

  .p-top--voice--item--content--txt {
    font-size: var(--font-sm-pc);
  }
}


.p-top--voice .btn {
  margin: 60px auto 0;
}

@media (min-width: 768px) {
  .p-top--voice .btn {
    margin: 60px auto 0;
  }
}