.calendar {
    width: 300px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    font-family: 'Arial', sans-serif;
  }
  
  .calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e0d206;
    color: white;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  
  .calendar-body {
    padding: 10px;
  }
  
  .weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: bold;
    padding-bottom: 5px;
  }
  
  .days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
  }
  
  .day {
    padding: 10px 0;
    border: 1px solid #eee;
  }
  
  .today {
    background-color: #ffedcc;
    border-radius: 50%;
    font-weight: bold;
  }
  
  .holiday {
    background-color: #ffcccc;
    border-radius: 50%;
    font-weight: bold;
    color: red;
  }

  .calendar-header {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 10px;
  }
  
  .calendar-label {
    font-weight: bold;
    font-size: 1rem;
    margin-right: 16px;
    padding-left: 10px;
    color: white;
  }
  
  .calendar-title {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
  }




  .calendar-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  #calendar-header {
    margin: 0 10px;
    font-weight: bold;
    font-size: 0.9rem;
  }
  


  .hidden {
    display: none;
  }


  .calendar-toggle-button {

    z-index: 1000;
   
  }

  .calendar-toggle-button p {

    margin-left: 10PX;
    font-weight: 600;
   
  }
  
  .close-button {
    margin-left: 10px;
    font-size: 1.1rem;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
  }

  .calendar-icon {
    width: 30px;
    border: none;          
    outline: none;        
    box-shadow: none;      
    background: transparent; 
  }

  .calendar-flex {

    display: flex;
    flex-direction: row;
  }

  .calendar-position{

    display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center; 
  
  }

  .button-position{
    display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center; 
  margin-bottom: 1%;
  margin-left: -2%;
  }


  /*---------------601-1200px モバイル版 ---------------------------------------------------------*/
  /* モバイル版*/
@media(max-width:600px) {

    .button-position{
      display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center; 
    margin-top: -1%;
    margin-bottom: 3%;
    margin-left: -2%;
    }

    }/* モバイル版*/