@charset "UTF-8";
/* ============================================
   成功事例 ページ専用スタイル
   ============================================ */

.uc-hero {
  position: relative;
  padding: 90px 20px 70px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--df-black) 0%, #241a10 100%);
  isolation: isolate;
}

.uc-hero-bg {
  position: absolute;
  inset: -15%;
  z-index: 0;
  background:
    radial-gradient(42% 38% at 18% 28%, rgba(232, 93, 44, 0.34), transparent 72%),
    radial-gradient(34% 32% at 78% 62%, rgba(224, 165, 39, 0.28), transparent 72%),
    radial-gradient(38% 40% at 55% 10%, rgba(232, 93, 44, 0.22), transparent 72%),
    radial-gradient(30% 30% at 30% 82%, rgba(224, 165, 39, 0.18), transparent 72%);
  filter: blur(70px);
  animation: uc-hero-drift 18s ease-in-out infinite;
  pointer-events: none;
  will-change: transform;
}
@keyframes uc-hero-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(3%, -4%) scale(1.08); }
  66%      { transform: translate(-4%, 3%) scale(0.94); }
}

.uc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 50% 0%, rgba(232, 93, 44, 0.14), transparent 60%);
}

.uc-hero-inner { position: relative; z-index: 1; width: 100%; max-width: 780px; margin: 0 auto; }
.uc-hero .df-kicker { color: var(--df-gold); }
.uc-hero-title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-top: 6px;
}
.uc-hero-lead {
  margin-top: 22px;
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 767px) {
  .uc-hero { padding: 60px 16px 46px; }
  .uc-hero-title { font-size: 26px; }
  .uc-hero-lead { font-size: 12px; }
}

/* ---------- タブ ---------- */
.uc-tabs-wrapper {
  position: sticky;
  top: 61px;
  z-index: 150;
  background-color: rgba(255, 248, 240, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--df-line);
}
.uc-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px 20px;
  max-width: 1200px;
  margin-inline: auto;
  -webkit-overflow-scrolling: touch;
}
.uc-tabs::-webkit-scrollbar { height: 4px; }
.uc-tabs::-webkit-scrollbar-thumb {
  background: rgba(232, 93, 44, 0.4);
  border-radius: 2px;
}
.uc-tab {
  flex: 0 0 auto;
  appearance: none;
  border: 1px solid rgba(26, 26, 26, 0.18);
  background: transparent;
  color: var(--df-black);
  font-family: inherit;
  font-size: 12px;
  line-height: 1;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.25s, color 0.25s, border-color 0.25s;
}
.uc-tab:hover { border-color: var(--df-orange); color: var(--df-orange-dark); }
.uc-tab._active {
  background-color: var(--df-orange);
  border-color: var(--df-orange);
  color: #fff;
  font-weight: 700;
}

/* ---------- 共通レイアウト ---------- */
.uc-main {
  max-width: 1100px;
  margin-inline: auto;
  padding: 30px 20px 100px;
}
.uc-section { margin-top: 60px; }
.uc-section:first-child { margin-top: 20px; }
.uc-section._hidden { display: none; }

.uc-section-head {
  padding-bottom: 14px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--df-line);
}
.uc-section-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--df-black);
  letter-spacing: 0.04em;
  position: relative;
  padding-left: 14px;
}
.uc-section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  bottom: 0.15em;
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(to bottom, var(--df-gold), var(--df-orange));
}

/* ---------- 導入店舗事例 ---------- */
.uc-store-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.uc-store-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  background: var(--df-white);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(26, 26, 26, 0.04);
  align-items: start;
}
.uc-store-img {
  background: #111;
  height: 320px;
}
.uc-store-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.uc-store-body {
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.uc-store-card:not(:has(.uc-store-img)) .uc-store-body { grid-column: 1 / -1; }

.uc-store-name {
  font-size: 19px;
  font-weight: 700;
  color: var(--df-black);
}
.uc-store-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.uc-store-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--df-cream-deep);
  border-radius: 8px;
  padding: 8px 14px;
}
.uc-store-stat-label { font-size: 10px; color: var(--df-orange-dark); letter-spacing: 0.05em; }
.uc-store-stat-value { font-size: 14px; font-weight: 700; color: var(--df-black); }

.uc-store-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}
.uc-store-points li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(26, 26, 26, 0.8);
}
.uc-store-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--df-orange);
}

.uc-store-quote {
  font-size: 13px;
  line-height: 1.9;
  color: var(--df-ink);
  background: var(--df-cream);
  border-left: 3px solid var(--df-orange);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
}

.uc-store-subimg { margin-top: 4px; }
.uc-store-subimg img {
  width: 100%;
  max-width: 480px;
  border-radius: 10px;
  display: block;
}
.uc-store-subimg-cap {
  margin-top: 6px;
  font-size: 11px;
  color: rgba(26, 26, 26, 0.6);
}

@media screen and (max-width: 767px) {
  .uc-store-card { grid-template-columns: 1fr; }
  .uc-store-img { height: 220px; }
  .uc-store-body { padding: 20px; }
}

/* ---------- 科学的検証データ ---------- */
.uc-lab-note {
  font-size: 12px;
  color: rgba(26, 26, 26, 0.6);
  margin-bottom: 22px;
}
.uc-lab-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media screen and (max-width: 767px) {
  .uc-lab-grid { grid-template-columns: 1fr; }
}

.uc-lab-card {
  background: var(--df-white);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 14px;
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 10px rgba(26, 26, 26, 0.04);
}
.uc-lab-title { font-size: 16px; font-weight: 700; color: var(--df-black); }
.uc-lab-food { font-size: 11px; color: rgba(26, 26, 26, 0.55); line-height: 1.6; }

.uc-lab-chart {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}
.uc-lab-bar-row {
  display: grid;
  grid-template-columns: 90px 1fr 60px;
  align-items: center;
  gap: 10px;
}
.uc-lab-bar-label { font-size: 11px; color: var(--df-ink); }
.uc-lab-bar-track {
  background: var(--df-cream-deep);
  border-radius: 6px;
  height: 16px;
  overflow: hidden;
}
.uc-lab-bar { height: 100%; border-radius: 6px; transition: width 0.6s ease; }
.uc-lab-bar._before { background: rgba(26, 26, 26, 0.35); }
.uc-lab-bar._after { background: linear-gradient(90deg, var(--df-gold), var(--df-orange)); }
.uc-lab-bar-value { font-size: 12px; font-weight: 700; color: var(--df-black); text-align: right; }

.uc-lab-unit { font-size: 10px; color: rgba(26, 26, 26, 0.5); }
.uc-lab-highlight {
  font-size: 14px;
  font-weight: 700;
  color: var(--df-orange-dark);
}
.uc-lab-comment {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(26, 26, 26, 0.7);
  border-top: 1px dashed var(--df-line);
  padding-top: 10px;
  margin-top: 2px;
}

/* ---------- アンケート・購入動機 ---------- */
.uc-survey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .uc-survey-grid { grid-template-columns: 1fr; }
}
.uc-survey-card {
  text-align: center;
  background: var(--df-white);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 14px;
  padding: 30px 20px;
  box-shadow: 0 2px 10px rgba(26, 26, 26, 0.04);
}
.uc-survey-percent {
  font-family: var(--df-font-en);
  font-size: 44px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--df-gold), var(--df-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.uc-survey-text {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--df-black);
  line-height: 1.6;
}
.uc-survey-sub {
  margin-top: 8px;
  font-size: 10px;
  color: rgba(26, 26, 26, 0.5);
}

.uc-block { margin-top: 40px; }
.uc-block-title { font-size: 16px; font-weight: 700; color: var(--df-black); margin-bottom: 8px; }
.uc-block-caption { font-size: 12px; line-height: 1.8; color: rgba(26, 26, 26, 0.65); margin-bottom: 18px; }

.uc-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--df-white);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 10px;
  overflow: hidden;
  font-size: 13px;
}
.uc-table th, .uc-table td {
  padding: 12px 14px;
  text-align: center;
  border-bottom: 1px solid var(--df-line);
}
.uc-table th {
  background: var(--df-cream-deep);
  font-weight: 700;
  color: var(--df-black);
  font-size: 12px;
}
.uc-table td._drfry { color: var(--df-orange-dark); font-weight: 700; }
.uc-table tbody tr:last-child td { border-bottom: none; }

.uc-motive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media screen and (max-width: 767px) {
  .uc-motive-grid { grid-template-columns: 1fr; }
}
.uc-motive-col {
  background: var(--df-white);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 12px;
  padding: 18px 20px;
}
.uc-motive-rank {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--df-orange);
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.uc-motive-list {
  list-style: decimal;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.uc-motive-list li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--df-ink);
}
.uc-motive-count {
  flex: 0 0 auto;
  color: rgba(26, 26, 26, 0.5);
  font-size: 11px;
}
