body {
    font-family: sans-serif;
    line-height: 1.6;
    margin: 20px;
    color: #333;
    background-color: #f4f4f4;
}

h1, h2, h3 {
    color: #007bff;
    margin-top: 2em;
    margin-bottom: 1em;
    line-height: 1.2;
}

h1 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 1.5em;
}

h2 {
    font-size: 1.5em;
    border-bottom: 2px solid #ccc;
    padding-bottom: 0.5em;
}

h3 {
    font-size: 1.2em;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1em;
}

ul, ol {
    margin-bottom: 1em;
    padding-left: 20px;
}

li {
    margin-bottom: 0.5em;
}

ol{
    list-style: none;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    font-size: 0.7em;
    text-align: center;
}

footer ul{
    display: flex;
    justify-content: center;
}

footer li {
    display: inline;
    margin: 0 1%;
}

/* モバイル向けのスタイル（画面幅が600px以下の場合に適用） */
@media screen and (max-width: 600px) {
    body {
        margin: 15px;
        font-size: 0.9em;
        line-height: 1.8;
    }

    h1 {
        font-size: 1.8em;
        margin-bottom: 1.2em;
    }

    h2 {
        font-size: 1.3em;
        padding-bottom: 0.3em;
    }

    h3 {
        font-size: 1.1em;
        margin-top: 1.2em;
        margin-bottom: 0.3em;
    }

    ul, ol {
        padding-left: 15px;
    }

    footer {
        font-size: 0.5em;
    }
}

/* タブレット向けのスタイル（画面幅が601pxから960pxの場合に適用） */
@media screen and (min-width: 601px) and (max-width: 960px) {
    body {
        margin: 20px;
        font-size: 1em;
    }

    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.6em;
    }

    h3 {
        font-size: 1.3em;
    }

    footer {
        font-size: 0.5em;
    }
}