@charset "UTF-8";
#global-head {
  color: #fff;
  width: 100%;
  height: 68px;
  background: #4c6cb3;
  padding: 10px 30px;
  z-index: 1;
  margin-bottom: 20px;
}

#global-head .header-container {
  width: 100%;
  display: flex;
}

#global-head .header-icons {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#global-head .header-icons .btn {
  font-size: 24px;
}

#global-head .header-user {
  display: flex;
  flex-direction: column;
}

#global-head .profile-balloon {
  width: 200px;
  position: absolute;
  top: 55px;
  right: 30px;
  background-color: #fff;
  border: solid 1px #eee;
  border-radius: 5px;
  padding: 10px 15px;
}

#global-nav {
  position: absolute;
  overflow-x: hidden;
  width: 0;
  height: 100vh;
  top: 68px;
  left: 0;
  background: linear-gradient(180deg, #4c6cb3, #4c6cb375);
  transition: .5s;
  z-index: 1;
}

#global-nav ul {
  list-style: none;
  margin-left: 0;
}

#global-nav > ul > li {
  position: relative;
}

#global-nav a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 15px;
  -moz-transition: color .3s linear;
  -webkit-transition: color .3s linear;
  transition: color .3s linear;
}

#global-nav .list-item {
  padding: 10px 20px;
}

#global-nav .list-link {
  border-bottom: 1px solid;
}

#global-nav .list-label {
  padding: 0 20px;
}

#global-nav #global-nav .feature-list {
  padding-left: 0;
}

#global-nav.open {
  width: 400px;
}

#global-nav .collapse-heading[data-bs-toggle="collapse"]::before,
#global-nav .collapse-heading[data-bs-toggle="collapse"]::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 12px;
  bottom: 12px;
  width: 12px;
  height: 0;
  border-top: #fff 1px solid;
  border-bottom: #fff 1px solid;
  margin: auto;
}

#global-nav .collapse-heading[aria-expanded=false]::after {
  transform: rotate(90deg);
  transition-duration: 0.3s;
}

#global-nav .collapse-heading[aria-expanded=true]::after {
  transform: rotate(0deg);
  transition-duration: 0.3s;
}

#nav-toggle {
  position: fixed;
  top: 15px;
  left: 15px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1000;
}

#nav-toggle .btn-area {
  transition: all .4s;
}

#nav-toggle span {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  background: #fff;
  transition: all .4s;
}

#nav-toggle span:nth-child(1) {
  top: 0;
}

#nav-toggle span:nth-child(2) {
  top: 11px;
}

#nav-toggle span:nth-child(3) {
  top: 22px;
}

#nav-toggle.open .btn-area {
  transform: rotateY(-360deg);
}

#nav-toggle.open span:nth-child(1) {
  top: 8px;
  transform: translateY(6px) rotate(-135deg);
}

#nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

#nav-toggle.open span:nth-child(3) {
  top: 20px;
  transform: translateY(-6px) rotate(135deg);
}

/* forget-password */
.forget-password {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 85px;
}

.forget-password-input {
  width: 300px;
  position: relative;
}

.forget-password-complete-btn {
  position: relative;
  width: 300px;
  color: #fff;
  padding: 15px;
}

.forget-password-complete-btn:after {
  content: "";
  position: absolute;
  top: 18px;
  right: 0;
  width: 18px;
  height: 18px;
  margin: 0 10px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  transform: rotate(45deg);
}

.forget-password .password-blind {
  position: absolute;
  right: 10px;
  top: 5px;
  font-size: 20px;
  padding: 5px 10px;
}

.forget-password .password-blind:hover {
  cursor: pointer;
}

.password-change {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.password-change-input {
  position: relative;
}

.password-change .password-blind {
  position: absolute;
  right: 10px;
  top: 5px;
  font-size: 20px;
  padding: 5px 10px;
}

.password-change .password-blind:hover {
  cursor: pointer;
}

.login {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.login-input {
  width: 300px;
  position: relative;
}

.title {
  width: 60%;
  color: #8d8d8d;
  border-bottom: solid 2px;
  margin-top: 40px;
  padding: 20px;
}

.password-blind {
  position: absolute;
  right: 10px;
  top: 5px;
  font-size: 20px;
  padding: 5px 10px;
}

.password-blind:hover {
  cursor: pointer;
}

.record-area {
  margin-bottom: 20px;
}

.record-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 20px;
}

.record-time-input-box {
  max-width: 250px;
  width: 100%;
}

.record-time-input-box--button, .record-time-input-box--value {
  max-width: 120px;
  width: 100%;
  padding: 5px;
}

.record-input-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.record-input-box--label {
  max-width: 120px;
  width: 100%;
  background-color: #0081cc;
  font-weight: bold;
  color: #fff;
  padding: 5px;
  text-align: center;
  border-radius: 5px 5px 0 0;
}

.record-input-box--input {
  max-width: 120px;
  width: 100%;
  padding: 5px;
}

.record-input-memo {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.record-input-memo--label {
  padding: 5px;
  margin-bottom: 5px;
}

.record-input-memo--content {
  resize: none;
  max-width: 600px;
  width: 100%;
  height: 4em;
  padding: 5px;
}

.record-intensity {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-top: 4em;
  margin-bottom: 40px;
}

.record-intensity--slider {
  position: relative;
}

.record-intensity--slider::before {
  content: '弱';
  position: absolute;
  top: -1.3em;
  left: 0px;
}

.record-intensity--slider::after {
  content: '強';
  position: absolute;
  top: -1.3em;
  right: 0px;
}

.record-view-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 120px;
  width: 100%;
}

.record-view-box--label {
  max-width: 120px;
  width: 100%;
  background-color: #0081cc;
  font-weight: bold;
  color: #fff;
  padding: 5px;
  text-align: center;
  border-radius: 5px 5px 0 0;
}

.record-view-box--input {
  max-width: 120px;
  width: 100%;
  padding: 5px;
  text-align: center;
  border: solid 1px #767676;
}

.record-view-time-input-box {
  max-width: 250px;
  width: 100%;
}

.record-view-time-input-box--button, .record-view-time-input-box--value {
  max-width: 120px;
  width: 100%;
  padding: 5px;
}

.record-view-memo {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.record-view-memo--label {
  padding: 5px;
  margin-bottom: 5px;
}

.record-view-memo--content {
  max-width: 600px;
  width: 100%;
  height: 4em;
  padding: 5px;
  border: solid 1px #767676;
}

.comment-content-area {
  display: flex;
  flex-direction: row;
  max-width: 760px;
  width: 100%;
  margin-bottom: 20px;
}

.comment-box--input {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.comment-box--view {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.comment--label {
  padding: 5px;
  margin: 10px 5px;
}

.comment--content {
  resize: none;
  width: 600px;
  padding: 5px;
  margin: 10px 5px;
}

.comment--post {
  width: 100px;
  height: 40px;
}

.comment-player--name {
  max-width: 100px;
  width: 100%;
}

.comment-manager--name {
  max-width: 100px;
  width: 100%;
  font-weight: bold;
  color: #0081cc;
}

.comment-manager--content {
  font-weight: bold;
  color: #0081cc;
}

.summary-header-area {
  display: flex;
  flex-direction: row;
  gap: 10;
  margin-bottom: 20px;
}

.summary-form {
  margin-bottom: 20px;
}

.summary-wrap {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 20px;
}

.summary-area {
  height: 320px;
  margin-bottom: 20px;
}

.summary-chart-area {
  max-width: 640px;
  width: 100%;
  margin-bottom: 20px;
}

.summary-title {
  font-size: 1.25em;
}

.summary-annotation {
  font-size: 0.75em;
}

.summary-button {
  max-width: 200px;
  width: 100%;
  background-color: #385289;
  color: #fff;
  padding: 0.75rem;
  border-radius: .25em;
  text-decoration: none;
}

.summary-button-area {
  margin-bottom: 20px;
}

.summary-table {
  margin-bottom: 20px;
}

.summary-table--label {
  padding: 5px 10px;
  background-color: #6c9bd2;
  border: solid 1px #187fc4;
  color: #fff;
  text-align: center;
}

.summary-table--value {
  padding: 5px 10px;
  border: solid 1px #187fc4;
  text-align: center;
}

.team-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.team--label {
  max-width: 100px;
  width: 100%;
}

.team-summary-container {
  margin-bottom: 20px;
}

.team-summary-header {
  display: flex;
  flex-direction: row;
}

.team-summary-header--label {
  max-width: 100px;
  width: 100%;
  color: #fff;
  background-color: #0081cc;
  text-align: center;
  padding: 5px;
}

.team-summary-body {
  display: flex;
  flex-direction: row;
}

.team-summary-body--value {
  max-width: 100px;
  width: 100%;
  text-align: center;
  padding: 5px;
  border: solid 1px #767676;
}

.team-summary--empty {
  width: 100%;
  padding: 5px;
  border: solid 1px #767676;
}

.period-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.period--label {
  max-width: 100px;
  width: 100%;
}

.view-username {
  font-weight: bold;
}

.user-list-container {
  max-width: 1024px;
  width: 100%;
}

.user-list--table {
  display: flex;
  flex-direction: row;
}

.user-list--header {
  max-width: 250px;
  width: 100%;
  background-color: #0081cc;
  color: #fff;
  padding: 5px;
  text-align: center;
}

.user-list--body {
  max-width: 250px;
  width: 100%;
  padding: 5px;
  border: solid 1px #767676;
  text-align: center;
}

.user-list--empty {
  width: 100%;
  padding: 5px;
  border: solid 1px #767676;
}

.user-info {
  display: flex;
  flex-direction: row;
}

.user-info--label {
  background-color: #6c9bd2;
  padding: 5px 10px;
  border: solid 1px #187fc4;
  min-width: 2.5em;
  text-align: center;
}

.user-info--value {
  background-color: #f7f7f7;
  font-weight: bold;
  padding: 5px 10px;
  border: solid 1px #187fc4;
  min-width: 2.5em;
  text-align: center;
}

.user-info-container {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}

.btn--back {
  margin-bottom: 20px;
}

.condition-area {
  max-width: 1024px;
  width: 100%;
}

.condition-area--notes li {
  list-style: none;
  text-align: right;
  color: red;
  font-weight: bold;
}

.condition-container {
  display: flex;
  flex-direction: row;
  max-width: 1024px;
  width: 100%;
}

.fixed-table {
  width: max-content;
}

.fixed-table--header {
  background-color: #4c6cb3;
  color: #fff;
  padding: 5px 10px;
  text-align: center;
  border: solid 1px #385289;
}

.fixed-table--header a {
  font-weight: bold;
  color: #fff;
}

.fixed-table--body {
  padding: 5px 10px;
  border: solid 1px #385289;
  text-align: center;
}

.fixed-table--body-summary {
  padding: 5px 10px;
  border: solid 1px #385289;
  text-align: center;
  background-color: #e4eaef;
}

.scroll-area {
  max-width: 1024px;
  width: 100%;
  position: relative;
  padding: 0 0 100px 0;
}

.scroll-wrap {
  width: 100%;
  position: relative;
  overflow-y: hidden;
  overflow-x: scroll;
}

.scroll-table {
  width: max-content;
}

.scroll-table--header {
  background-color: #4c6cb3;
  color: #fff;
  padding: 5px 10px;
  text-align: center;
  border: solid 1px #385289;
}

.scroll-table--header a {
  font-weight: bold;
  color: #fff;
}

.scroll-table--header-menu {
  color: #fff;
  background-color: #4c6cb3;
  border: solid 1px #fff;
}

.scroll-table--header-record {
  color: #fff;
  background-color: #385289;
  border: solid 1px #fff;
}

.scroll-table--body {
  padding: 5px 10px;
  border: solid 1px #385289;
  text-align: center;
}

.scroll-table--body-summary {
  padding: 5px 10px;
  border: solid 1px #385289;
  text-align: center;
  background-color: #e4eaef;
}

.scroll-table--empty {
  padding: 5px 10px;
}

.search-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.search-btn {
  max-width: 80px;
  width: 100%;
  padding: 2px;
}

.search-name-enable--label {
  margin-left: 2px;
}

.filter-area {
  border: solid 3px #767676;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 40px;
}

.filter-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.filter-container-suggest {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.filter-name {
  border-radius: 5px;
  padding: 4px;
}

.filter-select {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.filter-select--label {
  max-width: 50px;
  width: 100%;
  text-align: center;
}

.filter-select--item {
  border-radius: 5px;
  padding: 8px;
  max-width: 250px;
  width: 100%;
}

.filter-category {
  border: solid 1px #767676;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  color: #333333;
  padding: 5px 20px;
}

.filter-category.active {
  color: #fff;
  background-color: #4c6cb3;
}

.menu-form {
  margin-bottom: 20px;
}

.menu-box {
  margin-bottom: 20px;
}

.menu-empty {
  color: #666;
}

.menu-remove {
  width: 80px;
}

.menu-input-section {
  margin-bottom: 30px;
}

.menu-input--box {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 5px;
}

.menu-input--box label {
  width: 10%;
}

.menu-input--label {
  width: 10%;
}

.menu-select--theme {
  width: 322px;
  margin: 0;
}

.menu-select--intensity {
  width: 150px;
}

.menu-table {
  width: 1024px;
  border: solid 3px #385289;
}

.menu-table-section {
  margin-bottom: 20px;
}

.menu-table-head--category, .menu-table-head--subcategory, .menu-table-head--minorcategory {
  width: 148px;
  margin: 0;
  padding: 4px;
  background-color: #4c6cb3;
  color: #fff;
  text-align: center;
}

.menu-table-head--theme {
  width: 330px;
  margin: 0;
  padding: 4px;
  background-color: #4c6cb3;
  color: #fff;
  text-align: center;
}

.menu-table-head--intensity {
  width: 150px;
  margin: 0;
  padding: 4px;
  background-color: #4c6cb3;
  color: #fff;
  text-align: center;
}

.menu-table-head--remove {
  width: 100px;
  margin: 0;
  padding: 4px;
  background-color: #4c6cb3;
  color: #fff;
  text-align: center;
}

.menu-table-body--category, .menu-table-body--subcategory, .menu-table-body--minorcategory {
  width: 140px;
  padding: 4px;
}

.menu-table-body--theme {
  width: 322px;
  padding: 4px;
}

.menu-table-body--intensity {
  width: 142px;
  padding: 4px;
}

.menu-table-body--remove {
  width: 92px;
  padding: 4px;
}

.menu-summary {
  display: flex;
  flex-direction: row;
}

.menu-summary-item {
  max-width: 120px;
  width: 100%;
  text-align: center;
}

.menu-summary-item--label {
  padding: 5px 10px;
  background-color: #6c9bd2;
  border: solid 1px #187fc4;
  border-radius: 5px 5px 0 0;
  color: #fff;
}

.menu-summary-item--value {
  padding: 5px 10px;
  border: solid 1px #187fc4;
}

.menu-group {
  display: flex;
  flex-direction: row;
  gap: 10px;
  background-color: #4c6cb3;
  color: #fff;
  padding: 5px;
  font-size: 20px;
  max-width: 1024px;
  width: 100%;
}

.menu-item {
  max-width: 1024px;
  width: 100%;
}

.menu-list-header {
  display: flex;
  flex-direction: row;
  gap: 10px;
  background-color: #0081cc;
  color: #fff;
  padding: 5px;
  max-width: 1024px;
  width: 100%;
  text-align: center;
}

.menu-list-header--label {
  max-width: 110px;
  width: 100%;
}

.menu-list-body {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 5px;
}

.menu-list-body--value {
  max-width: 110px;
  width: 100%;
}

.menu-list--link {
  max-width: 1024px;
  width: 100%;
  text-decoration: none;
}

.menu-list--state {
  display: flex;
  flex-direction: row;
  gap: 10px;
  background-color: whitesmoke;
  max-width: 1024px;
  width: 100%;
}

.menu-icon-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.menu-candidate-box {
  display: none;
  border: solid 1px #767676;
  position: relative;
}

.menu-candidate-list {
  padding-left: 0;
  border: solid 1px #767676;
  position: absolute;
  background-color: #fff;
  z-index: 999;
}

.menu-candidate-item {
  list-style: none;
  padding: 0 5px;
}

.menu-candidate-item:hover {
  background-color: rgba(108, 155, 210, 0.5);
  color: black;
}

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

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

* {
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
}

#main {
  margin: 0 40px;
}

.btn {
  width: 150px;
  background-color: #385289;
  color: #fff;
  font-size: 1em;
}

.btn:hover {
  background-color: #4c6cb3;
  color: #fff;
}

.btn-general {
  width: 300px;
  color: #fff;
  background-color: #4c6cb3;
  padding: 15px;
}

.btn-general:hover {
  color: #fff;
  background-color: #385289;
}

.btn-account {
  width: 150px;
  background-color: #4c6cb3;
  color: #fff;
  font-size: 1.5em;
  border: none;
  outline: none;
}

.team-list--label,
.position-list--label,
.school-year-list--label,
.gender-list--label {
  padding: 4px;
}

.team-list--items,
.position-list--items,
.school-year-list--items,
.gender-list--items {
  border-radius: 5px;
  padding: 4px;
}

.date-input--label {
  padding: 4px;
}

.date-input--value {
  border-radius: 5px;
  padding: 4px;
}

.text-color--blue {
  color: #0000ff;
}

.text-color--red {
  color: #ff0000;
}

.text-color--yellow {
  color: #ffff00;
}

.no-data {
  color: #ff0000;
  font-weight: bold;
}

.search-section {
  margin-bottom: 20px;
}

.tab-block {
  max-width: 1024px;
  width: 100%;
}

.tab-menu--active {
  display: inline-block;
  max-width: 120px;
  width: 100%;
  background-color: #4c6cb3;
  color: #fff;
  padding: 10px;
  border-radius: 5px 5px 0 0;
  border: solid 1px #767676;
  text-align: center;
}

.tab-menu--deactive {
  display: inline-block;
  max-width: 120px;
  width: 100%;
  text-decoration: none;
  padding: 10px;
  border: solid 1px #767676;
  border-radius: 5px 5px 0 0;
  text-align: center;
}

.tab-content {
  border: solid 3px #4c6cb3;
  padding: 10px;
}

.mb-20 {
  margin-bottom: 20px !important;
}

/*# sourceMappingURL=index.css.map */