/* パートナープログラムセクション全体 */
.secProgram {
  background-color: #f8f9fc;
  padding: 80px 20px;
}

.secProgram .secInr {
  max-width: 1200px;
  margin: 0 auto;
}

.secProgram .md-secHead {
  text-align: center;
  margin-bottom: 3rem;
}

.secProgram .secTtl {
  font-size: 2rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.secProgram .secLead {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
}

/* カード全体ラップ（2列） */
.ctsListWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

/* 各カード共通 */
.ctsList {
  border-radius: 16px;
  padding: 2rem;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* 個別背景色 */
.ctsList01 {
  background-color: #d0f3e6; /* グリーン */
}
.ctsList02 {
  background-color: #d4eaff; /* ブルー */
}

/* カード見出し */
.listTtl {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1rem;
  text-align: center;
}

/* イラスト画像 */
.listImg {
  text-align: center;
  margin-bottom: 1.5rem;
}
.listImg img {
  max-width: 100%;
  height: auto;
}

/* 説明文 */
.listDesc {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* チェックポイントボックス */
.descPoint {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.03);
}

.pointTtl {
  font-weight: bold;
  font-size: 1rem;
  color: #06b6d4;
  margin-bottom: 0.5rem;
}

/* チェック付きリスト */
.pointList {
  list-style: none;
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #333;
}
.pointList::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #06b6d4;
  font-weight: bold;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .ctsListWrap {
    flex-direction: column;
    gap: 2rem;
  }

  .ctsList {
    max-width: 100%;
  }

  .listTtl {
    font-size: 1.25rem;
  }

  .listDesc {
    font-size: 0.95rem;
  }

  .pointList {
    font-size: 0.9rem;
  }
}

.ctsListWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.ctsList {
  background-color: #f0f9ff;
  border-radius: 16px;
  padding: 2rem;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ctsList01 {
  background-color: #d0f3e6; /* 再販パートナー用：グリーン系 */
}
.ctsList02 {
  background-color: #d4eaff; /* 紹介取次パートナー用：ブルー系 */
}

.listTtl {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1rem;
  text-align: center;
}

.listImg {
  text-align: center;
  margin-bottom: 1.5rem;
}
.listImg img {
  max-width: 100%;
  height: auto;
}

.listDesc {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.descPoint {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.03);
}

.pointTtl {
  font-weight: bold;
  font-size: 1rem;
  color: #06b6d4;
  margin-bottom: 0.5rem;
}

.pointList {
  list-style: none;
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #333;
}
.pointList::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #06b6d4;
  font-weight: bold;
}

