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

/* ==============================================================================
 * FEATURES PART (特徴・効果)
 * ============================================================================== */
.p-common-service-contents-features-flows-section {
  width: 100%;
  padding: 50px 0 30px 0;
  background-color: #ffffff;
  color: #333333;
  font-family: "Helvetica Neue", Arial, "BIZ UDPGothic", "Meiryo", sans-serif;
  line-height: 1.7;
  box-sizing: border-box;
}

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

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

.p-common-service-contents-features-part__title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--upper-color-2, #2b4365);
  margin: 0 0 35px 0;
  padding-bottom: 16px;
  border-bottom: 5px solid var(--upper-color-1, #1d3d5e);
  letter-spacing: 0.02em;
}

.p-common-service-contents-features-part {
  width: 100%;
}

.p-common-service-contents-features-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-common-service-contents-features-list__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  padding-left: 40px;
}

.p-common-service-contents-features-list__icon {
  position: absolute;
  left: 0;
  top: 3px;
  width: 26px;
  height: 26px;
  background-color: transparent;
  border: 2px solid var(--lower-color-5, #d4af37);
  border-radius: 50%;
  margin-top: 0;
}

.p-common-service-contents-features-list__icon::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid var(--lower-color-5, #d4af37);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

/* 2行構成用に追加：見出しのベース設定 */
.p-common-service-contents-features-list__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333333;
  margin: 0 0 6px 0;
  line-height: 1.5;
}

/* ベース設定：元の1行テキストのスタイル */
.p-common-service-contents-features-list__text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333333;
  margin: 0;
  line-height: 1.7;
}

/* 2行構成用に追加：見出しの下に入る説明文（長文）のノイズを消し、綺麗に整える記述 */
.p-common-service-contents-features-list__title
  + .p-common-service-contents-features-list__text {
  font-size: 0.95rem;
  font-weight: 400; /* 長文時の太字を解除して可読性を確保 */
  color: #555555; /* 少しだけコントラストを下げて見出しを引き立てる */
}

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

/* スマホ横向き（低画面高） */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .p-common-service-contents-features-flows-section {
    padding: 30px 0 20px 0;
  }
  .p-common-service-contents-features-part__title {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }
  .p-common-service-contents-features-list {
    gap: 16px;
  }
  .p-common-service-contents-features-list__item {
    padding-left: 36px;
  }
  .p-common-service-contents-features-list__icon {
    width: 24px;
    height: 24px;
    top: 2px;
  }
  .p-common-service-contents-features-list__icon::after {
    left: 9px;
    top: 6px;
    width: 4px;
    height: 9px;
  }

  /* スマホ横向き：共通テキストと見出しのレスポンシブ */
  .p-common-service-contents-features-list__title {
    font-size: 1rem;
  }
  .p-common-service-contents-features-list__text {
    font-size: 1rem;
  }
  .p-common-service-contents-features-list__title
    + .p-common-service-contents-features-list__text {
    font-size: 0.9rem;
  }
}

/* タブレット・標準PCサイズ */
@media screen and (min-width: 768px) and (min-height: 501px) {
  .p-common-service-contents-features-flows-section {
    padding: 60px 0 40px 0;
  }
  .p-common-service-contents-features-flows-container {
    padding: 0 30px;
  }
  .p-common-service-contents-features-part__title {
    font-size: 2.2rem;
    margin-bottom: 45px;
  }
  .p-common-service-contents-features-list {
    gap: 28px;
  }
  .p-common-service-contents-features-list__item {
    padding-left: 48px;
  }
  .p-common-service-contents-features-list__icon {
    width: 32px;
    height: 32px;
    top: 3px;
  }
  .p-common-service-contents-features-list__icon::after {
    left: 13px;
    top: 9px;
    width: 7px;
    height: 13px;
  }

  /* タブレット・標準PC：共通テキストと見出しのレスポンシブ */
  .p-common-service-contents-features-list__title {
    font-size: 1.25rem;
    margin-bottom: 8px; /* 見出しと説明文の間に心地よい余白を作る */
  }
  .p-common-service-contents-features-list__text {
    font-size: 1.25rem;
  }
  .p-common-service-contents-features-list__title
    + .p-common-service-contents-features-list__text {
    font-size: 1rem; /* 説明文を読みやすい16px相当に */
  }
}

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

  /* デスクトップ：共通テキストと見出しのレスポンシブ */
  .p-common-service-contents-features-list__title {
    font-size: 1.3rem;
  }
  .p-common-service-contents-features-list__text {
    font-size: 1.3rem;
  }
  .p-common-service-contents-features-list__title
    + .p-common-service-contents-features-list__text {
    font-size: 1.05rem;
  }
}
