@charset "utf-8";

/*=====一括初期化 */

/*=====テーブル*/
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*=====ヘッディング*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 1em;
    font-style: normal;
    font-weight: normal;
}

/*=====パラグラフ*/
p {
    margin: 0;
    padding: 0;
}

/*=====水平線*/
hr {
    width: auto;
    height: 0;
    border: none;
    border-bottom: 1px solid #ccc;
}

/*=====アドレス*/
address {
    font-style: normal;
}

/*=====iframe*/
iframe {
    border: none;
}

/*=====ブレークポイント 640px =====*/
@media screen and (max-width: 640px) {
    /*ここにレスポンシブ対応のcssを入れる*/
}