@charset "UTF-8";
.container {
  width: 90%;
  margin: 0 auto;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans", sans-serif;
  width: 100vw;
  height: 100vh;
}
body #calendarView {
  max-width: 600px;
  margin: 0 auto;
}
body #calendarView #summary {
  padding-top: 30px;
  margin-bottom: 20px;
}
body #calendarView #summary #userName, body #calendarView #summary #workTime {
  display: flex;
  justify-content: center;
  font-family: "Roboto", sans-serif;
}
body #calendarView #summary #userName {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}
body #calendarView #summary #workTime {
  color: #616161;
}
body #calendarView #result {
  text-align: center;
  color: #01b6ff;
}
body #calendarView .kousintyu {
  line-height: 100vh;
  font-weight: 600;
  font-size: 20px;
}
body #calendarView #monthNav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px auto 20px auto;
}
body #calendarView #monthNav #currentMonth {
  font-size: 18px;
  font-weight: 600;
  color: #616161;
}
body #calendarView #monthNav #prevMonth, body #calendarView #monthNav #nextMonth {
  background-color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
body #calendarView #monthNav #prevMonth > img, body #calendarView #monthNav #nextMonth > img {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
body #calendarView #calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
}
body #calendarView #calendar .week-header {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: bold;
  margin-bottom: 2px;
  gap: 1px;
}
body #calendarView #calendar .week-header .week-cell {
  font-size: 13px;
  padding: 4px 0;
  font-weight: 500;
  color: #616161;
}
body #calendarView #calendar .day {
  outline: solid 1px #d3d3d3;
  min-height: 60px;
  padding: 4px;
  font-size: 12px;
  box-sizing: border-box;
  min-width: 0;
}
body #calendarView #calendar .day .date {
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
  font-family: "Roboto", sans-serif;
}
body #calendarView #calendar .day .shift-time {
  white-space: nowrap; /* 改行させない */
  overflow: hidden; /* はみ出た分を隠す */
  padding: 3px;
  border-radius: 3px;
  background-color: #ededed;
  font-family: "Roboto", sans-serif;
  line-height: 1em;
}
body #calendarView #calendar .day .shift-time.state-medical {
  font-weight: 600;
  color: #00b894;
  background-color: #f0fff4;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans", sans-serif;
}
body #calendarView #calendar .day .shift-time.state-absent {
  font-weight: 600;
  color: #ff4d8d;
  background-color: #fff0f5;
  text-align: center;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans", sans-serif;
}
body #calendarView #calendar .day .add-shift-button {
  margin: 0 auto;
  font-size: 22px;
  line-height: 1;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #01b6ff;
  pointer-events: auto;
  opacity: 1;
}
body #detailView {
  padding: 30px 0;
}
body #detailView #backButton {
  display: flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}
body #detailView #backButton > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
body #detailView #detailDate {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 10px 0;
  color: #616161;
}
body #detailView #detailShift {
  margin: 0 0 20px 0;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 24px;
}
body #detailView .detailView_menu {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
body #detailView .detailView_menu > button {
  color: #01b6ff;
  width: 100px;
  padding: 8px;
  border-radius: 6px;
  border: 2px solid #01b6ff;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
}
body #detailView #editArea {
  grid-template-columns: 50px 140px;
  grid-template-rows: 38px 38px 1fr;
  font-size: 13px;
  padding-top: 20px;
  justify-content: center;
  gap: 12px 0;
}
body #detailView #editArea > p {
  color: #616161;
}
body #detailView #editArea > select {
  border: 1px solid #c7c7c7;
  border-radius: 6px;
  padding: 4px;
  width: 140px;
  color: #333;
}
body #detailView #editArea #saveEdit {
  grid-row: 3/4;
  grid-column: 1/3;
  padding: 10px;
  background-color: #01b6ff;
  color: #fff;
  border-radius: 4px;
  margin-top: 6px;
}
body #detailView #medicalArea {
  font-size: 13px;
}
body #detailView #medicalArea #medicalGuide {
  padding-top: 8px;
  line-height: 1.4em;
  color: #333;
}
body #detailView #medicalArea #medicalFile {
  color: #616161;
}
body #detailView #medicalArea #submitMedical {
  margin-top: 10px;
  padding: 10px;
  background-color: #01b6ff;
  width: 100%;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
}/*# sourceMappingURL=style.css.map */