@import url(https://fonts.googleapis.com/css?family=Nunito);
@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: 16px;
}

a {
  text-decoration: none;
}

.wrap {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.subtitle {
  text-align: center;
  margin: 15px auto 80px;
  line-height: 2;
}

.hasnew {
  position: relative;
  border: solid 3px #ECA63F;
  -webkit-animation: Blinking 1.5s infinite;
          animation: Blinking 1.5s infinite;
}
.hasnew::after {
  position: absolute;
  top: -30px;
  left: 0;
  content: "更新があります";
  display: block;
  color: #ECA63F;
  font-size: 16px;
}

.hasnewtr {
  background: #ECA63F;
}

@-webkit-keyframes Blinking {
  0% {
    border: solid 3px transparent;
  }
  100% {
    border: solid 3px #ECA63F;
  }
}

@keyframes Blinking {
  0% {
    border: solid 3px transparent;
  }
  100% {
    border: solid 3px #ECA63F;
  }
}
.header {
  width: 100%;
  background: #000;
  padding: 0 10px;
  height: 70px;
}
.header__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
.header__inner img {
  max-width: 250px;
  width: 100%;
}
.header__inner button {
  padding: 10px;
  font-size: 14px;
  background: #ECA63F;
  cursor: pointer;
  margin-right: 15px;
  color: #fff;
  border: none;
  outline: none;
  border-radius: 10px;
  font-weight: bold;
}
.header__logout {
  color: #fff;
  background: #E21E31;
  padding: 10px;
}
.header__logout p {
  font-size: 16px;
}
.header__logout:hover {
  background: #ECA63F;
}
.header__menu {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.login {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: url("/img/login_bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.login__error {
  margin-top: 20px;
  color: #E21E31;
  font-size: 14px;
}
.login__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  border: 4px solid #fff;
  padding: 50px 80px;
  margin-left: 400px;
}
.login__input {
  width: 100%;
}
.login__input-logo {
  text-align: center;
}
.login__input-logo img {
  max-width: 230px;
  width: 100%;
  margin-right: 20px;
}
.login__input-flex {
  margin-top: 10px;
}
.login__input-flex input {
  border: none;
  outline: none;
  font-size: 18px;
  background: #F0F0F0;
  width: 300px;
  padding: 5px;
}
.login__input-flex ::-moz-placeholder {
  color: #ccc;
}
.login__input-flex :-ms-input-placeholder {
  color: #ccc;
}
.login__input-flex ::placeholder {
  color: #ccc;
}
.login__input-flex input[type=password]::-moz-placeholder {
  font-size: 24px;
}
.login__input-flex input[type=password]:-ms-input-placeholder {
  font-size: 24px;
}
.login__input-flex input[type=password]::placeholder {
  font-size: 24px;
}
.login__input-flex > div:nth-child(2) {
  margin-top: 30px;
}
.login__input-flex p {
  color: #fff;
  padding-bottom: 10px;
}
.login__input-btn {
  margin-top: 50px;
  text-align: right;
}
.login__input-btn button {
  max-width: 200px;
  cursor: pointer;
  border: none;
  background: #E21E31;
  color: #fff;
  padding: 10px 20px;
  font-size: 16px;
  letter-spacing: 2px;
}

.maker {
  padding-bottom: 80px;
}
.maker__sec {
  text-align: center;
  margin-bottom: 20px;
  font-size: 18px;
  text-decoration: underline;
}
.maker__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 15px 50px;
}
.maker__item {
  border: 1px solid #C1C1C1;
  border-radius: 10px;
  max-width: 319px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.maker__item.dm {
  border: none;
}
.maker__item:hover {
  border-color: #E21E31;
}
.maker__item > h4 {
  font-size: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #C1C1C1;
  text-align: center;
}
.maker__item-btns {
  padding: 25px;
  display: flex;
  justify-content: center;
}
.maker__item-btns a {
  cursor: pointer;
  width: 48%;
  margin: 0 10px;
  padding: 10px 0;
  background: #F0F0F0;
  border-radius: 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.maker__item-btns a:hover {
  box-shadow: 2px 2px 10px #aaa;
}
.maker__item-btns a:nth-child(1) {
  color: #E21E31;
}
.maker__item-btns a:nth-child(2) {
  color: #ECA63F;
}
.maker__table {
  width: 100%;
  border-collapse: collapse;
}
.maker__table th, .maker__table td {
  text-align: left;
  padding: 10px;
}
.maker__table th:first-child, .maker__table td:first-child {
  width: 20%;
  padding: 10px 10px 10px 40px;
}
.maker__table th:nth-child(2), .maker__table td:nth-child(2) {
  width: 73%;
}
.maker__table th:nth-child(n+3) {
  text-align: center;
}
.maker__table th:last-child, .maker__table td:last-child {
  width: 10%;
  padding: 10px 20px 10px 10px;
}
.maker__table tr:nth-child(odd) {
  background: #F0F0F0;
}
.maker__table tr:first-child {
  background: #000;
  color: #fff;
}
.maker__table td > a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: #C1C1C1;
}
.maker__table td > a:hover {
  background: transparent linear-gradient(270deg, #E21E31 0%, #ECA63F 100%) 0% 0% no-repeat padding-box;
}
.maker__table td > a img {
  width: 24px;
  height: 24px;
}
.maker__table td > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.maker__table td > div p {
  font-size: 12px;
}
.maker__table td > div p.checked {
  color: red;
}
.maker__table td > div p.unchecked {
  color: gray;
}
.maker__create {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.maker__create-inner {
  border: 1px solid #C1C1C1;
  border-radius: 10px;
}
.maker__create-radios {
  position: relative;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #C1C1C1;
  padding: 20px 35px;
}
.maker__create-radios label {
  position: relative;
  cursor: pointer;
  color: #444242;
  font-weight: bold;
  margin-left: 10px;
  height: 25px;
}
.maker__create-radios label::before, .maker__create-radios label::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.maker__create-radios label::before {
  display: block;
  top: -2px;
  left: -30px;
  width: 20px;
  height: 20px;
  border: 1px solid #C1C1C1;
}
.maker__create-radios label::after {
  display: none;
  top: 2px;
  left: -26px;
  width: 14px;
  height: 14px;
  background-color: #E21E31;
}
.maker__create-radios input[type=radio] {
  display: none;
}
.maker__create-radios input[type=radio]:checked + label {
  color: #E21E31;
}
.maker__create-radios input[type=radio]:checked + label::before {
  border-color: #E21E31;
}
.maker__create-radios input[type=radio]:checked + label::after {
  display: block;
}
.maker__create-radios .inner {
  display: flex;
  flex-direction: column;
}
.maker__create-radios .block {
  display: flex;
}
.maker__create-radios .block > div {
  margin: 0 20px;
}
.maker__create-radios .block:nth-child(n+2) {
  margin: 10px 0 0;
}
.maker__create-error {
  position: absolute;
  top: -50px;
  right: 0;
}
.maker__create-error p {
  position: relative;
  background: #E21E31;
  padding: 10px;
  color: #fff;
  font-size: 14px;
}
.maker__create-error p::after {
  position: absolute;
  bottom: -12px;
  left: 57px;
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 8px 0 0;
  border-color: #E21E31 transparent transparent transparent;
}
.maker__create-error.hide {
  display: none;
}
.maker__create-btns {
  display: flex;
  justify-content: center;
  padding: 20px 35px;
}
.maker__create-btns > a {
  width: 100px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: #C1C1C1;
  color: #FFF;
  cursor: pointer;
  margin: 0 10px;
}
.maker__create-btns > a img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.maker__create-btns > a:nth-child(1):hover {
  background: #444242;
}
.maker__create-btns > a:nth-child(2):hover {
  background: transparent linear-gradient(270deg, #E21E31 0%, #ECA63F 100%) 0% 0% no-repeat padding-box;
}

.office {
  margin-top: 90px;
}
.office__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 15px;
}
.office__item {
  border: 1px solid #C1C1C1;
  border-radius: 10px;
  max-width: 319px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 0 40px;
}
.office__item:hover {
  border-color: #E21E31;
}
.office__item.dm {
  border: none;
}
.office__item > h4 {
  font-size: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #C1C1C1;
  text-align: center;
}
.office__item-btns {
  padding: 25px;
  display: flex;
  justify-content: center;
}
.office__item-btns a {
  cursor: pointer;
  width: 70%;
  padding: 10px 0;
  background: #F0F0F0;
  border-radius: 10px;
  text-align: center;
  color: #E21E31;
}
.office__item-btns a:hover {
  box-shadow: 2px 2px 10px #aaa;
}

.profile {
  width: 100%;
}
.profile__list {
  display: flex;
  justify-content: center;
}
.profile__list a {
  background-color: #C1C1C1;
  padding: 40px;
  border-radius: 10px;
  color: #E21E31;
  margin: 0 20px;
  font-size: 20px;
}
.profile__list a:hover {
  background: transparent linear-gradient(270deg, #E21E31 0%, #ECA63F 100%) 0% 0% no-repeat padding-box;
  color: #fff;
}

.records {
  padding-bottom: 100px;
}
.records table {
  border-collapse: collapse;
  width: 100%;
  border: 2px solid #C1C1C1;
}
.records table .active {
  background-color: rgba(226, 30, 49, 0.1);
}
.records table .active > div > p {
  color: #E21E31;
}
.records table .gray {
  background-color: rgba(193, 193, 193, 0.6);
}
.records table .empty {
  background-color: rgba(193, 193, 193, 0.6);
}
.records table .dark {
  background-color: rgba(68, 66, 66, 0.6);
}
.records table .caution {
  margin-top: 10px;
  color: #E21E31;
  font-weight: bold;
  font-size: 10px;
  white-space: nowrap;
}
.records table input.bairitsu {
  width: 40px;
}
.records table input.num {
  width: 60px;
}
.records table input.serial {
  width: 75px;
}
.records table button.henkan {
  border: none;
  outline: none;
  background: #C1C1C1;
  padding: 6px 20px;
  border-radius: 5px;
  margin-right: 6px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}
.records table th, .records table td {
  padding: 10px;
  border-bottom: 1px solid #C1C1C1;
  font-size: 13px;
}
.records table th > div.inline, .records table td > div.inline {
  display: flex;
}
.records table th p, .records table td p {
  font-size: 13px;
  white-space: nowrap;
}
.records table th {
  background: #E21E31;
  color: #fff;
  text-align: left;
  font-weight: normal;
  white-space: nowrap;
}
.records table th > div {
  display: flex;
  align-items: center;
}
.records table th > div > input[type=radio] {
  visibility: hidden;
}
.records table th > div > input[type=radio]:checked ~ label::before {
  background: white;
  border: 2px solid #E21E31;
}
.records table th > div > input[type=radio]:checked ~ label::after {
  border-color: #E21E31;
}
.records table th > div > input[type=radio]:checked ~ label > p {
  display: block;
  color: #E21E31;
  font-weight: bold;
}
.records table th > div > label {
  position: relative;
  cursor: pointer;
}
.records table th > div > label::before {
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  background: #C1C1C1;
  border-radius: 5px;
  box-sizing: border-box;
}
.records table th > div > label::after {
  position: absolute;
  top: 4px;
  left: 9px;
  display: block;
  content: "";
  width: 8px;
  height: 14px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(53deg);
}
.records table th > div > label > p {
  position: absolute;
  top: 4px;
  left: 35px;
  display: none;
  font-size: 13px;
}
.records table td {
  border-right: 1px solid #C1C1C1;
}
.records table label.file {
  padding: 10px 20px;
  background-color: #C1C1C1;
  color: #fff;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
}
.records table input[type=file] {
  display: none;
}
.records__btnwrap {
  margin-top: 20px;
  width: 100%;
  text-align: right;
}
.records__btnwrap button {
  background: #C1C1C1;
  padding: 8px 20px;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 4px 4px 4px #999;
  width: 110px;
}
.records__btnwrap button.loading {
  box-shadow: none;
  transform: translateY(4px);
  background: #888;
}
.records__btnwrap button.loading:hover {
  color: #000;
}
.records__btnwrap button:hover {
  color: #E21E31;
  box-shadow: none;
  transform: translateY(4px);
}
.records__info {
  padding-bottom: 30px;
}
.records__info-inner {
  margin-top: 30px;
}
.records__info-subtitle {
  font-size: 20px;
  padding-left: 10px;
  margin-bottom: 10px;
  color: #E21E31;
}
.records__info-head {
  display: flex;
  justify-content: space-around;
}
.records__info-head label:nth-child(1) {
  width: 79%;
}
.records__info-head label:nth-child(2) {
  width: 19%;
}
.records__info-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.records__info-block label {
  width: 49%;
}
.records__info-block label.memo {
  width: 100%;
}
.records__info-block label.memo textarea {
  width: 100%;
  margin-top: 10px;
}
.records__info-block label.memo p.memo {
  font-weight: normal;
  font-size: 15px;
}
.records__info label {
  background: #F0F0F0;
  padding: 8px;
  border-radius: 5px;
  margin-bottom: 10px;
}
.records__info label p:first-child {
  font-size: 14px;
  font-weight: bold;
}
.records__info label p:first-child span {
  font-weight: normal;
  font-size: 12.5px;
}
.records__info label .inline {
  display: flex;
}
.records__info label .inline input {
  width: 80%;
  margin-left: 10px;
  padding: 0;
}
.records__info input {
  background: #fff;
  width: 100%;
  padding: 5px;
  border-top: none;
  border-right: none;
  border-left: none;
  border: 1px solid #444;
  border-radius: 5px;
  font-size: 14px;
}

@media print {
  .print_off {
    display: none;
  }

  .records p, .records label {
    font-size: 12px;
  }
  .records th, .records td {
    padding: 0px;
    font-size: 12px;
  }
}
.user {
  width: 100%;
  text-align: center;
  margin-top: clamp(40px, 10vw, 80px);
}
.user h2 {
  position: relative;
  display: inline-block;
  font-size: clamp(14px, 3vw, 20px);
  padding-bottom: 25px;
}
.user h2::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 30px);
  width: 60px;
  height: 4px;
  background: #E21E31;
}

.breadcrumb {
  margin-top: 20px;
  display: flex;
}
.breadcrumb > div:not(:last-child) {
  position: relative;
  margin-right: 30px;
}
.breadcrumb > div:not(:last-child)::after {
  position: absolute;
  top: 28%;
  right: -17px;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #E21E31;
  border-right: 2px solid #E21E31;
  transform: rotate(45deg);
}
.breadcrumb > div:not(:last-child) a {
  color: #E21E31;
  text-decoration: underline;
}
.breadcrumb > div:last-child a {
  cursor: default;
}
.breadcrumb a {
  color: #000;
}

.preset {
  width: 100%;
}
.preset__list {
  display: flex;
  justify-content: center;
}
.preset__list a {
  background-color: #C1C1C1;
  padding: 40px;
  border-radius: 10px;
  color: #E21E31;
  margin: 0 20px;
  font-size: 20px;
}
.preset__list a:hover {
  background: transparent linear-gradient(270deg, #E21E31 0%, #ECA63F 100%) 0% 0% no-repeat padding-box;
  color: #fff;
}
.preset__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 15px 50px;
  max-width: 660px;
  width: 100%;
  margin: auto;
}
.preset__item {
  border: 1px solid #C1C1C1;
  border-radius: 10px;
  max-width: 300px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.preset__item:nth-child(even) {
  margin-left: 30px;
}
.preset__item.dm {
  border: none;
}
.preset__item:hover {
  border-color: #E21E31;
}
.preset__item > h4 {
  font-size: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #C1C1C1;
  text-align: center;
}
.preset__item-btns {
  padding: 25px;
  display: flex;
  justify-content: center;
}
.preset__item-btns a {
  cursor: pointer;
  width: 48%;
  margin: 0 10px;
  padding: 10px 0;
  background: #F0F0F0;
  border-radius: 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #E21E31;
}
.preset__item-btns a:hover {
  box-shadow: 2px 2px 10px #aaa;
}
.preset__view button {
  height: 100%;
  cursor: pointer;
  margin: 0 2.5px;
}
.preset__view button:hover {
  filter: brightness(1.2);
}
.preset__view input, .preset__view select {
  border: none;
}
.preset__view .table {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 2px solid #000;
}
.preset__view .tr {
  display: flex;
  width: 100%;
}
.preset__view .tr input, .preset__view .tr select {
  width: 100%;
  height: 100%;
  padding: 7px 5px;
}
.preset__view .tr:not(:last-child) {
  border-bottom: 2px solid #000;
}
.preset__view .th {
  background-color: #aaa;
  width: 100%;
  text-align: center;
}
.preset__view .th:not(:last-child) {
  border-right: 2px solid #000;
}
.preset__view .td {
  position: relative;
  width: 20%;
  display: flex;
  align-items: center;
}
.preset__view .td:hover .child_btn {
  display: flex;
  top: -45px;
  right: -50px;
}
.preset__view .td:hover input {
  background-color: rgba(255, 192, 203, 0.4);
  cursor: pointer;
}
.preset__view .td:not(:last-child) {
  border-right: 2px solid #000;
}
.preset__view .child_wrap {
  width: 80%;
  display: flex;
  flex-direction: column;
}
.preset__view .child_tr {
  position: relative;
  width: 100%;
  display: flex;
}
.preset__view .child_tr:hover .child_btn {
  display: flex;
  top: -40px;
  right: -10px;
}
.preset__view .child_tr:hover input, .preset__view .child_tr:hover select {
  background-color: rgba(255, 192, 203, 0.4);
  cursor: pointer;
}
.preset__view .child_tr:not(:last-child) {
  border-bottom: 1px solid #000;
}
.preset__view .child_td {
  width: 100%;
}
.preset__view .child_td:not(:last-child) {
  border-right: 1px solid #000;
}
.preset__view .child_btn {
  display: none;
  height: 50px;
  position: absolute;
  z-index: 1;
}
.preset__view .order_btns {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 25px;
}
.preset__view .order_btns button {
  width: 25px;
  color: #fff;
  border: 1px solid #fff;
  background-color: #aaa;
  border-radius: 5px;
}
.preset__view button.copy {
  width: 70px;
  white-space: nowrap;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  background-color: #ECA63F;
  font-size: 12px;
}
.preset__view button.add {
  width: 70px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  background-color: pink;
  font-size: 12px;
  padding: 2px 3px;
}
.preset__view button.delete {
  width: 70px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  background-color: red;
  font-size: 12px;
  padding: 2px 3px;
}
.preset__view .foot {
  padding: 30px 0 100px;
  display: flex;
  justify-content: flex-end;
}
.preset__view .foot button {
  color: #fff;
  border-radius: 5px;
  border: 1px solid #fff;
  background-color: #aaa;
  margin: 0 5px;
  padding: 5px 10px;
}

.home {
  width: 100%;
}
