@charset "utf-8";

/* cssリセット */

html,
body,
h1,
h2,
h3,
p,
dl,
dt,
dd,
ul,
li {
    margin: 0;
    padding: 0;
    line-height: 1.75;
    /*デフォルトの文字色、font-familyを予め当てておく*/
    color: #303030;
    font-family: "Roboto", "Noto Sans JP", "Hiragino Kaku Gothic ProN",
        "Yu Gothic", "メイリオ", "Hiragino Sans", sans-serif;
    font-feature-settings: "palt";
}

a {
    /*下線を消す*/
    text-decoration: none;
    /*色を消す*/
    color: inherit;
    transition: 0.3s;
}

/* a:hover {
    opacity: 0.5;
} */

ul {
    /*左の「・」を消す*/
    list-style: none;
}

img {
    max-width: 100%;
    vertical-align: bottom;
    border: none;
}

/* ゆっくり遷移する */
html {
    scroll-behavior: smooth;
}

button {
    /* すべてのデフォルトスタイルをリセット */
    all: unset;
    /* クリック可能に */
    cursor: pointer;
}
