body {
    padding-top: 0px;
    margin: 0px;
    background-color: white;
}



/******* ここからメインエリアのスタイル ********/
main {
    text-align: center;
}

#header {
    background-color: white;
    padding-left: 10px;
}

#header:not(.scrolled) {
    box-shadow: none;
}

.context-menu-item:hover {
    background-color: #af58ff54;
}

.hidden {
    display: none !important;
}

.tab.left {
    background-color: transparent;
    width: 90%;
    height: 36px;
    border-radius: 18px 18px 18px 18px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    color: black;

    span.left {
        margin-right: 10px;
    }

    span.right {
        margin-left: 10px;
    }

    p {

        padding-left: 10px;
        margin: 0px;
    }
}

.main-view {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 60px;
}

.top-logo-section {
    margin-top: 60px;
    margin-bottom: 40px;

    .top-logo {
        width: 100px;
        filter: drop-shadow(4px 4px 6px #00000028);
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .top-logo:hover {
        transform: scale(1.2);
    }
}

.top-catchcopy-section {
    h1 {
        margin: 0px;
        background: linear-gradient(to right, #0ca9b1, #86c435);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}


.description-section {
    margin-top: 40px;

    p {
        font-size: larger;
    }
}