/* すべての要素と疑似要素の基本リセット */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 画像などのメディア要素がはみ出さないように */
img,
picture,
video,
canvas,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* リストのデフォルトスタイルをリセット */
ul,
ol {
    list-style: none;
}

/* リンクの下線や色指定の初期化（必要に応じて調整） */
a {
    text-decoration: none;
    color: inherit;
}

/* フォーム系要素のフォントを継承 */
input,
button,
textarea,
select {
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    font: inherit;
}

input::placeholder {
    padding: 0 !important;
}

/* body の基本設定 */
html,
body {
    height: 100%;
}

body {
    line-height: 1;
}
