body{
    margin:0;
    display:flex;

    background:#f3eee4;
    color:#4a3b2d;

    font-family:serif;
}

.sidebar{
    width:220px;
    min-height:100vh;
    padding:20px;
    box-sizing:border-box;
}

/* 地方ごとの色だけ変える */
.hkth-page .sidebar{
    background:#d9ddf8;
}

.kantou-page .sidebar{
    background:#d8f0f8;
}

.chubu-page .sidebar{
    background:#dff0d8;
}

.kinki-page .sidebar{
    background:#f7f0cf;
}

.chushi-page .sidebar{
    background:#f8e2cf;
}

.qshuok-page .sidebar{
    background:#f6d7d2;
}

.back{
    display:block;

    margin-bottom:20px;

    text-decoration:none;
    color:#4a3b2d;
}

.pref{
    display:block;

    margin:10px 0;
    padding:10px;

    background:white;

    border-radius:10px;

    text-decoration:none;
    color:#4a3b2d;
}

.main{
    flex:1;
    padding:30px;
}

.character{
    display:flex;
    gap:20px;
}

.standing{
    width:300px;
    height:500px;

    border:2px dashed #999;

    display:flex;
    justify-content:center;
    align-items:center;
}

.profile{
    flex:1;

    border:2px solid #b99a6b;
    border-radius:12px;

    padding:20px;
}

.gallery{
    margin-top:30px;

    display:flex;
    gap:20px;
}

.imagebox{
    width:200px;
    height:200px;

    border:2px dashed #999;

    display:flex;
    justify-content:center;
    align-items:center;
}

.prefPage{
    display:none;
}

.prefPage:target{
    display:block;
}
