
body {
    margin: 0;
    font-family: Arial, sans-serif;
    
}
.wrapper {
    display: flex;
    height: 100vh;
}
@media (max-width: 1000px) {
    .wrapper {
        flex-direction: column;
    }
}
.content {
    flex-grow: 1;
    padding: 1rem;
    background-image: url('/images/background/common.png');
    background-size: cover;        /* 全画面に拡大縮小して表示 */
    background-position: center;   /* 中央に配置 */
    background-repeat: no-repeat;  /* 繰り返しなし */
    background-attachment: fixed;
    overflow: scroll;
}

.text-danger {
    font-weight: 700;
}

.content-header {
    margin-bottom: 40px;
}
.content-member-name {
    color: rgb(74, 42, 236);
}