/**
 * File Name: process-support-challenges.css
 * 2026-07-03 | Final Check
 */

/**
 * CHALLENGES SECTION
 */
.p-common-service-contents-challenges-section {
  width: 100%;
  padding: 50px 0 20px 0;
  background-color: #ffffff;
  box-sizing: border-box;
}

.p-common-service-contents-challenges-section *,
.p-common-service-contents-challenges-section *::before,
.p-common-service-contents-challenges-section *::after {
  box-sizing: border-box;
}

.p-common-service-contents-challenges-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.p-common-service-contents-challenges__title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--upper-color-2, #2b4365);
  margin: 0 0 30px 0;
  padding-bottom: 16px;
  border-bottom: 5px solid var(--upper-color-1, #1d3d5e);
  letter-spacing: 0.02em;
	font-family: "Kosugi Maru", sans-serif;
}

.p-common-service-contents-challenges__list {
  margin: 0;
  padding: 20px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #f4f7f9;
  border-left: 6px solid var(--lower-color-5, #d4af37);
  border-radius: 4px;
}

.p-common-service-contents-challenges__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.p-common-service-contents-challenges__icon {
  flex-shrink: 0;
  position: relative;
  top: 4px;
  width: 18px;
  height: 18px;
  background-color: #cc3333;
  border-radius: 50%;
  display: inline-block;
}

.p-common-service-contents-challenges__icon::before {
  content: "!";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
}

.p-common-service-contents-challenges__text {
  font-size: 1.05rem;
  font-weight: 700;
  color: #333333;
  margin: 0;
  line-height: 1.6;
}

/* ==============================================================================
 * MEDIA QUERIES
 * ============================================================================== */

/* スマホ横向き（低画面高） */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .p-common-service-contents-challenges-section {
    padding: 30px 0 15px 0;
  }
  .p-common-service-contents-challenges__title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .p-common-service-contents-challenges__list {
    padding: 15px 20px;
    gap: 12px;
  }
  .p-common-service-contents-challenges__text {
    font-size: 1rem;
  }
}

/* タブレット・標準PCサイズ */
@media screen and (min-width: 768px) and (min-height: 501px) {
  .p-common-service-contents-challenges-section {
    padding: 60px 0 20px 0;
  }
  .p-common-service-contents-challenges-container {
    padding: 0 30px;
  }
  .p-common-service-contents-challenges__title {
    font-size: 2.2rem;
    margin-bottom: 35px;
  }
  .p-common-service-contents-challenges__list {
    padding: 25px 30px;
    gap: 20px;
  }
  .p-common-service-contents-challenges__text {
    font-size: 1.15rem;
  }
}

/* 大型デスクトップサイズ */
@media screen and (min-width: 1024px) and (min-height: 501px) {
  .p-common-service-contents-challenges-section {
    padding: 70px 0 30px 0;
  }
}
