* {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-scrollbar {display:none;}
}
#overlay{ 
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height:100%;
  background: rgba(0,0,0,0.6);
}
.cv-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;  
}
.spinner {
  width: 40px;
  height: 40px;
  border: 4px #ddd solid;
  border-top: 4px #2e93e6 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
  100% { 
    transform: rotate(360deg); 
  }
}
.is-hide{
  display:none;
}
.btn_push {
  display: inline-block;
  position: relative;
  padding: 6px 0px;
  margin: 0px 0px 5px 0px;
  text-align: center;
  text-decoration: none !important;
  border-radius: 3px 3px 0px 0px;
  cursor:pointer;
}

.btn_push::after {
  position: absolute;
  bottom: -3px;
  left: 0px;
  width: 100%;
  height: 3.5px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: transparent;
  content: "";
}

.btn_push:active {
    transform: translateY(3px);
}
.btn_push:active::after {
    height: 0px;
}

.btn_push2 {
  display: inline-block;
  position: relative;
  padding: 6px 0px;
  width: auto;
  height: 60px;
  margin: 0px 0px 5px 0px;
  text-align: left;
  text-decoration: none !important;
  border-radius: 30px;
  border: 1px solid #555;
  cursor:pointer;
}

.btn_push2::after {
  position: absolute;
  bottom: -3px;
  left: 23px;
  width: 114px;
  height: 3px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: transparent;
  content: "";
}

.btn_push2:active {
    transform: translateY(3px);
}
.btn_push2:active::after {
    height: 0px;
}

/* タブの色変更 */
.nav-pills .nav-link.active{
  background-color: #D0ED57;
  color: #000 !important;
}

/* タブの文字色変更 */
.nav-pills .nav-link{
  color: #000;
  border-top: 1px solid #D0ED57;
  border-right: 1px solid #D0ED57;
  border-left: 1px solid #D0ED57;
}

.nav-on {
  color:white;
  background-color:#9cbb1f;
  padding-top:6px;
  cursor: pointer;
}

.nav-off {
  padding-top:6px;
  border-right:1px solid #9cbb1f;
  cursor: pointer;
}

