@import url("https://unpkg.com/open-props");
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP');

/* Box-sizingを統一 */
*, *::before, *::after {
    box-sizing: border-box;
}

/* マージンをリセット */
* {
    margin: 0;
}

/* フル高さのレイアウト */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    overscroll-behavior: none;
}

/* フォントを継承 */
body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* 画像とメディアのデフォルト設定 */
img, picture, video, canvas, svg {
    max-width: 100%;
    display: block;
}

/* 入力系要素の調整 */
input, button, textarea, select {
    font: inherit;
}

/* リンクの下線 */
a {
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

ul{
    padding-left: 0;
}

li {
    list-style: none;
}
