@charset "utf-8";

.main{
  margin-top: 90px;
}

.title{
  height: 500px;
  background-image: url(../images/schedule_main.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  text-shadow: 1px 1px 10px #000000;
  font-family: "Zen Old Mincho", serif;
  font-style: normal;
}

.link{
  color: #fff100;
}

.title h1{
  margin-left: 35px;
  font-size: 50px;
}

.title p{
  font-size: 20px;
  line-height: 1.6;
  margin-top: 60px;
  margin-left: 40px;
}

.sched{
  text-align: center;
}

.mens h2{
  display: inline-block;
  color: #fff100;
  /* background-color: #fff100; */
  font-size: 25px;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: 40px;
  margin-bottom: 10px;
  border: 2px solid #fff100;
}

details{
  margin: 20px;
}

.table{
  margin: 0 auto;
  width: 90%;
  border-collapse: separate;
  border-spacing: 0px;
}

.table th, .table td{
  padding: 10px 0;
  text-align: center;
}

.table tr:nth-child(odd){
  background-color: #232323
}

.table td{
  border-bottom: 1px solid #ffffff;;
  border-right: 1px solid #ffffff;
  background-color: #000000
}

.table td:first-child{
  border-left: 1px solid #ffffff;
}

.table th{
  border-right: 2px solid #000000;
  background-color: #fff100;
  color: #000000;
}

.table th:first-child{
  border-left: 2px solid #fff100;
}

.table th:last-child{
  border-right: 2px solid #fff100;
}

.table tr.bottom td{
  height: 10px;
  /* border-bottom: none; */
  border-left: none;
  border-right: none;
  padding: 0;
}

.table td.yellow{
  /* クラス名がyellowなのにbackground-colorがえんじ色なのは単にめんどくさかったからです。
  気になるようでしたら変えてください */
  color: #ffffff;
  background-color: #9b003f;
}

.table{
  table-layout: fixed;
  width:auto;
}

.month{
  width: 30px;
}

.day{
  width: 20px;
}

.about{
  width: 300px;
}

.at{
  width: 150px;
}

.notice{
  width: 150px;
}

.sched{
  display: flex;
  justify-content: center;
  gap: 40px;
}

.last{
  font-size: 18px;
  margin: 15px;
  padding-top: 30px;
  text-align: center;
}

@media (max-width: 767px){

.main{
  /* margin-top: 90px; */
  padding-top: 0px;
  margin-top: 60px;
}

.title{
  height: 200px;
}

.title h1{
  margin-left: 25px;
  font-size: 30px;
}

.title p{
  font-size: 16px;
  line-height: 1.6;
  margin-top: 60px;
  margin-left: 25px;
  margin-right: 20px;
}

.mens{
  font-size: 13px;
}

.mens h2{
  width: 95%;
}

.sched{
  flex-direction: column;
}

.table{
  margin-left: 10px;
  margin-right: 10px;
}

.last{
  font-size: 16px;
}

}