/* 전체 기본 스타일 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Variable', 'Malgun Gothic', '맑은 고딕', Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.4;
    overflow-x: hidden;
    word-break:keep-all;
    font-weight: bold;
}

input, p, div { font-weight: bold; }

/* 전역 스크롤바 투명 처리: 모든 스크롤 구간에서 배경과 손잡이를 투명화 */
html,
body,
* {
    scrollbar-width: none; /* Firefox: 스크롤 자체를 표시하지 않도록 설정 */
    scrollbar-color: transparent transparent; /* Firefox: 트랙과 손잡이를 모두 투명하게 지정 */
}

/* WebKit 기반 브라우저 전역 스크롤 투명 설정 */
*::-webkit-scrollbar {
    width: 0; /* 스크롤 영역 너비 0으로 설정해 시각적으로 숨김 */
    background: transparent; /* 스크롤 영역 배경을 투명화 */
}

*::-webkit-scrollbar-track {
    background: transparent; /* 스크롤 트랙 배경 투명 처리 */
}

*::-webkit-scrollbar-thumb {
    background-color: transparent; /* 스크롤 손잡이 투명 처리 */
    border-radius: 4px; /* 손잡이 모서리 형태 유지 */
    border: 0; /* 불필요한 테두리 제거 */
}

*::-webkit-scrollbar-thumb:hover {
    background-color: transparent; /* 호버 시에도 투명 유지 */
}

.area-all { max-width:800px; width:100%; margin:0 auto;background: #e70014;}
.area-all img { width:100%; vertical-align: top; }
.movie { background:black }
.movie iframe { width:100%; height:500px;}
.movie-go { position:relative; }
.movie-go button { position:absolute; border:0;font-size: 0; width: 43%;height: 32%; background: none;}
.movie-go button:nth-child(2) { left:5%; top:15% }
.movie-go button:nth-child(3) { left:52%; top:15% }
.movie-go button:nth-child(4) { left:5%; top:66% }
.movie-go button:nth-child(5) { left:52%; top:66% }