@charset "UTF-8";
.full-loading-box {
  position: absolute;
  width: 100%;
  height: 100dvh;
  top: 0;
  background-color: white;
  display: flex;
  align-items: center;
}

.loaders-container {
  margin: 0 auto;
  width: 300px;
  text-align: center;
  font-size: 0;
}
.loaders-container .loading-container-inner {
  position: relative;
  box-sizing: border-box;
  padding: 30px;
  width: auto;
  height: 140px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle {
  box-sizing: border-box;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  border: 10px solid #eee;
  border-top-color: #ccc;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
html,
body {
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
}

body.login {
  display: flex;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #f5f5f5;
}

main {
  margin-top: 78px;
  padding-bottom: 60px;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  main {
    margin-left: 280px;
  }
}

.hide {
  display: none;
}

#service-head {
  font-size: 40px;
}

.form-signin {
  max-width: 375px;
  padding: 15px;
}

.form-signin .form-floating:focus-within {
  z-index: 2;
}

.form-signin input[type=email] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.form-signin input[type=password] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

#as-side-bar {
  z-index: 10;
  position: fixed;
  right: -280px;
  height: calc(100vh - 180px);
  transition: all 0.4s;
  padding-bottom: 100px;
  top: 78px;
}
@media screen and (min-width: 768px) {
  #as-side-bar {
    height: calc(100vh - 78px);
    left: 0px;
    padding-bottom: 15px;
  }
}
#as-side-bar > div {
  height: 100%;
  overflow-y: scroll;
}

#as-side-bar.active {
  right: 0px;
}

nav#top-nav {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  z-index: 1;
  /*ボタン内側*/
  /*activeクラスが付与されると線が回転して×に*/
}
nav#top-nav .openbtn1 {
  position: absolute;
  /*ボタン内側の基点となるためrelativeを指定*/
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  border: 1px white solid;
  top: 14px;
  right: 14px;
}
@media screen and (min-width: 768px) {
  nav#top-nav .openbtn1 {
    display: none;
  }
}
nav#top-nav .openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 45%;
}
nav#top-nav .openbtn1 span:nth-of-type(1) {
  top: 15px;
}
nav#top-nav .openbtn1 span:nth-of-type(2) {
  top: 23px;
}
nav#top-nav .openbtn1 span:nth-of-type(3) {
  top: 31px;
}
nav#top-nav .openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
nav#top-nav .openbtn1.active span:nth-of-type(2) {
  opacity: 0;
  /*真ん中の線は透過*/
}
nav#top-nav .openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.calendar-box {
  width: 90%;
  margin: auto;
  margin: 30px auto;
  padding: 0px;
}
.calendar-box .day-box {
  border: solid 0.5px gainsboro;
  display: flex;
}
.calendar-box .day-box > div {
  padding: 10px;
}
.calendar-box .day-box .day-info-box {
  flex-grow: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calendar-box .day-box .day-info-box .event-list-box {
  line-height: 200%;
}
.calendar-box .day-box .day-info-box .event-list-box div.event-box {
  padding: 2px 16px;
  border-radius: 16px;
  display: inline-block;
  line-height: 150%;
}
.calendar-box .day-box .day-info-box .event-list-box div.event-box.test {
  background-color: #8fcf70;
}
.calendar-box .day-box .day-info-box .event-list-box div.event-box.external_test {
  background-color: #fdb667;
}
.calendar-box .day-box .day-info-box .event-list-box div.event-box.event {
  background-color: #fa735c;
  color: white;
}
.calendar-box .day-box .day-info-box .event-list-box div.event-box.meeting {
  background-color: #727cc9;
  color: white;
}
.calendar-box .day-box .day-info-box .event-list-box div.event-box.addmission {
  background-color: #83ccdd;
  color: white;
}
.calendar-box .day-box .day-of-week-box {
  border-right: solid 0.5px gainsboro;
  display: flex;
  align-items: center;
}
.calendar-box .day-box .date-box {
  margin-bottom: 10px;
}
.calendar-box .day-box.sun-day {
  background-color: mistyrose;
}
.calendar-box .day-box.holiday {
  background-color: mistyrose;
}
.calendar-box .week-header {
  display: none;
}
@media screen and (min-width: 768px) {
  .calendar-box .week-header .day-box {
    display: flex;
    justify-content: center;
    color: white;
    background-color: #333;
    padding: 10px;
  }
  .calendar-box .week-box {
    display: flex;
  }
  .calendar-box .week-box .day-box {
    width: 14.28%;
  }
  .calendar-box .week-box .day-box .day-of-week-box {
    display: none;
  }
  .calendar-box .week-box .day-box .day-info-box {
    padding: 5px;
  }
  .calendar-box .week-box .day-box .day-info-box .event-box {
    font-size: 0.75rem;
  }
}

.calendar-box.students-calendar div.day-box div.day-info-box div.event-box.hide-from-students {
  display: none;
}

body.account-page #mail-list li {
  transition: all 1s;
}
body.account-page #mail-list li div.mail-items {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  overflow: scroll;
}
body.account-page #mail-list li div.mail-items i {
  pointer-events: none;
}

body.teachersphoto-body figure#president-box {
  position: relative;
  width: 320px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
body.teachersphoto-body figure#president-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0% 15%;
}
body.teachersphoto-body figure#president-box figcaption {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 5px;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
}
body.teachersphoto-body .subject-section-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
body.teachersphoto-body .subject-section-box h2 {
  width: 100%;
}
body.teachersphoto-body .subject-section-box figure {
  position: relative;
  aspect-ratio: 1/1;
}
body.teachersphoto-body .subject-section-box figure img {
  width: 150px;
  height: 100%;
  object-fit: cover;
  object-position: 0% 15%;
}
body.teachersphoto-body .subject-section-box figure figcaption {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 5px;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
}

table#learning-record-table thead {
  display: none;
}
@media (min-width: 576px) {
  table#learning-record-table thead {
    display: table-header-group;
  }
}
table#learning-record-table tr {
  display: flex;
  flex-direction: column;
}
@media (min-width: 576px) {
  table#learning-record-table tr {
    display: table-row;
  }
}
table#learning-record-table tr td {
  display: flex;
  align-items: center;
  padding: 0;
}
table#learning-record-table tr td div {
  padding: 0.25rem;
}
@media (min-width: 576px) {
  table#learning-record-table tr td div {
    padding: 0px;
  }
}
@media (min-width: 576px) {
  table#learning-record-table tr td {
    display: table-cell;
    padding: auto;
  }
}
table#learning-record-table tr td.date-header {
  display: table-cell;
  background-color: #333;
  color: white;
  text-align: center;
  padding: 0.25rem 0;
}
@media (min-width: 576px) {
  table#learning-record-table tr td.date-header {
    background-color: transparent;
    color: inherit;
    padding: 0;
    text-align: left;
  }
}
table#learning-record-table tr td.learning-time-box::before {
  content: "学習時間";
  font-size: 0.75rem;
  background-color: #ccc;
  height: 30px;
  line-height: 30px;
  width: 5rem;
  text-align: center;
}
@media (min-width: 576px) {
  table#learning-record-table tr td.learning-time-box::before {
    display: none;
  }
}
table#learning-record-table tr td.class-average-box::before {
  content: "クラス平均";
  font-size: 0.75rem;
  background-color: #ccc;
  height: 30px;
  line-height: 30px;
  width: 5rem;
  text-align: center;
}
@media (min-width: 576px) {
  table#learning-record-table tr td.class-average-box::before {
    display: none;
  }
}
table#learning-record-table tr td.cumulative-value-box::before {
  content: "累計時間";
  font-size: 0.75rem;
  background-color: #ccc;
  height: 30px;
  line-height: 30px;
  width: 5rem;
  text-align: center;
}
@media (min-width: 576px) {
  table#learning-record-table tr td.cumulative-value-box::before {
    display: none;
  }
}
table#learning-record-table tr td.edit-button-box {
  padding: 1rem;
  justify-content: center;
}
table#learning-record-table tr td.edit-button-box button {
  width: 150px;
}
@media (min-width: 576px) {
  table#learning-record-table tr td.edit-button-box button {
    width: auto;
  }
}

.input-group-text {
  padding: 0.8rem 15px;
  border: 1px solid lightgray;
  border-radius: 0.375rem 0 0 0.375rem;
  color: white;
  background-color: #333;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 4px 0px;
  box-sizing: border-box;
}

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