@charset "UTF-8";
/******************************************************************
  Main Stylesheet
******************************************************************/
/*********************
MODULES
*********************/
/******************************************************************
FONTS
******************************************************************/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");
/******************************************************************
FORMS
******************************************************************/
/* fields */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Quicksand:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans+JP:wght@100..900&family=Quicksand:wght@300..700&family=Teko:wght@300..700&display=swap");
.fields.readonly fieldset {
  background-color: white;
}
.fields.readonly fieldset fieldset {
  margin-top: 2rem;
  padding: 0.5rem 0;
  border: 1px dashed #bbb;
}
.fields.readonly fieldset fieldset legend {
  margin-left: 2rem;
}
.fields.readonly .value {
  padding: 6px 5px;
  transition: all 0.3s ease;
  border-radius: 0;
  font-size: 0.9rem;
  margin-right: 5px;
  border-radius: 5px;
  box-sizing: border-box;
}

/* fieldset */
fieldset, .fieldset {
  background-color: #f4f4f4;
  border-radius: 10px;
  padding: 2rem;
  border: 0;
  margin-bottom: 2rem;
}
fieldset legend, .fieldset legend {
  background-color: #57c5e7;
  padding: 0.5rem 1rem;
  color: white;
  border-radius: 4px;
  line-height: 100%;
}
fieldset .field, .fieldset .field {
  margin: 0.5rem 0;
}

/* title */
.field-title {
  box-sizing: border-box;
  margin-bottom: 1rem;
}
.field-title h2 {
  font-weight: 400;
  font-size: 1.2rem;
  margin: 0;
  padding: 0.5rem 0;
  line-height: 100%;
  border-bottom: 1px solid #ddd;
}

/* common style */
input[type=text],
input[type=checkbox],
input[type=radio],
input[type=search],
input[type=tel],
input[type=url],
input[type=email],
input[type=password],
input[type=date],
input[type=datetime],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime-local],
input[type=number],
input[type=range],
input[type=color],
input[type=checkbox],
input[type=radio],
input[type=file],
input[type=submit],
input[type=button],
textarea {
  border: 1px solid #f0ece8;
  background-color: #f0ece8;
  padding: 6px 5px;
  transition: all 0.3s ease;
  border-radius: 0;
  font-size: 0.9rem;
  margin-right: 5px;
  border-radius: 5px;
  box-sizing: border-box;
}

textarea {
  line-height: 1.5;
}

input:focus,
textarea:focus {
  outline: none;
}

input[type=text],
input[type=button],
input[type=submit],
textarea {
  padding-top: 9px;
  padding-bottom: 9px;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #cfc3b6;
}

select {
  background-color: #cde4f0;
  border-radius: 5px;
  border: 0;
  padding: 9px 9px;
  transition: all 0.3s ease;
  margin-right: 5px;
  margin-bottom: 5px;
}

/* passowrod utility */
.password_utility {
  display: flex;
  align-items: center;
  position: relative;
  gap: 10px;
}
.password_utility .visibility {
  width: 16px;
  height: 16px;
  background-image: url(../images/icon-visibility_off.svg);
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}

/* field */
.field {
  position: relative;
  padding: 0;
  padding-left: 150px;
  margin-bottom: 1rem;
}
.field.nolabel {
  padding-left: 0;
}
.field.required b {
  display: flex;
  align-items: center;
  justify-content: end;
  text-align: right;
  gap: 5px;
}
.field.required b::after {
  content: "●";
  color: red;
  font-size: 0.3rem;
}
.field b {
  display: block;
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: normal;
  text-align: right;
  width: 130px;
  box-sizing: border-box;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.field p {
  font-size: 0.8rem;
}
.field .group {
  padding: 5px;
  display: inline-block;
  transition: all 0.3s ease;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.field.formula {
  background-color: #f0f7ff;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.field.formula .area {
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
}
.field .command-setting-form .empty {
  border: 1px solid red;
}
form label {
  display: inline-block;
  margin-right: 15px;
}
form .inputed {
  background-color: white;
}
form .changed {
  border: 1px solid #6f99be;
  color: #6f99be;
}
form .fieldset.filled.found-empty input {
  border: 1px solid orange;
  color: #6f99be;
}
form .error {
  border: 1px solid tomato !important;
  color: #6f99be;
}
form .must {
  border-left: 5px solid tomato !important;
  color: #6f99be;
}
form .wide {
  width: 100%;
  box-sizing: border-box;
}
form textarea.wide {
  height: 10rem;
}
form textarea.lines-15 {
  height: 15rem;
}
form .long {
  width: 20rem;
}
form .short {
  width: 10rem;
}
form .amount {
  width: 5rem;
  text-align: right;
  margin-right: 5px;
}
form .currency {
  width: 8rem;
  text-align: right;
  margin-right: 5px;
}
form .currency.total {
  width: 8rem;
}
form .submit, form .clear {
  cursor: pointer;
  padding-left: 20px;
  padding-right: 20px;
  color: black;
  border-radius: 5px;
}
form .submit:hover, form .clear:hover {
  background-color: #009eb0;
  border-color: #009eb0;
  color: white;
}
form .row strong input {
  width: 100%;
}
form .small-text {
  font-size: 0.8rem;
}

form.subcontrol {
  font-size: 0.8rem;
  text-align: right;
  color: #999;
  display: flex;
  justify-content: end;
}
form.subcontrol input[type=submit] {
  text-decoration: none;
  font-size: 0.8rem;
  height: auto;
  font-size: 0.8rem;
  line-height: 1;
  padding: 0.5rem;
  background-color: transparent;
  border: 1px solid #888;
  cursor: pointer;
}
form.subcontrol input[type=submit].icon {
  display: flex;
  gap: 5px;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
form.subcontrol input[type=submit].icon::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-size: contain;
}
form.subcontrol input[type=submit].icon:hover {
  color: white;
  background-color: #009eb0;
  border-color: #009eb0;
}
form.subcontrol input[type=submit].icon:hover::before {
  filter: invert(23%) sepia(86%) saturate(6574%) hue-rotate(25deg) brightness(91%) contrast(98%);
}
form.subcontrol input[type=submit].delete::before {
  background-image: url(../images/icon-delete.svg);
}

.autocomplete {
  position: relative;
  font-size: 0.9rem;
}
.autocomplete ul {
  visibility: hidden;
  opacity: 0;
  display: grid;
  width: fit-content;
  grid-template-columns: repeat(2, auto);
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: absolute;
  border: 1px solid #bbb;
  box-sizing: border-box;
  z-index: 100;
  background-color: white;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.autocomplete ul li {
  padding: 5px 40px 5px 10px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  white-space: nowrap;
}
.autocomplete ul li:hover {
  background-color: #cae2f3;
  color: black;
}
.autocomplete.open ul {
  visibility: visible;
  opacity: 1;
}

/* autosubmit form */
.autosubmit .submit, .autosubmit [type=submit] {
  display: none;
}

/* file atache */
.fileatach input[type=file] {
  display: none;
}
.fileatach .preview {
  width: 400px;
  height: 200px;
  background-color: #efefef;
  background-size: cover;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
  cursor: pointer;
  margin-bottom: 0.5rem;
  position: relative;
}
.fileatach .preview:hover {
  border: 1px solid #6f99be !important;
}
.fileatach .preview:after {
  transition: all 0.3s ease;
  opacity: 0.3;
  position: absolute;
  display: block;
  width: 60px;
  height: 60px;
  content: "";
  background-image: url(../images/icon-cross.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.fileatach .preview:hover:after {
  opacity: 1;
}
.fileatach .preview.file-deleting .preview:after {
  background-image: none;
}
.fileatach .preview.file-deleting .preview:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  background-size: 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/icon-trash.png);
}
.fileatach .preview.file-deleting .cancel {
  display: none;
}
.fileatach .preview.file-deleting .cancel:after {
  content: "元に戻す";
  font-size: 1rem;
  background-image: none;
  color: #2d2e46;
  border: 1px solid #2d2e46;
  background-color: white;
  padding: 0.5rem 1rem;
  display: inline-block;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  margin-right: 1rem;
}
.fileatach .preview.file-deleting .cancel:hover:after {
  background-color: #2d2e46;
  color: white;
}
.fileatach .cleared {
  display: none;
}
.fileatach.on .cleared + label:after {
  display: block;
  content: "削除する";
  font-size: 1rem;
  background-image: none;
  color: #999;
  border: 1px solid #999;
  background-color: white;
  padding: 0.5rem 1rem;
  padding-left: 3rem;
  display: inline-block;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  background-image: url(../images/icon-check-off.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 5px center;
}
.fileatach.on .cleared + label:hover:after {
  border: 1px solid #2d2e46;
  color: #2d2e46;
}
.fileatach.on .cleared:checked + label:after {
  content: "このファイルを削除します";
  background-image: url(../images/icon-check.png);
  border: 1px solid #2d2e46;
  color: #2d2e46;
}

/* view mode */
.view .field.none {
  display: none;
}
.view .field .preview {
  width: 400px;
  background-color: #efefef;
  background-size: cover;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
  margin-bottom: 0.5rem;
  position: relative;
}
.view .field .preview img {
  display: block;
  width: 100%;
}

/* component style */
.button-basic {
  display: inline-block;
  background-color: white;
  text-decoration: none;
  border: 1px solid #2d2e46;
  color: #2d2e46;
  font-size: 1rem;
  margin: 0;
  border-radius: 5px;
  padding: 0.25rem 1rem;
  height: auto;
  line-height: 36px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  cursor: pointer;
}
.button-basic:hover {
  background-color: #2d2e46;
  color: white;
}
.button-basic.toggle {
  padding-right: 30px !important;
  background-image: url(../images/arrow-black-down.png);
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: 91% center;
}
.button-basic.toggle:hover {
  background-image: url(../images/arrow-white-down.png);
}

/* remote link */
.remote-link {
  cursor: pointer;
}

.remote-form .submit {
  display: none;
}

@media screen and (max-width: 736px) {
  .field {
    padding: 0 0 5px 0;
    font-size: 10px;
    padding-left: 22%;
  }
  .field b {
    display: block;
    position: static;
    width: 20%;
    text-align: right;
    position: absolute;
    padding: 5px 0;
  }
  .field input,
  .field textarea,
  .field select {
    font-size: 10px;
    box-sizing: border-box;
    -webkit-appearance: none;
  }
  .field input[type=text],
  .field textarea,
  .field select {
    width: 100%;
  }
  .field input[type=radio] {
    -webkit-appearance: radio;
    border: inherit;
  }
  .field select {
    padding: 6px 5px;
    background-image: url(../images/arrow-black-down.png);
    background-repeat: no-repeat;
    background-position: 96% center;
    background-size: 8px;
  }
  .field .group {
    padding: 3px;
  }
  .field .wide {
    width: 100%;
  }
  .field .currency {
    width: 9ex;
  }
  .field .amount {
    width: 6ex;
  }
  .field label {
    margin-right: 10px;
  }
}
.login {
  height: 100vh;
  margin: 0;
}
.login main {
  height: 95%;
  margin: 0;
}
.login main section {
  background-color: transparent;
  margin: 0;
  border-radius: 20px;
  padding: 0;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transition: all 0.3s ease;
}
.login main section h1 {
  font-weight: normal;
  display: block;
  font-family: "Lobster", serif;
  font-size: 5rem;
  letter-spacing: 0.5rem;
  color: white;
  margin: 0;
  padding: 0;
  font-weight: normal;
  text-align: center;
}
.login main section form {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: auto;
  margin: 0;
  padding: 40px;
  gap: 30px;
  align-items: center;
}
.login main section form .field {
  margin: 0;
  padding: 0;
}
.login main section input {
  width: 100%;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #999;
  -webkit-appearance: none;
  background-color: transparent;
  height: 3rem;
  font-size: 1rem;
  box-sizing: border-box;
  padding: 0.25rem;
  text-align: left;
}
.login main section input:focus {
  outline: none;
}
.login main section label {
  margin: 0;
  padding: 0;
  position: relative;
  display: block;
}
.login main section .submit {
  color: white;
  border: 0;
  background-color: #3dbbf0;
  margin: 0 auto;
  height: auto;
  padding: 1rem;
  cursor: pointer;
  width: 200px;
  height: 60px;
  border-radius: 20px;
  font-weight: 600;
  display: block;
  text-align: center;
}

/* toolbar */
.toolbar {
  display: flex;
  gap: 10px;
  align-self: stretch;
  /* panel */
  /* tinyform */
}
.toolbar.align-right {
  justify-content: end;
}
.toolbar.align-center {
  justify-content: center;
  width: 100%;
}
.toolbar.inline {
  display: inline-block;
  vertical-align: middle;
  margin-left: 1rem;
}
.toolbar.auto {
  flex-grow: 1;
  flex-shrink: 1;
}
.toolbar a {
  text-decoration: none;
}
.toolbar .progress_panel {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.toolbar .progress_panel.compact {
  justify-content: center;
}
.toolbar .progress_panel.compact .progress_button {
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
.toolbar .progress_panel.compact .progress_button .upper {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.toolbar .progress_panel.compact .progress_button .button {
  width: auto;
  display: flex;
  flex-direction: row;
  white-space: nowrap;
  padding: 0;
}
.toolbar .progress_panel.compact .progress_button .bar {
  margin: 0;
  width: 100px;
}
.toolbar .progress_panel.compact .progress_button .hint {
  width: 100%;
  flex-shrink: 0;
  flex-grow: 0;
}
.toolbar .progress_panel .progress_button {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 5px;
  padding: 10px;
  box-sizing: border-box;
  gap: 5px;
}
.toolbar .progress_panel .progress_button.working .button {
  color: red;
}
.toolbar .progress_panel .progress_button.working .button img {
  filter: invert(34%) sepia(98%) saturate(7078%) hue-rotate(355deg) brightness(103%) contrast(129%);
}
.toolbar .progress_panel .progress_button.working.style-rotating .button img {
  animation: keep_rotating 3s linear infinite;
}
@keyframes keep_rotating {
  0% {
    transform: rotateZ(0) scale(0.9);
  }
  100% {
    transform: rotateZ(-360deg) scale(0.9);
  }
}
.toolbar .progress_panel .progress_button.working.style-uploading .button img {
  animation: keep_uploading 2s linear infinite;
}
@keyframes keep_uploading {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.toolbar .progress_panel .progress_button .button {
  padding: 7px;
  cursor: pointer;
}
.toolbar .progress_panel .progress_button .button:hover {
  background-color: inherit;
  color: black;
}
.toolbar .progress_panel .progress_button .button:hover img {
  transform: rotate(50deg);
  filter: none;
}
.toolbar .progress_panel .progress_button .bar {
  position: relative;
  background-color: #efefef;
  height: 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin: 0 10px;
  display: flex;
  justify-content: start;
  align-items: stretch;
  overflow: hidden;
}
.toolbar .progress_panel .progress_button .bar .position {
  position: absolute;
  font-size: 0.7rem;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.toolbar .progress_panel .progress_button .bar .gauge {
  width: 0;
  background-color: #888;
}
.toolbar .progress_panel .progress_button .hint {
  font-size: 0.7rem;
  text-align: center;
}
.toolbar .progress_panel .lastupdate {
  font-size: 0.7rem;
  text-align: right;
}
.toolbar .tiny_form {
  display: flex;
  gap: 10px;
  align-items: center;
}
.toolbar .tiny_form .label {
  font-size: 0.8rem;
}
.toolbar .tiny_form select {
  margin: 0;
}
.toolbar .button {
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.toolbar .button img {
  width: 20px;
}
.toolbar .text {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  height: 100%;
  padding: 0 1rem;
  border-radius: 5px;
  background-color: #4c9cc9;
}
.toolbar .text .caption {
  font-size: 0.9rem;
}
.toolbar .text .status {
  font-size: 0.9rem;
  font-weight: 500;
}
.toolbar.mini .button img {
  width: 12px;
}
.toolbar.icons {
  display: flex;
  flex-direction: row;
}
.toolbar.icons a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.7rem;
  width: 60px;
  text-align: center;
  line-height: 1.2;
  background-color: white;
  border-radius: 5px;
  padding: 5px;
  justify-content: space-around;
}
.toolbar.icons a:hover {
  background-color: crimson;
  color: white;
}
.toolbar.icons a:hover img {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

/******************************************************************
NOTICE BAR
******************************************************************/
/* notice */
aside.notice {
  position: fixed;
  padding: 0;
  background-color: white;
  box-sizing: border-box;
  font-size: 1rem;
  left: 0;
  bottom: 3%;
  width: 94%;
  margin: 0 3%;
  color: white;
  border-radius: 10px;
  background-color: #444;
  transition: all 0.3s ease;
  max-height: 200px;
  overflow: auto;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}
aside.notice.active .container {
  margin: 1rem;
}
aside.notice .container > div {
  display: block;
  padding: 0;
  margin-bottom: 0.5rem;
  line-height: 100%;
}
aside.notice div:before {
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  width: 1rem;
  font-size: 0.5rem;
  height: 1rem;
  vertical-align: middle;
  margin-right: 0.5rem;
}
aside.notice div.message ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-block;
}
aside.notice div.message ul li {
  margin-bottom: 0.5rem;
}
aside.notice div.message:before {
  content: "M";
  background-color: teal;
  color: white;
  vertical-align: top;
}
aside.notice div.sql:before {
  content: "Q";
  background-color: yellowgreen;
  color: white;
  vertical-align: top;
}
aside.notice div.php:before {
  content: "P";
  background-color: deeppink;
  color: white;
  vertical-align: top;
}
aside.notice .close {
  position: absolute;
  right: 10px;
  top: 10px;
  background-color: white;
  border-radius: 10px;
  width: 26px;
  height: 26px;
  background-image: url(../images/icon-close.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
aside.notice pre {
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
  white-space: pre-wrap;
}
aside.notice section.error.has {
  display: block;
}

/*********************
DEFAULT SIZE
*********************/
:root {
  --theme-black-color1: #282828;
  --theme-black-color2: #333333;
}

/*----------------------------------------------------------------
1. Common
----------------------------------------------------------------*/
html {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: normal;
  font-size: 95%;
}

body {
  margin: 0;
  padding: 0;
  background-color: #f2eeeb;
}

a {
  color: #333;
  transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
a:hover img {
  border: 0;
  opacity: 0.8;
}
a img {
  border: 0;
  transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

h2 {
  font-size: 1.3rem;
  margin: 0;
}

/* loading animation */
.loading-mark {
  margin: 0;
  text-align: center;
  font-size: 10px;
  opacity: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  z-index: 10000;
}
.loading-mark > div {
  background-color: white;
  height: 100%;
  width: 7px;
  margin: 0 3px 0 0;
  display: block;
  float: left;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}
.loading-mark > div:last-child {
  margin: 0;
}
.loading-mark .rect2 {
  animation-delay: -1.1s;
}
.loading-mark .rect3 {
  animation-delay: -1s;
}
.loading-mark .rect4 {
  animation-delay: -0.9s;
}
.loading-mark .rect5 {
  animation-delay: -0.8s;
}

.loading .loading-mark,
.processing .loading-mark {
  width: 47px;
  height: 70px;
  opacity: 1;
}

.loading.bar .loading-mark,
.processing.bar .loading-mark {
  opacity: 0;
}

.loading-bg {
  opacity: 0;
  visibility: hidden;
}

.progressbar {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 20px;
  width: 200px;
  box-sizing: border-box;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  z-index: 10000;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
}
.progressbar .counter {
  position: absolute;
  display: block;
  width: 0;
  height: 100%;
  text-align: center;
  line-height: 20px;
  position: absolute;
  font-size: 0.8rem;
  font-weight: 500;
  background-color: #44445c;
  color: white;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
}

.bar .progressbar {
  opacity: 1;
  visibility: visible;
}

.processing {
  transition: all 0.3s ease;
}
.processing .loading-bg {
  opacity: 1;
  visibility: visible;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
.processing .placeholder {
  opacity: 0;
}
@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
input[type=radio] {
  visibility: hidden;
  opacity: 0;
  display: none;
}
input[type=radio] + label {
  cursor: pointer;
  transition: all 0.3s ease;
}
input[type=radio] + label:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  vertical-align: middle;
  background-color: white;
  border: 2px solid #939597;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}
input[type=radio]:checked + label {
  position: relative;
}
input[type=radio]:checked + label:before {
  background-color: #d25c78;
  border-color: #d25c78;
}

.price::before {
  content: "¥";
}
.price.tax0::after {
  content: "(税込)";
  font-size: 0.7rem;
}
.price::after {
  content: "(税別)";
  font-size: 0.7rem;
}
.price.nolabel::before, .price.nolabel::after {
  display: none;
}

/*----------------------------------------------------------------
2. Header
----------------------------------------------------------------*/
header#global {
  display: flex;
  align-items: center;
  background-color: var(--theme-black-color1);
  overflow: hidden;
  position: relative;
  justify-content: space-between;
  padding: 0 10px;
  gap: 30px;
}
header#global h1 {
  font-size: 1.2rem;
  margin: 0;
  padding: 1rem;
  box-sizing: border-box;
  display: block;
  font-weight: 400;
}
header#global h1 .version {
  font-size: 0.7rem;
  color: white;
  font-weight: normal;
  display: inline-block;
  margin-left: 1rem;
}
header#global h1 a {
  text-decoration: none;
  color: white;
}
header#global .toolbar img {
  filter: invert(89%) sepia(62%) saturate(0%) hue-rotate(181deg) brightness(107%) contrast(101%);
  display: block;
}
header#global .power {
  font-size: 0.8rem;
  display: inline-block;
  margin-left: 1rem;
  color: white;
  text-decoration: none;
}
header#global .username {
  color: white;
  font-size: 1rem;
  font-weight: 600;
}
header#global .username a {
  color: white;
}
header#global .username img {
  width: 20px;
}
header#global .date {
  font-weight: 600;
  font-size: 1rem;
  color: white;
}
header.local {
  display: flex;
  overflow: hidden;
  margin-bottom: 20px;
  align-items: center;
  padding: 0;
}
header.local h1 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
header.local h1 a {
  padding-left: 30px;
  position: relative;
  text-decoration: none;
}
header.local h1 figure {
  width: 130px;
  margin: 0;
  order: -1;
}
header.local h1 figure img {
  width: 100%;
  display: block;
  border-radius: 10px;
}
header.content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 1rem;
}
header.content > *:last-child {
  flex-grow: 1;
  flex-shrink: 1;
  justify-content: end;
}

/*----------------------------------------------------------------
3. Left Side
----------------------------------------------------------------*/
/*----------------------------------------------------------------
4. Right Side
----------------------------------------------------------------*/
/*----------------------------------------------------------------
5. Aside
----------------------------------------------------------------*/
/* Global Side Navigation */
aside.global {
  background-color: var(--theme-black-color2);
}
aside.global nav {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
aside.global nav ul {
  overflow: hidden;
  list-style-type: none;
  display: flex;
  justify-content: flex-start;
  margin: 0 auto;
  padding: 20px 10px 0 10px;
  gap: 10px;
}
aside.global nav ul li {
  display: block;
  flex-shrink: 1;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}
aside.global nav ul li.active a {
  background-color: #f2eeeb;
}
aside.global nav ul li.active a:hover {
  background-color: #f2eeeb;
}
aside.global nav ul li a {
  display: block;
  height: 100%;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  background-color: white;
  box-sizing: border-box;
  font-weight: 400;
  overflow: hidden;
  padding: 0 40px;
}
aside.global nav ul li a:hover {
  background-color: #d25c78;
  color: white;
}
aside.local {
  background-color: white;
  border-radius: 10px 10px 0 0;
  margin-bottom: 2rem;
}
aside.local nav {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
aside.local nav ul {
  overflow: hidden;
  list-style-type: none;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 20px 10px 0 10px;
  gap: 5px;
}
aside.local nav ul li {
  display: block;
  flex-shrink: 1;
}
aside.local nav ul li.active {
  border: 0;
}
aside.local nav ul li.active a {
  background-color: #f2eeeb;
  transform: translateY(0) scale(1);
  font-weight: bold;
  padding: 0 40px;
  color: black;
}
aside.local nav ul li.active a:hover {
  color: black;
  background-color: #f2eeeb;
  transform: translateY(0) scale(1);
}
aside.local nav ul li a {
  display: block;
  height: 100%;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  color: white;
  background-color: #b6b6b6;
  box-sizing: border-box;
  font-weight: 400;
  overflow: hidden;
  padding: 0 25px;
  transform: translateY(8px) scale(0.9);
  border-radius: 7px 7px 0 0;
  overflow: hidden;
}
aside.local nav ul li a:hover {
  transform: translateY(8px) scale(0.95);
  background-color: #b6b6b6;
  color: white;
}

@keyframes fadeout {
  0% {
    bottom: 0;
  }
  70% {
    bottom: 0;
  }
  100% {
    bottom: -100px;
  }
}
/*----------------------------------------------------------------
6. Main Contents
----------------------------------------------------------------*/
main {
  margin-bottom: 20px;
  padding: 20px;
}
main .float {
  max-width: calc(100% - 20px);
  margin-left: auto;
  margin-right: auto;
}
main section {
  display: block;
  margin: 0;
  margin-bottom: 20px;
  box-sizing: border-box;
  padding: 0;
  border-radius: 0;
}

section.tooltip {
  padding: 0.5rem 1rem;
  background-color: transparent;
  text-align: center;
}
section.tooltip b {
  display: inline-block;
  border-bottom: 1px solid #333;
}

/* Suggestions List */
.suggestions-list {
  background-color: transparent;
  display: flex;
  flex-wrap: wrap;
}
.suggestions-list article {
  display: inline-block;
  margin-right: 10px;
}
.suggestions-list article a {
  padding: 5px;
  display: block;
  background-color: white;
  border-radius: 5px;
  margin-bottom: 10px;
  cursor: pointer;
}
.suggestions-list article a:hover {
  box-shadow: 1px 1px 2px rgba(10, 10, 10, 0.2);
}

/* Search Result Ranking List*/
.search-ranking-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  background-color: transparent;
}
.search-ranking-list .shop {
  background-color: white;
  border-radius: 10px;
  margin-bottom: 30px;
}
.search-ranking-list .shop .shopname {
  color: #939597;
  font-style: normal;
  width: 100%;
  display: block;
  text-align: center;
  padding: 10px 10px 0 10px;
  font-size: 1.5rem;
  font-weight: 500;
  box-sizing: border-box;
}
.search-ranking-list .vendorcode .vendorname {
  display: inline-block;
  background-color: #f5df4d;
  font-style: normal;
  padding: 5px 1rem;
}
.search-ranking-list .itemcode {
  margin: 15px;
  border: 1px solid #939597;
  border-radius: 10px;
}
.search-ranking-list article {
  width: 100%;
  padding: 15px;
  box-sizing: border-box;
  display: flex;
  justify-content: start;
  align-items: center;
  position: relative;
  border-bottom: 1px dashed #aaa;
}
.search-ranking-list article:last-child {
  border-bottom: 0;
}
.search-ranking-list article a {
  text-decoration: none;
}
.search-ranking-list article .data {
  display: block;
  margin-right: 20px;
}
.search-ranking-list article .data.iid {
  display: inline-block;
  border-radius: 10px;
  padding: 2px 10px;
  font-size: 0.8rem;
  white-space: nowrap;
}
.search-ranking-list article .searchword {
  display: inline-block;
  background-color: #aea3ce;
  padding: 0 12px;
  border-radius: 5px;
  color: white;
}
.search-ranking-list article .position {
  padding: 5px 10px;
  font-size: 1rem;
  font-weight: bold;
  z-index: 100;
  margin-right: 15px;
  min-width: 3rem;
}
.search-ranking-list article .position:before {
  content: "#";
}
.search-ranking-list article figure {
  margin: 0;
  margin-right: 20px;
  padding: 0;
}
.search-ranking-list article figure img {
  display: block;
  width: 120px;
}

/* news line */
.newsitem {
  gap: 0;
  flex-wrap: wrap;
}
.newsitem img {
  margin-right: 0.5rem;
  vertical-align: middle;
}
.newsitem.level_emergency {
  color: crimson;
}
.newsitem.level_emergency a {
  color: crimson;
}
.newsitem.level_emergency img {
  filter: invert(19%) sepia(99%) saturate(5385%) hue-rotate(341deg) brightness(88%) contrast(95%);
}

/* listview */
.table {
  padding: 0;
}

.userlist {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.userlist .user {
  background-color: white;
  padding: 1rem;
  border-radius: 10px;
}
.userlist .user .username {
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0;
  background-color: #efefef;
  padding: 1rem;
}

.statuslist {
  margin-bottom: 5px;
  padding: 0;
  list-style-type: none;
  font-size: 0.9rem;
}
.statuslist table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #bbb;
}
.statuslist table tr {
  text-align: left;
}
.statuslist table th {
  font-weight: 600;
  border: 1px solid #bbb;
  padding: 0.55rem;
  width: 25%;
  background-color: #f8f8f8;
}
.statuslist table td {
  border: 1px solid #bbb;
  padding: 0.55rem;
  background-color: white;
}

.listview {
  margin-bottom: 5px;
  padding: 0;
  list-style-type: none;
  font-size: 0.9rem;
}
.listview.stores {
  display: grid;
  grid-template-columns: repeat(4, minmax(250px, 1fr));
}
.listview.stores .store {
  display: flex;
  flex-direction: column;
  gap: 0;
  background-color: white;
  border-radius: 10px;
  padding: 1rem;
  align-items: center;
}
.listview.stores .store a {
  text-decoration: none;
  font-feature-settings: "palt";
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.listview.stores .store a::before {
  content: "";
  display: block;
  height: 50px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  align-self: stretch;
}
.listview.stores .store.rakuten a::before {
  background-image: url(../images/logo-rakuten.png);
}
.listview.tile {
  display: grid;
  grid-template-columns: repeat(6, minmax(200px, 1fr));
}
.listview.tile .app {
  flex-shrink: 0;
  flex-grow: 0;
  background-color: white;
  padding: 1rem;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.listview.tile .app a {
  text-decoration: none;
  display: flex;
  justify-content: center;
}
.listview.tile .app figure {
  margin: 0;
  padding: 0;
}
.listview.tile .app figure img {
  display: block;
  width: 100%;
  border-radius: 5px;
}
.listview.tile .app .name {
  font-size: 1rem;
}
.listview.default {
  display: flex;
  flex-direction: column;
}
.listview.default article {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: space-between;
  border-bottom: 1px solid #888;
  padding: 5px 0;
  /* common */
  /* setting */
  /* customers */
  /* services */
}
.listview.default article.header > div {
  text-align: center;
  justify-content: center;
}
.listview.default article .price {
  flex-basis: 10%;
  flex-grow: 0;
  flex-shrink: 0;
  text-align: right;
}
.listview.default article .price.nolabel {
  text-align: center;
}
.listview.default article .tools {
  min-width: 100px;
  display: flex;
  justify-content: end;
}
.listview.default article .bank_data {
  display: flex;
  justify-content: start;
  font-weight: 600;
  align-items: start;
  gap: 5px;
  padding: 0.5rem 0;
  flex-direction: column;
}
.listview.default article .bank_data .caption_container {
  display: flex;
}
.listview.default article .bank_data p {
  font-weight: normal;
  line-height: 1.2;
  margin: 0;
}
.listview.default article .tag {
  width: 20%;
}
.listview.default article .tag p {
  margin: 0;
}
.listview.default article .detail {
  width: 25%;
  border-left: 4px double #ccc;
  display: flex;
  justify-content: start;
  gap: 10px;
  align-self: stretch;
  align-items: center;
  padding: 10px;
  column-gap: 20px;
  row-gap: 5px;
  flex-wrap: wrap;
}
.listview.default article .detail > div {
  display: flex;
  gap: 5px;
  align-items: center;
  white-space: nowrap;
  line-height: 1;
}
.listview.default article .detail > div::before {
  display: flex;
  background-color: #696969;
  color: white;
  font-size: 0.7rem;
  border-radius: 4px;
  padding: 4px 6px;
  line-height: 1;
  white-space: nowrap;
}
.listview.default article .detail .person {
  width: 130px;
}
.listview.default article .detail .person::before {
  content: "担当者";
}
.listview.default article .detail .tel {
  width: 140px;
}
.listview.default article .detail .tel::before {
  content: "TEL";
}
.listview.default article .detail .invoice::before {
  content: "インボイス登録番号";
}
.listview.default article .detail .email::before {
  content: "e-mail";
}
.listview.default article .stores {
  border-left: 1px solid #888;
  min-width: 85px;
  padding: 10px;
  text-align: center;
  align-self: stretch;
  display: flex;
  gap: 10px;
  justify-content: start;
  flex-grow: 1;
  flex-shrink: 1;
}
.listview.default article .stores .store {
  background-color: white;
  padding: 0.5rem;
  border-radius: 5px;
  text-align: left;
  line-height: 130%;
}
.listview.default article .stores .store a {
  display: block;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
.listview.default article .stores .store.status_active {
  position: relative;
}
.listview.default article .stores .store.status_active::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: red;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(40%) translateY(-40%);
}
.listview.default article .stores .store.status_limited {
  background-color: transparent;
  border: 1px solid #999;
}
.listview.default article .stores .store.status_invalid {
  opacity: 0.5;
}
.listview.default article .stores .store .counter {
  color: crimson;
}
.listview.default article .stores .store .counter .num {
  font-weight: 600;
  font-size: 1.2rem;
}
.listview.default article .name {
  box-sizing: border-box;
  width: 25%;
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  align-items: center;
  gap: 10px;
  padding: 0.5rem 1rem 0.5rem 0;
  box-sizing: border-box;
}
.listview.default article .name .username a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 0.5;
}
.listview.default article .name .username a:hover {
  text-decoration: none;
}
.listview.default article .name .container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 1;
  gap: 2px;
}
.listview.default article .name .nodata {
  flex-shrink: 0;
  flex-grow: 0;
  font-size: 0.7rem;
  width: 200px;
  font-weight: normal;
}
.listview.default article .email {
  flex-shrink: 0;
  flex-grow: 0;
  font-size: 0.7rem;
  width: 200px;
  font-weight: normal;
}
.listview.default article .person {
  flex-shrink: 0;
  flex-grow: 0;
  font-size: 0.7rem;
  width: 200px;
  font-weight: normal;
}
.listview.default article .nodata {
  color: #aaa;
}
.listview.default article .tel {
  flex-shrink: 0;
  flex-grow: 0;
  font-size: 0.7rem;
  width: 200px;
  font-weight: normal;
}
.listview.default article .auto {
  flex-grow: 1;
  flex-shrink: 1;
  line-height: 1;
}
.listview.default article .last_login_date {
  width: 200px;
}
.listview.default article .details {
  flex-grow: 1;
  flex-shrink: 1;
}
.listview.default article .news {
  width: 200px;
  border-left: 4px double #ccc;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 0.5rem;
  gap: 5px;
  justify-content: center;
}
.listview.default article .news .nodata {
  padding: 0.5rem;
}
.listview.default article .protocol {
  width: 200px;
  border-left: 4px double #ccc;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 0.5rem;
  gap: 5px;
  justify-content: center;
}
.listview.default article .protocol .nodata {
  padding: 0.5rem;
}
.listview.default article .class {
  font-size: 0.7rem;
  border-radius: 20px;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  display: flex;
  order: -1;
  flex-grow: 0;
  flex-shrink: 0;
}
.listview.default article .class.class999 {
  background-color: #bb3103;
  color: white;
}
.listview.default article .class.class100 {
  background-color: white;
  color: black;
}
.listview.default article .class.class0 {
  background-color: #036fbb;
  color: white;
}
.listview.default article .service_name {
  display: flex;
  justify-content: start;
  font-weight: 600;
  align-items: center;
  gap: 10px;
  padding: 0.5rem 0;
}
.listview.default article .type {
  font-size: 0.7rem;
  border-radius: 20px;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  display: flex;
  order: -1;
  white-space: nowrap;
}
.listview.default article .type.monthly {
  background-color: #e6c000;
  color: white;
}
.listview.default article .type.spot {
  background-color: #a900e6;
  color: white;
}
.listview.default article .type.others {
  background-color: #06bb03;
  color: white;
}
.listview.default article .work_hours_a_day {
  width: 10%;
  text-align: center;
}
.listview.default article .work_days_a_month {
  width: 10%;
  text-align: center;
}
.listview.default .result {
  padding: 1rem;
  text-align: center;
}
.listview.history article {
  display: flex;
  justify-content: space-between;
  border: 1px solid #888;
  align-items: center;
}
.listview.history article > div {
  border-right: 1px solid #888;
  flex-grow: 0;
  flex-shrink: 0;
}
.listview.history article > div:last-child {
  border-right: 0;
}
.listview.history article.header {
  background-color: white;
}
.listview.history article .start_from {
  width: 10%;
  padding: 0.5rem 0;
}
.listview.history article .service_name {
  flex-grow: 1;
  flex-shrink: 1;
}
.listview.history article .price {
  width: 100px;
}
.listview.history article .staff {
  width: 100px;
}
.listview.history article .work_hours_a_day {
  width: 100px;
}
.listview.history article .work_days_a_month {
  width: 100px;
}
.listview table {
  width: 100%;
  border-collapse: collapse;
  border-left: 0;
  border-right: 0;
}
.listview table tbody {
  overflow: scroll;
}
.listview table th {
  padding: 1rem;
  font-weight: normal;
  border: 1px solid #999;
}
.listview table td {
  padding: 1rem;
  border: 1px solid #999;
}
.listview table td.start_from, .listview table td.end_to, .listview table td.work_hours_a_day, .listview table td.work_days_a_month {
  text-align: center;
}
.listview table td.price {
  text-align: right;
}
.listview table tr.status_yes {
  background-color: white;
}
.listview table tr.status_no {
  color: gray;
}
.listview .image .box {
  display: block;
  width: 80px;
  height: 80px;
  overflow: hidden;
  margin: 0 auto;
}
.listview .image .box img {
  display: block;
  width: 100%;
  height: auto;
}
.listview .control span {
  margin: 0 5px;
  display: inline-block;
  width: 30px;
}
.listview .control span a {
  display: block;
  width: 100%;
  height: 30px;
  border: 2px solid #333;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  overflow: hidden;
  text-indent: -100px;
  box-sizing: border-box;
}
.listview .control span a:hover {
  border-color: #67a200;
}
.listview .control span:after {
  font-size: 0.7rem;
  display: block;
  text-align: center;
}
.listview .control span:hover:after {
  color: #67a200;
}

.reportview table {
  width: 100%;
  background-color: white;
  border: 1px solid #888;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.reportview table .date {
  width: 4rem;
  text-align: center;
}
.reportview table .staff {
  width: 5rem;
  text-align: center;
}
.reportview table .staff .container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.reportview table .content {
  text-align: left;
}
.reportview table .content .container {
  display: flex;
  gap: 10px;
}
.reportview table .content .container .list {
  flex-grow: 1;
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reportview table .content .container .list .ct {
  border-bottom: 1px dashed #999;
  padding-bottom: 10px;
}
.reportview table .content .container .list .ct:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.reportview table tr:first-child {
  background-color: #efc108;
  color: white;
}
.reportview table tr.holiday {
  background-color: #fadfdf;
}
.reportview table tr.today {
  border: 2px solid crimson;
}
.reportview table th, .reportview table td {
  border: 1px solid #888;
  padding: 0.5rem;
}
.reportview table th {
  text-align: center;
}
.reportview table th.content {
  text-align: center;
}

.todoview {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.todoview .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.todoview .deadlined, .todoview .others {
  /*margin-bottom: 40px;*/
}
.todoview .todolist {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  grid-gap: 20px;
}
.todoview .todolist .todo {
  background-color: white;
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
}
.todoview .todolist .todo .data {
  flex-grow: 1;
  flex-shrink: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: space-between;
}
.todoview .todolist .todo .data .info {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  font-size: 0.8rem;
  align-items: center;
}
.todoview .todolist .todo.tasked .info .archived {
  display: none;
}
.todoview .todolist .todo .deadline {
  flex-shrink: 0;
  flex-grow: 0;
  min-width: 5rem;
  width: 20%;
  background-color: #4c9cc9;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  padding: 0.75rem;
  box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0 10px 10px 0;
}
.todoview .todolist .todo .deadline .date {
  flex-grow: 1;
  flex-shrink: 1;
  display: flex;
  align-items: center;
}
.todoview .todolist .todo .deadline .button {
  width: 34px;
  height: 34px;
  border: 1.5px solid white;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.todoview .todolist .todo .deadline .button:hover {
  background-color: white;
}
.todoview .todolist .todo .deadline .button:hover img {
  width: 20px;
  filter: invert(41%) sepia(42%) saturate(1397%) hue-rotate(314deg) brightness(78%) contrast(115%);
}
.todoview .todolist .todo .deadline img {
  width: 20px;
  filter: invert(96%) sepia(0%) saturate(7483%) hue-rotate(122deg) brightness(113%) contrast(104%);
}
.todoview .todolist .todo .content {
  font-size: 0.9rem;
}
.todoview .todolist .todo .content h3 {
  margin: 0;
  margin-bottom: 0.5rem;
  padding: 0;
  font-size: 1rem;
}
.todoview .todolist .todo .staff {
  border: 1px solid #999;
  padding: 1px 6px;
  border-radius: 5px;
  white-space: nowrap;
}
.todoview .todolist .todo .last_modified_date {
  flex-grow: 1;
  flex-shrink: 1;
  display: flex;
  align-items: center;
  gap: 5px;
}
.todoview .todolist .todo .last_modified_date img {
  display: block;
  width: 20px;
}
.newsview .container {
  background-color: white;
  padding: 1rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.newsview .container .newsitem {
  display: flex;
  align-items: center;
  gap: 0;
}
.newsview .container .newsitem.details {
  align-items: center;
  gap: 10px;
}
.newsview .container .newsitem:before {
  padding: 1px 0.5rem;
  border-radius: 5px;
  font-size: 0.9rem;
}
.newsview .container .newsitem.level_emergency:before {
  content: "要注意";
  background-color: crimson;
  color: white;
}
.newsview .container .advise {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.newsview .container .datalist {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  border-radius: 5px;
  margin-top: 5px;
}
.newsview .container .datalist.todo .deadline {
  background-color: crimson;
  color: white;
  padding: 0.3rem 0.35rem;
  display: block;
  border-radius: 3px 3px 0 0;
  font-size: 0.8rem;
}
.newsview .container .datalist.todo .user {
  color: black;
  font-size: 0.7rem;
}
.newsview .container .datalist .data {
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 0.5rem;
  padding: 0;
  border-radius: 0;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  background-color: #efefef;
}

.calendarview .calendar {
  width: 100%;
  border-collapse: collapse;
}
.calendarview .calendar td, .calendarview .calendar th {
  padding: 0.5rem;
  border-right: 1px solid #999;
}
.calendarview .calendar td:last-child, .calendarview .calendar th:last-child {
  border-right: 0;
  background-color: #e9e4e0;
}
.calendarview .calendar td:first-child, .calendarview .calendar th:first-child {
  border-right: 0;
  background-color: #e9e4e0;
}
.calendarview .calendar td.today, .calendarview .calendar th.today {
  background-color: white;
}
.calendarview .calendar td.mon, .calendarview .calendar td.tue, .calendarview .calendar td.wed, .calendarview .calendar td.thu, .calendarview .calendar td.fri {
  width: 18%;
}
.calendarview .calendar td.sat, .calendarview .calendar td.sun,
.calendarview .calendar th.sat, .calendarview .calendar th.sun {
  width: 5%;
}
.calendarview .calendar td {
  vertical-align: top;
}
.calendarview .calendar td .container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 0.9rem;
  gap: 10px;
}
.calendarview .calendar td .schedule_list {
  flex-grow: 1;
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.calendarview .calendar td .schedule_list .item {
  line-height: 1.2;
}
.calendarview .calendar td .schedule_list .item::before {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  margin-right: 0.25rem;
}
.calendarview .calendar td .schedule_list .item.task::before {
  content: "";
  background-image: url(../images/icon-emergency.svg);
  filter: invert(19%) sepia(99%) saturate(5385%) hue-rotate(341deg) brightness(88%) contrast(95%);
}
.calendarview .calendar td .schedule_list .item.archived::before {
  content: "";
  background-image: url(../images/icon-checked.svg);
  filter: invert(33%) sepia(99%) saturate(969%) hue-rotate(87deg) brightness(98%) contrast(105%);
}
.calendarview .calendar td .schedule_list .item.report {
  background-color: rgb(255, 255, 255);
  border-right: 5px solid #50c3e7;
  padding: 0.25rem;
}
.calendarview .calendar td .schedule_list .item.report::before {
  content: "";
  background-image: url(../images/icon-editnote.svg);
}
.calendarview .calendar td .schedule_list .item a {
  text-decoration: none;
  color: #222;
}
.calendarview .calendar td footer {
  display: flex;
  justify-content: space-between;
  flex-grow: 0;
  flex-shrink: 0;
}
.calendarview .calendar td footer .day {
  text-align: right;
  font-weight: 400;
  font-family: "Bebas Neue", serif;
  line-height: 1;
  font-size: 1.3rem;
  letter-spacing: 0;
  flex-grow: 1;
  flex-shrink: 1;
}
.calendarview .calendar tr {
  border-bottom: 1px solid #999;
}
.calendarview .calendar tr:last-child {
  border-bottom: 0;
}
.calendarview .calendar tr:first-child th {
  padding: 1rem;
}
.calendarview .calendar .today {
  border: 2px solid crimson !important;
  background-color: white;
}

.cardview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  grid-gap: 20px;
}
.cardview article {
  background-color: white;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cardview article.has_contract .name a {
  color: crimson;
}
.cardview article.has_contract .class {
  background-color: crimson;
}
.cardview article header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}
.cardview article .name {
  display: flex;
  gap: 5px;
  justify-content: space-between;
  flex-grow: 1;
  flex-shrink: 1;
}
.cardview article .username {
  flex-grow: 1;
  flex-shrink: 1;
}
.cardview article .username a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
}
.cardview article .username a:hover {
  text-decoration: underline;
}
.cardview article .news {
  flex-grow: 1;
  flex-shrink: 1;
  background-color: #eaf3f7;
  padding: 0.5rem;
  border-radius: 7px;
  font-size: 0.9rem;
}
.cardview article .contracts {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  gap: 10px;
}
.cardview article .contracts .plan {
  border-bottom: 1px solid #333;
  padding: 0 0 10px 0;
}
.cardview article .contracts .plan a {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 5px;
}
.cardview article .email {
  font-size: 0.7rem;
  margin-top: 0.25rem;
}
.cardview article .class {
  background-color: #333;
  color: white;
  border-radius: 3px;
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  align-self: start;
  flex-shrink: 0;
  flex-grow: 0;
}

.invoiceview .invoicelist .invoices {
  width: 100%;
  font-size: 0.9rem;
  border-collapse: collapse;
}
.invoiceview .invoicelist .invoices tr {
  border-bottom: 1px solid #444;
}
.invoiceview .invoicelist .invoices th {
  font-weight: normal;
  border-right: 1px solid #444;
  padding: 1rem 0.5rem;
}
.invoiceview .invoicelist .invoices th:last-child {
  border-right: 0;
}
.invoiceview .invoicelist .invoices td {
  padding: 1rem 5px;
}
.invoiceview .invoicelist .invoices .id {
  width: 10%;
}
.invoiceview .invoicelist .invoices .invoice_title {
  width: 35%;
  font-weight: 600;
}
.invoiceview .invoicelist .invoices .total_including_tax {
  width: 10%;
}
.invoiceview .invoicelist .invoices .issue_date {
  width: 10%;
}
.invoiceview .invoicelist .invoices .sent_date {
  width: 10%;
}
.invoiceview .invoicelist .invoices .payment_deadline {
  width: 10%;
}
.invoiceview .invoicelist .invoices .paid_date {
  width: 10%;
}
.invoiceview .invoicelist .invoices .center {
  text-align: center;
}
.invoiceview .invoicelist .invoices .date {
  text-align: center;
}
.invoiceview .invoicelist .invoices .currency {
  text-align: right;
}

.invoiceformat {
  background-color: white;
  border-radius: 5px;
  padding: 20px;
  box-sizing: border-box;
  margin-top: 20px;
}
.invoiceformat.is_sent {
  background-color: white;
}
.invoiceformat.readonly .fields .users_id b {
  display: none;
}
.invoiceformat.readonly .fields input {
  border: 0;
}
.invoiceformat.readonly .fields .read_data {
  display: none !important;
}
.invoiceformat.readonly .fields textarea {
  background-color: transparent !important;
  border: 0 !important;
}
.invoiceformat.readonly .fields [type=submit] {
  display: none;
}
.invoiceformat .title {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid black;
  margin-bottom: 0;
}
.invoiceformat .title h3 {
  line-height: 1;
  letter-spacing: 1rem;
  font-weight: 600;
  font-size: 1.7rem;
}
.invoiceformat .upper {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 60px;
  margin-bottom: 40px;
}
.invoiceformat .upper .side {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  flex-shrink: 1;
  flex: 1;
  align-items: stretch;
  gap: 40px;
}
.invoiceformat .upper .side:first-child div {
  align-items: start;
}
.invoiceformat .upper .side:last-child {
  gap: 10px;
}
.invoiceformat .upper .side > div {
  width: 100%;
}
.invoiceformat p {
  margin: 0;
}
.invoiceformat .users_id {
  border-bottom: 1px solid black;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 1.5rem 0 1rem;
  font-size: 1.4rem;
  align-self: center;
}
.invoiceformat .users_id div {
  line-height: 1;
}
.invoiceformat .total_including_tax_display {
  flex-direction: column;
  display: flex;
  gap: 0.5rem;
}
.invoiceformat .total_including_tax_display p {
  margin: 0;
  font-size: 0.9rem;
}
.invoiceformat .total_including_tax_display .container {
  background-color: #efefef;
  align-self: stretch;
  padding: 2rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  gap: 5px;
}
.invoiceformat .total_including_tax_display .container .caption {
  font-size: 1.2rem;
  font-weight: 600;
  flex-grow: 1;
  flex-shrink: 1;
}
.invoiceformat .total_including_tax_display .container input {
  background-color: white;
  text-align: right;
  flex-grow: 1;
  flex-shrink: 1;
}
.invoiceformat .total_including_tax_display .container input[readonly] {
  background-color: transparent;
  border: 0;
}
.invoiceformat .all_total_price {
  font-size: 1.5rem;
  font-weight: 600;
}
.invoiceformat .all_total_price:before {
  content: "¥";
}
.invoiceformat .all_total_price:after {
  content: "-";
}
.invoiceformat .invoice_title {
  flex-direction: column;
  font-size: 1.7rem;
  font-weight: 600;
  align-items: start;
  gap: 10px;
}
.invoiceformat .invoice_title p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: normal;
}
.invoiceformat .invoice_title input {
  font-size: 1.5rem;
}
.invoiceformat .total_including_tax {
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
.invoiceformat .total_including_tax p {
  margin: 0;
}
.invoiceformat .total_including_tax input {
  font-size: 1.5rem;
}
.invoiceformat .paper_code {
  gap: 1rem;
  justify-content: end;
  font-size: 0.85rem;
  display: flex;
  justify-content: end;
  align-items: center;
  margin-top: 20px;
}
.invoiceformat .issue_date {
  gap: 1rem;
  justify-content: end;
  font-size: 0.85rem;
  display: flex;
  justify-content: end;
  align-items: center;
}
.invoiceformat .issue_date.field {
  margin-top: 20px;
}
.invoiceformat .payment_deadline {
  gap: 1rem;
  justify-content: end;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  display: flex;
  justify-content: end;
  align-items: center;
}
.invoiceformat .expiration_date {
  gap: 1rem;
  justify-content: end;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  display: flex;
  justify-content: end;
  align-items: center;
}
.invoiceformat .sigunature .read_data {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.invoiceformat .sigunature .read_data select {
  margin: 0;
}
.invoiceformat .sigunature p {
  margin: 0;
  font-size: 0.8rem;
}
.invoiceformat .bank p {
  margin: 1rem;
  font-size: 0.9rem;
}
.invoiceformat .memo p {
  margin: 1rem;
  font-size: 0.9rem;
}
.invoiceformat .calc {
  margin-bottom: 3rem;
}
.invoiceformat .calc table {
  width: 100%;
  border-top: 2px solid black;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.invoiceformat .calc table .toolbar a {
  cursor: pointer;
}
.invoiceformat .calc table tr:first-child {
  background-color: #efefef;
}
.invoiceformat .calc table tr.detail.closed .open_more_desc .less {
  display: none;
}
.invoiceformat .calc table tr.detail.closed .open_more_desc .more {
  display: block;
}
.invoiceformat .calc table tr.detail.closed .item textarea {
  display: none;
}
.invoiceformat .calc table tr.detail .open_more_desc .less {
  display: block;
}
.invoiceformat .calc table tr.detail .open_more_desc .more {
  display: none;
}
.invoiceformat .calc table tr.detail .item {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.invoiceformat .calc table tr.detail .item .note {
  margin-top: 5px;
  font-size: 0.7rem;
}
.invoiceformat .calc table tr.detail .item textarea {
  margin-top: 10px;
  font-size: 0.7rem;
  resize: none;
  min-height: min-content;
  field-sizing: content;
}
.invoiceformat .calc table tr th, .invoiceformat .calc table tr td {
  padding: 0.5rem;
  border-bottom: 1px solid #999;
}
.invoiceformat .calc table tr td {
  font-size: 0.95rem;
}
.invoiceformat .calc table tr td input, .invoiceformat .calc table tr td textarea {
  width: 100%;
}
.invoiceformat .calc table tr .amount {
  width: 6%;
  text-align: center;
}
.invoiceformat .calc table tr .control {
  width: 3%;
}
.invoiceformat .calc table tr .unit {
  width: 6%;
  text-align: center;
}
.invoiceformat .calc table tr .tax_rate {
  width: 10%;
  text-align: center;
}
.invoiceformat .calc table tr .tax_rate input {
  width: calc(100% - 2rem);
}
.invoiceformat .calc table tr .tax_rate::after {
  content: "%";
}
.invoiceformat .calc table tr .num {
  width: 12%;
  text-align: center;
}
.invoiceformat .calc table tr .num input {
  text-align: center;
}
.invoiceformat .calc table tr .currency {
  text-align: right;
  width: 12%;
}
.invoiceformat .calc table tr .currency input {
  text-align: right;
}
.invoiceformat .calc table tr .caption {
  background-color: #efefef;
  border-right: 1px solid #999;
}
.invoiceformat .calc table tr .control .delete_detail img {
  filter: invert(88%) sepia(0%) saturate(1%) hue-rotate(88deg) brightness(86%) contrast(90%);
}
.invoiceformat .calc table tr input[readonly] {
  background-color: transparent;
  border: 0;
}
.invoiceformat .fields {
  padding: 0;
}
.invoiceformat .fields .field {
  display: flex;
  position: static;
  gap: 1rem;
  align-items: center;
  padding-left: 0;
  margin-bottom: 0;
}
.invoiceformat .fields .field.required b:after {
  color: white;
}
.invoiceformat .fields .field b {
  position: static;
  background-color: #bec8ce;
  color: white;
  display: inline-block;
  border-radius: 10px;
  font-size: 0.7rem;
  transform: none;
  letter-spacing: 1px;
  line-height: 1;
  top: auto;
  left: auto;
  width: auto;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.invoiceformat .section {
  border-top: 2px solid black;
  border-bottom: 2px solid black;
  margin-bottom: 2rem;
}
.invoiceformat .section .caption {
  font-size: 1rem;
  font-weight: 600;
  background-color: #efefef;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}
.invoiceformat .section .read_data {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.invoiceformat .section .read_data select {
  margin: 0;
}
.invoiceformat .section .read_data p {
  margin: 0;
  font-size: 0.8rem;
}
.invoiceformat .section textarea {
  font-size: 0.9rem;
}
.invoiceformat .section .bank_detail {
  height: 4rem;
}

.report_viewer {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex-direction: column;
}
.report_viewer .info {
  display: flex;
  gap: 20px;
  justify-content: end;
  font-size: 0.9rem;
}
.report_viewer .info .data {
  display: flex;
  gap: 10px;
}
.report_viewer p.content {
  padding: 1rem;
  box-sizing: border-box;
  background-color: #efefef;
  order: -1;
  border-radius: 10px;
  margin: 0;
}

/* toolbar */
[data-hint] {
  position: relative;
  cursor: pointer;
}
[data-hint]::after {
  position: absolute;
  opacity: 0;
  transition: all 0.3s;
}
[data-hint]::after {
  content: attr(data-hint);
  display: block;
  padding: 5px 8px;
  line-height: 1;
  background: #000;
  border-radius: 3px;
  font-size: 0.6rem;
  white-space: nowrap;
  font-weight: 600;
  color: #fff;
  top: 25px;
  left: 0;
}
[data-hint]:hover::after {
  top: 25px;
  opacity: 1;
}

.buttons {
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: start;
}
.buttons span {
  text-decoration: none;
}
.buttons a {
  text-decoration: none;
}
.buttons .button, .buttons button {
  background: white;
  color: black;
  text-decoration: none;
  border-radius: 5px;
  padding: 7px 15px;
  font-size: 0.9rem;
  line-height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.buttons .button img, .buttons button img {
  width: 24px;
}
.buttons .button:hover, .buttons button:hover {
  background-color: #036fbb;
  color: #cae2f3;
}
.buttons .button:hover img, .buttons button:hover img {
  filter: invert(98%) sepia(93%) saturate(870%) hue-rotate(172deg) brightness(100%) contrast(91%);
}
.buttons .button.mini, .buttons button.mini {
  font-size: 0.8rem;
  border-radius: 6px;
  padding: 2px 4px;
  display: inline-block;
  margin-left: 3px;
  font-weight: 500;
  background-color: white;
  border: 1px solid #333;
}
.buttons .button.mini:hover, .buttons button.mini:hover {
  background-color: #e84c4c !important;
  color: white;
}

/* HOME */
/* DATA TILE COMMON */
main div.data div.tile {
  overflow: hidden;
  padding: 10px;
}

main div.data div.tile div.unit {
  display: block;
  width: 24%;
  margin-right: 1.3333333333%;
  float: left;
  margin-bottom: 20px;
}

main div.data div.tile div.unit > a {
  position: relative;
  display: block;
}

main div.data div.tile div.unit:nth-child(4n) {
  margin-right: 0;
}

main div.data div.tile div.unit:nth-child(4n+1) {
  clear: both;
}

main div.data div.tile div.unit img {
  display: block;
  width: 100%;
}

main div.data div.tile div.unit div.orderdate {
  text-align: center;
  position: absolute;
  left: 10px;
  top: -2px;
  background-color: #9cb82c;
  color: white;
  padding: 6px 5px 2px 5px;
  font-weight: bolder;
  text-align: center;
}

main div.data div.tile div.unit div.id {
  text-align: center;
  padding: 0;
  margin-bottom: 0px;
  position: absolute;
  right: 1px;
  bottom: 1px;
  height: auto;
  line-height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #ddd;
  border-bottom: 0;
  border-right: 0;
  color: #9cb82c;
  padding: 6px 5px 2px 5px;
  font-weight: bolder;
  text-align: center;
  font-weight: normal;
  font-size: 9px;
}

body.special main div.data div.tile div.unit div.id {
  border: 1px solid #ddd;
}

main div.data div.tile div.unit span.category {
  display: block;
  background-image: url(../images/icon-folder.png);
  background-size: 16px;
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 24px;
  box-sizing: border-box;
  margin-bottom: 3px;
}

main div.data div.tile div.unit div.orderdate span.year {
  display: block;
  font-size: 10px;
  line-height: 120%;
}

main div.data div.tile div.unit div.orderdate span.date {
  display: block;
  font-size: 14px;
  line-height: 120%;
}

main div.data div.tile div.unit div.control {
  text-align: center;
}

main div.data div.tile div.unit div.control a {
  display: inline-block;
  background-color: white;
  border: 1px solid #ddd;
  margin-right: 5px;
  border-radius: 5px;
  padding: 1px 9px;
}

main div.data div.tile div.unit div.control a:hover {
  background-color: #798e22;
  border: 1px solid #798e22;
  color: white;
}

main div.data div.tile div.unit div.control a:last-child {
  margin-right: 0;
}

main div.data div.tile div.unit a {
  text-decoration: none;
}

main div.data div.tile div.unit a .thumbnail {
  border: 1px solid #ddd;
  margin-bottom: 5px;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 200px;
}

main div.data div.tile div.unit a .thumbnail:hover {
  border: 1px solid #798e22;
}

main div.data div.tile div.unit a .thumbnail:after {
  content: "詳細を見る";
  position: absolute;
  right: 5px;
  top: -100%;
  background-color: white;
  border: 1px solid #ddd;
  border-top: 0;
  padding: 2px 6px;
  transition: all 0.2s ease;
}

main div.data div.tile div.unit a .thumbnail:hover:after {
  top: 0px;
  border: 1px solid #798e22;
  background-color: #798e22;
  color: white;
}

/* DATA TABLE COMMON */
main div.data table {
  border-collapse: collapse;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 20px;
}

main div.data table tr.direct td:nth-child(2):before,
main div.data table tr.undefined td:nth-child(2):before,
main div.data table tr.agency td:nth-child(2):before {
  display: inline-block;
  color: white;
  padding: 0 5px;
  border-radius: 5px;
  margin-right: 5px;
}

main div.data table tr.undefined td:nth-child(2):before {
  content: "保留";
  color: gray;
  display: none;
}

main div.data table tr.direct td:nth-child(2):before {
  content: "直販";
  background-color: #74bb29;
}

main div.data table tr.agency td:nth-child(2):before {
  content: "代理";
  background-color: #5a99d0;
}

main div.data table tr:hover {
  background-color: rgba(45, 46, 70, 0.1);
}

main div.data table th,
main div.data table td {
  padding: 7px;
  font-weight: normal;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  word-break: break-all;
}

main div.data table td:last-child {
  border-right: 0;
}

main div.data table th {
  background-color: #6f99be;
  text-align: center;
  color: white;
  border-bottom: 0;
}

main ul.sortlink {
  margin: 10px;
  margin-bottom: 0;
  padding: 0;
}

main ul.sortlink:before {
  content: "並べ替え";
  display: inline-block;
  margin-right: 10px;
  background-color: #6f99be;
  color: white;
  border-radius: 3px;
  font-size: 10px;
  padding: 0 3px;
}

main ul.sortlink li {
  display: inline-block;
  margin: 0;
  padding: 0;
  margin-right: 20px;
}

main ul.sortlink li a {
  text-decoration: none;
}

main ul.sortlink li.asc:after,
main div.data table th.asc:after {
  content: "▲";
  color: #6f99be;
  background-color: white;
  font-size: 9px;
  display: inline-block;
  border-radius: 2px;
  margin: 0 5px;
  display: inline-block;
  width: 12px;
  height: 12px;
}

main ul.sortlink li.desc:after,
main div.data table th.desc:after {
  content: "▼";
  color: #6f99be;
  background-color: white;
  font-size: 9px;
  border-radius: 2px;
  display: inline-block;
  margin: 0 5px;
  display: inline-block;
  width: 12px;
  height: 12px;
}

main div.data table th a {
  color: white;
  text-decoration: none;
}

main div.data table th a:hover {
  text-decoration: underline;
}

main div.data table .num {
  text-align: right;
}

main div.data table .date {
  text-align: center;
}

main div.data table .edit {
  position: relative;
}

main div.data table .id {
  width: 5em;
}

main div.data table .edit span.toolbox {
  color: #2d2e46;
  text-decoration: none;
  border-radius: 0px;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: none;
  text-align: center;
  text-indent: -1000px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
}

main div.data table .edit span.toolbox.double {
  width: 80px;
}

main div.data table .edit .toolbox span.button {
  height: 100%;
  width: 40px;
  border-left: 1px solid #ddd;
  text-align: center;
  box-sizing: border-box;
  text-indent: -1000px;
  overflow: hidden;
  cursor: pointer;
  float: left;
  transition: all 0.3s ease;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px;
}

main div.data table .edit .toolbox span.button.edit {
  background-image: url(../images/icon-pen-blk.png);
}

main div.data table .edit .toolbox span.button.delete {
  background-image: url(../images/icon-del-blk.png);
}

main div.data table .edit:hover span.toolbox {
  display: block;
}

main div.data table .edit:hover span.button.edit:hover {
  background-image: url(../images/icon-pen-wht.png);
  background-color: #6f99be;
  color: white;
}

main div.data table .edit:hover span.button.delete:hover {
  background-image: url(../images/icon-del-wht.png);
  background-color: #6f99be;
  color: white;
}

main div.data table .control {
  position: relative;
}

main div.data table .control a {
  border: 1px solid #b5d343;
  color: #666;
  text-decoration: none;
  border-radius: 5px;
  padding: 0;
  padding: 5px 0;
  width: 100%;
  display: block;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.1s ease;
}

main div.data table .control a:hover {
  color: white;
  background-color: #b5d343;
}

main div.data div.result {
  text-align: center;
  padding: 10px;
}

main div.data nav.pager {
  overflow: hidden;
  text-align: center;
  margin-bottom: 20px;
}

main div.data nav.pager ul {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style-type: none;
  border: 1px solid #ddd;
  overflow: hidden;
  border-radius: 5px;
}

main div.data nav.pager ul li {
  display: block;
  float: left;
  border-right: 1px solid #ddd;
}

main div.data nav.pager ul li:last-child {
  border-right: 0;
}

main div.data nav.pager ul li a {
  padding: 7px 14px;
  display: block;
  text-decoration: none;
  text-decoration: none;
}

main div.data nav.pager ul li.current a {
  background-color: #ddd;
  font-weight: bolder;
}

/* NOTICE */
main section.message {
  padding: 0;
  overflow: hidden;
}

main section.message ul {
  list-style-type: none;
  margin: 3px;
  margin-bottom: 0;
  padding: 2px 0;
  background-color: #e7edf3;
  color: #2d2e46;
  overflow: hidden;
}

main section.message ul li {
  padding-left: 3px;
}

main section.message ul li:before {
  content: "お知らせ";
  background-color: #d31010;
  border-radius: 5px;
  color: white;
  font-size: 10px;
  padding: 0 4px;
  margin-right: 5px;
}

/* TOOLBAR */
main section.toolbar {
  display: block;
  background-color: transparent;
  margin-bottom: 10px;
  overflow: hidden;
}

main sectiondiv.left {
  float: left;
}

main sectiondiv.right {
  float: right;
}

main sectionul {
  display: inline;
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style-type: none;
}

main sectionul li {
  display: block;
  float: left;
  padding-left: 20px;
}

main sectionul li:first-child {
  padding-left: 0;
}

main sectionform {
  display: inline-block;
}

main sectioninput {
  height: 34px;
  line-height: 34px;
  box-sizing: border-box;
  padding: 0 5px;
  margin-right: 5px;
}

main sectioninput.submit {
  padding: 0 10px;
  background-image: url(../images/arrow-blue-right.png);
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center center;
  background-color: transparent;
  overflow: hidden;
  text-indent: -1000px;
  border: 0;
  cursor: pointer;
}

main #data-search {
  position: relative;
}

main section#data-search div.reset {
  display: none;
  position: absolute;
  right: 38px;
  top: 0;
  cursor: pointer;
  background-image: url("../images/icon-cross-red.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 20px;
  height: 100%;
}

main section#row-count-switch {
  background-color: white;
  height: 34px;
  line-height: normal;
}

main section.focus-search {
  width: 200px;
}

/*----------------------------------------------------------------
7. Footer
----------------------------------------------------------------*/
footer {
  display: block;
}

footer small {
  display: block;
  text-align: center;
  font-size: 8px;
  padding: 5px 0;
}

/*----------------------------------------------------------------
8. Popup
----------------------------------------------------------------*/
aside.popup {
  cursor: pointer;
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.2);
  display: none;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  visibility: hidden;
  /* Popup Content Style */
}
aside.popup.open {
  opacity: 1;
  visibility: visible;
}
aside.popup .placeholder {
  cursor: default;
  box-shadow: 1px 1px 2px rgba(0, 0, 5, 0.2);
  border-radius: 0;
  display: block;
  max-width: 900px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  border-radius: 15px;
}
aside.popup .placeholder.processing:after {
  display: block;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
aside.popup .popup-content {
  display: block;
  padding: 20px;
  background-color: white;
  position: relative;
  border-radius: 14px;
  max-height: 80vh;
  position: relative;
  overflow: auto;
}
aside.popup .popup-content h1 {
  font-size: 1rem;
  display: inline-block;
  font-weight: bold;
  position: absolute;
  border-radius: 0 0 10px 10px;
  top: 0px;
  right: 20px;
  color: white;
  background-color: #e34545;
  margin: 0;
  padding: 10px 30px;
}
aside.popup .popup-content h2 {
  display: block;
  margin: 0;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
  font-size: 1.3rem;
  color: blue;
  border-bottom: 2px solid red;
  display: block;
}
aside.popup .popup-content h2 .in_renewable_period {
  display: inline-block;
  background-color: #ffb700;
  color: white;
  padding: 2px 0.5rem;
  border-radius: 4px;
  margin-left: 1rem;
  border: 0;
}
aside.popup .popup-content h3 {
  display: block;
  margin: 0;
  margin-bottom: 1rem;
  padding: 0.25rem 0;
  font-size: 1.1rem;
  color: blue;
  border-bottom: 1px solid red;
  display: block;
}
aside.popup .popup-content p {
  padding: 0 5px 5px 5px;
  margin: 0;
  margin-bottom: 1rem;
  font-weight: bolder;
  margin-bottom: 1em;
  color: #333;
  margin-right: 30%;
  width: 100%;
  box-sizing: border-box;
}
aside.popup .popup-content .field p {
  padding: 0;
  margin: 0;
}
aside.popup .popup-content .single-setting-container {
  display: flex;
  align-items: start;
  margin-bottom: 2rem;
  justify-content: left;
}
aside.popup .popup-content .single-setting-container .current {
  display: block;
  border: 1px dashed #888;
  padding: 0.5rem;
  margin-right: 1rem;
  font-weight: bold;
  outline: none;
  max-width: 200px;
  text-align: center;
  border-radius: 6px;
  width: 100%;
}
aside.popup .popup-content .single-setting-container .current:not([id]) {
  border: 0;
  background-color: #efefef;
  border-bottom: 3px solid #d1d1d1;
}
aside.popup .popup-content .single-setting-container .current time {
  display: block;
  font-size: 0.8rem;
}
aside.popup .popup-content .single-setting-container .current .caption {
  display: block;
  font-size: 0.8rem;
  background-color: white;
  color: #e34545;
  border-radius: 4px;
  padding: 4px 0;
  margin-bottom: 10px;
}
aside.popup .popup-content .single-setting-container p {
  flex-grow: 1;
  margin: 0;
  padding: 0;
}
aside.popup .popup-content .single-setting-container ul {
  margin: 0;
  padding: 0;
  padding-left: 20px;
  list-style-type: none;
  border-left: 1px solid blue;
}
aside.popup .popup-content .single-setting-container ul li {
  margin-bottom: 5px;
}
aside.popup .popup-content .single-setting-container ul li:last-child {
  margin-bottom: 0;
}
aside.popup .popup-content .single-setting-container ul li form {
  display: inline-block;
}
aside.popup .popup-content .single-setting-container ul li form .submit {
  font-size: 0.9rem;
  background-color: #cfc3b6;
  color: black;
  font-family: "Noto Sans JP", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
aside.popup .popup-content .single-setting-container ul li form .submit:hover {
  background-color: white;
  border-color: white;
}
aside.popup .result {
  background-color: white;
  padding: 10px;
  box-sizing: border-box;
  color: #da7798;
  font-weight: 500;
}
aside.popup .result > div {
  list-style-type: none;
  font-size: 0.9rem;
  margin: 0;
  padding: 0;
  overflow: auto;
  display: inline-block;
  border: 1px solid #da7798;
  border-radius: 4px;
  padding: 2px 6px;
  margin-right: 10px;
}

/* Popup Content Style */
.alert .field.control {
  padding-left: 0;
  overflow: hidden;
}
.alert .field.control input.button-basic {
  display: block;
  width: 49%;
  margin-right: 2%;
  margin-bottom: 5px;
  box-sizing: border-box;
  float: left;
  padding: 10px 0 !important;
  height: auto;
}
.alert .field.control input.button-basic.default {
  background-color: #798e22 !important;
  color: white !important;
  font-weight: bolder;
}
.alert .field.control input.button-basic:nth-child(2n) {
  margin-right: 0;
}

/* Primary Field */
main div.view.field.primary div.row {
  margin-bottom: 10px;
}

main div.view.field.primary > div.row {
  border-bottom: 1px solid #ddd;
}

main div.view.field.primary div.row strong {
  background-color: white;
}

main div.view.field.primary div.row.liquid > div.row strong {
  position: static;
  width: auto;
  display: inline-block;
  padding: 5px 0;
  padding: 6px 0px;
  transform: translateY(0);
  -webkit-transform: translateY(0);
}

main div.view.field.primary div.row.liquid > div.row p {
  display: inline;
  margin-left: 0;
  padding: 5px 3px;
}

main div.view.field.primary div.row.liquid > div.row.fileatach p {
  display: block;
}

main div.view.field.primary div.row.liquid > div.row {
  float: left;
  padding-left: 5px;
}

main div.view.field.primary div.row.liquid > div.row.newline {
  clear: both;
}

main div.view.field.primary div.row .fileatach strong {
  height: 100px;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  float: left;
  margin-right: 5px;
}

main div.view.field.primary div.row .fileatach span.preview {
  display: inline-block;
  height: 100px;
  width: 100px;
  border: 1px solid #ddd;
  box-sizing: border-box;
  border-radius: 5px;
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}

main div.view.field.primary div.row .fileatach input[type=file] {
  display: none;
}

main div.view.field div.row span.preview:after {
  content: "";
  background-image: url(../images/icon-cross.png);
  display: block;
  width: 20%;
  height: 20%;
  left: 40%;
  top: 40%;
  box-sizing: border-box;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  background-size: 80%;
  position: absolute;
}

main div.view.field div.row span.preview:hover:after {
  background-color: #6f99be;
}

main div.view.field div.row.loading span.preview {
  background-image: url(../images/loading.gif);
}

main div.view.field div.row span.preview.changed {
  border: 1px solid #6f99be !important;
}

main div.view.field div.image-atached span.preview {
  background-image: none;
}

main div.view.field div.file-atached span.preview {
  background-image: url("../images/icon-file.png");
}

main div.view.field div.file-atached span.preview:after,
main div.view.field div.image-atached span.preview:after,
main div.view.field div.file-deleting span.preview:after {
  display: none;
}

main div.view.field div.file-deleting span.preview:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  background-image: url(../images/icon-trash-white.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40px;
}

main div.view.field div.fileatach.on span.clear {
  display: block;
  height: 100px;
  width: 15px;
  border-radius: 5px;
  float: right;
  color: white;
  padding: 1px 6px;
  cursor: pointer;
  background-image: url(../images/icon-trash.png);
  background-size: 15px;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #efefef;
  margin-left: 5px;
}

main div.view.field div.fileatach.on span.clear:hover {
  background-image: url(../images/icon-trash-on.png);
}

main div.view.field div.fileatach label.imageclear {
  display: none;
  cursor: pointer;
}

main div.view.field div.fileatach label.imageclear {
  color: #666;
  display: none;
}

main div.view.field div.fileatach label.imageclear:before {
  content: "登録済みの画像を消去";
}

main div.view.field div.fileatach.atached label.imageclear {
  height: 20px !important;
  box-sizing: border-box;
  text-align: center;
  background-color: #efefef;
  margin: 0;
  border-radius: 5px;
  float: none;
  padding: 1px 6px;
  display: block;
}

main div.view.field div.fileatach.atached.on label.imageclear {
  display: none;
}

main div.view.field div.fileatach.file-deleting label.imageclear {
  background-color: #6f99be;
  color: white;
  display: block;
}

main div.view.field div.fileatach input.imageclear {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  opacity: 0;
}

main div.view.field div.fieldset span.clear {
  cursor: pointer;
  display: none;
  margin-left: 5px;
  background-color: white;
  color: #6f99be;
  border-radius: 5px;
  padding: 0px 5px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

main div.view.field div.fieldset.filled span.clear {
  display: inline-block;
}

main div.view.field div.fieldset span.clear:hover {
  background-color: #6f99be;
  color: white;
}

main div.view.field div.row.control {
  border: 0;
}

main div.view.field div.row.control:before {
  display: none;
}

/* Static Window */
.static:after {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.2);
  display: none;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
}

main.processing .static:after {
  display: block;
}

/* Not Found */
main section.notfound h2 {
  padding: 40px 0 10px 0;
  display: bock;
  text-align: center;
  font-size: 40px;
  font-weight: normal;
  font-family: Century Gothic;
  color: #666;
}

main section.notfound p {
  display: block;
  text-align: center;
  margin: 40px 0;
}

/*----------------------------------------------------------------
8. SMP
----------------------------------------------------------------*/
@media screen and (max-width: 736px) {
  html, body {
    width: 100%;
    position: relative;
  }
  /* HEADER */
  header #global {
    margin-bottom: 0;
    min-width: 0;
    position: absolute;
    width: 100%;
    overflow: visible;
    z-index: 1;
  }
  header #global h1 {
    margin: 0;
    letter-spacing: 0;
    width: 70%;
  }
  header #global nav.path {
    margin: 0;
    width: 20%;
    float: right;
  }
  header #global nav.path.open ul {
    left: 0;
  }
  header #global nav.path .toggle {
    display: block;
    background-color: #2d2e46;
    height: 40px;
    width: 40px;
    box-sizing: border-box;
    margin: 10px auto;
    cursor: pointer;
    background-image: url(../images/arrow-white-down.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 70%;
  }
  header #global nav.path ul {
    position: absolute;
    left: -100%;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    top: 60px;
  }
  header #global nav.path ul li {
    margin: 0;
    float: none;
    border-bottom: 1px solid #ddd;
    overflow: hidden;
    background-color: white;
  }
  header #global nav.path ul li a {
    margin: 5px 0;
    border-radius: 0;
    line-height: normal !important;
    padding: 10px 16px;
    background-color: transparent;
    background-size: contain !important;
    padding-left: 70px !important;
  }
  header #global nav.path ul li.home {
    display: none;
  }
  header #global nav.path ul li.search {
    text-align: right;
  }
  header #global nav.path ul li.helmet a {
    background-image: url(../images/icon-helmet.png);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: 15px center;
    padding-left: 50px;
  }
  header #global nav.path ul li.special a {
    background-image: url(../images/icon-special.png);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: 15px center;
    padding-left: 50px;
  }
  header #global nav.path ul li.active a {
    background-color: transparent !important;
    border: 0 !important;
    box-shadow: none;
    margin: 5px 0 !important;
  }
  header #global nav.path ul li.active a:after {
    content: "選択中";
    background-color: #67a200;
    color: white;
    font-size: 10px;
    padding: 3px 6px;
    border-radius: 4px;
    margin-left: 10px;
  }
  /* ASIDE */
  aside.global {
    background-color: var(--theme-black-color2);
  }
  aside.global nav {
    height: 0;
  }
  aside.global nav ul {
    overflow: hidden;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 10px;
    gap: 10px;
  }
  aside.global nav ul li {
    display: block;
    flex-shrink: 1;
    border-radius: 4px;
    overflow: hidden;
  }
  aside.global nav ul li.active a {
    background-color: #f2eeeb;
  }
  aside.global nav ul li.active a:hover {
    background-color: #f2eeeb;
  }
  aside.global nav ul li a {
    display: block;
    height: 100%;
    line-height: 50px;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    background-color: white;
    box-sizing: border-box;
    font-weight: 400;
    overflow: hidden;
    padding: 0 40px;
  }
  aside.global nav ul li a:hover {
    background-color: #d25c78;
    color: white;
  }
  /* CONTENTS */
  main {
    padding-top: 60px;
  }
  main div.view {
    padding: 5px;
  }
  main div.view div.row {
    margin-left: 0;
  }
  main div.view > div.row {
    padding-left: 0;
    border: 0 !important;
    margin-bottom: 10px;
  }
  main div.view > div.row > strong {
    display: block;
    position: static;
    transform: none;
    width: auto;
    text-align: left;
    border-bottom: 1px solid #ddd;
    font-weight: bolder;
    padding-left: 0;
    margin-bottom: 5px;
  }
  main div.view > div.row > p {
    margin-left: 0;
    padding: 0 0 5px 0;
  }
  main div.view > div.row:before {
    display: none;
  }
  main div.view div.row div.row {
    margin-left: inherit;
  }
  main div.view div.row div.row strong {
    width: 25%;
  }
  main div.view div.row div.row {
    padding-left: 27%;
  }
  main div.view.field.primary div.row.liquid > div.row {
    float: left;
    width: 49%;
    padding-left: 55px;
    box-sizing: border-box;
  }
  main div.view.field.primary div.row.liquid > div.row p {
    padding: 0;
  }
  main div.view.field.primary div.row.liquid > div.row strong {
    width: 45px;
    position: absolute;
    display: block;
    top: 50%;
    padding: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
  }
  main div.view.field.primary div.row .fileatach span.preview {
    max-width: 100px;
    width: 100%;
  }
  main div.view.field.primary div.row.liquid > div.row.fileatach {
    width: 100%;
    margin-right: 0;
  }
  main div.view.field div.fileatach.on span.clear {
    float: none;
    display: inline-block;
    box-sizing: border-box;
    width: 24px;
    background-size: 10px;
  }
  main div.view.field div.fileatach input.imageclear {
    width: 0;
  }
  main div.view.field div.row.feedetail div.row {
    margin-bottom: 0;
    padding-left: 34%;
  }
  main div.view.field div.row.feedetail div.row strong {
    width: 33%;
  }
  main div.view.field.primary div.row.liquid > div.row.newline {
    clear: none;
  }
  main div.view div.row div.images {
    margin-left: 0;
    padding: 0;
  }
  main div.view div.row div.images div.fileatach {
    width: 49%;
    margin-right: 2%;
    min-height: 0;
  }
  main div.view div.row div.images div.fileatach:nth-child(2n) {
    margin: 0;
  }
  main div.view.field.primary div.row .fileatach span.preview {
    width: 150px !important;
    max-width: 100%;
    height: 150px !important;
  }
  main div.view div.row div.images div.image {
    width: 49%;
    margin-right: 2%;
  }
  main div.view div.row div.images div.image:nth-child(2n) {
    margin-right: 0;
  }
  main div.view div.row div.images div.image {
    height: 150px;
  }
  main div.view div.row div.image a:after {
    content: "＋";
    position: absolute;
    right: 5px;
    top: 0;
    background-color: #798e22;
    border: 1px solid #798e22;
    color: white;
    border-top: 0;
    padding: 2px 6px;
    transition: all 0.2s ease;
  }
  main header#local h1 {
    font-size: 12px;
    margin-left: 30px;
    line-height: 125%;
    word-wrap: break-word;
    padding-right: 0;
  }
  main header#local {
    padding: 10px 0;
    padding-right: 46px;
    background-size: 25px;
    background-position: 98% center;
    margin-bottom: 10px;
  }
  main header#local > a {
    width: 30px;
  }
  main section {
    width: auto;
    margin: 0 5px;
  }
  .home main section ul.area_switch {
    margin: 10px 0;
  }
  .home main section ul.area_switch li {
    float: none;
    width: auto;
    margin: 0;
    margin-bottom: 10px;
  }
  .home main section ul.area_switch li a {
    padding: 20px 10px;
    background-position: 10px center;
    background-size: contain;
    text-align: left;
    padding-left: 100px;
    font-size: 12px;
  }
  main section.toolbar {
    position: relative;
    padding: 0;
    margin-bottom: 3px;
  }
  main section.toolbar:after {
    content: "";
    clear: both;
    display: block;
  }
  main sectionul li {
    padding-left: 5px;
    margin: 2px auto;
  }
  main sectionul {
    overflow: hidden;
  }
  main sectiondiv.left {
    float: none;
    width: 100%;
    padding-right: 32px;
    overflow: hidden;
  }
  main sectiondiv.left .toggle {
    box-sizing: border-box;
    overflow: hidden;
  }
  main sectiondiv.left .toggle {
    width: 26px;
    height: 26px;
    margin: 0;
    background-image: url(../images/dots-vertical.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px;
    position: absolute;
    right: 0;
  }
  main sectiondiv.left .print {
    display: none;
  }
  main sectiondiv.right {
    float: none;
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  main sectiondiv.right.open {
    height: auto;
    padding: 0;
    padding-bottom: 0;
  }
  main sectiondiv.right ul {
    background-color: white;
    box-sizing: border-box;
    overflow: hidden;
  }
  main sectiondiv.right ul li {
    float: none;
    padding: 0;
  }
  main sectiondiv.right ul li select {
    width: auto;
  }
  main sectioninput.submit {
    background-size: 6px;
  }
  main section.message {
    padding: 0 3px;
  }
  main section.message ul {
    margin: 5px;
    background-color: transparent;
    margin-bottom: 0;
  }
  main section.message ul li {
    padding-left: 0;
  }
  main section.search-condition-panel form {
    margin: 0;
  }
  main section.search-condition-panel div.view div.row {
    padding-left: 21%;
    margin-bottom: 0 !important;
  }
  main section.search-condition-panel div.view div.row strong {
    width: 20%;
  }
  main section.search-condition-panel div.view div.row.fieldset input[type=text] {
    width: 30%;
  }
  main section.search-condition-panel div.view div.row label {
    margin-right: 0;
  }
  main ul.sortlink {
    margin: 5px;
    margin-bottom: 10px;
  }
  main ul.sortlink li {
    margin-right: 8px;
  }
  main div.data table tr td:nth-child(2):before {
    font-size: 9px;
  }
  main div.data table th,
  main div.data table td {
    padding: 2px;
    line-height: normal;
  }
  main div.data table th a {
    text-decoration: underline;
  }
  main div.data table tr:hover {
    background-color: transparent;
  }
  main div.data table .id {
    width: 6ex;
    text-align: center;
    display: none;
  }
  main div.data table .date {
    width: 12ex;
  }
  main div.data table .num {
    text-align: center;
    width: 4ex;
  }
  main div.data table .control {
    width: 6ex;
    background-color: #b5d343;
    font-weight: bolder;
  }
  main div.data table .control a {
    border: 0;
    color: white;
    border-radius: 0;
  }
  main div.data table .edit span.toolbox {
    display: inline-block;
    position: relative;
    top: auto;
    left: auto;
    margin-left: 5px;
    width: auto;
  }
  main div.data table .edit .toolbox span.button {
    background-size: contain;
    width: 13px;
    height: 13px;
    border-radius: 3px;
    display: inline-block;
    border: 0;
    background-color: #b5d343;
    margin-right: 5px;
  }
  main div.data table .edit:hover span.toolbox {
    display: inline-block;
  }
  main div.data table .edit .toolbox span.button.edit {
    border-radius: 50%;
    background-size: 80%;
    background-position: center center;
    background-image: url(../images/icon-pen-wht.png);
  }
  main div.data div.tile {
    padding: 0px;
  }
  main div.data div.tile div.unit {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 10px;
  }
  main div.data div.tile div.unit:nth-child(4n+1) {
    clear: none;
  }
  main div.data div.tile div.unit:nth-child(2n) {
    margin-right: 0;
  }
  main div.data div.tile div.unit:nth-child(2n+1) {
    clear: both;
  }
  main div.data div.tile div.unit a .thumbnail {
    min-height: 150px;
  }
  main div.data div.tile div.unit a .thumbnail:after {
    content: "タップで詳細";
    top: 0;
  }
  main div.data div.tile div.unit div.orderdate {
    left: 5px;
  }
  main div.data div.tile div.unit div.orderdate span.year {
    font-size: 8px;
  }
  main div.data div.tile div.unit div.orderdate span.date {
    font-size: 10px;
  }
  /* NAV */
  main div.data nav.pager {
    margin-bottom: 10px;
  }
  main div.data nav.pager ul li a {
    padding: 4px 5px;
  }
  /* FOOTER */
  footer small {
    font-size: 6px;
  }
}
/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
/*********************
DESKTOP
*********************/
/*@media only screen and (min-width: 769px) {
	@import "breakpoints/pc";

}*/