/* =========================
  Worries block
========================= */
.lp-worries{
  padding: 80px 20px 90px;
}

.lp-worries__head{
  max-width: 1100px;
  margin: 0 auto 46px;
}

.lp-worries__title{
  margin: 0;
  text-align: center;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.25;
}

/* PC：4列 */
.lp-worries__grid{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.lp-worries__col{
  display: grid;
  grid-template-rows: auto 40px auto; /* 上段 / 矢印 / 下段 */
  justify-items: center;
  align-content: start;
}

.lp-worries__person{
  width: 100%;
  display: grid;
  justify-items: center;
}

.lp-worries__person img{
  width: min(160px, 100%);
  height: auto;
  display: block;
}

.lp-worries__balloon{
  margin: 14px 0 0;
  width: 100%;
  max-width: 220px;
  background: #dff1fb; /* 薄水色 */
  border-radius: 8px;
  padding: 12px 12px;
  text-align: center;
  font-weight: 700;
  line-height: 1.45;
  font-size: 14px;
}

.lp-worries__arrow{
  display: grid;
  place-items: center;
  width: 100%;
}

.lp-worries__arrow img{
  width: 42px;
  height: auto;
  display: block;
}

/* SP：2列（1列に2人縦並び） */
@media (max-width: 767px){
  .lp-worries{
    padding: 56px 16px 64px;
  }

  .lp-worries__grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 16px;
  }

  .lp-worries__person img{
    width: min(140px, 100%);
  }

  .lp-worries__balloon{
    max-width: 180px;
    font-size: 13px;
    padding: 10px 10px;
  }

  .lp-worries__arrow img{
    width: 34px;
  }
}

/* =========================
   Worries title（確実に効かせる）
========================= */

.lp-worries__head {
  width: 100%;
  margin: 0 auto 48px;
  text-align: center;
}

.lp-worries__title {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .04em;
  color: #2b2b2b;
}

/* スマホ */
@media (max-width: 767px) {
  .lp-worries__head {
    margin-bottom: 36px;
  }

  .lp-worries__title {
    font-size: 22px;
    line-height: 1.4;
  }

  .is-sp {
    display: inline;
  }
}

/* PCでは改行しない */
@media (min-width: 768px) {
  .is-sp {
    display: none;
  }
}








/* =========================
   Worries：タイトル（青い帯）
========================= */
.lp-worries__head{
  text-align: center;
  margin-bottom: 48px;
}

.lp-worries__title{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  /* 見た目 */
  background: #1c2e86;
  color: #fff;
  border-radius: 9999px;
  padding: 18px 56px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;

  /* ここが効かない時の“勝ち筋” */
  text-align: center;
}

.lp-worries__title::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);

  /* 下の三角 */
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 16px solid #1c2e86;
}

/* SP：文字サイズ＆改行前提の幅 */
@media (max-width: 767px){
  .lp-worries__head{
    margin-bottom: 28px;
  }

  .lp-worries__title{
    width: min(92vw, 520px);
    padding: 14px 18px;
    font-size: 18px;
    border-radius: 28px;
  }

  .lp-worries__title::after{
    bottom: -14px;
    border-left-width: 14px;
    border-right-width: 14px;
    border-top-width: 14px;
  }
}

