body{
  padding-top: 80px;
}
section{
  padding-top: 0;
}

h1{
  text-align: center;
  margin: 32px auto;  
}

#table01{
  margin:0 auto;
  min-width: 600px;
}


#table01 tr {
  border-top: 1px solid green;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  }
  
  #table01 th,
  #table01 td {
    padding:  0;
    padding-top: 24px;
    border: none;
    text-align: left;
  }


  #table01 th {
    width: 20%;
  }

  #table01 td {
    padding-bottom: 24px;
    width: 80%;
  }

  #location-content p{
    margin: 0;
  }

  
  iframe {
    filter: grayscale(30%);
    aspect-ratio: 8/5;
    width: 100%;
    /* max-width: 100%; */
    height: auto;
    padding-bottom: 0;
    margin-bottom: 0;
    /* display: inline-block; block から inline-block に変更 */
  }


  
  /* sp */
  @media only screen and (max-width: 748px) {

    #table01 {
      min-width: auto;
    }
  
    #table01 tr {
      flex-direction: column;
    }

    #table01 th,
    #table01 td {
      width: 100%;
    }
  
    #table01 td {
      padding-top: 0;
    }

    iframe {
      width: 100%;
    }
  }

  /* From Uiverse.io by coding-masala */ 
/* .location-selector {
  display: flex;
  flex-direction: column;
}

.location {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
}

.location input[type="radio"] {
  display: none;
}

.radio-circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #aaa;
  position: relative;
  margin-right: 10px;
}

.radio-circle::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ddd;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.2s ease-in-out;
}

.location input[type="radio"]:checked + .radio-circle::before {
  transform: translate(-50%, -50%) scale(1);
}

.location:nth-of-type(1) input[type="radio"]:checked + .radio-circle::before {
  background-color: #26be00;
}

.location:nth-of-type(2) input[type="radio"]:checked + .radio-circle::before {
  background-color: #26be00;
}



.location:hover .radio-circle {
  border-color: #555;
}

.location:hover input[type="radio"]:checked + .radio-circle::before {
  background-color: #26be00;
} */