header {
  height: 50px;
  width: 100%;
  background-color: blue;
  color: white;
  font-size: 30px;
  line-height: 50px;
  padding-left: 10px;
  position: fixed;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, .5);
  display: flex;
  justify-content: space-between;
}

body {
  background-color: silver;
}

p {
  display: inline-block;
  font-size: 30px;
  line-height: 50px;
}

.explain {
  font-size: 17px;
  padding-right: 10px;
}

main {
  padding-top: 70px;
  padding-bottom: 50px;
}

table {
  margin: 0 auto;
  /* background-color: silver; */
  /* box-shadow: 0 0 25px 0 rgba(0, 0, 0, .5);; */
}

th {
  height: 30px;
  line-height: 30px;
  border: solid 1px white;
  padding:0 5px;
}

tr {
  border: solid 3px white;
}

td {
  border: solid 1px white;
  word-break : break-all;
}

.icon {
  text-align: center;
  vertical-align: middle;
  padding:5px 5px;
}

.player {
  width: 320px;
  height: 180px;
}

/*modal*/

.modal-wrapper {
  color: #000;
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 10px;
  text-align: center
}

.modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}

.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}

.modal-wrapper .modal-window {
  box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  height: 450px;
  width: 40%;
  max-width: 600px;
  padding: 30px 30px 30px;
  border-radius: 2px;
  background: silver;
  box-shadow: 0 0 30px rgba(0, 0, 0, .6);
  vertical-align: middle
}

.modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
  height: 100%;
}

.modal-wrapper .modal-delete-window {
  box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  height: 180px;
  width: 20%;
  max-width: 600px;
  padding: 30px 30px 30px;
  border-radius: 2px;
  background: silver;
  box-shadow: 0 0 30px rgba(0, 0, 0, .6);
  vertical-align: middle
}

.modal-wrapper .modal-delete-window .modal-delete-content {
  max-height: 80vh;
  overflow-y: auto;
  height: 100%;
}

.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}

.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  color: #95979c!important;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.modal-wrapper .modal-close:hover {
  color: #2b2e38!important
}

.setText {
  position: static;
  width: 64px;
  height: 64px;
}

.scheduleBtn {
  cursor: pointer;
  background: rgb(239, 239, 239);
  color: black;
  border: 1px solid rgb(239, 239, 239);
  border-radius: 2px;
  font-size: 1rem;
  padding: 0rem 0.3rem;
  margin: 1rem 0;
}

textarea {
  resize: none;
  width:300px;
  height:200px;
  vertical-align:top;
  font-family: 'メイリオ', 'Meiryo', sans-serif;
}

.status {
  text-align: center;
  color: white;
  display: none;
  padding: 10px;
  width: 180px;
  background: red;
  margin: 0 auto;
  border-radius: 10px;
}
