/* --- キャリアステップのカードデザイン --- */
.career-step-card {
    background: #fff;
    padding: 30px 30px 0 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    border-top: 5px solid #ccc;
    margin-bottom: 20px;
}
.career-step-card.highlight {
    border-top-color: #f96d00;
    transform: scale(1.05);
    z-index: 1;
}
.step-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #f96d00;
    margin-bottom: 10px;
}
.career-step-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
}
.support-list {
    margin-top: 15px;
    padding-left: 0;
    list-style: none;
    font-size: 13px;
    color: #888;
}
.support-list li:before {
    content: "・";
}

/* ================================
   career-plan サポートリスト設定
   後から数値・色を調整しやすいように
   まとめて管理しています
================================ */

/* 親リスト（support-list-2） */
.support-list-2 {
  font-size: 1.0rem;       /* 文字サイズ：必要に応じて調整 */
  color: #000;              /* 文字色 */
  list-style-type: disc;  /* リストマーク：サークル */
  padding-left: 0.5em;      /* マークと文字の間隔（調整用） */
}

/* 親リストのリストマーク設定 */
.support-list-2 li::marker {
  font-size: 1.25rem;          /* リストマークサイズ */
  color: #1e50a2;           /* 親リストマーク色 */
}

/* -------------------------------
   子リスト（support-list-sub）
-------------------------------- */

/* 子リスト全体 */
.support-list-2 .support-list-sub {
  margin-top: 0em;        /* 親リストとの余白（調整用） */
  margin-left: -1.75em !important;      /* インデント調整 */
  list-style-type: circle;  /* 子もサークル */
}

/* 子リストの文字設定 */
.support-list-2 .support-list-sub li {
  font-size: 1.0rem;       /* 親と同じ文字サイズ（変更可） */
  color: #000;              /* 文字色 */
}

/* 子リストのリストマーク設定 */
.support-list-2 .support-list-sub li::marker {
  font-size: 1.25rem;          /* リストマークサイズ */
  color: #192f60;           /* 子リストマーク色 */
}

.career-plan-model {
    font-size: 0.85em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e50a2;
    border-bottom: solid 1px #1e50a2;
    padding-bottom: 5px;
}


/* --- 選ばれる理由のテキスト装飾 --- */
.choose-reason h4 {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
}
.icon-check {
    color: #f96d00;
    margin-right: 10px;
    font-size: 24px;
}

/* --- 流れる画像アニメーション (design01参考) --- */
.tobila-flow-wrapper {
    display: flex;
    gap: 15px;
    height: 3500px;
    overflow: hidden;
    position: relative;
}
.flow-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 50%;
}
/* --- 流れる画像アニメーション 修正版 --- */

.flow-img {
    width: 100%;
    height: 300px; /* 設定済み */
    flex-shrink: 0;
}

@keyframes flowDown {
    0% { transform: translateY(-1890px); } /* 6枚分マイナスした位置から */
    100% { transform: translateY(0); }      /* 0（元の位置）に戻る */
}

@keyframes flowUp {
    0% { transform: translateY(0); }        /* 0から開始 */
    100% { transform: translateY(-1890px); } /* 6枚分マイナスまで進む */
}

.column-down { animation: flowDown 40s linear infinite; }
.column-up { animation: flowUp 40s linear infinite; }

/* モダン見出し */
.heading-modern-solid .sub-title {
    font-size: 14px;
    font-weight: 700;
    color: #f96d00;
    letter-spacing: 3px;
}
/* .heading-modern-solid .main-title {
    font-size: 38px;
    font-weight: 900;
    line-height: 1.2;
} */

/* キャリアプランのアイコンリスト */

.custom-icon-list li {
    display: flex;
    align-items: center; /* アイコンとテキストの中央を揃える */
    margin-bottom: 15px;
    font-weight: 600;
    color: #444;
    line-height: 1.5;
}

/* アイコンを包むオレンジの枠 */
.icon-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #f96d00; /* 山下工作所様のオレンジ */
    border-radius: 4px;
    margin-right: 12px;
    flex-shrink: 0; /* 文字数が増えてもアイコンが潰れないように固定 */
}

/* アイコン自体の設定（白抜き） */
.icon-wrap i {
    color: #ffffff;
    font-size: 35px;
}

/* ポイントボックス（注釈） */
.point-box {
    background: #fff;
    border-left: 5px solid #f96d00;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 0 10px 10px 0;
}
.point-box h5 {
    color: #f96d00;
    font-weight: 800;
    display: flex;
    align-items: center;
}
.point-box h5 span {
    margin-right: 10px;
    font-size: 24px;
}

/* メリットカード */
.merit-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}
.merit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #f96d00;
}
.merit-card .icon {
    width: 80px;
    height: 80px;
    background: #f96d00;
    color: #fff;
    margin: 0 auto;
    border-radius: 50%;
}
.merit-card h3 {
    font-size: 20px;
    font-weight: 700;
}

/* --- スタッフリスト デザインB（数字強調版） --- */
.staff-list {
    list-style: none;
    padding-left: 0;
}

.staff-list li {
    position: relative;
    padding-left: 120px; /* 吹き出しと三角形が大きくなった分、左余白を確保 */
    margin-bottom: 40px;
    min-height: 80px;
    display: flex;
    align-items: center;
}

/* 吹き出しの本体（青いボックス） */
.staff-tag {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 85px;
    height: 80px;
    background-color: #007bff;
    color: #fff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
    line-height: 1; /* 行間をリセット */
}

/* 「STAFF」の文字サイズ調整 */
.staff-tag {
    font-size: 11px;
    letter-spacing: 0.5px;
}

/* 「01」などの数字のサイズ調整 */
.staff-tag span {
    display: block;
    font-size: 32px; /* ★ここでお好みの大きさに調整してください */
    margin-top: 4px;  /* STAFFとの間隔 */
    font-family: 'Arial', sans-serif; /* 数字を際立たせるフォント */
}

/* 吹き出しの「しっぽ」部分（三角形） */
.staff-list li::after {
    content: "";
    position: absolute;
    left: 75px;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 15px 0 15px 25px; /* 三角形を大きく表示 */
    border-color: transparent transparent transparent #007bff;
    z-index: 1;
}

/* コメントテキストの調整 */
.staff-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.7;
    padding-left: 15px;
}