/* 全体のスタイリング */
body {
    background-color: #ebebeb !important;
    height: 100%;
    font-family: "Arial", sans-serif;
    justify-content: center;
    align-items: center;
    margin: 0;
    display: flex;
    flex-direction: column;
}


.title{
  height: 250px;
  width: 700px;
}

.title img{
  height: 250px;
  width: 700px;
}

.mogura{
  max-width: 390px;
}

.mogura img{
  height: 190px;
  width: 390px;
}


  
  /* フォームのコンテナ */
  .form-container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 390px;
    margin-bottom: 50px;
  }

  @media screen and (max-width: 600px){
    .form-container {
        width: 300px;
      }

    .title{
          height: 190px;
          max-width: 390px;
    }
        
    .title img{
          height: 190px;
          width: 390px;
    }    
    
  }
  
  /* タイトル */
  h1 {
    margin: 0 0 30px;
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
  }
  


  /* フォーム要素のスタイリング */
  
  label {
    display: block;
    font-size: 14px;
    margin-bottom: 3px;
  }
  
  input {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    margin-bottom: 15px;
    box-sizing: border-box;
  }

  select {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    margin-bottom: 15px;
    box-sizing: border-box;
  }
  

  button {
    width: 100%;
    padding: 8px;
    font-size: 16px;
    font-weight: bold;
    background-color: #3490dc;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px !important;
  }
  
  button:hover {
    background-color: #2779bd;
  }


  .chair-select{
    display: flex;
  }

  .chair-label{
    margin-bottom: 20px;
  }

  .radio-btn{
    width: 15px;
    height: 15px;
  }

  .kome p{
    font-size: 0.7rem;
  }




/* 予約成功画面 */
.success-container{
  padding: 30px;
  width: 100%;
  max-width: 390px;
}

.success-container h1{
    margin: 1rem;
    
}
.success-container p{
    margin: 1rem;
    color: black;
}



.sitting-mogura{
  max-width: 350px;
}

.sitting-mogura img{
  height: 390px;
  width: 350px;
}





  /* 予約表 */
.card-container{
    display: flex;
    flex-direction: column;
    align-items : center;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 390px;
}



.card{
    width: 150px;
    margin-bottom: 20px;
    padding: 7px;
    border: solid 1px;
    
}
  
.card p{
    margin: 0;
    color: black;
}


@media screen and (max-width: 600px){
  .card-container {
      width: 300px;
    }
  

  }
