/* コンテナ領域 */
.sol-table-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* メインタイトル */
.sol-table-main-title {
  background-color: #0b2567;
  color: #ffffff;
  text-align: center;
  padding: 12px 16px;
  margin: 0 0 16px 0;
  font-weight: bold;
  letter-spacing: 0.05em;
}

/* レスポンシブ用スクロールラッパー */
.sol-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* テーブル基本設定 */
.sol-table {
  width: 100%;
  min-width: 800px; /* スマホ閲覧時に崩れないための最小幅 */
  border-collapse: collapse;
  text-align: center;
  line-height: 1.5;
}

/* セル共通設定 */
.sol-table th,
.sol-table td {
  border: 1px solid #1a1a1a;
  padding: 10px 8px;
  vertical-align: middle;
  word-break: break-word;
}

/* 表の左端（項目名カラム） */
.sol-table tbody th {
  background-color: #e2e8f0;
  font-weight: bold;
  width: 15%;
}

/* ヘッダーの色設定 */
.sol-table .sol-table-th-label {
  background-color: #e2e8f0;
  width: 15%;
}

.sol-table .sol-table-th-member {
  background-color: #0d47a1;
  color: #ffffff;
  width: 21.25%;
}

.sol-table .sol-table-th-leader {
  background-color: #d4a017;
  color: #ffffff;
  width: 21.25%;
}

.sol-table .sol-table-th-manager {
  background-color: #b71c1c;
  color: #ffffff;
  width: 21.25%;
}

.sol-table .sol-table-th-executive {
  background-color: #880e4f;
  color: #ffffff;
  width: 21.25%;
}

/* 列ごとの背景色設定 */
.sol-table tbody td:nth-child(2) {
  background-color: #e3f2fd; /* メンバー列 */
}

.sol-table tbody td:nth-child(3) {
  background-color: #fffde7; /* リーダー列 */
}

.sol-table tbody td:nth-child(4) {
  background-color: #ffebee; /* マネージャー列 */
}

.sol-table tbody td:nth-child(5) {
  background-color: #fce4ec; /* 役員列 */
}

/* 補助テキスト（カッコ書き等） */
.sol-table-subtext {
  display: inline-block;
}

/* ==========================================
   アーリア流 幹部育成ポイント セクション
   ========================================== */
.arl-executive-points {
  box-sizing: border-box;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f8f9fa;
}

.arl-executive-points *,
.arl-executive-points *::before,
.arl-executive-points *::after {
  box-sizing: inherit;
}

/* タイトルバー */
.arl-executive-points__title {
  margin: 0 0 40px 0;
  padding: 12px 20px;
  background-color: #0b2559;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

/* メインレイアウト（PC） */
.arl-executive-points__content {
  position: relative;
  min-height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ------------------------------------------
   中央の円形ダイアグラム
   ------------------------------------------ */
.arl-executive-points__diagram {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
}

/* 扇形セグメントを囲むコンテナ */
.arl-executive-points__circle {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
}

/* 扇形共通パーツ */
.arl-executive-points__segment {
  position: absolute;
  width: 50%;
  height: 50%;
  transform-origin: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  line-height: 1.3;
  padding: 10px;
}

.arl-executive-points__segment span {
  position: absolute;
  white-space: nowrap;
}

/* 左上：赤 */
.arl-executive-points__segment--red {
  top: 0;
  left: 0;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  color: #d32f2f;
}
.arl-executive-points__segment--red span {
  top: 55%;
  left: 60%;
  transform: translate(-50%, -50%);
}

/* 右上：青 */
.arl-executive-points__segment--blue {
  top: 0;
  right: 0;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  color: #0277bd;
}
.arl-executive-points__segment--blue span {
  top: 55%;
  left: 40%;
  transform: translate(-50%, -50%);
}

/* 下部：黄 */
.arl-executive-points__segment--yellow {
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 50%;
  border-top: 2px solid #ffffff;
  color: #e6a100;
}
.arl-executive-points__segment--yellow span {
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* 外周の灰色矢印リング */
.arl-executive-points__arrows {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 14px solid #b0bec5;
  pointer-events: none;
}

/* 円の分割線（白ライン） */
.arl-executive-points__arrows::before {
  content: "";
  position: absolute;
  top: -14px;
  left: calc(50% - 2px);
  width: 4px;
  height: 320px;
  background: #f8f9fa;
  z-index: 1;
}

.arl-executive-points__arrows::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -14px;
  width: 320px;
  height: 4px;
  background: #f8f9fa;
  transform: rotate(-30deg);
  transform-origin: center center;
  z-index: 1;
}

/* 矢印の先端 */
.arl-executive-points__arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  z-index: 2;
}

.arl-executive-points__arrow--1 {
  top: -11px;
  right: 125px;
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent #b0bec5;
  transform: rotate(-10deg);
}

.arl-executive-points__arrow--2 {
  bottom: 35px;
  right: 10px;
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent #b0bec5;
  transform: rotate(110deg);
}

.arl-executive-points__arrow--3 {
  bottom: 35px;
  left: 10px;
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent #b0bec5;
  transform: rotate(230deg);
}

/* ------------------------------------------
   説明テキストエリア（配置）
   ------------------------------------------ */
.arl-executive-points__item {
  position: absolute;
  width: 280px;
}

.arl-executive-points__item-title {
  margin: 0 0 8px 0;
  font-weight: bold;
  line-height: 1.3;
}

.arl-executive-points__item-title--red { color: #d32f2f; }
.arl-executive-points__item-title--blue { color: #0277bd; }
.arl-executive-points__item-title--yellow { color: #e6a100; }

.arl-executive-points__item-desc {
  margin: 0;
  color: #333333;
  line-height: 1.5;
}

/* 位置関係（PC時） */
.arl-executive-points__item--1 {
  top: 40px;
  left: 0;
  text-align: left;
}

.arl-executive-points__item--2 {
  top: 40px;
  right: 0;
  text-align: left;
}

.arl-executive-points__item--3 {
  bottom: 0;
  left: 0;
  text-align: left;
}

/* ------------------------------------------
   レスポンシブ対応（スマホ・タブレット表示）
   ------------------------------------------ */
@media screen and (max-width: 768px) {
  .arl-executive-points__content {
    flex-direction: column;
    min-height: auto;
  }

  .arl-executive-points__diagram {
    transform: scale(0.85);
    margin: 0 auto 20px auto;
  }

  .arl-executive-points__item {
    position: static;
    width: 100%;
    max-width: 400px;
    margin-bottom: 24px;
    padding: 16px;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }

  .arl-executive-points__item:last-child {
    margin-bottom: 0;
  }
}