/* ===== Fortune Teller Detail V2 ===== */
/* 変数・リセットは app.css を参照。本ファイルは v2 専用レイアウト・コンポーネント */

body.ft-v2 {
  padding-bottom: 70px;
  font-size: 15px;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== Header ===== */
.ft-v2 .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: transform 0.3s ease;
}

.ft-v2 .header-default {
  background: var(--white);
  padding: 0.6rem 1rem;
  box-shadow: 0 2px 10px var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 54px;
}

.ft-v2 .header-back {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-beige);
  font-size: 1.1rem;
  color: var(--text-medium);
  border: none;
  cursor: pointer;
}

.ft-v2 .header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ft-v2 .header-logo img {
  height: 32px;
  width: auto;
}

.ft-v2 .header-center {
  flex: 1;
  text-align: center;
}

.ft-v2 .header-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.ft-v2 .header-meta {
  font-size: 0.7rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.ft-v2 .header-meta .rating {
  color: var(--gold);
}

.ft-v2 .header-meta .price {
  color: var(--coral);
  font-weight: 600;
}

.ft-v2 .header-actions {
  display: flex;
  gap: 0.4rem;
}

.ft-v2 .header-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-beige);
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

.ft-v2 .header-nav {
  background: var(--white);
  box-shadow: 0 2px 10px var(--shadow);
  height: 54px;
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.ft-v2 .header.scrolled .header-default {
  transform: translateY(-100%);
}

.ft-v2 .header.scrolled .header-nav {
  transform: translateY(0);
}

.ft-v2 .nav-back {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-beige);
  font-size: 1rem;
  color: var(--text-medium);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.ft-v2 .nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ft-v2 .nav-logo img {
  height: 26px;
  width: auto;
}

.ft-v2 .nav-scroll {
  flex: 1;
  display: flex;
  gap: 0.3rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 0.5rem;
}

.ft-v2 .nav-scroll::-webkit-scrollbar {
  display: none;
}

.ft-v2 .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);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.ft-v2 .nav-item:hover {
  background: var(--lavender-pale);
}

.ft-v2 .nav-item.active {
  background: linear-gradient(135deg, var(--lavender) 0%, var(--rose) 100%);
  color: var(--white);
}

.ft-v2 .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%);
  border: none;
  cursor: pointer;
}

.ft-v2 .header-spacer {
  height: 54px;
}

/* ===== Container ===== */
.ft-v2 .container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===== Card ===== */
.ft-v2 .card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.2rem;
  border: 1px solid var(--bg-greige);
}

.ft-v2 .card--muted {
  background: var(--bg-beige);
  border: none;
}

.ft-v2 .card--highlight {
  background: linear-gradient(135deg, var(--lavender-pale) 0%, var(--rose-pale) 100%);
  border: none;
}

/* ===== Section ===== */
.ft-v2 .section {
  margin-top: 1rem;
  scroll-margin-top: 64px;
}

/* ===== Typography ===== */
.ft-v2 .h1 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
}

.ft-v2 .h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ft-v2 .h2::before {
  content: '';
  width: 4px;
  height: 16px;
  background: linear-gradient(180deg, var(--lavender) 0%, var(--rose) 100%);
  border-radius: 2px;
}

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

.ft-v2 .lead {
  color: var(--text-medium);
  font-size: 0.9rem;
}

.ft-v2 .muted {
  color: var(--text-light);
}

.ft-v2 .small {
  font-size: 0.75rem;
}

.ft-v2 .divider {
  height: 1px;
  background: var(--bg-greige);
  margin: 1rem 0;
}

/* ===== Buttons ===== */
.ft-v2 .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.3rem;
  border-radius: 12px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid var(--bg-greige);
  background: var(--white);
  gap: 0.4rem;
  min-height: 48px;
}

.ft-v2 .btn--primary {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 15px rgba(232, 180, 168, 0.3);
}

.ft-v2 .btn--primary:active {
  transform: scale(0.98);
}

.ft-v2 .btn--secondary {
  background: var(--bg-beige);
  border: 1px solid var(--bg-greige);
}

.ft-v2 .btn--full {
  width: 100%;
}

/* ===== Badges ===== */
.ft-v2 .badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.ft-v2 .badge {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--bg-greige);
  border-radius: 20px;
  background: var(--white);
  font-size: 0.7rem;
  color: var(--text-medium);
}

.ft-v2 .badge--accent {
  background: var(--lavender-pale);
  border-color: var(--lavender-light);
  color: var(--lavender);
}

.ft-v2 .badge--rose {
  background: var(--rose-pale);
  border-color: var(--rose);
  color: var(--rose-deep);
}

/* ===== Quick Info Bar ===== */
.ft-v2 .quick-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--bg-greige);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 0.8rem;
}

.ft-v2 .quick-info-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.ft-v2 .quick-info-item .icon {
  font-size: 0.9rem;
}

.ft-v2 .quick-info-item .value {
  font-weight: 700;
  color: var(--lavender);
}

.ft-v2 .quick-info-item .price {
  font-weight: 700;
  color: var(--coral);
}

.ft-v2 .quick-info-divider {
  width: 1px;
  height: 16px;
  background: var(--bg-greige);
  flex-shrink: 0;
}

/* Quick Info 内 項目別評価 */
.ft-v2 .v2-quick-rating-breakdown {
  flex-basis: 100%;
  margin-top: 0.2rem;
  white-space: normal;
  overflow: hidden;
}

.ft-v2 .v2-quick-rating-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--bg-greige);
}

.ft-v2 .v2-quick-rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.ft-v2 .v2-quick-rating-label {
  min-width: 70px;
  font-weight: 500;
  color: var(--text-medium);
}

.ft-v2 .v2-quick-rating-row .star-rating {
  font-size: 0.9rem;
}

.ft-v2 .v2-quick-rating-value {
  font-weight: 700;
  color: var(--lavender);
  margin-left: auto;
}

/* ===== List ===== */
.ft-v2 .list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ft-v2 .list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.2rem;
  font-size: 0.85rem;
  color: var(--text-medium);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.ft-v2 .list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--lavender);
  font-size: 0.55rem;
}

/* ===== Quote ===== */
.ft-v2 .quote {
  background: var(--white);
  border-left: 3px solid var(--lavender-light);
  padding: 0.7rem 1rem;
  border-radius: 0 10px 10px 0;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin: 0.6rem 0;
}

/* ===== Accordion ===== */
.ft-v2 .accordion {
  border: 1px solid var(--bg-greige);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
}

.ft-v2 .accordion-item {
  border-bottom: 1px solid var(--bg-greige);
}

.ft-v2 .accordion-item:last-child {
  border-bottom: none;
}

.ft-v2 .accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  background: transparent;
  border: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark);
  cursor: pointer;
  min-height: 52px;
  text-align: left;
}

.ft-v2 .accordion-header .icon {
  font-size: 0.8rem;
  transition: transform 0.3s;
  color: var(--text-light);
}

.ft-v2 .accordion-header.active .icon {
  transform: rotate(180deg);
}

.ft-v2 .accordion-body {
  display: none;
  padding: 0 1rem 1rem;
}

.ft-v2 .accordion-body.show {
  display: block;
}

/* ===== Review Tabs ===== */
.ft-v2 .review-tabs {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.3rem;
}

.ft-v2 .review-tab {
  flex-shrink: 0;
  padding: 0.6rem 1rem;
  border: 1px solid var(--bg-greige);
  border-radius: 20px;
  background: var(--white);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-medium);
  cursor: pointer;
  min-height: 40px;
  transition: all 0.3s;
}

.ft-v2 .review-tab.active {
  background: linear-gradient(135deg, var(--lavender) 0%, var(--rose) 100%);
  color: var(--white);
  border-color: transparent;
}

.ft-v2 .review-panel {
  display: none;
}

.ft-v2 .review-panel.show {
  display: block;
}

.ft-v2 .review-topic {
  background: var(--bg-beige);
  border-radius: 12px;
  padding: 1rem;
}

/* ===== Related ===== */
/* ===== Similar Fortune Tellers (v1踏襲) ===== */
.ft-v2 .v2-similar-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ft-v2 .v2-similar-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-beige);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}

.ft-v2 .v2-similar-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px var(--shadow);
}

.ft-v2 .v2-similar-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lavender-pale) 0%, var(--rose-pale) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  overflow: hidden;
}

.ft-v2 .v2-similar-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ft-v2 .v2-similar-info {
  flex: 1;
}

.ft-v2 .v2-similar-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.ft-v2 .v2-similar-specialty {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.ft-v2 .v2-similar-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
}

.ft-v2 .v2-similar-score {
  font-weight: 700;
  color: var(--lavender);
}

/* ===== Sticky CTA Bar ===== */
.ft-v2 .cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--bg-greige);
  z-index: 99;
  padding: 0.6rem 1rem;
  box-shadow: 0 -4px 15px var(--shadow);
}

.ft-v2 .cta-bar-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.ft-v2 .cta-bar-info {
  flex: 1;
  min-width: 0;
}

.ft-v2 .cta-bar-name {
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ft-v2 .cta-bar-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: var(--text-light);
}

.ft-v2 .cta-bar-meta .price {
  color: var(--coral);
  font-weight: 700;
}

.ft-v2 .cta-bar-meta .rating {
  color: var(--gold);
}

.ft-v2 .cta-bar-btn {
  width: 100%;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

/* ===== Star Rating (v1踏襲) ===== */
.ft-v2 .star-rating {
  color: var(--gold);
  letter-spacing: 1px;
}

.ft-v2 .star-rating--small {
  font-size: 0.9rem;
}

.ft-v2 .star-rating--large {
  font-size: 1.3rem;
}

.ft-v2 .star-rating .half-star {
  display: inline-block;
  position: relative;
  color: transparent;
}

.ft-v2 .star-rating .half-star::before {
  content: '★';
  position: absolute;
  left: 0;
  width: 50%;
  overflow: hidden;
  color: var(--gold);
}

.ft-v2 .star-rating .half-star::after {
  content: '☆';
  color: var(--gold);
}

/* ===== Breadcrumb ===== */
.ft-v2 .v2-breadcrumb {
  max-width: 980px;
  margin: 0 auto;
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
  color: var(--text-light);
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.ft-v2 .v2-breadcrumb::-webkit-scrollbar {
  display: none;
}

.ft-v2 .v2-breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}

.ft-v2 .v2-breadcrumb a:hover {
  color: var(--lavender);
}

.ft-v2 .v2-breadcrumb span {
  margin: 0 0.4rem;
}

/* ===== PR Notice ===== */
.ft-v2 .v2-pr-notice {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1rem 0.3rem;
  font-size: 0.75rem;
  color: var(--text-light);
}

.ft-v2 .v2-pr-date {
  margin-left: 0.5em;
}

/* ===== Hero Avatar ===== */
.ft-v2 .hero-top {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ft-v2 .hero-avatar-wrapper {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.ft-v2 .hero-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 3px solid var(--lavender-pale);
}

.ft-v2 .hero-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ft-v2 .hero-service-logos {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.5rem;
}

.ft-v2 .hero-service-logo {
  width: 80px;
  height: auto;
  object-fit: contain;
}

.ft-v2 .hero-info {
  flex: 1;
  min-width: 0;
}

.ft-v2 .hero-catch-phrase {
  color: var(--text-medium);
  font-size: 0.85rem;
  margin: 0 0 0.2rem;
  line-height: 1.5;
}

.ft-v2 .h1-kana {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-medium);
}

.ft-v2 .h1-suffix {
  font-size: inherit;
  font-weight: 700;
}

.ft-v2 .h1-provider {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-medium);
}

.ft-v2 .h1-page-title {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-medium);
}

.ft-v2 .profile-rating {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  margin-top: 0.8rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 2px 10px var(--shadow);
}

.ft-v2 .profile-rating-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.ft-v2 .profile-rating-main {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ft-v2 .profile-rating .star-rating {
  font-size: 1.1rem;
}

.ft-v2 .profile-rating-score {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--lavender) 0%, var(--rose) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ft-v2 .profile-rating-count {
  font-size: 0.8rem;
  color: var(--text-light);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== Skills / Topics ===== */
.ft-v2 .v2-skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}

.ft-v2 .v2-skill-item {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  background: var(--rose-pale);
  color: var(--rose-deep);
  border: none;
}

.ft-v2 .v2-skill-item:hover {
  background: var(--rose);
  color: var(--white);
}

.ft-v2 .v2-topic-item {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  background: var(--white);
  color: var(--lavender);
  border: 1px solid var(--lavender-pale);
}

.ft-v2 .v2-topic-item:hover {
  background: var(--lavender-pale);
  border-color: var(--lavender);
}

.ft-v2 .v2-specialty-categories {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ft-v2 .v2-specialty-category {
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--bg-greige);
}

.ft-v2 .v2-specialty-category:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* ===== Real Reviews (v1デザイン踏襲) ===== */
.ft-v2 .v2-reviews-summary {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--bg-greige);
}

.ft-v2 .v2-reviews-summary .score {
  font-family: 'Shippori Mincho', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--lavender);
}

.ft-v2 .v2-reviews-summary .max {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===== Rating Breakdown (項目別評価) ===== */
.ft-v2 .v2-rating-breakdown {
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--bg-greige);
}

.ft-v2 .v2-rating-breakdown-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.ft-v2 .v2-rating-rows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.ft-v2 .v2-rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.ft-v2 .v2-rating-label {
  min-width: 70px;
  font-weight: 500;
  color: var(--text-medium);
}

.ft-v2 .v2-rating-row .star-rating {
  font-size: 0.9rem;
}

.ft-v2 .v2-rating-value {
  font-weight: 700;
  color: var(--lavender);
  margin-left: auto;
}

.ft-v2 .v2-review-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ft-v2 .v2-review-card {
  background: var(--bg-beige);
  border-radius: 16px;
  padding: 1.5rem;
}

.ft-v2 .v2-review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--bg-greige);
}

.ft-v2 .v2-reviewer-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex: 1;
  min-width: 0;
}

.ft-v2 .v2-reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lavender) 0%, var(--rose) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.ft-v2 .v2-reviewer-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.ft-v2 .v2-reviewer-age-gender {
  font-size: 0.8rem;
  color: var(--text-light);
}

.ft-v2 .v2-review-total {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  flex-shrink: 0;
}

.ft-v2 .v2-review-total .v2-review-rating-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
}

.ft-v2 .v2-review-rating-stars {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ft-v2 .v2-review-total .star-rating {
  font-size: 1rem;
}

.ft-v2 .v2-review-score {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--lavender);
}

.ft-v2 .v2-review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1rem;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.ft-v2 .v2-review-usage-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-light);
}

.ft-v2 .v2-review-ratings {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 12px;
}

.ft-v2 .v2-review-rating-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.ft-v2 .v2-review-rating-item .rating-label {
  min-width: 70px;
  color: var(--text-medium);
}

.ft-v2 .v2-review-rating-item .star-rating {
  font-size: 0.8rem;
}

.ft-v2 .v2-review-rating-item .rating-value {
  font-weight: 600;
  color: var(--lavender);
  margin-left: auto;
}

.ft-v2 .v2-review-points {
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.ft-v2 .v2-review-points h5 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.ft-v2 .v2-review-points p {
  color: var(--text-medium);
  line-height: 1.8;
  margin: 0;
}

.ft-v2 .v2-review-good {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
  border-left: 4px solid var(--green);
}

.ft-v2 .v2-review-good h5 {
  color: var(--green);
}

.ft-v2 .v2-review-bad {
  background: linear-gradient(135deg, rgba(244, 67, 54, 0.1) 0%, rgba(244, 67, 54, 0.05) 100%);
  border-left: 4px solid #f44336;
}

.ft-v2 .v2-review-bad h5 {
  color: #f44336;
}

.ft-v2 .v2-review-tags {
  display: flex;
  gap: 0.4rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

/* ===== Profile Text ===== */
.ft-v2 .v2-profile-text {
  font-size: 0.85rem;
  color: var(--text-medium);
  line-height: 1.7;
}

/* ===== テキスト折りたたみ（続きを読む / 閉じる）v1踏襲 ===== */
.ft-v2 .v2-fold-wrapper {
  position: relative;
}

.ft-v2 .v2-fold-toggle {
  display: block;
  margin: 0.6rem auto 1rem;
  padding: 0.4rem 1rem;
  background: none;
  border: none;
  color: var(--lavender);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s;
}

.ft-v2 .v2-fold-toggle:hover {
  color: var(--rose);
}

/* ===== Pagination (v2) ===== */
.ft-v2 .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.ft-v2 .pagination .page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 0.5rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-medium);
  background: var(--bg-beige);
  border: 1px solid var(--bg-greige);
  text-decoration: none;
  transition: all 0.3s;
}

.ft-v2 .pagination .page-btn:hover {
  background: var(--lavender-pale);
  border-color: var(--lavender-light);
}

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

.ft-v2 .pagination .page-btn.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.ft-v2 .pagination .page-dots {
  font-size: 0.8rem;
  color: var(--text-light);
  padding: 0 0.2rem;
}

/* Hide aside on mobile */
.ft-v2 .aside-desktop {
  display: none;
}

/* ===== Desktop ===== */
@media (min-width: 860px) {
  body.ft-v2 {
    font-size: 16px;
    padding-bottom: 80px;
  }

  .ft-v2 .header-spacer {
    height: 60px;
  }

  .ft-v2 .header-default,
  .ft-v2 .header-nav {
    height: 60px;
    padding: 0.8rem 1.5rem;
  }

  .ft-v2 .container {
    padding: 0 1.5rem;
  }

  .ft-v2 .card {
    padding: 1.5rem;
  }

  .ft-v2 .section {
    margin-top: 1.5rem;
    scroll-margin-top: 70px;
  }

  .ft-v2 .h1 {
    font-size: 1.5rem;
  }

  .ft-v2 .quick-info {
    display: none;
  }

  .ft-v2 .two-col {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.5rem;
    align-items: start;
  }

  .ft-v2 .aside-desktop {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
  }

  .ft-v2 .aside-card {
    background: var(--white);
    border-radius: 14px;
    padding: 1.2rem;
    border: 1px solid var(--bg-greige);
  }

  .ft-v2 .aside-card .info-row {
    margin-bottom: 0.8rem;
  }

  .ft-v2 .aside-card .info-row:last-child {
    margin-bottom: 0;
  }

  .ft-v2 .aside-card .label {
    font-size: 0.7rem;
    color: var(--text-light);
    margin-bottom: 0.15rem;
  }

  .ft-v2 .aside-card .value {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
  }

  /* サイドバー 項目別評価 */
  .ft-v2 .v2-aside-rating-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--bg-greige);
  }

  .ft-v2 .v2-aside-rating-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.1rem 0.4rem;
    font-size: 0.85rem;
  }

  .ft-v2 .v2-aside-rating-label {
    width: 100%;
    font-weight: 500;
    color: var(--text-medium);
  }

  .ft-v2 .v2-aside-rating-row .star-rating {
    font-size: 0.9rem;
  }

  .ft-v2 .v2-aside-rating-value {
    font-weight: 700;
    color: var(--lavender);
    margin-left: auto;
  }

  .ft-v2 .v2-similar-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .ft-v2 .v2-breadcrumb {
    padding: 0.8rem 1.5rem;
  }

  .ft-v2 .v2-pr-notice {
    padding: 0 1.5rem 0.3rem;
  }

  .ft-v2 .hero-avatar {
    width: 100px;
    height: 100px;
  }

  .ft-v2 .hero-service-logo {
    width: 100px;
  }
}

/* ===== Mobile (small screens) ===== */
@media (max-width: 480px) {
  .ft-v2 .v2-review-ratings {
    grid-template-columns: 1fr;
  }

  .ft-v2 .v2-review-header {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .ft-v2 .v2-review-total {
    align-items: flex-end;
  }

  .ft-v2 .v2-review-usage-info {
    flex-direction: column;
    gap: 0.5rem;
  }

  .ft-v2 .v2-rating-rows {
    grid-template-columns: 1fr;
  }
}

/* ===== CTA Provider Note ===== */
.ft-v2 .cta-provider-note {
  font-size: 0.6rem;
  color: var(--text-light);
  text-align: right;
  margin: 0.25rem 0 0;
}

.ft-v2 .cta-bar-inner:has(.cta-provider-note) {
  flex-direction: column;
  gap: 0;
}

.ft-v2 .cta-bar-inner > .cta-provider-note {
  margin: 0.15rem 0 0;
  width: 100%;
}
