@charset "utf-8";

*:where(:not(html,iframe,canvas,img,svg,video,audio):not(svg*,symbol*)) {
    all: unset;
    display: revert;
}

meter {
    -webkit-appearance:revert;appearance:revert}::placeholder{color:unset}:where([hidden]){display:none}:where([contenteditable]:not([contenteditable="false"])){-moz-user-modify:read-write;-webkit-user-modify:read-write;overflow-wrap:break-word;-webkit-line-break:after-white-space;-webkit-user-select:auto}:where([draggable="true"]){-webkit-user-drag:element}

* {
    margin: 0;
    box-sizing: border-box; /* ボーダーラインがあれば、ライン幅も含めたサイズ指定 */
    user-select: none;
}

*::before, *::after {
    box-sizing: border-box; /* ボーダーラインがあれば、ライン幅も含めたサイズ指定 */
}


html, body {
    height: 100%;
}

body {
    width: 100%;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a, button {
    cursor: revert;
}

ol, ul, menu {
    list-style: none;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input {
    font: inherit;
    -webkit-user-select: auto; 
}

textarea {
    font: inherit;
    -webkit-user-select: auto;
    white-space: revert;
}

button, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

table {
    border-collapse: collapse;
}


/* 処理中くるくるスピナーの設定 */
#overlay{
    position: fixed;
    top: 0;
    z-index: 100;
    max-width: 1020px;
    width: 100%;
    height:100%;
    display: none;
    background: rgba(0,0,0,0.6);
}
.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #fa0 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
    100% {
      transform: rotate(360deg);
    }
}
.is-hide{
    display:none;
}
