.toeic-part2 {
  --t2-ink: #10253f;
  --t2-muted: #52677f;
  --t2-line: #dce6f0;
  --t2-blue: #1768e5;
  --t2-blue-dark: #0d4fae;
  --t2-cyan: #00a6a6;
  --t2-cyan-soft: #e9fbf8;
  --t2-coral: #ee6a53;
  --t2-coral-soft: #fff2ee;
  --t2-gold: #d89312;
  --t2-gold-soft: #fff8e8;
  --t2-green: #16825f;
  --t2-red: #c23a43;
  --t2-shadow: 0 24px 60px rgba(22, 51, 82, 0.12);
  --t2-shadow-soft: 0 12px 34px rgba(22, 51, 82, 0.08);
  color: var(--t2-ink);
  background:
    radial-gradient(circle at 6% 5%, rgba(44, 137, 255, 0.09), transparent 25rem),
    #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", sans-serif;
  line-height: 1.78;
  overflow: clip;
}

.toeic-part2 *,
.toeic-part2 *::before,
.toeic-part2 *::after {
  box-sizing: border-box;
}

.toeic-part2 button,
.toeic-part2 a {
  -webkit-tap-highlight-color: transparent;
}

.t2-shell {
  width: min(calc(100% - 40px), 1180px);
  margin-inline: auto;
}

.t2-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  padding: 1.05rem 0 0.9rem;
  color: #6b7d91;
  font-size: 0.82rem;
}

.t2-crumbs a {
  color: #315878;
  text-decoration: none;
}

.t2-crumbs a:hover {
  color: var(--t2-blue);
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.t2-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: center;
  min-height: 430px;
  padding: clamp(2.3rem, 6vw, 4.4rem);
  border: 1px solid #cfe0f5;
  border-radius: 32px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.98) 0 54%, rgba(232, 246, 255, 0.94) 100%),
    #f4f9ff;
  box-shadow: var(--t2-shadow);
  isolation: isolate;
}

.t2-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, transparent 0 49.8%, rgba(23, 104, 229, 0.05) 50%, transparent 50.2%) 0 0 / 72px 72px,
    linear-gradient(transparent 0 49.8%, rgba(23, 104, 229, 0.05) 50%, transparent 50.2%) 0 0 / 72px 72px;
  mask-image: linear-gradient(90deg, transparent 35%, #000 100%);
  content: "";
}

.t2-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.t2-eyebrow,
.t2-kicker,
.t2-label {
  margin: 0 0 0.55rem;
  color: var(--t2-blue-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.t2-hero h1 {
  max-width: 720px;
  margin: 0;
  color: #0b345e;
  font-size: clamp(2.15rem, 4.2vw, 3.65rem);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.14;
}

.t2-hero__lead {
  max-width: 680px;
  margin: 1.35rem 0 0;
  color: #435d76;
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  line-height: 1.95;
}

.t2-hero__actions,
.t2-result__actions,
.t2-feedback__actions,
.t2-dashboard__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.t2-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border: 1px solid #bed1e6;
  border-radius: 14px;
  background: #fff;
  color: #174d7e;
  font: inherit;
  font-size: 0.91rem;
  font-weight: 750;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(26, 73, 116, 0.08);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.t2-action:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: #80aae0;
  color: #0d4fae;
  box-shadow: 0 12px 26px rgba(23, 104, 229, 0.15);
}

.t2-action:focus-visible,
.toeic-part2 button:focus-visible,
.toeic-part2 a:focus-visible {
  outline: 3px solid rgba(23, 104, 229, 0.3);
  outline-offset: 3px;
}

.t2-action--primary {
  border-color: var(--t2-blue);
  background: linear-gradient(135deg, #1768e5, #0e57c5);
  color: #fff;
  box-shadow: 0 12px 24px rgba(23, 104, 229, 0.24);
}

.t2-action--primary:hover:not(:disabled) {
  color: #fff;
  background: linear-gradient(135deg, #0f5ed4, #0a479f);
}

.t2-action--accent {
  border-color: #82d3c5;
  background: #effbf8;
  color: #0b6b58;
}

.t2-action--quiet {
  background: rgba(255, 255, 255, 0.76);
  color: #315878;
}

.t2-action:disabled {
  border-color: #e0e6ec;
  background: #f3f5f7;
  color: #8794a1;
  box-shadow: none;
  cursor: not-allowed;
}

.t2-hero__visual {
  position: relative;
  width: min(100%, 330px);
  aspect-ratio: 1;
  justify-self: end;
}

.t2-listen-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 178px;
  height: 178px;
  place-items: center;
  border: 1px solid rgba(23, 104, 229, 0.25);
  border-radius: 48px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 55px rgba(17, 71, 127, 0.18);
  transform: translate(-50%, -50%) rotate(-4deg);
}

.t2-listen-mark__ear {
  position: absolute;
  left: 34px;
  color: #1268d3;
  font-family: Georgia, serif;
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 1;
  transform: rotate(10deg);
}

.t2-wave {
  position: absolute;
  right: 31px;
  display: flex;
  height: 72px;
  align-items: center;
  gap: 6px;
}

.t2-wave i {
  display: block;
  width: 7px;
  border-radius: 999px;
  background: linear-gradient(#13b5a6, #1670df);
}

.t2-wave i:nth-child(1),
.t2-wave i:nth-child(5) { height: 24px; }
.t2-wave i:nth-child(2),
.t2-wave i:nth-child(4) { height: 48px; }
.t2-wave i:nth-child(3) { height: 70px; }

.t2-orbit {
  position: absolute;
  inset: 8%;
  border: 1px dashed rgba(23, 104, 229, 0.25);
  border-radius: 50%;
}

.t2-orbit--two {
  inset: 19%;
  border-color: rgba(0, 166, 166, 0.28);
  transform: rotate(35deg);
}

.t2-visual-chip {
  position: absolute;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 17px;
  background: #fff;
  color: var(--t2-blue-dark);
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(22, 64, 106, 0.15);
}

.t2-visual-chip--a { top: 7%; left: 17%; transform: rotate(-8deg); }
.t2-visual-chip--b { top: 26%; right: 0; color: var(--t2-coral); transform: rotate(7deg); }
.t2-visual-chip--c { bottom: 5%; left: 24%; color: var(--t2-cyan); transform: rotate(5deg); }

.t2-facts {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: -32px 34px 0;
  border: 1px solid #d8e4f0;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--t2-shadow-soft);
}

.t2-fact {
  position: relative;
  display: grid;
  min-height: 106px;
  align-content: center;
  justify-items: center;
  padding: 1rem;
  text-align: center;
}

.t2-fact + .t2-fact::before {
  position: absolute;
  top: 22%;
  bottom: 22%;
  left: 0;
  width: 1px;
  background: #e1e9f1;
  content: "";
}

.t2-fact strong {
  color: #123f6b;
  font-size: 1.18rem;
  line-height: 1.3;
}

.t2-fact span {
  color: #6c7d8d;
  font-size: 0.79rem;
}

.t2-section,
.t2-practice {
  padding: clamp(4.2rem, 8vw, 7rem) 0;
}

.t2-section--soft {
  border-block: 1px solid #e2ebf3;
  background: #f6f9fc;
}

.t2-section__head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.t2-section__head h2,
.t2-boundary h2,
.t2-next h2 {
  margin: 0;
  color: #0d3155;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.32;
}

.t2-section__head > p:last-child,
.t2-boundary > div > p:last-child,
.t2-next > div > p:last-child {
  margin: 0.9rem 0 0;
  color: var(--t2-muted);
  line-height: 1.9;
}

.t2-flow,
.t2-type-grid,
.t2-strategy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.t2-flow article,
.t2-type-grid article,
.t2-strategy > div {
  position: relative;
  min-width: 0;
  padding: 1.55rem;
  border: 1px solid var(--t2-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--t2-shadow-soft);
}

.t2-flow article > span,
.t2-type-grid article > span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: #eaf3ff;
  color: var(--t2-blue-dark);
  font-size: 0.75rem;
  font-weight: 850;
}

.t2-flow h3,
.t2-type-grid h3,
.t2-strategy h3 {
  margin: 0.95rem 0 0.45rem;
  color: #173e63;
  font-size: 1.03rem;
  font-weight: 760;
  line-height: 1.45;
}

.t2-flow p,
.t2-type-grid p,
.t2-strategy p {
  margin: 0;
  color: #5a6e82;
  font-size: 0.89rem;
  line-height: 1.78;
}

.t2-practice {
  position: relative;
  background:
    radial-gradient(circle at 80% 15%, rgba(32, 190, 176, 0.16), transparent 26rem),
    linear-gradient(145deg, #0d3158, #102946 58%, #0d3857);
}

.t2-practice::before {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: radial-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 26px 26px;
  content: "";
  pointer-events: none;
}

.t2-practice > .t2-shell {
  position: relative;
}

.t2-section__head--light h2,
.t2-section__head--light .t2-kicker {
  color: #fff;
}

.t2-section__head--light > p:last-child {
  color: #c6d8e8;
}

.t2-app {
  min-height: 420px;
  padding: clamp(1.1rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 28px;
  background: #f9fbfd;
  box-shadow: 0 34px 80px rgba(0, 17, 38, 0.32);
}

.t2-app__notice {
  min-height: 1.5rem;
  margin: 0 0 0.8rem;
  color: #5d6f81;
  font-size: 0.82rem;
  text-align: center;
}

.t2-dashboard__progress {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.45rem;
  padding: 1.5rem;
  border: 1px solid #dbe7f1;
  border-radius: 22px;
  background: #fff;
}

.t2-dashboard__progress h3 {
  margin: 0;
  color: #143e65;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
}

.t2-dashboard__progress p:last-child {
  margin: 0.35rem 0 0;
  color: #637487;
  font-size: 0.89rem;
}

.t2-progress-ring {
  --progress: 0;
  position: relative;
  display: grid;
  width: 114px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--t2-cyan) calc(var(--progress) * 1%), #e5edf3 0);
}

.t2-progress-ring::before {
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.t2-progress-ring > span {
  position: relative;
  display: grid;
  justify-items: center;
  line-height: 1.1;
}

.t2-progress-ring strong {
  color: #0f4b70;
  font-size: 1.75rem;
}

.t2-progress-ring small {
  margin-top: 0.3rem;
  color: #6a7c8c;
  font-size: 0.68rem;
}

.t2-dashboard__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.t2-dashboard__stats > div {
  display: grid;
  min-height: 88px;
  align-content: center;
  padding: 0.9rem 1rem;
  border: 1px solid #dfe8f0;
  border-radius: 16px;
  background: #fff;
}

.t2-dashboard__stats span {
  color: #6b7b8a;
  font-size: 0.75rem;
}

.t2-dashboard__stats strong {
  color: #143e65;
  font-size: 1.1rem;
}

.t2-dashboard__stats b {
  font: inherit;
}

.t2-dashboard__actions {
  justify-content: center;
}

.t2-category-launch {
  margin-top: 1.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid #dbe4ec;
}

.t2-category-launch__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.t2-category-launch__head h3 {
  margin: 0;
  color: #173e63;
  font-size: 1rem;
}

.t2-category-launch__head p {
  margin: 0;
  color: #6b7c8c;
  font-size: 0.8rem;
}

.t2-category-launch__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.t2-category-button {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  min-height: 64px;
  padding: 0.7rem 0.85rem;
  border: 1px solid #d7e2eb;
  border-radius: 15px;
  background: #fff;
  color: #244969;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.t2-category-button:hover {
  transform: translateY(-1px);
  border-color: #83b2df;
  box-shadow: 0 9px 20px rgba(22, 71, 112, 0.1);
}

.t2-category-button__mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  background: #eaf3ff;
  color: #1768e5;
  font-size: 0.72rem;
  font-weight: 850;
}

.t2-category-button strong,
.t2-category-button small {
  display: block;
}

.t2-category-button strong {
  font-size: 0.82rem;
}

.t2-category-button small {
  color: #788897;
  font-size: 0.68rem;
}

.t2-category-button__rate {
  color: #567085;
  font-size: 0.74rem;
  font-weight: 750;
}

.t2-reset {
  display: block;
  margin: 1.3rem auto 0;
  padding: 0.45rem;
  border: 0;
  background: transparent;
  color: #758594;
  font: inherit;
  font-size: 0.76rem;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
}

.t2-player__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.t2-player__top p,
.t2-player__top strong {
  margin: 0;
}

.t2-player__top strong {
  color: #173e63;
  font-size: 1rem;
}

.t2-player__meter {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #dfe8ef;
}

.t2-player__meter span {
  display: block;
  width: 10%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #13a99b, #1768e5);
  transition: width 0.25s ease;
}

.t2-close {
  padding: 0.55rem 0.75rem;
  border: 1px solid #d5e0e9;
  border-radius: 11px;
  background: #fff;
  color: #617385;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
}

.t2-question-card {
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid #dbe6ef;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--t2-shadow-soft);
}

.t2-question-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.t2-type-badge,
.t2-level {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 780;
}

.t2-type-badge {
  background: #eaf4ff;
  color: #0d5ab7;
}

.t2-level {
  background: #f2f5f8;
  color: #647687;
}

.t2-audio-stage {
  display: grid;
  justify-items: center;
  padding: clamp(1.4rem, 4vw, 2.4rem) 0 1.5rem;
  text-align: center;
}

.t2-audio-stage__icon {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.6rem;
}

.t2-audio-stage__icon span {
  display: block;
  width: 7px;
  border-radius: 999px;
  background: linear-gradient(#10b3a4, #196add);
}

.t2-audio-stage__icon span:nth-child(1),
.t2-audio-stage__icon span:nth-child(4) { height: 17px; }
.t2-audio-stage__icon span:nth-child(2) { height: 31px; }
.t2-audio-stage__icon span:nth-child(3) { height: 42px; }

.t2-audio-stage__prompt {
  margin: 0 0 0.9rem;
  color: #50677c;
  font-size: 0.84rem;
  font-weight: 680;
}

.t2-listen {
  display: inline-flex;
  min-width: 210px;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.85rem 1.4rem;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #1768e5, #0b55be);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(23, 104, 229, 0.25);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.t2-listen:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(23, 104, 229, 0.31);
}

.t2-listen.is-playing {
  background: linear-gradient(135deg, #0e8d83, #0d6f68);
}

.t2-listen__symbol {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.17);
  font-size: 0.73rem;
}

.t2-speed {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.9rem;
}

.t2-speed span {
  margin-right: 0.15rem;
  color: #7a8996;
  font-size: 0.72rem;
}

.t2-speed button {
  min-width: 48px;
  min-height: 32px;
  border: 1px solid #d6e0e8;
  border-radius: 10px;
  background: #fff;
  color: #617587;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 750;
  cursor: pointer;
}

.t2-speed button[aria-pressed="true"] {
  border-color: #68a0df;
  background: #edf5ff;
  color: #0d5ab7;
}

.t2-audio-status {
  min-height: 1.35rem;
  margin: 0.75rem 0 0;
  color: #778797;
  font-size: 0.76rem;
}

.t2-answer-area {
  padding-top: 1.35rem;
  border-top: 1px solid #e5ecf2;
}

.t2-answer-area__guide {
  margin: 0 0 0.8rem;
  color: #405b73;
  font-size: 0.86rem;
  font-weight: 750;
  text-align: center;
}

.t2-choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  max-width: 650px;
  margin-inline: auto;
}

.t2-choices button {
  position: relative;
  display: grid;
  min-height: 74px;
  place-items: center;
  border: 1px solid #cbd9e6;
  border-radius: 18px;
  background: #fff;
  color: #164d7a;
  font: inherit;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.t2-choices button span {
  font-size: 1.28rem;
  font-weight: 850;
}

.t2-choices button small {
  position: absolute;
  top: 8px;
  right: 10px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 7px;
  background: #f0f4f8;
  color: #82909d;
  font-size: 0.63rem;
}

.t2-choices button:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: #6ea4dc;
  box-shadow: 0 10px 20px rgba(24, 78, 122, 0.12);
}

.t2-choices button:disabled {
  background: #f4f6f8;
  color: #9aa7b1;
  cursor: not-allowed;
}

.t2-choices button.is-correct {
  border-color: #4eb58c;
  background: #eaf9f2;
  color: #0b6f4e;
}

.t2-choices button.is-wrong {
  border-color: #e78d91;
  background: #fff0f0;
  color: #a12832;
}

.t2-text-mode {
  display: block;
  margin: 1rem auto 0;
  padding: 0.45rem;
  border: 0;
  background: transparent;
  color: #5b7185;
  font: inherit;
  font-size: 0.74rem;
  text-decoration: underline;
  text-underline-offset: 0.22em;
  cursor: pointer;
}

.t2-text-question {
  max-width: 720px;
  margin: 0.8rem auto 0;
  padding: 1rem;
  border: 1px solid #d9e4ec;
  border-radius: 14px;
  background: #f7fafc;
}

.t2-text-question p {
  margin: 0;
  color: #244766;
  font-size: 0.87rem;
}

.t2-text-question ol {
  margin: 0.65rem 0 0;
  padding-left: 1.5rem;
  color: #4e6478;
  font-size: 0.83rem;
}

.t2-feedback {
  margin-top: 1rem;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border: 1px solid #dbe6ef;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--t2-shadow-soft);
}

.t2-feedback__result {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #e4ebf1;
}

.t2-feedback__result > span {
  display: grid;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 16px;
  background: #e5f8ef;
  color: var(--t2-green);
  font-size: 1.45rem;
  font-weight: 900;
}

.t2-feedback.is-wrong .t2-feedback__result > span {
  background: #fff0f0;
  color: var(--t2-red);
}

.t2-feedback__result p,
.t2-feedback__result h3 {
  margin: 0;
}

.t2-feedback__result p {
  color: var(--t2-green);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.t2-feedback.is-wrong .t2-feedback__result p {
  color: var(--t2-red);
}

.t2-feedback__result h3 {
  color: #173e63;
  font-size: 1.1rem;
}

.t2-transcript,
.t2-explanation {
  margin-top: 1.1rem;
}

.t2-transcript__en {
  margin: 0;
  color: #143d62;
  font-size: 1.05rem;
  font-weight: 760;
  line-height: 1.6;
}

.t2-transcript__ja {
  margin: 0.25rem 0 0;
  color: #647789;
  font-size: 0.82rem;
}

.t2-transcript__choices {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.t2-transcript-choice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid #e0e8ef;
  border-radius: 13px;
  background: #fafcfd;
}

.t2-transcript-choice.is-correct {
  border-color: #8bd0b4;
  background: #effaf5;
}

.t2-transcript-choice.is-selected:not(.is-correct) {
  border-color: #eeacaf;
  background: #fff5f5;
}

.t2-transcript-choice__letter {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  background: #eaf1f7;
  color: #315777;
  font-size: 0.75rem;
  font-weight: 850;
}

.t2-transcript-choice p {
  margin: 0;
  color: #244967;
  font-size: 0.87rem;
  line-height: 1.55;
}

.t2-transcript-choice small {
  display: block;
  color: #687a8a;
  font-size: 0.75rem;
}

.t2-explanation {
  padding: 1rem;
  border-left: 4px solid var(--t2-gold);
  border-radius: 0 14px 14px 0;
  background: var(--t2-gold-soft);
}

.t2-explanation p:last-child {
  margin: 0;
  color: #5b4a25;
  font-size: 0.86rem;
  line-height: 1.75;
}

.t2-feedback__actions {
  justify-content: flex-end;
}

.t2-result__hero {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid #cfe2ee;
  border-radius: 22px;
  background: linear-gradient(135deg, #edf9f7, #eef5ff);
}

.t2-score {
  display: flex;
  width: 126px;
  height: 126px;
  align-items: baseline;
  justify-content: center;
  padding-top: 1.9rem;
  border-radius: 50%;
  background: #fff;
  color: #145576;
  box-shadow: 0 12px 30px rgba(26, 80, 111, 0.12);
}

.t2-score strong {
  font-size: 2.8rem;
  line-height: 1;
}

.t2-score span {
  color: #6a7d8d;
  font-size: 0.9rem;
}

.t2-score b {
  font: inherit;
}

.t2-result__hero h3 {
  margin: 0;
  color: #113c61;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
}

.t2-result__hero p:last-child {
  margin: 0.45rem 0 0;
  color: #5e7284;
}

.t2-result__categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 1rem;
}

.t2-result-category {
  padding: 0.9rem;
  border: 1px solid #dce6ee;
  border-radius: 14px;
  background: #fff;
}

.t2-result-category span,
.t2-result-category strong {
  display: block;
}

.t2-result-category span {
  color: #637687;
  font-size: 0.74rem;
}

.t2-result-category strong {
  color: #19466c;
  font-size: 1.02rem;
}

.t2-result__weakness {
  margin-top: 1rem;
  padding: 1.1rem;
  border: 1px solid #f0d698;
  border-radius: 16px;
  background: #fff9ea;
  color: #5d4a1f;
}

.t2-result__weakness h4 {
  margin: 0 0 0.3rem;
  color: #604916;
  font-size: 0.95rem;
}

.t2-result__weakness p {
  margin: 0;
  font-size: 0.83rem;
}

.t2-type-grid {
  grid-template-columns: repeat(3, 1fr);
}

.t2-type-grid article[data-type="yesno"],
.t2-type-grid article[data-type="offer"] {
  background: #f7fbff;
}

.t2-type-grid article[data-type="request"],
.t2-type-grid article[data-type="statement"] {
  background: #f6fcfa;
}

.t2-type-grid article[data-type="indirect"] {
  background: #fffaf0;
}

.t2-strategy > div {
  border-top: 4px solid #75a9e3;
}

.t2-strategy > div:nth-child(2) { border-top-color: #eb7d69; }
.t2-strategy > div:nth-child(3) { border-top-color: #35ae91; }

.t2-boundary {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid #d7e3ed;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--t2-shadow-soft);
}

.t2-boundary__notes {
  display: grid;
  gap: 0.7rem;
}

.t2-boundary__notes p {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: #f4f8fb;
  color: #4d657a;
  font-size: 0.8rem;
}

.t2-boundary__notes strong,
.t2-boundary__notes span {
  display: block;
}

.t2-boundary__notes strong {
  color: #1b4569;
  font-size: 0.76rem;
}

.t2-boundary__notes a {
  color: #0d5ab7;
  font-weight: 750;
}

.t2-next {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  margin: 0 0 clamp(4rem, 8vw, 7rem);
  padding: clamp(1.6rem, 4vw, 2.7rem);
  border-radius: 25px;
  background: linear-gradient(130deg, #0e3c65, #0c6074);
  color: #fff;
  box-shadow: var(--t2-shadow);
}

.t2-next h2,
.t2-next .t2-kicker {
  color: #fff;
}

.t2-next > div > p:last-child {
  color: #d2e4ec;
}

.t2-next__links {
  display: grid;
  gap: 0.65rem;
}

.t2-next__links a {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 720;
  text-decoration: none;
}

.t2-next__links a::after {
  content: "→";
}

.t2-next__links a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.t2-noscript {
  padding: 1rem;
  border: 1px solid #e8ca83;
  border-radius: 12px;
  background: #fff9e9;
  color: #674f1e;
}

[hidden] {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .toeic-part2 *,
  .toeic-part2 *::before,
  .toeic-part2 *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 860px) {
  .t2-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .t2-hero__copy {
    max-width: 100%;
  }

  .t2-hero__visual {
    display: none;
  }

  .t2-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .t2-fact:nth-child(3)::before {
    display: none;
  }

  .t2-fact:nth-child(-n + 2) {
    border-bottom: 1px solid #e1e9f1;
  }

  .t2-flow,
  .t2-type-grid,
  .t2-strategy {
    grid-template-columns: 1fr 1fr;
  }

  .t2-category-launch__grid,
  .t2-result__categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .t2-boundary,
  .t2-next {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .t2-shell {
    width: min(calc(100% - 24px), 1180px);
  }

  .t2-hero {
    padding: 1.65rem 1.2rem 2.1rem;
    border-radius: 22px;
  }

  .t2-hero h1 {
    font-size: clamp(2rem, 10.8vw, 2.7rem);
    line-height: 1.18;
  }

  .t2-hero__lead {
    font-size: 0.94rem;
    line-height: 1.85;
  }

  .t2-hero__actions,
  .t2-dashboard__actions,
  .t2-result__actions,
  .t2-feedback__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .t2-action {
    width: 100%;
  }

  .t2-facts {
    margin: -20px 12px 0;
  }

  .t2-fact {
    min-height: 86px;
  }

  .t2-fact strong {
    font-size: 1rem;
  }

  .t2-flow,
  .t2-type-grid,
  .t2-strategy,
  .t2-category-launch__grid,
  .t2-result__categories {
    grid-template-columns: 1fr;
  }

  .t2-app {
    padding: 0.85rem;
    border-radius: 20px;
  }

  .t2-dashboard__progress {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .t2-dashboard__stats {
    gap: 0.45rem;
  }

  .t2-dashboard__stats > div {
    min-height: 74px;
    padding: 0.6rem;
  }

  .t2-dashboard__stats strong {
    font-size: 0.92rem;
  }

  .t2-category-launch__head {
    display: block;
  }

  .t2-category-launch__head p {
    margin-top: 0.25rem;
  }

  .t2-player__top {
    grid-template-columns: 1fr auto;
  }

  .t2-player__meter {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .t2-question-card {
    padding: 1rem;
  }

  .t2-choices {
    gap: 0.55rem;
  }

  .t2-choices button {
    min-height: 68px;
    border-radius: 15px;
  }

  .t2-result__hero {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .t2-score {
    width: 108px;
    height: 108px;
    padding-top: 1.65rem;
  }

  .t2-score strong {
    font-size: 2.3rem;
  }
}
