@charset "utf-8";

/* =============================================================

　　個別設定

============================================================= */


/* 　index
---------------------------------------------*/
.login {
  position: relative;
  height: 100vh;
}

.login .login__form {
  width: 280px;
  margin: 10% auto;
}

.login .login__item {
  margin-bottom: 40px;
}

.login .login__text {
  font-size: 1.8rem;
}

.login .login__input input {
  width: 100%;
  padding: 10px;
  border: 2px solid #333;
  font-size: 1.8rem;
}

.login .login__btn * {
  width: 100%;
  margin-top: 20px;
  padding: 15px 10px;
  background: #333;
  color: #fff;
  font-size: 2.0rem;
  cursor: pointer;
  text-align: center;
}

.login .login__btn *:hover {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 0.7;
}

.login footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

@media screen and (max-width: 768px){

}


/* 　input
---------------------------------------------*/
.regist .content__inner {
  position: relative;
}

.registForm {
  margin: 60px auto;
}

.registForm__title {
  font-weight: bold;
  font-size: 2.4rem;
}

.registForm__block {
  margin: 20px auto 0;
}

.registForm__item {
  padding: 10px;
  background: #4d4d4d;
  color: #fff;
}

.registForm__input {
  padding: 20px 0;
}

.registForm__input input {
  width: 100%;
  padding: 10px;
  border: 2px solid #ccc;
  font-size: 1.6rem;
}

.registForm__input textarea {
  padding: 20px;
  font-size: 1.6rem;
}

.registForm__input input[type="text"]:focus {
  border: 2px solid #232323;
}

.registForm__input.-date input {
  width: 20%;
}

.registForm__input.-number input {
  width: 20%;
}

.registForm__input input[type="checkbox"]{
  width: auto;
  text-align: left;
  padding: 10px;
  border: 2px solid #ccc;
  font-size: 1.6rem;
}

.registForm__select {
  position: relative;
  width: 40%;
  text-align: center;
}

.registForm__select select {
  padding-left: 20px;
}

.sl-option {
  position: relative;
  font-family: inherit;
  background-color: transparent;
  width: 100%;
  padding: 10px 10px 10px 0;
  font-size: 18px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0,0,0, 0.3);
}
.sl-option:focus {
  outline: none;
  border-bottom: 1px solid rgba(0,0,0, 0);
}
.registForm__select .sl-option {
  appearance: none;
  -webkit-appearance:none
}
.registForm__select select::-ms-expand {
  display: none;
}
.registForm__select:after {
  position: absolute;
  top: 18px;
  right: 10px;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
.sl-option_selectlabel {
  color: rgba(0,0,0, 0.5);
  font-size: 1.8rem;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 10px;
  transition: 0.2s ease all;
}
.sl-option:focus ~ .sl-option_selectlabel, .sl-option:valid ~ .sl-option_selectlabel {
  color: #da3c41;
  top: 0;
  transition: 0.2s ease all;
  font-size: 1.8rem;
}

.sl-option:valid ~ .sl-option_selectlabel {
  top: -20px;
}

.sl-option_selectbar {
  position: relative;
  display: block;
  width: 100%;
}
.sl-option_selectbar:before, .sl-option_selectbar:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #da3c41;
  transition: 0.2s ease all;
}
.sl-option_selectbar:before {
  left: 50%;
}
.sl-option_selectbar:after {
  right: 50%;
}
.sl-option:focus ~ .sl-option_selectbar:before, .sl-option:focus ~ .sl-option_selectbar:after {
  width: 50%;
}
.sl-option_highlight {
  position: absolute;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}

.registForm__btn {
  width: 40%;
  margin: 20px auto 0;
}

.registForm__btn * {
  display: block;
  width: 100%;
  padding: 12px 0;
  background: #333;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.registForm__btn *:hover {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 0.7;
}

.registForm .caution {
  margin: 40px 0;
  text-align: center;
}

.registForm .caution input {
  display: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.registForm .caution input[type="checkbox"]{
  display: none;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 25px;
  padding-right: 10px;
  border: none;
}

.registForm .caution input[type="checkbox"]::before{
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  left: 0;
  top: 50%;
  border: 1px solid;
  border-color:  #585753;
  background-color: #FFF;
}

.registForm .caution input[type="checkbox"]:checked::after{
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 18px;
  height: 9px;
  margin-top: -9px;
  top: 50%;
  left: 3px;
  transform: rotate(-45deg);
  border-bottom: 3px solid;
  border-left: 3px solid;
  border-color:  #585753;
}

@media screen and (max-width: 768px){
  .registForm__title {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 1.8rem;
  }

  .registForm__btn {
    width: 100%;
    margin: 20px auto 0;
  }

  .registForm__input.-date input {
    width: 40%;
  }

  .registForm__select {
    position: relative;
    width: 60%;
    text-align: center;
  }


}


.registForm__btnArea {

}

.registForm__btnArea .btn__back {
  text-align: center;
  font-size: 2.0rem;
}

.registForm__btnArea .modal-trigger {
  margin: 20px auto;
  cursor: pointer;
  width: 200px;
  padding: 10px 0;
  background: #ddd;
  color: #000;
  text-align: center;
}

/* 　在庫管理画面
---------------------------------------------*/
.invent .registForm__input.-invent {
  width: 200px;
}

/* 　削除モーダル
---------------------------------------------*/
.modal-trigger{
    box-sizing: border-box;
     margin: 0;
    padding: 0;
}
.modal-trigger {
    margin: 0 auto;
    padding: 40px;
}
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    background: #fff;
    left: 50%;
    padding: 40px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 30%;
    text-align: center;
}

.modal__content button {
  display: block;
  width: 200px;
  margin: 20px auto;
  padding: 10px;
  border: 0;
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
}

.modal__content button a {
  color: #fff;
}




/* 　list
---------------------------------------------*/
.itemList {
  margin: 20px auto;
}

.add_list {
  position: relative;
  padding: 10px 20px 10px 40px;
  background: #333;
  color: #fff;
}

.add_list:hover {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 0.7;
  color: #fff;
}

.add_list::before {
  position: absolute;
  top: 10px;
  left: 10px;
  content: "<<";
}

.itemList__stock {
  display: table;
  margin: 0 0 20px auto;
}

.itemList__stock dt {
  display: table-cell;
  padding-right: 20px;
}

.itemList__stock dd {
  display: table-cell;
  font-size: 2.4rem;
}

.itemList__table {
  width: 1240px;
  //max-height: 800px;
  margin: 0px auto 0;
  overflow: auto;
  white-space: nowrap;
  font-size: 1.6rem;
  -webkit-overflow-scrolling: touch;
}

.itemList__table table {
  width: 1200px;
  //table-layout: fixed;
}

.itemList__table thead,
.itemList__table tbody {
  //display: block;
  //width: 100%;
}


.itemList__table thead {
  //position: -webkit-sticky;
  //position: sticky;
  //top: 0;
  //z-index: 2;
}


.itemList__table th {
  padding: 10px;
  border: 2px solid #ccc;
  background: #4d4d4d;
  color: #fff;
  text-align: center;
  word-break : break-all;
  white-space:normal;
}

.itemList__table td {
  word-break : break-all;
  white-space:normal;
}

.itemList__table th.edit, .itemList__table td.edit {
  width: 80px;
}

.itemList__table th.id, .itemList__table td.id {
  width: 70px;
}

.itemList__table th.request, .itemList__table td.request {
  width: 120px;
}

.itemList__table th.date, .itemList__table td.date {
  width: 120px;
}

.itemList__table th.company, .itemList__table td.company {
  width: 250px;
}

.itemList__table th.name, .itemList__table td.name {
  width: 180px;
}

.itemList__table th.kind, .itemList__table td.kind {
  width: 80px;
}

.itemList__table th.number, .itemList__table td.number {
  width: 60px;
}

.itemList__table th.consent, .itemList__table td.consent {
  width: 80px;
}

.itemList__table th.mail, .itemList__table td.mail {
  width: 80px;
}


.itemList__table th.status, .itemList__table td.status {
  width: 80px;
}

.itemList__table th.slip, .itemList__table td.slip {
  width: 80px;
}


.itemList__table td {
  padding: 10px;
  border: 2px solid #ccc;
  text-align: center;
}


/* テーブル背景色
-----------------------------*/
.bg01 {
  background: #f29c97;
}

.bg02 {
  background: #f6ad54;
}

.bg03 {
  background: #ffe33b;
}

.bg04 {
  background: #dae248;
}

.bg05 {
  background: #a6d398;
}

.bg06 {
  background: #91c5eb;
}

.bg07 {
  background: #ce9dc6;
}

@media screen and (max-width: 768px){

  .itemList__title {
    font-weight: bold;
    font-size: 1.8rem;
  }

  .itemList__table {
    width: 100%;
    margin: 20px auto 0;
    overflow: auto;
    white-space: nowrap;
    font-size: 1.4rem;
    -webkit-overflow-scrolling: touch;
  }



}


/* 　一ヶ月後アラート
---------------------------------------------*/
.month__alert {
  width: 80%;
  margin: 0 auto 30px;
  padding: 30px;
  border: 2px solid #b55151;
}

.month__alert .title {
  text-align: center;
  color: #b55151;
  font-size: 1.8rem;
}

.month__alert .list {
  display: table;
  width: 100%;
  margin: 20px 0 0;
}

.month__alert dl {
  display: table-row;
}

.month__alert dt {
  display: table-cell;
  width: 100px;
}

.month__alert dd {
  display: table-cell;
  padding-left: 20px;
}

.month__alert dd a:hover {
  text-decoration: underline;
}



/* 　サンクスページ
---------------------------------------------*/
.thanks .thanks__box {
  max-height: 680px;
  margin: 0 auto;
  padding: 120px 0;
  text-align: center;
}

.thanks .thanks__box h1 {
  margin-bottom: 40px;
  font-size: 2.2rem;
}

.thanks .thanks__box p {
  margin-bottom: 10px;
}

.thanks .thanks__box .btn {
  max-width: 280px;
  margin: 80px auto 0;
}

.thanks .thanks__box .btn:hover a {
  color: #fff;
}

@media screen and (max-width: 768px){
  .thanks .thanks__box {
    max-height: 680px;
    margin: 0 auto;
    padding: 60px 0;
    text-align: left;
  }

  .thanks .thanks__box h1 {
    margin-bottom: 40px;
    font-size: 2.2rem;
  }

  .thanks .thanks__box p {
    margin-bottom: 10px;
  }

  .thanks .thanks__box .btn {
    max-width: 100%;
    margin: 40px auto 0;
  }

  .thanks .thanks__box .btn:hover a {
    color: #fff;
  }
}
