@charset "utf-8";

@font-face {
    font-family: 'M PLUS Rounded 1c';
    src: url(./font/MPLUSRounded1c-Light.ttf) format('truetype');
}

:root {
    --black1: #000010;
}

body {
    background-color: black;
    color: white;
    font: 17px 'M PLUS Rounded 1c', sans-serif;
    margin: 0px;
}

#welcome {
    position: fixed;
    width: 100%;
    height: 100%;
    padding-top: 20%;
    pointer-events: none;
    opacity: 1;
    background-color: var(--black1);
    transition: 1s;
    z-index: 100;
}

#welcome_text {
    margin: auto;
    width: 300px;
    height: 80px;
    text-align: center;
    vertical-align: middle;
    font-size: 64px;
}

#message {
    padding: 10px;
    min-width: 300px;
    min-height: 16px;
    background-color: #111111ee;
    position: fixed;
    top: -90px;
    border-radius: 0px 0px 8px 8px;
    transition: 0.2s;
    z-index: 101;
}

#message_text {
    font-size: 18px;
    margin:32px;
    text-align: center;
}

#confirm {
    padding: 64px 15px 15px 15px;
    width: 430px;
    height: 200px;
    transform-origin: center;
    background-color: #111111ee;
    position: fixed;
    top: calc(50% - 100px);
    left: calc(50% - 215px);
    border-radius: 16px;
    transition: 0.2s;
    z-index: 102;
}

.contracted {
    transform: scale(0.1);
    opacity: 0;
    pointer-events: none;
}

.expanded {
    transform: scale(1.0);
    opacity: 1;
    pointer-events: auto;
}

#confirm_text {
    width: 400px;
    margin: auto;
    text-align: center;
}

#confirm_yes {
    position: absolute;
    bottom: 40px;
    left: calc(150px - 32px);
    width: 64px;
}

#confirm_no {
    position: absolute;
    bottom: 40px;
    right: calc(150px - 32px);
    width: 64px;
}

#confirm_yes:hover {
    width: 100px;
    left: 100px;
}

#confirm_no:hover {
    width: 100px;
    right: 100px;
}

header {
    padding: 12px;
    background-color: #11111188;
    text-align: center;
    position: relative;
}


#info_icon_block,
#setting_icon_block {
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    top: 16px;
    transform-origin: center;
    background-color: var(--black1);
    cursor: pointer;
    z-index: 2;
    transition: 0.2s;
}

#info_icon_block {
    right: 128px;
}

#setting_icon_block {
    right: 32px;
}

.header_icon {
    width: 48px;
    height: 48px;
    margin: 8px;
}

#info_icon_block:hover {
    transform: scale(1.3);
}

#setting_icon_block:hover {
    transform: scale(1.3) rotate(0.125turn);
}

#setting_window {
    position: absolute;
    top: 0px;
    border-radius: 12px;
    width: 80%;
    min-width: 600px;
    min-height: 400px;
    margin: 80px 9% 0% 9%;
    background-color: #202020;
    transform-origin: center;
    transition: 0.2s;
    z-index: 11;
}

#setting_window_header {
    background-color: black;
    border-radius: 12px 12px 0px 0px;
}

#setting_window_main {
    padding: 0 3% 0 3%;
    overflow-y: auto;
}

.setting_window_contents {
    width: 46%;
    min-width: 250px;
    margin: 1%;
    padding: 4px;
    border-radius: 4px;
    display: inline-table;
    float: left;
    vertical-align: top;
    border: solid 1px white;
}

.setting_small_explain {
    margin-left: 32px;
    font-size: 12.5px;
}

.checkbox_input {
    display: none;
}

.checkbox_label {
    position: relative;
    display: inline-block;
    background-color: #e9513a;
    top: 6px;
    padding: 3px;
    width: 48px;
    height: 24px;
    border-radius: 12px;
    transition: 0.2s;
}

.checkbox_label:after {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
    background-color: #FFFFFD;
    transition: 0.2s;
}

.checkbox_input:checked~label {
    background-color: #4fbe79;
}

.checkbox_input:checked~label:after {
    transform: translateX(24px);
}

.checkbox_input:disabled~label {
    filter: grayscale(1.0);
}

main {
    margin-top:16px;
    text-align: center;
}

footer {
    padding: 16px;
    max-height: 50px;
    background-color: #11111188;
    text-align: center;
}

p {
    margin-block-start: 0.08em;
    margin-block-end: 0.08em;
}

ul {
    list-style: none;
    text-align: left;
    line-height: 32px;
    padding: 0px;
}

.no_list_style {
    text-align: center;
    margin: 5px;
    line-height: 26px;
}

select {
    border-radius: 10px;
    min-width: 50px;
    height: 32px;
    cursor: pointer;
    transition: 0.2s;
    box-sizing: border-box;
}

select:hover,
button:hover {
    background-color: var(--black1);
    border: solid 2px #eee;
    color: white;
}

option {
    background-color: var(--black1);
    color: white;
    padding-left: 5px;
    padding-right: 5px;
}

button {
    border-radius: 16px;
    border: none;
    height: 32px;
    cursor: pointer;
    margin: 2px;
    transition: 0.2s;
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 10px;
}

button:hover {
    padding-left: 20px;
    padding-right: 20px;
}

label {
    cursor: pointer;
    margin: 0px 2px 0px 2px;
    box-sizing: border-box;
}

input[type="checkbox"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
    border-radius: 4px;
}

input[type="number"] {
    width: 56px;
    height: 28px;
    border-radius: 10px;
    border: none;
    cursor: text;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=color i] {
    width: 64px;
    height: 32px;
    border-radius: 6px;
    overflow: hidden;
    vertical-align: -10px;
    padding: 0px;
    background: none;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

input[type=color i]:hover {
    background: #eee;
}

#import_setting {
    display: none;
}

#import_setting_label {
    display: inline-block;
    text-align: center;
    line-height: 31px;
    width: 144px;
    height: 32px;
    border-radius: 16px;
    margin: 2px;
    box-sizing: border-box;
    color: var(--black1);
    background-color: #eee;
}

#import_setting_label:hover {
    background-color: var(--black1);
    line-height: 27px;
    border: solid 2px #eee;
    color: white;
}

#selecting_filename {
    padding-left: 64px;
    display: none;
}

details {
    position: relative;
    border-radius: 8px;
    border: solid 1px #eee;
    overflow: hidden;
}

summary {
    box-sizing: border-box;
    height: 32px;
    transition: 0.2s;
    cursor: pointer;
}

details:hover>summary {
    background-color: #eee;
    color: var(--black1);
}

#scroll_container {
    display: inline-block;
    vertical-align: top;
    min-width: 400px;
    width: 92%;
    overflow-x: auto;
    border-radius: 16px;
    transform: rotateX(180deg);
    /* Mozilla FireFox用 スクロールバー */
    scrollbar-color: #eee #555;
    scrollbar-width: auto;
}

/* Microsoft Edge,Google Chrome用 スクロールバー */
html::-webkit-scrollbar,
#scroll_container::-webkit-scrollbar {
    background-color: #555;
    border: solid 8px var(--black1);
    width: 12px;
    height: 12px;
    border-radius: 6px;
}

html::-webkit-scrollbar-thumb,
#scroll_container::-webkit-scrollbar-thumb {
    background-color: #bbb;
    border-radius: 12px;
    box-shadow: 0px 0px 15px #111;
}

html::-webkit-scrollbar-thumb:hover,
#scroll_container::-webkit-scrollbar-thumb:hover {
    background-color: #ddd;
}

#scroll_container_child {
    display: flex;
    min-width: 400px;
    padding-top: 10px;
    transform: rotateX(180deg);
}

.header_title {
    width: 800px;
    min-height: 40px;
    margin: auto;
    overflow-x: hidden;
    text-align: center;
    font-size: 26px;
    margin-bottom: 10px;
    transition: 0.2s;
}

.title {
    width: 95%;
    min-height: 40px;
    margin: auto;
    text-align: center;
    font-size: 26px;
    margin-bottom: 10px;
    transition: 0.2s;
}

.container_title {
    width: 90%;
    height: 42px;
    margin: auto;
    text-align: center;
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: 0.2s;
}

.border_bottom {
    border-bottom: solid 1px #eee;
}

.container {
    position: relative;
    margin: 0px 5px 0px 5px;
    padding-bottom: 32px;
    width: 390px;
    min-width: 390px;
    min-height: 550px;
    border-radius: 10px;
    text-align: center;
    background-color: #202020;
    transition: 0.5s;
}


.child_container {
    margin-top: 40px;
}

.container:hover {
    background-color: #404040;
}

.container:hover>.container_title {
    font-size: 26px;
}

.color_label_1 {
    background-color: #0054f1;
    position: absolute;
    left: 0px;
    width: 14px;
    height: 100%;
    border-radius: 16px 0px 0px 16px;
}

.color_label_2 {
    background-color: #f1bf00;
    position: absolute;
    left: 0px;
    width: 14px;
    height: 100%;
    border-radius: 16px 0px 0px 16px;
}

.color_details_1 {
    border-left: solid 16px #0054f1;
}

.color_details_2 {
    border-left: solid 16px #f1bf00;
}

.hidden {
    display: none;
}

.open {
    display: inline-block;
}


.container_toggle_buttons {
    position: relative;
    width: 390px;
    height: 40px;
    border-radius: 10px 10px 0px 0px;
    overflow: hidden;
}

.toggle_button {
    display: inline-block;
    font-size: 16px;
    margin: -2px;
    border: none !important;
    padding: 0px !important;
    width: 130px;
    height: 40px;
    border-radius: 0px;
}

.after_toggle {
    background-color: var(--black1);
    color: white;
}

.bdetails {
    width: 90%;
    margin: auto;
    text-align: center;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.filter_details {
    margin: 5px;
}

.clipboard_elem {
    position: absolute;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
}

.clipboard_icon {
    width: 32px;
    height: 32px;
    transform-origin: right bottom;
    transition: 0.2s;
}

.clipboard_elem:hover .clipboard_icon {
    transform: scale(1.4);
}

.footer_content {
    display: inline-block;
    width: 52px;
    height: 52px;
    margin: 0px 32px 0px 32px;
    position: relative;
}

.link_caption {
    position: absolute;
    pointer-events: none;
    transform-origin: center;
    top: -80px;
    left: -52px;
    text-align: center;
    opacity: 0;
    width: 160px;
    transition: 0.2s;
    border-radius: 5px;
    background-color: #00001099;
    z-index: 10;
}

.link_icon {
    width: 40px;
    height: 40px;
    transform-origin: bottom center;
    transition: 0.2s;
}

.footer_content:hover .link_caption,
.clipboard_elem:hover .link_caption {
    opacity: 1;
}

.footer_content:hover .link_icon {
    transform: scale(1.4);
}

.reset {
    float: right;
}

.delete_ls {
    float: left;
    font-size: 14px;
    width: 150px !important;
    margin: 0px !important;
}

.green {
    color: #00ff00;
}

.red {
    color: #ff0000;
}

.pink {
    color: #ffaaff;
}

#chara_lv_number,
#current_wave {
    width: 40px;
}

.chara_status {
    display: inline-block;
    margin: auto;
}

.chara_status_data {
    width: 220px;
    text-align: left;
}

.chara_status_data p {
    line-height: 28px;
}

.status_number_input {
    max-width: 32px;
    font-size: 18px;
    background: none;
    border: none;
    color: white;
}

.small_buttons {
    float: right;
}

.small_button {
    width: 22px;
    height: 22px;
    padding: 0px;
}

.small_button:hover {
    padding: 0px;
}

#lov_plus_1000,
#lov_minus_1000 {
    width: 64px;
    padding: 0px !important;
}

.small_explain {
    float: left;
    font-size: 12.5px;
}

#chara_canvas {
    margin: 8px;
}

canvas {
    border-radius: 8px;
    background-color: #555;
}

.float_left {
    height: 96px;
    display: inline-block;
    margin: 0px 8px 0px 8px;
}

.float_right {
    height: 96px;
    display: inline-block;
    margin: 0px 8px 0px 8px;
}

.input_w {
    width: 44px !important;
}