/* ===== CSS Reset & 公共样式 ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    touch-action: manipulation;
}

body {
    -webkit-tap-highlight-color: transparent;
}
