@charset "utf-8";
/*//////////////////////////////////////////////////////////

Copyright (C) apricot-design All Rights Reserved.
------------------------------------------------------------
CSS information
 file name  :  reset.css
 style info :  リセットファイル
 admin info :  apricot-design
 
//////////////////////////////////////////////////////////*/

/* ==========================
   Reset CSS (minimum)
   ========================== */

/* margin / padding リセット */
html, body,
h1, h2, h3, h4, h5, h6,
p, blockquote,
ul, ol, li,
dl, dt, dd,
figure,
table, th, td {
    margin: 0;
    padding: 0;
}

/* box-sizing 統一 */
*, *::before, *::after {
    box-sizing: border-box;
}

/* リストの基本 */
ul, ol {
    list-style-position: inside;
}

/* 画像 */
img {
    max-width: 100%;
    height: auto;
    border: 0;
    vertical-align: bottom;
}

/* フォーム */
button, input, select, textarea {
    font: inherit;
    color: inherit;
}

/* リンク */
a {
    text-decoration: none;
    color: inherit;
}

/* table */
table {
    border-collapse: collapse;
    border-spacing: 0;
}
