
.home,
.home body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.home body {
    overflow: hidden; /* 메인 컨테이너를 스크롤 영역으로 사용 */
}

.home .site-header,
.home .inside-header,
.home .nav-float-right .inside-header {
    display: none !important; /* 프론트 페이지에서 테마 헤더 숨김(데스크톱/모바일) */
}

.home .site-footer {
    display: none;
}

.home .site,
.home .site-content,
.home .site-content .content-area,
.home .site-main,
.home .inside-article,
.home .entry-content,
.home .grid-container,
.home .inside-article .grid-container,
.home .site-content .grid-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.home .site-content .content-area {
    float: none;
}

.main-fullpage {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    scroll-snap-type: y mandatory;
    overflow-y: auto;
}

.main-fullpage .main-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    scroll-snap-align: start;
    position: relative;
}

.main-fullpage .main-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.main-footer-note {
    margin-top: 32px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
}

.main-fullpage .main-section::after {
    content: "▼";
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    animation: scroll-cue 1.6s infinite;
    pointer-events: none;
}

.main-fullpage .main-section:last-of-type::after {
    display: none;
}

@keyframes scroll-cue {
    0%, 20% { opacity: 0; transform: translate(-50%, 6px); }
    40%, 60% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 6px); }
}

/* 고지 블록 */
.gp-child-disclosure {
    max-width: 760px;
    margin: 48px auto 32px;
    padding: 28px 24px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    background: #fafafa;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    display: block;
    line-height: 1.6;
    white-space: normal;
    min-height: 120px; /* 라인 표시 시 스크롤 점프 방지 */
    overflow: hidden;
}

.gp-child-disclosure strong {
    font-weight: 700;
}

.gp-child-disclosure .typed-cursor {
    font-weight: 300;
}
