/* フォント設定 */
*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

html {
    height: 100%;
    width: 100%;
    font-size: 10px;
}

body {
    min-height: 100vh;
    width: 100%;
    margin: 0 auto;
    letter-spacing: 0.3rem;
    overflow: auto;
    overflow: hidden;

    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(1.6rem, 1.413rem + 0.8vw, 2.4rem);
}

img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

ul {
    list-style: none;
    margin-inline: 0;
    padding-inline: 0;
    margin-block-start: 0;
    margin-block-end: 0;
}

a {
    list-style: none;
    border: none;
}

a:-webkit-any-link {
    text-decoration: none;
    color: white;
}