/* CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* リストのリセット */
ul, ol {
    list-style: none;
}

/* ベーススタイル */
html {
    font-size: 16px;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
}

/* レスポンシブ画像 */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* アクセシビリティ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
} 