/* ===== Service checklist ===== */
.svc-checklist {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.svc-checklist::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-orange), var(--c-pink));
}
.svc-checklist h3 {
  font-size: 19px;
  color: var(--c-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.svc-checklist h3::before {
  content: '✓';
  width: 32px; height: 32px;
  background: var(--grad-primary);
  color: white;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(59, 125, 201, 0.3);
}
.svc-checklist ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 28px;
}
.svc-checklist li {
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 14px;
  background: var(--c-bg-soft);
  border-radius: var(--radius-sm);
}
.svc-checklist li::before {
  content: '✓';
  background: var(--c-green);
  color: white;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

/* ===== Trial plan ===== */
.trial-plan {
  background: linear-gradient(135deg, #FFF5DD 0%, #FFE9C7 50%, #FFD7C2 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-warm);
}
.trial-plan::before, .trial-plan::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
}
.trial-plan::before {
  width: 200px; height: 200px;
  background: var(--c-pink);
  top: -80px; right: 10%;
}
.trial-plan::after {
  width: 180px; height: 180px;
  background: var(--c-yellow);
  bottom: -60px; left: -40px;
}
.trial-plan > * { position: relative; z-index: 1; }

.trial-plan .trial-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--c-orange);
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  box-shadow: var(--shadow-soft);
}
.trial-plan .trial-tag::before {
  content: '🎁';
}
.trial-plan .trial-time {
  font-size: 52px;
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: -0.02em;
}
.trial-plan .trial-time small {
  font-size: 16px; color: var(--c-text-mid);
  font-weight: 500; margin-left: 10px;
}
.trial-plan .trial-price-wrap {
  text-align: center;
  background: white;
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.trial-plan .trial-price-label {
  font-size: 13px; color: var(--c-text-light); margin-bottom: 4px;
}
.trial-plan .trial-price {
  font-size: 56px;
  font-weight: 700;
  color: var(--c-orange);
  line-height: 1;
  letter-spacing: -0.02em;
}

/* ===== Single use ===== */
.single-section {
  background: white;
  border-radius: var(--radius-xl);
  padding: 44px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.single-section .section-head {
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
}
.single-section .section-head .pill {
  background: var(--grad-primary);
  color: white;
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(59, 125, 201, 0.3);
}
.single-section .section-head h3 {
  font-size: 24px;
  color: var(--c-primary);
}
.single-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.rate-table {
  background: var(--c-bg-soft);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--c-border-soft);
}
.rate-table h4 {
  color: var(--c-primary);
  font-size: 15px;
  margin-bottom: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.rate-table h4::before {
  content: '';
  width: 4px; height: 18px;
  background: var(--c-primary);
  border-radius: 2px;
}
.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--c-border);
}
.rate-row:last-child { border-bottom: none; }
.rate-row .label { font-weight: 700; }
.rate-row .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--c-orange);
  letter-spacing: -0.01em;
}
.rate-table.option {
  background: var(--c-orange-pale);
  border-color: var(--c-orange-soft);
}
.rate-table.option h4 { color: var(--c-orange); }
.rate-table.option h4::before { background: var(--c-orange); }
.rate-table.option .price { color: var(--c-text); }

.single-note {
  text-align: right;
  margin-top: 18px;
  font-size: 13px;
  color: var(--c-text-light);
}

/* ===== Monthly plans ===== */
.monthly-section {
  background: white;
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-card);
}
.monthly-section .section-head {
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
}
.monthly-section .section-head .pill {
  background: var(--grad-warm);
  color: white;
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-warm);
}
.monthly-section .section-head h3 {
  font-size: 24px;
  color: var(--c-primary);
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.plan-card {
  background: var(--c-bg-soft);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.plan-card.popular {
  border-color: var(--c-orange);
  background: linear-gradient(180deg, #FFFDF8 0%, white 100%);
  box-shadow: 0 12px 32px rgba(245, 166, 35, 0.20);
  transform: scale(1.03);
}
.plan-card.popular:hover { transform: scale(1.03) translateY(-4px); }
.plan-card.popular::before {
  content: '人気No.1';
  position: absolute;
  top: -18px; right: 50%;
  transform: translateX(50%);
  background: var(--grad-warm);
  color: white;
  padding: 6px 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(245, 166, 35, 0.4);
  letter-spacing: 1px;
}
.plan-tag {
  display: inline-block;
  background: var(--c-primary);
  color: white;
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.plan-card.popular .plan-tag { background: var(--c-orange); }
.plan-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 4px;
}
.plan-sub {
  font-size: 13px;
  color: var(--c-text-light);
  margin-bottom: 16px;
}
.plan-price {
  font-size: 40px;
  font-weight: 700;
  color: var(--c-orange);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.plan-price small {
  font-size: 14px;
  color: var(--c-text-light);
  font-weight: 400;
  margin-left: 2px;
}
.plan-per {
  font-size: 13px;
  color: var(--c-text-light);
  margin-bottom: 16px;
}
.plan-note {
  font-size: 13px;
  color: var(--c-text-mid);
  padding-top: 16px;
  border-top: 1px dashed var(--c-border);
}

/* ===== Notice block ===== */
.notice-block {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 48px;
  border: 2px dashed var(--c-orange-soft);
}
.notice-block h4 {
  font-size: 17px;
  color: var(--c-text);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.notice-block h4::before {
  content: 'ℹ';
  background: var(--c-primary);
  color: white;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.notice-block ul li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 10px;
  font-size: 14.5px;
  line-height: 1.75;
}
.notice-block ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--c-orange);
  font-weight: 700;
  font-size: 18px;
}
.notice-tip {
  background: var(--c-yellow-soft);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.75;
  border-left: 4px solid var(--c-yellow);
}
.notice-tip strong { color: var(--c-orange); }

@media (max-width: 900px) {
  .svc-checklist ul { grid-template-columns: 1fr; }
  .single-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; gap: 32px; }
  .plan-card.popular { transform: none; }
  .plan-card.popular:hover { transform: translateY(-4px); }
  .trial-plan { flex-direction: column; text-align: center; gap: 28px; }
}
@media (max-width: 768px) {
  .svc-checklist { padding: 24px 20px; border-radius: var(--radius-md); }
  .svc-checklist h3 { font-size: 16px; }
  .svc-checklist li { font-size: 14px; padding: 8px 12px; }

  .trial-plan { padding: 32px 24px; border-radius: var(--radius-lg); }
  .trial-plan .trial-time { font-size: 36px; }
  .trial-plan .trial-time small { font-size: 13px; }
  .trial-plan .trial-price { font-size: 44px; }
  .trial-plan .trial-price-wrap { padding: 18px 24px; }

  .single-section, .monthly-section { padding: 28px 22px; border-radius: var(--radius-lg); }
  .single-section .section-head h3,
  .monthly-section .section-head h3 { font-size: 19px; }

  .rate-table { padding: 20px; }
  .rate-row .price { font-size: 20px; }

  .plan-card { padding: 28px 20px; }
  .plan-price { font-size: 32px; }

  .notice-block { padding: 22px 20px; }
  .notice-tip { padding: 14px 16px; font-size: 13px; }
}
