@charset "utf-8";

/* 全ての要素の余白とパディングをリセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HTML・Bodyの完全リセット */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    height: 100%;
    overflow-x: hidden;
}

/* ブラウザデフォルトのスタイルをリセット */
body {
    font-family: "Noto Serif JP", serif;
    color: #333333;
    font-size: 16px;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    opacity: 0.7;
}