.event-schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 16px;
}

.event-schedule-table td {
    border: 1px solid #ddd;
    padding: 10px;
}

.event-label {
    background-color: #f4f4f4;
    font-weight: bold;
    text-align: left;
    width: 30%;
}

.event-value {
    text-align: left;
    width: 70%;
}

.event-schedule-table a {
    color: #0073aa;
    text-decoration: none;
    font-weight: bold;
}

.event-schedule-table a:hover {
    text-decoration: underline;
}

.sch-wrapper {
  padding: 3rem;
}
.sch-card {
  width: auto;
  max-width: 1100px;
  background-color: #fff;
  box-shadow: 0px 0px 15px -5px #777777;
  border-radius: 10px;
  padding: 1.5rem;
  border-left: 15px solid #ffde59;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.sch-area {
	margin-right: 1rem;
}
.sch-area .sch-year-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: -5px;
}
.sch-area .sch-year-area .sch-year {
  font-size: 12px;
  font-weight: bold;
}
.sch-area .sch-year-area .sch-week {
  font-size: 12px;
  font-weight: bold;
  color: rgb(54, 137, 255);
}
.sch-area .sch-day-area {
  padding: 0;
  margin: 0;
}
.sch-area .sch-day {
  font-size: 2.5rem;
  font-weight: 900;
}
.sch-container {
	width: 70%;
}
.sch-container1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sch-time-area .sch-time {
  font-size: 14px;
  font-weight: bold;
}
.sch-hr {
  background-color: #777777;
}
.sch-container1 {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.sch-container1 .sch-place-area .sch-place {
  font-size: 1.3rem;
  font-weight: bold;
}
.sch-container1 .sch-title-area {
  width: 50%;
}
.sch-container1 .sch-title-area .sch-title {
  font-size: 1.2rem;
  font-weight: bold;
}
.sch-container1 .sch-btn {
	width: 120px;
	text-align: center;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  color: #0e0e0e;
  background-color: #ffde59;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 20px;
}
.sch-container1 .sch-btn:hover {
  opacity: 0.7;
}
.sch-container2 {
  margin-top: 1rem;
}
.sch-container2 .sch-adress-area {
  font-size: 15px;
  font-weight: 600;
}
.sch-hr {
	margin-top: 0.3em;
}
/* レスポンシブ↓ */
@media screen and (max-width: 768px) {
  .sch-wrapper {
    padding: 1.5rem;
  }

  .sch-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    border-left: none;
    border-top: 10px solid #ffde59;

  }

  .sch-area {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .sch-area .sch-year-area {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .sch-area .sch-day {
    font-size: 2rem;
  }
  .sch-container {
	width: 100%;
}
  .sch-container1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .sch-container1 .sch-title-area {
    width: 100%;
  }

  .sch-container1 .sch-btn {
    text-align: center;
    padding: 12px 0;
	  width: 100%;
  }

  .sch-container2 .sch-adress-area {
    font-size: 14px;
  }

  /* スマホサイズではhrタグを非表示にする */
  .sch-hr {
    display: none;
  }
}
.sch-map {
	color: #6965fc;
}