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

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

/* カード */
.pricing-card {
  position: relative;
  width: 1240px;
  height: 700px;
  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: 'Hiragino Sans', sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0 0 40px;
}

/* タイトル */
.pricing-title {
  font-family: 'Hiragino Sans', 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;
}

/* レスポンシブ対応 */
@media (max-width: 1440px) {
  .pricing-section {
    height: auto;
    padding: 80px 0;
  }

  .pricing-section .container {
    width: 100%;
    padding: 0 30px;
  }

  .pricing-card {
    width: 100%;
    height: auto;
    min-height: 400px;
  }

  .pricing-title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 60px 0;
  }

  .pricing-section .container {
    padding: 0 20px;
  }

  .pricing-card {
    min-height: 350px;
    border-radius: 12px;
  }

  .pricing-content {
    padding: 40px 20px;
  }

  .pricing-label {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .pricing-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}
