html {
  font-size: 14px;
  background-color: #332D2D;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
  background-color: #332D2D;
}

body {
  margin-bottom: 70px;
  padding-top: 50px;
  background-color: #332D2D;
  color: #198754;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
}

footer {
  margin: 0;
  padding: 0;
}

a {
  color: #198754;
}
a:visited {
  color: #198754;
}

.hide {
  visibility: hidden;
}

.none {
  display: none;
}

.logo {
    font-family: "Goldman", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
.goldman-bold {
  font-family: "Goldman", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.neutral {
  border: 1px dotted #eeeeee;
  background: #000000;
  color: white;
  padding: 2px 5px;
}

.GM {
  border: 1px dotted #eeeeee;
  background: #f57c0b;
  color: rgb(255, 255, 255);
  padding: 2px 5px;
}

.red {
  border: 1px dotted #eeeeee;
  background: #ff0000;
  color: white;
  padding: 2px 5px;
}

.blue {
  border: 1px dotted #eeeeee;
  background: #0000FF;
  color: white;
  padding: 2px 5px;
}

.gold {
  border: 1px dotted #eeeeee;
  background: #ffc609;
  color: #333333;
  padding: 2px 5px;
}

.yellow {
  border: 1px dotted #eeeeee;
  background: #ffc609;
  color: #333333;
  padding: 2px 5px;
}

.platoon {
  border: 1px dotted #eeeeee;
  background: #a2a2a2;
  color: #333333;
  padding: 2px 5px;
}

.squad {
  border: 1px dotted #eeeeee;
  background: #bfbfbf;
  color: #333333;
  padding: 2px 5px;
}

.fireteam {
  border: 1px dotted #eeeeee;
  background: #f7f7f7;
  color: #333333;
  padding: 2px 5px;
}


.text-nowrap {
  white-space: nowrap;
}

.table-responsive {
  min-height: 5vh; /* 固定したい高さを指定 */
  max-height: 70vh;
  overflow-y: auto;
}

.sticky {
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: #000000;
}


/** MAPのスタイル */
.leaflet-layer,
.leaflet-control-zoom-in,
.leaflet-control-zoom-out,
.leaflet-control-attribution {
  filter: invert(100%) hue-rotate(180deg) brightness(100%) contrast(50%);
}




/**
 * TOPページの地図・モーダル関連　ここから
 */
#map {
  width: 100%;
  height: 50vh;
  margin: 0 auto;
  animation: fadeIn 2.0s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
/* モーダルウィンドウのスタイル */
.modal {
  display: none;
  position: fixed;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}
/**
 * TOPページの地図・モーダル関連　ここまで
 */






 #spinner {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}


/* スピナー本体 */
.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #3498db;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin-bottom: 2vh;
  animation: spin 1s linear infinite;
}

.spinnertext {

  display: block;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}




/** 点滅 */
.blinking{
	  -webkit-animation:blink 0.5s ease-in-out infinite alternate;
    -moz-animation:blink 0.5s ease-in-out infinite alternate; 
    animation:blink 0.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {
      opacity:0.3;
    }
    100% {
      opacity:1; 
      background-color: #ff0000;
      color: #eeeeee;
    }
}
@-moz-keyframes blink{
  0% {
    opacity:0.3;
  }
  100% {
    opacity:1; 
    background-color: #ff0000;
    color: #eeeeee;
  }
}
@keyframes blink{
  0% {
    opacity:0.3;
  }
  100% {
    opacity:1; 
    background-color: #ff0000;
    color: #eeeeee;
  }
}


.blinking-loading{
  -webkit-animation:blink-loading 0.5s ease-in-out infinite alternate;
  -moz-animation:blink-loading 0.5s ease-in-out infinite alternate; 
  animation:blink-loading 0.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink-loading{
  0% {
    opacity:0.3;
  }
  100% {
    opacity:1; 
    color: #3498db;
  }
}
@-moz-keyframes blink-loading{
0% {
  opacity:0.3;
}
100% {
  opacity:1; 
  color: #3498db;
}
}
@keyframes blink-loading{
0% {
  opacity:0.3;
}
100% {
  opacity:1; 
  color: #3498db;
}
}