/* ===== Category Page v2 Styles ===== */
/* 整理しながら比較できるカテゴリページ */

/* ===== Page Container ===== */
.category-v2 {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 0 120px;
}

/* ===== Hero ===== */
.v2-hero {
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--rose-pale) 0%, var(--lavender-pale) 100%);
  margin-bottom: 2rem;
  border-radius: 8px;
}

.v2-hero__title {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 1rem;
}

.v2-hero__lead {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.v2-hero__lead p {
  margin-bottom: 0.5rem;
}

/* ===== Shared Section ===== */
.v2-section {
  margin-bottom: 2.5rem;
}

.v2-section h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--lavender-pale);
}

.v2-section p {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.v2-section__intro {
  color: var(--text-medium);
  margin-bottom: 1.25rem;
}

/* ===== H2-1: Concern Branch ===== */
.v2-concern-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.v2-concern-card {
  background: var(--white);
  border: 1px solid var(--bg-greige);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  transition: border-color 0.2s;
}

.v2-concern-card:hover {
  border-color: var(--lavender-light);
}

.v2-concern-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.v2-concern-card p {
  font-size: 0.85rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.v2-concern-card__link {
  font-size: 0.85rem;
  color: var(--lavender);
  text-decoration: none;
  font-weight: 500;
}

.v2-concern-card__link:hover {
  text-decoration: underline;
}

/* ===== Insight List (H2-2, H2-5) ===== */
.v2-insight-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.v2-insight-item {
  padding: 1rem 1.25rem;
  background: var(--bg-beige);
  border-radius: 6px;
}

.v2-insight-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.v2-insight-item p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ===== Key Points (H2-3) ===== */
.v2-key-points {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
}

.v2-key-points li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

.v2-key-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--lavender);
  font-weight: 700;
}

/* ===== Sort Buttons ===== */
.v2-sort-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.v2-sort-btn {
  display: inline-block;
  padding: 0.45rem 1rem;
  border: 1px solid var(--bg-greige);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-medium);
  text-decoration: none;
  background: var(--white);
  transition: all 0.2s;
  cursor: pointer;
}

.v2-sort-btn:hover {
  border-color: var(--lavender-light);
  color: var(--lavender);
}

.v2-sort-btn.is-active {
  background: var(--lavender);
  border-color: var(--lavender);
  color: var(--white);
}

/* ===== Listing Cards ===== */
.v2-listing {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.v2-card {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--bg-greige);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.v2-card:hover {
  border-color: var(--lavender-light);
  box-shadow: 0 2px 8px var(--shadow);
}

.v2-card__main {
  display: flex;
  gap: 0.75rem;
  flex: 1;
  padding: 1rem;
  min-width: 0;
}

.v2-card__avatar {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
}

.v2-card__avatar img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.v2-card__avatar-placeholder {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-greige);
}

.v2-card__content {
  flex: 1;
  min-width: 0;
}

.v2-card__header {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
  flex-wrap: wrap;
}

.v2-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.v2-card__provider {
  font-size: 0.75rem;
  color: var(--text-light);
  background: var(--bg-beige);
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
}

.v2-card__rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.3rem;
}

.v2-card__stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: -1px;
}

.v2-card__score {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.v2-card__reviews {
  font-size: 0.8rem;
  color: var(--text-light);
}

.v2-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 0.4rem;
}

.v2-card__tag {
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  background: var(--lavender-pale);
  color: var(--lavender);
  border-radius: 3px;
}

.v2-card__review {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin-top: 0.3rem;
}

.v2-card__review-label {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
  background: var(--lavender);
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
  line-height: 1.4;
}

.v2-card__review-text {
  font-size: 0.8rem;
  color: var(--text-medium);
  line-height: 1.5;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.v2-card__side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.75rem;
  border-left: 1px solid var(--bg-greige);
  min-width: 90px;
  gap: 0.4rem;
}

.v2-card__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.v2-card__price small {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-light);
}

.v2-card__detail-btn {
  font-size: 0.75rem;
  color: var(--lavender);
  font-weight: 500;
}

/* ===== Tips List (H2-6) ===== */
.v2-tips-list {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
}

.v2-tips-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

.v2-tips-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--lavender);
  font-weight: 700;
}

/* ===== FAQ (H2-7) ===== */
.v2-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.v2-faq-item {
  border: 1px solid var(--bg-greige);
  border-radius: 6px;
  overflow: hidden;
}

.v2-faq-item summary {
  padding: 0.85rem 2.5rem 0.85rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  background: var(--white);
  list-style: none;
  position: relative;
}

.v2-faq-item summary::-webkit-details-marker {
  display: none;
}

.v2-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--lavender);
  font-weight: 300;
}

.v2-faq-item[open] summary::after {
  content: '−';
}

.v2-faq-item p {
  padding: 0 1rem 1rem;
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.7;
  background: var(--white);
  margin: 0;
}

/* ===== Closing (H2-9) ===== */
.v2-closing {
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, var(--lavender-pale) 0%, var(--rose-pale) 100%);
  border-radius: 8px;
}

.v2-closing h2 {
  border-bottom: none;
  text-align: center;
}

.v2-closing p {
  color: var(--text-medium);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.v2-closing__cta {
  margin-top: 1.25rem;
}

/* ===== No Results ===== */
.v2-no-results {
  text-align: center;
  padding: 2rem;
  background: var(--bg-beige);
  border-radius: 8px;
}

.v2-no-results p {
  color: var(--text-medium);
  margin-bottom: 1rem;
}

/* ===== Responsive ===== */
@media (min-width: 640px) {
  .v2-hero__title {
    font-size: 1.8rem;
  }

  .v2-concern-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .v2-card__avatar {
    width: 72px;
    height: 72px;
  }

  .v2-card__avatar img,
  .v2-card__avatar-placeholder {
    width: 72px;
    height: 72px;
  }
}

@media (max-width: 480px) {
  .v2-hero {
    padding: 2rem 1rem;
  }

  .v2-hero__title {
    font-size: 1.3rem;
  }

  .v2-section h2 {
    font-size: 1.1rem;
  }

  .v2-card__side {
    min-width: 70px;
    padding: 0.75rem 0.5rem;
  }

  .v2-card__price {
    font-size: 0.9rem;
  }

  .v2-sort-buttons {
    gap: 0.35rem;
  }

  .v2-sort-btn {
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
  }
}

/* ===== v2 Redesign: Mock cate_topicluster_v1 ===== */

/* --- Hero (redesign) --- */
.v2-hero {
  background: linear-gradient(160deg, var(--lavender-pale) 0%, var(--bg-beige) 55%, var(--rose-pale) 100%);
  padding: 36px 16px 28px;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 0;
  text-align: left;
}
.v2-hero::before {
  content: '✦';
  position: absolute;
  top: 14px; right: 20px;
  font-size: 2.5rem;
  color: var(--lavender-light);
  opacity: 0.3;
  font-family: serif;
}
.v2-hero::after {
  content: '✦';
  position: absolute;
  bottom: 20px; left: 12px;
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0.4;
}

.v2-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--lavender-light);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.72rem;
  color: var(--lavender);
  font-weight: 700;
  margin-bottom: 12px;
}

.v2-hero__title {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.38rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 14px;
  text-align: left;
}

.v2-hero__lead {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.9;
  max-width: 560px;
  text-align: left;
}
.v2-hero__lead p { margin-bottom: 0; }

/* --- TOC --- */
.v2-toc-wrap {
  padding: 20px 16px;
}
.v2-toc-card {
  background: var(--white);
  border: 1px solid var(--bg-greige);
  border-radius: 14px;
  padding: 18px 20px;
}
.v2-toc-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.v2-toc-title::before { content: '≡'; font-size: 1rem; color: var(--lavender-light); }

.v2-toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0; padding: 0;
}
.v2-toc-list li { display: flex; align-items: baseline; gap: 8px; }
.v2-toc-list li::before {
  content: attr(data-n);
  font-size: 0.68rem;
  color: var(--lavender-light);
  font-family: 'Shippori Mincho', serif;
  min-width: 14px;
}
.v2-toc-list a {
  font-size: 0.82rem;
  color: var(--text-medium);
  text-decoration: none;
  border-bottom: 1px dashed var(--bg-greige);
  padding: 5px 0;
  flex: 1;
  display: block;
  transition: color 0.2s;
}
.v2-toc-list a:hover { color: var(--lavender); text-decoration: none; }

/* --- Section wrapper (card style) --- */
.v2-section-wrap {
  padding: 0 16px;
  margin-bottom: 8px;
}
.v2-section-card {
  background: var(--white);
  border: 1px solid var(--bg-greige);
  border-radius: 14px;
  padding: 24px 20px;
}
.v2-section-card h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--lavender-pale);
  position: relative;
}
.v2-section-card h2::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 40px; height: 2px;
  background: var(--lavender);
}
.v2-section-intro {
  font-size: 0.87rem;
  color: var(--text-medium);
  margin-bottom: 16px;
  line-height: 1.9;
}

/* --- H2-1: worry-grid --- */
.v2-worry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.v2-worry-card {
  background: #FFFFFF;
  border: 1.5px solid #D8D0F0;
  border-radius: var(--radius);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.v2-worry-card::before {
  content: '→';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  background: #EDE8F8;
  border-radius: 50%;
  font-size: 10px;
  color: var(--lavender);
  font-weight: 700;
  line-height: 22px;
  text-align: center;
}
.v2-worry-card:hover {
  border-color: var(--lavender);
  background: #F8F5FF;
  text-decoration: none;
}
.v2-worry-card:hover::before {
  background: var(--lavender);
  color: #fff;
}
.v2-worry-card__icon { font-size: 16px; margin-bottom: 4px; }
.v2-worry-card__label {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  padding-right: 20px;
}
.v2-worry-card__sub {
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.5;
}
.v2-worry-card__arrow {
  font-size: 0.72rem;
  color: var(--lavender);
  margin-top: 4px;
  font-weight: 700;
}

/* --- H2-2: reason-list --- */
.v2-reason-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.v2-reason-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--bg-cream);
  border-radius: 8px;
  padding: 14px;
}
.v2-reason-num {
  width: 24px; height: 24px;
  background: var(--lavender-pale);
  color: var(--lavender);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.v2-reason-body h3 {
  font-size: 0.87rem;
  font-family: 'Shippori Mincho', serif;
  margin: 0 0 3px;
  color: var(--text-dark);
}
.v2-reason-body p {
  font-size: 0.82rem;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.8;
}

/* --- H2-3: point-list --- */
.v2-point-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.v2-point-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-cream);
  border-radius: 8px;
  border-left: 3px solid var(--rose);
}
.v2-point-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.v2-point-body h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.87rem;
  margin: 0 0 3px;
  color: var(--text-dark);
}
.v2-point-body p {
  font-size: 0.82rem;
  margin: 0;
  color: var(--text-medium);
  line-height: 1.8;
}

/* --- H2-4: teller listing (redesign) --- */
.v2-teller-section-wrap {
  padding: 0 16px;
  margin-bottom: 8px;
}
.v2-teller-section-header {
  background: linear-gradient(135deg, var(--lavender) 0%, var(--lavender-light) 100%);
  border-radius: 14px 14px 0 0;
  padding: 18px 20px 14px;
  color: var(--white);
}
.v2-teller-section-header h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 4px;
}
.v2-teller-section-header p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.7;
}
.v2-teller-section-body {
  background: var(--white);
  border: 1px solid var(--bg-greige);
  border-top: none;
  border-radius: 0 0 14px 14px;
  padding: 16px;
}

/* Sort UI (listing section) */
.v2-sort-ui {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.v2-sort-ui::-webkit-scrollbar { display: none; }
.v2-sort-pill {
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 20px;
  border: 1px solid var(--bg-greige);
  background: var(--bg-cream);
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.75rem;
  color: var(--text-medium);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.v2-sort-pill.is-active,
.v2-sort-pill:hover {
  background: var(--lavender-pale);
  border-color: var(--lavender-light);
  color: var(--lavender);
  text-decoration: none;
}
.v2-sort-pill.is-active { font-weight: 700; }

/* Teller card: search.css の .teller-card 系クラスを再利用 */
.v2-teller-section-body .teller-card { margin-bottom: 16px; }

/* mid-CTA between cards */
.v2-mid-cta {
  background: linear-gradient(135deg, var(--lavender-pale), var(--rose-pale));
  border: 1px solid var(--lavender-light);
  border-radius: 14px;
  padding: 16px;
  margin: 4px 0 12px;
  text-align: center;
}
.v2-mid-cta p {
  font-size: 0.8rem;
  color: var(--text-medium);
  margin-bottom: 10px;
  line-height: 1.7;
}
.v2-mid-cta a {
  display: inline-block;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px 24px;
  border-radius: 20px;
  text-decoration: none;
}
.v2-mid-cta a:hover { opacity: 0.9; text-decoration: none; }

/* --- H2-5: method-grid --- */
.v2-method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.v2-method-card {
  background: var(--bg-cream);
  border: 1px solid var(--bg-greige);
  border-radius: 8px;
  padding: 14px;
}
.v2-method-card__icon { font-size: 1.2rem; margin-bottom: 6px; }
.v2-method-card h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.85rem;
  margin-bottom: 5px;
  color: var(--text-dark);
}
.v2-method-card p {
  font-size: 0.78rem;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.7;
}

/* --- H2-6: prepare-list --- */
.v2-prepare-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.v2-prepare-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  background: var(--bg-cream);
  border-radius: 8px;
}
.v2-prepare-num {
  width: 22px; height: 22px;
  background: var(--gold-light);
  color: var(--text-dark);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.v2-prepare-body h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.87rem;
  margin-bottom: 3px;
  color: var(--text-dark);
}
.v2-prepare-body p { font-size: 0.82rem; margin: 0; color: var(--text-medium); line-height: 1.8; }

/* --- H2-7: FAQ (JS accordion) --- */
.v2-faq-list2 { display: flex; flex-direction: column; gap: 8px; }
.v2-faq-item2 {
  border: 1px solid var(--bg-greige);
  border-radius: 8px;
  overflow: hidden;
}
.v2-faq-header {
  width: 100%;
  background: var(--bg-cream);
  border: none;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  transition: background 0.2s;
}
.v2-faq-header:hover { background: var(--lavender-pale); }
.v2-faq-header.is-open { background: var(--lavender-pale); }
.v2-faq-q-text { flex: 1; line-height: 1.5; }
.v2-faq-q-text::before {
  content: 'Q.';
  color: var(--lavender);
  font-family: 'Shippori Mincho', serif;
  margin-right: 6px;
}
.v2-faq-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--lavender-pale);
  color: var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  transition: transform 0.25s;
  margin-top: 1px;
}
.v2-faq-header.is-open .v2-faq-icon {
  transform: rotate(180deg);
  background: var(--lavender);
  color: var(--white);
}
.v2-faq-body {
  display: none;
  padding: 0 16px 14px;
  font-size: 0.83rem;
  color: var(--text-medium);
  background: var(--white);
  line-height: 1.85;
}
.v2-faq-body.is-open { display: block; }
.v2-faq-answer::before {
  content: 'A.';
  color: var(--rose-deep);
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  margin-right: 6px;
}

/* --- H2-8: service-list --- */
.v2-service-list { display: flex; flex-direction: column; gap: 8px; }
.v2-service-card {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--bg-cream);
  border: 1px solid var(--bg-greige);
  border-radius: 8px;
  padding: 14px;
}
.v2-service-icon {
  width: 40px; height: 40px;
  background: var(--lavender-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.v2-service-body { flex: 1; }
.v2-service-body h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.87rem;
  margin-bottom: 3px;
  color: var(--text-dark);
}
.v2-service-body p { font-size: 0.75rem; color: var(--text-light); margin: 0; }
.v2-service-link {
  font-size: 0.75rem;
  color: var(--lavender);
  white-space: nowrap;
  flex-shrink: 0;
}

/* --- H2-9: closing-card --- */
.v2-closing-wrap {
  padding: 0 16px;
  margin-bottom: 8px;
}
.v2-closing-card {
  background: linear-gradient(160deg, var(--lavender-pale) 0%, var(--rose-pale) 100%);
  border: 1px solid var(--lavender-light);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
}
.v2-closing-card h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.v2-closing-card > p {
  font-size: 0.85rem;
  color: var(--text-medium);
  margin-bottom: 16px;
  line-height: 1.9;
}
.v2-closing-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.v2-closing-point {
  font-size: 0.83rem;
  color: var(--text-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.v2-closing-point::before { content: '✦'; color: var(--lavender-light); font-size: 0.6rem; }
.v2-closing-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 28px;
  border-radius: 24px;
  text-decoration: none;
}
.v2-closing-btn:hover { opacity: 0.9; text-decoration: none; }

/* --- Sticky CTA --- */
.v2-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--bg-greige);
  padding: 0.7rem 1rem;
  box-shadow: 0 -4px 15px rgba(74,60,49,0.08);
  z-index: 300;
}
.v2-sticky-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.v2-sticky-cta-text { flex: 1; }
.v2-sticky-cta-title {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-dark);
}
.v2-sticky-cta-sub {
  font-size: 0.7rem;
  color: var(--text-light);
}
.v2-sticky-cta-btn {
  flex-shrink: 0;
  padding: 0.7rem 1.2rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  color: var(--white);
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
  white-space: nowrap;
  display: inline-block;
}
.v2-sticky-cta-btn:hover { opacity: 0.9; text-decoration: none; }

/* --- サイトヘッダーのスライドアップ（このページ専用） --- */
/* 詳細ページの .ft-v2 .header.scrolled .header-default と同じ発想 */
body.v2-cate-page header {
  transition: transform 0.3s ease;
}
body.v2-cate-page header.v2-scrolled {
  transform: translateY(-100%);
}

/* --- Scroll Nav (詳細ページ .header-nav と同位置・同サイズ) --- */
.v2-scroll-nav {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  z-index: 110;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(74,60,49,0.08);
  height: 54px;
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.v2-scroll-nav.is-visible {
  transform: translateY(0);
}
.v2-scroll-nav-scroll {
  flex: 1;
  display: flex;
  gap: 0.3rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 0.5rem;
}
.v2-scroll-nav-scroll::-webkit-scrollbar { display: none; }
.v2-scroll-nav-item {
  flex-shrink: 0;
  padding: 0.5rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-medium);
  background: var(--bg-beige);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s;
  font-family: 'Zen Maru Gothic', sans-serif;
  border: none;
  cursor: pointer;
}
.v2-scroll-nav-item:hover {
  background: var(--lavender-pale);
  text-decoration: none;
}
.v2-scroll-nav-item.is-active {
  background: linear-gradient(135deg, var(--lavender) 0%, var(--rose) 100%);
  color: var(--white);
  text-decoration: none;
}
.v2-scroll-nav-cta {
  flex-shrink: 0;
  padding: 0.5rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  text-decoration: none;
  white-space: nowrap;
  font-family: 'Zen Maru Gothic', sans-serif;
  border: none;
  cursor: pointer;
}
.v2-scroll-nav-cta:hover { opacity: 0.9; text-decoration: none; }

/* --- No results --- */
.v2-no-results2 {
  text-align: center;
  padding: 2rem;
  background: var(--bg-beige);
  border-radius: 8px;
}

/* --- Responsive (redesign) --- */
@media (max-width: 480px) {
  .v2-method-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== Pagination ===== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.page-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--bg-greige);
  background: var(--white);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-medium);
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.page-btn:hover {
  border-color: var(--lavender-light);
  color: var(--lavender);
}

.page-btn.active {
  background: linear-gradient(135deg, var(--lavender) 0%, var(--rose) 100%);
  color: var(--white);
  border: none;
}

.page-btn.arrow {
  font-size: 1.1rem;
}

.page-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-btn.disabled:hover {
  border-color: var(--bg-greige);
  color: var(--text-medium);
}

.page-dots {
  color: var(--text-light);
  padding: 0 0.3rem;
}
