.r-btn{
  width: 80%;
}
.r-btn form,.r-btn button{
  width: 100%;
  height: 100%;
}
.raisya button{
  background: #4ab1ef;
}
.haitatsu,.raisya{
  padding: 10px;
  height: 250px;
  place-items: center;
  display: grid;
}
.haitatsu button{
  background: #ef9f4a;
}

/* モーダルCSS */
.modalArea {
  display: none;
  position: fixed;
  z-index: 10; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.9);
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  width: 70%;
  max-width: 850px;
  padding: 40px 30px;
  background-color: #fff;
}

.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}

/* タブメニューのスタイル */
.content {
  display: none;
  transition: 0.5s;
}
.content.show {
  display: block;
  animation: show 1s linear 0s;
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* タブボタン */
.tab-container{
  margin-top: 2rem;
}
.tab-container .tab {
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 250px; */
  margin:0 auto;
  padding: .9em 2em;
  border: 1px solid #2589d0;
  border-radius: 5px;
  background-color: #fff;
  color: #2589d0;
  font-size: 1em;
}
.tab-container .tab.active{
  background: #2589d0;
  color: white;
  font-weight: bold;
}
.content form button{
  padding: .9em 0em;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    background-color: #fff;
    font-size: 1em;
    box-shadow: 1px gray;
    box-shadow: 0px 0px 14px -12px;
    font-weight: bold;
    margin: 10px 0;
}
.content-container{
  margin-top: 2rem;
  background: #f5f5f5;
  padding: 5%;
}

/* ログイン画面&新規登録 */
#login.wrapper,#signup.wrapper{
  max-width: 400px;
  margin: 30px auto;
  width: 90%;
  border-radius: 5px;
  box-shadow: 0 0 3px #ccc;
  padding: 30px;
}
#login h1 img{
  max-width: 140px;
  margin: auto;
}
#login.wrapper form,
#signup.wrapper form{
  margin-top: 40px;
}
#login.wrapper form input.btn,
#signup.wrapper form input.btn{
  width: 60%;
  margin-top: 15px;
  padding: 10px;
}

/* 通知登録画面 */
#getToken{
  max-width: 500px;
  margin: auto;
  width: 90%;
}
#getToken h1{
  font-size: 25px;
  margin-top: 30px;
}
.token_box input{
  box-shadow: 0 0 3px #ccc;
  padding: 10px 15px;
  margin-top: 30px;
  border: none;
  width: 100%;
}
.token_box p{
  margin-bottom: initial;
}
.logout button{
  color: #2589d0;
  border-bottom: 1px solid;
}
.token_btn{
  justify-content: space-between;
  margin-top: 20px;
}
.token_btn button{
  flex: 0 0 48%;
}
#allow_push_notification,#updateToken{ padding: 10px; }
#allow_push_notification{
  background: #2589d0;
}
#updateToken{
  background: #ef9f4a;
}
#result{
  margin-top: 20px;
}