@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-transition: border-box;
    box-sizing: border-box;
    overflow-x: hidden;
}

*, html {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
body {
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, 'MS UI Gothic', sans-serif !important;
    font-size: 14px !important;
    font-weight: 300;
    color: #0c0a0a;
    background: #eee;
    -webkit-text-size-adjust: 100%;
}

.main_body {
    position: relative;
    min-width: 310px;
    max-width: 768px;
    margin: 0 auto;
    -webkit-text-size-adjust: 100%;
    min-height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
    background-color: #fff;
}

.admin_main_body {
    position: relative;
    width: 100%;
    margin: 0 auto;
    -webkit-text-size-adjust: 100%;
    min-height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
    background-color: #fff;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.radio-group {
    display: flex;
    flex-direction: column;
}
.radio-group input[type="radio"] {
    display: none;
}
.radio-group label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
}
.radio-group label::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 2px solid #000;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
    box-sizing: border-box;
}
.radio-group input[type="radio"]:checked + label::before {
    background-color: #ff70cf;
    background-clip: content-box;
    padding: 2px;
}

/* Hide the default arrow */
select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: url('../icons/circle-chevron-down.svg') no-repeat right 0.5rem center/14px 14px;
}
/* Add padding to avoid text overlay on custom arrow */
select:invalid {
    color: gray;
}

/* Loading Overlay */
.overlay {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0, 0, 0, 0.2);
}

.overlay__inner {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.overlay__content {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.spinner {
    width: 75px;
    height: 75px;
    display: inline-block;
    border-width: 6px;
    border-color: rgba(0, 0, 0, 0.3);
    border-top-color: #000;
    animation: spin 1s infinite linear;
    border-radius: 100%;
    border-style: solid;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

*::-webkit-scrollbar {
    width: 5px;
}
*::-webkit-scrollbar-track {
    background: #f1f1f1;
}
*::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 6px;
}
*::-webkit-scrollbar-thumb:hover {
    background: #555;
}

@keyframes flash {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.flash-animation {
    animation: flash 1s forwards;
}