@charset "UTF-8";
*:where(:not(iframe, canvas, img, svg, video):not(svg *):not(.noreset *):not(.ui-sortable *):not(.__sortable .item):not(.image-wrap figure)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

:root {
  --width-container: 1040px;
  --black: #333;
  --white: #fff;
  --yellow: #ffeb3b;
  --light_yellow: #f9f8e7;
  --orange: #f87407;
  --red: #eb4444;
  --pink: #ff004c;
  --green: #00b7a6;
  --light_orange: #f8b608;
  --blue: #2565d4;
  --sky_blue: #3f82f7;
  --gray: #dcdcdc;
  --brown: #553929;
  --orange_gd: linear-gradient(to bottom, #ffad22, #ff8a00);
  --blue_gd: linear-gradient(to bottom, #2265da, #2570db);
  --red_gd: linear-gradient(to bottom, #ff5959, #eb4444);
  --purple_gd: linear-gradient(to bottom, #bb8dfd, #815dc4);
  --white_gd: linear-gradient(to bottom, #fff, #eaeaea);
  --green_gd: linear-gradient(to bottom, #01d193, #1298b3);
  --padding-sp: 15px;
  --size_checkbox: 13px;
}

.sr-only {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  left: -9999px;
  top: -9999px;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.2rem;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  color: var(--black);
  background: url(../images/bg.svg);
  padding-top: 160px;
}

h1,
h2,
h3,
h4,
h5,
p,
button,
a,
address {
  line-height: 1;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 991.98px) {
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
}
a {
  transition-duration: 1s;
  transition-property: opacity;
  text-decoration: none;
}
@media (hover: hover) {
  a {
    cursor: pointer;
  }
  a:hover {
    opacity: 0.8;
  }
}

button {
  transition-duration: 1s;
  transition-property: opacity;
  text-decoration: none;
}
@media (hover: hover) {
  button {
    cursor: pointer;
  }
}

textarea {
  resize: vertical;
}

img,
video {
  vertical-align: bottom;
  line-height: 0;
}

th {
  font-weight: normal;
  vertical-align: text-top;
}

.flex {
  display: flex;
  gap: 16px;
}

.mb10 {
  margin-bottom: 10px;
}

.main-column {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 828px;
}

.section + .section {
  margin-top: 30px;
}

.btn {
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  padding: 0 8px;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  background: var(--white_gd);
  border: 1px solid var(--gray);
  border-radius: 4px;
}

.btn-joint-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.btn-joint-wrap .btn:first-child {
  border-radius: 4px 0 0 4px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.btn-joint-wrap .btn:last-child {
  border-radius: 0 4px 4px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.btn.__purple {
  background: var(--purple_gd);
  border: none;
  color: var(--white);
}

.btn.__blue {
  background: var(--blue_gd);
  border: none;
  color: var(--white);
}

.btn.__green {
  background: var(--green_gd);
  border: none;
  color: var(--white);
}

.btn.__red {
  background: var(--red_gd);
  border: none;
  color: var(--white);
}

.btn-center {
  margin-inline: auto;
}

.btn-w100 {
  width: 100%;
}

.btn-details {
  font-weight: bold;
  display: flex;
  align-items: center;
}
.btn-details::after {
  content: "";
  display: block;
  width: 6px;
  height: 9px;
  margin-left: 6.44px;
  background: url(../images/arrow-r.svg) center/contain no-repeat;
}

.link-icon {
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 5px;
  font-weight: bold;
  height: 24px;
}

.link-back {
  display: flex;
  align-items: center;
  padding: 0;
  gap: 0;
  font-weight: bold;
  height: 24px;
}

.link-list {
  display: flex;
  align-items: center;
  padding: 0;
  gap: 5px;
  font-weight: bold;
  height: 24px;
}

.btn-plus {
  background-color: #12a395;
  color: var(--white);
  border-radius: 4px;
  height: 39px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 3px;
  transition: opacity 0.3s;
}
.btn-plus:hover {
  opacity: 0.8;
}

.btn-change {
  background: linear-gradient(to bottom, #ffffff, #eaeaea);
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  height: 39px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 3px;
  transition: opacity 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
}
.btn-change:hover {
  opacity: 0.8;
}

.btn-size-default {
  padding: 12px 31px;
}

.remaining-post {
  position: relative;
  background-color: #eb4444;
  color: var(--white);
  border-radius: 4px;
  height: 39px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
}
.remaining-post span {
  font-size: 1.2rem;
  margin: 0 2px;
}
.remaining-post span:nth-child(1) {
  color: var(--yellow);
}
.remaining-post img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}

.js-btn-submit {
  height: 39px;
  min-width: 148px;
  margin-inline: auto;
  margin-top: 40px;
  background: var(--blue_gd);
  color: var(--white);
  border: none;
  font-weight: bold;
}

.modal-btn .btn {
  height: 39px !important;
  width: auto !important;
}

.btn-border-round {
  border: 1px solid var(--black);
  color: var(--black);
  height: 44px;
  border-radius: 10rem;
  min-width: 196px;
}

.input-file {
  display: flex;
  align-items: center;
  gap: 10px;
}
.input-file input[type=file] {
  display: none;
}
.input-file .btn-plus {
  width: -moz-fit-content;
  width: fit-content;
}

.file-preview .picture {
  position: relative;
  display: block;
}
.file-preview .picture .btn-close {
  position: absolute;
  inset: 2px auto auto 2px;
}

.wrapper {
  width: var(--width-container);
  margin-inline: auto;
}

.hl-lv02 {
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hl-lv02 .icon {
  display: flex;
  align-items: center;
}

.hl-lv02-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 5px 15px;
}

.hl-lv02-wrap.__dot {
  padding-left: 15px;
}

.hl-lv03 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.table {
  width: 100%;
}
.table tr {
  background-color: var(--white);
}
.table th,
.table td {
  border: 1px solid #d9d9d9;
  padding: 9px 8px;
  min-width: 102px;
  line-height: 1;
  vertical-align: middle;
}
.table th {
  background: var(--light_yellow);
  color: var(--brown);
  text-align: center;
  height: 41px;
}
.table th .color-red {
  margin-top: 5px;
  display: block;
}
.table td > * + * {
  margin-top: 5px;
}
.table thead th {
  background: var(--black);
  color: var(--white);
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
.table .tr-gray {
  background-color: #f4f4f4;
}
.table .label {
  background: var(--red);
  color: var(--white);
  width: -moz-fit-content;
  width: fit-content;
  min-width: 50px;
  height: 22px;
  margin-inline: auto;
  display: grid;
  place-items: center;
  border-radius: 4px;
}
.table .label-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.table .label-wrap .label {
  margin-inline: 0;
}
.table .label-wrap.label-wrap-hitsudoku {
  align-items: center;
  justify-content: center;
}
.table .label-wrap.label-wrap-hitsudoku .label {
  font-size: 1rem;
  padding: 0 2px;
  height: 20px;
  margin-inline: 0;
}
.table .label-wrap__email {
  font-size: 1rem;
}
.table .label-wrap__email .label {
  background: var(--sky_blue);
  padding: 0 6px;
  height: 20px;
}
.table .label-wrap__email .label.__gray {
  background: var(--gray);
}
.table .email {
  margin-top: 6px;
  display: block;
}
.table .label.__green {
  background: var(--green);
}
.table .label.__none {
  background: none;
  color: var(--black);
}
.table .center > * {
  margin-inline: auto;
}
.table .check {
  width: 18px;
  height: 22px;
  display: block;
  background: url(../images/icon-check.svg) center/contain no-repeat;
}
.table .check .sr-only::before {
  content: "check";
}
.table .check.__none {
  visibility: hidden;
}
.table .must::after {
  content: " *";
  color: var(--red);
}
.table .tr th {
  text-align: left;
}
.table .tr th.th {
  text-align: center;
}

.table-fixed {
  table-layout: fixed;
}

.table-horizontal th {
  text-align: left;
}

.table-edit th,
.table-edit td {
  padding: 0 0 5px 0;
  border: none;
}
.table-edit th input,
.table-edit td input {
  width: 100%;
}
.table-edit tr > *:nth-child(2) {
  padding-left: 10px;
}
.table-edit.va-unset td {
  vertical-align: unset;
}

.table-number thead tr {
  background: #fe6f74;
  color: var(--white);
}
.table-number thead th {
  background: transparent;
  font-size: 1.2rem;
  font-weight: normal;
  border-color: #f16469;
}
.table-number td {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--red);
}
.table-number th,
.table-number td {
  height: 31px;
}
.table-number .count {
  font-size: 1.4rem;
}
.table-number .slash {
  font-size: 1rem;
}
.table-number span + span {
  margin-left: 1px;
}

.table-th-150px tr th {
  width: 150px;
}

.table-attendance__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block: 15px;
}
.table-attendance__header .date {
  font-size: 1.6rem;
  font-weight: bold;
}
.table-attendance__header .prev,
.table-attendance__header .next {
  display: flex;
  align-items: center;
}
.table-attendance__header .prev img {
  transform: rotate(180deg);
}

.table-attendance {
  background-color: var(--white);
}
.table-attendance th,
.table-attendance td {
  border: 1px solid var(--gray);
  width: 12.5%;
}
.table-attendance .sunday {
  background: #f04037;
  color: var(--white);
}
.table-attendance .saturday {
  background: var(--sky_blue);
  color: var(--white);
}
.table-attendance .btn {
  background: #f1f1f1;
  border: none;
  height: 32px;
  font-size: 1rem;
  width: 100%;
  font-weight: normal;
}
.table-attendance .btn-green {
  background: #12a395;
  color: var(--white);
}
.table-attendance thead {
  text-align: center;
}
.table-attendance thead th,
.table-attendance thead td {
  padding: 8px;
}
.table-attendance thead .bg-white_gd td {
  font-weight: bold;
  color: var(--red);
  font-size: 1.4rem;
}
.table-attendance thead .bg-white_gd td small {
  font-size: 1rem;
  margin-left: 1px;
}
.table-attendance tbody .content {
  height: 106px;
}
.table-attendance tbody th,
.table-attendance tbody td {
  padding: 7px;
}
.table-attendance tbody th > * + *,
.table-attendance tbody td > * + * {
  margin-top: 8px;
}
.table-attendance .status-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 41px;
  background: #f8b608;
  color: var(--white);
  border-radius: 2px;
}
.table-attendance .status-wrap.__atWork {
  background: #f87407;
}
.table-attendance .status-wrap.__Fin {
  background: #8db9d7;
}
.table-attendance .status-wrap.__atNow {
  background: #E60039;
}
.table-attendance .content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.table-attendance .content > * + * {
  margin-top: 10px;
}
.table-attendance .content .time {
  text-align: center;
}
.table-attendance .content .text {
  font-size: 1.1rem;
  line-height: 1.27;
  padding-inline: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.table-attendance th .name {
  text-align: center;
  color: var(--red);
  line-height: 1.45;
  font-size: 1.1rem;
}

.tr-w210 tr th {
  min-width: 210px;
}

input:not([type=checkbox], [type=radio], [type=file]),
select,
textarea {
  background-color: #f6f8fa;
  border: 1px solid var(--gray);
  color: var(--black);
  min-height: 31px;
  padding: 8px;
  line-height: 1.5;
  max-width: 100%;
  display: block;
}

textarea {
  width: 100%;
}

input[type=checkbox] {
  background-color: #dcdcdc;
  border-radius: 3px;
  width: var(--size_checkbox);
  height: var(--size_checkbox);
}
input[type=checkbox]:checked + .figure {
  opacity: 1;
}

input[type=radio] {
  background-color: #dcdcdc;
  border-radius: 13px;
  width: var(--size_checkbox);
  height: var(--size_checkbox);
}
input[type=radio]:checked + .figure {
  opacity: 1;
}

input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
}

.radio-wrap {
  flex-wrap: wrap;
}
.radio-wrap label {
  display: flex;
  align-items: center;
  gap: 5px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  cursor: pointer;
}
.radio-wrap .label-center {
  margin-inline: auto;
}
.radio-wrap .figure {
  display: block;
  width: var(--size_checkbox);
  height: var(--size_checkbox);
  background: url(../images/img-radio.svg) center/contain no-repeat;
  position: absolute;
  inset: 0;
  opacity: 0;
}

.radio-wrap.__add-padding-inline label {
  padding-inline: 14px;
}

.check-wrap.__add-padding-inline label {
  padding-inline: 14px;
}

.checkbox-wrap label {
  display: flex;
  align-items: center;
  gap: 5px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  cursor: pointer;
}
.checkbox-wrap .label-center {
  margin-inline: auto;
}
.checkbox-wrap .figure {
  display: block;
  width: var(--size_checkbox);
  height: var(--size_checkbox);
  background: url(../images/img-checkbox.svg) center/contain no-repeat;
  position: absolute;
  inset: 0;
  opacity: 0;
  top: 1px;
}
.checkbox-wrap.vertical-list label {
  line-height: 2;
}
.checkbox-wrap.vertical-list label input:checked + .figure {
  top: 23%;
}

.radio-wrap {
  display: flex;
  gap: 10px;
}
.radio-wrap input[type=radio] {
  position: absolute;
  inset: 0;
  background-color: transparent;
}
.radio-wrap label {
  background: var(--white_gd);
  border-radius: 4px;
  border: 1px solid var(--gray);
  height: 31px;
  min-width: 84px;
  display: grid;
  place-items: center;
  position: relative;
  cursor: pointer;
}
.radio-wrap label:has(input[type=radio]:checked) {
  background: var(--sky_blue);
  color: var(--white);
}

.radioc-wrap {
  flex-wrap: wrap;
}
.radioc-wrap label {
  display: flex;
  align-items: center;
  gap: 5px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  cursor: pointer;
}
.radioc-wrap .label-center {
  margin-inline: auto;
}
.radioc-wrap .figure {
  display: block;
  width: var(--size_checkbox);
  height: var(--size_checkbox);
  background: url(../images/img-radio.svg) center/contain no-repeat;
  position: absolute;
  inset: 0;
  opacity: 0;
}

.check-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.check-wrap input[type=checkbox] {
  position: absolute;
  inset: 0;
  background-color: transparent;
}
.check-wrap label {
  background: var(--white_gd);
  border-radius: 4px;
  border: 1px solid var(--gray);
  height: 31px;
  min-width: 84px;
  display: grid;
  place-items: center;
  position: relative;
  padding-left: 7px;
  padding-right: 7px;
  cursor: pointer;
}
.check-wrap label:has(input[type=checkbox]:checked) {
  background: var(--sky_blue);
  color: var(--white);
}

select {
  position: relative;
  background-image: url(../images/icon-select.svg);
  background-repeat: no-repeat;
  background-position: right 8px center;
}

.search-wrap {
  position: relative;
}
.search-wrap::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0 14px 0 auto;
  background: url(../images/icon-search.svg) center/contain no-repeat;
  width: 18px;
  height: 18px;
  margin: auto;
}

input[type=search] {
  border-radius: 10rem;
  background: var(--white);
  padding: 12px 14px;
}

.flex-yen-wrap {
  gap: 10px;
  padding-right: 2em;
}
.flex-yen-wrap input {
  text-align: right;
}
.flex-yen-wrap .yen {
  font-size: 1.1rem;
}

.flex-yen-wrap.__short {
  justify-content: flex-end;
  width: 100%;
  padding-right: 3px;
}
.flex-yen-wrap.__short input {
  width: 50px;
}

.yen-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.text-small {
  font-size: 1.1rem;
  color: var(--sky_blue);
  line-height: 1.3636;
}

.v-align-center:has(select) {
  gap: 10px;
}

.w40text {
  width: 500px;
}

.w264px {
  width: 264px;
}

.activecheck-wrap label {
  display: flex;
  align-items: center;
  gap: 5px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  cursor: pointer;
}
.activecheck-wrap .label-center {
  margin-inline: auto;
}
.activecheck-wrap .figure {
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  inset: 0;
}
.activecheck-wrap input[type=checkbox] {
  width: 16px;
  height: 16px;
  background-color: transparent;
}
.activecheck-wrap input[type=checkbox]:checked + .figure {
  background: url(../images/icon-active-on.svg) center/contain no-repeat;
}
.activecheck-wrap input[type=checkbox]:not(:checked) + .figure {
  background: url(../images/icon-active-off.svg) center/contain no-repeat;
}

.file-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.file-wrap label {
  background-color: #12a395;
  color: var(--white);
  border-radius: 4px;
  height: 39px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 3px;
  transition: opacity 0.3s;
  max-width: 130px;
}
.file-wrap input[type=file] {
  display: none;
}
.file-wrap span {
  height: 39px;
  display: flex;
  align-items: center;
}

.image-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  background-color: #f2f6f7;
  padding: 10px;
  margin-bottom: 10px;
}
.image-wrap figure {
  position: relative;
  display: flex;
  align-items: center;
  height: 100px;
  margin: 0;
}
.image-wrap figure img {
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.image-wrap figure .btn-delete {
  position: absolute;
  left: 5px;
  top: 5px;
  width: 16px;
  height: 16px;
  background: url(../images/icon-photo-delete.svg) center no-repeat;
}
.image-wrap figure.sortable-chosen::after {
  background-color: rgba(0, 0, 0, 0.2);
  background-image: url(../images/sortable-icon.svg);
}

.datepicker-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.datepicker-wrap label {
  display: flex;
  align-items: center;
  gap: 3px;
  max-width: 130px;
}
.datepicker-wrap label input[type=text] {
  min-height: 29px;
}
.datepicker-wrap label:after {
  content: url(../images/icon-calendar.svg);
}
.datepicker-wrap span {
  height: 39px;
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.input-tel {
  gap: 10px;
  align-items: center;
}
.input-tel input {
  width: 81px;
}

.nav-category {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.nav-category .nav-item {
  border: 1px solid var(--sky_blue);
  background: var(--white);
  color: var(--sky_blue);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 35px;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}
.nav-category .nav-item:hover {
  background: var(--sky_blue);
  color: var(--white);
  opacity: 1;
}
.nav-category .nav-item.__current {
  background: var(--sky_blue);
  color: var(--white);
}

.nav-category.__tab {
  margin-bottom: 15px;
  border-bottom: 1px solid var(--gray);
  padding-inline: 10px;
}
.nav-category.__tab .nav-item {
  border-radius: 4px 4px 0 0;
  border-bottom: none;
}
.nav-category.__tab .nav-item:not(.__current) {
  border-color: var(--gray);
}

.flex-upper-table {
  margin-bottom: 15px;
}

.box {
  background: #f4f4f4;
  border: 1px solid var(--gray);
  padding: 20px;
}

.box2 {
  background: #f2f6f7;
  padding: 10px;
}

.head-notes {
  padding: 15px;
  margin-bottom: 15px;
  background: #fffde7;
  border: 1px solid #f8b608;
  border-radius: 4px;
}

.box-reccomend {
  border: 1px solid var(--gray);
  background: var(--white);
  border-radius: 4px;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 10px;
  flex-wrap: wrap;
  padding: 16px 16px 14px 16px;
  margin-bottom: 15px;
}
.box-reccomend .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.box-reccomend .item.__star {
  position: relative;
}
.box-reccomend .item.__star::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../images/icon-star.svg) center/contain no-repeat;
  position: absolute;
  inset: -2px auto auto -4px;
}
.box-reccomend .img-wrap {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  overflow: hidden;
}
.box-reccomend .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.box-reccomend .text-wrap {
  width: 100%;
  color: var(--pink);
  font-size: 1.1rem;
  width: 70px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.flex-items-wrap {
  gap: 20px;
}

.input-date-wrap {
  gap: 10px;
}

.checkbox-type-label-wrap {
  gap: 5px;
  flex-wrap: wrap;
}

.checkbox-type-label {
  height: 28px;
  padding-inline: 8px;
  border-radius: 4px;
  border: 1px solid var(--gray);
  background: #f6f8fa;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.checkbox-type-label input {
  opacity: 0;
  width: 0;
  height: 0;
}
.checkbox-type-label:has(:checked) {
  background: var(--blue_gd);
  color: var(--white);
}

.birthday-select {
  align-items: center;
  gap: 10px;
}
.birthday-select select {
  width: 78px;
}

.list-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.list-cards .item {
  border: 1px solid var(--gray);
  padding: 8px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.list-cards .title {
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--pink);
  font-size: 1.1rem;
}
.list-cards .picture {
  width: 100%;
  height: 217px;
  position: relative;
}
.list-cards .picture img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: calc(100% - 29px);
}
.list-cards .picture::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../images/icon-star__gray.svg) center/contain no-repeat;
  position: absolute;
  inset: 5px auto auto 5px;
}
.list-cards .time {
  margin: 5px;
  text-align: center;
}
.list-cards .properties {
  height: 29px;
  display: grid;
  place-items: center;
  background: #06c0ea;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 29px;
}
.list-cards .properties::before {
  content: "電話確認";
  line-height: 1;
}
.list-cards .count {
  position: absolute;
  inset: auto auto 34px 5px;
  background: rgba(51, 51, 51, 0.7);
  color: var(--white);
  border-radius: 10rem;
  white-space: nowrap;
  padding: 0 8px;
  display: flex;
  align-items: center;
  gap: 3px;
  height: 18px;
}
.list-cards .count::before {
  content: "";
  background: url(../images/icon-image.svg) center/contain no-repeat;
  width: 12px;
  height: 12px;
}
.list-cards .btn-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}
.list-cards .btn-wrap .btn {
  width: 100%;
  padding-block: 6px;
  font-weight: normal;
}
.list-cards .btn-wrap-wide {
  display: grid;
  gap: 5px;
}
.list-cards .btn-wrap-wide .btn {
  width: 100%;
  padding-block: 6px;
  font-weight: normal;
}
.list-cards .item.__star .picture::before {
  background-image: url(../images/icon-star__noborder.svg);
}
.list-cards .item.__atWork .properties {
  background: var(--orange);
}
.list-cards .item.__atWork .properties::before {
  content: "出勤中";
}
.list-cards .item.__work .properties {
  background: var(--light_orange);
}
.list-cards .item.__work .properties::before {
  content: "出勤";
}
.list-cards .item.__now .properties {
  background: #d7172c;
}
.list-cards .item.__now .properties::before {
  content: "今すぐ癒せる";
}
.list-cards .item.__finish .properties {
  background: #8db9d7;
}
.list-cards .item.__finish .properties::before {
  content: "受付終了";
}
.list-cards .item.__busy .properties::before {
  content: "";
}
.list-cards.__closed .picture {
  height: 188px;
}
.list-cards.__closed .picture img {
  height: 100%;
}
.list-cards.__closed .picture .count {
  inset: auto auto 5px 5px;
}

.pager-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block: 15px;
}
.pager-wrap a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.pager-wrap .pager {
  display: flex;
  gap: 5px;
}
.pager-wrap .li-pager:not(.__dot) {
  width: 35px;
  height: 35px;
  padding-inline: 7px;
  border: 1px solid var(--gray);
  background: var(--white);
  border-radius: 4px;
  transition: background-color 0.3s;
}
.pager-wrap .li-pager:not(.__dot):hover {
  background: var(--black);
  color: var(--white);
}
.pager-wrap .li-pager.__dot {
  padding-inline: 5px;
}
.pager-wrap .li-pager.__current {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.main {
  position: relative;
}
.main .icon-error {
  background: #EB4444 !important;
  color: #fff;
  display: flex;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 100%;
  border-radius: 4px;
  position: absolute;
  z-index: 99999;
}
.main .icon-error:before {
  content: "";
  display: block;
  height: 24px;
  width: 24px;
  margin-right: 8px;
  background: url(../images/icon-error.svg) center/contain no-repeat;
}
.main .icon-success {
  background: #039688;
  color: #fff;
  display: flex;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 100%;
  border-radius: 4px;
  position: absolute;
  z-index: 99999;
}
.main .icon-success:before {
  content: "";
  display: block;
  height: 24px;
  width: 24px;
  margin-right: 8px;
  background: url(../images/icon-success.svg) center/contain no-repeat;
}

.tox-dialog {
  height: 90% !important;
  max-height: 90% !important;
  width: 90% !important;
  max-width: 90% !important;
}

.imageInsert {
  margin: -140px 20px 20px;
}
.imageInsert .img_list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  background-color: #f2f6f7;
}
.imageInsert .img_list li {
  position: relative;
  align-items: center;
  width: 110px;
  padding: 5px;
  background: var(--white);
  border: 1px solid #eeeeee;
  border-radius: 4px;
}
.imageInsert .img_list li .free_img_box {
  width: 100px;
  height: 100px;
}
.imageInsert .img_list li .free_img_box img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
  object-fit: cover;
}
.imageInsert .img_list li p {
  text-align: center;
  line-height: 2em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.imageInsert .img_list li .button_box div {
  display: grid;
  gap: 5px;
}
.imageInsert .img_list li .button_box div span {
  width: 100%;
  padding-block: 6px;
  font-weight: normal;
  display: grid;
  padding: 2px;
  place-items: center;
  font-size: 1rem;
  color: var(--black);
  background: var(--white_gd);
  border: 1px solid var(--gray);
  border-radius: 4px;
  cursor: pointer;
}

.imageInsertGirl {
  margin: -140px 20px 20px;
}
.imageInsertGirl .img_list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  background-color: #f2f6f7;
}
.imageInsertGirl .img_list li {
  position: relative;
  align-items: center;
  width: 110px;
  padding: 5px;
  background: var(--white);
  border: 1px solid #eeeeee;
  border-radius: 4px;
}
.imageInsertGirl .img_list li .girl_img_box {
  width: 100px;
  height: 100px;
}
.imageInsertGirl .img_list li .girl_img_box img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
  object-fit: cover;
}
.imageInsertGirl .img_list li p {
  text-align: center;
  line-height: 2em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.imageInsertGirl .img_list li .button_box div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}
.imageInsertGirl .img_list li .button_box div span {
  width: 100%;
  padding-block: 6px;
  font-weight: normal;
  display: grid;
  padding: 2px;
  place-items: center;
  font-size: 1rem;
  color: var(--black);
  background: var(--white_gd);
  border: 1px solid var(--gray);
  border-radius: 4px;
  cursor: pointer;
}
.imageInsertGirl .flex.v-align-center {
  gap: 5px;
  margin-bottom: 10px;
}
.imageInsertGirl .btn {
  padding: 7px;
  background: var(--green_gd);
  border: 1px solid var(--green);
}

.imageInsertAdd {
  margin: -140px 20px 20px;
}

.templateInsert {
  margin: -140px 20px 20px;
}
.templateInsert .temp_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background-color: #f2f6f7;
}
.templateInsert .temp_list li {
  position: relative;
  align-items: center;
  width: 270px;
  padding: 0 10px;
  background: var(--gray);
  border: 1px solid #eeeeee;
  border-radius: 4px;
}
.templateInsert .temp_list li .template_area {
  width: 250px;
  height: 250px;
  background: #ffffff;
  overflow-y: scroll;
  overflow-x: hidden;
}
.templateInsert .temp_list li .template_area::-webkit-scrollbar {
  display: none;
}
.templateInsert .temp_list li .template_area div {
  width: 250px;
  height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
}
.templateInsert .temp_list li .template_area div img {
  height: auto;
}
.templateInsert .temp_list li .templateTtl {
  text-align: center;
  line-height: 2em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.templateInsert .temp_list li .button_box div {
  display: grid;
  padding: 10px;
  gap: 5px;
}
.templateInsert .temp_list li .button_box div span {
  width: 100%;
  padding-block: 6px;
  font-weight: normal;
  display: grid;
  padding: 2px;
  place-items: center;
  font-size: 1rem;
  color: var(--black);
  background: var(--white_gd);
  border: 1px solid var(--gray);
  border-radius: 4px;
  cursor: pointer;
}

.moveImg figure {
  cursor: pointer;
}

.is-error {
  color: #EB4444 !important;
  font-weight: bold !important;
}

.template-freeimage .list-cards .item {
  position: relative;
}
.template-freeimage .list-cards .item img.delete {
  position: absolute;
  top: -8px;
  left: -8px;
}

.manual_movie {
  margin: -130px 30px 30px;
}
.manual_movie select {
  margin-bottom: 15px;
}
.manual_movie h3 {
  font-size: 17px;
  font-weight: bold;
  padding: 20px 0 15px 30px;
  background: url(../images/icon-redlist.svg) 12px 25px/contain no-repeat;
  background-size: inherit;
}

.table-manual_movie-header {
  background-color: #5662C3;
  color: var(--white);
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.table-manual_movie {
  table-layout: fixed;
  margin-bottom: 30px;
}
.table-manual_movie tr {
  min-height: 40px;
}
.table-manual_movie tr > *:nth-child(2) {
  width: 60px;
  text-align: center;
}
.table-manual_movie tr > *:nth-child(2) img {
  margin: 4px 0 3px;
}

.change-address {
  background-image: url(../images/icon-clear.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-color: var(--white_gd);
  margin-left: 10px;
  padding: 2px 5px 2px 20px;
  border-radius: 4px;
  border: 1px solid var(--gray);
  min-width: 84px;
  display: inline;
  place-items: center;
  position: relative;
  cursor: pointer;
}

#header {
  background-color: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
#header .wrapper {
  background-color: var(--white);
}

.header-wrapper {
  gap: 31px;
  height: 90px;
  align-items: center;
  justify-content: space-between;
}
.header-wrapper .btn {
  min-width: 103px;
  height: 48px;
}
.header-wrapper .btn-icon {
  min-width: 65px;
  font-size: 1rem;
  font-weight: 400;
}
.header-wrapper .logo-user {
  display: flex;
  gap: 30px;
}
.header-wrapper .logo-user .item-logo {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.header-wrapper .logo-user .item-logo .home {
  font-size: 1rem;
}
.header-wrapper .logo-user .item-logo .home a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-wrapper .logo-user .item-user {
  font-size: 1rem;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.header-wrapper .logo-user .item-user .img-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.header-wrapper .logo-user .item-user .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header-wrapper .logo-user .item-user .name {
  font-size: 1.2rem;
  width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header-wrapper .logo-user .item-user .name-wrap {
  margin-block: 3px 2px;
}
.header-wrapper .logo-user .item-user .icon-polygon {
  margin-block: 3px 2px;
  position: relative;
  display: flex;
  align-items: center;
}
.header-wrapper .logo-user .item-user .icon-polygon::after {
  content: "";
  display: none;
  width: 9px;
  height: 6px;
  background: url(../images/header/icon-polygon.svg) center/contain no-repeat;
}
.header-wrapper .logo-user .item-user .item-user-child {
  display: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  background: #fff;
  border-radius: 4px;
  padding: 1em;
  position: absolute;
  z-index: 2;
  inset: 100% 0 auto auto;
  flex-direction: column;
  gap: 10px;
}
.header-wrapper .logo-user .item-user.has-child .icon-polygon::after {
  display: inline-block;
}
.header-wrapper .logo-user .item-user.open .icon-polygon::after {
  transform: rotate(180deg);
}
.header-wrapper .logo-user .item-user.open .item-user-child {
  display: flex;
}
.header-wrapper .logo-user .item-user a {
  display: flex;
  gap: 16px;
}
.header-wrapper .item-btns {
  gap: 10px;
}

.global-information {
  background: var(--blue);
  color: var(--white);
}
.global-information .title {
  font-size: 1.2rem;
}
.global-information .count-wrap {
  font-size: 1rem;
}
.global-information .count {
  font-size: 1.4rem;
  font-weight: 700;
  margin-inline: 1px;
  color: var(--yellow);
}
.global-information .count.__sub {
  color: var(--white);
}

.list-global-information {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1px;
}
.list-global-information li {
  height: 53px;
  padding-bottom: 3px;
  background: url(../images/header/bg-check.svg) bottom center no-repeat;
  background-size: auto;
}
.list-global-information li a {
  background: linear-gradient(to bottom, #3f82f7, #2565d4);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.sidebar a {
  display: block;
  height: 35px;
}
.sidebar .list-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar .li-parent:has(.list-sidebar-child) .a-parent::after {
  content: "";
  display: block;
  width: 9px;
  height: 6px;
  background: url(../images/sidebar/icon-polygon.svg) center/contain no-repeat;
  transform: rotate(180deg);
}
.sidebar .a-parent {
  background: #ccc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  padding-inline: 10px 14px;
  font-weight: bold;
  color: #fff;
}
.sidebar .parent-title {
  flex-grow: 1;
}
.sidebar .li-child {
  border: 1px solid var(--gray);
  margin-top: -1px;
  background: var(--white);
}
.sidebar .a-child {
  display: flex;
  align-items: center;
  padding-inline: 10px 0;
}
.sidebar .a-child.__star {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 11px;
}
.sidebar .a-child.__star::after {
  content: "";
  display: block;
  background: url(../images/sidebar/icon-star.svg) center/contain no-repeat;
  width: 15px;
  height: 15px;
}

.list-sidebar .li-parent:nth-child(1) .a-parent {
  background-color: #ff5c84;
}
.list-sidebar .li-parent:nth-child(2) .a-parent {
  background-color: #ff657c;
}
.list-sidebar .li-parent:nth-child(3) .a-parent {
  background-color: #fe6f74;
}
.list-sidebar .li-parent:nth-child(4) .a-parent {
  background-color: #fd8165;
}
.list-sidebar .li-parent:nth-child(5) .a-parent {
  background-color: #fd8165;
}
.list-sidebar .li-parent:nth-child(6) .a-parent {
  background-color: #fd8b5d;
}
.list-sidebar .li-parent:nth-child(7) .a-parent {
  background-color: #fd9455;
}
.list-sidebar .li-parent:nth-child(8) .a-parent {
  background-color: #fc9d4e;
}
.list-sidebar .li-parent:nth-child(9) .a-parent {
  background-color: #ffa500;
}
.list-sidebar .li-parent:nth-child(10) .a-parent {
  background-color: #fcb03e;
}
.list-sidebar .li-parent:nth-child(11) .a-parent {
  background-color: #fbc22f;
}
.list-sidebar .li-parent:nth-child(12) .a-parent {
  background-color: #cbdc2d;
}
.list-sidebar .li-parent:nth-child(13) .a-parent {
  background-color: #bbd63a;
}
.list-sidebar .li-parent:nth-child(14) .a-parent {
  background-color: #abd048;
}
.list-sidebar .li-parent:nth-child(15) .a-parent {
  background-color: #9bca55;
}
.list-sidebar .li-parent:nth-child(16) .a-parent {
  background-color: #8bc462;
}
.list-sidebar .li-parent:nth-child(17) .a-parent {
  background-color: #7bbe6f;
}
.list-sidebar .li-parent:nth-child(18) .a-parent {
  background-color: #6bb77d;
}
.list-sidebar .li-parent:nth-child(19) .a-parent {
  background-color: #5cb18a;
}
.list-sidebar .li-parent:nth-child(20) .a-parent {
  background-color: #4cab97;
}
.list-sidebar .li-parent:nth-child(21) .a-parent {
  background-color: #3ca5a4;
}
.list-sidebar .li-parent:nth-child(22) .a-parent {
  background-color: #2c9fb1;
}
.list-sidebar .li-parent:nth-child(23) .a-parent {
  background-color: #1c99bf;
}
.list-sidebar .li-parent:nth-child(24) .a-parent {
  background-color: #0c93cc;
}

.list-sidebar-child {
  height: 0;
  transition: height 0.3s, -webkit-clip-path 0.3s;
  transition: height 0.3s, clip-path 0.3s;
  transition: height 0.3s, clip-path 0.3s, -webkit-clip-path 0.3s;
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
}

.li-parent.__active .list-sidebar-child {
  -webkit-clip-path: inset(0 0 0% 0);
          clip-path: inset(0 0 0% 0);
}
.li-parent.__active:has(.list-sidebar-child) .a-parent::after {
  transform: rotate(0);
}

#footer {
  background: var(--black);
  color: var(--white);
  margin-top: 50px;
}

.footer-contents {
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.bg-white {
  background-color: var(--white);
}

.bg-black {
  background-color: var(--black);
}

.bg-white_gd {
  background: var(--white_gd);
}

.color-red {
  color: var(--red);
}

.color-sky_blue {
  color: var(--sky_blue);
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.space-between {
  justify-content: space-between;
}

.grid-center {
  place-items: center;
}

.v-align-center {
  align-items: center;
}

.w-100 {
  width: 100%;
}

::-moz-placeholder {
  color: #c9c9c9;
}

::placeholder {
  color: #c9c9c9;
}

::-ms-input-placeholder {
  color: #c9c9c9;
}

:-ms-input-placeholder {
  color: #c9c9c9;
}/*# sourceMappingURL=common.css.map */