/* =============================================
   指導料について — price.css
   青ペン×ノート
   ============================================= */

/* お知らせバナー（大きな黄色い付箋） */
.price-announce {
  background: #fff8c9;
  border-radius: 2px;
  box-shadow: 0 12px 30px rgba(36,52,74,.12);
  transform: rotate(-.6deg);
  padding: 48px 40px 40px;
  margin-bottom: 72px;
  text-align: center;
  position: relative;
}
.price-announce::before {
  content: '';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%) rotate(1.5deg);
  width: 120px;
  height: 28px;
  background: rgba(150,190,255,.45);
  border-left: 1px dashed rgba(255,255,255,.8);
  border-right: 1px dashed rgba(255,255,255,.8);
}
.price-announce__badge {
  display: inline-block;
  font-family: 'Klee One', cursive;
  background: transparent;
  color: #b08a1e;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .14em;
  padding: 0;
  margin-bottom: 14px;
}
.price-announce__title {
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 8px;
}
.price-announce__note {
  font-size: .76rem;
  color: #9a8a55;
  margin-bottom: 20px;
}
.price-announce__tagline {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 16px;
}
.price-announce__tagline em,
.price-announce__tagline strong { font-style: normal; }
.price-announce__quote {
  display: inline-block;
  font-family: 'Klee One', cursive;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  border-left: 2.5px solid var(--blue);
  padding: 6px 18px;
  text-align: left;
  line-height: 2;
}

/* スクロールヒント */
.price-scroll-hint {
  font-size: .74rem;
  color: var(--gray-400);
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: .06em;
  display: none;
}

/* テーブル */
.price-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 24px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(36,52,74,.07);
  background: #fff;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
  font-size: .88rem;
}
.price-table th { white-space: nowrap; }
.price-table thead tr:first-child th {
  background: var(--blue-dark);
  color: #fff;
  padding: 14px 12px;
  text-align: center;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.14);
}
.price-table thead tr:last-child th {
  background: var(--blue);
  color: rgba(255,255,255,.92);
  padding: 9px 12px;
  text-align: center;
  font-size: .78rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.12);
}
.price-table tbody td {
  padding: 15px 12px;
  text-align: center;
  border: 1px dashed rgba(43,92,201,.28);
  vertical-align: middle;
  line-height: 1.5;
  background: #fff;
}
.price-table tbody tr:hover td { background: var(--blue-pale); }

.td-course-takumi {
  background: var(--blue-dark) !important;
  color: #fff !important;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .04em;
  width: 88px;
  border: 1px solid rgba(255,255,255,.14) !important;
}
.td-course-takumi span {
  display: block;
  font-family: 'Klee One', cursive;
  font-size: .68rem;
  font-weight: 400;
  color: rgba(255,255,255,.6);
  letter-spacing: .1em;
  margin-top: 2px;
}
.td-course-elite {
  background: var(--blue) !important;
  color: #fff !important;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .04em;
  width: 88px;
  border: 1px solid rgba(255,255,255,.14) !important;
}
.td-course-elite span {
  display: block;
  font-family: 'Klee One', cursive;
  font-size: .68rem;
  font-weight: 400;
  color: rgba(255,255,255,.6);
  letter-spacing: .1em;
  margin-top: 2px;
}
.td-rank {
  text-align: left !important;
  font-size: .84rem;
  min-width: 170px;
}
.td-rank small {
  display: block;
  color: var(--gray-400);
  font-size: .74rem;
  margin-top: 3px;
}
.td-price {
  font-weight: 900;
  color: var(--text);
  white-space: nowrap;
}
.td-unit {
  font-size: .78rem;
  color: var(--gray-400);
  white-space: nowrap;
}

/* 注釈（ノートの端に書いたメモ） */
.price-notes {
  background:
    repeating-linear-gradient(to bottom, transparent 0 34px, rgba(43,92,201,.09) 34px 35px),
    var(--blue-pale);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 20px 28px;
  margin-top: 4px;
  margin-bottom: 0;
}
.price-notes li {
  font-size: .82rem;
  color: var(--gray-600);
  padding-left: 1.2em;
  text-indent: -1.2em;
  line-height: 35px;   /* 罫線に合わせる */
}

/* ボタン */
.price-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .price-announce { padding: 32px 20px 28px; }
  .price-scroll-hint { display: block; }
  .price-notes { padding: 14px 20px; }
  .price-btns { flex-direction: column; align-items: center; }
}
