/* Poppinsフォントを適用 */
body {
    font-family: 'Poppins', sans-serif;
}

/*
 * LPコンテナの設定
 */
.lp-container {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
    /* スクロールバーを非表示にしつつ機能は維持 */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.lp-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/*
 * LPページの設定
 */
.lp-page {
    scroll-snap-align: start;
    height: 100vh;
    width: 100vw;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

/* 背景画像用のオーバーレイ */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* コンテンツはオーバーレイの前面に配置 */
.content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 900px;
}

/* LPナビゲーションドット */
.lp-nav {
    position: fixed;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 10;
}

.lp-nav a {
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lp-nav a.active {
    opacity: 1;
    transform: scale(1.2);
}

/* アニメーションの定義 */
@keyframes fade-in-down {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* アニメーションクラス（Tailwindとの併用）*/
.animate-fade-in-down {
    animation: fade-in-down 1s ease-out both;
}

.animate-fade-in-up {
    animation: fade-in-up 1s ease-out 0.5s both;
}