@charset "utf-8";

/* リセット */
html,
body,
header,
footer,
main,
section,
div,
h1,
h2,
h3,
h4,
ul,
li,
p,
dl {
    margin: 0;
    padding: 0;
    line-height: 1;
    color: #333333;
    font-feature-settings: "palt";
    box-sizing: border-box;
    /* font-family: 'YuGothic','Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', 'Meiryo','ＭＳ ゴシック',sans-serif; */
}

a {
    /*下線を消す*/
    text-decoration: none;
    /*色を消す*/
    color: inherit;
    transition: 0.3s;
    letter-spacing: 0.05em;
}

a:hover {
    opacity: 0.7;
}

ul {
    /*左の「・」を消す*/
    list-style: none;
}

img {
    width: 100%;
    display: block;
    vertical-align: bottom;
    border: none;
}