@charset "UTF-8";
/*
Theme Name: reports-service
*/
/*font-face*/
/*
@font-face {
  font-family: "NotoSana";
  src: url("../fonts/NotoSansCJKjp-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "NotoSana";
  src: url("../fonts/NotoSansCJKjp-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: bold;
}

@font-face {
  font-family: "ProductSans-Thin";
  src: url("../fonts/ProductSans-Thin.ttf");
  font-weight: normal;
  font-style: normal;
}
*/
/*sass 変数*/
/*
$font: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
$goshic: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
$noto: "NotoSana", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
$yugo: "游ゴシック", YuGoshic,  "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
$thin: "ProductSans-Thin", "游ゴシック", YuGoshic,  "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
$futura: futura-pt, sans-serif;
$tsukuard: fot-tsukuardgothic-std, sans-serif;
$color: #de755b;
*/
/*sass function*/
/*
@include mq(){}
*/
html {
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
}

ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.inner {
  max-width: 980px;
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 498px) {
  .inner {
    width: 95%;
  }
}

#login {
  background-image: url(../img/bg.jpg);
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
#login section {
  background: rgba(255, 255, 255, 0.8);
  max-width: 450px;
  width: 95%;
  border-radius: 8px;
}
#login section form {
  padding: 1rem;
  display: block;
}
#login section form h1 {
  margin: 0 0 1.5rem;
  text-align: center;
  color: #3e8ad0;
}
#login section form input {
  line-height: 2;
}
#login section form label {
  font-size: 0.9rem;
}
#login section form .grid {
  display: grid;
  grid-template-columns: 5.5em 9.5em 2em;
}
#login section form .grid div:nth-child(4) label, #login section form .grid div:nth-child(5) label {
  margin: 0 1em;
}
#login section form .grid input[name=customer] {
  width: 3em;
}
#login section form .grid input[name=client] {
  width: 8em;
}
#login section form .grid input[name=branch] {
  width: 2em;
}
#login section form li {
  margin-bottom: 1rem;
}
#login section form li.vertical {
  display: flex;
  flex-direction: column;
}
#login section form input[type=submit] {
  border: #fff;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background: linear-gradient(90deg, #3e8ad0, #9bcebb);
}
#login section .btn {
  padding: 1.5rem 0 0.5rem;
  text-align: center;
}
#login section .msg {
  color: #f00;
  font-weight: bold;
  text-align: center;
}

header {
  color: #fff;
  background: linear-gradient(45deg, hsl(209, 63%, 53%), #9ed6c1);
}
header div.inner {
  padding: 0.5rem 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 498px) {
  header div.inner {
    display: block;
  }
}
header div.inner h1 {
  padding: 0.5rem;
  margin: 0;
  font-size: 1.2rem;
}
@media screen and (max-width: 498px) {
  header div.inner h1 {
    text-align: center;
  }
}
header div.inner table {
  border-collapse: collapse;
  margin: auto;
}
header div.inner table th, header div.inner table td {
  border-radius: 10px;
  border: 1px solid #fff;
  padding: 0.25rem;
}
header form {
  text-align: center;
}
header form input[type=submit] {
  color: #111;
  background: #ededed;
  border-radius: 50px;
  border: none;
  padding: 0.2rem 1.5rem;
  font-size: 1rem;
  margin-top: 1rem;
  transition: 0.5s;
}
header form input[type=submit]:hover {
  opacity: 0.7;
  transition: 0.5s;
}

main {
  padding-bottom: 3rem;
  /*min-height: calc(99vh - 103px);*/
}
main article {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  main article {
    flex-flow: column-reverse wrap;
  }
}
main article .userinfo {
  padding: 0.5rem;
  margin: 1rem 0;
}
main article .userinfo .grid {
  font-size: 0.8rem;
  background: linear-gradient(90deg, hsl(209, 61%, 53%), #9bcebb);
  display: grid;
  grid-template-columns: 1fr;
  /*
  div:nth-child(3){
     grid-column-start: 2;
     grid-column-end: 2;
     grid-row-start: 2;
     grid-row-end: 2;
     background: #fff;
     text-align: center;
     padding: 0.25rem;
     margin: 1px;
     margin-left: 0;
  }
  */
}
main article .userinfo .grid div:nth-child(1) {
  /*
  grid-row: 1 / 2;
  grid-column: 1 / 3;
  */
  color: #fff;
  text-align: center;
  padding: 0.25rem;
}
main article .userinfo .grid div:nth-child(2) {
  /*
  grid-column-start: 1;
  grid-column-end: 1;
  grid-row-start: 2;
  grid-row-end: 2;
  */
  padding: 1px;
  background: #fff;
  text-align: center;
  margin: 1px;
  padding: 0.25rem;
}
main #new_btn {
  margin-bottom: 1rem;
  border: 2px solid #fff;
  color: #fff;
  background: hsl(209, 61%, 53%);
  border-radius: 50px;
  padding: 0.2rem 1.5rem;
  font-size: 1rem;
  transition: 0.5s;
  border: none;
}
main #new_btn:hover {
  border: 2px solid hsl(209, 61%, 53%);
}
@media screen and (max-width: 498px) {
  main #client_list {
    overflow-y: hidden;
    overflow-x: scroll;
  }
}
main #client_list table tbody td:last-child {
  text-align: center;
}
main #client_list button {
  color: #fff;
  background: hsl(209, 61%, 53%);
  border-radius: 50px;
  padding: 0.2rem 1.5rem;
  font-size: 1rem;
  transition: 0.5s;
  border: none;
}
main #client_list button:hover {
  color: hsl(209, 61%, 53%);
  background: #fff;
}
main table {
  width: 100%;
  border-collapse: collapse;
}
main table thead {
  color: #fff;
  background: linear-gradient(90deg, rgb(62, 138, 208), rgb(155, 206, 187));
  position: sticky;
  top: -1px;
  z-index: 999;
}
@media screen and (max-width: 498px) {
  main table thead {
    background: #3e8ad0;
  }
}
main table thead th {
  border: 1px solid #fff;
  padding: 0.5rem;
}
main table thead th:first-child {
  border-left: 1px solid hsl(209, 61%, 53%);
}
main table thead th:last-child {
  border-right: 1px solid #9bcebb;
}
main table tbody td {
  border: 1px solid #aaa;
  padding: 0.5rem;
  text-align: center;
}
main table tbody td span {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  color: #f00;
  border: 1px solid #f00;
  border-radius: 50%;
  width: 1.5rem;
  height: auto;
  text-align: center;
  display: inline-block;
  transform: rotate(15deg);
}
main table tbody td span.new {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  color: #f00;
  border: none;
  border-radius: 0;
  width: auto;
  height: auto;
  text-align: center;
  font-weight: bold;
  display: inline-block;
  transform: rotate(0deg);
}
main table tbody td:last-child {
  text-align: left;
}
main table tbody tr:nth-child(odd) {
  background: #ededed;
}
main table tbody tr:hover {
  background: linear-gradient(90deg, rgba(62, 138, 208, 0.4), rgba(155, 206, 187, 0.4));
}
@media screen and (max-width: 498px) {
  main table tbody tr:hover {
    background: #9bcebb;
  }
}
main table tbody tr[data-stoped="1"] {
  background: #777;
}
main .count {
  margin-bottom: 0;
}
main .count span {
  color: hsl(209, 61%, 53%);
  font-weight: bold;
  font-size: 1.2rem;
}
main form input[type=submit] {
  color: #fff;
  background: hsl(209, 61%, 53%);
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 0.2rem 1.5rem;
  font-size: 1rem;
  margin-top: 1rem;
  transition: 0.5s;
}
main form input[type=submit]:hover {
  cursor: pointer;
  opacity: 0.7;
  transition: 0.5s;
  background: #fff;
  border: 2px solid #3e8ad0;
  color: hsl(209, 61%, 53%);
  box-sizing: border-box;
}
main form input[disabled] {
  background: linear-gradient(-90deg, hsl(211, 33%, 19%), #1b3028);
  color: #999;
}
main form input[disabled]:hover {
  background: linear-gradient(-90deg, hsl(211, 33%, 19%), #1b3028);
  opacity: 1;
  cursor: default;
}
main form input[name=serach] {
  margin-top: 1.5rem;
  margin-right: 1.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 498px) {
  main form input[name=serach] {
    margin: 5vw;
  }
}
main .btns {
  text-align: left;
}
@media screen and (max-width: 498px) {
  main .btns {
    text-align: center;
  }
}
main .check_btns {
  padding-bottom: 0.5rem;
}
main .check_btns button {
  color: #fff;
  background: hsl(209, 61%, 53%);
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 0.2rem 1.5rem;
  font-size: 1rem;
  margin-top: 1rem;
  transition: 0.5s;
}
main .check_btns button:hover {
  cursor: pointer;
  opacity: 0.7;
  transition: 0.5s;
  background: #fff;
  border: 2px solid hsl(209, 61%, 53%);
  color: hsl(209, 61%, 53%);
  box-sizing: border-box;
}
@media screen and (max-width: 498px) {
  main form.reportlist .scroll {
    overflow-x: scroll;
    overflow-y: hidden;
  }
  main form.reportlist .scroll table {
    width: -moz-max-content;
    width: max-content;
  }
}
main form.reportlist .btns {
  width: 100%;
  text-align: right;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 498px) {
  main form.reportlist .btns {
    text-align: center;
  }
}
main .condition {
  border-radius: 8px;
  padding: 0.5rem;
  margin: 1rem 0;
}
main .condition h2 {
  margin: 0;
  font-size: 1rem;
}
main .condition ul {
  display: flex;
}
@media screen and (max-width: 768px) {
  main .condition ul {
    flex-wrap: wrap;
  }
}
main .condition ul li {
  background: linear-gradient(90deg, hsl(209, 64%, 67%), #b6e6d4);
  margin-right: 1rem;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: stretch;
  padding: 2px;
}
@media screen and (max-width: 768px) {
  main .condition ul li {
    margin-bottom: 0.5rem;
  }
}
main .condition ul li label {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 0 0.5rem;
  border-radius: 5px;
}
main .condition ul li input, main .condition ul li select {
  border: none;
}
main .condition ul li input[name=keyword] {
  width: 210px;
}
main .menu nav ul {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
@media screen and (max-width: 498px) {
  main .menu nav ul {
    flex-wrap: wrap;
  }
}
main .menu nav ul li {
  display: flex;
}
main .menu nav ul li a {
  color: #fff;
  text-decoration: none;
}
main .menu nav ul li a span {
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 10px;
  font-weight: bold;
  margin: 0.5rem;
  transition: 0.5s;
  border: 2px solid #fff;
  background: #3e8ad0;
  display: inline-flex;
  width: 8rem;
  padding: 1rem;
}
main .menu nav ul li a span:hover {
  color: #3e8ad0;
  cursor: pointer;
  border: 2px solid #3e8ad0;
  transition: 0.5s;
  background: #fff;
}
main .return a {
  color: #fff;
  text-decoration: none;
}
main .return a span {
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 10px;
  font-weight: bold;
  margin: 0.5rem;
  transition: 0.5s;
  border: 2px solid #fff;
  background: #3e8ad0;
  display: inline-flex;
  width: auto;
  padding: 1rem;
}
main .return a span:hover {
  color: #3e8ad0;
  cursor: pointer;
  border: 2px solid #3e8ad0;
  transition: 0.5s;
  background: #fff;
}

#customer .inner h2 {
  margin-top: 2rem;
  color: #3e8ad0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  width: 60%;
}
#customer .inner h2 span {
  margin-left: 2rem;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, hsl(209, 64%, 67%), #b6e6d4);
}
#customer .inner .reports table {
  width: auto;
  min-width: 20em;
}
#customer .inner .reports table caption {
  background: linear-gradient(90deg, #3e8ad0, #b6e6d4);
  color: #fff;
  padding: 0.5rem;
}
#customer .inner .reports table th {
  border: 1px solid #aaa;
}

.tabs {
  margin-top: 3rem;
  padding-bottom: 5rem;
}
.tabs nav ul {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}
.tabs nav ul li {
  background: #d4d4d4;
  border-left: 2px solid #3e8ad0;
  border-top: 2px solid #3e8ad0;
  border-right: 2px solid #3e8ad0;
  border-radius: 8px 8px 0 0;
  color: #3e8ad0;
  font-size: 1.1rem;
  padding: 1rem 2rem;
}
.tabs nav ul li.active {
  background: #3e8ad0;
  color: #fff;
  font-weight: bold;
  transition: 0.5s;
}
.tabs nav ul li:hover {
  cursor: pointer;
}
.tabs .wrap .invoice {
  display: block;
  width: 100%;
  opacity: 0;
  z-index: -1;
  transition: 0.5s opacity;
  height: 0;
}
.tabs .wrap .slip {
  display: block;
  width: 100%;
  opacity: 0;
  z-index: -1;
  transition: 0.5s opacity;
  height: 0;
}
.tabs .wrap table.active {
  display: table;
  opacity: 1;
  z-index: 9;
  transform: scaleY(1);
  transition: 0.5s opacity;
  height: auto;
}
@media screen and (max-width: 768px) {
  .tabs .wrap table.active {
    width: 768px;
  }
}

#upload h2 {
  color: #3e8ad0;
}
#upload form[name=upload] div {
  background: linear-gradient(90deg, hsl(209, 64%, 67%), #b6e6d4);
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  width: 100%;
  padding: 3px;
}
#upload form[name=upload] div button {
  color: #fff;
  background: hsl(209, 61%, 53%);
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 0.2rem 1.5rem;
  font-size: 1rem;
  transition: 0.5s;
  width: 12%;
  min-width: 8em;
  white-space: nowrap;
  text-align: center;
}
#upload form[name=upload] div button:hover {
  cursor: pointer;
  opacity: 0.7;
  transition: 0.5s;
  background: #fff;
  border: 2px solid transparent;
  color: hsl(209, 61%, 53%);
  box-sizing: border-box;
}
#upload form[name=upload] div label {
  width: calc(88% - 0.5rem);
  margin-left: 0.5rem;
  background: #ededed;
  line-height: 2rem;
  padding: 0.5rem;
}
#upload form[name=upload] input[type=file] {
  display: none;
}

footer p {
  color: #fff;
  margin: 0;
  text-align: center;
  background: linear-gradient(45deg, hsl(209, 63%, 53%), #9ed6c1);
}

#modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  z-index: -1;
  overflow: hidden;
  opacity: 0;
  transition: 0.5s opacity;
}
#modal section {
  max-width: 90%;
  background: #fff;
  height: auto;
  padding: 2rem;
  border-radius: 25px;
  position: relative;
}
#modal section #close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 15px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
#modal section #close span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #3e8ad0;
}
#modal section #close span:first-child {
  transform: rotate(45deg);
}
#modal section #close span:last-child {
  transform: rotate(-45deg);
}
#modal section #close:hover {
  cursor: pointer;
}
#modal section h2 {
  color: #3e8ad0;
  text-align: center;
  font-size: 1.25rem;
}
#modal section ul li {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
#modal section ul li > div {
  display: inline-flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  background: #3e8ad0;
  width: 100%;
  padding: 2px;
}
#modal section ul li > div label {
  background: #3e8ad0;
  color: #fff;
  width: 6em;
  text-align: center;
}
#modal section ul li > div p {
  margin: 0;
  background: #a1d8f9;
  padding: 0.5rem;
  width: calc(100% - 7em);
}
#modal section ul li > div input {
  width: calc(100% - 7em);
  border: none;
  padding: 0.5rem 0;
}
#modal section ul li > div input:disabled {
  color: #fff;
}
#modal section ul li:first-child > div {
  justify-content: space-between;
  width: auto;
}
#modal section ul li:first-child > div:last-child {
  width: auto;
}
#modal section ul li:first-child > div:last-child label {
  width: 3em;
}
#modal section ul li:first-child > div:last-child p {
  width: 1.5em;
}
#modal section ul li:first-child > div:last-child input {
  width: 2.5em;
}
#modal section h3 {
  font-size: 1rem;
  color: #3e8ad0;
  text-align: center;
}
#modal section ul.email_edit li > div {
  justify-content: flex-start;
}
#modal section ul.email_edit li > div:last-child {
  width: 100%;
}
#modal section ul.email_edit li > div:last-child label {
  width: 6em;
}
#modal section ul.email_edit li > div:last-child input {
  width: calc(100% - 8em);
  line-height: 1;
  padding: 0.5rem;
  border: none;
}
#modal section ul.email_edit li.toggle div {
  background: #fff;
  padding: 0;
}
#modal section ul.email_edit li.toggle div label {
  padding: 0.3rem 0;
  width: 6em;
}
#modal section ul.email_edit li.toggle div input {
  display: none;
}
#modal section ul.email_edit li.toggle div .toggle_btn {
  width: 46px;
  height: 23px;
  background: #aaa;
  margin-left: 0.5rem;
  border-radius: 28px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  padding: 2px;
  transition: 0.5s;
}
#modal section ul.email_edit li.toggle div .toggle_btn > div {
  background: #777;
  width: 50%;
  height: 100%;
  border-radius: 50%;
  transition: 0.5s;
  transform: translateX(100%);
}
#modal section ul.email_edit li.toggle div .toggle_btn:hover {
  cursor: pointer;
}
#modal section ul.email_edit li.toggle div span {
  color: #aaa;
  font-size: 0.9rem;
  margin-left: 0.5rem;
}
#modal section ul.email_edit li.toggle div input:checked ~ .toggle_btn {
  background-color: #a7cbee;
}
#modal section ul.email_edit li.toggle div input:checked ~ .toggle_btn > div {
  background-color: #3e8ad0;
  transform: translateX(0%);
}
#modal section ul.email_edit li.toggle div input:checked ~ span {
  color: #3e8ad0;
}
#modal section #codecheck {
  color: #f00;
  font-weight: bold;
}
#modal section #passBtn {
  display: block;
  margin: 1rem auto;
  width: 180px;
}
#modal section #passBtn:hover {
  cursor: pointer;
  color: #31a374;
}
#modal section ul.passwords {
  height: 0px;
  overflow: hidden;
  transition: 0.5s;
}
#modal section ul.passwords li > div {
  justify-content: flex-start;
}
#modal section ul.passwords li > div:last-child {
  width: 100%;
}
#modal section ul.passwords li > div:last-child label {
  width: 6em;
}
#modal section ul.passwords li > div:last-child input {
  width: calc(100% - 8em);
  line-height: 1;
  padding: 0.5rem;
  border: none;
}
#modal section ul.passwords.open {
  height: 82px;
  transition: 0.5s;
}
#modal section .btn {
  text-align: center;
}
#modal section .btn button {
  color: #fff;
  background: hsl(209, 61%, 53%);
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 0.2rem 1.5rem;
  font-size: 1rem;
  margin-top: 1rem;
  transition: 0.5s;
}
#modal section .btn button:hover {
  cursor: pointer;
  opacity: 0.7;
  transition: 0.5s;
  background: #fff;
  border: 2px solid hsl(209, 61%, 53%);
  color: hsl(209, 61%, 53%);
  box-sizing: border-box;
}
#modal section .btn button[disabled=true] {
  background: linear-gradient(-90deg, hsl(211, 33%, 19%), #1b3028);
  color: #999;
}
#modal section .btn button[disabled=true] {
  background: linear-gradient(-90deg, hsl(211, 33%, 19%), #1b3028);
  opacity: 1;
  cursor: default;
}
#modal section #mail_varidate {
  background: #fff;
  display: inline;
  color: #f00;
}

#modal.active {
  z-index: 1000;
  width: 100%;
  height: 100vh;
  opacity: 1;
  transition: 0.5s opacity;
}

#admin a.button {
  color: #fff;
  background: hsl(209, 61%, 53%);
  border-radius: 50px;
  padding: 0.2rem 1.5rem;
  font-size: 1rem;
  transition: 0.5s;
  border: none;
  border: 2px solid #fff;
  margin-top: 2rem;
}
#admin a.button:hover {
  cursor: pointer;
  color: hsl(209, 61%, 53%);
  background: #fff;
  border: 2px solid hsl(209, 61%, 53%);
}
#admin .inner > a[href="/admin/"] {
  display: inline-block;
  margin: 1rem 0 3rem;
  padding: 0.5rem 2rem;
  color: #fff;
  background: hsl(209, 61%, 53%);
  text-decoration: none;
  transition: 0.5s;
  border: 1px solid #fff;
}
#admin .inner > a[href="/admin/"]:visited {
  color: #fff;
  text-decoration: none;
}
#admin .inner > a[href="/admin/"]:hover {
  color: hsl(209, 61%, 53%);
  background: #fff;
  border: 1px solid hsl(209, 61%, 53%);
  transition: 0.5s;
}
#admin .menu nav ul li a span {
  width: auto;
}
#admin #client_list {
  margin: 3rem 0;
  flex-direction: column;
}

#invoice li {
  display: flex;
  margin-bottom: 0.5rem;
}
#invoice li div {
  display: flex;
}
#invoice li label {
  width: 5rem;
  text-align: center;
  background: hsl(209, 61%, 53%);
  color: #fff;
  padding: 0.5rem;
}
#invoice li input, #invoice li select {
  border: 2px solid #3e8ad0;
}
#invoice li span {
  display: flex;
  align-items: center;
}

#customer #entry {
  margin-top: 3rem;
}
#customer #entry form ul li {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 0.5rem;
}
#customer #entry form ul li label {
  min-width: 12em;
  background: #3e8ad0;
  color: #fff;
  text-align: center;
  padding: 0.25rem;
}
#customer #entry form ul li input[type=text] {
  width: 20em;
  text-indent: 0.5rem;
  border: 2px solid #3e8ad0;
}
#customer #entry form ul li:first-child {
  min-width: 4em;
  width: 4em;
}
#customer #entry form ul li:first-child input[type=text] {
  min-width: 4em;
  width: 4em;
  text-indent: 0.5rem;
}
#customer #entry form ul .btns {
  justify-content: space-around;
  margin-top: 3rem;
}
#customer #entry form ul .btns input[value=削除] {
  background: #d08a3e;
}
#customer #entry form ul .btns input[value=削除]:hover {
  border: 2px solid #d08a3e;
  background: #fff;
  color: #d08a3e;
}
#customer .serach {
  padding-bottom: 2rem;
}
#customer .serach form ul li {
  display: inline-flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 0.5rem;
}
#customer .serach form ul li label {
  width: auto;
  background: #3e8ad0;
  color: #fff;
  text-align: center;
  padding: 0.25rem;
}
#customer .serach form ul li input[type=text] {
  width: 20em;
  text-indent: 0.5rem;
  border: 2px solid #3e8ad0;
}
#customer .serach form ul li:first-child {
  min-width: 8em;
}
#customer .serach form ul li:first-child input[type=text] {
  min-width: 8em;
  width: 8em;
  text-indent: 0.5rem;
}
#customer .serach form ul .btns {
  justify-content: space-around;
  margin-top: 3rem;
}
#customer .serach form ul .btns input[value=削除] {
  background: #d08a3e;
}
#customer .serach form ul .btns input[value=削除]:hover {
  border: 2px solid #d08a3e;
  background: #fff;
  color: #d08a3e;
}

#preview_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  z-index: -1;
  overflow: hidden;
  opacity: 0;
  transition: 0.5s opacity;
  width: 100vw;
  height: 100vh;
}
#preview_modal #preview {
  width: 90%;
  height: 90%;
  margin: auto;
}
#preview_modal #close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 25px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
#preview_modal #close span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #3e8ad0;
}
#preview_modal #close span:first-child {
  transform: rotate(45deg);
}
#preview_modal #close span:last-child {
  transform: rotate(-45deg);
}
#preview_modal #close:hover {
  cursor: pointer;
}/*# sourceMappingURL=style.css.map */