body {
    margin: 0;
    font-family: Inter, sans-serif;
    background-color: #000000;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 1728px;
    min-height: 1603px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 50px; /* Adjusted for desktop to match design */
}

.ichidot-logo-header {
    width: 108px; /* Adjusted for desktop */
    height: 44px; /* Adjusted for desktop */
    max-width: 100%;
    height: auto;
}

.main-content {
    text-align: center;
    margin-top: 40px; /* Adjusted for desktop */
    padding: 0 20px; /* Add some horizontal padding */
    box-sizing: border-box;
}

.top-main-image {
    width: 100%;
    height: 920px; /* Set fixed height for PC */
    object-fit: cover; /* Ensure the image covers the area */
    margin-bottom: 50px; /* Adjust spacing as needed */
}

.coming-soon-text {
    font-size: 24px; /* Default for desktop */
    font-weight: 500;
    line-height: 3em;
    margin-bottom: 13px; /* Adjusted for desktop */
}

.sns-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sns-text {
    font-size: 24px; /* Default for desktop */
    font-weight: 500;
    line-height: 3em;
    margin: 0; /* Remove top/bottom margin */
}

.sns-icon {
    width: 42.71px; /* Default for desktop */
    height: 42.71px; /* Default for desktop */
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    background-color: transparent;
    padding: 10px;
    box-sizing: border-box;
}

.footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 71px;
    margin-top: 50px; /* Adjust as needed */
    /* padding-top: 1263px; */ /* Default for desktop */
    /* position: absolute; */
    /* bottom: 0; */
}

.ichidot-logo-footer {
    width: 152px; /* Default for desktop */
    height: 62px; /* Default for desktop */
    max-width: 100%;
    height: auto;
}

.footer-text {
    font-size: 16px; /* Default for desktop */
    font-weight: 400;
    line-height: 2em;
    text-align: center;
    max-width: 900px; /* Default for desktop */
    padding: 0 20px; /* Add some horizontal padding */
    box-sizing: border-box;
}

.coming-soon-text a,
.footer-text a {
    color: #FFFFFF;
    /* text-decoration: none; */ /* Optionally remove underline */
}

/* Mobile styles */
@media (max-width: 768px) {
    .container {
        min-height: auto;
        padding-bottom: 50px; /* Add some space at the bottom */
    }

    .header {
        padding-top: 30px; /* Adjusted for mobile to match design */
    }

    .ichidot-logo-header {
        width: 90px; /* Adjusted for mobile to match PC's perceived size */
        height: auto;
    }

    .main-content {
        margin-top: 20px; /* Adjusted for mobile */
    }

    .top-main-image {
        height: auto; /* Revert to auto height for mobile */
        margin-bottom: 30px; /* Adjust spacing as needed for mobile */
    }

    .coming-soon-text {
        font-size: 18px;
        line-height: 1.8em;
        margin-bottom: 7px; /* Adjusted for mobile */
    }

    .sns-text {
        font-size: 18px;
        line-height: 1.8em;
        margin: 0; /* Ensure no top/bottom margin */
    }

    .sns-icon {
        width: 30px;
        height: 30px;
        padding: 5px;
    }

    .footer {
        /* position: static; */ /* Remove absolute positioning for mobile */
        padding-top: 50px; /* Adjusted for mobile */
        margin-top: 20px; /* Adjust as needed for mobile */
        gap: 30px;
    }

    .ichidot-logo-footer {
        width: 100px;
        height: auto;
    }

    .footer-text {
        font-size: 12px;
        line-height: 1.5em;
        max-width: 90%;
    }
} 