@charset "UTF-8";
@media only screen and (min-width: 1201px) {
  .tb-only, .sp-only, .tb-sp-only {
    display: none !important;
  }
}
@media only screen and (min-width: 581px) and (max-width: 1200px) {
  .pc-only, .sp-only, .pc-sp-only {
    display: none !important;
  }
}
@media only screen and (max-width: 580px) {
  .pc-only, .tb-only, .pc-tb-only {
    display: none !important;
  }
}
.invisible {
  display: none;
}

.print_off {
  display: none !important;
}

input {
  width: 100%;
  /*親要素いっぱい広げる*/
  padding: 5px;
  /*ボックスを大きくする*/
  font-size: 16px;
  border-radius: 3px;
  /*ボックス角の丸み*/
  border: 2px solid #ddd;
  /*枠線*/
  max-width: 15rem;
}

.date-input {
  width: 10rem;
}

.year-input {
  width: 5rem;
}

.month-input {
  width: 3rem;
}

.time-input {
  width: 6rem;
}

.memo-input {
  max-width: 100rem;
}

select {
  padding: 5px;
  /*ボックスを大きくする*/
  font-size: 16px;
  border-radius: 3px;
  /*ボックス角の丸み*/
  border: 2px solid #ddd;
  /*枠線*/
}

.center {
  text-align: center !important;
}

.left {
  text-align: left !important;
}

.small {
  font-size: 12px;
}

body {
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
}
body > * {
  margin: 0 20px;
  overflow-wrap: break-word;
}
body * {
  color: #333333;
}

.header {
  background-color: #b9eeee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin: 0;
}
.header .item {
  display: inline-block;
}
.header .app-name {
  margin: auto 20px;
  font-size: 1.5rem;
  font-weight: bold;
}
.header .user-name {
  margin: auto 20px;
}
.header .logout {
  margin: auto 20px;
}

.footer {
  background-color: #d6d6d6;
  margin: 10px 0 0 0;
}

.frame {
  margin: 10px 0;
}

.title {
  width: 100%;
  margin: 20px 0;
  font-size: xx-large;
  font-weight: bold;
  text-align: center;
}

.sub-title {
  font-size: larger;
  font-weight: bold;
}

.ly-column2 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.ly-column2 .frame {
  width: calc((100% - 20px) / 2);
}
@media only screen and (max-width: 580px) {
  .ly-column2 {
    flex-direction: column;
  }
  .ly-column2 .frame {
    width: 100%;
  }
}

.filter-table th, .lesson-create-table th, .monthlyreport-create-table th {
  text-align: right;
  padding: 5px 10px;
  min-width: 5rem;
}
.filter-table td, .lesson-create-table td, .monthlyreport-create-table td {
  padding: 5px 10px;
}

.vertical-table, .pair-table, .monthlyreport-table {
  width: 100%;
  border-radius: 3px;
  border: 1px #ddd solid;
  border-spacing: 0;
}
.vertical-table thead th, .pair-table thead th, .monthlyreport-table thead th {
  background-color: #1F6D8B;
  color: white;
  padding: 5px;
  min-width: 80px;
  max-width: 300px;
  text-align: center;
  border: 1px dashed black;
}
.vertical-table tbody tr td, .pair-table tbody tr td, .monthlyreport-table tbody tr td {
  min-width: 80px;
  max-width: 300px;
  overflow-wrap: break-word;
  padding: 5px;
}
.vertical-table tbody tr td .label, .pair-table tbody tr td .label, .monthlyreport-table tbody tr td .label {
  font-weight: bold;
}
.vertical-table tbody tr td .report-area, .pair-table tbody tr td .report-area, .monthlyreport-table tbody tr td .report-area {
  border: 1px dashed black;
}
.vertical-table tbody tr:nth-child(odd) td, .pair-table tbody tr:nth-child(odd) td, .monthlyreport-table tbody tr:nth-child(odd) td {
  background-color: #FFFFFF;
}
.vertical-table tbody tr:nth-child(even) td, .pair-table tbody tr:nth-child(even) td, .monthlyreport-table tbody tr:nth-child(even) td {
  background-color: #F6F6F6;
}
.vertical-table tbody tr a, .pair-table tbody tr a, .monthlyreport-table tbody tr a {
  color: #0000EE;
  cursor: pointer;
}
.vertical-table tbody tr a:hover, .pair-table tbody tr a:hover, .monthlyreport-table tbody tr a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 580px) {
  .vertical-table thead, .pair-table thead, .monthlyreport-table thead {
    display: none;
  }
  .vertical-table tr, .pair-table tr, .monthlyreport-table tr {
    text-align: left;
  }
  .vertical-table td, .pair-table td, .monthlyreport-table td {
    display: block;
    width: 100%;
  }
}

.pair-table thead th {
  background-color: #288b1f;
}

.monthlyreport-table thead th {
  background-color: #7f2ab8;
}

.btn {
  display: inline-block;
  margin: 5px;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.8rem;
  color: white;
  background-color: #0083ee;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}
.btn:hover {
  cursor: pointer;
  background-color: #006bc2;
}

.btn--delete {
  background-color: #ee005b;
}
.btn--delete:hover {
  background-color: #97003a;
}

.btn--pair {
  background-color: #06a701;
}
.btn--pair:hover {
  background-color: #058101;
}

.FlexTextarea {
  position: relative;
  font-size: 1rem;
  line-height: 1.8;
}

.FlexTextarea__dummy {
  overflow: hidden;
  visibility: hidden;
  box-sizing: border-box;
  padding: 5px 15px;
  min-height: 120px;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  border: 1px solid;
}

.FlexTextarea__textarea {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: hidden;
  box-sizing: border-box;
  padding: 5px 10px;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid #b6c3c6;
  border-radius: 4px;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  resize: none;
}

.FlexTextarea__textarea:focus {
  box-shadow: 0 0 0 4px rgba(197, 197, 197, 0.3);
  outline: 0;
}

.dragMove {
  padding: 16px 0 0 0;
  cursor: move;
}
.dragMove > * {
  background-color: white;
  cursor: default;
}

.dragging {
  opacity: 0.5;
}
