/* 料金プランセクション */
.pricing-section {
  width: 1440px;
  height: 1018px;
  background-color: #fff;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-section .container {
  padding: 0 100px;
  margin: 0 auto;
}

/* ラベル「料金プラン」 */
.pricing-section .section-title {
  width: 1440px;
  padding: 50px;
  text-align: left;
  margin: 0;
}

/* カード */
.pricing-card {
  position: relative;
  width: 1240px;
  height: 780px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
}

/* 背景画像 */
.pricing-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.pricing-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* オーバーレイ（暗いマスク） */
.pricing-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* コンテンツ */
.pricing-content {
  position: relative;
  z-index: 2;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

/* ラベル「料金プラン」 */
.pricing-label {
  font-family: noto-sans-jp, sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0 0 20px;
}

/* タイトル */
.pricing-title {
  font-family: noto-sans-jp, sans-serif;
  font-weight: 800;
  font-size: 59px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0 0 60px;
}

/* CTAボタン */
.pricing-cta {
  display: flex;
  justify-content: center;
}
