/*
* LoginPage-setting
*/
html {
    overflow: auto;
}

html, body {
    height: 100%;
    min-height: 600px;
}
body {
    background-color: #000;
    color: #fff;
    font-family: 'メイリオ', Meiryo,'ヒラギノ角ゴシック','Hiragino Sans',sans-serif;
}
header {
   /*height: 0;*/
}
.nav-btn, .logo-index, .user-id {
    display: none;
}
.login-main {
    height: 100%;
    width: 100%;
    position: relative;
}
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}
.logo {
    margin-top: 5vh;
    height: 17.9vh;
}
.login-wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 485px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 3;
}
.title {
    font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
    font-size: 30px;
    font-weight: 100;
    margin: 5vh 0%;
    margin-top: 6%;
    width: 100%;
    text-align: center;
}
.login-form {
    width: 100%;
    padding: 2vh 70px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(160, 160, 160);
    background-color: #00000075;
    box-sizing: border-box;
}
label {
    display: inline-block;
    margin-bottom: 1vh;
    font-size: 22px;
}
.user-name, .password {
    width: 100%;
    background-color: #fff;
    height: 7vh;
    padding: 5px;
    border-radius: 5px;
    margin-bottom: 2.1345vh;
}
.login-btn-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-btn {
    font-size: 22px;
    width: 230px;
    height: 7vh;
    border-radius: 5px;
    border-style: solid;
    border-width: 1px;
    border-color: #98e7ff;
    background-image: linear-gradient(-90deg, #061144,  #6c919c);
}
.copy-right {
    margin-top: 3vh;
    width: 100%;
    text-align: center;
    color: #d4d4d4;
}
label:hover, input:hover, button:hover {
    cursor: pointer;
}
/* checkbox-setting */
input[type=checkbox] {
    display: none; /* checkbox非表示 */
}
.auto-login-label {
    position: relative; 
    padding: 0 0 0 25px;
}
.auto-login-label:hover:after {
    border-color: #0171bd;
}
.auto-login-label:after, .auto-login-label:before{
    position: absolute;
    content: "";
    display: block;
    top: 50%;
}
/* ボックスの設定 */
.auto-login-label:after {
    left: 0;
    margin-top: -11px;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    background-color: #fff;
}
/* チェックマークの設定 */
.auto-login-label:before {
    z-index: 2;
    left: 7px; 
    margin-top: -15px;
    width: 10px;
    height: 20px;
    border-right: 3px solid #333;
    border-bottom: 3px solid #333;
    transform: rotate(45deg);
    opacity: 0;
}
input[type=checkbox]:checked + .auto-login-label:before {
    opacity: 1;
}




/*
* IndexPage-setting
*/
body {
    color: #fff;
    font-family: 'メイリオ', Meiryo,'ヒラギノ角ゴシック','Hiragino Sans',sans-serif;
    position: relative;
    background-color: #000;
}
nav {
    height: 90px;
    box-sizing: border-box;
    background-color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}
.nav-bar-mobile {
    display: none;
}
ul,li {
    list-style: none;
}
.nav-list-pc {
    display: flex;
    align-items: center;
}
.nav-list-pc li {
    display: inline-block;
    margin: 0px 15px;
}
.left-menu {
    display: flex;
    align-items: center;
}
.right-menu {
    display: flex;
}
.logo-index {
    height: 70px;
}
.user-id {
    margin: 0 25px;
    white-space: nowrap;
}
button:focus {
    outline: none;
}
.nav-btn {
    font-size: 20px;
    font-weight: bold;
    min-width: 200px;
    box-sizing: border-box;
    height: 55px;
    border-radius: 5px;
    border-style: solid;
    border-width: 1px;
    background-image: linear-gradient(-90deg, #061144,  #2983af);
    background-color: #2983af;
    border-color: #2983af;
}

.airfield-btn, .golf-btn, .airport-btn {
    position: relative;
    text-align: left;
    padding-left: 20px;
    box-sizing: border-box;
    transition: .5s;
}

.airfield-btn::after, .golf-btn::after, .airport-btn::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: -15px;
    right: 0;
    height: 70px;
    width: 50px;
    z-index: 2;
    /*transform: rotate(30deg);*/
}
.airfield-btn::after {
    background: url(../img/pin_1.svg) no-repeat;
    background-size: contain;
}
.golf-btn::after {
    background: url(../img/pin_2.svg) no-repeat;
    background-size: contain;
}
.airport-btn::after {
    background: url(../img/pin_3.svg) no-repeat;
    background-size: contain;
}
.reset-btn, .log-out {
    min-width: 200px;
    background-image: none;
    background-color: #000;
    font-weight: 100;
}
.disable-btn {
    background-image: none;
    background-color: #504e4e;
    border-color: #504e4e;
    color: #989898;
    cursor: default;
}
.disable-btn::after {
    filter: brightness(0.5);
}
/* main-setting */
main {
    overflow-x: hidden !important;
}
.index-wrapper {
    position: relative;
}

/* animation-video */
.video-wrapper {
    position: relative;
    opacity: 1;
    z-index: 998;
    height: 100%;
    height: 100vh;
    width: 100%;
    background: url('../img/video_bg.jpg') no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
}
video {
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    height: 100%;
    height: 100vh;
    min-height: 100%;
    min-height: 100vh;
    min-width: 100%;
    min-width: 100vw;
}
@keyframes fade-out {
    0% {
        opacity: 1;
        display: block;
    }
    100% {
        opacity: 0;
        display: none !important;
        z-index: -1;
    }
}
/* GoogleMap表示部分 */
.map {
    height: calc(100vh - 90px); /* 画面サイズ - ナビゲーションバー */
    transition: 500ms;
}

/* infomation-setting */
.info-card {
    position: absolute;
    top: 0;
    right: 0;
    height: calc(100vh - 90px); /* 画面サイズ - ナビゲーションバー */
    width: 450px;
    background-color: #353535;
    color: #000;
    overflow: auto;
    transition: 500ms;
    transform: scale(0.85,0.85) translateX(450px);
    z-index: -1;
}
.info-card.on {
    transform: scale(1,1) translateX(0px);
    z-index: 1;
}
.map.on {
    /*transform: translateX(-450px);*/
    width: calc(100% - 450px);
    transition: 500ms;
}
.info-card p {
    white-space: pre-wrap;
}
.close {
    width: 100%;
}
.close-btn {
    position: relative;
    width: 30px;
    height: 30px;
}
.close-btn:hover {
    cursor: pointer;
}
.close-btn::before, .close-btn::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 5px;
    top: 20px;
    left: 5px;
    display: inline-block;
    background-color: #fff;
}
.close-btn::before {
    transform: rotate(45deg);
}
.close-btn::after {
    transform: rotate(135deg);
}
.info-images img {
    width: 48%;
    height: 85px;
    object-fit: cover;
}
.ping-info-wrapper, .nearby-info-wrapper {
    display: flex;
    align-items: center;
    min-height: 200px;
    width: 420px;
    padding: 15px;
    margin: 15px auto;
    background-color: #ffffff;
    box-sizing: border-box;
}
.left-area {
    width: 20%;
}
.ping-image {
    width: 80% !important;
    height: 100% !important;
}
.right-area {
    width: 80%;
}
.spot-name {
    font-size: 18px;
    font-weight: bold;
    margin: 5px 0px;
}
.address {
    font-size: 12px;
    font-weight: bold;
}
.address-label {
    padding: 1px 5px;
    background-color: #585858;
    color: #fff;
    margin-right: 8px;
}
.info-images {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}
.info-text {
    font-size: 12px;
    margin-top: 4px;
}

/* nearby-info-setting */
.info-card h2 {
    background-color: #000;
    color: #fff;
    font-size: 16px;
    font-weight: 100;
    text-align: center;
    width: 100%;
    padding: 5px;
}
.nearby-info-wrapper {
    flex-wrap: wrap;
    align-items: center;
}
.top-area {
    width: 100%;
    display: flex;
    align-items: center;
}
.nearby-info-left-area {
    width: 75%;
}
.nearby-info-right-area {
    width: 25%;
}
.bottom-area {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}
.image-area {
    width: 45%;
}
.image-area img {
    width: 95%;
    height: 85px;
    object-fit: cover;
}
.text-area {
    width: 65%;
    font-size: 12px;
}

/* 位置確認ボタン */
.position-confirm {
    width: 100%;
    height:50px;
    color: #fff;
    font-size: 18px;
    border-radius: 5px;
    border-style: solid;
    border-width: 1px;
    background-image: linear-gradient(-90deg, #061144,  #2983af);
    background-color: #2983af;
    border-color: #2983af;
}

/* 位置確認ボタンが押された際に付与する赤枠 */
.active {
    border-style: solid;
    border-width: 2px;
    border-color: rgb(212, 8, 8);
}
/* 画像ポップアップ */
.image-modal {
    position: fixed;
    top: 0;
    right: 0;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    background-color: #000000c4;
}
.image-container {
    width: 65%;
    height: auto;
    transform: scale(0.2,0.2);
    transition: .5s;
}
.image-container .close {
    width: 95%;
    max-width: 910px;
    margin: 10px auto 0 auto;
    padding-left: 10px;
}
.image-container .prev {
    display: block;
    width: 95%;
    height: 65vh;
    max-width: 910px;
    max-height: 610px;
    box-sizing: border-box;
    margin: 0 auto;
    object-fit: cover;
    padding: 15px;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.822));
}
.image-container .next-image {
    display: none;
    height: 75px;
    width: 100px;
    object-fit: cover;
    margin: 20px auto;
    filter: contrast(0.5);
}














/*
* LoginPage-setting
*/
@media only screen and (max-width: 0px) {
    .logo {
        margin-top: 50px;
        height: 75px;
    }
    .title {
        font-size: 30px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    label {
        font-size: 16px;
    }
    .user-name, .password {
        height: 50px;
        margin-bottom: 20px;
    }
    .copy-right {
        font-size: 12px;
    }
}
@media only screen and (max-height: 769px) {
    .title {
        font-size: 30px;
    }
    label {
        font-size: 16px;
    }
    .copy-right {
        font-size: 12px;
    }
    .login-btn {
        font-size: 18px;
    }
    .login-btn-container {
        margin-top: 30px;
    }
}


@media only screen and (max-width: 413px) {
    .logo {
        margin-top: 25px;
        height: 83px;
    }
    .title {
        font-size: 25px !important;
        margin-top: 15px;
        margin-bottom: 25px;
    }
    label {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .user-name, .password {
        height: 40px;
        margin-bottom: 15px;
    }
    .copy-right {
        font-size: 12px;
    }
    .login-btn-container {
        margin-top: 30px;
    }
    .login-btn {
        font-size: 18px;
        height: 40px;
        width: 205px;
    }
}
@media only screen and (max-height: 600px) {
    .logo {
        height: 83px;
    }
    label {
        font-size: 14px;
    }
    .copy-right {
        font-size: 10px;
    }
    .login-btn {
        font-size: 16px;
        height: 40px;
    }
    .login-btn-container {
        margin-top: 20px;
    }
    .user-name, .password {
        height: 35px;
        margin-bottom: 15px;
    }
}







/*
* IndexPage-setting
*/
@media only screen and (max-width: 1434px) {
    .nav-btn {
        font-size: 18px;
        min-width: 170px;
        height: 55px;
    }
}

@media only screen and (max-width: 1291px) {
    .logo-index {
        height: 50px;
    }
    .user-id {
        margin: 0px 15px;
    }
    .nav-btn {
        font-size: 16px;
        min-width: 145px;
        height: 50px;
    }
    .nav-list-pc li {
        margin: 0px 5px;
    }
}

/* 以下画面サイズよりモバイルメニュー展開 */
@media only screen and (max-width: 1031px) {
    nav {
        height: auto;
    }
    .nav-bar {
        display: none;
    }
    .nav-bar-mobile {
        display: flex;
        flex-wrap: wrap;
    }
    .logo-index {
        height: 40px;
    }
    .nav-list-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        font-size: 12px;
    }
    .btn-menu {
        position: fixed;
        left: 0;
        z-index: 2;
        background-color: rgba(0, 0, 0, 0.548);
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-around;
        transition: .5s;
    }
    .index-wrapper {
        margin-bottom: 75px;
        background: #000;
    }
    .map, .info-card {
        height: calc(100vh - 60px); /* 画面サイズ - ナビゲーションバー */
    }

    .arrow {
        transition: .5s;
        transform: rotate(180deg);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .open {
        bottom: 0 !important;
    }
    .open .arrow{
        transform: rotate(0deg);
    }
    .nav-btn {
        font-size: 14px;
        min-width: 90px;
        height: 40px;
    }
    .btn-menu li:first-child {
        width: 100%;
    }
    .btn-menu li {
        display: flex;
        align-items: center;
        width: 200px;
        text-align: center;
        margin: 0px 10px;
        box-sizing: border-box;
        height: 75px;
    }
    .btn-menu .nav-btn {
        font-size: 20px;
        font-weight: bold;
        min-width: 200px !important;
        height: 55px;
    }
    .reset-btn {
        font-weight: 100 !important;
    }
    .airfield-btn, .golf-btn, .airport-btn {
        padding-left: 20px;
    }
    .info-card {
        width: 350px;
        transform: scale(0.85,0.85) translateX(350px);
    }
    .map.on {
        transform: scale(1,1) translateX(-350px);
    }
    .ping-info-wrapper, .nearby-info-wrapper {
        width: 95%;
        padding: 0px 5px;
    }
    .image-modal {
        padding-bottom: 75px;
    }
    .image-container .prev{
        height: 55vh;
    }
}
@media only screen and (max-width: 701px) {
    .info-card {
        width: 300px;
        transform: scale(0.85,0.85) translateX(300px);
    }
    .map.on {
        transform: scale(1,1) translateX(-300px);
    }
    .spot-name {
        font-size: 16px;
    }
    .position-confirm {
        font-size: 14px;
        height: 40px;
    }
}
@media only screen and (max-width: 601px) {
    .info-card {
        width: 100%;
        transform: scale(0.85,0.85) translateX(600px);
    }
    .map.on {
        transform: scale(1,1) translateX(-600px);
    }
}
@media only screen and (max-width: 501px) {
    nav {
        height: auto;
    }
    .nav-bar {
        display: none;
    }
    .nav-bar-mobile {
        display: flex;
        flex-wrap: wrap;
    }
    .logo-index {
        height: 40px;
    }

    /* info-card-setting */
    .info-card {
        width: 100%;
        transform: scale(0.85,0.85) translateX(500px);
    }
    .map.on {
        transform: scale(1,1) translateX(-500px);
    }

    .spot-name {
        font-size: 16px;
    }
    .position-confirm {
        font-size: 14px;
        height: 40px;
    }
    .image-container {
        width: 300px;
    }
    .image-container .prev {
        height: 250px;
    }
    .image-container .next-image {
        height: 50px;
        width: 75px;
        margin: 10px auto;
    }
}


@media only screen and (max-width: 376px) {
    .logo-index {
        height: 40px;
    }
    /* info-card-setting */
    .info-card {
        width: 100%;
        transform: scale(0.85,0.85) translateX(376px);
    }
    .map.on {
        transform: scale(1,1) translateX(-376px);
    }
    .ping-info-wrapper, .nearby-info-wrapper {
        width: 95%;
        padding: 0px 5px;
    }
    .spot-name {
        font-size: 14px;
    }
    .image-container {
        width: 300px;
    }
    .image-container .prev {
        height: 250px;
    }
    .image-container .next-image {
        height: 50px;
        width: 75px;
        margin: 10px auto;
    }
}

#system-message-container {
    display: none;
}

.msg-container {
    margin: 0 -50px 20px -50px;
    color: red;
    font-size: 12px;
}

.msg-container .close {
    display: none;
}

.msg-container .alert-heading {
    display: none;
}