/*スクロールありの場合はフッターはポディション解除とbodyの高さを調整*/
body {
    height: 100%;
    overflow-y: auto;
}

.footer {
    position: initial;
    margin-top: 5em;
}

/*ここからメイン*/
.warp {
    margin: 10px auto 0;
    width: 90%;
    max-width: 900px;
    background: #ffffffb5;
    padding: 3em;
    box-sizing: border-box;
    line-height: 1.5;
}

.warp h1 {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 1em;
}

.warp h2 {
    font-size: 26px;
    margin-bottom: 1em;
    margin-top: 2em;
    font-weight: bold;
}

.warp h3 {
    margin-bottom: 1em;
    font-size: 18px;
}

.disc,
.kome {
    text-indent: -0.5em;
    padding-left: 1em;
}

.disc::before {
    content: "●";
    display: inline-block;
}

.kome::before {
    content: "※";
    display: inline-block;
}

.kakko li{
    list-style-type: none;
    counter-increment: cnt;
}

.kakko li::before {
    content: "(" counter(cnt) ") ";
}
.kazu li{
    list-style-type: none;
    counter-increment: cnt;
    text-indent: -1em;
    padding-left: 1em;
}

.kazu li::before {
    content: counter(cnt) ". ";
}

/*850px以下　SP・Tab表示処理*/
@media screen and (max-width: 850px) {
    .warp{
        padding: 1em;
        font-size: 0.8em;
    }
    .warp ul{
        margin-left: 1em;
    }
    .warp ul.kazu{
        margin-left: 0;
    }
}