/* =====================================================
   shikisui.plus — 公開ページ
   ===================================================== */

/* ── ヘッダー ── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.3s, box-shadow 0.3s;
}
#site-header.scrolled {
  background: rgba(13, 5, 32, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.header-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: #fff;
}
.site-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) { .site-nav { display: flex; } }
.nav-link {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  transition: color 0.2s;
}
.nav-link:hover { color: #fff; }
.nav-avatar {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  object-fit: cover;
}
.btn-nav-line {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--clr-line);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  transition: opacity 0.2s;
}
.btn-nav-line:hover { opacity: 0.85; }
.btn-nav-logout {
  background: none;
  border: none;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: color 0.2s;
}
.btn-nav-logout:hover { color: #fff; }

/* ── ハンバーガー ── */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
@media (min-width: 768px) { .hamburger { display: none; } }
.hamburger-line {
  display: block;
  height: 1px;
  background: #fff;
  transition: all 0.3s;
}
.hamburger-line:nth-child(1),
.hamburger-line:nth-child(2) { width: 1.5rem; }
.hamburger-line:nth-child(3)  { width: 1rem; }

/* ── モバイルメニュー ── */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(13, 5, 32, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
#mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
#mobile-menu a,
#mobile-menu .mobile-nav-btn {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.15em;
  background: none;
  border: none;
  cursor: pointer;
}
#menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.45);
  background: none;
  border: none;
  cursor: pointer;
}

/* ── main padding ── */
.main-top   { padding-top: 0; }
.main-inner { padding-top: 4.5rem; }

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0f0a1a 0%, #1e0a3c 40%, #2d1060 70%, #1a0a2e 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(107,33,168,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 20% 70%, rgba(216,180,254,0.12) 0%, transparent 60%);
}
.hero-inner {
  position: relative;
  text-align: center;
  padding: 4rem 1.5rem 7rem;
  max-width: 680px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: #D8B4FE;
  border: 1px solid rgba(216,180,254,0.4);
  padding: 0.35em 1.2em;
  border-radius: 9999px;
  margin-bottom: 2rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 5.2vw, 2.5rem);
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}
.hero-sub {
  font-size: clamp(0.85rem, 2vw, 1rem);
  line-height: 2.2;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; gap: 0.85rem; }
  .hero-ctas .btn-hero-primary,
  .hero-ctas .btn-hero-outline { width: 100%; max-width: 300px; text-align: center; }
  .hero-scroll { display: none; }
}
.btn-hero-primary {
  background: var(--clr-accent);
  color: #fff;
  padding: 0.9rem 2.4rem;
  border-radius: 9999px;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-block;
  min-width: 230px;
  text-align: center;
  box-sizing: border-box;
}
.btn-hero-primary:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-hero-outline {
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  padding: 0.9rem 2.4rem;
  border-radius: 9999px;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
  display: inline-block;
  min-width: 230px;
  text-align: center;
  box-sizing: border-box;
}
.btn-hero-outline:hover { border-color: rgba(255,255,255,0.7); color: #fff; transform: translateY(-1px); }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
}
.hero-scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ===== セクション共通 ===== */
.t-section       { padding: 6rem 1.5rem; }
.t-section-dark  { padding: 6rem 1.5rem; background: #0f0a1a; color: #fff; }
.t-section-gray  { padding: 6rem 1.5rem; background: #faf9f7; }
.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.section-center { max-width: 860px; margin: 0 auto; text-align: center; }
.section-center-sm { max-width: 700px; margin: 0 auto; text-align: center; }

/* ===== お客様の声カード（LP用） ===== */
.lp-voice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 800px;
  margin: 3rem auto 0;
}
@media (min-width: 640px) { .lp-voice-grid { grid-template-columns: repeat(2, 1fr); } }
.lp-voice-card {
  background: #fff;
  border: 1px solid #ece8e0;
  border-radius: 1rem;
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.lp-voice-icon { font-size: 1.3rem; flex-shrink: 0; line-height: 1.5; }
.lp-voice-text { font-size: 0.9rem; color: #333; line-height: 1.8; }

/* ===== ペインポイント ===== */
.pain-list {
  max-width: 640px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.pain-item {
  position: relative;
  background: #fff;
  border: 1px solid rgba(107,33,168,0.10);
  border-radius: 0.9rem;
  padding: 1.15rem 1.4rem 1.15rem 3.3rem;
  font-size: 0.94rem;
  color: #3a3540;
  line-height: 1.75;
  box-shadow: 0 4px 14px rgba(30,10,60,0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.pain-item::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: rgba(107,33,168,0.10);
  color: var(--clr-accent);
  font-size: 0.82rem;
  font-weight: 700;
}
.pain-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(30,10,60,0.12);
}

/* ===== なぜシキスイか ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 3rem auto 0;
  align-items: center;
}
@media (min-width: 768px) { .why-grid { grid-template-columns: 1fr 1fr; } }
.why-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  line-height: 1.9;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.05em;
}
.why-body {
  font-size: 0.88rem;
  line-height: 2.4;
  color: rgba(255,255,255,0.65);
  white-space: pre-line;
}

/* ===== サービスカード ===== */
.service-list {
  max-width: 700px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0 1rem;
}
.service-card {
  background: rgba(107,33,168,0.12);
  border: 1px solid rgba(216,180,254,0.2);
  border-radius: 1.25rem;
  padding: 2rem 2rem 1.75rem;
}
.service-card-featured {
  background: rgba(107,33,168,0.22);
  border-color: rgba(216,180,254,0.35);
  position: relative;
  overflow: hidden;
}
.service-badge {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: #D8B4FE;
  color: var(--clr-accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.25em 0.9em;
  border-radius: 9999px;
}
.service-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.service-icon { font-size: 1.4rem; }
.service-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.05em;
}
.service-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 2;
}
.service-price-tag {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: #D8B4FE;
  letter-spacing: 0.1em;
}
.service-price-row {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: baseline;
}
.service-price-free { font-size: 0.78rem; color: #D8B4FE; letter-spacing: 0.1em; }
.service-price-sep  { font-size: 0.72rem; color: rgba(255,255,255,0.3); }
.service-price-paid { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.service-price-main {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #fff;
}
.service-price-big {
  margin-top: 1.25rem;
}
.service-price-big strong {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: #fff;
  font-weight: 400;
}
.service-price-big span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ===== プロフィール ===== */
.profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 860px;
  margin: 3rem auto 0;
  align-items: start;
}
@media (min-width: 768px) { .profile-grid { grid-template-columns: 200px 1fr; } }
.profile-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto;
  object-fit: cover;
  object-position: top;
  display: block;
}
.profile-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}
.profile-title { font-size: 0.75rem; color: #aaa; letter-spacing: 0.1em; margin-bottom: 1.5rem; }
.profile-body {
  font-size: 0.88rem;
  line-height: 2.4;
  color: #555;
  white-space: pre-line;
}

/* ===== CTAバンド ===== */
.cta-band {
  background: linear-gradient(135deg, #1e0a3c 0%, #2d1060 100%);
  padding: 5rem 1.5rem;
  text-align: center;
}
.cta-band-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.cta-band-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 2;
  margin-bottom: 2.5rem;
  letter-spacing: 0.04em;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--clr-accent);
  color: #fff;
  border-radius: 9999px;
  padding: 1rem 2.8rem;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* ===== フッター ===== */
.site-footer {
  background: #0f0f0f;
  color: #888;
}
.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-brand-title {
  font-family: var(--font-serif);
  color: #fff;
  font-size: 1.25rem;
  letter-spacing: 0.25em;
  margin-bottom: 1rem;
}
.footer-text { font-size: 0.85rem; line-height: 1.8; }
.footer-nav-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 1rem;
  display: block;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.footer-nav a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #4b5563;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ===== About ページ ===== */
.about-hero {
  background: linear-gradient(160deg, #0f0a1a 0%, #1e0a3c 60%, #2d1060 100%);
  padding: 8rem 1.5rem 5rem;
  text-align: center;
}
.about-hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: #D8B4FE;
  border: 1px solid rgba(216,180,254,0.4);
  padding: 0.35em 1.2em;
  border-radius: 9999px;
  margin-bottom: 2rem;
}
.about-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.about-hero-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.15em;
}
.about-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 1.5rem 6rem;
}
.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 640px) {
  .profile-card { flex-direction: row; align-items: flex-start; }
}
.profile-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  object-position: top;
}
.profile-info-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
  letter-spacing: 0.06em;
}
.profile-info-title {
  font-size: 0.78rem;
  color: var(--clr-accent);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.profile-info-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.profile-tag {
  font-size: 0.72rem;
  color: #666;
  background: #f3f0f8;
  padding: 0.3em 0.9em;
  border-radius: 9999px;
  letter-spacing: 0.05em;
}
.profile-info-lead {
  font-size: 0.94rem;
  color: #333;
  line-height: 2.1;
}
.story-section { margin-bottom: 4rem; }
.story-section-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-accent);
  display: block;
  margin-bottom: 1rem;
}
.story-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3.4vw, 1.75rem);
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  letter-spacing: 0.04em;
}
.story-body {
  font-size: clamp(0.92rem, 2.3vw, 1rem);
  line-height: 2.5;
  color: #444;
  white-space: pre-line;
}
.story-quote {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #f1eaff);
  border: 1px solid rgba(107,33,168,0.16);
  border-radius: 1.1rem;
  padding: 2.6rem 1.75rem 1.9rem;
  margin: 2.75rem 0;
  box-shadow: 0 12px 34px rgba(15,6,32,0.30);
  text-align: center;
  overflow: hidden;
}
.story-quote::before {
  content: "\201C";
  position: absolute;
  top: 0.5rem;
  left: 1.2rem;
  font-family: var(--font-serif);
  font-size: 3.2rem;
  line-height: 1;
  color: rgba(107,33,168,0.22);
}
.story-quote p {
  position: relative;
  font-family: var(--font-serif);
  font-size: 1.02rem;
  color: #2c2340;
  line-height: 2.15;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.story-divider {
  width: 2rem;
  height: 1px;
  background: #ddd;
  margin: 3.5rem auto;
}
.about-cta {
  background: linear-gradient(135deg, #1e0a3c 0%, #2d1060 100%);
  border-radius: 1.25rem;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 4rem;
}
.about-cta-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.about-cta-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 2;
  margin-bottom: 2rem;
}

/* ===== LINE モーダル ===== */
@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

/* ===== 内部ページ共通 ===== */
.page-wrap {
  max-width: 42rem;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
  color: #374151;
}
.page-h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2rem;
}
.page-lead {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.9;
  margin-bottom: 2.5rem;
}
.page-section { margin-bottom: 2rem; }
.page-section h2 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}
.page-section p,
.page-section ul {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.9;
}
.page-section ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-top: 0.5rem;
}
.page-section ul li { margin-bottom: 0.25rem; }
.page-date {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 3rem;
}

/* 特商法テーブル */
.toku-table { margin-top: 0.5rem; }
.toku-row {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  border-top: 1px solid #e5e7eb;
  padding: 1rem 0;
  font-size: 0.875rem;
  line-height: 1.8;
}
.toku-row:last-child { border-bottom: 1px solid #e5e7eb; }
.toku-label { font-weight: 600; color: #4b5563; }
.toku-value { color: #374151; }
.toku-value ul { list-style: none; padding: 0; }
.toku-note { font-size: 0.75rem; color: #9ca3af; margin-top: 0.25rem; }

/* =====================================================
   voices — お客様の声（公開）
   ===================================================== */
.voices-page-wrap { max-width: 680px; margin: 0 auto; padding: 3rem 1.5rem 6rem; }
.voices-heading { text-align: center; margin-bottom: 2.5rem; }
.voices-eyebrow { display: inline-block; font-size: 0.65rem; letter-spacing: 0.3em; color: var(--clr-accent); border: 1px solid rgba(107,33,168,0.3); padding: 0.3em 1.2em; border-radius: 99px; margin-bottom: 1rem; }
.voices-title { font-family: 'Noto Serif JP', serif; font-size: clamp(1.3rem,4vw,1.8rem); font-weight: 400; color: #111; letter-spacing: 0.06em; line-height: 1.7; margin: 0 0 0.75rem; }
.voices-subtitle { font-size: 0.82rem; color: #9ca3af; line-height: 1.9; }
.voices-empty-msg { text-align: center; color: #9ca3af; padding: 3rem 0; }
.voices-list { display: flex; flex-direction: column; gap: 1.5rem; }
.voice-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 1rem; overflow: hidden; }
.voice-card-header { background: linear-gradient(135deg, #1e0a3c, #2d1060); padding: 1.1rem 1.5rem; }
.voice-topic-row { margin-bottom: 0.6rem; }
.voice-topic-label { font-size: 0.6rem; letter-spacing: 0.1em; color: rgba(216,180,254,0.5); margin-right: 0.5rem; }
.voice-topic-text { font-size: 0.72rem; color: rgba(216,180,254,0.75); font-weight: 400; }
.voice-summary { font-family: 'Noto Serif JP', serif; font-size: 1rem; font-weight: 400; color: #f3e8ff; line-height: 1.9; margin: 0; }
.voice-card-body { padding: 1.25rem 1.5rem; }
.voice-badges { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.875rem; align-items: center; }
.voice-energy-badge { background: #fff; color: #000; font-size: 0.68rem; padding: 0.2rem 0.7rem; border-radius: 99px; font-weight: 500; border: 1px solid #d1d5db; }
.voice-color-badge { display: inline-block; font-size: 0.68rem; padding: 0.2rem 0.7rem; border-radius: 99px; font-weight: 500; }
.voice-react-count { font-size: 0.75rem; font-weight: 500; color: #7c3aed; margin: 0 0 0.5rem; letter-spacing: 0.03em; }
.voice-comment { font-size: 0.85rem; color: #374151; line-height: 1.8; margin: 0.75rem 0; white-space: pre-line; }
.voice-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 0.5rem; }
.voice-date { font-size: 0.72rem; font-weight: 400; color: #9ca3af; }
.voice-hide-btn { font-size: 0.72rem; color: #9ca3af; background: none; border: 1px solid #e5e7eb; border-radius: 99px; padding: 0.2em 0.8em; cursor: pointer; transition: color 0.15s; }
.voice-hide-btn:hover { color: #7c3aed; border-color: #7c3aed; }

/* ── 鑑定リアクション進捗バー (rct-progress-*) ── */
.rct-progress-wrap { margin-bottom: 2rem; }
.rct-progress-label { font-size: 0.78rem; color: var(--mbr-text-sub); font-weight: 500; text-align: center; margin-bottom: 0.5rem; }
.rct-progress-bar-bg { height: 4px; background: var(--mbr-border); border-radius: 99px; overflow: hidden; }
.rct-progress-bar-fill { height: 100%; background: var(--mbr-accent); border-radius: 99px; transition: width 0.4s ease; }

/* ── セクションリアクションボタン (reaction-*) ── */
.reaction-block { display: flex; align-items: center; gap: 0.5rem; margin: -0.5rem 0 2rem; flex-wrap: wrap; }
.reaction-label { font-size: 0.72rem; color: var(--mbr-text-hint); white-space: nowrap; }
.reaction-btns { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.reaction-btn { padding: 0.3rem 1rem; border-radius: 99px; border: 1px solid #bbb; background: #fff; font-size: 0.78rem; font-family: inherit; cursor: pointer; color: #444; font-weight: 400; transition: all 0.15s; white-space: nowrap; }
.reaction-btn:hover { border-color: var(--mbr-accent); color: var(--mbr-accent); }
.reaction-btn.selected-match { background: var(--mbr-accent); border-color: var(--mbr-accent); color: #fff; font-weight: 600; }
.reaction-btn.selected-so-so { background: #f59e0b; border-color: #f59e0b; color: #fff; font-weight: 600; }
.reaction-btn.selected-miss { background: #ef4444; border-color: #ef4444; color: #fff; font-weight: 600; }

/* ── 鑑定感想カード (rct-completion-*) ── */
.rct-completion-card { background: linear-gradient(135deg, rgba(var(--clr-accent-rgb),0.05), rgba(var(--clr-accent-rgb),0.03)); border: 1px solid rgba(var(--clr-accent-rgb),0.2); border-radius: 1rem; padding: 1.75rem 1.5rem; margin-top: 2rem; }
.rct-completion-title { font-size: 0.95rem; color: #111; font-weight: 500; margin-bottom: 0.4rem; text-align: center; }
.rct-completion-sub { font-size: 0.82rem; color: var(--mbr-text-sub); font-weight: 400; text-align: center; margin-bottom: 1.25rem; line-height: 1.8; }
.rct-comment-ta { width: 100%; box-sizing: border-box; padding: 0.75rem; border: 1px solid rgba(var(--clr-accent-rgb),0.3); border-radius: 0.5rem; font-size: 0.88rem; font-family: inherit; font-weight: 400; color: #1a1a1a; resize: vertical; min-height: 80px; line-height: 1.8; background: #fff; outline: none; transition: border-color 0.15s; }
.rct-comment-ta:focus { border-color: var(--mbr-accent); }
.rct-completion-footer { margin-top: 1rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
.rct-send-btn { padding: 0.5rem 1.5rem; background: var(--mbr-accent); color: #fff; border: none; border-radius: 99px; font-size: 0.82rem; font-family: inherit; font-weight: 400; cursor: pointer; transition: opacity 0.2s; }
.rct-send-btn:hover { opacity: 0.85; }
.rct-send-btn:disabled { opacity: 0.5; cursor: default; }
.rct-sent-msg { font-size: 0.82rem; color: var(--mbr-accent); font-weight: 500; display: none; }
.rct-voice-toggle-wrap { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid rgba(var(--clr-accent-rgb),0.15); display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; flex-wrap: wrap; }
.rct-voice-note { font-size: 0.78rem; color: var(--mbr-text-sub); font-weight: 400; }
.rct-voice-btn { font-size: 0.78rem; font-weight: 400; padding: 0.35rem 1rem; border-radius: 99px; border: 1px solid var(--mbr-border); cursor: pointer; background: #fff; color: var(--mbr-text-sub); white-space: nowrap; transition: all 0.2s; }
.rct-voice-btn--public { border-color: var(--mbr-accent); color: var(--mbr-accent); }
.rct-voices-link { display: block; text-align: center; margin-top: 1.25rem; font-size: 0.78rem; color: var(--mbr-accent); text-decoration: none; }
.rct-voices-link:hover { text-decoration: underline; }

/* ===== 申し込みフォーム ===== */
.form-wrap { max-width: 600px; margin: 0 auto; padding: 6rem 1.5rem 5rem; }
.form-header { text-align: center; margin-bottom: 3rem; }
.form-eyebrow { display: inline-block; font-size: 0.7rem; letter-spacing: 0.3em; color: var(--clr-accent); border: 1px solid rgba(107,33,168,0.3); padding: 0.35em 1.2em; border-radius: 9999px; margin-bottom: 1.25rem; }
.form-title { font-family: var(--font-serif); font-size: clamp(1.5rem,4vw,2rem); font-weight: 400; color: #1a1a1a; letter-spacing: 0.06em; margin-bottom: 1rem; }
.form-lead { font-size: 0.85rem; color: #6b7280; line-height: 2.2; }
.form-service-box { background: #faf8ff; border: 1px solid rgba(107,33,168,0.15); border-radius: 0.75rem; padding: 1rem 1.5rem; margin: 2rem 0; font-size: 0.88rem; color: #444; line-height: 2; }
.form-service-box strong { color: var(--clr-accent); }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.82rem; font-weight: 500; color: #374151; margin-bottom: 0.5rem; }
.form-label-required::after { content: " *"; color: #ef4444; }
.form-input,
.form-textarea { width: 100%; box-sizing: border-box; padding: 0.75rem 1rem; border: 1px solid #d1d5db; border-radius: 0.5rem; font-size: 0.9rem; font-family: inherit; color: #1a1a1a; background: #fff; outline: none; transition: border-color 0.15s; }
.form-input:focus,
.form-textarea:focus { border-color: var(--clr-accent); box-shadow: 0 0 0 3px rgba(107,33,168,0.08); }
.form-textarea { resize: vertical; min-height: 100px; line-height: 1.8; }
.form-submit { display: block; width: 100%; padding: 1rem; background: var(--clr-accent); color: #fff; border: none; border-radius: 9999px; font-size: 0.95rem; font-family: inherit; letter-spacing: 0.1em; cursor: pointer; transition: opacity 0.2s, transform 0.2s; margin-top: 2rem; }
.form-submit:hover { opacity: 0.85; transform: translateY(-1px); }
.form-success { text-align: center; padding: 5rem 1.5rem; }
.form-success-icon { font-size: 2.5rem; margin-bottom: 1.5rem; }
.form-success-title { font-family: var(--font-serif); font-size: clamp(1.3rem,4vw,1.8rem); font-weight: 400; color: #1a1a1a; letter-spacing: 0.06em; margin-bottom: 1.25rem; }
.form-success-body { font-size: 0.88rem; color: #6b7280; line-height: 2.4; margin-bottom: 2.5rem; }
