@charset "utf-8";


/* ==========================================================================
   フェーズ全体のレイアウト（共通・PCベース）
   ========================================================================== */
.s-list-contents-3-wrap {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.phase-section {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 0;
}

/* ==========================================================================
   フェーズのヘッダータイトル（矢印デザイン & 高さ統一設定）
   ========================================================================== */
.phase-title__first {
    color: #fff;
    line-height: 1.4;
    font-size: 100%;
    font-weight: bold;
    -webkit-clip-path: polygon(0% 0%, 92% 0%, 100% 50%, 92% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 92% 0%, 100% 50%, 92% 100%, 0% 100%);
    background-color: #2a64a8; /* 画像内の青色に合わせて調整 */
    position: relative;
    height: 100px; /* PCでの青色部分のエリア高さを100pxに揃える */
    display: flex;
    justify-content: center;
    align-items: center; /* 上下中央揃え */
    text-align: center;
    padding: 0 10px;
    box-sizing: border-box;
}

.phase-title {
    color: #fff;
    line-height: 1.4;
    font-size: 100%;
    font-weight: bold;
    -webkit-clip-path: polygon(0% 0%, 92% 0%, 100% 50%, 92% 100%, 0% 100%, 8% 50%);
    clip-path: polygon(0% 0%, 92% 0%, 100% 50%, 92% 100%, 0% 100%, 8% 50%);
    background-color: #2a64a8; /* 画像内の青色に合わせて調整 */
    position: relative;
    height: 100px; /* PCでの青色部分のエリア高さを100pxに揃える */
    display: flex;
    justify-content: center;
    align-items: center; /* 上下中央揃え */
    text-align: center;
    padding: 0 10px 0 18px;
    box-sizing: border-box;
}

/* ==========================================================================
   フェーズのコンテンツ本体（白い外枠）
   ========================================================================== */
.phase-body-box {
    border: 1px solid #c2c2c2;
    padding: 15px 12px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    height: 100%;
    margin-top: 5px;
}

/* ==========================================================================
   箇条書きリストの設定（太字小見出し＋箇条書き本文）
   ========================================================================== */
.phase-task-list, 
.phase-sub-list, 
.role-list {
    margin: 0;
    padding: 0;
    list-style: none !important;
    text-align: left;
}

.phase-task-list {
    margin-bottom: 0;
}

.phase-task-list > li {
    margin-bottom: 20px;
    display: block !important;
}

.phase-task-list > li:last-child {
    margin-bottom: 0;
}

.phase-task-list strong {
    display: block;
    font-size: 95%;
    font-weight: bold;
    color: #000;
    margin-bottom: 6px;
    line-height: 1.4;
}

/* 箇条書き（配下リスト） */
.phase-sub-list li, 
.role-list li {
    position: relative;
    padding-left: 12px;
    margin-bottom: 6px;
    line-height: 1.4;
    font-size: 85%;
    color: #333;
    display: block !important;
}

.phase-sub-list li:last-child {
    margin-bottom: 0;
}

/* 「・」記号の設定 */
.phase-sub-list li::before, 
.role-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -1px;
    color: #333;
    font-size: 12px;
}

/* ==========================================================================
   下部の強調エリア（「〇〇の役割」用ボックス）
   ========================================================================== */
.role-box {
    background-color: #fdf3d6;
    border: 1px solid #b8b8b8;
    padding: 15px;
    margin-top: auto;
    min-height: 95px;
    box-sizing: border-box;
}

.role-title {
    font-weight: bold;
    font-size: 110%;
    margin: 0 0 10px 0;
    padding: 0;
    color: #000;
}

.role-list li {
    margin-bottom: 4px;
}

.role-list li:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   スマホ用表示（画面横幅 769px 以下）
   ========================================================================== */
@media screen and (max-width: 769px) {
    .s-list-contents-3-wrap {
        flex-direction: column;
        gap: 20px;
    }

    .phase-section {
        width: 100%;
        flex: none;
    }

    .phase-title__first,
    .phase-title {
        font-size: 100%;
        height: auto; /* スマホ時はテキスト量に応じた高さに自動調整 */
        padding: 15px 10px;
        -webkit-clip-path: none;
        clip-path: none;
    }

    .phase-task-list {
        min-height: 0;
        margin-bottom: 0;
    }

    .role-box {
        min-height: 0;
    }
}


/*-----------------------------
経営ビジョンとは何か？共感と情動を生み出す「共に歩む道（Way）ビジョン」の定義
------------------------------*/
/* コンテナ全体のスタイル（レスポンシブ横並び設定） */
.sol-vision-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
  padding-top: 20px;
}

.sol-vision-comparison *,
.sol-vision-comparison *::before,
.sol-vision-comparison *::after {
  box-sizing: border-box;
}

/* 各カードのベース */
.sol-vision-card {
  flex: 1;
  width: 100%;
  border: 1px solid #707070;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
}

/* ヘッダー部分 */
.sol-vision-card__header {
  margin: 0;
  padding: 12px 10px;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  line-height: 1.3;
}

.sol-vision-card__title {
  display: block;
}

.sol-vision-card__subtitle {
  display: block;
  font-weight: normal;
}

/* カードカラー切り替え */
.sol-vision-card--blue .sol-vision-card__header {
  background-color: #0066cc;
}

.sol-vision-card--red .sol-vision-card__header {
  background-color: #b30000;
}

/* ボディ部分（Flexboxで内部コンテンツを高さ中央に配置） */
.sol-vision-card__body {
  padding: 20px;
  min-height: 220px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* カード内部コンテンツラップ */
.sol-vision-card__content {
  width: 100%;
}

.sol-vision-card__example-label {
  margin: 0 0 5px 0;
  line-height: 1.4;
}

/* リストスタイル */
.sol-vision-card__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.sol-vision-card__list li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 6px;
  line-height: 1.5;
}

.sol-vision-card__list li:last-child {
  margin-bottom: 0;
}

.sol-vision-card__list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
}

/* 中央の矢印（PC表示：右向き / 先端部分も含めた全体の真ん中に位置調整） */
.sol-vision-arrow {
  position: relative;
  width: 35px;
  height: 30px;
  background-color: #707070;
  flex-shrink: 0;
  margin-right: 15px; /* 右側へ張り出す先端（20px）を考慮した余白調整 */
}

.sol-vision-arrow::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 25px 0 25px 20px;
  border-color: transparent transparent transparent #707070;
}

/* レスポンシブ対応（スマホ・タブレット等：縦並び） */
@media screen and (max-width: 767px) {
  .sol-vision-comparison {
    flex-direction: column;
    gap: 15px;
  }

  .sol-vision-card__body {
    min-height: auto;
  }

  /* 中央の矢印（スマホ表示：下向き / 先端部分も含めた全体の真ん中に位置調整） */
  .sol-vision-arrow {
    width: 30px;
    height: 25px;
    margin: 5px 0 20px 0; /* 下へ張り出す先端（20px）を考慮した余白調整 */
  }

  .sol-vision-arrow::after {
    right: 50%;
    top: 100%;
    transform: translateX(50%);
    border-width: 20px 25px 0 25px;
    border-color: #707070 transparent transparent transparent;
  }
}