/* CSS */
.coming-soon {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
    padding: 20px;
}

.coming-soon__inner {
    max-width: 800px;
    width: 100%;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.coming-soon__logo {
    margin-bottom: 40px;
}

.coming-soon__logo img {
    max-width: 150px;
    height: auto;
}

.coming-soon__content {
    margin-bottom: 60px;
}

.coming-soon__title {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.1em;
}

.coming-soon__message {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.coming-soon__progress {
    max-width: 400px;
    height: 4px;
    background: #eee;
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.progress-bar {
    width: 30%;
    height: 100%;
    background: #45be2e;
    border-radius: 2px;
    animation: progress 2s ease-in-out infinite;
}

.coming-soon__footer {
    color: #888;
    font-size: 14px;
}

/* アニメーション */
@keyframes progress {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(400%);
    }
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .coming-soon__inner {
        padding: 30px 20px;
    }

    .coming-soon__title {
        font-size: 36px;
    }

    .coming-soon__message {
        font-size: 16px;
    }

    .coming-soon__logo img {
        max-width: 160px;
    }
}

/* オプション：背景パターン */
.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(#45be2e 1px, transparent 1px),
        radial-gradient(#45be2e 1px, transparent 1px);
    background-position: 0 0, 25px 25px;
    background-size: 50px 50px;
    opacity: 0.1;
}