@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@500;800&family=Zen+Kaku+Gothic+New:wght@500;700;900&display=swap');

#tl1024-quiz-root{
  --tl-bg:#fdf8f6; --tl-surface:#ffffff; --tl-surface-alt:#fdf1f4;
  --tl-border:#f1dce3; --tl-border-soft:#f6e9ee;
  --tl-text:#40383c; --tl-text-dim:#a3949b;
  --tl-pink:#ef9fc0; --tl-pink-deep:#e07aa5;
  --tl-lavender:#c6b3e6; --tl-lavender-deep:#a98fd4;
  --tl-greige:#cdb9a8;
  --tl-ink-on-accent:#3a2230;
  max-width:560px;margin:0 auto;padding:26px 16px;
  font-family:"Zen Kaku Gothic New",-apple-system,"Hiragino Kaku Gothic ProN","Hiragino Sans",sans-serif;
  color:var(--tl-text);
  background:var(--tl-bg);
  border-radius:24px;
}
#tl1024-quiz-root *{box-sizing:border-box;}

#tl1024-quiz-root #tl-progress-bg{height:6px;background:var(--tl-border-soft);border-radius:99px;overflow:hidden;margin-bottom:22px;}
#tl1024-quiz-root #tl-progress{height:100%;width:0%;background:linear-gradient(90deg,var(--tl-pink),var(--tl-lavender));border-radius:99px;transition:width .35s ease;}

#tl1024-quiz-root .tl-card{
  background:var(--tl-surface);
  border:1px solid var(--tl-border-soft);
  border-radius:24px;
  padding:28px 22px;
  margin-bottom:14px;
  box-shadow:0 10px 30px rgba(224,122,165,.08);
}

/* ウェルカム画面(TOP) */
#tl1024-quiz-root .tl-welcome{
  text-align:center;padding:36px 20px 24px;
}
#tl1024-quiz-root .tl-welcome-badge{
  display:inline-block;padding:6px 16px;border-radius:99px;
  background:var(--tl-surface-alt);color:var(--tl-pink-deep);
  font-size:11px;font-weight:700;letter-spacing:.1em;margin-bottom:18px;
}
#tl1024-quiz-root .tl-welcome-title{
  font-family:"Shippori Mincho","Hiragino Mincho ProN",serif;
  font-size:28px;font-weight:800;line-height:1.5;margin-bottom:14px;color:var(--tl-text);
}
#tl1024-quiz-root .tl-welcome-sub{
  font-size:13.5px;color:var(--tl-text-dim);margin-bottom:28px;
}
#tl1024-quiz-root .tl-welcome-note{
  margin-top:12px;font-size:11.5px;color:var(--tl-text-dim);
}

#tl1024-quiz-root .tl-welcome-section{
  background:var(--tl-surface);border:1px solid var(--tl-border-soft);border-radius:24px;
  padding:26px 22px;margin-bottom:14px;
}
#tl1024-quiz-root .tl-welcome-section-title{
  font-family:"Shippori Mincho","Hiragino Mincho ProN",serif;
  font-size:16px;font-weight:800;margin-bottom:16px;text-align:center;color:var(--tl-text);
}
#tl1024-quiz-root .tl-empathy-list{display:flex;flex-direction:column;gap:10px;}
#tl1024-quiz-root .tl-empathy-item{
  background:var(--tl-surface-alt);border-radius:14px;padding:13px 16px;
  font-size:13.5px;color:var(--tl-text);line-height:1.5;
}
#tl1024-quiz-root .tl-reveal-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:10px;
}
#tl1024-quiz-root .tl-reveal-item{
  background:var(--tl-surface-alt);border-radius:16px;padding:18px 10px;text-align:center;
  font-size:12.5px;color:var(--tl-text);line-height:1.5;font-weight:700;
}
#tl1024-quiz-root .tl-reveal-icon{font-size:24px;margin-bottom:8px;}
#tl1024-quiz-root .tl-welcome-stats{
  display:flex;justify-content:space-around;text-align:center;
  padding:22px 10px;margin-bottom:14px;
}
#tl1024-quiz-root .tl-stat-num{
  font-family:"Shippori Mincho","Hiragino Mincho ProN",serif;
  font-size:24px;font-weight:800;color:var(--tl-pink-deep);
}
#tl1024-quiz-root .tl-stat-label{font-size:11px;color:var(--tl-text-dim);margin-top:4px;}

#tl1024-quiz-root .tl-q-num{
  font-size:11px;color:var(--tl-pink-deep);letter-spacing:.18em;margin-bottom:12px;
  font-weight:700;
  display:flex;align-items:center;gap:6px;
}
#tl1024-quiz-root .tl-q-num::before{content:"✨";font-size:11px;}
#tl1024-quiz-root .tl-q-text{
  font-size:17px;font-weight:700;margin-bottom:22px;line-height:1.75;
  color:var(--tl-text);
}

#tl1024-quiz-root .tl-choice{
  background:var(--tl-surface);
  border:1.5px solid var(--tl-border);
  border-radius:16px;
  padding:15px 16px;
  font-size:14px;
  font-weight:500;
  cursor:pointer;
  margin-bottom:10px;
  display:flex;align-items:center;gap:12px;
  transition:transform .15s ease, border-color .15s ease, background .15s ease;
}
#tl1024-quiz-root .tl-choice:hover{border-color:var(--tl-pink);background:var(--tl-surface-alt);}
#tl1024-quiz-root .tl-choice.selected{
  border-color:var(--tl-pink-deep);
  background:linear-gradient(90deg, var(--tl-surface-alt), #f6f1fb);
  color:var(--tl-ink-on-accent);
  transform:scale(1.01);
}
#tl1024-quiz-root .tl-choice .num{
  display:inline-flex;align-items:center;justify-content:center;
  width:24px;height:24px;border-radius:50%;
  border:1.5px solid var(--tl-border);color:var(--tl-text-dim);
  font-size:11px;font-weight:700;flex-shrink:0;
  background:var(--tl-surface);
}
#tl1024-quiz-root .tl-choice.selected .num{background:linear-gradient(135deg,var(--tl-pink),var(--tl-lavender));color:#fff;border-color:transparent;}

#tl1024-quiz-root .tl-btn{
  display:block;width:100%;text-align:center;padding:16px;border-radius:99px;border:none;
  font-size:14px;font-weight:700;cursor:pointer;margin-top:14px;
  background:linear-gradient(120deg,var(--tl-pink),var(--tl-lavender));
  color:#fff;font-family:inherit;
  box-shadow:0 10px 24px rgba(224,122,165,.28);
}

#tl1024-quiz-root .tl-result-code{
  text-align:center;font-size:11px;letter-spacing:.16em;color:var(--tl-text-dim);margin-bottom:10px;
  font-weight:700;
}
#tl1024-quiz-root .tl-result-name{
  font-family:"Shippori Mincho","Hiragino Mincho ProN",serif;
  text-align:center;font-size:27px;font-weight:800;margin-bottom:6px;
  color:var(--tl-pink-deep);
  line-height:1.5;
}
#tl1024-quiz-root .tl-result-subtitle{
  text-align:center;font-size:13px;color:var(--tl-text-dim);margin-bottom:22px;letter-spacing:.02em;
}

#tl1024-quiz-root .tl-share{margin-bottom:22px;}
#tl1024-quiz-root .tl-share-label{
  text-align:center;font-size:11px;color:var(--tl-text-dim);letter-spacing:.08em;margin-bottom:10px;
  font-weight:700;
}
#tl1024-quiz-root .tl-share-buttons{display:flex;gap:8px;flex-wrap:wrap;justify-content:center;}
#tl1024-quiz-root .tl-share-btn{
  flex:1 1 auto;min-width:88px;text-align:center;
  padding:11px 14px;border-radius:99px;border:1.5px solid var(--tl-border);
  font-size:12.5px;font-weight:700;cursor:pointer;
  text-decoration:none;font-family:inherit;
  transition:transform .15s ease, filter .15s ease;
}
#tl1024-quiz-root .tl-share-btn:hover{transform:translateY(-1px);filter:brightness(1.05);}
#tl1024-quiz-root .tl-share-line{background:#06c755;color:#fff;border-color:transparent;}
#tl1024-quiz-root .tl-share-x{background:#1a1a1a;color:#fff;border-color:transparent;}
#tl1024-quiz-root .tl-share-native{background:linear-gradient(120deg,var(--tl-pink),var(--tl-lavender));color:#fff;border-color:transparent;}

#tl1024-quiz-root .tl-headline{
  background:var(--tl-surface-alt);border-left:3px solid var(--tl-pink);
  border-radius:14px;padding:14px 16px;font-size:13px;line-height:1.9;margin-bottom:18px;
}

#tl1024-quiz-root .tl-section{margin-bottom:16px;}
#tl1024-quiz-root .tl-label{
  font-size:12.5px;color:var(--tl-pink-deep);margin-bottom:8px;font-weight:700;
  letter-spacing:.02em;
  display:flex;align-items:center;gap:6px;
}
#tl1024-quiz-root .tl-label::before{content:"🌸";font-size:11px;}
#tl1024-quiz-root .tl-list{
  background:var(--tl-surface-alt);border:1px solid var(--tl-border-soft);
  border-radius:16px;padding:14px 16px;font-size:13.5px;line-height:1.9;color:var(--tl-text);
}

#tl1024-quiz-root .tl-error{color:var(--tl-pink-deep);font-size:13px;padding:12px;text-align:center;}
