/* ==========================================================
   04 共感セクション (.empathy)
   SP: 97-37 / PC: 15-66
   ========================================================== */

.empathy {
  background-color: var(--color-white);
  padding: 64px 0;
  overflow: hidden;
}

.empathy .empathy__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* --- 見出し --- */
.empathy .worry__title {
  width: fit-content;
  max-width: 100%;
  padding: 0 22px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 30px;
  line-height: 48px;
  letter-spacing: 1.8px;
  color: var(--color-text);
  text-align: left;
}

.empathy .u-gold-underline {
  font-style: normal;
  background: linear-gradient(
    to bottom,
    rgba(201, 162, 75, 0) 78%,
    rgba(201, 162, 75, 0.55) 78%
  );
}

/* --- ビジュアル --- */
.empathy .worry__visual--sp {
  width: 100%;
  height: 230px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 0%,
    #000 100%
  );
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #000 100%);
}

.empathy .worry__visual--sp img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  /* 元画像は全身(960x1200)。頭部〜上半身が写るよう上端からトリミング */
  object-position: top;
}

/* --- お悩みリスト --- */
.empathy .worry__list {
  width: calc(100% - 44px);
}

.empathy .worry__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 10px 20px 0;
  border-top: 1px solid rgba(201, 162, 75, 0.35);
}

.empathy .worry__item:last-child {
  border-bottom: 1px solid rgba(201, 162, 75, 0.35);
}

.empathy .worry__icon {
  flex-shrink: 0;
  margin-top: 5px;
}

.empathy .worry__icon img {
  width: 16px;
  height: 12px;
}

.empathy .worry__text {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 14px;
  line-height: 22.4px;
  letter-spacing: 0.6px;
  color: var(--color-text);
}

.empathy .worry__em {
  font-style: normal;
  color: var(--color-gold);
}

@media (min-width: 768px) {
  .empathy {
    padding: 0;
  }

  .empathy .empathy__inner {
    display: block;
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: 173px 0 168px;
  }

  .empathy .worry__title {
    width: auto;
    margin-left: clamp(32px, 12.8vw, 184px);
    padding: 0;
    font-size: 44px;
    line-height: 66px;
    letter-spacing: 2.6px;
  }

  .empathy .worry__visual--pc {
    position: absolute;
    top: 67px;
    left: 557px;
    width: 960px;
    height: 1200px;
    z-index: 0;
  }

  .empathy .worry__visual--pc img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .empathy .worry__title,
  .empathy .worry__list {
    position: relative;
    z-index: 1;
  }

  .empathy .worry__list {
    width: min(601px, calc(100% - clamp(32px, 12.8vw, 184px) - 32px));
    margin-top: 50px;
    margin-left: clamp(32px, 12.8vw, 184px);
  }

  .empathy .worry__item {
    padding: 22px 4px 22px 0;
  }

  .empathy .worry__icon {
    margin-top: 9px;
  }

  .empathy .worry__icon img {
    width: 17px;
    height: 13px;
  }

  .empathy .worry__text {
    font-size: 16px;
    line-height: 30.4px;
  }
}
