@font-face {
    font-family: 'FORCED-SQUARE';
    src: url("FORCED-SQUARE.woff") format("woff");
}

.square-font {
    font-family: 'FORCED-SQUARE', 'Noto Sans JP', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    font-size: 1rem;
}

section {
    padding: 64px;
}

h2 {
    font-size: 3rem;
    margin-bottom: 1em;
}

h3 {
    font-size: 2rem;
    margin-bottom: 1em;
}

/* タブレット用レスポンシブ対応 */
@media (max-width: 820px) {
    /* h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    } */
}

/* スマートフォン用レスポンシブ対応 */
@media (max-width: 480px) {
    section {
        padding: 64px 16px;
    }
    h2 {
        /* font-size: 2.5rem; */
        /* text-align: center; */
        margin-bottom: 0.5em;
    }

    h3 {
        font-size: 1.75rem;
    }
}