html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color:white;
    font-family: "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* -------------------- */

#main {
    margin-right: 16px;
    margin-left: 16px;
    --background-color: rgb(174, 219, 213, 0.1);
}

body {
    color: #000938;
}
button.blue-btn {
    background-color: #103CAC;
    color: white;
    padding: 8px;
}

button.blue-btn-rev {
    background-color: white;
    border: solid 3px #103CAC;
    color: #103CAC;
    padding: 5px;
}

footer .icon {
    color: #103CAC;
}

.icon-gray {
    color: rgba(100,125,173, 0.8); /* #647DAD */
}

    .icon-gray i {
        color: rgba(100,125,173, 0.5); /* #647DAD */
    }
/* -------------------- */

#startButton {
    font-size: x-large;
}

#logo_img {
    display: block;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
}

#splashWindow {
    display: flex;
}

#mp-container {
    width: 100%;
    height: 4rem;
    margin-top: 5px;
}

#mp-logo {
    margin: 0 auto;
    width: 11rem;
    height: 24px;
    padding: 6px;
    text-align: center;
    background-color: transparent;
    color: white;
    border-radius: 5px 5px;
    font-size: large;
}

#find_mp {
    position: absolute;
    width: 100%;
    bottom: 90px;
    height: 30px;
    text-align: center;
}

    #find_mp span {
        font-size: 12px;
        margin: 0 auto;
        color: white;
        background-color: black;
        padding: 4px 12px;
        border-radius: 4px;
    }

video.fullsize {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
}
/* -------------------- */

#logArea {
    height: 200px;
    overflow: scroll;
}

    #logArea span {
        display: block;
    }
/* -------------------- */

#bottomMark {
    position: absolute;
    width: 100%;
    height: 85px;
    bottom: 0px;
    color: #103CAC;
    background-color: #f8f1f1;
}

.iconimage32 {
    width: 32px;
    height: 32px;
    display: inline-block;
}
/* -------------------- */

#helpDivHeader {
    height: 40px;
    text-align: center;
    vertical-align: middle;
    font-size: x-large;
    font-weight: 900;
    margin: auto;
    padding-top: 15px;
    color: #103CAC;
}

#helpCloseBtnDiv {
    position: absolute;
    width: 350px;
    text-align: right;
}


#helpCloseBtn {
    position: relative;
    right: 5px;
    top: 5px;
    color: #103CAC;
    font-weight: 900;
}

/* -------------------- */

.mp-permission-request {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 1);
    font-family: sans-serif;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mp-inner {
    max-width: 400px;
    text-align: center;
}

.mp-title {
    font-size: 20px;
}

.mp-text {
    font-size: 14px;
    padding: 15px;
}

.mp-inner button {
    font-size: 16px;
    background: none;
    outline: none;
    border: 2px solid black;
    border-radius: 10px;
    color: black;
    padding: 10px 40px;
    text-transform: uppercase;
}