/*
 * SRC (smkn Reset Css)
 * Copyright (c) 2013- smkn( https://www.kiki-verb.com/ )
 *
 * Version : 5.3.0
 * Updated : 2024.09.03
 * Author  : Kenichi Shimizu a.k.a. smkn( @kikiverb co., ltd. )
 * Website : https://www.kiki-verb.com/
 * License : Dual licensed under the MIT or GPL( version 2 or later ) licenses.
 *           http://www.opensource.org/licenses/mit-license.php
 *           http://www.gnu.org/licenses/gpl.html
 */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    line-height: inherit;
}

:where(html) {
    -webkit-text-size-adjust: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
}

:where(body) {
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

:where([hidden]:not([hidden="until-found"])) {
    display: none !important;
}
:where(:disabled, label:has(> input:disabled), label:has(+ input:disabled)) {
    cursor: default;
}

:where(a) {
    text-underline-offset: 0.2em;
}
:where(a, button, input, label, select, textarea) {
    touch-action: manipulation;
}

:where(audio, canvas, embed, iframe, object, video) {
    display: block;
    max-width: 100%;
    height: auto;
}

:where(img, svg) {
    max-width: 100%;
    height: auto;
    border-style: none;
    font-size: 0;
    line-height: 0;
    vertical-align: middle;
}

:where(button, select, textarea, input:not([type="image"])) {
    border: 1px solid #ddd;
    border-radius: 0;
    text-transform: none;
    background-color: #fff;
}
:where(button, input, select, textarea) {
    font: inherit;
    color: inherit;
}

:where(button, label, select, summary) {
    cursor: pointer;
}

:where(select, textarea, [type="text"], [type="password"], [type="email"], [type="number"]) {
    width: 100%;
}

:where(textarea) {
    overflow-y: auto;
    resize: vertical;
    height: 100px;
}

:where(table) {
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    width: 100%;
}

:where(caption, th) {
    text-align: left;
}

:where(blockquote) {
    quotes: none;
}
:where(blockquote::after, blockquote::before) {
    content: "";
}

:where(hr) {
    border-style: solid;
    border-width: 1px 0 0;
    color: inherit;
    height: 0;
    overflow: visible;
}

:where(pre) {
    white-space: pre-wrap;
}
:where(ul, ol) {
    list-style: none;
}
