/* ==========================================================
   reset.css
   ----------------------------------------------------------
   Project : 時を重ねる家

   ブラウザごとの初期設定を整える。

   このファイルにはデザインを書かない。
   「初期状態を揃える」ことだけが役割。

   ブラウザごとのクセをなくして、すべてのブラウザで同じスタートラインに立つためのファイルです。

========================================================== */

/* すべての要素を border-box に */
*,
*::before,
*::after{
    box-sizing:border-box;
}

/* ページ全体 */
html{
    scroll-behavior:smooth;
    -webkit-text-size-adjust:100%;
}

/* 余白をリセット */
body,
h1,h2,h3,h4,h5,h6,
p,
figure,
blockquote,
dl,
dd{
    margin:0;
}

/* リスト */
ul,
ol{
    margin:0;
    padding:0;
    list-style:none;
}

/* リンク */
a{
    color:inherit;
    text-decoration:none;
}

/* 画像 */
img,
picture{
    display:block;
    max-width:100%;
    height:auto;
}

/* フォーム */
input,
button,
textarea,
select{
    font:inherit;
}

/* ボタン */
button{
    background:none;
    border:none;
    cursor:pointer;
}

/* テーブル */
table{
    border-collapse:collapse;
    border-spacing:0;
}