/* web solution page */

/* バッジリスト */
.sol_badge_list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ステップ */
.sol_steps .sol_step_list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.sol_steps .step {
  background: #fff;
  border: 1px solid #E6E6E6;
  border-radius: 16px;
  padding: 16px 20px;
}
.sol_step_head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.sol_step_head .num {
  font-family: var(--font-en);
  font-size: 18px;
  color: var(--color-blue2);
  font-weight: 700;
}
.sol_step_head .ttl {
  font-weight: var(--font-bold);
}
.sol_steps .txt {
  font-size: 14px;
  line-height: 1.6;
}

/* ポイント */
.sol_points .sol_point_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.sol_points .point {
  background: #fff;
  border: 1px solid #E6E6E6;
  border-radius: 16px;
  padding: 16px;
  text-align: left;
}
.sol_points .point .ttl {
  font-weight: var(--font-bold);
  margin-bottom: 6px;
}
.sol_points .point .txt {
  font-size: 14px;
  line-height: 1.6;
}

/* テーブル */
.sol_table .table-wrap {
  margin-top: 16px;
}

/* 特徴（サークル） */
.feature_circle_list {
  display: flex;
  gap: 16px;
  margin: 16px 0 24px;
  padding: 0;
  list-style: none;
}
.feature_circle_list .item {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #E6E6E6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.feature_circle_list .ttl {
  font-weight: var(--font-bold);
}
.feature_circle_list .txt {
  font-size: 12px;
  margin-top: 4px;
}

/* 特徴（四角） */
.feature_rect_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.feature_rect_list .rect {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid #E6E6E6;
  border-radius: 16px;
  padding: 12px;
}
.feature_rect_list .rect_pic {
  width: 120px;
  flex-shrink: 0;
}
.feature_rect_list .rect_pic .img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
}
.feature_rect_list .rect_ttl {
  font-weight: var(--font-bold);
  margin-bottom: 4px;
}
.feature_rect_list .rect_txt {
  font-size: 14px;
  line-height: 1.6;
}

/* 変化 */
.change_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.chg {
  background: #fff;
  border: 1px solid #E6E6E6;
  border-radius: 16px;
  padding: 16px;
}
.chg_ttl {
  font-weight: var(--font-bold);
  margin-bottom: 6px;
}
.chg_txt {
  font-size: 14px;
}

/* 実績 */
.work_grid {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.work_grid > .c_card_work {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

.c_card_work_pic{
  transition: 0.3s;
  border-radius: 16px;
  width: 100%;
  height: 140px;
  overflow: hidden;
}

.work_grid > .c_card_work .img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  transition: 0.3s;
}
.work_grid > .c_card_work .name {
  display: block;
  padding: 10px 0;
  /* font-weight: var(--font-bold); */
  font-size: 16px;
  line-height: 1.4;
}

.hover .c_card_work:has([href]):hover .c_card_work_pic {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
  transform: translateY(-2px);
}
.hover .c_card_work:has([href]):hover .name {
  color: var(--color-red);
}


.work_grid--square .c_card_work_pic {
	height: auto;
}

.work_grid--square > .c_card_work .img {
	height: 100%;
	aspect-ratio: 1/1;
}

.work_grid--top_image > .c_card_work .img {
  object-position: top;
}


/* レスポンシブ対応 */
@media screen and (max-width: 1024px) {
  .sol_steps .sol_step_list {
    grid-template-columns: 1fr;
  }
  .sol_points .sol_point_list {
    grid-template-columns: repeat(2, 1fr);
  }
  .work_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .sol_points .sol_point_list {
    grid-template-columns: 1fr;
  }
  .feature_circle_list {
    flex-wrap: wrap;
  }
  .change_grid {
    grid-template-columns: 1fr;
  }
  .work_grid > .c_card_work .name {
    font-size: 13px;
  }
}


@media screen and (max-width: 767px) {
  .c_card_1_cont .c_ttl_7 {
    font-size: 28px;
  }
}


.c_card_14_txt + .c_btn_wrap {
	margin-top: 30px;
	justify-content: flex-start;
}