/* =========================
   Concept
========================= */

.lp-concept{
  padding: 56px 0;
  background: #cfefff url("../img/lp/concept/tomocle_pc_concept_bg.png") no-repeat center / cover;
}

/* 基本幅1250（テキストは中央） */
.lp-concept__inner{
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

/* タイトル */
.lp-concept__title{
  margin: 0 0 22px;
  font-weight: 900;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.35;
  color: #222;
  letter-spacing: .02em;
}

/* 本文 */
.lp-concept__body{
  display: grid;
  gap: 18px;
  font-size: 16px;
  line-height: 2.0;
  color: #222;
}

.lp-concept__body p{
  margin: 0;
}

/* 強調（青文字） */
.lp-concept__em{
  font-weight: 900;
  color: #1d2088;
}

/* =========================
   SP
========================= */
@media (max-width: 767px){
  .lp-concept{
    padding: 50px 0;
    background-position: center top; /* SPは上基準のほうが破綻しにくい */
    background-size: cover;
  }

  .lp-concept__inner{
    padding: 0 16px;
  }

  .lp-concept__title{
    margin-bottom: 14px;
    font-size: 18px;
  }

  .lp-concept__body{
    gap: 14px;
    font-size: 14px;
    line-height: 1.9;
  }

  /* SPは改行が不自然になりやすいので、brを潰す */
  .lp-concept__body br{
    display: none;
  }
}

@media (max-width: 767px){
  .lp-concept{
    background-image: url("../img/lp/concept/tomolce_sp_concept.png");
    background-position: center top;
    background-size: cover;
  }
}
@media (max-width: 767px){
  .lp-concept__title{
    font-size: 17px;      /* 18 → 17 */
    line-height: 1.6;
    margin-bottom: 12px; /* 14 → 12 */
  }
}
@media (max-width: 767px){
  .lp-concept__body{
    font-size: 14px;
    line-height: 1.85; /* 1.9 → 1.85 */
    gap: 12px;         /* 14 → 12 */
  }
}

