/* ===== 当院の特徴セクション（Figma完全準拠・スマホファースト） ===== */

.lp-features {
  width: 100%;
  padding: 40px 15px;
  background-color: #ffffff;
}

.lp-features__inner {
  max-width: 390px;
  margin: 0 auto;
}

/* === セクションヘッダー === */
.lp-features__header {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
}

.lp-features__title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 24px !important;
  line-height: 1.5 !important;
  color: #3d3d3d;
  margin: 0 0 8px 0;
}

.lp-features__title-highlight {
  color: #017ac6;
}

.lp-features__title-decoration {
  position: relative;
  width: 39.384px;
  height: 1.904px;
  margin: 0 auto;
}

.lp-features__decoration-line {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.lp-features__decoration-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

/* === カード一覧 === */
.lp-features__cards {
  display: flex;
  flex-direction: column;
  gap: 25.714px;
}

/* === 個別カード === */
.lp-features__card {
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 260px;
  margin: 0 auto;
  border-radius: 0;
  overflow: hidden;
}

/* カード画像 */
.lp-features__card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.lp-features__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
}

/* 1枚目の画像調整 */
.lp-features__card:nth-child(1) .lp-features__image {
  transform: scale(1.4) translateX(40px) translateY(-40px);
}

/* 3枚目の画像調整 */
.lp-features__card:nth-child(3) .lp-features__image {
  transform: translateY(-50px);
}

/* 4枚目の画像調整 */
.lp-features__card:nth-child(4) .lp-features__image {
  transform: translateY(-20px);
}

/* カードコンテンツ */
.lp-features__card-content {
  position: absolute;
  left: 0;
  top: 175px;
  width: 100%;
  height: 85px;
  background-color: #348dd7;
}

/* バッジコンテナ */
.lp-features__badge-container {
  position: absolute;
  left: 18px;
  top: 175px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  transform: translateY(-50%);
  z-index: 10;
}

/* Featureバッジ */
.lp-features__badge {
  width: 87.481px;
  height: 23.24px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 19.293px;
  line-height: 26.812px;
  color: #017ac6;
  flex-shrink: 0;
}

/* 数字 */
.lp-features__number {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 56px;
  color: #ffffff;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
  margin-top: -13px;
  margin-left: -5px;
}

/* テキスト */
.lp-features__card-text {
  position: absolute;
  left: 18px;
  bottom: 11px;
  width: calc(100% - 36px);
}

.lp-features__text-line {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 24px;
  color: #ffffff;
  margin: 0;
  text-align: left;
}

/* タブレット（768px〜1023px）: スマホレイアウト維持 */
@media (min-width: 768px) and (max-width: 1023px) {
  .lp-features {
    padding: 50px 20px;
  }

  .lp-features__inner {
    max-width: 500px;
  }

  .lp-features__card {
    max-width: 450px;
    height: 290px;
  }

  .lp-features__title {
    font-size: 30px !important;
    line-height: 1.5 !important;
  }

  .lp-features__badge-container {
    left: 22px;
    top: 192px;
    gap: 12px;
  }

  .lp-features__card-content {
    height: 98px;
  }

  .lp-features__badge {
    width: 110px;
    height: 29px;
    font-size: 24px;
    line-height: 33px;
  }

  .lp-features__number {
    font-size: 66px;
    line-height: 92px;
    margin-top: -10px;
  }

  .lp-features__card-text {
    left: 22px;
    bottom: 8px; /* 少し下に移動 */
    width: calc(100% - 44px);
  }

  .lp-features__text-line {
    font-size: 24px;
    line-height: 34px;
  }
}

/* PC（1024px以上）: 2カラムグリッド */
@media (min-width: 1024px) {
  .lp-features {
    padding: 80px 40px;
  }

  .lp-features__inner {
    max-width: 1200px;
  }

  .lp-features__header {
    margin-bottom: 60px;
  }

  .lp-features__title {
    font-size: 42px !important;
    line-height: 1.5 !important;
  }

  .lp-features__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .lp-features__card {
    max-width: 100%;
    height: 320px;
  }

  .lp-features__badge-container {
    left: 25px;
    top: 212px;
    gap: 14px;
  }

  .lp-features__card-content {
    top: auto;
    bottom: 0;
    height: 108px;
  }

  .lp-features__badge {
    width: 120px;
    height: 32px;
    font-size: 26px;
    line-height: 36px;
  }

  .lp-features__number {
    font-size: 60px;
    line-height: 84px;
    margin-top: -20px;
    margin-left: -8px;
  }

  .lp-features__card-text {
    left: 25px;
    bottom: 11px;
    width: calc(100% - 50px);
  }

  .lp-features__text-line {
    font-size: 26px;
    line-height: 37px;
  }
}

/* 1024pxのみ: フォントサイズを小さく */
@media (min-width: 1024px) and (max-width: 1279px) {
  .lp-features__text-line {
    font-size: 22px;
    line-height: 32px;
  }
}
