

.hk-header { position: fixed; top: 0; left: 0; right: 0; height: 64px; background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(0, 0, 0, 0.06); z-index: 1000; transition: box-shadow 0.3s; }
.hk-header.is-scrolled { box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06); }
.hk-header__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.hk-header__logo { display: flex; align-items: center; gap: 12px; transition: opacity 0.2s; }
.hk-header__logo:hover { opacity: 0.7; }
.hk-header__logo img { height: 22px; }
.hk-header__divider { width: 1px; height: 18px; background: rgba(0, 0, 0, 0.12); }
.hk-header__brand { font-size: 14px; font-weight: 800; color: var(--secondary); letter-spacing: 0.02em; background: linear-gradient(135deg, var(--septeni-blue), var(--septeni-red)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hk-header__nav { display: flex; align-items: center; gap: 8px; }
.hk-header__btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 18px; font-size: 12px; font-weight: 700; border-radius: 50px; transition: all 0.25s; white-space: nowrap; }
.hk-header__btn--ghost { color: var(--secondary); background: transparent; border: 1px solid rgba(0, 0, 0, 0.1); }
.hk-header__btn--ghost:hover { background: var(--bg); border-color: rgba(0, 0, 0, 0.2); }
.hk-header__btn--primary { background: linear-gradient(135deg, var(--septeni-red), #ff3333); color: white; box-shadow: 0 4px 14px rgba(246, 0, 0, 0.25); }
.hk-header__btn--primary:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(246, 0, 0, 0.35); }
.hk-header__btn--blue { background: linear-gradient(135deg, var(--septeni-blue), #4d8fe0); color: white; box-shadow: 0 4px 14px rgba(0, 80, 170, 0.25); }
.hk-header__btn--blue:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0, 80, 170, 0.35); }
.hk-header__btn-pulse { width: 6px; height: 6px; border-radius: 50%; background: #4da6ff; box-shadow: 0 0 0 0 rgba(77, 166, 255, 0.7); animation: hkPulse 2s infinite; }
@keyframes hkPulse {
  0% { box-shadow: 0 0 0 0 rgba(77, 166, 255, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(77, 166, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(77, 166, 255, 0); }
}
.hk-header__menu { display: none; width: 36px; height: 36px; border: none; background: transparent; cursor: pointer; position: relative; padding: 0; }
.hk-header__menu span { position: absolute; left: 8px; right: 8px; height: 2px; background: var(--secondary); border-radius: 2px; transition: all 0.3s; }
.hk-header__menu span:nth-child(1) { top: 11px; }
.hk-header__menu span:nth-child(2) { top: 17px; }
.hk-header__menu span:nth-child(3) { top: 23px; }
.hk-header__menu.is-active span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.hk-header__menu.is-active span:nth-child(2) { opacity: 0; }
.hk-header__menu.is-active span:nth-child(3) { top: 17px; transform: rotate(-45deg); }
.hk-header__drawer { position: fixed; top: 64px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--border); padding: 16px; display: flex; flex-direction: column; gap: 8px; opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity 0.3s, transform 0.3s; z-index: 999; }
.hk-header__drawer.is-active { opacity: 1; pointer-events: auto; transform: translateY(0); }
.hk-header__drawer-item { display: flex; flex-direction: column; padding: 16px 18px; background: var(--bg); border-radius: 12px; transition: background 0.2s; }
.hk-header__drawer-item:hover { background: rgba(0, 80, 170, 0.06); }
.hk-header__drawer-item--primary { background: linear-gradient(135deg, var(--septeni-red), #ff3333); }
.hk-header__drawer-item--primary:hover { background: linear-gradient(135deg, #d50000, var(--septeni-red)); }
.hk-header__drawer-item--blue { background: linear-gradient(135deg, var(--septeni-blue), #4d8fe0); }
.hk-header__drawer-item--blue:hover { background: linear-gradient(135deg, #003d82, var(--septeni-blue)); }
.hk-header__drawer-item strong { font-size: 14px; font-weight: 800; color: var(--secondary); margin-bottom: 2px; }
.hk-header__drawer-item small { font-size: 11px; color: var(--text-muted); }
.hk-header__drawer-item--primary strong,
.hk-header__drawer-item--blue strong { color: white; }
.hk-header__drawer-item--primary small,
.hk-header__drawer-item--blue small { color: rgba(255, 255, 255, 0.8); }

@media (max-width: 1024px) {
  .hk-header__nav .hk-header__btn { display: none; }
  .hk-header__menu { display: block; }
}
@media (max-width: 768px) {
  .hk-header__brand { display: none; }
  .hk-header__divider { display: none; }
}

.report-preview { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px; max-width: 1080px; margin: 0 auto; box-shadow: 0 8px 32px rgba(0,0,0,.04); position: relative; text-align: left; }
.report-preview__head { padding: 24px 0 28px; margin-bottom: 28px; text-align: center; border-bottom: 1px solid var(--border); }
.report-preview__head h3 { font-size: 38px; font-weight: 900; margin: 0; color: var(--secondary); line-height: 1.4; }
.report-preview__head h3::after { content: ''; display: block; width: 80px; height: 4px; background: linear-gradient(to right, var(--septeni-red), var(--septeni-blue)); margin: 14px auto 0; border-radius: 2px; }
.report-preview__eyebrow { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 2px; color: #fff; background: var(--septeni-red); padding: 4px 14px; border-radius: 999px; margin: 0 0 14px; }
.report-preview__subtitle { font-size: 12px; font-weight: 700; color: var(--text-muted); margin: 0 0 10px; letter-spacing: 1.5px; }
.report-preview__hero-desc { margin: 22px auto 0; padding: 18px 20px; background: var(--bg); border-radius: 10px; max-width: 720px; text-align: left; }
.report-preview__info-note { display: flex; align-items: flex-start; gap: 6px; max-width: 560px; margin: 16px auto 0; background: #f0f4fa; border-radius: 7px; padding: 8px 12px; font-size: 11px; color: #666; line-height: 1.6; text-align: left; }
.report-preview__info-note svg { flex-shrink: 0; margin-top: 2px; color: #888; }

.desc-section { margin-bottom: 8px; }
.desc-section + .desc-section { padding-top: 8px; }
.desc-section__head { display: flex; align-items: center; gap: 6px; margin-bottom: 5px; }
.desc-section__icon { color: var(--septeni-blue); display: flex; align-items: center; flex-shrink: 0; }
.desc-section__label { font-size: 11px; font-weight: 700; color: var(--text); }
.desc-section__text { font-size: 14px; color: var(--text-light); line-height: 1.8; margin: 0; }

.type-quadrant {
  max-width: 600px;
  margin: 24px auto 6px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: auto auto auto;
  grid-template-areas:
    ".    top    ."
    "left grid   right"
    ".    bottom .";
  align-items: center;
  column-gap: 8px;
  row-gap: 7px;
}
.type-quadrant__grid { grid-area: grid; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 14px; position: relative; }

.type-quadrant__grid::before,
.type-quadrant__grid::after { content: ""; position: absolute; background: rgba(0, 0, 0, 0.08); pointer-events: none; z-index: 0; }
.type-quadrant__grid::before { top: 0; bottom: 0; left: 50%; width: 1px; transform: translateX(-50%); }
.type-quadrant__grid::after { left: 0; right: 0; top: 50%; height: 1px; transform: translateY(-50%); }

.type-quadrant__axis { font-size: 10px; font-weight: 400; color: var(--text-muted); letter-spacing: 0.04em; line-height: 1.35; text-align: center; }
.type-quadrant__axis--top { grid-area: top; text-align: center; }
.type-quadrant__axis--bottom { grid-area: bottom; text-align: center; }
.type-quadrant__axis--left { grid-area: left; writing-mode: vertical-rl; justify-self: center; }
.type-quadrant__axis--right { grid-area: right; writing-mode: vertical-rl; justify-self: center; }

.type-quadrant__cell {
  --q-color: #c9c9c9;
  min-width: 0;
  border: 2px solid color-mix(in srgb, var(--q-color) 11%, #fff);
  border-radius: 14px;
  padding: 12px 14px 14px;
  background: color-mix(in srgb, var(--q-color) 1.5%, #fff);
  text-align: center;
  
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 10px;
  align-items: center;
  grid-template-areas:
    "name   name"
    "icon   traits"
    "chips  chips";
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.type-quadrant__cell--boken    { --q-color: #E08A00; }
.type-quadrant__cell--senryaku { --q-color: #E36A8C; }
.type-quadrant__cell--kyocho   { --q-color: #1F3FA0; }
.type-quadrant__cell--keikaku  { --q-color: #3FA6AC; }
.type-quadrant__cell.is-active {
  border-color: var(--q-color);
  background: color-mix(in srgb, var(--q-color) 10%, #fff);
  box-shadow: 0 6px 22px color-mix(in srgb, var(--q-color) 28%, transparent);
}
.type-quadrant__name { grid-area: name; font-size: 18px; font-weight: 400; color: color-mix(in srgb, var(--q-color) 22%, #cccccc); margin-bottom: 10px; transition: color 0.3s; }
.type-quadrant__cell.is-active .type-quadrant__name { color: var(--q-color); font-weight: 700; }
.type-quadrant__icon { grid-area: icon; width: 42px; height: 42px; color: color-mix(in srgb, var(--q-color) 16%, #fff); display: flex; align-items: center; justify-content: center; transition: color 0.3s; }
.type-quadrant__cell.is-active .type-quadrant__icon { color: var(--q-color); }
.type-quadrant__icon svg { width: 100%; height: 100%; }
.type-quadrant__chips { grid-area: chips; display: flex; gap: 4px; margin-top: 11px; }
.type-quadrant__chips span {
  flex: 1; min-width: 0; text-align: center;
  font-size: 10px; font-weight: 700;
  padding: 4px 2px; border-radius: 6px;
  background: color-mix(in srgb, var(--q-color) 6%, #fff);
  color: color-mix(in srgb, var(--q-color) 38%, #fff);
  transition: background 0.3s, color 0.3s;
}
.type-quadrant__cell.is-active .type-quadrant__chips span { background: var(--q-color); color: #fff; }

.type-quadrant__traits { grid-area: traits; min-width: 0; display: flex; flex-direction: column; gap: 3px; text-align: left; }
.type-quadrant__trait { font-size: 10px; font-weight: 600; line-height: 1.35; color: color-mix(in srgb, var(--q-color) 55%, #8a8a8a); }
.type-quadrant__trait-sign { display: inline-block; width: 1.25em; text-align: center; }
.type-quadrant__cell.is-active .type-quadrant__trait { color: var(--q-color); }
.report-preview__section-note { font-size: 11px; color: var(--text-muted); line-height: 1.6; margin: 0 0 14px; }
.report-preview__blur-inline { filter: blur(4px); user-select: none; display: inline-block; }
.report-preview__h { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; color: var(--secondary); margin: 0 0 12px; padding-left: 10px; border-left: 3px solid var(--septeni-blue); }
.report-preview__h svg { flex-shrink: 0; color: var(--septeni-blue); }
.report-preview__section { margin-bottom: 24px; }
.report-preview__section:last-of-type { margin-bottom: 0; }
.report-preview__cards-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 769px) {
  .report-preview__cards-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

.report-preview__factors-list { display: flex; flex-direction: column; gap: 10px; }
.factor-row { background: var(--bg); border-radius: 10px; padding: 12px 14px; width: 100%; max-width: 600px; margin-left: auto; margin-right: auto; }
.factor-row--primary { background: rgba(246,0,0,.06); }
.factor-row--top { background: rgba(0,80,170,.05); }
.factor-row__head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.factor-row__name { font-size: 14px; font-weight: 800; color: var(--text); min-width: 40px; flex-shrink: 0; }
.factor-row--primary .factor-row__name { color: var(--septeni-red); }
.factor-row--top .factor-row__name { color: var(--septeni-blue); }
.factor-row__bar { flex: 1; height: 6px; background: rgba(0,0,0,.06); border-radius: 3px; min-width: 60px; position: relative; }
.factor-row__bar-lock { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); color: var(--secondary); opacity: .55; pointer-events: none; display: flex; line-height: 1; }

.factor-row__bar-fill { width: 0; height: 100%; background: var(--text-muted); border-radius: 3px; transition: width .4s ease; }
.factor-row--primary .factor-row__bar-fill { background: var(--septeni-red); }
.factor-row--top .factor-row__bar-fill { background: var(--septeni-blue); }
.factor-row__score { font-size: 14px; font-weight: 800; color: var(--text); min-width: 38px; text-align: right; flex-shrink: 0; }
.factor-row__score-max { font-size: 0.7em; font-weight: 700; color: var(--text-muted); margin-left: 1px; }
.factor-row__score-shade { font-size: 0.72em; vertical-align: 0.1em; letter-spacing: 0.05em; }
.factor-row--locked .factor-row__score { filter: blur(5px); user-select: none; color: var(--text-muted); }
.factor-row__badge { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 999px; flex-shrink: 0; letter-spacing: .05em; }
.factor-row__badge--empty { visibility: hidden; }
.factor-row--primary .factor-row__badge { background: rgba(246,0,0,.10); color: var(--septeni-red); }
.factor-row--top .factor-row__badge { background: rgba(0,80,170,.10); color: var(--septeni-blue); }
.factor-row__meaning { font-size: 12px; color: var(--text-light); line-height: 1.6; margin: 0 0 6px; }
.factor-row__keywords { display: flex; flex-wrap: wrap; gap: 4px; }
.factor-row__keyword { font-size: 10px; padding: 2px 8px; background: #fff; border: 1px solid var(--border); border-radius: 999px; color: var(--text-muted); white-space: nowrap; }
.report-preview__pattern { padding: 16px 18px; background: var(--bg); border-radius: 8px; min-height: 80px; font-size: 12px; line-height: 1.7; color: var(--text-light); position: relative; }
.report-preview__pattern-lock { position: absolute; left: 50%; top: 65%; transform: translate(-50%, -50%); color: var(--secondary); opacity: .55; pointer-events: none; display: flex; }
.report-preview__card { background: var(--bg); border-radius: 10px; padding: 14px 16px; border-top: 3px solid #6b7280; }
.report-preview__card--up    { border-top-color: #0ea5e9; }
.report-preview__card--down  { border-top-color: #0ea5e9; }
.report-preview__card--quirk { border-top-color: #0ea5e9; }
.report-preview__card--wall  { border-top-color: #0ea5e9; }
.report-preview__card-title { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 800; color: #6b7280; margin-bottom: 6px; }
.report-preview__card-title svg { flex-shrink: 0; }
.report-preview__card--up    .report-preview__card-title { color: #0ea5e9; }
.report-preview__card--down  .report-preview__card-title { color: #0ea5e9; }
.report-preview__card--quirk .report-preview__card-title { color: #0ea5e9; }
.report-preview__card--wall  .report-preview__card-title { color: #0ea5e9; }
.report-preview__card-body { font-size: 11.5px; color: var(--text-light); line-height: 1.6; min-height: 32px; position: relative; }
.report-preview__card-lock { position: absolute; left: 50%; top: 62%; transform: translate(-50%, -50%); color: var(--secondary); pointer-events: none; opacity: .55; display: flex; }
.report-preview__card-body p { margin: 0; }
.report-preview__card-body p + p { margin-top: 4px; }
.report-preview__card-sub { margin-top: 10px; font-size: 11px; font-weight: 800; color: var(--secondary); letter-spacing: .05em; }
.report-preview__card-list { margin: 6px 0 0; padding-left: 0; }
.report-preview__card-list li { margin-bottom: 4px; padding-left: 14px; position: relative; }
.report-preview__card-list li::before { content: "・"; position: absolute; left: 0; top: 0; color: var(--septeni-blue); font-weight: 700; }
.report-preview__card--up    .report-preview__card-list li::before { color: #0ea5e9; }
.report-preview__card--down  .report-preview__card-list li::before { color: #0ea5e9; }
.report-preview__card--quirk .report-preview__card-list li::before { color: #0ea5e9; }
.report-preview__card--wall  .report-preview__card-list li::before { color: #0ea5e9; }
.report-preview__card-list li:last-child { margin-bottom: 0; }
.report-preview__pattern p { margin: 0 0 8px; }
.report-preview__pattern p:last-child { margin-bottom: 0; }
.is-blur-block { filter: blur(5px); user-select: none; }
.is-blur-inline-text { filter: blur(4px); user-select: none; overflow-wrap: anywhere; word-break: break-all; }
.report-preview__locked { margin-top: 24px; padding: 14px 20px; background: linear-gradient(135deg, rgba(0,80,170,.06), rgba(246,0,0,.04)); border: 1px dashed rgba(0,80,170,.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 13px; font-weight: 700; color: var(--secondary); }
.report-preview__locked svg { color: var(--septeni-blue); }
@media (max-width: 768px) {
  .report-preview { padding: 20px; }
}
@media (max-width: 768px) {
  
  .quiz-container:has(.quiz-result.active) .quiz-card { background: transparent; box-shadow: none; padding: 0; }
  .report-preview { padding: 18px; border: none; box-shadow: 0 8px 40px rgba(0,0,0,.1); }
  .report-preview__head { padding: 18px 0 22px; }
  .report-preview__head h3 { font-size: 30px; }
  .report-preview__hero-desc { padding: 14px 16px; }
  .desc-section__text { font-size: 13px; }
  
  .type-quadrant { column-gap: 4px; row-gap: 5px; }
  .type-quadrant__axis { font-size: 9px; }
  .type-quadrant__grid { gap: 10px; }
  
  .type-quadrant__cell {
    padding: 10px 10px 12px;
    border-radius: 12px;
    column-gap: 8px;
    grid-template-areas:
      "icon   name"
      "traits traits"
      "chips  chips";
  }
  .type-quadrant__name { font-size: 16px; margin-bottom: 0; text-align: left; }
  .type-quadrant__icon { width: 30px; height: 30px; }
  .type-quadrant__traits { margin-top: 8px; }
  .type-quadrant__chips { gap: 3px; margin-top: 8px; }
  .type-quadrant__chips span { font-size: 9px; padding: 4px 1px; border-radius: 5px; }
  .type-quadrant__trait { font-size: 9px; letter-spacing: -0.01em; }
  .type-quadrant__trait-sign { width: 1.05em; }
}

#resultReport { margin-bottom: 24px; }

@media (max-width: 768px) {
  
  .factor-row { padding: 12px; }
  .factor-row__head { gap: 8px; }
  .factor-row__name { min-width: 36px; }
  .factor-row__bar { min-width: 32px; }
  .factor-row__score { min-width: 34px; }
  .factor-row__badge { padding: 2px 6px; }

  .report-preview__cards-grid > .report-preview__card { min-width: 0; }
  .report-preview__card-body { overflow-wrap: anywhere; }
}

.quiz-hero { margin-top: 64px; padding: 84px 0 148px; background: linear-gradient(135deg, var(--septeni-blue), var(--septeni-red)); color: #fff; text-align: center; }
.quiz-hero h1 { font-size: 34px; font-weight: 900; line-height: 1.5; letter-spacing: 0.02em; margin-bottom: 32px; }
.quiz-hero__h1-sub { font-size: 24px; line-height: 1.4; }
.quiz-hero__h1-main { font-size: 48px; display: block; margin-top: 6px; }
.quiz-hero__sub-desc { font-size: 13px; line-height: 1.75; opacity: .78; margin: 0 auto; max-width: 540px; white-space: nowrap; }

br.sp-only { display: none; }
@media (max-width: 768px) {
  
  .quiz-hero { padding: 64px 20px 112px; }
  .quiz-hero h1 { font-size: 22px; line-height: 1.4; margin-bottom: 24px; }
  .quiz-hero__h1-sub { font-size: 16px; line-height: 1.55; }
  .quiz-hero__h1-main { font-size: 24px; margin-top: 8px; line-height: 1.25; }
  .quiz-hero__sub-desc { font-size: 12px; white-space: normal; }
  
  .quiz-option { font-size: 13px; }
  br.sp-only { display: inline; }
  br.pc-only { display: none; }
}

@media (min-width: 375px) and (max-width: 768px) {
  .quiz-option { white-space: nowrap; }
}

.quiz-container { max-width: 640px; margin: -56px auto 0; padding: 0 24px 60px; position: relative; z-index: 1; transition: max-width .3s ease; }

.quiz-container:has(.quiz-result.active) { max-width: 1080px; padding-bottom: 0; }
.quiz-card { background: #fff; border-radius: 16px; box-shadow: 0 8px 40px rgba(0,0,0,.1); padding: 40px; }
.quiz-progress { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.quiz-progress__bar { flex: 1; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }

.quiz-progress__fill { width: 0; height: 100%; background: linear-gradient(90deg, var(--septeni-blue), var(--septeni-red)); border-radius: 2px; transition: width .4s ease; }
.quiz-progress__text { font-size: 12px; font-weight: 700; color: var(--text-muted); white-space: nowrap; }
.quiz-question { font-size: 18px; font-weight: 700; color: var(--text); line-height: 1.6; margin-bottom: 24px; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-option { padding: 16px 20px; border: 2px solid var(--border); border-radius: 12px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all .2s ease; background: #fff; text-align: left; color: var(--text); }
.quiz-option:hover { border-color: var(--septeni-blue); background: rgba(0,80,170,.03); }
.quiz-option.selected { border-color: var(--septeni-blue); background: rgba(0,80,170,.06); color: var(--septeni-blue); font-weight: 700; }

.quiz-result { display: none; text-align: center; }
.quiz-result.active { display: block; }

.result-loading { padding: 64px 24px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.result-loading[hidden] { display: none; }
.result-loading__spinner { width: 44px; height: 44px; border: 4px solid var(--border); border-top-color: var(--septeni-blue); border-radius: 50%; animation: result-spin 0.9s linear infinite; }
.result-loading__text { font-size: 14px; color: var(--text-light); font-weight: 600; }
@keyframes result-spin { to { transform: rotate(360deg); } }

.result-error { padding: 56px 24px; display: flex; flex-direction: column; align-items: center; gap: 12px; background: var(--bg); border-radius: 12px; max-width: 480px; margin: 24px auto; }
.result-error[hidden] { display: none; }
.result-error__title { font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.result-error__text { font-size: 13px; color: var(--text-light); line-height: 1.7; margin-bottom: 12px; }
.result-error__retry { padding: 12px 28px; background: var(--septeni-blue); color: #fff; font-size: 14px; font-weight: 700; border: none; border-radius: 50px; cursor: pointer; transition: all .2s; }
.result-error__retry:hover { background: var(--primary-dark); transform: translateY(-1px); }

.quiz-result:not(.is-report) .result-others { display: none; }
.result-type-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--septeni-red); text-transform: uppercase; margin-bottom: 8px; }
.result-type-name { font-size: 28px; font-weight: 900; color: #fff; margin-bottom: 4px; }
.result-type-sub { font-size: 14px; color: rgba(255,255,255,.85); margin-bottom: 24px; }

.result-others { margin: 32px auto 0; padding: 28px; background: #f0f4fa; border: 1px solid var(--border); border-radius: 16px; box-shadow: 0 4px 16px rgba(0,0,0,.06); max-width: 1080px; }
.result-others__title { font-size: 18px; font-weight: 800; margin-bottom: 6px; display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(90deg, var(--septeni-blue), #AC1833); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.result-others__title::before { display: none; }
.result-others__note { font-size: 11px; color: var(--text-muted); margin-bottom: 18px; line-height: 1.6; text-align: left; }
@media (max-width: 768px) {
  .result-others__title { font-size: 14px; }
}
.result-types60 { display: flex; flex-wrap: wrap; gap: 6px; }
.result-type-chip { display: inline-block; padding: 6px 12px; background: white; border: 1px solid var(--border); border-radius: 50px; font-size: 12px; font-weight: 600; color: var(--text); }

.result-types60-wrap { position: relative; overflow: hidden; transition: max-height .35s ease; }
.result-types60-wrap.is-collapsed { max-height: 96px; }
.result-types60-fade { position: absolute; left: 0; right: 0; bottom: 0; height: 48px; background: linear-gradient(to bottom, rgba(240,244,250,0), #f0f4fa 90%); pointer-events: none; opacity: 0; transition: opacity .25s; }
.result-types60-wrap.is-collapsed .result-types60-fade { opacity: 1; }
.result-types60-toggle { display: flex; align-items: center; gap: 6px; margin: 12px auto 0; width: fit-content; padding: 8px 18px; background: rgba(0,80,170,.08); border: 1px solid rgba(0,80,170,.2); border-radius: 50px; font-size: 12px; font-weight: 700; color: var(--septeni-blue); cursor: pointer; transition: all .2s; }
.result-types60-toggle:hover { background: rgba(0,80,170,.14); border-color: var(--septeni-blue); }
.result-types60-toggle__icon { transition: transform .3s ease; }
.result-types60-toggle[aria-expanded="true"] .result-types60-toggle__icon { transform: rotate(180deg); }
.result-desc { font-size: 14px; color: var(--text-light); line-height: 1.8; margin-bottom: 32px; padding: 20px; background: var(--bg); border-radius: 12px; text-align: left; }

.result-jobs { margin-bottom: 32px; text-align: left; }
.result-jobs h3 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.result-jobs h3::before { content: ""; display: block; width: 3px; height: 16px; background: var(--septeni-red); border-radius: 2px; }
.job-card { display: flex; align-items: center; justify-content: space-between; padding: 16px; border: 1px solid var(--border); border-radius: 10px; margin-bottom: 8px; transition: all .2s; }
.job-card:hover { border-color: var(--septeni-blue); background: rgba(0,80,170,.02); }
.job-card__info h4 { font-size: 14px; font-weight: 700; color: var(--text); }
.job-card__info p { font-size: 12px; color: var(--text-muted); }
.job-card__match { font-size: 11px; font-weight: 800; color: var(--septeni-red); background: rgba(246,0,0,.06); padding: 4px 10px; border-radius: 50px; white-space: nowrap; }

.result-cta-group { display: flex; flex-direction: column; gap: 12px; }
.result-cta { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 32px; font-size: 14px; font-weight: 700; border-radius: 50px; transition: all .2s; }
.result-cta--primary { background: var(--septeni-red); color: #fff; }
.result-cta--primary:hover { background: #D50000; transform: translateY(-1px); }
.result-cta--secondary { background: var(--septeni-blue); color: #fff; }
.result-cta--secondary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.result-cta--outline { border: 2px solid var(--border); color: var(--text-light); }
.result-cta--outline:hover { border-color: var(--text); color: var(--text); }

.note-banner { margin-top: 40px; padding: 20px 24px; background: var(--bg); border-radius: 12px; display: flex; align-items: center; gap: 16px; }
.note-banner__text { font-size: 13px; color: var(--text-light); line-height: 1.6; }
.note-banner__text a { color: var(--septeni-blue); font-weight: 600; }

.more-insight { padding: 40px 0 80px; background: var(--bg); }
.more-insight__head { text-align: center; max-width: 805px; margin: 0 auto 32px; }
.more-insight__eyebrow { font-size: 12px; font-weight: 800; letter-spacing: 3px; color: var(--septeni-red); margin-bottom: 8px; }
.more-insight__scroll-indicator { display: flex; flex-direction: column; align-items: center; gap: 4px; margin-bottom: 40px; }
.more-insight__chevron { display: block; width: 14px; height: 14px; border-right: 2.5px solid var(--septeni-red); border-bottom: 2.5px solid var(--septeni-red); transform: rotate(45deg); opacity: 0.15; animation: chevronCascade 1.6s ease-in-out infinite; }
.more-insight__chevron:nth-child(1) { animation-delay: 0s; }
.more-insight__chevron:nth-child(2) { animation-delay: 0.25s; }
.more-insight__chevron:nth-child(3) { animation-delay: 0.5s; }
@keyframes chevronCascade {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 1; }
}
.more-insight__title { font-size: 32px; font-weight: 800; margin-bottom: 16px; color: var(--secondary); }
.more-insight__lead { font-size: 15px; line-height: 1.9; color: var(--text-light); }
.more-insight__cta-wrap { margin-top: 48px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; text-align: center; }
.more-insight__cta { display: inline-flex; flex-direction: column; align-items: center; gap: 4px; padding: 20px 36px; color: #fff; font-size: 15px; font-weight: 800; border-radius: 50px; transition: all .2s; min-width: 280px; }
.more-insight__cta--blue { background: linear-gradient(135deg, var(--septeni-blue), #4d8fe0); box-shadow: 0 8px 24px rgba(0,80,170,.25); }
.more-insight__cta--blue:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,80,170,.35); }
.more-insight__cta--red { background: linear-gradient(135deg, var(--septeni-red), #ff5252); box-shadow: 0 8px 24px rgba(246,0,0,.25); }
.more-insight__cta--red:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(246,0,0,.35); }
.more-insight__cta-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .1em; opacity: .85; }
.more-insight__note { margin: 20px 0 0; text-align: center; font-size: 12px; color: var(--text-muted); line-height: 1.6; }
.more-insight__note-link { color: var(--text-muted); text-decoration: underline; }
.more-insight__note-link:hover { color: var(--text-light); }

.hakase-features { max-width: 1080px; margin: 0 auto; }
.hakase-features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hakase-features__card { background: #fff; border-radius: 16px; padding: 28px 24px; box-shadow: 0 4px 16px rgba(0,0,0,.04); border: 1px solid var(--border); display: flex; flex-direction: column; }
.hakase-features__image { margin-bottom: 20px; display: flex; align-items: center; justify-content: center; min-height: 160px; }
.hakase-features__image img { max-width: 100%; height: auto; max-height: 180px; object-fit: contain; }
.hakase-features__card-title { font-size: 18px; font-weight: 800; color: var(--secondary); text-align: center; margin-bottom: 12px; }
.hakase-features__card-text { font-size: 13px; line-height: 1.8; color: var(--text-light); }
@media (max-width: 768px) {
  .more-insight__title { font-size: 24px; }
  
  .more-insight__cta { font-size: 13px; }
  
  .hakase-features__grid {
    display: flex;
    grid-template-columns: none;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    
    scroll-padding-left: 20px;
    gap: 12px;
    margin: 0 -20px;
    padding: 0 20px 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hakase-features__grid::-webkit-scrollbar { display: none; }
  .hakase-features__card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }
}
