@font-face {
    font-display: swap;
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 200;
    src: url('/assets/fonts/noto-sans-kr-v36-korean-200.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 300;
    src: url('/assets/fonts/noto-sans-kr-v36-korean-300.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 400;
    src: url('/assets/fonts/noto-sans-kr-v36-korean-regular.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 500;
    src: url('/assets/fonts/noto-sans-kr-v36-korean-500.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 600;
    src: url('/assets/fonts/noto-sans-kr-v36-korean-600.woff2') format('woff2');
}

@font-face {
    font-display: swap;
	font-family: "GSK";
	font-style: thin;
	font-weight: 100;
	src: url(/assets/fonts/GSKPrecision-Thin.woff2) format("woff2");
	unicode-range: U+0041-005A, U+0061-007A, U+0030-0039, U+0020-002F, U+003A-0040, U+005B-0060, U+007B-007E;
}

@font-face {
    font-display: swap;
	font-family: "GSK";
	font-style: Light;
	font-weight: 300;
	src: url(/assets/fonts/GSKPrecision-Light.woff2) format("woff2");
	unicode-range: U+0041-005A, U+0061-007A, U+0030-0039, U+0020-002F, U+003A-0040, U+005B-0060, U+007B-007E;
}

@font-face {
    font-display: swap;
	font-family: "GSK";
	font-style: normal;
	font-weight: 400;
	src: url(/assets/fonts/GSKPrecision-Regular.woff2) format("woff2");
	unicode-range: U+0041-005A, U+0061-007A, U+0030-0039, U+0020-002F, U+003A-0040, U+005B-0060, U+007B-007E;
}

@font-face {
    font-display: swap;
	font-family: "GSK";
	font-style: Bold;
	font-weight: 700;
	src: url(/assets/fonts/GSKPrecision-Bold.woff2) format("woff2");
	unicode-range: U+0041-005A, U+0061-007A, U+0030-0039, U+0020-002F, U+003A-0040, U+005B-0060, U+007B-007E;
}

/* Initialization */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Basis */
:root {
	font-size: 16 px;
    --max-width: 1200px;
    --side-padding: 40px;
	--margin-xxs: .25rem;
	--margin-xs: .5rem;
	--margin-s: .75rem;
	--margin-m: 1rem;
	--margin-l: 1.25rem;
	--margin-xl: 1.75rem;
	--margin-xxl: 2.5rem;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
	display: block;
}

body {
    background-color: #f0efed;
    color: #000;
    background-image: linear-gradient(to top, #d5d4d0 0%, #d5d4d0 1%, #eeeeec 31%, #efeeec 75%, #e9e9e7 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    font-family: "Noto Sans KR", "GSK", sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

div {
	display: block;
}

h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4 {
    font-weight: normal;
}

.form-group-item input[type="text"],
.form-group-item input[type="email"],
.form-group-item textarea,
.email-input-group select {
    max-width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.site-container {
    min-height: 1100px;
    display: flex;
    flex-direction: column;
}

/* 네비게이션 로고 */
.nav-logo {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;
    background-color: transparent;
    padding: 16px 0;
    width: 100%;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    will-change: transform;
}

.nav-logo img {
    width: 132px;
    height: 64px;
    object-fit: contain;
    margin-left: calc((100vw - var(--max-width)) / 2 + var(--side-padding));
}

/* 스크롤 시 로고 숨김 클래스 */
.nav-logo.hidden {
    transform: translateY(-120%);
    transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* 헤더 */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    height: 60px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--side-padding);
    width: 100%;
}

/* 메인 컨텐츠 */
.main-container {
    flex: 1;
    padding: 40px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
	position: 96px var(--side-padding) 40px;
}

.divider {
    height: 2rem;
}

.dividerSecond {
    margin: var(--margin-xxl) 0;
    position: relative;
    text-align: center;
    z-index: 1;
}

.dividerSecond:after {
    content: '';
    display: block;
    height: 4rem;
    left: 50%;
    position: relative;
    width: 1px;
    background-color: #d5d1ce;
}

.form-container {
    background-color: #fff;
    /* border-radius: 8px; */
    /*box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.16));
    padding: 100px 30px 30px 30px;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}


/* 폼 섹션 */
.form-section {
    margin-bottom: var(--margin-xl);
}

.form-section h2 {
    font-size: 1.25rem;
	font-weight: 600;
    color: #1d1d1b;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0efed;
}

.form-section h3 {
    font-size: 1rem;
	font-weight: 500;
    color: #1d1d1b;
    margin-bottom: var(--margin-m);
}

/* 폼 그룹 */
.form-group {
    margin-bottom: var(--margin-xl);
}

.form-group-item {
    margin-bottom: var(--margin-l);
}

/* 입력 필드 */
.form-group-item label {
    display: block;
    margin-bottom: var(--margin-xs);
	font-size: 1.25rem;
    font-weight: 500;
    color: #1d1d1b;
}

.form-group-item input[type="text"],
.form-group-item input[type="email"] {    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

/* text area */
.form-group-item textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
	line-height: 1.6;
    font-family: "Noto Sans KR", sans-serif;
    transition: border-color 0.3s;
    min-height: 120px;
    resize: vertical;
}

.form-group-item input[type="text"]:focus,
.form-group-item input[type="email"]:focus,
.form-group-item textarea:focus {
    border-color: #F36633;
    outline: none;
}

.form-group-item textarea {
    min-height: 120px;
    resize: vertical;
}

/* 파일 드롭 존 */
.file-drop-zone {
    position: relative;
    padding: 20px 20px 4px 20px;
    border: 2px dashed #ddd;
    border-radius: 4px;
    background-color: #f7f7f7;
    text-align: center;
    transition: all 0.3s ease;
}

.file-drop-zone.drag-over {
    background-color: #e8e8e8;
    border-color: #999;
}

.file-drop-zone input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.drop-zone-text {
    color: #666;
    font-size: 1rem;
    margin-bottom: var(--margin-m);
}

.drop-zone-sub {
    display: block;
    font-size: .75rem;
    color: #999;
    margin-top: var(--margin-l);
}

/* 파일 첨부 영역 */
/* .file-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
} */

.file-list {
    margin-top: 15px;
    text-align: left;
	font-size: .7em;
	line-height: 1.6;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background-color: #fff;
    border-radius: 4px;
    margin-bottom: 5px;
}

.file-item .file-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-item .remove-file {
    cursor: pointer;
    color: #666;
    padding: 2px 8px;
    border-radius: 3px;
}

.file-item .remove-file:hover {
    background-color: #eee;
}

.form-group-checkbox.toggle-checkbox {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.form-group-checkbox.toggle-checkbox label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    height: 24px;
    line-height: 24px;
    user-select: none;
    position: relative;
}

/* 기본 체크박스 숨기기 */
.form-group-checkbox.toggle-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* 커스텀 체크박스 */
.form-group-checkbox.toggle-checkbox label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: var(--margin-xs);
    border: 2px solid #f25218;
    border-radius: 4px;
    background-color: #fff;
    vertical-align: middle;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* 체크된 상태 */
.form-group-checkbox.toggle-checkbox input[type="checkbox"]:checked + label::before {
    background-color: #f25218;
}

/* 체크마크 */
.form-group-checkbox.toggle-checkbox input[type="checkbox"]:checked + label::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 4px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    display: block; /* 명시 */
}

/* 호버 */
.form-group-checkbox.toggle-checkbox label:hover::before {
    border-color: #f25218;
    background-color: rgba(242, 82, 24, 0.1);
}

/* 포커스 */
.form-group-checkbox.toggle-checkbox input[type="checkbox"]:focus + label::before {
    box-shadow: 0 0 0 2px rgba(242, 82, 24, 0.3);
}

/* reCAPTCHA */
.report-recaptcha {
    margin: var(--margin-xxl) auto 0 auto;
    display: flex;
    justify-content: flex-end;
}

/* 기본 숨김 클래스 */
.default-hidden {
    display: none;
}

/* 이메일 입력 그룹 */
.email-input-group {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.email-input-group input[type="text"] {
    min-width: 140px;
    width: 140px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* 이메일 도메인 선택 박스 */
.email-input-group select {
    width: 150px;
    height: auto;
    padding: 12px 35px 12px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
    appearance: none;
    background-image: url("/assets/img/chevron-down.svg");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    cursor: pointer;
}

/* 호버 */
.email-input-group select:hover {
    border-color: #f25218;
}

/* 포커스 */
.email-input-group select:focus {
    outline: none;
    border-color: #f25218;
    box-shadow: 0 0 0 2px rgba(242, 82, 24, 0.1);
}

/* @ 기호 박스 */
.email-at {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f7f7f7;
    font-size: 1rem;
    color: #1d1d1b;
}

/* 도메인 직접 입력 필드 */
#emailDomainDirect {
    display: none;
    width: 140px;
    order: 2;
}

#emailDomainDirect.active {
    display: block;
}

/* 도메인 선택 셀렉트 박스 */
#emailDomain {
    order: 3;
}

@media (max-width: 375px) {
    #emailDomain {
        font-size: .95rem;
    }
}

@media (max-width: 320px) {
    #emailDomain {
        font-size: .75rem;
    }
}

/* @ 기호 */
.email-at {
    order: 1;
}

/* 이메일 ID 입력 필드 */
#emailId {
    order: 0;
}

/* 이름 입력 필드 */
#reporterName {
    min-width: 140px;
    width: 170px;
    padding: 12px;
    margin-bottom: var(--margin-xl);
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* 제출 버튼 */
#submitReport {
    width: 100%;
	margin-top: var(--margin-xl);
    padding: 15px;
    font-size: 1.75rem;
	font-weight: 500;
	letter-spacing: .2px;
    border-radius: 4px;
    cursor: not-allowed;
    transition: all 0.3s ease;
    background-color: #cccccc;
    border: none;
    color: #969696;
}

#submitReport.active {
    background-color: #f25218;
    color: white;
    cursor: pointer;
}

#submitReport.active:hover {
    background-color: #e14810;
}

/* 개인정보 수집이용 동의 섹션 스크롤박스 */
.consentPersonalInfo .content-wrapper {
    max-height: 250px;
    overflow-y: scroll;
    padding: 0 20px 0 0;
    border: 1px solid #ddd;
    border-radius: 0px;
    background-color: #fff;
}

.consentPersonalInfo .content-wrapper.fullText {
    padding: 24px;
}

.consentPersonalInfo .content-wrapper.noFrame {
    max-height: 100%;
    overflow-y: clip;
    border: none;
}

/* 스크롤바 스타일링 */
.consentPersonalInfo .content-wrapper::-webkit-scrollbar {
    width: 8px;
}

.consentPersonalInfo .content-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.consentPersonalInfo .content-wrapper::-webkit-scrollbar-thumb {
    background: #f25218;
    border-radius: 4px;
}

.consentPersonalInfo .content-wrapper::-webkit-scrollbar-thumb:hover {
    background: #e14810;
}

/* Firefox 스크롤바 */
.consentPersonalInfo .content-wrapper {
    scrollbar-width: thin;
    scrollbar-color: #f25218 #f1f1f1;
}

@media (max-width: 768px) {
    .consentPersonalInfo .content-wrapper {
        max-height: 300px;
        padding: 16px;
    }
}

/* 개인정보 수집이용 동의 섹션 */
.consentPersonalInfo {
    background-color: transparent;
    border-radius: 8px;
    padding: 0;
    margin-bottom: 0;
	line-height: 1.6;
	letter-spacing: -.2px;
}

.consentPersonalInfo h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin-bottom: var(--margin-xl);
}

.consentPersonalInfo h3 {
    font-size: 1.21rem;
    font-weight: 500;
    color: #f25218;
    margin: 24px 0 16px;
	margin-top: var(--margin-xxs);
	margin-bottom: var(--margin-xxs);
}

.consentPersonalInfo h3 span {
	word-spacing: -.08rem;
}

.consentPersonalInfo p {
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
    margin: var(--margin-m) var(--margin-m);
}

.consentPersonalInfo a {
    color: #f25218;
    text-decoration: none;
    display: inline-block;
	font-size: 1rem;
}

.consentPersonalInfo a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.personalInfoLink {
    margin: 1rem 0;
    display: inline-block;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f5f5f5;
    transition: all 0.3s ease;
}

.personalInfoLink:hover {
    background-color: #e9e9e9;
}

.personalInfoLink a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.5rem;
    color: #f25218;
    text-decoration: none;
    font-size: 1rem;
	margin: 0;
	font-weight: 500;
	text-underline-offset: 4px;
}

.personalInfoLink i {
    font-size: 0.9em;
    color: #666;
}

.consentPersonalInfo ul {
    list-style: none;
	font-size: 1rem;
    padding-left: 0;
    margin-bottom: var(--margin-m);
	text-indent: 1em;
}

.consentPersonalInfo ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: var(--margin-xxs);
    color: #2f2f2f;
}

.consentPersonalInfo ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f25218;
}

.consentPersonalInfo ul ul {
	font-size: 1rem;
    padding-left: 0;
    margin-top: var(--margin-xxs);
}

.consentPersonalInfo ul ul li::before {
    content: "\2013";
    position: absolute;
    left: 0;
    color: #f25218;
}

/* 이메일 텍스트 */
.fullText ul ul li span {
    text-underline-offset: .25rem;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-color: #f25218;
    text-decoration: underline solid #f25218;
    -webkit-text-decoration-line: underline;
    -webkit-text-decoration-style: solid;
    -webkit-text-decoration-color: #f25218;
    text-shadow: 1px 1px 2px rgba(242, 82, 24, 0.3);
}
/* 밑줄 효과 */
.addUnderline {
	text-underline-offset: .25rem;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-color: #f25218;
	text-decoration: underline solid #f25218;
	text-shadow: 1px 1px 2px rgba(242, 82, 24, 0.3);
    -webkit-text-decoration-line: underline;
    -webkit-text-decoration-style: solid;
    -webkit-text-decoration-color: #f25218;
}

.hasChildP {
	margin-bottom: 4px !important;
}

/* 작은 텍스트 */
.littleSmallP {
	font-size: .9rem !important;
}

/* 더 작은 텍스트 */
.littleMoreSmallP {
	font-size: .8rem !important;
}

/* span 색상 */
.giveColor {
	color: #f25218;
}

/* 체크박스 그룹 */
.consentPersonalInfo .form-group-checkbox.toggle-checkbox {
    background-color: #f7f7f7;
    border-radius: 6px;
    padding: 16px 24px;
    margin-top: var(--margin-m);
}

/* 동의 테이블 */
.consentTable {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    margin: var(--margin-l) 0;
    background-color: #fff;
	font-size: 1rem;
    word-break: keep-all;
}

/* 테이블 열 너비 설정 */
.consentTable th:first-child,
.consentTable td:first-child {
    width: 18%;
}

.consentTable th:nth-child(2),
.consentTable td:nth-child(2) {
    width: 12%;
}

.consentTable td:nth-child(3),
.consentTable td:nth-child(4),
.consentTable td:nth-child(5),
.consentTable td:last-child {
    text-align: left;
}

.consentTable td:nth-child(3),
.consentTable td:nth-child(4),
.consentTable td:nth-child(5) {
    vertical-align: top;
}

.consentTable th,
.consentTable td {
    padding: .75rem;
    text-align: left;
    border: 1px solid #ddd;
    color: #333;
    line-height: 1.6;
}

.consentTable td {
    vertical-align: middle;
    text-align: center;
}

.consentTable th {
    background-color: #f7f7f7;
    font-weight: 500;
	text-align: center;
    color: #222;
}

.consentTable tr:hover {
    background-color: #fafafa;
}

.consentTable td ol {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.consentTable td ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.consentTable td ul li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 8px;
}

.consentTable td ul li:last-child {
    margin-bottom: 0;
}

.consentTable td ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f25218;
}

.table-footer-list li,
.table-footer-list li a {
    font-size: .8rem;
}

/* 위 첨자 */
sup {
	font-size: .6rem;
}

/* GSK 연락처 명함*/
.consentContact {
    background-color: #fff;
    border-radius: 12px;
    padding: 24px;
    margin: 16px 0;
    max-width: 360px;
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.16));
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.consentContact:hover {
    box-shadow: 0 4px 12px rgba(242, 82, 24, 0.1);
    transform: translateY(-2px);
}

.consentContact h3 {
    color: #1d1d1b;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f25218;
}

.consentContact p {
    color: #666;
    font-size: 0.9rem;
    margin: 8px 0;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.consentContact p a {
	margin: 0;
	text-underline-offset: 4px;
}

.consentContact p::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: #f25218;
    border-radius: 50%;
}


/* 개인정보 수집 이용 동의 섹션 */
#consentProcessingH2 {
    display: inline;
    background: #f25218;
	color: #fff;
    padding: 0 4px;
    margin: 1rem 0;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--margin-m);
}

.form-group.consentProcessing {
    background-color: #f7f7f7;
    border-radius: 8px;
    padding: 32px;
    margin-top: 2rem;
}

.form-group.consentProcessing h2 {
    /* color: #1d1d1b; */
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: var(--margin-xs);
}

.form-group.consentProcessing h3 {
    color: #f25218;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: var(--margin-l);
	margin-top: var(--margin-m);
}

.form-group.consentProcessing h4 {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.form-group.consentProcessing h4 span {
    color: #f25218;
    font-weight: 500;
}

.form-group-item.consentFirst,
.form-group-item.consentSecond,
.form-group-item.consentThird,
.form-group-item.consentFourth {
    background-color: #fff;
    border-radius: 6px;
    padding: 24px;
    margin-top: 16px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-group-item.consentSuasion {
    opacity: 1;
    max-height: 200px; /* 실제 콘텐츠 높이보다 충분히 큰 값 */
    transform: translateY(0);
    visibility: visible;
    transition: all 0.3s ease-in-out;
    background-color: #fff5f2;
    border: 1px solid #ffe5de;
    border-radius: 6px;
    padding: 20px;
    margin-top: 24px;
    overflow: hidden;
}

.form-group-item.consentSuasion.hidden {
    opacity: 0;
    max-height: 0;
    transform: translateY(-20px);
    visibility: hidden;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-width: 0;
    pointer-events: none;
}

.form-group-item.consentSuasion p {
    color: #f25218;
    font-size: 0.95rem;
	font-weight: 500;
    line-height: 1.5;
    margin-bottom: 8px;
}

.form-group-item.consentSuasion p:last-child {
    margin-bottom: 0;
}

/* 동의 체크 후 메시지 팝업 */
.message-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(0);
    background-color: rgba(255, 255, 255, 1.0);
    padding: 15px 25px;
    border-radius: 1.25rem;
    border: 3px solid #f25218;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    margin: 0;
    width: auto;
    max-width: 90vw;
    text-align: center;
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.16));
    box-sizing: border-box;
}

.message-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) translateY(0);
}

.message-popup.hidden {
    display: none;
    transform: translate(-50%, -50%) translateY(-20px);
}

.message-popup .message-content {
    text-align: center;
    white-space: nowrap;
}

.message-popup .message-content p {
    margin: 5px 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #000;
}

@media (max-width: 768px) {
    .message-popup {
        padding: 12px 20px;
    }

    .message-popup .message-content p {
        font-size: 0.9rem;
    }
}

/* 숨겨진 섹션들의 트랜지션 */
.form-section.reportContent,
.form-section.contactInfo,
.form-section.recaptcha,
.form-section.submit {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    display: none;
}

.form-section.reportContent.show,
.form-section.contactInfo.show,
.form-section.recaptcha.show,
.form-section.submit.show {
    opacity: 1;
    transform: translateY(0);
}

.form-section.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
    height: auto;
    margin: initial;
}

#dropZoneText {
    display: block;
}

#dropZoneText-mobile {
    display: none;
}

.form-group-item textarea {
    min-height: 8rem;
    height: auto;
    overflow-y: hidden;
    resize: none;
    transition: height 0.1s ease-in-out;
}

/* 작성 가이드 토글 버튼 */

.description-guide-wrapper {
    background-color: #f7f7f7;
    border-radius: 6px;
}

.description-guide-wrapper h3 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-guide {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #f25218;
    transition: transform 0.3s ease;
}

.toggle-guide:hover {
    opacity: 0.8;
}

.toggle-guide.active i {
    transform: rotate(180deg);
}

/* 설명 리스트 래퍼 */
.description-list-wrapper {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-out;
    opacity: 0;
}

.description-list-wrapper.show {
    max-height: 800px; /* 충분한 높이 */
    opacity: 1;
    transition: max-height 0.3s ease-in, opacity 0.3s ease-in;
    padding: 0 var(--margin-m);
}

.description-list-wrapper.hidden {
    display: none;
}

/* 작성 가이드*/
.description-guide-wrapper {
    word-break: keep-all;
}

.description-guide-wrapper h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-top: var(--margin-xxs);
    margin-bottom: var(--margin-xxs);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
}

.description-guide-wrapper h3 .open-guide-window {
    background: none;
    border: none;
    padding: 4px 8px;
    cursor: pointer;
    color: #f25218;
    transition: all 0.2s ease;
}

.description-guide-wrapper h3 .open-guide-window:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.description-list-wrapper .description-list {
    counter-reset: item;
    padding-left: 0;
}

.description-list-wrapper .description-list > li {
    counter-increment: item;
    margin-bottom: var(--margin-xl);
    position: relative;
    padding-left: 2em;
    list-style: none;
}

.description-list-wrapper .description-list > li::before {
    content: counter(item) ".";
    position: absolute;
    left: var(--margin-m);
    color: #f25218;
    font-weight: 400;
}

.description-list-wrapper .description-list .detail-list {
    padding-left: var(--margin-m);
    margin-top: var(--margin-xxs);
}

.description-list-wrapper .description-list .detail-list li {
    margin-bottom: 5px;
    position: relative;
    padding-left: var(--margin-s);
    margin:0;
    color: rgba(29, 29, 27, 0.9);
}

.description-list-wrapper .description-list .detail-list li::before {
    content: '•';
    position: absolute;
    left: -4px;
    color: #f25218;
    opacity: 0.8;
}

/* 새 창 스타일 */
.guide-window-content {
    padding: 24px;
    background: #fff;
    font-family: "Noto Sans KR", "GSK", sans-serif;
}

.guide-window-content h2 {
    color: #f25218;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.description-guide-wrapper p {
    font-size: .9rem;
    color: rgba(29, 29, 27, 0.8);
    line-height: 1.6;
    margin: var(--margin-s) var(--margin-xl);
}

.description-list {
    font-size: 1rem;
    color: rgba(29, 29, 27, 0.8);
    line-height: 1.6;
    margin: var(--margin-s) 0;
    padding-left: var(--margin-m);
    list-style: none;
}

.description-list li {
    position: relative;
    padding-left: var(--margin-s);
    margin-bottom: var(--margin-xxs);
    list-style: none;
}

.description-list ol+ul {
    margin-top: var(--margin-m);
    margin-bottom: var(--margin-m);
}

.description-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(242, 82, 24, 0.8);
}

.description-list li:last-child {
    margin-bottom: 0;
}

/* 강조 텍스트 */
.description-list strong {
    color: rgba(29, 29, 27, 1.0);
    font-weight: 400;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .description-list {
        font-size: .75rem;
        padding-left: var(--margin-s);
    }
    
    .description-list li {
        padding-left: var(--margin-xs);
    }
}

/* 푸터 */
.footer-container {
    width: 100%;
    padding: 24px 16px;
    margin-top: 48px;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-content p {
    font-size: .7rem;
    color: rgba(29, 29, 27, 0.6);
    line-height: 1.5;
    margin-bottom: 4px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-content p:last-child {
    margin-bottom: 0;
}

.footer-content p:hover {
    color: rgba(29, 29, 27, 0.8);
}

/* final submit 상태 모달 */
/* 상태 모달 */
.status-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.status-modal.show {
    opacity: 1;
    visibility: visible;
}

.status-modal.hidden {
    display: none;
}

.status-modal .modal-content {
    text-align: center;
}

.status-modal p {
    margin: 1rem 0;
    font-size: 1.1rem;
    color: #333;
}

.status-modal .sub-text {
    font-size: 0.9rem;
    color: #666;
}

/* 로딩 스피너 */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #f25218;
    border-radius: 50%;
    margin: 0 auto 1rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 성공 아이콘 */
.success-icon {
    width: 50px;
    height: 50px;
    background: #4CAF50;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    line-height: 50px;
    margin: 0 auto 1rem;
}

/* 에러 아이콘 */
.error-icon {
    width: 50px;
    height: 50px;
    background: #f44336;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    line-height: 50px;
    margin: 0 auto 1rem;
}

/* 모달 배경 오버레이 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* 제출 버튼 상태 */
#submitReport {
    position: relative;
    transition: all 0.3s ease;
}

#submitReport:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* 스크린리더 숨김 처리 */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}



/* 완료 화면 */
.completion-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #f0efed;
    background-image: linear-gradient(to top, #d5d4d0 0%, #d5d4d0 1%, #eeeeec 31%, #efeeec 75%, #e9e9e7 100%);
    z-index: 9999;
    display: none;
}

.completion-screen.show {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* 최소 높이 설정 */
}

.completion-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem var(--side-padding);
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
}

.completion-content {
    text-align: center;
    margin-top: 15vh;
}

.completion-content h1 {
    color: #f25218;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.completion-content .main-message {
    font-size: 1.75rem;
    color: #333;
    font-weight: 600;
    margin-top: 1.9rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.16));
}

/* 하단 메시지와 푸터 컨테이너 */
.bottom-section {
    margin-top: auto; /* 상단 여백을 자동으로 설정하여 하단에 고정 */
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.bottom-message {
    text-align: center;
    padding: 2rem 0;
    color: #666;
    font-size: 1.13rem;
}

.footer-container {
    background-color: transparent;
    padding: 2rem 0;
    width: 100%;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--side-padding);
    text-align: center;
}

.footer-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-content p:last-child {
    margin-bottom: 0;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .completion-content h1 {
        font-size: 2rem;
    }
    
    .completion-content .main-message {
        font-size: 1.1rem;
    }

    .bottom-message {
        padding: 1.5rem 0;
    }

    .footer-container {
        padding: 1.5rem 0;
    }
}






/* 반응형 */
@media (max-width: 1200px) {
    .nav-logo img {
        margin-left: var(--side-padding);
    }
}

/* 모바일 max-width: 768px */
@media (max-width: 768px) {
    :root {
        --side-padding: 20px;
    }

    .main-container {
        padding: 72px var(--side-padding) 20px;
    }

	.header-container {
        height: 4px;
    }

    .nav-logo {
        padding: 12px 0;
    }

    .nav-logo img {
        width: 100px;
        height: 48px;
        margin-left: var(--side-padding);
    }

    .popup-container {
        padding-top: 96px;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .form-group-checkbox.toggle-checkbox {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
		font-size: 1.25rem;
		padding-top: .25rem;
    }

	/* 체크박스 아이템 컨테이너 */
    .form-group-checkbox-item-left,
    .form-group-checkbox-item-right {
        width: 100%;
        display: flex;
        justify-content: flex-start;
    }

    /* 체크박스 레이블 */
    .form-group-checkbox.toggle-checkbox label {
        justify-content: flex-start;
        width: 100%;
        font-size: .9rem;
    }

    .form-group-checkbox.toggle-checkbox label::before {
        width: 20px;
        height: 20px;
    }

    .form-group-checkbox.toggle-checkbox input[type="checkbox"]:checked + label::after {
        left: 7px;
        top: 4px;
        width: 5px;
        height: 10px;
    }

	.email-input-group {
        flex-wrap: nowrap;
    }
    
    .email-input-group input[type="text"] {
        width: 100%;
        min-width: 30%;
    }

	.email-input-group select {
        width: 100%;
        min-width: 30%;
        padding: 10px 30px 10px 10px;
        background-size: 14px;
        height: 44px;
    }
    
    .email-at {
        width: 64px;
        margin: 8px 0;
    }

	.consentPersonalInfo {
        padding: 24px 16px;
    }

    .consentPersonalInfo h2 {
        font-size: 1.3rem;
    }

    .consentPersonalInfo h3 {
        font-size: 1.1rem;
    }

    .consentPersonalInfo p,
    .consentPersonalInfo ul li {
        font-size: 0.95rem;
    }

	.consentPersonalInfo p a {
		font-size: 0.85rem;
	}

	.personalInfoLink a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

	.consentTable {
        display: block;
        white-space: normal;
    }

    .consentTable th,
    .consentTable td {
        padding: 12px;
        font-size: 0.75rem;
    }

    .consentTable td a {
        font-size: 0.75rem;
    }

    .consentTable td ul li {
        white-space: normal;
        padding-left: 12px;
    }

	.consentContact {
        padding: 20px;
        margin: 12px 0;
    }

    .consentContact h3 {
        font-size: 1rem;
    }

    .consentContact p {
        font-size: 0.85rem;
    }

	.form-group.consentProcessing {
        padding: 24px 16px;
        margin-top: 1rem;
    }

    .form-group.consentProcessing h2 {
        font-size: 1.3rem;
    }

    .form-group.consentProcessing h3 {
        font-size: 1.2rem;
    }

    .form-group.consentProcessing h4 {
        font-size: 1rem;
    }

    .form-group-item.consentFirst,
    .form-group-item.consentSecond,
    .form-group-item.consentThird,
    .form-group-item.consentFourth {
        padding: 20px 16px;
    }

    #dropZoneText {
        display: none;
    }

    #dropZoneText-mobile {
        display: block;
    }

    .form-group-item.consentSuasion p {
        font-size: 0.9rem;
    }
	.footer-container {
        padding: 16px;
        margin-top: 32px;
    }

    .footer-content {
        max-width: 100%;
    }

    .footer-content p {
        font-size: .55rem;
        margin-bottom: 3px;
    }

}

/* 모바일 max-width: 375px */
@media (max-width: 375px) {
    :root {
        --side-padding: 12px;
    }

    .main-container {
        padding: 60px var(--side-padding) 16px;
    }

    .form-container {
        padding: 16px 12px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group-item {
        margin-bottom: 16px;
    }

    .form-group-item label {
        font-size: 1rem;
    }

    /* 텍스트 입력 필드 */
    .form-group-item input[type="text"],
    .form-group-item input[type="email"] {
        padding: 8px !important;
        font-size: 0.95rem !important;
    }

    /* 텍스트 영역 */
    .form-group-item textarea {
        padding: 8px;
        font-size: 0.95rem;
        min-height: 100px;
    }

    /* 파일 드롭 존 */
    .file-drop-zone {
        padding: 16px 12px 4px 12px;
    }

    /* 체크박스 그룹 */
    .form-group-checkbox.toggle-checkbox {
        padding: 12px;
        gap: 8px;
    }

    /* 체크박스 레이블 */
    .form-group-checkbox.toggle-checkbox label {
        font-size: 0.9rem;
    }
    

    /* 이메일 입력 그룹 */
    .email-group {
        margin-top: 25px;
    }

    .email-input-group {
        gap: 4px;
    }

    .email-input-group input[type="text"],
    .email-input-group select {
        padding: 8px;
        font-size: 0.95rem;
        height: 36px;
    }

    .email-at {
        width: 35px;
        height: 36px;
        font-size: .8rem;
    }

    /* 개인정보 수집이용 동의 섹션 */
    .consentPersonalInfo {
        padding: 16px 12px;
    }

    .consentPersonalInfo h2 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .consentPersonalInfo h3 {
        font-size: 1rem;
        margin: 16px 0 8px;
    }

    .consentPersonalInfo p,
    .consentPersonalInfo ul li {
        font-size: 0.9rem;
    }

    /* 테이블 */
    .consentTable {
        overflow-x: visible;
        white-space: normal;
        font-size: .5rem;
    }

    .consentTable th,
    .consentTable td {
        padding: 8px;
        font-size: 0.9rem;
    }

    /* GSK 연락처 */
    .consentContact {
        padding: 16px;
        margin: 12px 0;
    }

    /* 동의 처리 섹션 */
    .form-group.consentProcessing {
        padding: 16px 12px;
    }

    .form-group-item.consentFirst,
    .form-group-item.consentSecond,
    .form-group-item.consentThird,
    .form-group-item.consentFourth {
        padding: 16px 12px;
    }

    .form-group-item.consentSuasion {
        padding: 12px;
    }

    /* 제출 버튼 */
    #submitReport {
        margin-top: 20px;
        padding: 12px;
        font-size: 1.5rem;
    }

    /* 푸터 */
    .footer-container {
        padding: 16px 12px;
        margin-top: 32px;
    }

    .footer-content p {
        font-size: 0.5rem;
    }

    .report-recaptcha {
        justify-content: center;
    }
}

/* 전체 페이지 스크롤 모멘텀 */
html {
    scroll-behavior: smooth;
}

body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* iOS 모멘텀 스크롤 */
}

/* 특정 컨테이너에 대한 스크롤 모멘텀 */
.main-container,
.form-container,
.form-wrapper {
    overflow-y: clip;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* 스크롤바 커스터마이징 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* Firefox 스크롤바*/
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.05);
}

/* 폰트어썸 아이콘 */
.fa {
    font-size: 1.2rem;
}

.fas {
    -moz-osx-font-smoothing:grayscale;
    -webkit-font-smoothing:antialiased;
    display: inline-block;
    width: 18px;
    height: 18px;
}

.fa-globe:before {
    content: url(/assets/img/globe.svg);
}

.fa-chevron-down:before {
    content: url(/assets/img/chevron-down.svg);
}

.fa-chevron-down {
    width: 11px;
    height: 14px;
}

.fa-external-link-alt:before {
    content: url(/assets/img/arrow-up-right-from-square-solid.svg);
}

.fa-external-link-alt {
    width: 11px;
}

