* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    /* overflow: hidden; */
}

.section {
    /* height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    color: white;
}
.scroll-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 10px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.scroll-btn:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* 활성화된 버튼의 스타일 */
.scroll-btn.active {
    background-color: rgba(255, 255, 255, 1); /* 버튼 활성화 시 배경색 완전히 불투명 */
}

/* 푸터 스타일 */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background-color: #333;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.footer-hidden {
    transform: translateY(100%);
}



/*  */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    height: 100%;
    /* overflow: hidden; */
}
.section {
    /* height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    color: white;
}
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 350px !important; /* 원하는 높이로 조정 가능 */
    background-color: #333;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}
.footer-hidden {
    transform: translateY(100%);
}


/* 동그라미 버튼 스타일 */
.scroll-btn-container {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.scroll-btn {
    width: 10px;
    height: 10px;
    background-color: #D9D9D9;
    border-radius: 50%;
    margin: 10px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.scroll-btn.active {
    background-color: #EE3649;
    border: 1px solid #EE3649;
}

    .footer {
        position: static; /* 모바일에서는 푸터 고정하지 않음 */
    }


    /* 240415 메인에서만 로고 위치 조정 */

.header__logo{
	padding-top: 6px !important;
}
@media all and (max-width: 768px) {
    .header__logo{
	padding-top: 2px !important;
}
}