/* ---------------------------------------
   Reset / Baseline CSS (modern, 2025)
   余計なデフォルトを外しつつ、実務で困らない最小限を整備
---------------------------------------- */

/* ボックスサイズを安定化 */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* 基本文字/レイアウトの初期化 */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    min-height: 100dvh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* よく使うブロック要素の余白を一旦ゼロに */
:where(h1, h2, h3, h4, h5, h6, p,
    figure, blockquote, dl, dd) {
    margin: 0;
}

/* リストの初期化 */
:where(ul, ol) {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* 画像・メディアの扱いを安定化（はみ出し防止） */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* テーブルの初期化 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

th,
td {
    padding: 0;
    text-align: left;
    font-weight: inherit;
    vertical-align: top;
}

/* アンカーは色・下線を一旦継承（プロジェクトで上書き） */
a {
    color: inherit;
    text-decoration: none;
}

/* フォーム系：フォント継承＆余計な装飾をOFF */
input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    appearance: none;
    -webkit-appearance: none;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}

textarea {
    resize: vertical;
}

::placeholder {
    color: inherit;
    opacity: .6;
}

/* 余計な枠線や表示の揺れを防止 */
[hidden] {
    display: none !important;
}

hr {
    height: 0;
    border: 0;
    border-top: 1px solid currentColor;
    margin: 0;
    opacity: .2;
}

/* アクセシブルなフォーカス（最低限の見える枠） */
:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

/* 動きが苦手なユーザーへの配慮 */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}