@charset "UTF-8";

body,h1,h2,h3,h4,h5,h6,p,a,ul,li,dl,dt,dd {
    margin: 0px;
    border: 0px;
    padding: 0px;
    line-height: 2.0;
}

body {
    font-family:var(--font-gothic);
    background-color: white;

    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;

}

/*画像の横幅100%*/
img {
    width: 100%;
}

/*リンクを通常文字で表示*/
a {
    text-decoration:none;
    color:#000000;
}

/*リストの・表示削除*/
li {
    list-style-type: none;
}





