@charset "UTF-8";
.login section {
  width: 100%;
  height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 450px;
  margin: 0 auto;
}
.login section figure {
  width: 100%;
  max-width: 325px;
  margin: 0 auto;
}
.login section .frame {
  background: #FFF;
  border-radius: 20px;
  margin: 30px 0;
  padding: 30px;
}
.login section .frame h1 {
  font-size: 22px;
  text-align: center;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
  padding: 10px 0;
  margin: 0 0 22px;
}
.login section .frame dl {
  display: grid;
  grid-template-columns: 30% 70%;
  grid-gap: 18px 0;
  box-sizing: border-box;
  margin: 0 0 20px;
  padding: 10px 0 0 0;
}
.login section .frame dl input {
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
}

/*メインカラム*/
.main {
  background: #FFF;
  border-radius: 15px;
  padding: 2rem 1.5rem;
}
.main h2 {
  font-size: 20px;
  padding: 5px 0 7px 10px;
  border-left: 7px solid green;
  line-height: 1;
  margin: 10px 0;
}
.main h2 .title-note {
  font-size: 12px;
  font-weight: 400;
  color: #c62828;
  margin-left: 8px;
}
.main.top .comment {
  border: 1px solid #CCC;
  padding: 15px;
  border-radius: 15px;
  line-height: 1.5;
  font-size: 15px;
  margin: 15px 0 30px;
}

/*サイドカラム*/
.side {
  background: #FFF;
  padding: 15px;
  border-radius: 15px;
  font-size: 15px;
}
.side h3 {
  background: #EFEFEF;
  font-size: 16px;
  padding: 7px;
  margin: 0 0 10px -25px;
  display: flex;
  align-items: center;
  line-height: 1;
}
.side h3.lesson::before {
  font-family: "Material Icons";
  content: "\e14e";
  font-size: 20px;
  margin: 0 5px 0 0;
  color: #31966f;
}
.side h3.staff::before {
  font-family: "Material Icons";
  content: "\e853";
  font-size: 20px;
  margin: 0 5px 0 0;
  color: #31966f;
}
.side h3.salon::before {
  font-family: "Material Icons";
  content: "\ea12";
  font-size: 20px;
  margin: 0 5px 0 0;
  color: #31966f;
}
.side h3.setting::before {
  font-family: "Material Icons";
  content: "\e8b8";
  font-size: 20px;
  margin: 0 5px 0 0;
  color: #31966f;
}
.side h3.statistics::before {
  font-family: "Material Icons";
  content: "\e6c4";
  font-size: 20px;
  margin: 0 5px 0 0;
  color: #31966f;
}
.side ul {
  margin: 5px 0 30px;
}
.side ul li {
  margin: 10px 0;
  display: flex;
  align-items: center;
}
.side ul li::before {
  font-family: "Material Icons";
  content: "\e5df";
  font-size: 20px;
  margin: 0;
  color: #31966f;
}
.side ul li a {
  padding: 5px;
}

/*トップ*/
.top .frame {
  display: grid;
  grid-template-columns: 47% 47%;
  justify-content: space-between;
  grid-gap: 3rem 0;
}

/*統計*/
.data .frame {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.data .frame h3 {
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px solid #CCC;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
}
.data .frame h3 span {
  background-color: #EFEFEF;
  font-size: 14px;
  padding: 5px;
  margin: 0 10px 0 0;
}
.data .frame .graph, .data .frame .comment {
  width: 47%;
  margin: 0 0 3rem;
}
.data .comment {
  border: 1px solid #CCC;
  padding: 15px;
  border-radius: 15px;
  line-height: 1.5;
  font-size: 15px;
  margin: 15px 0 30px;
}

/*レッスン一覧*/
.list article {
  background: #FFF;
  padding: 20px 0;
  margin: 0;
  border-bottom: 1px solid;
}
.list article:first-child {
  border-top: 1px solid;
}
.list article .head {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 7px;
}
.list article .head figure {
  width: 73px;
  height: 73px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list article .head figure img {
  width: 100%;
  height: auto;
  display: block;
}
.list article .head figure .icon-placeholder {
  width: 73px;
  height: 73px;
  background-color: #EFEFEF;
  color: #666;
  border-radius: 8px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list article .head div {
  width: 87%;
}
.list article .head div h3 {
  font-size: 22px;
}
.list article .head .category {
  font-size: 11px;
  margin: 6px 0 0 0;
}
.list article .head .category span {
  padding: 4px;
  display: inline-block;
  margin: 0 5px 0 0;
}
.list article .head .category span.title01 {
  background-color: #fbd88f;
}
.list article .head .category span.title02 {
  background-color: #b4e0ff;
}
.list article .head .category span.title03 {
  background-color: #ffd3df;
}
.list article .date {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.list article .date p {
  margin: 0 15px 5px 0;
}
.list article .date p span {
  background-color: #EFEFEF;
  font-size: 13px;
  padding: 3px;
  display: inline-block;
  margin: 0 7px 0 0;
  min-width: 4em;
  text-align: center;
  box-sizing: border-box;
}
.list article .date p.day em {
  font-size: 22px;
  font-style: normal;
}
.list article .note {
  color: #666;
  font-size: 13px;
  line-height: 1.4;
  margin: 0 0 4px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.list.teach .note {
  color: #666;
  font-size: 13px;
  line-height: 1.4;
  margin: 0 0 4px;
  overflow: auto;
  display: block;
  -webkit-box-orient: unset;
  -webkit-line-clamp: unset;
}
.list .btn_set {
  display: flex;
  width: 100%;
  margin: 15px 0 0 auto;
  justify-content: right;
}
.list .btn_set .btn {
  width: 48%;
  margin: 0 0 0 1rem;
}
.list.self article {
  display: grid;
  grid-template-columns: 46% 36% 18%;
  align-items: center;
}
.list.self article .head figure {
  width: 62px;
}
.list.self article .head div {
  width: 77%;
}
.list.self article .btn_set .btn {
  width: 100%;
  margin: 0;
}
.list ul {
  width: 90%;
  margin: 2rem auto;
}
.list ul li {
  border-bottom: 1px solid #CCC;
  padding: 1rem 0;
}
.list ul li:first-child {
  border-top: 1px solid #CCC;
}
.list ul li a {
  display: flex;
  align-items: center;
}
.list ul li a span {
  background-color: #EFEFEF;
  padding: 5px;
  display: block;
  font-size: 14px;
  margin: 0 10px 0 0;
}

/* スタッフLINE連携 */
.staff-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.staff-list__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.staff-list__info a {
  display: flex;
  align-items: center;
}

.staff-list__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.staff-edit-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 8px 0 0;
}
.staff-edit-actions .btn.input {
  margin: 0;
}

.medal-item__thumb {
  padding: 0 !important;
  background: transparent !important;
  margin-right: 10px !important;
}
.medal-item__thumb img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: middle;
}

.medal-condition-badge {
  display: inline-block;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  color: #fff;
}

.medal-condition-badge--manual {
  background-color: #6b7280;
}

.medal-condition-badge--auto {
  background-color: #10b981;
}

.medal-condition-text {
  color: #5f6368;
  font-size: 13px;
}

.line-status {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
}

.line-status--linked {
  background-color: #d7f5e6;
  color: #1b7d4d;
}

.line-status--unlinked {
  background-color: #f5e8e8;
  color: #a33;
}

.line-invite-button,
.line-unlink-button {
  background-color: #FFF;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 13px;
  cursor: pointer;
}

.line-unlink-button {
  border-color: #d6b2b2;
  color: #a33;
}

.line-invite-modal {
  display: none;
  position: fixed;
  inset: 0;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.line-invite-modal.is-open {
  display: flex;
}

.line-invite-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.line-invite-modal__content {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  width: min(420px, 92%);
  text-align: center;
  z-index: 1;
}

.line-invite-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.line-invite-modal__qr {
  margin: 10px 0 16px;
}

.line-invite-modal__qr img {
  width: 200px;
  height: 200px;
}

.line-invite-modal__link {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.line-invite-modal__link input {
  flex: 1;
  min-width: 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 12px;
}

.line-invite-modal__link button {
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 12px;
  cursor: pointer;
}

.line-invite-modal__note {
  margin-top: 12px;
  font-size: 12px;
  color: #666;
}

.medal-grant-modal__content {
  padding: 26px 24px 22px;
}
.medal-grant-modal__content h3 {
  margin: 0 0 18px 0;
}
.medal-grant-modal__content form p {
  margin: 0 0 16px 0;
}
.medal-grant-modal__content form p:last-child {
  margin-bottom: 0;
}
.medal-grant-modal__content select {
  min-width: 220px;
  width: 100%;
  max-width: 260px;
}

.medal-image-preview {
  margin: 0 0 8px;
}

.medal-default-image-actions {
  display: flex;
  gap: 8px;
  margin: 10px 0 0;
}

.medal-image-modal__content {
  width: min(1160px, 96vw);
  padding: 26px 24px 22px;
  max-height: 80vh;
  overflow-y: auto;
}
.medal-image-modal__content h3 {
  margin: 0 0 16px;
}

.medal-image-modal__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
}
.medal-image-modal__grid li {
  margin: 0;
  padding: 0;
}

.medal-image-modal__item {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  padding: 8px;
  cursor: pointer;
}
.medal-image-modal__item:hover {
  border-color: #ff7f7f;
}
.medal-image-modal__item img {
  display: block;
  width: 96px;
  height: 96px;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.detail article {
  background: #FFF;
  border-radius: 10px;
  padding: 12px;
  margin: 0 0 20px;
}
.detail article .head {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 7px;
}
.detail article .head figure {
  width: 73px;
}
.detail article .head div {
  width: 74%;
}
.detail article .head div h3 {
  font-size: 18px;
}
.detail article .head div .category {
  font-size: 11px;
  margin: 6px 0 0 0;
}
.detail article .head div .category span {
  padding: 4px;
  display: inline-block;
  margin: 0 5px 0 0;
}
.detail article .head div .category span.title01 {
  background-color: #fbd88f;
}
.detail article .head div .category span.title02 {
  background-color: #b4e0ff;
}
.detail article .date {
  font-size: 15px;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  margin: 8px auto;
  width: -moz-fit-content;
  width: fit-content;
}
.detail article .date p {
  margin: 0 15px 5px 0;
}
.detail article .date p span {
  background-color: #EFEFEF;
  font-size: 13px;
  padding: 3px;
  display: inline-block;
  margin: 0 7px 0 0;
  min-width: 4em;
  text-align: center;
  box-sizing: border-box;
}
.detail article .date p.day em {
  font-size: 22px;
  font-style: normal;
}
.detail article .date p.teacher {
  font-size: 13px;
}
.detail article .note {
  color: #666;
  font-size: 13px;
  line-height: 1.4;
  margin: 0 0 4px;
}
.detail article .timeset {
  padding: 7px 0 12px;
  border-top: 1px solid;
  border-bottom: 1px solid;
  margin: 20px 0;
  font-weight: 600;
  display: grid;
  justify-content: space-between;
  grid-template-columns: 48% 48%;
  line-height: 1;
  font-size: 20px;
}
.detail article .timeset p {
  padding: 5px 0;
  display: flex;
  align-items: center;
}
.detail article .timeset p span {
  background-color: #EFEFEF;
  margin: 0 10px 0 0;
  font-size: 13px;
  padding: 3px 10px 5px;
  line-height: 1;
}
.detail article .timeset.end {
  margin: 15px 0 7px 0;
}
.detail article .elapsed_time {
  font-weight: 700;
  padding: 10px;
  text-align: center;
  border: 1px solid #666;
  border-radius: 8px;
  margin: 15px 0;
}
.detail article .elapsed_time span {
  font-size: 24px;
}
.detail article .end_time {
  font-weight: 700;
  padding: 0;
  text-align: center;
  margin: 0 0 10px 0;
}
.detail article .end_time span {
  font-size: 24px;
}
.detail article .agreement_area {
  text-align: center;
  margin: 20px;
  padding: 0;
}
.detail article .agreement_area .show {
  background-color: #c9c9c9;
  color: #FFF;
  pointer-events: none;
}
.detail article .agreement_area input[type=checkbox] {
  display: none;
}
.detail article .agreement_area .checkbox {
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 14px;
}
.detail article .agreement_area .checkbox:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  display: block;
  height: 16px;
  width: 16px;
  margin-top: -8px;
  border-radius: 3px;
  background: #fff;
  border: 1px solid #aaa;
}
.detail article .agreement_area .checkbox:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  display: block;
  height: 9px;
  width: 5px;
  margin-top: -7px;
  border-right: 3px solid #2196f3;
  border-bottom: 3px solid #2196f3;
  opacity: 0;
  transform: rotate(45deg);
}
.detail article .agreement_area input[type=checkbox]:checked + .checkbox::after {
  opacity: 1;
}
.detail article .agreement_area #checkbox01:checked + label + .show {
  background-color: #0059b9;
  pointer-events: painted;
}
.detail article .agreement_area .agreement_link a {
  padding: 10px;
  font-size: 14px;
  display: block;
  margin: 15px 0;
}
.detail .review_area {
  margin: 0 0 20px 0;
  border-top: 1px solid;
  padding: 15px 6px 0;
}
.detail .review_area h4 {
  font-size: 17px;
  border-left: 6px solid #31966f;
  padding: 0 0 0 8px;
}
.detail .review_area dl {
  display: grid;
  grid-template-columns: 47% 50%;
  justify-content: space-between;
  font-size: 15px;
  align-items: center;
  margin: 10px 0 25px;
}
.detail .review_area .stars span {
  display: flex; /* 要素をフレックスボックスにする */
  flex-direction: row-reverse; /* 星を逆順に並べる */
  justify-content: flex-end; /* 逆順なので、左寄せにする */
}
.detail .review_area .stars input[type=radio] {
  display: none; /* デフォルトのラジオボタンを非表示にする */
}
.detail .review_area .stars label {
  color: #D2D2D2; /* 未選択の星をグレー色に指定 */
  font-size: 24px;
  padding: 0 3px;
  cursor: pointer; /* カーソルが上に乗ったときに指の形にする */
}
.detail .review_area .stars label:hover, .detail .review_area .stars label:hover ~ label, .detail .review_area .stars input[type=radio]:checked ~ label {
  color: #F8C601; /* 選択された星以降をすべて黄色にする */
}
.detail .review_area textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  box-sizing: border-box;
  margin: 15px 0 5px 0;
}

.regist .category select,
.regist .category ::picker(select) {
  -webkit-appearance: base-select;
     -moz-appearance: base-select;
          appearance: base-select;
}
.regist .category select {
  border-color: #a4a4a4;
  border-radius: 8px;
}
.regist .category ::picker(select) {
  border-color: #a4a4a4;
  border-radius: 8px;
}
.regist .category {
  /*----------------------------------*/
}
.regist .category .lesson-select {
  min-width: 100%;
  height: 48px;
  align-items: center;
  padding: 8px;
  margin: 0 auto;
}
.regist .category .lesson-select > option {
  padding: 8px;
}
.regist .category .lesson-select > option img {
  width: 32px;
  height: auto;
}
.regist .category .lesson-label {
  margin-bottom: 16px;
}
.regist .form dl {
  display: grid;
  grid-template-columns: 27% 68%;
  justify-content: space-between;
  grid-gap: 2rem 0;
  margin: 3rem auto;
  width: 92%;
}
.regist .form dl dt {
  font-weight: 700;
}
.regist .form dl dd p {
  padding: 20px 0 10px;
  font-size: 14px;
}
.regist .form dl dd .static-value {
  padding: 5px;
  margin: 0;
  display: block;
  width: 100%;
  box-sizing: border-box;
  border-radius: 4px;
}
.regist .form input[type=text],
.regist .form input[type=password],
.regist .form input[type=number] {
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
}
.regist .form input[type=number] {
  -webkit-appearance: textfield;
          appearance: textfield;
  -moz-appearance: textfield;
}
.regist .form input[type=number]::-webkit-outer-spin-button,
.regist .form input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.regist .form textarea {
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
}
.regist .form select {
  border-color: #a4a4a4;
  border-radius: 8px;
  padding: 8px;
}
.regist .form.category dl {
  display: grid;
  grid-template-columns: 10% 70% 20%;
  align-items: center;
}
.regist .form.category dl dd {
  text-align: center;
  position: relative;
}
.regist .form.category dl dd p {
  font-size: 12px;
  padding: 0 0 10px 0;
}
.regist .form.category dl img {
  width: 60px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.regist .form.category dl .icon-edit {
  width: 70px;
  margin: 0 auto;
  text-align: center;
}
.regist .form.category dl .icon-placeholder {
  display: inline-block;
  font-size: 12px;
  color: #666;
}
.regist .form.category dl .icon-current,
.regist .form.category dl .icon-preview {
  width: 60px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.regist .form.category dl .icon-preview {
  display: none;
}
.regist .form.category dl .icon-edit-button {
  position: absolute;
  right: 4px;
  bottom: -12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #d1d1d1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.regist .form.category dl .icon-edit-button input[type=file] {
  display: none;
}
.regist .form.category dl .icon-edit-button .material-icons {
  font-size: 16px;
  color: #555555;
}
.regist .form.new {
  border-top: 1px solid;
  padding: 30px 0;
  margin: 30px 0 0 0;
}
.regist .form.new dl {
  display: grid;
  grid-template-columns: 20% 38% 40%;
  align-items: center;
}
.regist .form.agreement dl {
  display: block;
  width: 100%;
  margin: 2rem auto;
}
.regist .form.agreement dt {
  display: block;
  width: 100%;
  margin: 0 0 8px 0;
}
.regist .form.agreement dd {
  padding: 0;
}
.regist .form.agreement input[type=text],
.regist .form.agreement textarea {
  width: 100%;
  box-sizing: border-box;
  font-size: 14px;
}
.regist .form.agreement .agreement-items {
  width: 100%;
}
.regist .form.agreement .agreement-item {
  margin: 2rem 0 0;
}
.regist .form.agreement .agreement-item-number {
  font-weight: 700;
}
.regist .form.agreement .agreement-items h3 {
  margin: 0 0 12px 0;
}
.regist .form.agreement .agreement-item dd + dd {
  margin-top: 10px;
}
.regist .form.agreement #add-agreement-item {
  margin: 20px 0 12px 0;
}
.regist .form.agreement input[type=submit] {
  margin: 0 0 8px 0;
}

.detail {
  width: 90%;
  margin: 0 auto;
}
.detail h3 {
  padding: 10px 0;
  border-bottom: 1px dashed #CCC;
  margin: 30px auto 15px;
}
.detail dl {
  display: grid;
  justify-content: space-between;
  margin: 2rem auto 3rem;
  grid-gap: 1rem 0;
}
.detail dl.info {
  grid-template-columns: 25% 70%;
}
.detail dl.review {
  grid-template-columns: 27% 70%;
}
.detail dl dt {
  font-weight: 700;
  background-color: #EFEFEF;
  padding: 7px;
  font-size: 15px;
}
.detail dl dd {
  line-height: 1.6;
}
.detail .comment article {
  background: none;
  border-radius: 0;
  padding: 0;
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
}
.detail .comment article p {
  text-align: right;
  font-size: 14px;
}/*# sourceMappingURL=contents.css.map */