/* menubutton.css */
@font-face {
    font-family: "LigatureSymbols";
    src: url("/font/LigatureSymbols-2.11.eot");
    src: url("/font/LigatureSymbols-2.11.eot?#iefix") format("embedded-opentype"), url("/font/LigatureSymbols-2.11.woff") format("woff"), url("/font/LigatureSymbols-2.11.ttf") format("truetype"), url("/font/LigatureSymbols-2.11.svg#LigatureSymbols") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

.icon-font {
    font-family: "LigatureSymbols";
    -webkit-text-rendering: optimizeLegibility;
    -moz-text-rendering: optimizeLegibility;
    -ms-text-rendering: optimizeLegibility;
    -o-text-rendering: optimizeLegibility;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -ms-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    font-smoothing: antialiased;
    -webkit-font-feature-settings: "liga"1, "dlig"1;
    -moz-font-feature-settings: "liga=1, dlig=1";
    -ms-font-feature-settings: "liga"1, "dlig"1;
    -o-font-feature-settings: "liga"1, "dlig"1;
    font-feature-settings: "liga"1, "dlig"1;
}

.general-button {
    border-radius: 5px;
    background-color: #303336;
}

.general-button:before {
    border-radius: 5px;
    border-bottom: 0px solid rgba(12, 12, 13, 0);
    background-color: rgba(12, 12, 13, 0);
}

.button-content {
    border-radius: 0px 0px 5px 5px;
    padding: 2px 4.5px;
    box-shadow: 0px 0px 0px 0px rgba(12, 12, 13, 0);
    color: #f8f8f8;
}

.button-text {
    padding: 0px 4px;
    line-height: 1em;
    font-size: 60px;
}

.icon-font {
    padding: 0px 4px;
    font-size: 32px;
}

.general-button:hover {
    transition: all 0ms;
    -moz-transition: all 0ms;
    -webkit-transition: all 0ms;
    -o-transition: all 0ms;
    background-color: #373a3e;
}

.general-button:hover:before {
    border-bottom: 1px solid rgba(12, 12, 13, 0);
    transition: all 0ms;
    -moz-transition: all 0ms;
    -webkit-transition: all 0ms;
    -o-transition: all 0ms;
}

.general-button:hover .button-content {
    box-shadow: 0px 1px 0px 0px rgba(12, 12, 13, 1);
    transition: all 0ms;
    -moz-transition: all 0ms;
    -webkit-transition: all 0ms;
    -o-transition: all 0ms;
}

.general-button:active {
    background-color: #242628;
    box-shadow: 0px 1.2px 0px 0px rgba(0, 0, 0, 1) inset;
}

.general-button:active:before {
    padding-bottom: 1px;
    border-bottom: 0px solid rgba(12, 12, 13, 0);
}

.general-button:active .button-content {
    box-shadow: 0px 0px 0px 0px rgba(12, 12, 13, 0);
}

.general-button {
    display: -moz-inline-box;
    display: inline-block;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    transition: all 0ms;
    -moz-transition: all 0ms;
    -webkit-transition: all 0ms;
    -o-transition: all 0ms;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    line-height: 1;
}

.general-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.button-content {
    display: table;
    transition: all 0ms;
    -moz-transition: all 0ms;
    -webkit-transition: all 0ms;
    -o-transition: all 0ms;
}

.button-text {
    display: table-cell;
    vertical-align: middle;
    text-decoration: none;
}

.icon-font {
    display: table-cell;
    vertical-align: middle;
}

.general-button:hover {
    transition-timing-function: ease-in-out;
}

.general-button:hover:before {
    transition-timing-function: ease-in-out;
}

.general-button:hover .button-content {
    transition-timing-function: ease-in-out;
}

.general-button:active {
    transition: all 0ms;
    -moz-transition: all 0ms;
    -webkit-transition: all 0ms;
    -o-transition: all 0ms;
}

.general-button:active:before {
    transition: all 0ms;
    -moz-transition: all 0ms;
    -webkit-transition: all 0ms;
    -o-transition: all 0ms;
}

.general-button:active .button-content {
    transition: all 0ms;
    -moz-transition: all 0ms;
    -webkit-transition: all 0ms;
    -o-transition: all 0ms;
}

.touch .general-button:hover {
    background-color: #303336;
}

.touch .general-button:hover:before {
    border-bottom: 0px solid rgba(12, 12, 13, 0);
}

.touch .general-button:hover .button-content {
    box-shadow: 0px 0px 0px 0px rgba(12, 12, 13, 1);
}

.touch .general-button:active {
    background-color: #242628;
    box-shadow: 0px 1.2px 0px 0px rgba(0, 0, 0, 1) inset;
}

.touch .general-button:active:before {
    padding-bottom: 1px;
    border-bottom: 0px solid rgba(12, 12, 13, 0);
}

.touch .general-button:active .button-content {
    box-shadow: 0px 0px 0px 0px rgba(12, 12, 13, 0);
}

/* style.css */
html,
body,
#cesiumContainer {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: fixed;
    font-family: "MS Pゴシック", sans-serif;
    background-color: black;
}

.cesium-home-button {
    visibility: hidden;
}

.cesium-viewer-toolbar {
    top: 6px;
    right: 52px;
}

.cesium-toolbar-button {
    width: 36px;
    height: 36px;
}

.cesium-baseLayerPicker-dropDown {
    right: -44px;
}

.cesium-baseLayerPicker-dropDown-visible {
    right: -44px;
}

.cesium-credit-image {
    display: none;
}

.cesium-credit-text {
    font-size: 8px;
    line-height: 0px;
    opacity: 0.7;
}

.cesium-button {
    color: rgb(180, 180, 180);
    fill: rgb(180, 180, 180);
    cursor: pointer;
}

button.cesium-infoBox-close {
    color: #aaa;
}

.cesium-selection-wrapper svg {
    fill: #FFF;
    stroke: #FFF;
    stroke-width: 0px;
    opacity: 0.7;
}

.sample {
    position: absolute;
    height: 100%;
}

#button {
    display:none;
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 10005;
}

#button2 {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 10005;
}

#buttonLayer {
    position: absolute;
    top: 8px;
    right: 54px;
    z-index: 10005;
}

.sharebutton {
    position: absolute;
    text-align: right;
    bottom: -16px;
    right: 34px;
    width: 130px;
    z-index: 2;
}

.share {
    width: 28px;
    height: 28px;
    margin: -2px;
}

.share-buttons {
    list-style: none;
}

.share-buttons li {
    display: inline;
}

h2 {
    font-size: 13px;
    font-weight: bold;
    text-align: center;
}

a {
    color: black;
    text-decoration: none;
}

a:hover {
    color: white;
    background: gray;
}

.viewpoint {
    padding: 0;
    margin: 20px 0px 0px 0px;
    font-size: 12px;
    list-style-type: none;
    line-height: 1.7em;
    text-indent: 0px;
    background: white;
}

.slide_label {
    font-size: 11px;
    margin: 0px 0px 2px 0px;
    padding: 0px;
    height: 12px;
}

#slider {
    position: absolute;
    width: 100px;
    top: 5px;
    background: none repeat scroll 0% 0% transparent;
    z-index: 10001;
    right: 98px;
}

#slideMenuLayer {
    position: fixed;
    top: 48px;
    right: -200px;
    width: 100px;
    opacity: 0.8;
    padding: 10px 10px 10px 10px;
    margin: 0px;
    margin-bottom: 0px;
    background: white;
    text-align: left;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    z-index: 10005;
}

#geocode {
    opacity: 0.8;
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 10001;
}

input {
    margin: 2px 0px 0px 0px;
    padding: 0px;
    width: 100px !important;
}

.textbox {
    border: 0;
    margin: 0px;
    padding: 0px 0px 1px 2px;
    font-size: 12px;
    width: 100px;
    height: 15px;
}

#textSearch {
    position: absolute;
    z-index: 10001;
    top: 32px;
    left: 8px;
    opacity: 0.8;
}

.titleScreen {
    position: absolute;
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    display: table;
    z-index: 10002;
    background-color: rgba(0, 0, 0, 0);
    opacity: 0.9;
}

.titleScreen p {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.titleImage {
    width: 640px;
}

#blackOut {
    position: absolute;
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 10010;
    opacity: 0.6;
}

.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -40px;
    margin-left: -40px;
}

#lightBoxWrapper {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    z-index: 20000;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0);
}

#lightBox {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.75);
    background: -webkit-linear-gradient(rgba(0, 0, 0, 1.0), rgba(0, 0, 0, 0.0));
    background: -o-linear-gradient(rgba(0, 0, 0, 1.0), rgba(0, 0, 0, 0.0));
    background: linear-gradient(rgba(0, 0, 0, 1.0), rgba(0, 0, 0, 0.0));
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#55505050', endColorstr='#ff181818', GradientType=0)";
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, .5);
    -moz-box-shadow: 0 0 15px rgba(0, 0, 0, .5);
    box-shadow: 0 0 15px rgba(0, 0, 0, .5);
    transition: all 300ms 0s ease;
}

#video {
    height:100%;
    width:100%;
    position: relative;
    color: rgba(255, 255, 255, 0.75);
    background: -webkit-linear-gradient(rgba(0, 0, 0, 1.0), rgba(0, 0, 0, 0.0));
    background: -o-linear-gradient(rgba(0, 0, 0, 1.0), rgba(0, 0, 0, 0.0));
    background: linear-gradient(rgba(0, 0, 0, 1.0), rgba(0, 0, 0, 0.0));
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#55505050', endColorstr='#ff181818', GradientType=0)";
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, .5);
    -moz-box-shadow: 0 0 15px rgba(0, 0, 0, .5);
    box-shadow: 0 0 15px rgba(0, 0, 0, .5);
    transition: all 300ms 0s ease;
}

#gallery {
    position:absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 70%;
    transform: translate(-50%,-55%);
    margin: 0;
}

p.image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#moviePlayer {
    width:100%;
    height:100% !important;
    top: auto !important;
}

.balloonName {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    font-size: 13px;
    text-align: center;
    opacity: 0.8;
}

.balloonName a {
    color: #fff;
    background-color: transparent;
}

.balloon_bottom {
    text-align: justify;
    font-size: 10.5px;
    opacity: 0.8;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 20%;
}

.balloon_description {
    margin: 5px;
    padding-bottom: 10px;
}

.balloon_address {
    font-size:9px;
    opacity:0.7;
    margin: 5px;
}

.balloon_address img{
    float: left;
    padding-right: 10px;
}

.video_reference {
    display:none;
}

.cesium-viewer-bottom {
    display: none;
}

@media screen and (max-width: 480px) {
    p.image {
        height: 60%;
    }

    .balloon_bottom {
        margin: 0 10%;
    }
}

/* スライダー */
input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    margin: 7.85px 0;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4.3px;
    cursor: pointer;
    box-shadow: 0.2px 0.2px 0px #666666, 0px 0px 0.2px #737373;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 1.3px;
    border: 0.2px solid #ffffff;
}

input[type=range]::-webkit-slider-thumb {
    box-shadow: 0.9px 0.9px 3.6px #000000, 0px 0px 0.9px #0d0d0d;
    border: 1.8px solid rgba(0, 0, 30, 0.56);
    height: 20px;
    width: 20px;
    border-radius: 20px;
    background: #ffffff;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -8.05px;
}

input[type=range]:focus::-webkit-slider-runnable-track {
    background: rgba(8, 8, 8, 0.8);
}

input[type=range]::-moz-range-track {
    width: 100%;
    height: 4.3px;
    cursor: pointer;
    box-shadow: 0.2px 0.2px 0px #666666, 0px 0px 0.2px #737373;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 1.3px;
    border: 0.2px solid #ffffff;
}

input[type=range]::-moz-range-thumb {
    box-shadow: 0.9px 0.9px 3.6px #000000, 0px 0px 0.9px #0d0d0d;
    border: 1.8px solid rgba(0, 0, 30, 0.56);
    height: 20px;
    width: 20px;
    border-radius: 20px;
    background: #ffffff;
    cursor: pointer;
}

input[type=range]::-ms-track {
    width: 100%;
    height: 4.3px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

input[type=range]::-ms-fill-lower {
    background: rgba(0, 0, 0, 0.8);
    border: 0.2px solid #ffffff;
    border-radius: 2.6px;
    box-shadow: 0.2px 0.2px 0px #666666, 0px 0px 0.2px #737373;
}

input[type=range]::-ms-fill-upper {
    background: rgba(0, 0, 0, 0.8);
    border: 0.2px solid #ffffff;
    border-radius: 2.6px;
    box-shadow: 0.2px 0.2px 0px #666666, 0px 0px 0.2px #737373;
}

input[type=range]::-ms-thumb {
    box-shadow: 0.9px 0.9px 3.6px #000000, 0px 0px 0.9px #0d0d0d;
    border: 1.8px solid rgba(0, 0, 30, 0.56);
    height: 20px;
    width: 20px;
    border-radius: 20px;
    background: #ffffff;
    cursor: pointer;
    height: 4.3px;
}

input[type=range]:focus::-ms-fill-lower {
    background: rgba(0, 0, 0, 0.8);
}

input[type=range]:focus::-ms-fill-upper {
    background: rgba(8, 8, 8, 0.8);
}
