/* NaviCebu Contact — 学校別問い合わせフォーム（ブルー基調・4ステップ / /contact/ のみ読み込み） */
.ncct-wrap {
	--nb: #1D4ED8;         /* primary blue（白文字 6.2:1 AA） */
	--nb2: #2563EB;        /* gradient end（白文字 4.5:1 AA） */
	--nb-ink: #17408F;     /* 濃い青文字 */
	--nb-bg: #EFF5FF;      /* 薄青背景 */
	--nb-line: #D9E4F5;    /* 枠線 */
	--ink: #1F2A37;
	--sub: #5B6B7E;
	max-width: 1040px;
	margin: 0 auto;
	padding: 8px 4px 48px;
	font-size: 16px;
	line-height: 1.7;
	color: var(--ink);
}
.ncct-wrap *, .ncct-wrap *::before, .ncct-wrap *::after { box-sizing: border-box; }

/* ---------- ヒーロー ---------- */
.ncct-hero { display: flex; align-items: center; gap: 26px; margin: 2px 0 20px; }
.ncct-hero-txt { flex: 1; min-width: 0; }
.ncct-lead { margin: 0; color: var(--sub); font-size: 15px; line-height: 2.0; font-feature-settings: "palt"; }
.ncct-hero-art { flex: 0 0 196px; max-width: 196px; filter: drop-shadow(0 10px 22px rgba(46, 95, 204, .16)); }
.ncct-hero-art svg { width: 100%; height: auto; display: block; }
@media (max-width: 700px) { .ncct-hero-art { flex-basis: 110px; } .ncct-br-pc { display: none; } .ncct-lead { font-size: 13.5px; } }

/* ---------- 3ポイント・infoカード ---------- */
.ncct-points { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0 0 22px; padding: 0; }
@media (max-width: 860px) { .ncct-points { grid-template-columns: 1fr; gap: 8px; } }
.ncct-points li, .ncct-info {
	display: flex; gap: 12px; align-items: flex-start;
	background: #fff; border: 1px solid var(--nb-line); border-radius: 12px; padding: 14px;
}
.ncct-pt-i {
	--chip: #1D4ED8;
	flex: 0 0 46px; width: 46px; height: 46px; border-radius: 14px;
	display: inline-flex; align-items: center; justify-content: center;
	color: #fff; position: relative; isolation: isolate;
}
.ncct-pt-i::after { /* ガラスの艶 */
	content: ""; position: absolute; inset: 0; border-radius: inherit;
	background: linear-gradient(160deg, rgba(255,255,255,.34), rgba(255,255,255,0) 46%);
	pointer-events: none;
}
.ncct-ic-b { --chip: #1D4ED8; background: linear-gradient(140deg, #3B82F6, #1D4ED8); box-shadow: 0 5px 12px -3px rgba(29,78,216,.45); }
.ncct-ic-t { --chip: #0F766E; background: linear-gradient(140deg, #14B8A6, #0F766E); box-shadow: 0 5px 12px -3px rgba(15,118,110,.45); }
.ncct-ic-a { --chip: #B45309; background: linear-gradient(140deg, #F59E0B, #D97706); box-shadow: 0 5px 12px -3px rgba(217,119,6,.45); }
.ncct-ic-v { --chip: #6D28D9; background: linear-gradient(140deg, #8B5CF6, #6D28D9); box-shadow: 0 5px 12px -3px rgba(109,40,217,.45); }
.ncct-points strong, .ncct-info strong { display: block; font-size: 14.5px; color: var(--nb-ink); line-height: 1.5; margin-bottom: 2px; }
.ncct-points span:not(.ncct-pt-i), .ncct-info span:not(.ncct-pt-i) { font-size: 12.5px; color: var(--sub); line-height: 1.7; display: block; }

/* ---------- ステッパー ---------- */
.ncct-stepper {
	list-style: none; display: flex; align-items: center; justify-content: space-between;
	margin: 0 0 20px; padding: 14px 8px; counter-reset: st;
	background: #fff; border: 1px solid var(--nb-line); border-radius: 12px;
	position: relative; overflow: hidden;
}
.ncct-stepper li { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; position: relative; justify-content: center; font-size: 13px; font-weight: 700; color: #93A5BC; }
.ncct-stepper li:not(:last-child)::after { content: ""; position: absolute; right: -8%; top: 50%; width: 16%; height: 2px; background: #E1E9F5; }
.ncct-stepper li i {
	font-style: normal; width: 26px; height: 26px; flex: 0 0 26px; border-radius: 999px;
	background: #E9EFF9; color: #8DA0B9; display: inline-flex; align-items: center; justify-content: center; font-size: 13px;
}
.ncct-stepper li.is-now { color: var(--nb-ink); }
.ncct-stepper li.is-now i { background: var(--nb); color: #fff; }
.ncct-stepper li.is-done { color: var(--nb); }
.ncct-stepper li.is-done i { background: #D8E6FC; color: var(--nb); }
@media (max-width: 640px) {
	.ncct-stepper { padding: 12px 4px; }
	.ncct-stepper li { flex-direction: column; gap: 4px; font-size: 10.5px; }
	.ncct-stepper li:not(:last-child)::after { right: -14%; top: 13px; width: 28%; }
}

/* ---------- 共通パーツ ---------- */
.ncct-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.ncct-step { animation: ncct-fade .25s ease; }
@keyframes ncct-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .ncct-step { animation: none; } }

.ncct-panel { background: #fff; border: 1px solid var(--nb-line); border-radius: 14px; padding: 20px; margin: 0 0 16px; box-shadow: 0 1px 2px rgba(23, 64, 143, .05), 0 8px 24px -18px rgba(23, 64, 143, .18); }
.ncct-panel-h { font-size: 15px; font-weight: 800; font-feature-settings: "palt"; color: var(--ink); margin: 0 0 14px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.ncct-badge-multi { background: var(--nb-bg); color: var(--nb); border: 1px solid #C4D8F8; font-size: 11px; font-weight: 700; border-radius: 6px; padding: 2px 8px; }
.ncct-hint-inline { font-size: 12px; font-weight: 500; color: var(--sub); }

.ncct-req { display: inline-block; background: #E8552F; color: #fff; font-size: 10.5px; font-weight: 700; border-radius: 4px; padding: 1px 7px; margin-left: 6px; vertical-align: 2px; }
.ncct-opt { display: inline-block; background: #EDF1F6; color: #66737D; font-size: 10.5px; font-weight: 700; border-radius: 4px; padding: 1px 7px; margin-left: 6px; vertical-align: 2px; }
.ncct-field { margin: 0 0 16px; border: 0; padding: 0; min-width: 0; }
.ncct-field legend, .ncct-label { display: block; font-weight: 700; font-size: 14px; margin: 0 0 7px; padding: 0; }
.ncct-hintline { font-size: 12px; color: var(--nb-ink); background: var(--nb-bg); border-radius: 6px; padding: 4px 8px; margin: 6px 0 0; }

.ncct-wrap input[type="text"], .ncct-wrap input[type="email"], .ncct-wrap input[type="tel"], .ncct-wrap input[type="date"],
.ncct-wrap select, .ncct-wrap textarea {
	width: 100%; font-size: 16px; color: var(--ink); background: #fff;
	border: 1.5px solid #CBD8EA; border-radius: 9px; padding: 11px 13px;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.ncct-wrap select {
	appearance: none; -webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235B6B7E' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px;
}
.ncct-wrap input:focus, .ncct-wrap select:focus, .ncct-wrap textarea:focus { outline: none; border-color: var(--nb); box-shadow: 0 0 0 3px rgba(37, 99, 235, .16); }
.ncct-wrap .is-invalid { border-color: #D63638 !important; background: #FFF8F8; }
.ncct-err { color: #D63638; font-size: 13px; font-weight: 700; margin: 6px 0 0; }
.ncct-err:empty { margin: 0; }
.ncct-err-global { text-align: center; }
.ncct-suggest { font-size: 13px; margin: 6px 0 0; color: #1A5FB4; }
.ncct-suggest button { background: none; border: 0; padding: 0; color: #1A5FB4; font-weight: 700; text-decoration: underline; cursor: pointer; font-size: 13px; }
.ncct-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 18px; }
@media (max-width: 640px) { .ncct-grid2 { grid-template-columns: 1fr; } }
.ncct-inline { display: grid; grid-template-columns: 118px 1fr; gap: 10px; }

/* セグメント（性別） */
.ncct-seg { display: flex; gap: 8px; flex-wrap: wrap; }
.ncct-seg label { border: 1.5px solid #CBD8EA; border-radius: 999px; padding: 8px 15px; font-size: 13.5px; font-weight: 700; cursor: pointer; background: #fff; }
.ncct-seg input { position: absolute; opacity: 0; pointer-events: none; }
.ncct-seg label.is-sel { border-color: var(--nb); background: var(--nb-bg); color: var(--nb-ink); }
.ncct-seg label:focus-within { outline: 3px solid #1a73e8; outline-offset: 2px; }

/* ---------- ボタン ---------- */
.ncct-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	background: linear-gradient(135deg, var(--ncct-c1, #1D4ED8), var(--ncct-c2, #2563EB));
	color: #fff !important; font-weight: 700; font-size: 15.5px; text-decoration: none !important;
	border: 0; border-radius: 10px; padding: 14px 26px; min-height: 48px; cursor: pointer;
	box-shadow: 0 4px 14px rgba(29, 78, 216, .28); transition: filter .15s ease, transform .15s ease;
}
.ncct-btn:hover { filter: brightness(1.07); transform: translateY(-1px); }
.ncct-btn .ncct-arw { transition: transform .18s ease; }
.ncct-btn:hover .ncct-arw { transform: translateX(3px); }
.ncct-btn:active { transform: none; }
.ncct-btn:focus-visible { outline: 3px solid #0B2E86; outline-offset: 2px; }
.ncct-btn[disabled] { opacity: .6; cursor: wait; }
.ncct-btn-s { padding: 11px 16px; font-size: 13.5px; min-height: 42px; border-radius: 9px; }
.ncct-arw { font-weight: 800; }
.ncct-btn-ghost { background: none; border: 0; color: #66737D; font-size: 14px; font-weight: 700; cursor: pointer; padding: 12px 10px; border-radius: 8px; }
.ncct-btn-ghost:hover { color: var(--ink); background: #EEF2F7; }
.ncct-btn-ghost:focus-visible { outline: 3px solid #1a73e8; }
.ncct-nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin: 6px 0 0; }
.ncct-nav .ncct-btn { flex: 1; max-width: 420px; margin-left: auto; }
.ncct-nav-center { justify-content: center; }
.ncct-nav-center .ncct-btn { margin: 0 auto; flex: 0 1 auto; min-width: 320px; }
@media (max-width: 640px) { .ncct-nav-center .ncct-btn { width: 100%; min-width: 0; } }

/* ---------- Step1: 2カラム ---------- */
.ncct-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.ncct-col-r { position: sticky; top: 16px; }
@media (max-width: 900px) { .ncct-cols { grid-template-columns: 1fr; } .ncct-col-r { display: none; } }
.ncct-search { position: relative; margin: 0 0 12px; color: #8DA0B9; }
.ncct-search svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); }
.ncct-wrap .ncct-search input[type="text"] { padding-left: 40px; }

.ncct-school-list { border: 1px solid var(--nb-line); border-radius: 10px; overflow: hidden; max-height: 430px; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.ncct-srow {
	display: flex; align-items: center; gap: 12px; width: 100%; text-align: left;
	background: #fff; border: 0; border-bottom: 1px solid #EDF2F9; padding: 11px 12px; cursor: pointer; font-size: 14px;
	transition: background .12s ease;
}
.ncct-srow:last-child { border-bottom: 0; }
.ncct-srow:hover { background: #F5F9FF; }
.ncct-srow[aria-selected="true"] { background: var(--nb-bg); box-shadow: inset 3px 0 0 var(--nb); }
.ncct-srow:focus-visible { outline: 3px solid #1a73e8; outline-offset: -3px; }
.ncct-cb { width: 19px; height: 19px; flex: 0 0 19px; border: 2px solid #B9C8DC; border-radius: 5px; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 12px; font-weight: 800; background: #fff; }
.ncct-srow[aria-selected="true"] .ncct-cb { background: var(--nb); border-color: var(--nb); }
.ncct-savatar { width: 46px; height: 46px; flex: 0 0 46px; border-radius: 10px; object-fit: cover; border: 1px solid var(--nb-line); background: #fff; box-shadow: 0 1px 3px rgba(23, 64, 143, .12); }
.ncct-savatar-m { width: 46px; height: 46px; flex: 0 0 46px; border-radius: 10px; box-shadow: inset 0 -14px 18px rgba(0,0,0,.14); display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; color: #fff; }
.ncct-sname { min-width: 0; }
.ncct-sname b { display: block; font-size: 14px; color: var(--ink); line-height: 1.45; }
.ncct-sname small { display: block; font-size: 11.5px; color: var(--sub); }
.ncct-more { display: flex; align-items: center; justify-content: center; gap: 6px; width: 100%; background: none; border: 0; color: var(--nb); font-size: 13.5px; font-weight: 700; padding: 12px 8px 2px; cursor: pointer; }
.ncct-more:hover { text-decoration: underline; }
.ncct-school-empty { padding: 16px; color: var(--sub); font-size: 13px; }

/* Step1 右ペイン */
.ncct-side-h { align-items: baseline; }
.ncct-side-chips { display: inline-flex; flex-wrap: wrap; gap: 6px; }
.ncct-side-chips .ncct-none { color: #93A5BC; font-weight: 500; font-size: 13px; font-style: normal; }
.ncct-chip {
	display: inline-flex; align-items: center; gap: 7px;
	background: var(--nb-bg); border: 1px solid #C4D8F8; color: var(--nb-ink);
	border-radius: 999px; padding: 4px 11px 4px 5px; font-size: 12.5px; font-weight: 700;
}
.ncct-chip .ncct-chip-ph { width: 22px; height: 22px; border-radius: 999px; object-fit: cover; border: 1.5px solid #fff; box-shadow: 0 0 0 1px #C4D8F8; }
.ncct-chip.ncct-chip-noph { padding-left: 11px; }
.ncct-chip button { border: 0; background: rgba(23, 64, 143, .12); color: var(--nb-ink); border-radius: 999px; width: 18px; height: 18px; line-height: 1; font-size: 12px; cursor: pointer; padding: 0; }
.ncct-chip button:focus-visible { outline: 2px solid #1a73e8; }
.ncct-side-empty { border: 1.5px dashed #C9D8EE; border-radius: 10px; padding: 34px 16px; text-align: center; color: #8DA0B9; font-size: 13.5px; }
.ncct-side-note { font-size: 13.5px; color: var(--sub); margin: 0 0 14px; }
.ncct-side-note b { color: var(--ink); }

/* モバイル下部バー（Step1） */
.ncct-mbar {
	display: none; position: sticky; bottom: 10px; z-index: 40;
	background: #fff; border: 1px solid var(--nb-line); border-radius: 12px;
	box-shadow: 0 8px 24px rgba(15, 40, 90, .14);
	padding: 10px 12px; margin-top: 14px;
	align-items: center; justify-content: space-between; gap: 10px;
}
.ncct-mbar-l { font-size: 12.5px; color: var(--sub); display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.ncct-mbar-l b { color: var(--nb-ink); font-size: 15px; }
@media (max-width: 900px) { .ncct-mbar { display: flex; } .ncct-nav-center { display: none; } }

/* ---------- Step2: タブ ---------- */
.ncct-tabs { display: flex; gap: 0; border-bottom: 2px solid #E4EBF5; margin: 4px 0 18px; overflow-x: auto; }
.ncct-tab {
	background: none; border: 0; border-bottom: 3px solid transparent; margin-bottom: -2px;
	padding: 10px 16px; font-size: 14px; font-weight: 700; color: #7B8CA3; cursor: pointer; white-space: nowrap;
	display: inline-flex; align-items: center; gap: 6px;
}
.ncct-tab { transition: color .12s ease, border-color .12s ease; }
.ncct-tab.is-on { color: var(--nb); border-bottom-color: var(--nb); }
.ncct-tab:focus-visible { outline: 3px solid #1a73e8; outline-offset: -3px; }
.ncct-tab .ncct-ok { color: #0D8A5F; font-weight: 800; }
.ncct-chips-rm { margin-left: 2px; }
.ncct-sf-title { font-size: 14px; font-weight: 800; color: var(--nb-ink); background: var(--nb-bg); border-radius: 8px; padding: 8px 12px; margin: 0 0 16px; }

/* ---------- Step3: 確認 ---------- */
.ncct-ctable { width: 100%; border-collapse: collapse; font-size: 14px; }
.ncct-ctable th, .ncct-ctable td { border: 1px solid #E4EBF5; padding: 9px 12px; text-align: left; vertical-align: top; }
.ncct-ctable th { width: 34%; background: #F6F9FE; color: var(--sub); font-weight: 700; font-size: 13px; }
.ncct-ctable td { color: var(--ink); word-break: break-word; white-space: pre-wrap; }
.ncct-ctable tr:nth-child(even) td { background: #FBFDFF; }
.ncct-confirm-school { margin: 0 0 16px; }
.ncct-confirm-school .ncct-panel-h { color: var(--nb-ink); }
.ncct-notes { background: #FFF9EF; border: 1px solid #F2DFBB; border-radius: 12px; padding: 14px 16px; margin: 0 0 16px; }
.ncct-notes-h { display: flex; align-items: center; gap: 6px; font-weight: 800; font-size: 13.5px; color: #8A6116; margin: 0 0 8px; }
.ncct-notes ul { margin: 0; padding: 0 0 0 1.3em; font-size: 12.5px; color: #6E5A2E; line-height: 1.9; }
.ncct-privacy { background: #fff; border: 1px solid var(--nb-line); border-radius: 12px; padding: 14px 16px; }
.ncct-privacy label { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; font-weight: 600; cursor: pointer; }
.ncct-privacy input { width: 20px; height: 20px; margin-top: 2px; flex: 0 0 20px; accent-color: var(--nb); }
#ncct-turnstile { margin: 14px 0 0; }
#ncct-turnstile:empty { margin: 0; }

/* ---------- info / noscript ---------- */
.ncct-infos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 22px 0 0; }
@media (max-width: 700px) { .ncct-infos { grid-template-columns: 1fr; } }
.ncct-noscript { background: #fff4f4; border: 1px solid #f0c8c8; border-radius: 10px; padding: 14px; margin-top: 16px; }

/* ---------- サンクス ---------- */
.ncct-thanks { text-align: center; }
.ncct-thanks .ncct-stepper { text-align: left; }
.ncct-thanks-icon {
	width: 64px; height: 64px; margin: 22px auto 14px; border-radius: 999px;
	background: linear-gradient(135deg, var(--nb), var(--nb2)); color: #fff; font-size: 30px; font-weight: 800;
	display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(29, 78, 216, .3);
}
.ncct-thanks-title { font-size: 24px; font-weight: 800; margin: 0 0 10px; }
.ncct-thanks-lead { color: var(--sub); margin: 0 0 22px; font-size: 14.5px; }
.ncct-thanks-summary { text-align: left; }
.ncct-next { margin-top: 24px; }
.ncct-next-title { font-size: 13px; font-weight: 700; color: #7B8CA3; margin: 0 0 10px; }
.ncct-next-card {
	display: block; text-align: left; border: 1px solid var(--nb-line); border-radius: 12px;
	padding: 14px 16px; margin: 0 0 10px; font-weight: 800; font-size: 15px; color: var(--ink);
	text-decoration: none; background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.ncct-next-card:hover { border-color: var(--nb); box-shadow: 0 4px 14px rgba(15, 40, 90, .1); }
.ncct-next-card span { display: block; font-size: 12px; font-weight: 500; color: var(--sub); margin-top: 2px; }


/* ================= ステップごとのカラーテーマ =================
   ①青（探す）→②ティール（入力）→③バイオレット（確認）→④グリーン（完了）
   すべて白文字コントラスト4.5:1以上（AA）を確認済みのペア。
   .ncct-wrap の変数を差し替えるだけで、ボタン・チップ・タブ・バッジ・
   フォーカスリング・ヒントが一斉に切り替わる。 */
.ncct-wrap.ncct-t1 { --nb: #1D4ED8; --nb2: #2563EB; --nb-ink: #17408F; --nb-bg: #EFF5FF; --nb-line: #D9E4F5; --nb-ring: rgba(37, 99, 235, .16); --nb-sh: rgba(29, 78, 216, .28); }
.ncct-wrap.ncct-t2 { --nb: #0F766E; --nb2: #0C8074; --nb-ink: #0B4F4A; --nb-bg: #ECFAF7; --nb-line: #C8E8E1; --nb-ring: rgba(15, 118, 110, .16); --nb-sh: rgba(15, 118, 110, .3); }
.ncct-wrap.ncct-t3 { --nb: #6D28D9; --nb2: #7C3AED; --nb-ink: #4C1D95; --nb-bg: #F5F1FF; --nb-line: #E2D9F8; --nb-ring: rgba(109, 40, 217, .15); --nb-sh: rgba(109, 40, 217, .3); }
.ncct-wrap.ncct-t4 { --nb: #047857; --nb2: #058055; --nb-ink: #065F46; --nb-bg: #ECFDF3; --nb-line: #C7EBD9; --nb-ring: rgba(4, 120, 87, .16); --nb-sh: rgba(4, 120, 87, .3); }

/* フォーム内のボタンはテーマ色に追従（サイト共通CTAは設定色のまま） */
.ncct-wrap .ncct-btn {
	background: linear-gradient(135deg, var(--nb), var(--nb2));
	box-shadow: 0 4px 14px var(--nb-sh);
}
.ncct-wrap input:focus, .ncct-wrap select:focus, .ncct-wrap textarea:focus { box-shadow: 0 0 0 3px var(--nb-ring); }
.ncct-wrap .ncct-panel, .ncct-wrap .ncct-chip, .ncct-wrap .ncct-hintline, .ncct-wrap .ncct-badge-multi,
.ncct-wrap .ncct-seg label, .ncct-wrap .ncct-tab, .ncct-wrap .ncct-srow, .ncct-wrap .ncct-stepper {
	transition: background-color .35s ease, border-color .35s ease, color .35s ease;
}

/* ---- ステッパー：各ステップが自分の色を持つ ---- */
.ncct-stepper { --s1: #1D4ED8; --s2: #0F766E; --s3: #6D28D9; --s4: #047857; }
.ncct-stepper li i { transition: background-color .3s ease, color .3s ease, box-shadow .3s ease; font-weight: 800; }
.ncct-stepper li[data-sp="1"].is-now, .ncct-stepper li[data-sp="1"].is-done { color: var(--s1); }
.ncct-stepper li[data-sp="2"].is-now, .ncct-stepper li[data-sp="2"].is-done { color: var(--s2); }
.ncct-stepper li[data-sp="3"].is-now, .ncct-stepper li[data-sp="3"].is-done { color: var(--s3); }
.ncct-stepper li[data-sp="4"].is-now, .ncct-stepper li[data-sp="4"].is-done { color: var(--s4); }
.ncct-stepper li[data-sp="1"].is-now i { background: var(--s1); color: #fff; }
.ncct-stepper li[data-sp="2"].is-now i { background: var(--s2); color: #fff; }
.ncct-stepper li[data-sp="3"].is-now i { background: var(--s3); color: #fff; }
.ncct-stepper li[data-sp="4"].is-now i { background: var(--s4); color: #fff; }
.ncct-stepper li[data-sp="1"].is-done i { background: #DBE7FC; color: var(--s1); }
.ncct-stepper li[data-sp="2"].is-done i { background: #D3F0EB; color: var(--s2); }
.ncct-stepper li[data-sp="3"].is-done i { background: #E9DFFC; color: var(--s3); }
.ncct-stepper li[data-sp="4"].is-done i { background: #D2F2E3; color: var(--s4); }
/* 通過済みステップの接続線に色をつける（旅の軌跡） */
.ncct-stepper li[data-sp="1"].is-done::after { background: linear-gradient(90deg, var(--s1), var(--s2)); }
.ncct-stepper li[data-sp="2"].is-done::after { background: linear-gradient(90deg, var(--s2), var(--s3)); }
.ncct-stepper li[data-sp="3"].is-done::after { background: linear-gradient(90deg, var(--s3), var(--s4)); }
/* 現在ステップの淡いパルスリング */
.ncct-stepper li.is-now i { animation: ncct-ring 2.4s ease-out infinite; }
.ncct-stepper li[data-sp="1"].is-now i { --ring: rgba(29, 78, 216, .3); }
.ncct-stepper li[data-sp="2"].is-now i { --ring: rgba(15, 118, 110, .3); }
.ncct-stepper li[data-sp="3"].is-now i { --ring: rgba(109, 40, 217, .3); }
.ncct-stepper li[data-sp="4"].is-now i { --ring: rgba(4, 120, 87, .3); }
@keyframes ncct-ring {
	0% { box-shadow: 0 0 0 0 var(--ring, rgba(29, 78, 216, .3)); }
	60% { box-shadow: 0 0 0 8px rgba(0, 0, 0, 0); }
	100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
}
@media (prefers-reduced-motion: reduce) { .ncct-stepper li.is-now i { animation: none; } }

/* サンクスの✓アイコンもテーマ（緑）に追従 */
.ncct-thanks-icon { background: linear-gradient(135deg, var(--nb), var(--nb2)); box-shadow: 0 6px 20px var(--nb-sh); }

/* ---- v1.2.0: 統一入力（希望条件は1回だけ）・選択中の学校カード ---- */
.ncct-scard { display: flex; align-items: center; gap: 11px; padding: 9px 11px; border: 1px solid var(--nb-line); border-radius: 12px; background: #fff; margin-bottom: 8px; }
.ncct-scard > img { width: 46px; height: 46px; flex: 0 0 46px; border-radius: 10px; object-fit: cover; }
.ncct-scard .ncct-savatar-m { border-radius: 10px; }
.ncct-scard-t { flex: 1; min-width: 0; }
.ncct-scard-t b { display: block; font-size: 13.5px; color: var(--ink); line-height: 1.35; }
.ncct-scard-t small { display: block; font-size: 11.5px; color: var(--sub); margin-top: 1px; }
.ncct-scard > button { flex: none; width: 26px; height: 26px; border: 0; border-radius: 999px; background: #F1F5FB; color: #5B6B82; font-size: 14px; line-height: 1; cursor: pointer; }
.ncct-scard > button:hover { background: #E4EBF5; color: var(--ink); }
.ncct-shared-note { display: block; font-size: 13px; font-weight: 600; color: var(--nb-ink); background: var(--nb-bg); border: 1px solid var(--nb-line); border-radius: 10px; padding: 9px 13px; margin: 0 0 16px; }
.ncct-shared-note b { font-weight: 800; }
.ncct-confirm-school .ncct-scard:last-child { margin-bottom: 0; }
