/* Reset.css 2025 - Simple and Effective */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    line-height: 1.5;
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%; /* モバイルブラウザでの自動テキストサイズ調整を無効化 */
    -webkit-font-smoothing: antialiased; /* テキストの見た目を滑らかに */
    -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    /*font: inherit;*/
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

button {
    cursor: pointer;
}

textarea {
    resize: vertical; /* 水平方向のサイズ変更を無効化 */
}

code,
pre {
    font-family: 'Courier New', Courier, monospace;
}
