@charset "UTF-8";
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

.tc {
  display: block !important;
}

.tb {
  display: none !important;
}

@media print, screen and (max-width: 991px) {
  .tc {
    display: none !important;
  }
  .tb {
    display: block !important;
  }
}

@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}

@media print, screen and (min-width: 769px) {
  .pc-hide {
    display: none !important;
  }
}

@media only screen and (max-width: 768px) {
  .sp-hide {
    display: none !important;
  }
}

[data-aos=fade-up] {
  -webkit-transform: translate3d(0, 60px, 0);
          transform: translate3d(0, 60px, 0);
}

#wrapper {
  position: relative;
  width: 100%;
}

main {
  position: relative;
}

main#main {
  overflow: hidden;
  min-height: calc(100vh - 9.6rem);
}

/* input */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
select,
textarea {
  position: relative;
  border-radius: 4px;
  border: 1px solid #BDBDBD;
  background: #FFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1.2rem 1.6rem;
  width: 100%;
  text-align: left;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
select {
  height: 4.8rem;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
  border-color: #888888;
}

input[type="text"]::-webkit-input-placeholder, input[type="email"]::-webkit-input-placeholder, input[type="tel"]::-webkit-input-placeholder, input[type="number"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #ACACAC;
}

input[type="text"]::-moz-placeholder, input[type="email"]::-moz-placeholder, input[type="tel"]::-moz-placeholder, input[type="number"]::-moz-placeholder, input[type="password"]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #ACACAC;
}

input[type="text"]:-ms-input-placeholder, input[type="email"]:-ms-input-placeholder, input[type="tel"]:-ms-input-placeholder, input[type="number"]:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #ACACAC;
}

input[type="text"]::-ms-input-placeholder, input[type="email"]::-ms-input-placeholder, input[type="tel"]::-ms-input-placeholder, input[type="number"]::-ms-input-placeholder, input[type="password"]::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #ACACAC;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
input[type="number"]::placeholder,
input[type="password"]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #ACACAC;
}

select {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(../img/select-down.svg);
  background-position: calc(100% - 1.2rem) 50%;
  background-size: 1.6rem 1.6rem;
  background-repeat: no-repeat;
  z-index: 0;
}

/* checkbox */
.checkbox {
  display: block;
  position: relative;
  padding-left: 3.2rem;
  cursor: pointer;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 3.0rem;
  text-align: left;
  color: #000000;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media only screen and (max-width: 768px) {
  .checkbox {
    font-size: 1.6rem;
    line-height: 2.8rem;
    padding-left: 3.0rem;
  }
}

.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox .checkmark {
  position: absolute;
  top: 0.3rem;
  left: 0;
  height: 2.4rem;
  width: 2.4rem;
  background-color: #FFFFFF;
  border-radius: 0.4rem;
  border: 2px solid #1B1B1F;
}

@media only screen and (max-width: 768px) {
  .checkbox .checkmark {
    top: 0.4rem;
    width: 2.0rem;
    height: 2.0rem;
    border-radius: 0.4rem;
  }
}

.checkbox input:focus ~ .checkmark {
  outline: 0.3rem solid #7EBF41;
}

.checkbox input:checked ~ .checkmark {
  background-color: #3B8E65;
  border-color: #3B8E65;
  outline: none;
}

.checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox input:checked ~ .checkmark:after {
  display: block;
}

.checkbox .checkmark:after {
  left: 0.5rem;
  top: 0;
  width: 0.9rem;
  height: 1.5rem;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media only screen and (max-width: 768px) {
  .checkbox .checkmark:after {
    left: 0.4rem;
    top: 0;
    width: 0.8rem;
    height: 1.2rem;
  }
}

picture,
figure,
.image_wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

picture img,
figure img,
.image_wrap img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.scroll {
  position: relative;
  max-width: 100%;
  width: 100%;
  overflow: auto;
}

@media only screen and (max-width: 768px) {
  .scroll {
    padding-bottom: 1.2rem;
  }
  .scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #f5f5f5;
    border-radius: 0.6rem;
  }
  .scroll::-webkit-scrollbar {
    height: 0.6rem;
    background-color: #f5f5f5;
  }
  .scroll::-webkit-scrollbar-thumb {
    border-radius: 0.6rem;
    background-color: #FED517;
  }
}

.btn {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  padding: 0.8rem 1.2rem;
  background-color: #3B8E65;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 100%;
  letter-spacing: 0.2em;
  color: #FFFFFF;
  text-align: center;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: all 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  border-radius: 2.5rem;
  cursor: pointer;
  z-index: 0;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  border-radius: inherit;
  border: 2px solid #3B8E65;
  z-index: 2;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: #FFFFFF;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  z-index: 1;
}

.btn:hover {
  color: #3B8E65;
}

.btn:hover::before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.btn span {
  position: relative;
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
  z-index: 3;
}

.btn.btn-yellow {
  background: #ffc520;
  color: #FFF;
  border-radius: 5px;
}

.btn.btn-yellow::after {
  border: unset;
}

.btn.btn-yellow::before {
  background: #1AC4A3;
}

@media only screen and (max-width: 768px) {
  .btn {
    padding: 1.3rem 6.0rem 1.3rem 3.2rem;
    font-size: 1.6rem;
    line-height: 2.4rem;
    letter-spacing: 0.1em;
    border-radius: 2.5rem;
  }
  .btn::after {
    border-width: 2px;
  }
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 9.6rem;
  padding: 2.0rem 0;
  background: #FFF;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 996;
}

@media only screen and (max-width: 768px) {
  .header {
    padding: 4.0rem 2.0rem 0;
  }
}

.header .header-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.header .header-logo {
  position: relative;
  padding: 0;
}

.header .header-logo a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header .header-logo a img {
  display: block;
  width: 21.6rem;
}

.header .btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.4rem;
     -moz-column-gap: 2.4rem;
          column-gap: 2.4rem;
  margin-right: -2.4rem;
}

.header .btn-wrapper .href-management {
  margin-left: 2.4rem;
}

.header .btn-wrapper .logout-form {
  margin-left: 2rem;
  padding: 0;
  margin: 0;
}

.header .btn-wrapper .btn-logout {
  display: block;
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  background: unset;
  background-color: unset;
  margin: 0;
  padding: 0;
}

.header .btn-wrapper .btn-logout img {
  display: block;
  width: 100%;
  height: 100%;
}

.header .btn-wrapper .rect-btn {
  padding: 1.6rem 2.4rem;
  height: 4.8rem;
}

.header .btn-wrapper .btn-links {
  border: 2px solid #1AC4A3;
  background: #FFF;
}

.header .btn-wrapper .btn-links span {
  color: #1AC4A3;
}

.header .btn-wrapper .register-customer {
  background: #1AC4A3;
  -webkit-column-gap: 1.0rem;
     -moz-column-gap: 1.0rem;
          column-gap: 1.0rem;
}

.header .btn-wrapper .register-customer span {
  color: #FFF;
}

.header .btn-wrapper .href-management span {
  border-bottom: 1px solid #1AC4A3;
  color: #1AC4A3;
}

.mobile-nav-toggle {
  position: fixed;
  right: 2.0rem;
  top: 62px;
  width: 28px;
  height: 22px;
  padding: 0;
  background: none;
  display: none;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 999;
  margin: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

@media only screen and (max-width: 768px) {
  .mobile-nav-toggle {
    display: inline-block;
    top: 2.75rem;
  }
}

.mobile-nav-toggle .toggle-icon {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
}

.mobile-nav-toggle .toggle-icon span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background: #494949bf;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

@media only screen and (max-width: 768px) {
  .mobile-nav-toggle .toggle-icon span {
    background: #3472A1;
  }
}

.mobile-nav-toggle .toggle-icon span:nth-child(1) {
  top: 0;
}

.mobile-nav-toggle .toggle-icon span:nth-child(2) {
  top: 10px;
}

.mobile-nav-toggle .toggle-icon span:nth-child(3) {
  bottom: 0;
}

.mobile-nav-toggle.toggle-active .toggle-icon span {
  background-color: #fff;
}

.mobile-nav-toggle.toggle-active .toggle-icon span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(45deg);
          transform: translateY(10px) rotate(45deg);
}

.mobile-nav-toggle.toggle-active .toggle-icon span:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateY(10px) rotate(-45deg);
          transform: translateY(10px) rotate(-45deg);
  visibility: hidden;
}

.mobile-nav-toggle.toggle-active .toggle-icon span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(-45deg);
          transform: translateY(-10px) rotate(-45deg);
}

#mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 998;
  right: -100%;
  width: 100%;
  overflow-y: auto;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: #3472A1;
}

#mobile-nav .mobile-toggle {
  position: absolute;
  top: 2.0rem;
  right: 1.8rem;
  display: none;
  width: 2.4rem;
  height: 1.7rem;
  padding: 0;
  background: none;
  display: none;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 9;
}

@media only screen and (max-width: 768px) {
  #mobile-nav .mobile-toggle {
    display: block;
  }
}

#mobile-nav .mobile-toggle span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #FFFFFF;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

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

#mobile-nav .mobile-toggle span:nth-child(2) {
  top: 0.8rem;
}

#mobile-nav .mobile-toggle span:nth-child(3) {
  bottom: 0;
}

#mobile-nav .mobile-toggle.toggle-active span:nth-child(1) {
  -webkit-transform: translateY(0.8rem) rotate(-45deg);
          transform: translateY(0.8rem) rotate(-45deg);
}

#mobile-nav .mobile-toggle.toggle-active span:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateX(2rem);
          transform: translateX(2rem);
  visibility: hidden;
}

#mobile-nav .mobile-toggle.toggle-active span:nth-child(3) {
  -webkit-transform: translateY(-0.8rem) rotate(45deg);
          transform: translateY(-0.8rem) rotate(45deg);
}

#mobile-nav .mobile-nav-container {
  position: relative;
  padding: 6.4rem 2.0rem 4.0rem;
}

#mobile-nav .mobile-nav-container .mobile-nav-menu {
  position: relative;
  list-style: none;
  max-width: 30.0rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 8.4rem;
  margin-left: auto;
  margin-right: auto;
}

#mobile-nav .mobile-nav-container .mobile-nav-menu > li {
  position: relative;
  display: block;
}

#mobile-nav .mobile-nav-container .mobile-nav-menu > li:not(:last-child) {
  margin-bottom: 2.2rem;
}

#mobile-nav .mobile-nav-container .mobile-nav-menu .menu-link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  text-align: left;
  text-decoration: none;
  outline: none;
}

#mobile-nav .mobile-nav-container .mobile-nav-menu .menu-link span {
  color: inherit;
  text-decoration: none;
}

#mobile-nav .search-action {
  position: relative;
  display: block;
  max-width: 33.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4.0rem;
}

#mobile-nav .search-action > li {
  position: relative;
}

#mobile-nav .search-action > li:not(:last-child) {
  margin-bottom: 2.0rem;
}

#mobile-nav .mobile-info {
  position: relative;
  font-family: "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2.8rem;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  text-align: left;
  margin-top: 4.0rem;
  max-width: 30.0rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

#mobile-nav .mobile-info i {
  color: inherit;
  display: inline-block;
  margin-right: 0.6rem;
}

#mobile-nav .mobile-info a {
  color: inherit;
}

#mobile-nav .mobile-info a:hover {
  text-decoration: underline;
}

.mobile-nav-overly {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 997;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

/* Mobile Nav body classes */
@media only screen and (max-width: 768px) {
  body.mobile-nav-active {
    overflow: hidden;
  }
}

body.mobile-nav-active #mobile-nav {
  right: 0;
}

main {
  padding-bottom: 14.4rem;
}

.task-list-section {
  margin-bottom: 5.6rem;
}

.task-list-section .head-text {
  margin-bottom: 2.4rem;
}

.task-list-section .task-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-radius: 4px;
  overflow: hidden;
}

.task-list-section .task-table thead tr {
  background: #FFF;
}

.task-list-section .task-table tbody tr {
  background: #FFF;
}

.task-list-section .task-table tbody tr:nth-child(1) {
  border-top: 1px solid #ECECEC;
}

.task-list-section .task-table tbody tr:nth-child(2) {
  border-top: 1px solid #ECECEC;
}

.task-list-section .task-table tbody tr:nth-child(3) {
  border-top: 1px solid #ECECEC;
}

.task-list-section .task-table td,
.task-list-section .task-table th {
  text-align: left;
  font-size: 1.5rem;
}

.task-list-section .task-table th {
  color: #9C9C9C;
  font-weight: 700;
  padding: 1.6rem 2.4rem;
}

.task-list-section .task-table td {
  font-weight: 500;
  line-height: 2.4rem;
  padding: 0.8rem 2.4rem;
}

.task-list-section .task-table tr td:last-child {
  text-align: right;
}

.task-list-section .task-table tr td:last-child .rect-btn {
  margin-left: auto;
  padding: 1.6rem 2.4rem;
  height: 4.2rem;
  background: #1AC4A3;
  color: #FFF;
}

.task-list-section .task-table.urgent-task-table tbody tr {
  border-top: 1px solid #ECECEC;
  background: #FFF6F6;
}

.task-list-section .task-table.urgent-task-table th {
  color: #282828;
  font-weight: 700;
}

.task-list-section .task-table.urgent-task-table tr td:nth-child(4) {
  color: #F13636;
}

#task-page .task-list-section {
  margin-bottom: 0;
}

#task-page .task-list-section.urgent-tasks {
  margin-bottom: 7.2rem;
}

.customers-section .head-text {
  margin-bottom: 2.4rem;
}

.customers-section .search-wrapper .s-key-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.4rem;
     -moz-column-gap: 2.4rem;
          column-gap: 2.4rem;
  margin-bottom: 1.6rem;
}

.customers-section .search-wrapper .s-key-wrapper .input-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px;
  border: 1px solid #BDBDBD;
  background: #FFF;
  max-width: 49.3rem;
  width: 100%;
  height: 4.8rem;
}

.customers-section .search-wrapper .s-key-wrapper .input-button input {
  width: 100%;
  height: 100%;
  background: unset;
  border: unset;
}

.customers-section .search-wrapper .s-key-wrapper .input-button button {
  background: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: unset;
}

.customers-section .search-wrapper .s-key-wrapper .input-button button svg {
  width: 2.4rem;
  height: 2.4rem;
}

.customers-section .search-wrapper .s-key-wrapper .goto-search {
  color: #1AC4A3;
  font-size: 1.5rem;
  font-weight: 700;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

.customers-section .customer-list {
  width: 100%;
}

.customers-section .customer-list .customer-item:not(:last-child) {
  margin-bottom: 3.2rem;
}

.customers-section .customer-list .customer-item .item-wrapper {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #FFF;
  border-collapse: collapse;
  border-spacing: 0;
  border-radius: 4px;
}

.customers-section .customer-list .customer-item .item-wrapper .left-wrapper {
  position: relative;
  width: 47%;
  padding: 4.0rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3.2rem;
     -moz-column-gap: 3.2rem;
          column-gap: 3.2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-right: 1px solid #ECECEC;
}

.customers-section .customer-list .customer-item .item-wrapper .left-wrapper .image-wrapper {
  position: relative;
  width: 25%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.customers-section .customer-list .customer-item .item-wrapper .left-wrapper .image-wrapper img {
  aspect-ratio: 1 / 1;
  width: 100%;
  margin-bottom: 1.6rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.customers-section .customer-list .customer-item .item-wrapper .left-wrapper .image-wrapper .rect-btn {
  width: 100%;
  height: 4.2rem;
  border-radius: 4px;
  background: #1AC4A3;
  color: #FFF;
  font-size: 1.5rem;
  font-weight: 700;
}

.customers-section .customer-list .customer-item .item-wrapper .left-wrapper .profile-wrapper {
  width: 100%;
}

.customers-section .customer-list .customer-item .item-wrapper .left-wrapper .profile-wrapper .company-name {
  margin-bottom: 4.0rem;
}

.customers-section .customer-list .customer-item .item-wrapper .left-wrapper .profile-wrapper .profile-content {
  position: relative;
  width: 100%;
}

.customers-section .customer-list .customer-item .item-wrapper .left-wrapper .profile-wrapper .profile-content .profile-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.4rem;
     -moz-column-gap: 0.4rem;
          column-gap: 0.4rem;
  position: relative;
  width: 100%;
}

.customers-section .customer-list .customer-item .item-wrapper .left-wrapper .profile-wrapper .profile-content .profile-row:not(:last-child) {
  margin-bottom: 1.6rem;
}

.customers-section .customer-list .customer-item .item-wrapper .left-wrapper .profile-wrapper .profile-content .profile-row .head {
  position: relative [];
  width: 28%;
  color: #9C9C9C;
  font-size: 1.4rem;
  font-weight: 400;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 2.0rem;
  /* 107.143% */
}

.customers-section .customer-list .customer-item .item-wrapper .left-wrapper .profile-wrapper .profile-content .profile-row .content {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.0rem;
  /* 100% */
}

.customers-section .customer-list .customer-item .item-wrapper .right-wrapper {
  width: 100%;
  position: relative;
  padding: 4.0rem 2.4rem;
}

.customers-section .customer-list .customer-item .item-wrapper .right-wrapper .table-style {
  margin-bottom: 2.6rem;
}

.customers-section .customer-list .customer-item .item-wrapper .right-wrapper .table-style .row-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
}

.customers-section .customer-list .customer-item .item-wrapper .right-wrapper .table-style .row-wrapper:not(:last-child) {
  margin-bottom: 2.0rem;
}

.customers-section .customer-list .customer-item .item-wrapper .right-wrapper .table-style .row-wrapper .head {
  position: relative;
  width: 22%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.customers-section .customer-list .customer-item .item-wrapper .right-wrapper .table-style .row-wrapper .head .round-btn {
  padding: 0.6rem 2.0rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #DDF4F0;
}

.customers-section .customer-list .customer-item .item-wrapper .right-wrapper .table-style .row-wrapper .head .round-btn span {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1AC4A3;
}

.customers-section .customer-list .customer-item .item-wrapper .right-wrapper .table-style .row-wrapper .content {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.0rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.customers-section .customer-list .customer-item .item-wrapper .right-wrapper .date {
  text-align: right;
}

#search-page {
  padding-bottom: 16.7rem;
}

#search-page .search-pannel {
  border-radius: 4px;
  background: #FFF;
  -webkit-box-shadow: 0px 0px 7.3px 4px rgba(232, 232, 232, 0.5);
          box-shadow: 0px 0px 7.3px 4px rgba(232, 232, 232, 0.5);
  padding: 4.0rem 4.8rem;
  margin-bottom: 4.8rem;
}

#search-page .search-pannel .pannel-label {
  margin-bottom: 4.0rem;
}

#search-page .search-pannel .add-keys {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 4.8rem;
  width: 100%;
  max-width: 62.5rem;
  height: 4.8rem;
  border-radius: 4px;
  border: 1px solid #BDBDBD;
  overflow: hidden;
}

#search-page .search-pannel .add-keys .keys-input {
  width: 100%;
  height: 100%;
  background: #FFF;
  border: unset;
  color: #282828;
  font-size: 1.5rem;
  font-weight: 400;
  /* 100% */
}

#search-page .search-pannel .add-keys .rect-btn {
  color: #FFF;
  background: #1AC4A3;
  padding: 1.2rem 1.6rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 0;
  border-radius: 0;
}

#search-page .search-pannel .check-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#search-page .search-pannel .check-wrapper.charger {
  margin-bottom: 4.8rem;
}

#search-page .search-pannel .check-wrapper.location {
  margin-bottom: 6.0rem;
}

#search-page .search-pannel .check-wrapper .label {
  width: 10%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

#search-page .search-pannel .check-wrapper .check-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 3.2rem;
     -moz-column-gap: 3.2rem;
          column-gap: 3.2rem;
  row-gap: 2.0rem;
}

#search-page .search-pannel .check-wrapper .check-list label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#search-page .search-pannel .check-wrapper .check-list label:hover {
  cursor: pointer;
}

#search-page .search-pannel .check-wrapper .check-list label input[type=checkbox] {
  border-radius: 2px;
}

#search-page .search-pannel .keys-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.8rem;
     -moz-column-gap: 1.8rem;
          column-gap: 1.8rem;
  margin-bottom: 3.2rem;
}

#search-page .search-pannel .keys-wrapper .label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  margin-top: 0.4rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

#search-page .search-pannel .keys-wrapper .keys-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 1.2rem;
}

#search-page .search-pannel .keys-wrapper .keys-list .keys-item .round-btn {
  padding: 1.2rem 1.6rem;
  height: 3.2rem;
  border-radius: 90px;
  border: 1px solid #1AC4A3;
  background: #FFF;
  color: #1AC4A3;
  -webkit-column-gap: 0.8rem;
     -moz-column-gap: 0.8rem;
          column-gap: 0.8rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 100%;
}

#search-page .search-pannel .keys-wrapper .keys-list .keys-item .round-btn svg {
  width: 1.6rem;
  height: 1.6rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

#search-page .search-pannel .rect-btn {
  margin-left: auto;
  margin-right: -1.0rem;
  height: 4.8rem;
  border-radius: 4px;
  background: #FF9B04;
  color: #FFF;
  padding: 1.2rem 1.6rem;
  -webkit-column-gap: 1.0rem;
     -moz-column-gap: 1.0rem;
          column-gap: 1.0rem;
}

#search-page .search-pannel .rect-btn svg {
  width: 2.0rem;
  height: 2.0rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

#search-page .customers-section .search-wrapper .item-numbers {
  margin-bottom: 4.0rem;
}

.sortby-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 3.2rem;
     -moz-column-gap: 3.2rem;
          column-gap: 3.2rem;
  margin-bottom: 3.2rem;
}

.sortby-wrapper .sortby-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sortby-wrapper .sortby-list .sortby-item {
  border-right: 1px solid #999999;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.sortby-wrapper .sortby-list .sortby-item:first-child .sortby-link {
  padding-left: 0;
}

.sortby-wrapper .sortby-list .sortby-item .sortby-link {
  color: #1AC4A3;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: underline;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0 1.0rem;
}

.sortby-wrapper .sortby-list .sortby-item .sortby-link.current {
  color: #282828;
  text-decoration: none;
}

.sortby-wrapper .by-charger {
  width: 23.9rem;
  height: 4.0rem;
  border-radius: 4px;
  border: 1px solid #BDBDBD;
  background-color: #FFF;
  padding: 0.6rem 1.6rem;
}

.task-list-section .head-text {
  margin-bottom: 4.0rem;
}

#admin-charger-list {
  padding-top: 8.0rem;
}

.chargers-section .head-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2.0rem;
}

.chargers-section .head-wrapper .rect-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 4.8rem;
  padding: 1.6rem 3.2rem;
  color: #FFF;
  background: #1AC4A3;
  font-family: "Noto Sans JP";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 100% */
}

.chargers-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-radius: 4px;
  overflow: hidden;
}

.chargers-table tr {
  background: #FFF;
}

.chargers-table tbody tr {
  border-top: 1px solid #ECECEC;
}

.chargers-table td,
.chargers-table th {
  text-align: left;
  font-size: 1.5rem;
}

.chargers-table th {
  color: #9C9C9C;
  font-weight: 700;
  padding: 1.6rem 2.4rem;
}

.chargers-table td {
  font-weight: 500;
  line-height: 2.4rem;
  padding: 0.8rem 2.4rem;
}

.chargers-table td.pass-wrapper {
  position: relative;
}

.chargers-table td.pass-wrapper .pass {
  -webkit-text-security: disc;
}

.chargers-table td.pass-wrapper .show-pass {
  position: absolute;
  top: 50%;
  right: 0.8rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.chargers-table td.pass-wrapper .show-pass:hover {
  cursor: pointer;
}

.chargers-table td.pass-wrapper .show-pass .show {
  display: block;
}

.chargers-table td.pass-wrapper .show-pass .hide {
  display: none;
}

.chargers-table td.pass-wrapper.showing .pass {
  -webkit-text-security: unset;
}

.chargers-table td.pass-wrapper.showing .show {
  display: none;
}

.chargers-table td.pass-wrapper.showing .hide {
  display: block;
}

.chargers-table tr td:last-child {
  text-align: right;
}

.chargers-table tr td:last-child .rect-btn {
  margin-left: auto;
  padding: 1.2rem 2.4rem;
  height: 4.2rem;
  background: #1AC4A3;
  color: #FFF;
}

.chargers-table tr td:last-child .rect-btn.btn-delete-ok {
  background: #F13636;
}

.users-table tbody tr td:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.users-table tbody tr td:last-child .rect-btn {
  margin-left: 0;
}

.users-table tbody tr td:last-child form {
  margin-left: auto;
}

.charger-register,
.charger-edit {
  max-width: 64rem;
  background: #FFF;
  margin: 8.0rem auto auto auto;
  padding: 6.4rem 10.4rem;
  border-radius: 4px;
}

.charger-register .head-text,
.charger-edit .head-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 5.6rem auto;
}

.charger-register .rect-btn,
.charger-edit .rect-btn {
  padding: 1.6rem 5.6rem;
  height: 4.8rem;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  border-radius: 4px;
  background: #FF9B04;
}

.charger-register .href-btn,
.charger-edit .href-btn {
  margin-left: -6.4rem;
  text-decoration: underline;
  color: #1AC4A3;
}

.charger-register .id-pass .input-update,
.charger-edit .id-pass .input-update {
  position: relative;
}

.charger-register .id-pass .input-update input,
.charger-edit .id-pass .input-update input {
  width: 64%;
}

.charger-register .id-pass .input-update .email_update_label,
.charger-edit .id-pass .input-update .email_update_label {
  width: calc(36% - 1.2rem);
}

.charger-register .id-pass .input-update .password-wrapper,
.charger-edit .id-pass .input-update .password-wrapper {
  position: relative;
  width: 64%;
}

.charger-register .id-pass .input-update .password-wrapper input,
.charger-edit .id-pass .input-update .password-wrapper input {
  width: 100%;
}

#admin-customer-register {
  padding-top: 8.0rem;
}

#admin-customer-register .container {
  max-width: 100rem;
}

#admin-customer-register .head-text {
  margin-bottom: 5.6rem;
}

#admin-customer-register .customer-register {
  border-radius: 4px;
  background: #FFF;
  -webkit-box-shadow: 0px 0px 7.3px 4px rgba(232, 232, 232, 0.5);
          box-shadow: 0px 0px 7.3px 4px rgba(232, 232, 232, 0.5);
  padding: 7.2rem 6.4rem;
}

#admin-customer-register .customer-register .register-part-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 7.2rem;
  margin-bottom: 4.8rem;
}

#admin-customer-register .customer-register .btn-register {
  padding: 1.6rem 9.6rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 4.8rem;
  color: #FFF;
  background: #FF9B04;
  margin: 0 auto;
  margin-bottom: 5.6rem;
}

#admin-customer-register .customer-register .href-btn {
  color: #1AC4A3;
  text-decoration: underline;
}

#admin-customer-register .customer-register .sub-title {
  position: relative;
  margin-bottom: 4.0rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.7rem;
     -moz-column-gap: 1.7rem;
          column-gap: 1.7rem;
}

#admin-customer-register .customer-register .sub-title::before {
  content: '';
  width: 0.5rem;
  height: 2.8rem;
  background-color: #1AC4A3;
  border-radius: 90px;
}

#admin-customer-register .customer-register .inputs-profileimg {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5.6rem;
     -moz-column-gap: 5.6rem;
          column-gap: 5.6rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

#admin-customer-register .customer-register .inputs-profileimg .inputs-wrapper {
  width: 100%;
}

#admin-customer-register .customer-register .inputs-profileimg .profile-img {
  position: relative;
  width: 19%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

#admin-customer-register .customer-register .inputs-profileimg .profile-img #previewContainer {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  border: 1px solid #AAA;
  background: #D9D9D9;
  margin-bottom: 1.1rem;
}

#admin-customer-register .customer-register .inputs-profileimg .profile-img #previewContainer::before {
  content: 'No Image';
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #7A7A7A;
  font-family: "Noto Sans JP";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 100% */
}

#admin-customer-register .customer-register .inputs-profileimg .profile-img #previewContainer img {
  width: 100%;
  aspect-ratio: 1 / 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  display: block;
  position: relative;
}

#admin-customer-register .customer-register .inputs-profileimg .profile-img .btn-wrapper {
  position: relative;
  overflow: hidden;
}

#admin-customer-register .customer-register .inputs-profileimg .profile-img .btn-wrapper #profile_img {
  position: absolute;
}

#admin-customer-register .customer-register .inputs-profileimg .profile-img .btn-wrapper .custom-file-label {
  position: relative;
  width: 100%;
  height: 4.2rem;
  color: #FFF;
  background-color: #1AC4A3;
  font-family: "Noto Sans JP";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  cursor: pointer;
}

#admin-customer-register .customer-register .vertical-wrapper {
  row-gap: 4.0rem;
}

#admin-customer-register .customer-register .row-item {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#admin-customer-register .customer-register .row-item .row-label-wrapper {
  width: 16rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

#admin-customer-register .customer-register .row-item .row-label-wrapper span {
  color: #6E6E6E;
}

#admin-customer-register .customer-register .row-item .row-label-wrapper label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.4rem;
}

#admin-customer-register .customer-register .row-item .rect-btn {
  height: 4.2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.6rem 3.2rem;
  color: #FFF;
  background: #1AC4A3;
  font-family: "Noto Sans JP";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 100% */
}

#admin-customer-register .customer-register .row-content-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2.4rem;
}

#admin-customer-register .customer-register .row-content-wrapper.horizontal-wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 1.2rem;
     -moz-column-gap: 1.2rem;
          column-gap: 1.2rem;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

#admin-customer-register .customer-register .row-content-wrapper .time-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

#admin-customer-register .customer-register .row-content-wrapper .time-wrapper select {
  max-width: 12.6rem;
}

#admin-customer-register .customer-register .row-content-wrapper .time-wrapper span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 4.8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#admin-customer-register .customer-register .input-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.0rem;
}

#admin-customer-register .customer-register .input-wrapper.horizontal-wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
}

#admin-customer-register .customer-register .input-wrapper.horizontal-wrapper select {
  max-width: 48rem;
}

#admin-customer-register .customer-register input,
#admin-customer-register .customer-register select {
  width: 100%;
}

#admin-customer-register .customer-register .half-length {
  max-width: 24rem;
}

.customer-detail .container {
  background: #FFF;
  padding: 7.2rem 8.0rem;
  border-radius: 4px;
  margin-bottom: 5.6rem;
}

.customer-detail .customer-profile {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 4.8rem;
     -moz-column-gap: 4.8rem;
          column-gap: 4.8rem;
  margin-bottom: 8.0rem;
}

.customer-detail .customer-profile .img-wrapper {
  position: relative;
  width: 19%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.customer-detail .customer-profile .img-wrapper img {
  width: 100%;
  aspect-ratio: 1 / 1;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1.6rem;
}

.customer-detail .customer-profile .img-wrapper .rect-btn {
  color: #FFF;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #1AC4A3;
  height: 3.6rem;
  padding: 1.6rem 2.4rem;
  margin: 0 auto;
}

.customer-detail .customer-profile .profile-wrapper .company-manager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8.6rem;
     -moz-column-gap: 8.6rem;
          column-gap: 8.6rem;
  margin-bottom: 4.0rem;
}

.customer-detail .customer-profile .profile-wrapper .row-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.customer-detail .customer-profile .profile-wrapper .row-wrapper .label {
  width: 9.8rem;
  color: #9C9C9C;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.customer-detail .customer-profile .profile-wrapper .address-wrapper {
  margin-bottom: 2.4rem;
}

.customer-detail .customer-profile .profile-wrapper .url-wrapper {
  margin-bottom: 2.4rem;
}

.customer-detail .customer-profile .profile-wrapper .url-wrapper .url {
  color: #1AC4A3;
  text-decoration: underline;
}

.customer-detail .customer-profile .profile-wrapper .charger-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
}

.customer-detail .customer-profile .profile-wrapper .charger-wrapper .label {
  color: #1AC4A3;
  padding: 0.7rem 2.0rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 2.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #DDF4F0;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 90px;
}

.customer-detail .customer-profile .profile-wrapper .charger-wrapper .name {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.customer-detail .charger-memo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  margin-bottom: 8.9rem;
}

.customer-detail .charger-memo .left-wrapper {
  width: 50%;
  padding-left: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 4.8rem;
}

.customer-detail .charger-memo .right-wrapper {
  width: 50%;
}

.customer-detail .charger-memo .right-wrapper .label {
  margin-bottom: 1.6rem;
}

.customer-detail .charger-memo .right-wrapper .memo {
  padding: 1.6rem 1.2rem;
  border-radius: 6px;
  background: #FAFAFA;
  border: 1px solid #D9D9D9;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 504 / 386;
  line-height: 2.4rem;
}

.customer-detail .charger-memo .charger-part .part-label {
  margin-bottom: 2.4rem;
}

.customer-detail .charger-memo .charger-part .label-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 3.6rem;
     -moz-column-gap: 3.6rem;
          column-gap: 3.6rem;
  margin-bottom: 2.4rem;
}

.customer-detail .charger-memo .charger-part .label-btns .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
}

.customer-detail .charger-memo .charger-part .item-list {
  display: -ms-grid;
  display: grid;
      grid-template: repeat(1, minmax(0, 1fr));
  row-gap: 1.6rem;
}

.customer-detail .charger-memo .charger-part .item-list .item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.0rem;
     -moz-column-gap: 1.0rem;
          column-gap: 1.0rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.customer-detail .charger-memo .charger-part .item-list .item-wrapper img {
  width: 2.4rem;
  height: 2.4rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 1 / 1;
  -o-object-fit: cover;
     object-fit: cover;
}

.customer-detail .charger-memo .register-charger {
  color: #FFF;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #1AC4A3;
  height: 4.8rem;
  padding: 1.6rem 2.4rem;
  -webkit-column-gap: 1.0rem;
     -moz-column-gap: 1.0rem;
          column-gap: 1.0rem;
}

.customer-detail .task-wrapper {
  margin-bottom: 6.4rem;
}

.customer-detail .task-wrapper .label-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1.6rem;
}

.customer-detail .task-wrapper .label-btns .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
}

.customer-detail .task-wrapper .label-btns .btns .task-list {
  color: #FFF;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #1AC4A3;
  height: 4.8rem;
  padding: 1.6rem 2.4rem;
}

.customer-detail .task-wrapper .label-btns .btns .new-register {
  color: #FFF;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 4.8rem;
  padding: 1.6rem 2.4rem;
  -webkit-column-gap: 1.0rem;
     -moz-column-gap: 1.0rem;
          column-gap: 1.0rem;
  background: #FF9B04;
}

.customer-detail .task-wrapper .label-btns .btns .new-register img {
  width: 2.4rem;
  height: 2.4rem;
}

.customer-detail .task-wrapper .task-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-radius: 4px;
  overflow: hidden;
}

.customer-detail .task-wrapper .task-table thead tr {
  background: #FAFAFA;
  border-top: 1px solid #ECECEC;
}

.customer-detail .task-wrapper .task-table tbody tr {
  background: #FFF;
  border-top: 1px solid #ECECEC;
}

.customer-detail .task-wrapper .task-table tbody tr:nth-child(1) {
  background: #FFF6F6;
}

.customer-detail .task-wrapper .task-table tbody tr:nth-child(1) td:nth-child(3) {
  color: #F13636;
}

.customer-detail .task-wrapper .task-table tbody tr:last-child {
  border-bottom: 1px solid #ECECEC;
}

.customer-detail .task-wrapper .task-table td,
.customer-detail .task-wrapper .task-table th {
  text-align: left;
  font-size: 1.5rem;
}

.customer-detail .task-wrapper .task-table th {
  color: #282828;
  font-weight: 700;
  padding: 1.6rem 2.4rem;
}

.customer-detail .task-wrapper .task-table td {
  font-weight: 500;
  line-height: 2.4rem;
  padding: 2.0rem 2.4rem;
}

.customer-detail .task-wrapper .task-table tr td:last-child .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2.0rem;
     -moz-column-gap: 2.0rem;
          column-gap: 2.0rem;
  text-align: right;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 auto;
}

.customer-detail .task-wrapper .task-table tr td:last-child .btn-func {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.4rem;
     -moz-column-gap: 0.4rem;
          column-gap: 0.4rem;
  background: unset;
  padding: 0;
}

.customer-detail .task-wrapper .task-table tr td:last-child .btn-func.btn-terminate {
  color: #1AC4A3;
}

.customer-detail .task-wrapper .task-table tr td:last-child .btn-func.disabled {
  color: #b6b6b6;
}

.customer-detail .task-wrapper .task-table tr td:last-child .btn-func.btn-edit {
  color: #1AC4A3;
}

.customer-detail .task-wrapper .task-table tr td:last-child .btn-func.btn-delete {
  color: #F13636;
}

.customer-detail .task-wrapper.completed-wrapper .task-table tbody tr:nth-child(1) {
  background: #FFF;
}

.customer-detail .offer-wrapper .label-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4.7rem;
     -moz-column-gap: 4.7rem;
          column-gap: 4.7rem;
  margin-bottom: 1.8rem;
}

.customer-detail .offer-wrapper .rect-btn {
  padding: 1.6rem 2.4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 4.8rem;
  color: #FFF;
  background: #1AC4A3;
}

.customer-detail .offer-wrapper .content {
  padding: 1.6rem;
  background: #FAFAFA;
  border: 1px solid #D9D9D9;
  border-radius: 6px;
  line-height: 2.4rem;
  margin-bottom: 1.6rem;
}

.customer-detail .back-customer-list {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #1AC4A3;
  text-decoration: underline;
}

.link-pannel {
  position: relative;
  width: 100%;
  padding: 6.4rem 5.6rem;
  background: #FFF;
  border-radius: 4px;
}

.link-pannel .btns {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 4.2rem;
  top: 7.2rem;
  right: 5.6rem;
}

.link-pannel .btns .rect-btn {
  padding: 1.2rem 2.4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: inherit;
  color: #FFF;
  -webkit-column-gap: 0.8rem;
     -moz-column-gap: 0.8rem;
          column-gap: 0.8rem;
}

.link-pannel .btns .rect-btn img {
  width: 2.0rem;
  height: 2.0rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.link-pannel .btns .rect-btn.add-category {
  background-color: #1AC4A3;
}

.link-pannel .btns .rect-btn.add-link {
  background-color: #FF9B04;
}

.link-pannel .head-text {
  margin-bottom: 5.8rem;
}

.link-pannel .left-right {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 14.8rem;
     -moz-column-gap: 14.8rem;
          column-gap: 14.8rem;
}

.link-pannel .left-right .sidebar {
  width: 13rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.link-pannel .left-right .sidebar .sidebar-label {
  margin-bottom: 4.0rem;
}

.link-pannel .left-right .sidebar .categories {
  display: -ms-grid;
  display: grid;
      grid-template: repeat(1, minmax(0, 1fr));
  row-gap: 2.4rem;
}

.link-pannel .left-right .sidebar .categories .category {
  white-space: nowrap;
  background: unset;
  text-align: left;
  -webkit-transition: all 0.4s cubic-bezier(0.8, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.8, 0, 0.2, 1);
}

.link-pannel .left-right .sidebar .categories .category.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.2rem;
     -moz-column-gap: 1.2rem;
          column-gap: 1.2rem;
}

.link-pannel .left-right .sidebar .categories .category.active::before {
  content: '';
  display: block;
  height: 2.0rem;
  width: 4px;
  background: #1AC4A3;
  border-radius: 90px;
}

.link-pannel .left-right .link-wrapper {
  width: 100%;
}

.link-pannel .left-right .link-wrapper .top-text {
  margin-bottom: 3.2rem;
}

.link-pannel .left-right .link-wrapper .top-desc {
  margin-bottom: 3.2rem;
}

.link-pannel .left-right .link-wrapper .link-list {
  padding: 1.6rem 4.0rem;
  border-radius: 6px;
  border: 1px solid #D9D9D9;
  background: #FAFAFA;
}

.link-pannel .left-right .link-wrapper .link-list .row-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 1.0rem;
  padding-top: 1.0rem;
}

.link-pannel .left-right .link-wrapper .link-list .row-item:not(:last-child) {
  border-bottom: 1px solid #D9D9D9;
}

.link-pannel .left-right .link-wrapper .link-list .row-item .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #1AC4A3;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.2rem;
     -moz-column-gap: 1.2rem;
          column-gap: 1.2rem;
}

.link-pannel .left-right .link-wrapper .link-list .row-item .link::after {
  content: '';
  width: 2.0rem;
  height: 2.0rem;
  background: url(../img/link-icon2.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}

.link-pannel .left-right .link-wrapper .link-list .row-item .btn-detail {
  padding: 1.2rem 2.4rem;
  border-radius: 4px;
  border: 1.5px solid #1AC4A3;
  color: #1AC4A3;
  background: #FFF;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 4.2rem;
}

.provide-content-wrapper,
.task-add-wrapper,
.task-edit-wrapper,
.link-add-wrapper,
.category-add-wrapper {
  padding: 6.4rem 12rem;
  border-radius: 4px;
  background: #FFF;
}

.provide-content-wrapper .head-text,
.task-add-wrapper .head-text,
.task-edit-wrapper .head-text,
.link-add-wrapper .head-text,
.category-add-wrapper .head-text {
  margin-bottom: 6.4rem;
  margin-left: -6.4rem;
}

.provide-content-wrapper.form-wrapper,
.task-add-wrapper.form-wrapper,
.task-edit-wrapper.form-wrapper,
.link-add-wrapper.form-wrapper,
.category-add-wrapper.form-wrapper {
  row-gap: 0;
}

.provide-content-wrapper.form-wrapper .vertical-wrapper,
.task-add-wrapper.form-wrapper .vertical-wrapper,
.task-edit-wrapper.form-wrapper .vertical-wrapper,
.link-add-wrapper.form-wrapper .vertical-wrapper,
.category-add-wrapper.form-wrapper .vertical-wrapper {
  row-gap: 3.2rem;
}

.provide-content-wrapper.form-wrapper .fit-content select,
.task-add-wrapper.form-wrapper .fit-content select,
.task-edit-wrapper.form-wrapper .fit-content select,
.link-add-wrapper.form-wrapper .fit-content select,
.category-add-wrapper.form-wrapper .fit-content select {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 4.4rem;
}

.provide-content-wrapper.form-wrapper select,
.task-add-wrapper.form-wrapper select,
.task-edit-wrapper.form-wrapper select,
.link-add-wrapper.form-wrapper select,
.category-add-wrapper.form-wrapper select {
  height: 4.8rem;
  padding-right: 6.4rem !important;
}

.provide-content-wrapper .row-item,
.task-add-wrapper .row-item,
.task-edit-wrapper .row-item,
.link-add-wrapper .row-item,
.category-add-wrapper .row-item {
  position: relative;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.provide-content-wrapper .row-item label,
.task-add-wrapper .row-item label,
.task-edit-wrapper .row-item label,
.link-add-wrapper .row-item label,
.category-add-wrapper .row-item label {
  width: 8.6rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.provide-content-wrapper .row-item.length1,
.task-add-wrapper .row-item.length1,
.task-edit-wrapper .row-item.length1,
.link-add-wrapper .row-item.length1,
.category-add-wrapper .row-item.length1 {
  max-width: 62rem;
}

.provide-content-wrapper .row-item.fit-content,
.task-add-wrapper .row-item.fit-content,
.task-edit-wrapper .row-item.fit-content,
.link-add-wrapper .row-item.fit-content,
.category-add-wrapper .row-item.fit-content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.provide-content-wrapper .row-item.fit-content select,
.task-add-wrapper .row-item.fit-content select,
.task-edit-wrapper .row-item.fit-content select,
.link-add-wrapper .row-item.fit-content select,
.category-add-wrapper .row-item.fit-content select {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.provide-content-wrapper .row-item.length2,
.task-add-wrapper .row-item.length2,
.task-edit-wrapper .row-item.length2,
.link-add-wrapper .row-item.length2,
.category-add-wrapper .row-item.length2 {
  max-width: 72rem;
}

.provide-content-wrapper .row-item.align-item-start,
.task-add-wrapper .row-item.align-item-start,
.task-edit-wrapper .row-item.align-item-start,
.link-add-wrapper .row-item.align-item-start,
.category-add-wrapper .row-item.align-item-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.provide-content-wrapper .row-item:first-child .rect-btn,
.task-add-wrapper .row-item:first-child .rect-btn,
.task-edit-wrapper .row-item:first-child .rect-btn,
.link-add-wrapper .row-item:first-child .rect-btn,
.category-add-wrapper .row-item:first-child .rect-btn {
  padding: 1.2rem 2.4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 4.2rem;
  background: #1AC4A3;
  color: #FFF;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.provide-content-wrapper .row-item .rect-btn,
.task-add-wrapper .row-item .rect-btn,
.task-edit-wrapper .row-item .rect-btn,
.link-add-wrapper .row-item .rect-btn,
.category-add-wrapper .row-item .rect-btn {
  width: 7.8rem;
  height: 4.8rem;
  background: #1AC4A3;
  color: #FFF;
}

.provide-content-wrapper .row-item .datepicker .calendar-icon,
.task-add-wrapper .row-item .datepicker .calendar-icon,
.task-edit-wrapper .row-item .datepicker .calendar-icon,
.link-add-wrapper .row-item .datepicker .calendar-icon,
.category-add-wrapper .row-item .datepicker .calendar-icon {
  width: 2.4rem;
  height: 2.4rem;
}

.provide-content-wrapper .row-item span.stick,
.task-add-wrapper .row-item span.stick,
.task-edit-wrapper .row-item span.stick,
.link-add-wrapper .row-item span.stick,
.category-add-wrapper .row-item span.stick {
  display: block;
  width: 1.5px;
  height: 2.8rem;
  background: #9C9C9C;
}

.provide-content-wrapper .row-item .date-picker-wrapper.horizontal-wrapper,
.task-add-wrapper .row-item .date-picker-wrapper.horizontal-wrapper,
.task-edit-wrapper .row-item .date-picker-wrapper.horizontal-wrapper,
.link-add-wrapper .row-item .date-picker-wrapper.horizontal-wrapper,
.category-add-wrapper .row-item .date-picker-wrapper.horizontal-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.provide-content-wrapper .link-edit,
.provide-content-wrapper .link-add,
.task-add-wrapper .link-edit,
.task-add-wrapper .link-add,
.task-edit-wrapper .link-edit,
.task-edit-wrapper .link-add,
.link-add-wrapper .link-edit,
.link-add-wrapper .link-add,
.category-add-wrapper .link-edit,
.category-add-wrapper .link-add {
  margin: 2.4rem auto 4.8rem auto;
  height: 4.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.2rem 5.6rem;
  background: #FF9B04;
  color: #FFF;
}

.provide-content-wrapper .goto-link-page,
.task-add-wrapper .goto-link-page,
.task-edit-wrapper .goto-link-page,
.link-add-wrapper .goto-link-page,
.category-add-wrapper .goto-link-page {
  color: #1AC4A3;
  text-decoration: underline;
  margin-left: -6.4rem;
}

.provide-content-wrapper .horizontal-wrapper.flex-start,
.task-add-wrapper .horizontal-wrapper.flex-start,
.task-edit-wrapper .horizontal-wrapper.flex-start,
.link-add-wrapper .horizontal-wrapper.flex-start,
.category-add-wrapper .horizontal-wrapper.flex-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.provide-content-form.main-form .vertical-wrapper {
  row-gap: 4.8rem;
}

.task-edit-wrapper {
  position: relative;
}

.task-edit-wrapper .btns {
  position: absolute;
  top: 6.4rem;
  right: 5.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
  height: 4.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.task-edit-wrapper .btns .rect-btn {
  padding: 1.4rem 2.4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: inherit;
  background: #FFF;
}

.task-edit-wrapper .btns .btn-complete {
  border: 2px solid #1AC4A3;
  color: #1AC4A3;
}

.task-edit-wrapper .btns .btn-delete {
  border: 2px solid #F13636;
  color: #F13636;
}

body.customer_register .header-nav {
  display: none;
}

main {
  background: #EEE;
  overflow: hidden;
}

a:hover {
  opacity: 0.7;
  cursor: pointer;
}

button:hover {
  opacity: 0.7;
  cursor: pointer;
}

.head-text {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 100%;
}

.my_account .header-nav,
.user_register_show .header-nav,
.customer_Edit .header-nav,
.charger_edit_show .header-nav,
.user_edit_show .header-nav {
  display: none;
}

.header-nav {
  margin: 6.4rem 0 4.8rem 0;
  position: relative;
  padding: 0;
}

.header-nav .nav-menu {
  position: relative;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 7.2rem;
     -moz-column-gap: 7.2rem;
          column-gap: 7.2rem;
  line-height: 1;
}

.header-nav .nav-menu li .active {
  padding: 1.6rem 3.2rem;
  height: 4.6rem;
  background: #1AC4A3;
}

.header-nav .nav-menu li .active span {
  color: #FFF;
}

.header-nav .nav-menu li .tasks-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.8rem;
     -moz-column-gap: 0.8rem;
          column-gap: 0.8rem;
}

.header-nav .nav-menu li .tasks-btn .task-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #F13636;
  border-radius: 90px;
  width: 2rem;
  height: 2rem;
  font-size: 1.3rem;
  line-height: 100%;
  color: #FFF;
}

.rect-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 4px;
}

.green-color {
  color: #1AC4A3;
}

.red-color {
  color: #F13636;
}

.black-color {
  color: #282828;
}

.gray-color {
  color: #B3B3B3;
}

.round-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 90px;
}

.font-15-400 {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 100%;
}

.font-15-500 {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 100%;
}

.font-15-700 {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 100%;
}

.font-16-400 {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 100%;
}

.font-16-500 {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 100%;
}

.font-16-700 {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 100%;
}

.font-18-400 {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 100%;
}

.font-18-700 {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 100%;
}

.font-20-700 {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 2.0rem;
  line-height: 100%;
}

.font-24-700 {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 100%;
}

.font-32-700 {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 100%;
}

body a:hover,
body button:hover {
  text-decoration: none;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -o-transition: 0.3s all;
  -ms-transition: 0.3s all;
}

#date-picker-wrapper {
  position: absolute;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.date-picker-wrapper .calendar,
.date-picker-wrapper .datepicker {
  max-width: 300px;
  margin: auto;
}

.date-picker-wrapper .datepicker:hover {
  opacity: 0.7;
  cursor: pointer;
}

.date-picker-wrapper .calendar {
  border: 1px solid #cccccc;
  border-radius: 10px;
  padding: 2.4rem 1.2rem 1.6rem 1.2rem;
  background: #FFF;
}

.date-picker-wrapper .datepicker input {
  margin: 0;
  font-family: inherit;
  display: none;
  width: 85%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem 0.375rem 2.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

.date-picker-wrapper .datepicker input:focus {
  color: #495057;
  background-color: #fff;
  border-color: #f28388;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(219, 61, 68, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(219, 61, 68, 0.25);
}

.date-picker-wrapper .datepicker i {
  position: absolute;
}

.date-picker-wrapper .icon {
  padding: 16px;
  font-size: larger;
  color: #555555;
}

.date-picker-wrapper .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2.0rem;
}

.date-picker-wrapper .title .arrow-control {
  border: none;
  border-radius: 50px;
  background-color: transparent;
  width: 3.6rem;
  height: 3.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.date-picker-wrapper .title .arrow-control:hover {
  background-color: #1AC4A3;
  color: white;
  cursor: pointer;
}

.date-picker-wrapper .title .year-month:hover,
.date-picker-wrapper .title .year:hover {
  color: #cccccc;
  cursor: pointer;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.date-picker-wrapper .week .day {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 14.28%;
  font-weight: bold;
}

.date-picker-wrapper .week .day:first-child {
  color: #F13636;
}

.date-picker-wrapper .week .day:last-child {
  color: blue;
}

.date-picker-wrapper .list,
.date-picker-wrapper .week {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin-bottom: 0.8rem;
}

.date-picker-wrapper .list .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 14.28%;
  aspect-ratio: 1 / 1;
  height: auto;
  margin-top: 0.8rem;
  /* padding: 7.14%; */
  border: none;
  border-radius: 50px;
  background-color: transparent;
}

.date-picker-wrapper .list .date:hover,
.date-picker-wrapper .list .date:focus,
.date-picker-wrapper .list .mon:hover,
.date-picker-wrapper .list .mon:focus {
  background-color: #1AC4A3;
  color: white;
  cursor: pointer;
}

.date-picker-wrapper .active {
  background-color: #1AC4A3 !important;
  color: white;
}

.date-picker-wrapper .list .fadeout {
  color: #eeeeee;
}

.date-picker-wrapper .list .today {
  color: #1AC4A3;
}

.date-picker-wrapper .list .today.active {
  color: white;
}

.date-picker-wrapper .list .mon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 25%;
  height: 50px;
  margin-top: 1em;
  /* padding: 7.14%; */
  border: none;
  border-radius: 50px;
  background-color: transparent;
}

.date-picker-wrapper #yearlist .mon:first-child,
.date-picker-wrapper #yearlist .mon:last-child {
  color: #9d9d9d;
}

.date-picker-wrapper .d-none {
  display: none;
}

.modal-dialog {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: visibility 0s linear 0.3s, opacity 0.3s 0s, -webkit-transform 0.3s;
  transition: visibility 0s linear 0.3s, opacity 0.3s 0s, -webkit-transform 0.3s;
  transition: visibility 0s linear 0.3s, opacity 0.3s 0s, transform 0.3s;
  transition: visibility 0s linear 0.3s, opacity 0.3s 0s, transform 0.3s, -webkit-transform 0.3s;
  z-index: 1000;
}

.modal-dialog .background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 15, 15, 0.79);
  opacity: 0.5;
}

.modal-dialog .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: white;
  padding: 4.0rem;
  width: 60rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 0.4rem;
  z-index: 100;
}

.modal-dialog .close-button {
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
  width: 2.4rem;
  height: 2.4rem;
  line-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  cursor: pointer;
  border-radius: 0.25rem;
  color: #1AC4A3;
  font-size: 2.0rem;
}

.modal-dialog .close-button:hover {
  opacity: 0.7;
}

.modal-dialog .head {
  text-align: center;
  margin-bottom: 5.6rem;
}

.modal-dialog .desc {
  margin-bottom: 3.0rem;
  line-height: 3.2rem;
  text-align: center;
}

.modal-dialog .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto !important;
}

.modal-dialog .btns .rect-btn {
  width: 14rem;
  height: 4.8rem;
}

.modal-dialog .btns .btn-cancel {
  border: 2px solid #1AC4A3;
  color: #1AC4A3;
}

.modal-dialog .btns .btn-complete-ok {
  border: 2px solid #1AC4A3;
  background: #1AC4A3;
  color: #FFF;
}

.modal-dialog .btns .btn-delete-ok {
  border: 2px solid #F13636;
  background: #F13636;
  color: #FFF;
}

.modal-dialog.show-modal {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: visibility 0s linear 0s, opacity 0.25s 0s, -webkit-transform 0.25s;
  transition: visibility 0s linear 0s, opacity 0.25s 0s, -webkit-transform 0.25s;
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s, -webkit-transform 0.25s;
}

.input-error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.8rem;
  width: 100%;
}

.error-msg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.6rem;
  color: #F13636;
  font-family: inherit;
  font-size: 1.6rem;
}

@media only screen and (max-width: 768px) {
  .error-msg {
    font-size: 1.5rem;
  }
}

.complete-delete {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
  text-align: right;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 auto;
}

.complete-delete .btn-func {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0.4rem;
     -moz-column-gap: 0.4rem;
          column-gap: 0.4rem;
  background: unset;
  padding: 0;
  width: 10.2rem;
  height: 4.8rem;
  border-radius: 4px;
}

.complete-delete .btn-func.btn-terminate {
  color: #1AC4A3;
  border: 2px solid #1AC4A3;
}

.complete-delete .btn-func.btn-terminate.disabled {
  display: none;
  color: #b6b6b6;
}

.complete-delete .btn-func.btn-delete {
  color: #F13636;
  border: 2px solid #F13636;
}

.btn-delete {
  color: #F13636;
}

.btn-edit {
  color: #1AC4A3;
}

.password-wrapper {
  position: relative;
}

.password-wrapper .show-pass {
  position: absolute;
  top: 50%;
  right: 1.6rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.password-wrapper .show-pass:hover {
  cursor: pointer;
}

.password-wrapper .show-pass .show {
  display: block;
}

.password-wrapper .show-pass .hide {
  display: none;
}

.password-wrapper.showing .show {
  display: none;
}

.password-wrapper.showing .hide {
  display: block;
}

.input-update {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.2rem;
     -moz-column-gap: 1.2rem;
          column-gap: 1.2rem;
}

.form-section {
  padding-top: 5.6rem;
}

.form-section form ul {
  margin: 0 auto;
  max-width: 56rem;
}

.form-section form .bottom-desc {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4.0rem auto 0 auto;
  text-align: left;
  line-height: 2.8rem;
}

.part-wrapper,
.form-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 3.2rem;
}

.part-wrapper .vertical-wrapper,
.form-wrapper .vertical-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.6rem;
}

.part-wrapper .horizontal-wrapper,
.form-wrapper .horizontal-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1.2rem;
     -moz-column-gap: 1.2rem;
          column-gap: 1.2rem;
}

.part-wrapper .input-privacy,
.form-wrapper .input-privacy {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1rem auto 0 auto;
}

.part-wrapper .input-privacy input,
.form-wrapper .input-privacy input {
  margin-right: 0.8rem !important;
}

.part-wrapper .input-privacy a,
.form-wrapper .input-privacy a {
  text-decoration: underline;
}

.part-wrapper .input-privacy a:hover,
.form-wrapper .input-privacy a:hover {
  opacity: 0.7;
}

.part-wrapper .input-privacy label,
.form-wrapper .input-privacy label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.part-wrapper .checkbox-item,
.form-wrapper .checkbox-item {
  -webkit-row-gap: 2.4rem;
  -moz-row-gap: 2.4rem;
  row-gap: 2.4rem;
}

.part-wrapper textarea,
.form-wrapper textarea {
  line-height: 2.4rem;
}

.part-wrapper .btn,
.form-wrapper .btn {
  padding: 2.3rem 6.4rem;
  height: 6.4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.part-wrapper .btn-black::before,
.form-wrapper .btn-black::before {
  background: #2175D6;
}

.part-wrapper .btn-black:hover span,
.form-wrapper .btn-black:hover span {
  color: #FFF;
}

.part-wrapper .btns-wrapper,
.form-wrapper .btns-wrapper {
  margin: 4.8rem auto 0 auto;
}

.part-wrapper.main-confirm input,
.part-wrapper.main-confirm textarea,
.form-wrapper.main-confirm input,
.form-wrapper.main-confirm textarea {
  padding: 0;
  border: unset;
  font-weight: 400;
}

.part-wrapper.main-confirm .name-wrapper .horizontal-wrapper,
.form-wrapper.main-confirm .name-wrapper .horizontal-wrapper {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.part-wrapper.main-confirm .name-wrapper .horizontal-wrapper input,
.form-wrapper.main-confirm .name-wrapper .horizontal-wrapper input {
  width: 3.4rem;
}

.part-wrapper .required,
.form-wrapper .required {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.8rem;
     -moz-column-gap: 0.8rem;
          column-gap: 0.8rem;
}

.part-wrapper .required::after,
.form-wrapper .required::after {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  content: '必須';
  color: #F00;
  line-height: 100%;
}

input[type=checkbox] {
  position: relative;
  border-radius: 4px;
  border: 1.5px solid #000;
  background: none;
  cursor: pointer;
  line-height: 0;
  outline: 0;
  padding: 0 !important;
  vertical-align: text-top;
  height: 2rem !important;
  width: 2rem !important;
  -webkit-appearance: none;
  opacity: .5;
  margin: 0 0.8rem 0 0;
  aspect-ratio: 1 / 1;
}

input[type=checkbox]:hover {
  opacity: 1;
}

input[type=checkbox]:checked {
  background-color: #1AC4A3;
  border: 1px solid #1AC4A3;
  opacity: 1;
}

input[type=checkbox]:checked:before {
  content: '';
  position: absolute;
  right: calc(50% + 0rem);
  top: 50%;
  width: 0.6rem;
  height: 1.3rem;
  border: solid #FFF;
  border-width: 0 1px 1px 0;
  margin: -1px -1px 0 -1px;
  -webkit-transform: rotate(45deg) translate(-50%, -50%);
          transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
}

.guest-page {
  position: relative;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 5.6rem;
  background: #1AC4A3;
}

.guest-page.forgot-password .main-form {
  max-width: 76rem;
  padding: 4.8rem 5.6rem;
}

.guest-page.forgot-password .main-form .form-wrapper .rect-btn {
  max-width: 30.6rem;
}

.guest-page .header-logo {
  width: 29rem;
  height: 7.1rem;
  position: absolute;
  top: 3.1rem;
  left: 8.0rem;
}

.guest-page .header-logo img {
  width: 100%;
  height: 100%;
  display: block;
}

.guest-page .company-name {
  color: #FFF;
}

.guest-page .main-form {
  width: 100%;
  max-width: 46rem;
  border-radius: 6px;
  background: #FFF;
  -webkit-box-shadow: 2px 2px 6px #48bab3;
          box-shadow: 2px 2px 6px #48bab3;
  padding: 4.8rem 7.6rem;
}

.guest-page .main-form .title {
  margin-bottom: 3.2rem;
}

.guest-page .main-form .description {
  line-height: 2.4rem;
  margin-bottom: 3.2rem;
}

.guest-page .main-form .form-wrapper {
  row-gap: 2.0rem;
}

.guest-page .main-form .form-wrapper .remember-me {
  margin: -0.4rem auto 0.4rem auto;
}

.guest-page .main-form .form-wrapper .remember-me label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0.2rem;
     -moz-column-gap: 0.2rem;
          column-gap: 0.2rem;
}

.guest-page .main-form .form-wrapper .rect-btn {
  width: 100%;
  height: 4.7rem;
  background: #FF9B04;
  color: #FFF;
}

.guest-page .main-form .form-wrapper .href-btn {
  color: #1AC4A3;
  text-decoration: underline;
  margin: 0 auto;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

select {
  padding: 0.4rem 1.6rem !important;
}

.update_label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: auto 0 auto 1.2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.update_label:hover {
  cursor: pointer;
  opacity: 0.8;
}

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