/* ============================== */
/* Counsel form                   */
/* ============================== */

:root {
	--font-sans: 'Pretendard Variable', Pretendard, -apple-system,
		BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI',
		'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
	--header-height: 196px;
	--header-height-condensed: 61px;
	--color-text: #171719;
	--color-focus: #2563eb;
	--color-primary: rgb(255, 42, 1);
	--radius-sm: 12px;
	--radius-md: 18px;
	--radius-lg: 28px;
	--radius-pill: 999px;
	--shadow-primary: 0 16px 34px rgba(255, 42, 1, 0.24);
}


#new-inquiry-counsel {

	*, *::before, *::after {box-sizing: border-box;}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  vertical-align: top;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  background: transparent;
  /*appearance: none;
  -webkit-appearance: none;*/
  border-radius: 0;
  border: 0;
}

button {
  cursor: pointer;
}

-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	scroll-behavior: smooth;

    min-width: 320px;
	min-height: 100vh;
	margin: 0;
	font-family: var(--font-sans);
	font-size: 1.6rem;
	font-weight: 400;
	font-style: normal;
	font-optical-sizing: auto;
	font-kerning: normal;
	font-synthesis: none;
	line-height: 1.5;
	letter-spacing: -0.02em;
	word-break: keep-all;
	overflow-wrap: break-word;
	overflow-x: hidden;
	color: var(--color-text);
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

    text-align: left;


    button,
input,
select,
textarea {
	font-family: inherit;
}

input,
select,
textarea {
	min-width: 0;
}

textarea {
	resize: vertical;
}

input::placeholder,
textarea::placeholder {
	color: #8a8a8a;
	opacity: 1;
}

button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
	cursor: not-allowed;
}

:focus-visible {
	outline: 2px solid var(--color-focus);
	outline-offset: 3px;
}

::selection {
	color: #fff;
	background-color: var(--color-focus);
}

img {
	height: auto;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}



/* ============================== */
/* Counsel form                   */
/* ============================== */
.inquiry-counsel-section {
	width: 1200px;
	margin: auto;
	padding: 80px 0 120px;
}

.inquiry-counsel-layout {
	display: grid;
	gap: 64px;
}

.inquiry-section-head {
	display: grid;
	gap: 6px;
	text-align: left;
}

.inquiry-section-head h2 {
	color: #17191f;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.03em;
}

.inquiry-section-head p {
	color: #626a76;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
}

.inquiry-counsel-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	/*gap: 72px;*/
	
	gap: 56px;
	/*gap: 48px;*/
	
	
	align-items: start;
	width: 100%;
	min-width: 0;
	padding: 0;
	border-radius: 0;
	background: transparent;
	counter-reset: inquiry-step;
}

.inquiry-select-column,
.inquiry-info-column {
	display: grid;
	min-width: 0;
}

.inquiry-select-column {
	/*gap: 64px;*/
	/*gap: 48px;*/
	
	gap: 56px;
}

.inquiry-info-column {
	position: static;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 32px;
	row-gap: 20px;
	align-items: start;
	width: 100%;
	min-width: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	overflow: visible;
}

body.is-header-condensed .inquiry-info-column {
	top: auto;
}

.inquiry-field-group {
	display: grid;
	gap: 16px;
	padding-bottom: 0;
	border-bottom: 0;
}

.inquiry-field-group:last-of-type,
.inquiry-select-column > .inquiry-field-group,
.inquiry-select-column > .inquiry-field-group:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.inquiry-field-head {
	display: flex;
	align-items: center;
	gap: 6px;
}

.inquiry-field-head::before {
	content: counter(inquiry-step);
	display: grid;
	flex: 0 0 20px;
	place-items: center;
	width: 20px;
	height: 20px;
	border: 0;
	border-radius: 50%;
	background: linear-gradient(90deg, #f2afa6 0%, var(--color-primary) 100%);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	counter-increment: inquiry-step;
}

.inquiry-info-column .inquiry-field-head::before {
	content: none;
	counter-increment: none;
}

.inquiry-field-head strong {
	color: #232732;
	font-size: 20px;
	font-weight: 700;
}

.inquiry-field-head em {
	margin-left: 2px;
	color: #9aa1ad;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
}

.inquiry-choice-grid {
	display: grid;
	gap: 8px;
}

.branch-choice {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.branch-choice button {
	flex: 0 0 140px;
	width: 140px;
	min-width: 0;
	padding-right: 18px;
	padding-left: 18px;
}

.inquiry-choice-grid.field-choice {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.inquiry-choice-grid.field-choice button {
	flex: 0 1 auto;
	gap: 8px;
	max-width: 100%;
	min-height: 44px;
	padding: 10px 20px 10px 18px;
	border-color: #dfe3ea;
	border-radius: var(--radius-pill);
	background: #fff;
	line-height: 1.35;
	white-space: normal;
	word-break: keep-all;
	text-align: center;
}

.inquiry-choice-grid.field-choice button span {
	display: inline-block;
}

.inquiry-choice-grid.field-choice button span::after {
	display: block;
	height: 0;
	overflow: hidden;
	font-weight: 700;
	content: attr(data-label);
	visibility: hidden;
}

.inquiry-choice-grid.field-choice button svg {
	display: block;
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.inquiry-choice-grid.field-choice button .field-icon-ai-cloud,
.inquiry-choice-grid.field-choice button .field-icon-architecture {
	flex-basis: 20px;
	width: 20px;
	height: 20px;
}

.inquiry-choice-grid button,
.inquiry-track-tabs button,
.inquiry-course-list label {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 14px;
	border: 1px solid #e3e7ee;
	border-radius: var(--radius-sm);
	background: #fff;
	color: #3d444f;
	font: inherit;
	font-size: 16px;
	font-weight: 500;
	white-space: nowrap;
	cursor: pointer;
	transition: border-color 0.18s ease, background-color 0.18s ease,
		color 0.18s ease, box-shadow 0.18s ease;
}

.inquiry-choice-grid button {
	border-color: transparent;
	/*background: #f7f8fa;*/
	background: #f5f5f5;
}

.inquiry-choice-grid.branch-choice button {
	border-color: #dfe3ea;
}

.inquiry-course-list input,
.inquiry-agree input {
	width: 15px;
	height: 15px;
	margin: 0 8px 0 0;
	accent-color: var(--color-primary);
}

.branch-choice button.is-selected {
	border-color: var(--color-primary);
	background: var(--color-primary);
	color: #fff;
	font-weight: 700;
	box-shadow: none;
}

.field-choice button.is-selected,
.inquiry-track-tabs button.is-selected {
	border-color: rgba(255, 42, 1, 0.58);
	background: #fff4f1;
	color: #d41f00;
	font-weight: 700;
	box-shadow: inset 0 0 0 1px rgba(255, 42, 1, 0.08);
}

.inquiry-choice-grid button:hover,
.inquiry-track-tabs button:hover {
	background: #f8f9fb;
}

.inquiry-choice-grid button:hover {
	background: #f1f3f6;
}

.branch-choice button.is-selected:hover {
	background: var(--color-primary);
}

.field-choice button.is-selected:hover,
.inquiry-track-tabs button.is-selected:hover {
	background: #fff4f1;
}

.inquiry-track-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.inquiry-track-tabs button {
	min-height: 40px;
	padding: 0 16px;
	border-radius: var(--radius-pill);
}

.inquiry-course-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.inquiry-select-column .inquiry-course-list {
	grid-template-columns: 1fr;
}

.inquiry-course-group {
	display: grid;
	gap: 10px;
	align-content: start;
	padding: 22px;
	border-radius: var(--radius-md);
	/*background: #f6f7fa;*/
	background: #f5f5f5;
}

.inquiry-course-group > strong {
	margin-bottom: 4px;
	color: #232732;
	font-size: 18px;
	font-weight: 600;
}

.inquiry-course-group label {
	display: grid;
	grid-template-columns: 15px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
	justify-content: flex-start;
	min-height: auto;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	font-weight: 400;
	white-space: normal;
}

.inquiry-course-group label input {
	margin: 4px 0 0;
}

.inquiry-course-group label span {
	min-width: 0;
	color: #3d444f;
}

.inquiry-course-group label.is-disabled,
.inquiry-course-group label.is-disabled span {
	color: #a6adba;
}

.inquiry-course-group label.is-disabled {
	cursor: not-allowed;
}

.inquiry-input-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.inquiry-info-column .inquiry-input-grid {
	grid-template-columns: minmax(0, 1fr);
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 16px;
	height: 128px;
}

.inquiry-input-grid input,
.inquiry-counsel-form textarea {
	width: 100%;
	min-height: 48px;
	padding: 0 16px;
	border: 1px solid #dfe3ea;
	border-radius: var(--radius-sm);
	background: #fff;
	color: #17191f;
	font: inherit;
	font-size: 16px;
	font-weight: 400;
	outline: 0;
}

.inquiry-input-grid input:focus,
.inquiry-counsel-form textarea:focus {
	border-color: rgba(255, 42, 1, 0.45);
	background: #fff;
}

.inquiry-counsel-form textarea {
	min-height: 104px;
	padding: 14px 16px;
	resize: vertical;
}

.inquiry-info-column textarea {
	height: 180px;
	min-height: 180px;
}

.inquiry-contact-field,
.inquiry-textarea-field {
	display: grid;
	gap: 20px;
}

.inquiry-textarea-label {
	color: #232732;
	font-size: 20px;
	font-weight: 700;
}

.inquiry-contact-field > .inquiry-textarea-label {
	display: flex;
	align-items: center;
	gap: 6px;
}

.inquiry-contact-field > .inquiry-textarea-label::before {
	content: "4";
	display: grid;
	flex: 0 0 20px;
	place-items: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: linear-gradient(90deg, #f2afa6 0%, var(--color-primary) 100%);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
}

.inquiry-agree {
	display: flex;
	align-items: center;
	color: #626a76;
	font-size: 16px;
	font-weight: 400;
}

.inquiry-agree-required {
	margin-right: 4px;
	color: var(--color-primary);
	font-weight: 600;
}

.inquiry-agree-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.inquiry-policy-open {
	flex: 0 0 auto;
	min-height: 30px;
	padding: 5px 10px;
	border: 1px solid #dfe3ea;
	border-radius: 6px;
	background: #f7f8fa;
	color: #626a76;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
}

.inquiry-counsel-submit {
	width: 100%;
	min-height: 56px;
	border: 0;
	border-radius: var(--radius-sm);
	/*background: #1b1d22;*/
	background-color: var(--color-primary);
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
}

.privacy-dialog {
	width: min(100% - 40px, 620px);
	max-height: min(80vh, 720px);
	padding: 0;
	border: 0;
	border-radius: 16px;
	background: #fff;
	color: #232732;
	box-shadow: 0 24px 70px rgba(18, 22, 31, 0.25);
}

.privacy-dialog::backdrop {
	background: rgba(16, 18, 23, 0.6);
}

.privacy-dialog-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 24px 28px;
	border-bottom: 1px solid #e6e8ed;
}

.privacy-dialog-head h2 {
	font-size: 22px;
	font-weight: 700;
}

.privacy-dialog-close {
	display: grid;
	flex: 0 0 36px;
	place-items: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #f2f3f6;
	color: #232732;
	font-size: 26px;
	font-weight: 400;
	line-height: 1;
	cursor: pointer;
}

.privacy-dialog-body {
	display: grid;
	gap: 24px;
	max-height: calc(min(80vh, 720px) - 85px);
	padding: 28px;
	overflow-y: auto;
}

.privacy-dialog-body section {
	display: grid;
	gap: 8px;
}

.privacy-dialog-body h3 {
	font-size: 17px;
	font-weight: 700;
}

.privacy-dialog-body p {
	color: #626a76;
	font-size: 15px;
	line-height: 1.7;
}

.privacy-dialog-body .privacy-dialog-note {
	padding: 16px;
	border-radius: 8px;
	background: #f6f7f9;
	color: #7a818d;
	font-size: 13px;
}
}


/* ============================== */
/* Pre-footer CTA                 */
/* ============================== */
.pre-footer-cta {
	overflow: hidden;
	padding: 84px 0 68px;
	background: var(--color-primary);
	color: #fff;
}

.pre-footer-cta-inner {
	display: grid;
	gap: 64px;
}

.pre-footer-cta-copy {
	display: grid;
	gap: 16px;
	max-width: 650px;
}

.pre-footer-cta-copy > span {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.16em;
	opacity: 0.72;
}

.pre-footer-cta-copy h2 {
	font-size: 42px;
	font-weight: 700;
	line-height: 1.28;
	letter-spacing: -0.04em;
}

.pre-footer-cta-copy p {
	font-size: 18px;
	line-height: 1.55;
	opacity: 0.82;
}

.pre-footer-cta-display {
	display: flex;
	align-items: center;
	gap: 24px;
	font-size: clamp(88px, 10vw, 150px);
	font-weight: 800;
	line-height: 0.82;
	letter-spacing: -0.075em;
	white-space: nowrap;
}

.pre-footer-cta-display span {
	color: #fff;
}

.pre-footer-cta-display strong {
	display: inline-flex;
	align-items: center;
	min-height: 0.82em;
	padding: 0.06em 0.28em 0.1em;
	border-radius: 0.12em;
	background: #fff;
	color: var(--color-primary);
	font-size: 0.7em;
	font-weight: 800;
	letter-spacing: -0.06em;
}

/* ============================== */
/* Footer                         */
/* ============================== */
.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.brand-mark {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: var(--radius-sm);
	background: var(--color-primary);
	color: #fff;
	font-weight: 700;
	box-shadow: var(--shadow-primary);
}

.brand-word {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.brand-word span {
	color: var(--color-primary);
}

.site-footer {
	border-top: 1px solid #232732;
	background: #17191f;
	color: #fff;
}

.footer-inner {
	padding: 48px 0 42px;
}

.footer-top {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 72px;
	padding-bottom: 34px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand .brand {
	margin-bottom: 26px;
}

.footer-brand p {
	margin: 0 0 8px;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
}

.footer-brand strong {
	display: block;
	color: rgba(255, 255, 255, 0.58);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.55;
}

.footer-chat {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	height: 44px;
	margin-top: 18px;
	padding: 0 18px;
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

.footer-nav {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 34px;
}

.footer-nav h3 {
	margin: 0 0 14px;
	color: rgba(255, 255, 255, 0.42);
	font-size: 14px;
	font-weight: 700;
}

.footer-nav a {
	display: block;
	margin-top: 12px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 14px;
	font-weight: 700;
}

.footer-policy {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	padding-top: 28px;
}

.footer-policy a {
	position: relative;
	margin-right: 16px;
	padding-right: 16px;
	color: rgba(255, 255, 255, 0.74);
	font-size: 14px;
	font-weight: 700;
}

.footer-policy a:not(:last-child)::after,
.footer-info span:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 1px;
	height: 12px;
	background: rgba(255, 255, 255, 0.24);
	transform: translateY(-50%);
}

.footer-info {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 0;
	margin-top: 28px;
	color: rgba(255, 255, 255, 0.56);
	font-size: 14px;
	font-style: normal;
	line-height: 1.55;
}

.footer-info span {
	position: relative;
	margin-right: 16px;
	padding-right: 16px;
}

.footer-copy {
	margin: 8px 0 0;
	color: rgba(255, 255, 255, 0.56);
	font-size: 14px;
}

