html , body,.container-fluid{
    padding: 0;
    margin: 0;
    background: #FFFFF2;
    height:calc(100%);
    overflow: hidden;
}

body {
    color: #FF8410;
    width: 100%;
    height: 100%;
    font-family:"游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "ＭＳ ゴシック", sans-serif;
}

/* Absolute Center Spinner */
.loading {
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/* Transparent Overlay */
.loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.2);
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    -webkit-animation: spinner 1500ms infinite linear;
    -moz-animation: spinner 1500ms infinite linear;
    -ms-animation: spinner 1500ms infinite linear;
    -o-animation: spinner 1500ms infinite linear;
    animation: spinner 1500ms infinite linear;
    border-radius: 0.5em;
    -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
    box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

#wrap {
    min-height: 100%;
    height: auto;
    margin: 0 auto -60px;
    padding: 0 0 60px;
}

#contents {
    margin-top: 50px;
}

#footer {
    height: 60px;
}
/*** Top Page **/
#top-contents {
    padding-top: 50px;
    line-height: 100px;
}

#top-contents div{
    padding-top: 10px;
}

.btn-start {
    margin-top: 10px;
    font-size: 25px;
    text-align: center;
    text-decoration: none;
    padding: 20px 30px 20px 30px;
    background-color: #FF8410;
    color: #FFF;
    border-bottom-color: #ff6c08;
    cursor: pointer;

}
.btn-start:hover{
    text-decoration: none;
    color: #FFF;
    border-bottom-color: #CD620A;
}
.btn-start:active{
    text-decoration: none;
    color: #FFF;
    background: #cb660f;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .2);
    text-shadow: 0 1px 1px rgba(255, 255, 255, .5);
}
.btn-question {
    margin-top: 10px;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
    padding: 20px 30px 20px 30px;
    background-color: #313149;
    color: #FFF;
    cursor: pointer;
    border-bottom-color: #261633;

}
.btn-question:hover{
    text-decoration: none;
    color: #FFF;
}
.btn-question:active{
    text-decoration: none;
    color: #FFF;
    background: rgba(3, 2, 7, 0.82);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .2);
    text-shadow: 0 1px 1px rgba(255, 255, 255, .5);
}

#sub-title {
    color: #6897DB;
    font-size: 16px;
}

/** bootstrapのborder-boxを無効にする **/
.ol-attribution{
    -webkit-box-sizing:content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.header{
    height: 60px;
    padding-right: 15px;  /*container-fluidのpadding0分の打ち消し*/
}

.header > :not(:last-child){
    margin-top:5px;
    padding-right: 0;
}

.header img{
    display: inline;
    margin-top:4px;
}

#search_text{
    background-color: #ccc;
    height: 30px;
    margin-top: 5px;
}

.btn-org {
    padding: 0;
    height: 100%;
    text-align: center;
    text-decoration: none;
    background-color: #FF8410;
    color: #FFF;
    border-bottom-color: #ff6c08;
    cursor: pointer;

}
.btn-org:hover{
    text-decoration: none;
    color: #FFF;
    border-bottom-color: #CD620A;
}
.btn-org:active{
    text-decoration: none;
    color: #FFF;
    background: #cb660f;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .2);
    text-shadow: 0 1px 1px rgba(255, 255, 255, .5);
}

.map_parent{
    position: relative;
    height:calc(100% - 60px);
}

#shared_contents .container{
    height: 100%;
}

#shared_contents .container .row {
    padding-bottom: 20px;
}

.border{
    border-bottom: 4px solid #FF8410;
}

.shared_btn{
    background-color: #FF8410;
}

#image_row{
    height: 50%;
}

.end_return_btn a{
    font-size: 25px;
}

.license_container{
    padding: 10px;
}
#license_contents .container{
    height: calc(100% - 60px);
    color: black;
}

#license_contents li{
    padding: 20px;
}

#license_contents .license_container{
    height:80%;
    background-color: white;
}

#license_contents .license_article{
    height:100%;
    background-color: white;
    overflow-y: auto;
    transform: translateZ(0);
}

.disable_select{
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.ol-attribution label{
    font-size: 10px;
}
