@charset "utf-8";

/* --- 1. 料金ページ固有のアニメーション --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- 2. タイトル装飾（ページ固有） --- */
.decorated-title {
  text-align: center;
  margin: 40px 0;
  position: relative;
}

.decoration-bottom {
  width: 300px;
  opacity: 0.7;
  display: block;
  margin: 0 auto;
  margin-bottom:0%;
}

h2 {
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
  font-size: 2rem;
  margin: 0;
  padding: 10px 0;
}

/* --- 3. 料金表セクション（固有） --- */
.pricing-section {
  padding: 0%;
  background-color: transparent;
  font-family: 'Yu Gothic', sans-serif;
  color: #333;
}
.pricing-header {
  text-align: center;
  margin-top:0%;
  margin-bottom: 30px;
}

.pricing-header h2 {
  font-size: 1.8em;
  color: #5e3c8f;
  margin-bottom: 10px;
}
.pricing-table {
  max-width: 1200px !important;
  margin: 40px auto !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
  gap: 25px !important;
}

.pricing-row {
  background: #faefef;
  border-radius: 12px; /* ←ここを変更 */
  border: 2px solid #9c7d27;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 20px 24px;
  margin-bottom: 20px;
  opacity: 0; /* 初期は非表示 */
  transform: translateY(40px); /* 初期位置を下に */
  animation: fadeInUp 0.8s ease-out forwards;
}

/* カード内のテキストスタイル */
.pricing-row h3 {
  font-size: 1.4rem !important; /* サイズを適切に固定 */
  color: #3e2b6e !important;
  margin: 0 0 15px 0 !important;
  padding: 0 !important;
  border: none !important;      /* Cocoonの枠線を消す */
  background: none !important;  /* Cocoonの背景色を消す */
  text-align: center !important;
  font-family: "Hiragino Mincho ProN", serif;
}

.pricing-row p {
  font-size: 1rem !important;   /* 文字サイズを標準に戻す */
  line-height: 1.6 !important;
  margin: 8px 0 !important;
  padding: 0 !important;
  font-family: "Hiragino Mincho ProN", serif;
}

.price {
  font-size: 1.1rem !important;
  display: block;
  margin-top: 10px !important;
}

/* 注釈テキスト */
.note, .note2 {
  font-size: 0.95em;
  color: #666;
  margin-top:0%;
  text-align: center;
}