@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: #5a4a49;
    font-family:
        "Inter", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic",
        "メイリオ", "Hiragino Sans", sans-serif;
    font-feature-settings: "palt";
    letter-spacing: 0.1em;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}
figure {
    margin: 0;
}
img {
    max-width: 100%;
    vertical-align: bottom;
    border: none;
}
figure img {
    display: block;
    width: 100%;
    height: auto;
}
html {
    scroll-behavior: smooth; /* ゆっくり遷移する */
}
button {
    all: unset;
    cursor: pointer;
}
