
.Content {
    color: aliceblue;
}

.Content:after {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    height: calc(110%);
    content: "";
    background: linear-gradient(180deg,#000000,#333333);
    z-index: -1;
}

.Content-Holder {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.Content-Main {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    flex-shrink: 1;
    justify-content: center;
    max-width: 600px;
    margin-top: 20px;
    margin-left: 30px;
    margin-right: 30px;
}



.Cover {
    /*ローディング画面の縦横幅を画面いっぱいになるように指定*/
    width: 100%;
    height: calc(100% - 50px);
    /*ローディング画面の表示位置を固定*/
    position: fixed;
    top: 50px;
    left: 0;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    /*ローディング画面を0.5秒かけて非表示にする*/
    transition: all 0.5s linear;
    pointer-events: none;
}

.Cover-Visible {
    opacity: 0.75;
    pointer-events: auto;
}

.Spinner {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 12px solid #444;
    border-left-color: lightgray;
    animation: Spinner-Rotation 1s linear infinite;
}

.Settings-Area {
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
}

.Settings-Item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.Settings-Textbox {
    margin: 5px 0px;
}

.Settings-Button {
    margin: 5px 0px;
}


/* エディタ */

.Editor-Cover {
    content: "";
    display: flex;
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000000c0;
    z-index: 2000;
}

.Editor {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    flex-shrink: 1;
    align-self: start;
    background: #1f2e55;
    margin-top: 100px;
    margin-left: 30px;
    margin-right:30px;
    border-radius: 15px;
    border: 2px solid aliceblue;
    overflow: hidden;
}

.Editor-Title {
    position: relative;
    background: #001d42;
    padding: 10px 0px;
    text-align: center;
    margin: 0px 0px 10px 0px;
    width: 100%;
}

.Editor-Closer {
    position: absolute;
    right: 20px;
    transform: scale(1.0);
    transition: 0.3s ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%;
    top: 0;
}

.Editor-Closer:hover {
    transform: scale(1.4);
    color: #FF3333;
}

.Editor-Table {
    width: 100%;
    padding: 0px 30px 10px 20px;
    border-spacing: 0px 8px;
}

.Editor-Table tr {
    padding: 4px 0px;
}

.Editor-Table td.Label {
    font-size: 0.8em;
    text-align: right;
    padding-right: 20px;
}

.Editor-Table input {
    width: 100%;
    padding: 2px 10px;
    border: none;
    border-radius: 5px;
    background-color: #24282e;
    font-size: 1em;
    line-height: 1.5;
    color: aliceblue;
}

.Editor-Table input:focus {
    outline: 0;
}

.Editor-Table input::placeholder {
    color: rgba(255,255,255,.5);
}

/* スマホ対応 */
@media screen and (max-width: 480px) {

    .Editor-Table tr {
        padding: 0;
        display: flex;
        flex-direction: column;
        padding-bottom: 10px;
    }

    .Editor-Table td.Label {
        text-align: left;
        padding: 0px 0px 4px 10px;
    }

}