@charset "UTF-8";

/*!

    YDITS Site

    Copyright (C) よね/Yone

*/

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 4rem 0;
    background-color: #303030;
    color: #f0f0f0;
}

.hero__title {
    font-size: 3rem;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8rem;
    padding: 8rem 2rem;
}

.main__section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 1024px;
}

.section__title {
    display: flex;
    gap: 1rem;
    font-size: 2rem;
}

.section__title--bar::before {
    display: block;
    width: 4px;
    height: auto;
    border-radius: 2px;
    background-color: #202020;
    content: "";
}