@charset "UTF-8";
/* ============================================
   P-01 ホーム 専用スタイル v2
   ============================================ */

/* ============================================
   HERO
============================================ */
.home-hero {
  position: relative;
  min-height: 100vh;
  padding: calc(80px + 56px) 0 calc(var(--section-pad-y) + 24px);
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse at 92% 8%, rgba(248, 200, 213, 0.32), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(230, 210, 160, 0.30), transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(230, 210, 160, 0.14), transparent 60%),
    linear-gradient(180deg, #FFFCF7 0%, #FBF4E4 60%, #F6EEDD 100%);
}
.home-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 60px;
  background: linear-gradient(180deg, transparent 0%, #fff 100%);
  z-index: 1;
  pointer-events: none;
}
.home-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: var(--container-pad);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.home-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 999px;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 143, 177, 0.18);
  box-shadow: 0 6px 16px rgba(255, 143, 177, 0.08);
}
.home-hero-tag .i { color: var(--orange); }
.home-hero-title {
  font-size: 60px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: 0.005em;
  margin-bottom: 26px;
}
.home-hero-title .accent {
  position: relative;
  color: var(--orange);
  display: inline-block;
}
.home-hero-title .dot {
  display: inline-block;
  width: 14px; height: 14px;
  background: var(--orange);
  border-radius: 50%;
  margin-left: 6px;
  vertical-align: 6px;
}
.home-hero-sub {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 36px;
  line-height: 2;
}
.home-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  margin-bottom: 44px;
}
.home-hero-cta .btn {
  flex: 1 1 0;
  min-width: 0;
  padding: 18px 22px;
}
.home-hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.home-hero-badges li {
  flex: 1 1 0;
  min-width: 140px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 143, 177, 0.16);
  border-radius: 18px;
  padding: 18px 14px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.home-hero-badges li:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(255, 143, 177, 0.18); }
.home-hero-badges li::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-soft) 100%);
  opacity: 0;
  transition: opacity .25s;
}
.home-hero-badges li:hover::before { opacity: 1; }
.home-hero-badges strong {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.home-hero-badges strong .num-big { font-size: 30px; }
.home-hero-badges strong small { font-size: 13px; font-weight: 700; margin-left: 2px; }
.home-hero-badges span { font-size: 12px; color: var(--text-mute); font-weight: 600; letter-spacing: 0.02em; }

/* HERO Visual */
.home-hero-visual {
  position: relative;
}
.visual-frame {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 36px 72px rgba(93, 58, 82,0.26), 0 8px 18px rgba(93, 58, 82,0.12);
  aspect-ratio: 4/4.4;
  background: #fff;
}
.visual-frame img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 38%;
  transition: transform 1s cubic-bezier(.22,.61,.36,1);
}
.home-hero-visual:hover .visual-frame img { transform: scale(1.04); }
.visual-tag-tl, .visual-tag-br {
  position: absolute;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 6px 14px;
  border-radius: 999px;
}
.visual-tag-tl {
  top: 16px; left: 16px;
  background: #ff2d55;
  color: #fff;
  padding-left: 22px;
}
.visual-tag-tl::before {
  content: "";
  position: absolute;
  left: 10px; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.4s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: translateY(-50%) scale(1); }
  50% { opacity: .35; transform: translateY(-50%) scale(1.5); }
}
.visual-tag-br {
  bottom: 16px; right: 16px;
  background: #fff;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.visual-tag-br svg { fill: var(--orange); }

/* === 大募集リボン === */
.visual-ribbon {
  position: absolute;
  top: -22px;
  right: -28px;
  z-index: 10;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 35% 35%, #FFD7E4 0%, #FF8FB1 60%, #E66C90 100%);
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(255,143,177,0.5), inset 0 -8px 16px rgba(230,108,144,0.3), inset 0 6px 12px rgba(255,255,255,0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.02em;
  transform: rotate(-10deg);
  animation: ribbonBob 3.5s ease-in-out infinite;
  border: 3px dashed rgba(255,255,255,0.55);
}
.visual-ribbon::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255,143,177,0.4);
  animation: stickyPulse 2.6s ease-out infinite;
  pointer-events: none;
}
.ribbon-line1 {
  display: block;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.ribbon-line2 {
  display: block;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
  margin-top: 3px;
  text-shadow: 0 2px 4px rgba(230,108,144,0.4);
  letter-spacing: 0.04em;
}
.ribbon-paw {
  position: absolute;
  bottom: 10px;
  width: 16px; height: 16px;
  fill: #fff;
  opacity: .8;
}
@keyframes ribbonBob {
  0%,100% { transform: rotate(-10deg) translateY(0); }
  50% { transform: rotate(-6deg) translateY(-5px); }
}

.visual-float {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 32px rgba(255, 143, 177,0.22);
  color: var(--orange);
}
.visual-float-1 { top: -18px; right: 36px; animation: bob 4s ease-in-out infinite; }
.visual-float-2 {
  width: 50px; height: 50px;
  bottom: 14px; left: -22px;
  background: var(--orange);
  color: #fff;
  stroke: #fff;
  animation: bob 5.2s ease-in-out infinite reverse;
}
.visual-float-2 svg { stroke: #fff; stroke-width: 2.2; fill: none; }
@keyframes bob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* SCROLL HINT */
.hero-scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: var(--orange-deep);
}
.hint-line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--orange) 0%, transparent 100%);
  animation: hintDrop 1.8s ease-in-out infinite;
}
@keyframes hintDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   FEATURES
============================================ */
.features {
  background: #fff;
  padding-top: calc(var(--section-pad-y) - 24px);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}
.feature-card {
  position: relative;
  background: #fff;
  border: 1.5px solid #FFE0EA;
  border-radius: 32px;
  padding: 56px 32px 36px;
  text-align: center;
  transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s, border-color .35s;
  overflow: hidden;
  isolation: isolate;
}
.feature-card:nth-child(1) { background: linear-gradient(180deg, #fff 0%, #FBF4E4 100%); }
.feature-card:nth-child(2) { background: linear-gradient(180deg, #fff 0%, #FBF1F2 100%); }
.feature-card:nth-child(3) { background: linear-gradient(180deg, #fff 0%, #F6EEDD 100%); }
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 181, 200,0.0) 0%, rgba(255, 181, 200,0.0) 100%);
  transition: background .35s;
  z-index: -1;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange-soft);
  box-shadow: 0 30px 60px rgba(255, 143, 177,0.16);
}
.feature-card:hover::before {
  background: linear-gradient(160deg, rgba(255,243,225,1) 0%, rgba(255,255,255,1) 60%);
}
.feature-num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: "DM Serif Display", serif;
  font-size: 56px;
  font-weight: 400;
  color: var(--orange);
  opacity: .14;
  line-height: 1;
  letter-spacing: -0.02em;
}
.feature-icon {
  width: 86px; height: 86px;
  margin: 0 auto 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffd6b5 0%, #ff8f5a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 24px rgba(255, 143, 177,0.32);
  transform: rotate(-6deg);
  transition: transform .35s;
}
.feature-card:hover .feature-icon {
  transform: rotate(0) scale(1.05);
}
.feature-icon svg { width: 44px; height: 44px; }
.feature-icon-img { background: transparent !important; box-shadow: none !important; transform: none !important; }
.feature-icon-img img { width: 86px; height: 86px; object-fit: contain; display: block; filter: drop-shadow(0 8px 16px rgba(201,167,102,0.28)); transition: transform .35s; }
.feature-card:hover .feature-icon-img img { transform: scale(1.08) rotate(-4deg); }
.feature-h {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.45;
  letter-spacing: 0.01em;
}
.feature-text {
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--text);
  text-align: left;
}

/* ============================================
   CEO
============================================ */
.ceo {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-deep) 100%);
  overflow: hidden;
}
.ceo-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 72px;
  align-items: center;
}
.ceo-image { position: relative; }
.ceo-image-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(93, 58, 82,0.18);
  background: #fff;
}
.ceo-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, transparent 60%, rgba(201,167,102,0.18) 100%);
  z-index: 1;
  pointer-events: none;
}
.ceo-image-frame img {
  width: 100%;
  height: auto;
  display: block;
  height: 500px;
  object-fit: cover;
  object-position: center top;
  transition: transform 1s cubic-bezier(.22,.61,.36,1);
}
.ceo-image:hover .ceo-image-frame img { transform: scale(1.03); }
.ceo-image-caption {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 24px rgba(93, 58, 82,0.32);
}
.ceo-image-caption svg { fill: var(--orange); }
.ceo-image-medal {
  position: absolute;
  top: 20px; right: -14px;
  background: linear-gradient(135deg, #efc97e, #c5a059);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 10px 16px 10px 14px;
  border-radius: 999px 0 0 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 20px rgba(197,160,89,0.4);
  z-index: 2;
}
.ceo-image-medal svg { fill: #fff; }

.ceo-title {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 22px;
  margin-top: 8px;
  letter-spacing: 0.005em;
}
.ceo-title .accent { color: var(--orange); }
.ceo-title .dot {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  margin-left: 4px;
  vertical-align: 4px;
}
.ceo-lead {
  font-size: 16px;
  line-height: 2.05;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 24px;
  padding-left: 18px;
  border-left: 3px solid var(--orange);
}
.ceo-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--ink);
}
.ceo-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}
.ceo-stats li {
  position: relative;
  background: #fff;
  border: 1px solid #FFE0EA;
  border-radius: 14px;
  padding: 18px 8px 14px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.ceo-stats li:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(255, 143, 177,0.18); }
.ceo-stats strong {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  gap: 0;
}
.ceo-stats strong .num-xl { font-size: 28px; line-height: 1; }
.ceo-stats strong small {
  font-size: 11px;
  font-weight: 700;
  margin: 0 4px 0 1px;
  letter-spacing: 0;
}
.ceo-stats strong small:last-child { margin-right: 0; }
.ceo-stats span { font-size: 11px; color: var(--text-mute); font-weight: 700; letter-spacing: 0.04em; }
.ceo-stat-note {
  display: block;
  font-size: 9px;
  font-weight: 500;
  color: var(--text-mute);
  margin-top: 2px;
  letter-spacing: 0.02em;
  opacity: .75;
}
.ceo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  color: var(--orange);
  padding: 12px 0;
  border-bottom: 2px solid currentColor;
  transition: gap .25s;
}
.ceo-link:hover { gap: 14px; opacity: 1; }

/* ============================================
   LIVERS PICKUP
============================================ */
.livers-pickup { background: #fff; }
.livers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px 24px;
  margin-bottom: 48px;
}
.liver-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.liver-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform .3s cubic-bezier(.22,.61,.36,1);
}
.liver-link:hover { transform: translateY(-6px); opacity: 1; }
.liver-icon {
  position: relative;
  width: 130px; height: 130px;
  border-radius: 50%;
  overflow: visible;
  transition: box-shadow .3s;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-soft) 100%);
  padding: 3px;
}
.liver-icon > img {
  position: relative;
  z-index: 0;
}
.liver-live-badge {
  position: absolute;
  top: -4px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px 4px 18px;
  background: linear-gradient(135deg, #ff3577, #e6164d);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(230,22,77,0.45);
  white-space: nowrap;
}
.liver-live-badge::before {
  content: "";
  position: absolute;
  left: 8px; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.4s infinite;
}
.liver-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 0 rgba(255,255,255,0);
  transition: box-shadow .3s;
}
.liver-link:hover .liver-icon { box-shadow: 0 16px 32px rgba(255, 143, 177,0.32); }
.liver-icon > img, .liver-icon img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 50%;
  background: #fff;
}
.liver-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  word-break: break-all;
  letter-spacing: 0.01em;
}
.livers-pickup-cta { text-align: center; }

/* ============================================
   MID CTA
============================================ */
.mid-cta {
  position: relative;
  background: linear-gradient(135deg, #FBF6F4 0%, #FBF4E4 50%, #F6EEDD 100%);
  overflow: hidden;
}
.mid-cta-card {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border-radius: 36px;
  padding: 72px 56px 64px;
  text-align: center;
  box-shadow: 0 32px 64px rgba(93, 58, 82,0.10);
  border: 1px solid #FFE0EA;
}
.mid-cta-card::before, .mid-cta-card::after {
  content: "";
  position: absolute;
  width: 96px; height: 96px;
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
}
.mid-cta-card::before { top: -32px; left: -32px; background: rgba(255, 143, 177,0.4); }
.mid-cta-card::after { bottom: -32px; right: -32px; background: rgba(229,193,121,0.4); }
.mid-cta-icon {
  width: 72px; height: 72px;
  margin: -110px auto 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 32px rgba(255, 143, 177,0.4);
  transform: rotate(-6deg);
}
.mid-cta-icon svg { width: 36px; height: 36px; }
.mid-cta-title {
  font-size: 34px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 18px;
  letter-spacing: 0.005em;
}
.mid-cta-lead {
  font-size: 16px;
  line-height: 2;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 36px;
}
.mid-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================
   FLOW
============================================ */
.flow {
  position: relative;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-deep) 100%);
  overflow: hidden;
}
.flow::before {
  content: "";
  position: absolute;
  top: 30%; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 143, 177,0.18), transparent);
  pointer-events: none;
}
.flow-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  align-items: stretch;
}
.flow-item .flow-text { margin-top: auto; padding-top: 4px; }
.flow-item {
  position: relative;
  background: #fff;
  border: 1px solid #FFE0EA;
  border-radius: 22px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  overflow: hidden;
  isolation: isolate;
}
.flow-item:hover {
  transform: translateY(-4px);
  border-color: var(--orange-soft);
  box-shadow: 0 24px 48px rgba(255, 143, 177,0.14);
}
.flow-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--orange) 0%, var(--orange-soft) 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
}
.flow-item:hover::before { transform: scaleY(1); }
.flow-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}
.flow-num {
  font-family: "DM Serif Display", serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
}
.flow-icon {
  width: 76px; height: 76px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 181, 200,0.18), rgba(255, 143, 177,0.10));
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, color .25s, transform .25s, box-shadow .25s;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(255, 143, 177,0.14);
}
.flow-item:hover .flow-icon {
  background: linear-gradient(135deg, var(--orange-soft), var(--orange));
  color: #fff;
  transform: scale(1.06) rotate(-4deg);
  box-shadow: 0 12px 24px rgba(255, 143, 177,0.36);
}
.flow-icon svg { width: 40px; height: 40px; }
/* 6STEP 切り出し画像版（3×2 グリッド） */
.flow-icon.flow-icon-img {
  background-image: url("../images/steps-6.png");
  background-size: 300% 200%;
  background-repeat: no-repeat;
  background-color: transparent;
  box-shadow: none;
}
.flow-icon-img.flow-icon-step-01 { background-position: 0% 0%; }
.flow-icon-img.flow-icon-step-02 { background-position: 50% 0%; }
.flow-icon-img.flow-icon-step-03 { background-position: 100% 0%; }
.flow-icon-img.flow-icon-step-04 { background-position: 0% 100%; }
.flow-icon-img.flow-icon-step-05 { background-position: 50% 100%; }
.flow-icon-img.flow-icon-step-06 { background-position: 100% 100%; }
.flow-item:hover .flow-icon.flow-icon-img {
  background-color: transparent;
  transform: scale(1.06) rotate(-4deg);
}
.flow-h {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.45;
}
.flow-text {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--text);
  margin: 0;
}
.flow-item-final {
  background: linear-gradient(135deg, #FBF6F4 0%, #F6EEDD 100%);
  border-color: var(--orange-soft);
}
.flow-item-final .flow-num { color: var(--orange-deep); }
.flow-item-final::after {
  content: "START";
  position: absolute;
  top: 18px; right: 22px;
  font-family: "DM Serif Display", serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--orange-deep);
  opacity: .35;
}

/* ============================================
   EVENT BANNER
============================================ */
.event-banner {
  padding: 0;
  position: relative;
}
.event-banner-link {
  display: block;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(93, 58, 82,0.82) 0%, rgba(93, 58, 82,0.55) 60%, rgba(93, 58, 82,0.82) 100%),
    url("../images/fv0521.webp") center / cover;
  color: #fff;
  transition: filter .4s;
}
.event-banner-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255, 143, 177,0.3) 0%, transparent 50%);
  pointer-events: none;
}
.event-banner-link:hover { filter: brightness(1.08); opacity: 1; }
.event-banner-inner {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 96px var(--container-pad);
  text-align: center;
}
.event-banner-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4em;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.event-banner-title {
  font-size: 60px;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  text-shadow: 0 6px 24px rgba(0,0,0,0.55);
  background: linear-gradient(180deg, #fff 0%, #ffe8c8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.event-banner-sub {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  opacity: 0.96;
  letter-spacing: 0.04em;
}
.event-banner-meta {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 36px;
  opacity: 0.94;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.event-banner-meta small { font-weight: 500; }
.event-banner-meta .dot-sep { opacity: .6; }
.event-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 18px 40px;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(255, 143, 177,0.5);
  transition: transform .3s, box-shadow .3s;
}
.event-banner-link:hover .event-banner-btn { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(255, 143, 177,0.6); }

/* ============================================
   FINAL CTA
============================================ */
.final-cta {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #fff8f0 50%, #ffe9d0 100%);
  text-align: center;
  overflow: hidden;
}
.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.final-cta-image {
  position: relative;
}
.final-cta-image img {
  width: 100%;
  height: auto;
  border-radius: 32px;
  box-shadow: 0 30px 60px rgba(255,143,177,0.32), 0 8px 18px rgba(255,143,177,0.18);
  display: block;
}
.final-cta-content { text-align: center; }
.final-cta-title {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.28;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: 0.005em;
}
.final-cta-title .accent { color: var(--orange); }
.final-cta-title .dot {
  display: inline-block;
  width: 12px; height: 12px;
  background: var(--orange);
  border-radius: 50%;
  margin-left: 4px;
  vertical-align: 5px;
}
.final-cta-lead {
  font-size: 16px;
  line-height: 2;
  color: var(--text);
  margin-bottom: 40px;
  font-weight: 500;
}
.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================
   レスポンシブ
============================================ */
@media (max-width: 960px) {
  .home-hero { min-height: auto; padding: calc(64px + 32px) 0 var(--section-pad-y); }
  .home-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  /* SPは画像→テキストの順に並び替え */
  .home-hero-copy { order: 2; }
  .home-hero-visual { order: 1; }
  .home-hero-title { font-size: 42px; }
  .home-hero-sub { font-size: 15px; }
  .visual-frame { aspect-ratio: 4/3.4; }
  .features-grid { grid-template-columns: 1fr; gap: 20px; }
  .ceo-grid { grid-template-columns: 1fr; gap: 64px; }
  .ceo-title { font-size: 30px; }
  .livers-grid { grid-template-columns: repeat(4, 1fr); gap: 28px 18px; }
  .liver-icon { width: 110px; height: 110px; }
  .mid-cta-card { padding: 56px 36px 48px; }
  .mid-cta-title { font-size: 26px; }
  .flow-list { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .event-banner-inner { padding: 64px var(--container-pad); }
  .event-banner-title { font-size: 42px; }
  .final-cta-title { font-size: 32px; }
  .final-cta-grid { grid-template-columns: 1fr; gap: 36px; max-width: 600px; margin: 0 auto; }
  .final-cta-image img { max-height: 360px; object-fit: cover; }
  .hero-scroll-hint { display: none; }
}
@media (max-width: 640px) {
  .home-hero { padding: calc(56px + 40px) 0 var(--section-pad-y); }
  .home-hero-inner { gap: 32px; }
  /* SP版：tagの枠は左揃え（元通り）、中の文字（icon + text）は中央揃え */
  .home-hero-tag {
    font-size: 11px;
    padding: 6px 14px;
    margin-bottom: 16px;
    justify-content: center;
  }
  .home-hero-title { font-size: 30px; margin-bottom: 18px; line-height: 1.25; }
  .home-hero-title .dot { width: 8px; height: 8px; vertical-align: 4px; }
  .home-hero-sub { font-size: 14px; margin-bottom: 28px; line-height: 1.9; }
  .home-hero-cta { flex-direction: row; flex-wrap: nowrap; gap: 8px; }
  .home-hero-cta .btn {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    padding: 13px 10px;
    font-size: 11.5px;
    gap: 6px;
    letter-spacing: 0;
  }
  .home-hero-cta .btn img { width: 16px; }
  .home-hero-cta .btn svg { width: 14px; height: 14px; }
  .home-hero-badges { gap: 6px; }
  .home-hero-badges li { min-width: 0; padding: 14px 4px 12px; border-radius: 14px; }
  .home-hero-badges strong {
    font-size: 17px;
    letter-spacing: -0.04em;
    white-space: nowrap;
    display: block;
    line-height: 1.15;
  }
  .home-hero-badges strong .num-big { font-size: 19px; }
  .home-hero-badges strong small { font-size: 10px; margin-left: 1px; }
  .home-hero-badges li > span {
    font-size: 9.5px;
    letter-spacing: -0.02em;
    white-space: nowrap;
    display: block;
  }
  .visual-tag-tl, .visual-tag-br { font-size: 10px; padding: 5px 12px; }
  .visual-tag-tl { padding-left: 20px; }
  .visual-float-1 { width: 48px; height: 48px; top: -12px; right: 20px; }
  .visual-float-2 { width: 38px; height: 38px; bottom: 10px; left: -14px; }
  .feature-card { padding: 44px 24px 28px; border-radius: 20px; }
  .feature-num { font-size: 44px; top: 12px; right: 18px; }
  .feature-icon { width: 68px; height: 68px; border-radius: 18px; }
  .feature-icon svg { width: 34px; height: 34px; }
  .feature-h { font-size: 18px; }
  .feature-text { font-size: 13.5px; }
  .ceo-title { font-size: 24px; }
  .ceo-lead { font-size: 14px; padding-left: 14px; }
  .ceo-image-frame { border-radius: 22px; }
  .ceo-image-frame img { height: 400px; }
  .ceo-image-medal { font-size: 10px; padding: 8px 14px; top: 14px; }
  .ceo-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .ceo-stats li { padding: 14px 8px 12px; }
  .ceo-stats strong { font-size: 20px; }
  .ceo-stats strong .num-xl { font-size: 22px; }
  .livers-grid { grid-template-columns: repeat(3, 1fr); gap: 24px 10px; margin-bottom: 32px; }
  .liver-icon { width: 90px; height: 90px; padding: 2px; }
  .liver-name { font-size: 11px; }
  .mid-cta-card { padding: 40px 24px 32px; border-radius: 22px; }
  .mid-cta-icon { width: 60px; height: 60px; margin-top: -78px; border-radius: 18px; }
  .mid-cta-icon svg { width: 30px; height: 30px; }
  .mid-cta-title { font-size: 22px; }
  .mid-cta-lead { font-size: 13.5px; }
  .mid-cta-buttons { flex-direction: column; }
  .flow-list { grid-template-columns: 1fr; gap: 14px; }
  .flow-item { padding: 26px 22px; }
  .flow-item-head { margin-bottom: 16px; }
  .flow-num { font-size: 36px; }
  .flow-icon { width: 60px; height: 60px; border-radius: 16px; }
  .flow-icon svg { width: 32px; height: 32px; }
  .flow-h { font-size: 16px; }
  .flow-text { font-size: 13px; }
  .event-banner-inner { padding: 56px 20px; }
  .event-banner-title { font-size: 30px; }
  .event-banner-sub { font-size: 14px; }
  .event-banner-meta { font-size: 12px; flex-direction: column; gap: 4px; }
  .event-banner-meta .dot-sep { display: none; }
  .event-banner-btn { font-size: 13px; padding: 14px 28px; }
  .final-cta-title { font-size: 26px; }
  .final-cta-lead { font-size: 13.5px; }
  .final-cta-buttons { flex-direction: column; }
}
