.recept-section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.recept-container {
  text-align: center;
}

.recept-subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: #0044ff;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.recept-subtitle span {
  display: inline-block;
  margin: 0 4px;
  color: #0044ff;
}

.section-heading .highlight-red {
  color: #e63946;
}

.recept-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.recept-card-wrapper {
  flex: 1;
  min-width: 280px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.recept-badge {
  background-color: #0044ff;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 8px 50px;
  border-radius: 6px;
  margin-bottom: 25px;
  /* カードに少しかぶせる */
  z-index: 2;
  box-shadow: 0 4px 6px rgba(0, 68, 255, 0.2);
}

.recept-card-box {
  width: 100%;
  background-color: #ffffff;
  border: 3px solid #e63946;
  border-radius: 12px;
  padding: 10px 0;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
}

.recept-card-text {
  font-size: clamp(0.95rem, 0.439rem + 1.42vw, 1.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
}

.recept-card-text .text-red {
  color: #e63946;
  font-size: clamp(1.55rem, 0.911rem + 1.77vw, 2.55rem);
  display: inline-block;
  margin-top: 4px;
}

@media (max-width: 928px) {
  .recept-card-wrapper {
    min-width: 220px;
  }
}

@media (max-width: 768px) {
  .recept-section {
    padding: 40px 16px;
  }

  .recept-subtitle {
    font-size: 0.85rem;
  }

  .recept-title {
    font-size: 1.4rem;
    margin-bottom: 36px;
  }

  .recept-cards {
    gap: 30px;
  }

  .recept-card-wrapper {
    max-width: 100%;
  }

  .recept-card-box {
    padding: 5px 0;
    min-height: auto;
  }

  .recept-card-wrapper {
    min-width: 130px;
  }
}

/* 料金プラン セクション全体の背景とクリップパス */
.price-section {
  position: relative;
  background-color: #eaf0fc;
  /* 背景の薄いブルーグレー */
  padding: 80px 20px;
  overflow: hidden;
}

/* 背景の上の山なりの斜め切り替えデザインをclip-pathで再現 */
.price-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f3f6fd;
  /* さらに薄いアクセントカラー */
  clip-path: polygon(0 0, 50% 15%, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.price-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* 見出し周り */
.price-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0044ff;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.price-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.price-desc {
  font-size: 1.15rem;
  color: #334155;
  margin-bottom: 50px;
  font-weight: 500;
}

/* メインの料金カードボックス */
.price-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-bottom: 30px;
}

/* 左側のアイコンエリア */
.price-icon-area {
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-icon-circle {
  width: 90px;
  height: 90px;
  background-color: #f0f4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.price-icon-circle img {
  width: 75%;
}

/* 右側の料金テキストエリア */
.price-text-area {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.price-label {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0a192f;
}

.price-number-wrap {
  display: flex;
  align-items: baseline;
}

.price-num {
  font-size: 4.75rem;
  font-weight: 800;
  color: #3b5bdb;
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-unit {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0a192f;
  margin-left: 6px;
}

/* 注意書きテキスト */
.price-notes {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.8;
  text-align: center;
}

@media (max-width: 768px) {
  .price-section {
    padding: 50px 16px;
  }

  .price-title {
    font-size: 1.6rem;
  }

  .price-desc {
    margin-bottom: 30px;
  }

  .price-card {
    flex-direction: column;
    gap: 24px;
    padding: 30px 20px;
  }

  .price-text-area {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .price-num {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .recept-cards {
    flex-direction: column;
  }

  .recept-card-text {
    font-size: 1.25rem;
  }

  .recept-card-text .text-red {
    font-size: 1.75rem;
  }
}
