body {
    margin: 0;
    font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Yu Gothic", sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
}

main {
    flex: 1;
    margin-top: 10vh;
    margin-top: 10dvh;
}

input {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Yu Gothic", sans-serif;
}

.input-wrapper {
    display: flex;
    flex-direction: column-reverse;
}

a,
a:visited,
a:hover,
a:active {
    color: #000;
    text-decoration: none;
}

header {
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 10vh;
    height: 10dvh;
    background-color: #fff;
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 100vw;
    height: 10vh;
    height: 10dvh;
}

.user-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 100%;
    object-fit: cover;
}

.input-s {
    width: 2rem;
}

.burger-mask {
    position: absolute;
    top: 0;
    left: -100%;
    background-color: #fff;
    transition: .3s;
    height: 100vh;
    height: 100dvh;
    width: 100vw;
}

.burger-menu {
    position: absolute;
    display: flex;
    flex-direction: column;
    height: 90vh;
    height: 90svh;
    width: 100vw;
    gap: 2rem;
    top: 10vh;
    top: 10dvh;
    left: -100%;
    transition: .5s;
}

.burger-item {
    padding-left: 1.3rem;
    color: #fff;
}

.burger-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10vh;
    width: 10dvh;
    z-index: 1;
    transition: .3s;
}

#bars {
    display: none;
}

#bars:checked~.burger-menu {
    left: 0;
}

#bars:checked~.burger-mask {
    left: 0;
    background: #000;
}

#bars:checked~.burger-btn {
    color: #fff;
}

.title {
    font-weight: normal;
    padding: 2rem 1.3rem 2rem 1.3rem;
    margin: 0;
}

.paging-wrapper {
    display: flex;
    gap: 1.3rem;
    padding: 2rem 0 2rem 1.3rem;
}

.paging-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    color: #000;
}

.paging-item.active {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 100%;
    background-color: #000;
    color: #fff;
}

.constitution-wrapper {
    position: fixed;
    display: flex;
    flex-direction: column;
    color: #fff;
    height: 100vh;
    height: 100dvh;
    width: 100vw;
    top: 100vh;
    top: 100dvh;
    left: 0;
    transition: .5s;
    background-color: #000;
}

.constitution-header {
    padding: 2rem 1.3rem 2rem 1.3rem;
    margin: 0;
    font-weight: normal;
}

.constitution-body {
    display: flex;
    flex-direction: column;
    height: 90vh;
    height: 90dvh;
    padding: 0 1rem 0 1rem;
    overflow: auto;
    gap: .3rem;
}

.constitution-btn {
    top: 100vh;
    top: 100dvh;
    height: 10vh;
    height: 10dvh;
    width: 100vw;
    background-color: #000;
}

#constitution {
    display: none;
}

#constitution:checked~.constitution-wrapper {
    top: 0;
    background-color: #000;
}

#constitution:checked~.burger-btn {
    color: #fff;
}

.section-header {
    font-size: xx-small;
    font-weight: bold;
}

.section-text {
    padding-left: 1rem;
    font-size: xx-small;
}