@charset "UTF-8";

/* ===================================
   Reset CSS
   -----------------------------------
   各ブラウザのデフォルトスタイルをリセット
====================================== */

/* 基本リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HTML要素の基本設定 */
html {
    font-size: 100%;
    scroll-behavior: smooth; /* スムーズスクロール */
}

body {
    line-height: 1.6;
    font-family: sans-serif;
    color: #333;
}

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

/* リンクの装飾をリセット */
a {
    text-decoration: none;
    color: inherit;
}

/* 画像のリセット */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 見出しのリセット */
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

/* ボタンのリセット */
button, input, select, textarea {
    font: inherit;
    color: inherit;
    border: none;
    background: none;
    outline: none;
}

/* フォーム要素のリセット */
input[type="text"], input[type="email"], textarea {
    appearance: none;
    border-radius: 0;
}

/* テーブルのリセット */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* アクセシビリティ強化 */
[hidden] {
    display: none;
}

/* iframeのリセット */
iframe {
    border: 0;
}
