@charset "UTF-8";

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  line-height: 1.5;
  font-family: 'Noto Sans Japanese', sans-serif;
  font-size: 14px;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: #333;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

input[type="text"],
input[type="password"],
textarea {
  border: 1px solid #ccc;
  font-size: 1em;
  padding: 0.25em 0.5em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 5px;
}

input[type="checkbox"]:checked {
  background-image: -webkit-gradient(linear, left bottom, left top, from(#00397b), to(#01afeb));
  background-image: linear-gradient(to top, #00397b 0%, #01afeb 100%);
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 1em;
  border: 1px solid #336b87;
  background-color: #336b87;
  color: #fff;
  padding: 0.25em 1em;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
  border-radius: 5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

button:hover {
  background-color: #fff;
  color: #336b87;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 1.2em;
  border: 1px solid #ccc;
  padding: 0.25em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*
----------
ログイン画面
----------
*/

.login-title {
  text-align: center;
  font-size: 1.6em;
  padding: 30px;
}

.login-title > span.sub {
  display: block;
  font-size: 0.7em;
  margin-top: 0.5em;
}

#login-form {
  width: 100%;
  max-width: 300px;
  margin: auto;
}

.input-area > .inner > .body {
  margin-bottom: 15px;
}

.input-area > .inner > .body .input > input {
  width: 100%;
}

.login-button {
  margin: 15px auto;
  text-align: center;
  position: relative;
  padding-bottom: 80px;
}

.login-button > div {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.alert {
  background-color: #fdd;
  padding: 15px 15px;
  width: 100%;
  max-width: 300px;
  margin: 0 auto 2em;
}

.alert .alert-title {
  font-weight: bold;
  color: #f00;
  margin-bottom: 5px;
  text-align: center;
}

.alert .alert-body {
  font-size: 0.9em;
}

body.master .alert {
  max-width: 100%;
  padding-left: 30px;
}

body.master .error {
  background-color: #fdd;
  padding: 3px 5px;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 0.9em;
}

body.master .success-message {
  background-color: #daecd8;
  color: #398a33;
  padding: 5px 10px;
  margin-top: 5px;
  margin-bottom: 5px;
  font-weight: bold;
}

/*
----------
管理画面共通
----------
*/

body.master {
  position: relative;
}

body.master header {
  position: fixed;
  width: 100%;
  background-color: #763626;
  z-index: 999999;
}

body.master header a {
  color: #fff;
}

body.master header .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #2a3132;
  padding: 8px 25px;
}

body.master header .head .logo {
  font-weight: bold;
}

body.master header .head .logout::before {
  content: "\F2F5";
  font-family: "Font Awesome 5 Free";
  color: #fff;
  font-weight: bold;
  margin-right: 5px;
}

body.master header .gloabal-navigation {
  padding: 8px 25px;
  color: #fff;
}

body.master header .gloabal-navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

body.master header .gloabal-navigation ul li {
  margin-right: 20px;
}

body.master ul.menu li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  margin-right: 5px;
}

body.master ul.menu li.product::before {
  content: "\F085";
}

body.master ul.menu li.review::before {
  content: "\F022";
}

body.master ul.menu li.shipment::before {
  content: "\F48B";
}

body.master ul.menu li.account::before {
  content: "\F406";
}

body.master ul.menu li.guest::before {
  content: "\F500";
}

body.master .main {
  padding: 90px 25px 50px;
  min-height: 100vh;
  position: relative;
}

@media (max-width: 600px) {
  body.master .main {
    padding-top: 120px;
  }
}

body.master footer {
  background-color: #2a3132;
  padding: 8px 25px;
  color: #fff;
  text-align: right;
  width: 100%;
  position: absolute;
  bottom: 0;
}

/*
ダッシュボード用
*/

body.master .main .message {
  margin-bottom: 15px;
}

body.master .main .list > ul li {
  margin-bottom: 10px;
}

body.master .main > .inner > .title {
  margin-bottom: 15px;
  position: relative;
}

body.master .main > .inner > .title > span {
  font-size: 1.4em;
  font-weight: bold;
}

body.master .main > .inner > .title > span.add {
  font-size: 1em;
  font-weight: normal;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

body.master .main > .inner > .title > span.add a {
  border: 1px solid #336b87;
  background-color: #336b87;
  color: #fff;
  padding: 3px 10px;
  border-radius: 5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body.master .main > .inner > .title > span.add a::before {
  content: "\F0FE";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  margin-right: 5px;
}

body.master .main > .inner > .title > span.add a:hover {
  text-decoration: none;
  background-color: #fff;
  color: #336b87;
}

body.master .main > .inner > .body.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

body.master .main > .inner > .body.column2 > div:first-of-type {
  min-width: 200px;
}

body.master .main > .inner > .body.column2 > div:last-of-type {
  width: calc(100% - 240px);
  min-width: 320px;
}

@media (max-width: 600px) {
  body.master .main > .inner > .body.column2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  body.master .main > .inner > .body.column2 > div:first-of-type {
    width: 100%;
    margin-bottom: 40px;
  }

  body.master .main > .inner > .body.column2 > div:last-of-type {
    width: 100%;
    min-width: auto;
    margin-bottom: 40px;
  }
}

body.master .main > .inner .body.column2-reverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

body.master .main > .inner .body.column2-reverse > div:first-of-type {
  width: calc(100% - 150px);
  min-width: 320px;
}

body.master .main > .inner .body.column2-reverse > div:last-of-type {
  min-width: 150px;
}

body.master .main > .inner .body.column2-reverse {
  position: relative;
}

body.master .main > .inner .body.column2 div:first-of-type .sticky,
body.master .main > .inner .body.column2-reverse div:last-of-type .sticky {
  position: -webkit-sticky;
  position: sticky;
  margin-bottom: 0;
  top: 90px;
  z-index: 1;
}

@media (max-width: 600px) {
  body.master .main > .inner .body.column2-reverse {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  body.master .main > .inner .body.column2-reverse > div:first-of-type {
    width: 100%;
    min-width: auto;
    margin-bottom: 40px;
  }

  body.master .main > .inner .body.column2-reverse > div:last-of-type {
    width: 100%;
    margin-bottom: 40px;
  }
}

/* 一覧のメモ用 */

body.master .main > .inner > .body.column2 > div.list .message {
  margin-top: 15px;
  margin-bottom: 15px;
}

body.master .main > .inner > .body.column2 > div.list .message > .title {
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 5px;
}

body.master .main > .inner > .body.column2 > div.list .message > .body > span {
  font-weight: bold;
  color: #f00;
}

/*
商品一覧用
*/

/* 検索条件*/

body.master .main > .inner > .body .search .title {
  font-weight: bold;
  border-bottom: 2px solid #763626;
  padding-bottom: 3px;
  margin-bottom: 10px;
}

body.master .main > .inner > .body .search .body .conditions {
  margin-bottom: 30px;
}

body.master .main > .inner > .body .search .body .conditions > .wrap {
  margin-bottom: 10px;
}

body.master .main > .inner > .body .search .body .conditions > .wrap .name {
  font-weight: bold;
  margin-bottom: 5px;
}

body.master .main > .inner > .body .search .body .conditions > .wrap .input input {
  width: 100%;
}

body.master .main > .inner > .body .search .body .buttons > div {
  margin-bottom: 15px;
}

body.master .main > .inner > .body .search .body .buttons > div button {
  width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body.master .main > .inner > .body .search .body .buttons > div button::before {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  margin-right: 10px;
  font-size: 0.9em;
}

body.master .main > .inner > .body .search .body .buttons > div.execute button::before {
  content: "\F0B0";
}

body.master .main > .inner > .body .search .body .buttons > div.reset button::before {
  content: "\F12D";
}

/*
発送一覧用
*/

body.master .main > .inner > .body .search .body .conditions > .wrap .input.between input {
  max-width: 90px;
}

/* 一覧 */

body.master .main > .inner > .body .list table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

body.master .main > .inner > .body .list table thead th {
  background-color: #763626;
  color: #fff;
  padding: 5px 10px;
  font-weight: normal;
  border: 1px solid #2a3132;
}

body.master .main > .inner > .body .list table tbody td {
  border: 1px solid #2a3132;
  padding: 5px 10px;
  vertical-align: middle;
}

body.master .main > .inner > .body .list table tbody td.product-number > span {
  word-wrap: break-word;
  display: inline-block;
  max-width: 160px;
}

body.master .main > .inner > .body .list table tbody td.product-name > span {
  word-wrap: break-word;
  display: inline-block;
  max-width: 350px;
}

body.master .main > .inner > .body .list table tbody td.maker-name > span {
  word-wrap: break-word;
  display: inline-block;
  max-width: 140px;
}

body.master .main > .inner > .body .list table .no {
  width: 60px;
  text-align: center;
}

body.master .main > .inner > .body .list table .product-number {
  width: 160px;
}

body.master .main > .inner > .body .list table .product-name {
  width: 350px;
}

body.master .main > .inner > .body .list table .maker-name {
  width: 140px;
}

body.master .main > .inner > .body .list table .status {
  width: 80px;
  text-align: center;
}

body.master .main > .inner > .body .list table .stock {
  width: 100px;
  text-align: center;
}

body.master .main > .inner > .body .list table .request {
  width: 100px;
  text-align: center;
}

body.master .main > .inner > .body .list table .operation {
  width: 160px;
  text-align: center;
}

body.master .main > .inner > .body .list table tbody .status > span::before {
  font-size: 0.9em;
  padding: 2px 10px;
  font-weight: bold;
  white-space: nowrap;
}

body.master .main > .inner > .body .list table tbody .status > span.on::before {
  content: "\63B2\8F09\4E2D";
  border: 1px solid #398a33;
  color: #398a33;
}

body.master .main > .inner > .body .list table tbody .status > span.off::before {
  content: "\672A\63B2\8F09";
  border: 1px solid #fc100d;
  color: #fc100d;
}

body.master .main > .inner > .body .list table .check {
  width: 80px;
  text-align: center;
}

body.master .main > .inner > .body .list table .order-number {
  width: 150px;
  text-align: center;
}

body.master .main > .inner > .body .list table .order-date {
  width: 220px;
  text-align: center;
}

body.master .main > .inner > .body .list table .order-name {
  width: 400px;
}

body.master .main > .inner > .body .list table tbody td.order-name > span {
  word-wrap: break-word;
  display: inline-block;
  max-width: 400px;
}

body.master .main > .inner > .body .list table .operation.one {
  width: 80px;
  text-align: center;
}

body.master .main > .inner > .body .list table .company-name {
  width: 350px;
}

body.master .main > .inner > .body .list table .department-name {
  width: 200px;
}

body.master .main > .inner > .body .list table tbody .status.guest > span.on::before {
  content: "\6709\52B9";
}

body.master .main > .inner > .body .list table tbody .status.guest > span.off::before {
  content: "\7121\52B9";
}

body.master .main > .inner > .body .list table .request .new,
body.master .main > .inner > .body .list table .request .upd,
body.master .main > .inner > .body .list table .request .del,
body.master .main > .inner > .body .list table .request .addout,
body.master .main > .inner > .body .list table .request .updout,
body.master .main > .inner > .body .list table .request .delout {
  font-weight: bold;
  white-space: nowrap;
}

body.master .main > .inner > .body .list table .request .new,
body.master .main > .inner > .body .list table .request .upd,
body.master .main > .inner > .body .list table .request .del {
  color: #398a33;
}

body.master .main > .inner > .body .list table .request .newout,
body.master .main > .inner > .body .list table .request .updout,
body.master .main > .inner > .body .list table .request .delout {
  color: #fc100d;
}

body.master .main > .inner > .body .list table .pay-state,
body.master .main > .inner > .body .list table .shipment-state,
body.master .main > .inner > .body .list table .cancel-state {
  width: 60px;
  text-align: center;
}

body.master .main > .inner > .body .list table tbody .pay-state > span::before,
body.master .main > .inner > .body .list table tbody .shipment-state > span::before,
body.master .main > .inner > .body .list table tbody .cancel-state > span::before {
  font-size: 0.9em;
  padding: 2px 10px;
  font-weight: bold;
  white-space: nowrap;
}

body.master .main > .inner > .body .list table tbody .pay-state > span.on::before,
body.master .main > .inner > .body .list table tbody .shipment-state > span.on::before,
body.master .main > .inner > .body .list table tbody .cancel-state > span.on::before {
  content: "\6E08";
  border: 1px solid #398a33;
  color: #398a33;
}

body.master .main > .inner > .body .list table tbody .pay-state > span.off::before,
body.master .main > .inner > .body .list table tbody .shipment-state > span.off::before,
body.master .main > .inner > .body .list table tbody .cancel-state > span.off::before {
  content: "\672A";
  border: 1px solid #fc100d;
  color: #fc100d;
}

body.master .main > .inner > .body .list table tbody .operation > .edit,
body.master .main > .inner > .body .list table tbody .operation > .copy,
body.master .main > .inner > .body .list table tbody .operation > .detail {
  border: 1px solid #336b87;
  border-radius: 5px;
  padding: 3px;
  display: inline-block;
  width: 6em;
  font-size: 0.85em;
  margin: 2px 5px;
  background-color: #336b87;
  color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body.master .main > .inner > .body .list table tbody .operation > .edit:hover,
body.master .main > .inner > .body .list table tbody .operation > .copy:hover,
body.master .main > .inner > .body .list table tbody .operation > .detail:hover {
  text-decoration: none;
  background-color: #fff;
  color: #336b87;
}

body.master .main > .inner > .body .list table tbody .operation > .edit::before,
body.master .main > .inner > .body .list table tbody .operation > .copy::before,
body.master .main > .inner > .body .list table tbody .operation > .detail::before {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  margin-right: 5px;
}

body.master .main > .inner > .body .list table tbody .operation > .edit::before {
  content: "\F044";
}

body.master .main > .inner > .body .list table tbody .operation > .copy::before {
  content: "\F0C5";
}

body.master .main > .inner > .body .list table tbody .operation > .detail::before {
  content: "\F05A";
}

@media (max-width: 600px) {
  body.master .main > .inner > .body .list .scroll table {
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}

/*
任意と必須マーク
*/

body.master .main > .inner form#form-input .wrap > .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body.master .main > .inner form#form-input .wrap.nolabel > .name {
  font-weight: bold;
}

body.master .main > .inner form#form-input .wrap.required .name::before,
body.master .main > .inner form#form-input .wrap:not(.required) .name::before {
  display: inline-block;
  width: 3em;
  text-align: center;
  padding: 1px 0;
  font-size: 0.8em;
  font-weight: normal;
  border-radius: 3px;
  margin-right: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body.master .main > .inner form#form-input .wrap.nolabel.required .name::before,
body.master .main > .inner form#form-input .wrap.nolabel:not(.required) .name::before {
  display: none;
}

body.master .main > .inner form#form-input .wrap .name::before {
  content: '\4EFB\610F';
  color: #398a33;
  background-color: #fff;
  border: 1px solid #398a33;
}

body.master .main > .inner form#form-input .wrap.required .name::before {
  content: '\5FC5\9808';
  color: #fff;
  background-color: #fc100d;
  border: 1px solid #fc100d;
}

/*
共通ページャー
*/

.pager {
  margin-bottom: 10px;
}

.pager .pager-in .pager-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.pager .pager-in .pager-body .count {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.pager .pager-in .pager-body ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.pager .pager-in .pager-body ul li a,
.pager .pager-in .pager-body ul li span {
  display: inline-block;
  text-align: center;
  width: 2em;
  padding: 0.25em;
  margin: 0 5px;
  border: 1px solid #336b87;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 5px;
}

.pager .pager-in .pager-body ul li span {
  color: #336b87;
}

.pager .pager-in .pager-body ul li a {
  background-color: #336b87;
  color: #fff;
}

.pager .pager-in .pager-body ul li a:hover {
  background-color: #fff;
  color: #336b87;
  text-decoration: none;
}

@media (max-width: 600px) {
  .pager .pager-in .pager-body ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 10px;
  }

  .pager .pager-in .pager-body ul li {
    margin-bottom: 5px;
  }
}

/*
レビュー
*/

body.master .main > .inner > .body .list .reviews .table-basic tr th.review-no {
  width: 50px;
  text-align: center;
}

body.master .main > .inner > .body .list .reviews .table-basic tr th.review-info {
  width: 450px;
  text-align: center;
}

body.master .main > .inner > .body .list .reviews .table-basic tr th.review-product {
  width: 300px;
  text-align: center;
}

body.master .main > .inner > .body .list .reviews .table-basic tr th.review-member {
  width: 350px;
  text-align: center;
}

body.master .main > .inner > .body .list .reviews .table-basic tr td.review-no {
  text-align: center;
}

body.master .main > .inner > .body .list .reviews .table-basic tr td.review-info {
  vertical-align: top;
}

body.master .main > .inner > .body .list .reviews .table-basic tr td.review-info .question-wrap:not(:last-of-type) {
  margin-bottom: 10px;
}

body.master .main > .inner > .body .list .reviews .table-basic tr td.review-info .question-wrap .question {
  font-weight: bold;
  border-bottom: 1px solid #763626;
  padding: 5px;
}

body.master .main > .inner > .body .list .reviews .table-basic tr td.review-info .question-wrap .answer {
  padding: 5px;
}

body.master .main > .inner > .body .list .reviews .table-basic tr td.review-info .question-wrap .question > span {
  color: #f00;
  text-shadow: 1px 1px 0 #fff,-1px 1px 0 #fff,1px -1px 0 #fff,-1px -1px 0 #fff;
}

body.master .main > .inner > .body .list .reviews .table-basic tr td.review-info .question-wrap .question::before {
  content: "Q.";
}

body.master .main > .inner > .body .list .reviews .table-basic tr td.review-info .question-wrap .answer::before {
  content: "A.";
}

body.master .main > .inner > .body .list .reviews .table-basic tr td.review-product {
  vertical-align: top;
  font-size: 0.95em;
}

body.master .main > .inner > .body .list .reviews .table-basic tr td.review-product .product-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #763626;
  padding-bottom: 5px;
  margin-bottom: 5px;
}

body.master .main > .inner > .body .list .reviews .table-basic tr td.review-product .product-wrap > div:not(.amount) {
  -ms-flex-preferred-size: calc(100% - 4em);
      flex-basis: calc(100% - 4em);
}

body.master .main > .inner > .body .list .reviews .table-basic tr td.review-product .product-wrap .amount {
  -ms-flex-preferred-size: 4em;
      flex-basis: 4em;
  -ms-flex-item-align: center;
      align-self: center;
  text-align: right;
}

body.master .main > .inner > .body .list .reviews .table-basic tr td.review-member {
  vertical-align: top;
  position: relative;
  padding-bottom: 3em;
}

body.master .main > .inner > .body .list .reviews .table-basic tr td.review-member > .inner,
body.master .main > .inner > .body .list .reviews .table-basic tr td.review-member > .inner > .text {
  position: static;
}

body.master .main > .inner > .body .list .reviews .table-basic tr td.review-member .member-wrap {
  font-size: 0.95em;
}

body.master .main > .inner > .body .list .reviews .table-basic tr td.review-member .member-wrap > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body.master .main > .inner > .body .list .reviews .table-basic tr td.review-member .member-wrap > div > span {
  word-wrap: break-word;
  padding: 5px;
}

body.master .main > .inner > .body .list .reviews .table-basic tr td.review-member .member-wrap > div > span:first-of-type {
  width: 6.5em;
  border-bottom: 1px solid #763626;
}

body.master .main > .inner > .body .list .reviews .table-basic tr td.review-member .member-wrap > div > span:last-of-type {
  width: calc(100% - 6.5em);
  border-bottom: 1px solid #763626;
}

body.master .main > .inner > .body .list .reviews .table-basic tr td.review-member .ans_date {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

/*
アカウント登録
*/

body.master .main > .inner .body .operation .buttons {
  text-align: right;
}

body.master .main > .inner .body .operation .buttons .save button::before {
  content: "\F0C7";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  margin-right: 5px;
}

body.master .main > .inner .body .input-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

body.master .main > .inner .body .input-area > .inner {
  min-width: 300px;
  max-width: 50%;
  width: 100%;
  padding: 0 30px 30px 0;
}

@media (max-width: 800px) {
  body.master .main > .inner .body .input-area > .inner {
    min-width: auto;
    max-width: 100%;
    width: 100%;
    padding: 0 0 30px;
  }
}

body.master .main > .inner .body .input-area > .inner > .title {
  font-weight: bold;
  border-bottom: 2px solid #763626;
  padding-bottom: 3px;
  margin-bottom: 10px;
}

body.master .main > .inner .body .input-area > .inner > .body > .wrap {
  margin-bottom: 10px;
}

body.master .main > .inner .body .input-area > .inner > .body > .wrap > .name {
  font-weight: bold;
  margin-bottom: 5px;
}

body.master .main > .inner .body .input-area > .inner > .body > .wrap > .input input {
  width: 100%;
}

body.master .main > .inner .body .input-area > .inner > .body > .wrap > .input.short input {
  max-width: 10em;
}

body.master .main > .inner .body .input-area > .inner > .body > .wrap > .input.middle input {
  max-width: 20em;
}

body.master .main > .inner .body .input-area > .inner > .body > .wrap > .input textarea {
  width: 100%;
  height: 8em;
}

body.master .main > .inner .body .input-area > .inner > .body > .wrap > .input.with-title {
  margin-bottom: 10px;
}

body.master .main > .inner .body .input-area > .inner > .body > .wrap > .input.with-title > input {
  width: calc(100% - 8em);
}

body.master .main > .inner .body .input-area > .inner > .body > .wrap > .input.with-title > span {
  display: inline-block;
  margin-right: 10px;
}

body.master .main > .inner .body .input-area > .inner > .body > .wrap > .note {
  font-size: 0.9em;
  color: #666;
  margin-top: 5px;
}

/*
出荷詳細
*/

body.master .main > .inner .body .input-area table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

body.master .main > .inner .body .input-area table thead th {
  background-color: #763626;
  color: #fff;
  padding: 5px 10px;
  font-weight: normal;
  border: 1px solid #2a3132;
}

body.master .main > .inner .body .input-area table tbody td {
  border: 1px solid #2a3132;
  padding: 5px 10px;
  vertical-align: middle;
}

body.master#shipment-detail .main > .inner .body .input-area .inner:not(:first-of-type) {
  width: 33%;
  min-width: auto;
}

body.master#shipment-detail .main > .inner .body .input-area .inner:first-of-type {
  max-width: 100%;
}

body.master#shipment-detail .main > .inner .body .input-area table.total {
  max-width: 700px;
}

body.master#shipment-detail .main > .inner .body .input-area table.detail_list .maker_name {
  width: 120px;
}

body.master#shipment-detail .main > .inner .body .input-area table.detail_list .product_number {
  width: 120px;
}

body.master#shipment-detail .main > .inner .body .input-area table.detail_list .product_name {
  width: 260px;
}

body.master#shipment-detail .main > .inner .body .input-area table.detail_list .price {
  width: 100px;
}

body.master#shipment-detail .main > .inner .body .input-area table.detail_list .amount {
  width: 60px;
}

body.master#shipment-detail .main > .inner .body .input-area table.detail_list .discount {
  width: 100px;
}

body.master#shipment-detail .main > .inner .body .input-area table.detail_list .discount.exists {
  color: #f00;
}

body.master#shipment-detail .main > .inner .body .input-area table.detail_list .subtotal {
  width: 100px;
}

body.master#shipment-detail .main > .inner .body .input-area table.detail_list .shipping_price {
  width: 80px;
}

body.master#shipment-detail .main > .inner .body .input-area table.detail_list .tax {
  width: 80px;
}

body.master#shipment-detail .main > .inner .body .input-area table.detail_list .shipment_plan_date {
  width: 80px;
}

body.master#shipment-detail .main > .inner .body .input-area table.detail_list .shipment_plan_date input {
  width: 7em;
}

body.master#shipment-detail .main > .inner .body .input-area table.detail_list .shipment_date {
  width: 80px;
}

body.master#shipment-detail .main > .inner .body .input-area table.detail_list .shipment_date input {
  width: 7em;
}

body.master#shipment-detail .main > .inner .body .input-area table.detail_list .shipment_status {
  width: 80px;
}

body.master#shipment-detail .main > .inner .body .input-area table.detail_list td.price,
body.master#shipment-detail .main > .inner .body .input-area table.detail_list td.amount,
body.master#shipment-detail .main > .inner .body .input-area table.detail_list td.discount,
body.master#shipment-detail .main > .inner .body .input-area table.detail_list td.subtotal,
body.master#shipment-detail .main > .inner .body .input-area table.detail_list td.tax,
body.master#shipment-detail .main > .inner .body .input-area table.detail_list td.shipping_price {
  text-align: right;
}

body.master#shipment-detail .main > .inner .body .input-area table.detail_list .shipment_plan_date,
body.master#shipment-detail .main > .inner .body .input-area table.detail_list .shipment_date,
body.master#shipment-detail .main > .inner .body .input-area table.detail_list .shipment_status {
  text-align: center;
}

body.master#shipment-detail .main > .inner .body .input-area table.total .product_sum {
  width: 100px;
}

body.master#shipment-detail .main > .inner .body .input-area table.total .shipping_sum {
  width: 100px;
}

body.master#shipment-detail .main > .inner .body .input-area table.total .discount_sum {
  width: 100px;
}

body.master#shipment-detail .main > .inner .body .input-area table.total .discount_sum.exists {
  color: #f00;
}

body.master#shipment-detail .main > .inner .body .input-area table.total .tax_sum {
  width: 100px;
}

body.master#shipment-detail .main > .inner .body .input-area table.total .total_sum {
  width: 100px;
}

body.master#shipment-detail .main > .inner .body .input-area table.total td.product_sum,
body.master#shipment-detail .main > .inner .body .input-area table.total td.shipping_sum,
body.master#shipment-detail .main > .inner .body .input-area table.total td.discount_sum,
body.master#shipment-detail .main > .inner .body .input-area table.total td.discount_sum.exists,
body.master#shipment-detail .main > .inner .body .input-area table.total td.tax_sum,
body.master#shipment-detail .main > .inner .body .input-area table.total td.total_sum {
  text-align: right;
}

@media (max-width: 600px) {
  body.master#shipment-detail .main > .inner .body .input-area .inner:not(:last-of-type) {
    width: 100%;
  }

  body.master .main > .inner .body .input-area .scroll table {
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}

.select3 {
  font-size: 0.9em;
  padding: 5px 20px 5px 5px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

.select3-wrap {
  position: relative;
}

.select3-wrap::after {
  content: "\25BC";
  position: absolute;
  top: 50%;
  right: 5px;
  font-size: 0.6em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #999;
  pointer-events: none;
}

input[data-role=default],
input[data-role=add],
input[data-role=edit],
input[data-role=copy],
input[data-role=save],
input[data-role=toggle],
input[data-role=up],
input[data-role=down],
input[data-role=delete],
input[data-role=file-delete],
input[data-role=file-select],
input[data-role=file-download],
input[data-role=close],
input[data-role=reset],
input[data-role=preview],
input[data-role=back],
input[data-role=logout],
input[data-role=popup],
button[data-role=default],
button[data-role=add],
button[data-role=edit],
button[data-role=copy],
button[data-role=save],
button[data-role=toggle],
button[data-role=up],
button[data-role=down],
button[data-role=delete],
button[data-role=file-delete],
button[data-role=file-select],
button[data-role=file-download],
button[data-role=close],
button[data-role=reset],
button[data-role=preview],
button[data-role=back],
button[data-role=logout],
button[data-role=popup],
a[data-role=default],
a[data-role=add],
a[data-role=edit],
a[data-role=copy],
a[data-role=save],
a[data-role=toggle],
a[data-role=up],
a[data-role=down],
a[data-role=delete],
a[data-role=file-delete],
a[data-role=file-select],
a[data-role=file-download],
a[data-role=close],
a[data-role=reset],
a[data-role=preview],
a[data-role=back],
a[data-role=logout],
a[data-role=popup],
span[data-role=default],
span[data-role=add],
span[data-role=edit],
span[data-role=copy],
span[data-role=save],
span[data-role=toggle],
span[data-role=up],
span[data-role=down],
span[data-role=delete],
span[data-role=file-delete],
span[data-role=file-select],
span[data-role=file-download],
span[data-role=close],
span[data-role=reset],
span[data-role=preview],
span[data-role=back],
span[data-role=logout],
span[data-role=popup] {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  zoom: 1;
  display: inline-block;
  *display: inline;
  zoom: 1;
  position: relative;
  padding: 0.75em 2.25em 0.75em 1.25em;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
  background: #6d747b;
  -webkit-box-shadow: 0 2px 0px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0 2px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 0px rgba(0, 0, 0, 0.15);
  line-height: 1.48;
  font-style: normal;
  font-family: inherit;
  font-size: 13px;
  font-weight: normal;
  text-decoration: none;
  vertical-align: middle;
  letter-spacing: normal;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  cursor: pointer;
}

input[data-role=default]::before,
input[data-role=add]::before,
input[data-role=edit]::before,
input[data-role=copy]::before,
input[data-role=save]::before,
input[data-role=toggle]::before,
input[data-role=up]::before,
input[data-role=down]::before,
input[data-role=delete]::before,
input[data-role=file-delete]::before,
input[data-role=file-select]::before,
input[data-role=file-download]::before,
input[data-role=close]::before,
input[data-role=reset]::before,
input[data-role=preview]::before,
input[data-role=back]::before,
input[data-role=logout]::before,
input[data-role=popup]::before,
button[data-role=default]::before,
button[data-role=add]::before,
button[data-role=edit]::before,
button[data-role=copy]::before,
button[data-role=save]::before,
button[data-role=toggle]::before,
button[data-role=up]::before,
button[data-role=down]::before,
button[data-role=delete]::before,
button[data-role=file-delete]::before,
button[data-role=file-select]::before,
button[data-role=file-download]::before,
button[data-role=close]::before,
button[data-role=reset]::before,
button[data-role=preview]::before,
button[data-role=back]::before,
button[data-role=logout]::before,
button[data-role=popup]::before,
a[data-role=default]::before,
a[data-role=add]::before,
a[data-role=edit]::before,
a[data-role=copy]::before,
a[data-role=save]::before,
a[data-role=toggle]::before,
a[data-role=up]::before,
a[data-role=down]::before,
a[data-role=delete]::before,
a[data-role=file-delete]::before,
a[data-role=file-select]::before,
a[data-role=file-download]::before,
a[data-role=close]::before,
a[data-role=reset]::before,
a[data-role=preview]::before,
a[data-role=back]::before,
a[data-role=logout]::before,
a[data-role=popup]::before,
span[data-role=default]::before,
span[data-role=add]::before,
span[data-role=edit]::before,
span[data-role=copy]::before,
span[data-role=save]::before,
span[data-role=toggle]::before,
span[data-role=up]::before,
span[data-role=down]::before,
span[data-role=delete]::before,
span[data-role=file-delete]::before,
span[data-role=file-select]::before,
span[data-role=file-download]::before,
span[data-role=close]::before,
span[data-role=reset]::before,
span[data-role=preview]::before,
span[data-role=back]::before,
span[data-role=logout]::before,
span[data-role=popup]::before {
  content: "";
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  zoom: 1;
  display: inline-block;
  *display: inline;
  zoom: 1;
  position: relative;
  line-height: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: inherit;
  color: inherit;
}

input[data-role=default]::after,
input[data-role=add]::after,
input[data-role=edit]::after,
input[data-role=copy]::after,
input[data-role=save]::after,
input[data-role=toggle]::after,
input[data-role=up]::after,
input[data-role=down]::after,
input[data-role=delete]::after,
input[data-role=file-delete]::after,
input[data-role=file-select]::after,
input[data-role=file-download]::after,
input[data-role=close]::after,
input[data-role=reset]::after,
input[data-role=preview]::after,
input[data-role=back]::after,
input[data-role=logout]::after,
input[data-role=popup]::after,
button[data-role=default]::after,
button[data-role=add]::after,
button[data-role=edit]::after,
button[data-role=copy]::after,
button[data-role=save]::after,
button[data-role=toggle]::after,
button[data-role=up]::after,
button[data-role=down]::after,
button[data-role=delete]::after,
button[data-role=file-delete]::after,
button[data-role=file-select]::after,
button[data-role=file-download]::after,
button[data-role=close]::after,
button[data-role=reset]::after,
button[data-role=preview]::after,
button[data-role=back]::after,
button[data-role=logout]::after,
button[data-role=popup]::after,
a[data-role=default]::after,
a[data-role=add]::after,
a[data-role=edit]::after,
a[data-role=copy]::after,
a[data-role=save]::after,
a[data-role=toggle]::after,
a[data-role=up]::after,
a[data-role=down]::after,
a[data-role=delete]::after,
a[data-role=file-delete]::after,
a[data-role=file-select]::after,
a[data-role=file-download]::after,
a[data-role=close]::after,
a[data-role=reset]::after,
a[data-role=preview]::after,
a[data-role=back]::after,
a[data-role=logout]::after,
a[data-role=popup]::after,
span[data-role=default]::after,
span[data-role=add]::after,
span[data-role=edit]::after,
span[data-role=copy]::after,
span[data-role=save]::after,
span[data-role=toggle]::after,
span[data-role=up]::after,
span[data-role=down]::after,
span[data-role=delete]::after,
span[data-role=file-delete]::after,
span[data-role=file-select]::after,
span[data-role=file-download]::after,
span[data-role=close]::after,
span[data-role=reset]::after,
span[data-role=preview]::after,
span[data-role=back]::after,
span[data-role=logout]::after,
span[data-role=popup]::after {
  content: "";
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  zoom: 1;
  display: inline-block;
  *display: inline;
  zoom: 1;
  position: absolute;
  top: 50%;
  right: 1em;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-size: 0.85em;
  font-weight: bold;
  text-align: center;
}

input[data-role=default]:hover,
input[data-role=add]:hover,
input[data-role=edit]:hover,
input[data-role=copy]:hover,
input[data-role=save]:hover,
input[data-role=toggle]:hover,
input[data-role=up]:hover,
input[data-role=down]:hover,
input[data-role=delete]:hover,
input[data-role=file-delete]:hover,
input[data-role=file-select]:hover,
input[data-role=file-download]:hover,
input[data-role=close]:hover,
input[data-role=reset]:hover,
input[data-role=preview]:hover,
input[data-role=back]:hover,
input[data-role=logout]:hover,
input[data-role=popup]:hover,
button[data-role=default]:hover,
button[data-role=add]:hover,
button[data-role=edit]:hover,
button[data-role=copy]:hover,
button[data-role=save]:hover,
button[data-role=toggle]:hover,
button[data-role=up]:hover,
button[data-role=down]:hover,
button[data-role=delete]:hover,
button[data-role=file-delete]:hover,
button[data-role=file-select]:hover,
button[data-role=file-download]:hover,
button[data-role=close]:hover,
button[data-role=reset]:hover,
button[data-role=preview]:hover,
button[data-role=back]:hover,
button[data-role=logout]:hover,
button[data-role=popup]:hover,
a[data-role=default]:hover,
a[data-role=add]:hover,
a[data-role=edit]:hover,
a[data-role=copy]:hover,
a[data-role=save]:hover,
a[data-role=toggle]:hover,
a[data-role=up]:hover,
a[data-role=down]:hover,
a[data-role=delete]:hover,
a[data-role=file-delete]:hover,
a[data-role=file-select]:hover,
a[data-role=file-download]:hover,
a[data-role=close]:hover,
a[data-role=reset]:hover,
a[data-role=preview]:hover,
a[data-role=back]:hover,
a[data-role=logout]:hover,
a[data-role=popup]:hover,
span[data-role=default]:hover,
span[data-role=add]:hover,
span[data-role=edit]:hover,
span[data-role=copy]:hover,
span[data-role=save]:hover,
span[data-role=toggle]:hover,
span[data-role=up]:hover,
span[data-role=down]:hover,
span[data-role=delete]:hover,
span[data-role=file-delete]:hover,
span[data-role=file-select]:hover,
span[data-role=file-download]:hover,
span[data-role=close]:hover,
span[data-role=reset]:hover,
span[data-role=preview]:hover,
span[data-role=back]:hover,
span[data-role=logout]:hover,
span[data-role=popup]:hover {
  opacity: 0.6;
}

input[data-role=default]::after,
button[data-role=default]::after,
a[data-role=default]::after,
span[data-role=default]::after {
  content: "\F105";
}

input[data-role=add]::after,
button[data-role=add]::after,
a[data-role=add]::after,
span[data-role=add]::after {
  content: "\F067";
}

input[data-role=edit]::after,
button[data-role=edit]::after,
a[data-role=edit]::after,
span[data-role=edit]::after {
  content: "\F040";
}

input[data-role=copy]::after,
button[data-role=copy]::after,
a[data-role=copy]::after,
span[data-role=copy]::after {
  content: "\F0C5";
}

input[data-role=save],
button[data-role=save],
a[data-role=save],
span[data-role=save] {
  border-color: rgba(0, 0, 0, 0.05);
  background: #037e94;
  -webkit-box-shadow: 0 2px 0px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0 2px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 0px rgba(0, 0, 0, 0.15);
  color: #fff;
}

input[data-role=save]::after,
button[data-role=save]::after,
a[data-role=save]::after,
span[data-role=save]::after {
  content: "\F0C7";
}

input[data-role=save][disabled],
button[data-role=save][disabled],
a[data-role=save][disabled],
span[data-role=save][disabled] {
  background: #6d747b;
  opacity: 0.6;
}

input[data-role=toggle]::after,
button[data-role=toggle]::after,
a[data-role=toggle]::after,
span[data-role=toggle]::after {
  content: "\F06E";
}

input[data-role=up]::after,
button[data-role=up]::after,
a[data-role=up]::after,
span[data-role=up]::after {
  content: "\F106";
}

input[data-role=down]::after,
button[data-role=down]::after,
a[data-role=down]::after,
span[data-role=down]::after {
  content: "\F107";
}

input[data-role=delete],
input[data-role=file-delete],
button[data-role=delete],
button[data-role=file-delete],
a[data-role=delete],
a[data-role=file-delete],
span[data-role=delete],
span[data-role=file-delete] {
  border-color: rgba(0, 0, 0, 0.05);
  background: #e83a26;
  -webkit-box-shadow: 0 2px 0px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0 2px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 0px rgba(0, 0, 0, 0.15);
  color: #fff;
}

input[data-role=delete]::after,
input[data-role=file-delete]::after,
button[data-role=delete]::after,
button[data-role=file-delete]::after,
a[data-role=delete]::after,
a[data-role=file-delete]::after,
span[data-role=delete]::after,
span[data-role=file-delete]::after {
  content: "\F2ED";
}

input[data-role=reset]::after,
button[data-role=reset]::after,
a[data-role=reset]::after,
span[data-role=reset]::after {
  content: "\F12D";
}

input[data-role=file-select]::after,
button[data-role=file-select]::after,
a[data-role=file-select]::after,
span[data-role=file-select]::after {
  content: "\F35D";
}

input[data-role=file-download]::after,
button[data-role=file-download]::after,
a[data-role=file-download]::after,
span[data-role=file-download]::after {
  content: "\F019";
}

input[data-role=close]::after,
button[data-role=close]::after,
a[data-role=close]::after,
span[data-role=close]::after {
  content: "\F00D";
}

input[data-role=preview]::after,
button[data-role=preview]::after,
a[data-role=preview]::after,
span[data-role=preview]::after {
  content: "\F08E";
}

input[data-role=back],
button[data-role=back],
a[data-role=back],
span[data-role=back] {
  padding-right: 1.25em;
  padding-left: 2.25em;
}

input[data-role=back]::after,
button[data-role=back]::after,
a[data-role=back]::after,
span[data-role=back]::after {
  content: "\F053";
  right: auto;
  left: 1em;
}

input[data-role=logout],
button[data-role=logout],
a[data-role=logout],
span[data-role=logout] {
  border-color: rgba(0, 0, 0, 0.05);
  background: #e83a26;
  -webkit-box-shadow: 0 2px 0px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0 2px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 0px rgba(0, 0, 0, 0.15);
  color: #fff;
}

input[data-role=logout]::after,
button[data-role=logout]::after,
a[data-role=logout]::after,
span[data-role=logout]::after {
  content: "\F08B";
}

input[data-role=popup]::after,
button[data-role=popup]::after,
a[data-role=popup]::after,
span[data-role=popup]::after {
  content: "\F2D2";
}

.uploader .preview img {
  max-width: 300px;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.uploader .preview .button-preview {
  padding-right: 2em;
}

.uploader .preview .button-preview::after {
  content: "\F08E";
  zoom: 1;
  display: inline-block;
  *display: inline;
  width: 1em;
  height: 1em;
  zoom: 1;
  position: absolute;
  top: 50%;
  right: 0.75em;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  line-height: 1;
  font-family: "FontAwesome";
  font-size: 1em;
  font-weight: normal;
  text-align: center;
}

.uploader .buttons[data-role=file-dialog] input[type=hidden][value=""] ~ button[data-role=file-delete],
.uploader .buttons[data-role=file-dialog] input[type=hidden][value=""] ~ a[data-role=file-delete],
.uploader .buttons[data-role=file-dialog] input[type=hidden][value=""] ~ span[data-role=file-delete],
.uploader .buttons[data-role=file-dialog] input[type=hidden][value=''] ~ button[data-role=file-delete],
.uploader .buttons[data-role=file-dialog] input[type=hidden][value=''] ~ a[data-role=file-delete],
.uploader .buttons[data-role=file-dialog] input[type=hidden][value=''] ~ span[data-role=file-delete] {
  display: none;
}

input[type="number"] {
  border: 1px solid #ccc;
  font-size: 1em;
  padding: 0.25em 0.5em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 5px;
}

.hidden {
  display: none;
}

body.master .main > .inner .body .input-area > .inner > .body > .wrap > .input.between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body.master .main > .inner .body .input-area > .inner > .body > .wrap > .input.between > input {
  width: 6em;
  margin-right: 0.5em;
}

body.master .main > .inner .body .input-area > .inner > .body > .wrap > .input.between > span {
  margin-right: 1em;
}

@media (max-width: 600px) {
  body.master .main > .inner .body .input-area > .inner > .body > .wrap > .input.between {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  body.master .main > .inner .body .input-area > .inner > .body > .wrap > .input.between > input {
    margin-bottom: 10px;
  }

  body.master .main > .inner .body .input-area > .inner > .body > .wrap > .input.between > span {
    margin-right: 0.5em;
  }
}

body.master .main > .inner .body .input-area > .inner > .body > .wrap > .input.checkbox > label > input {
  width: auto;
}

body.master .main > .inner .body .input-area > .inner > .body > .wrap > .input.checkbox > label:hover {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body.master .main > .inner .body .input-area > .inner > .body > .wrap > .input.date > input {
  width: 12em;
}

body.master .main > .inner .body .input-area > .inner > .body > .wrap > .input.short > input {
  margin-right: 0.5em;
}

.operation .sticky .wrap {
  margin-bottom: 30px;
  text-align: right;
}

.operation .sticky .wrap > .name {
  margin-bottom: 5px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

body.master .main > .inner .body .input-area > .inner > .body > .wrap > .input.image {
  margin-bottom: 30px;
}

body.master .main > .inner .body .input-area > .inner > .body > .wrap > .input.image .preview:not(:empty) {
  max-height: 50vh;
  overflow: auto;
  margin-bottom: 15px;
  border: 1px solid #2a3132;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body.master .main > .inner .body .input-area > .inner > .body > .wrap > .input.image .preview img {
  max-width: 100%;
}

body.master .main > .inner .body .shipping-copy {
  margin-bottom: 15px;
  margin-top: 30px;
  padding: 30px 15px 5px 15px;
  background-color: #e9e9e9;
  border-radius: 10px;
  border: 1px solid #aaa;
  position: relative;
}

body.master .main > .inner .body .shipping-copy > .title {
  position: absolute;
  top: -1em;
  left: 15px;
  background-color: #fff;
  padding: 5px 15px;
  border: #aaa 1px solid;
  border-radius: 5px;
  font-weight: bold;
}

body.master .main > .inner .body .pref-shipping-set table td {
  text-align: center;
}

body.master .main > .inner .body .pref-shipping-set table td.check .checkbox,
body.master .main > .inner .body .pref-shipping-set table th.check .checkbox {
  width: 100%;
  display: block;
}

body.master .main > .inner .body .pref-shipping-set table td.check .checkbox > label,
body.master .main > .inner .body .pref-shipping-set table th.check .checkbox > label {
  margin: auto;
}

body.master .main > .inner .body .pref-shipping-set table td.check > .checkbox .icon,
body.master .main > .inner .body .pref-shipping-set table th.check > .checkbox .icon {
  display: none;
}

body.master .main > .inner .body .pref-shipping-set table td.private > .inner > .input,
body.master .main > .inner .body .pref-shipping-set table td.corporate > .inner > .input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body.master .main > .inner .body .pref-shipping-set table td.private > .inner > .input input,
body.master .main > .inner .body .pref-shipping-set table td.corporate > .inner > .input input {
  width: 6em;
  margin-left: 0.5em;
  margin-right: 0.5em;
}

body.master .main > .inner .body .pref-shipping-set table td.operation .buttons {
  text-align: center;
}

body.master .main > .inner .body .shipping-copy .input,
body.master .main > .inner .body .shipping-paste .input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
}

body.master .main > .inner .body .shipping-copy .input > div,
body.master .main > .inner .body .shipping-paste .input > div {
  -ms-flex-item-align: center;
      align-self: center;
  margin-bottom: 5px;
}

body.master .main > .inner .body .shipping-copy .input > div:first-of-type,
body.master .main > .inner .body .shipping-paste .input > div:first-of-type {
  margin-right: 1em;
}

body.master .main > .inner .body .shipping-copy .button-area .button,
body.master .main > .inner .body .shipping-paste .button-area .button,
body.master .main > .inner .body .pref-shipping-set table td.operation .buttons .button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 0.8em;
  border: 1px solid #336b87;
  background-color: #336b87;
  color: #fff;
  padding: 0.25em 1em;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
  border-radius: 5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

body.master .main > .inner .body .shipping-copy .button-area .button:hover,
body.master .main > .inner .body .shipping-paste .button-area .button:hover,
body.master .main > .inner .body .pref-shipping-set table td.operation .buttons .button:hover {
  background-color: #fff;
  color: #336b87;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

body.master .main > .inner .body .pref-shipping-set table td.operation .buttons .button::before {
  content: "\F0C5";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  margin-right: 0.25em;
}

@media (max-width: 600px) {
  body.master .main > .inner .body .pref-shipping-set .table-in {
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}

@media (min-width: 600.1px) {
  body.master .main > .inner .body .pref-shipping-set thead,
  body.master .main > .inner .body .pref-shipping-set tbody > tr {
    display: table;
    width: 100%;
    table-layout: fixed;
  }

  body.master .main > .inner .body .pref-shipping-set thead {
    width: calc( 100% - 1em);
  }

  body.master .main > .inner .body .pref-shipping-set thead > tr > th.check {
    width: 8%;
  }

  body.master .main > .inner .body .pref-shipping-set thead > tr > th.title {
    width: 14%;
  }

  body.master .main > .inner .body .pref-shipping-set thead > tr > th.private
body.master .main > .inner .body .pref-shipping-set thead > tr > th.corporate {
    width: 30%;
  }

  body.master .main > .inner .body .pref-shipping-set thead > tr > th.operation {
    width: 20%;
  }

  body.master .main > .inner .body .pref-shipping-set tbody {
    display: block;
    height: 75vh;
    min-height: 500px;
    overflow: auto;
    width: 100%;
  }

  body.master .main > .inner .body .pref-shipping-set tbody > tr > td.check {
    width: 8%;
  }

  body.master .main > .inner .body .pref-shipping-set tbody > tr > td.title {
    width: 14%;
  }

  body.master .main > .inner .body .pref-shipping-set tbody > tr > td.private
body.master .main > .inner .body .pref-shipping-set tbody > tr > td.corporate {
    width: 30%;
  }

  body.master .main > .inner .body .pref-shipping-set tbody > tr > td.operation {
    width: 20%;
  }
}

/* 商品登録オプション設定 */

body.master .main > .inner .body .option > .section {
  margin-bottom: 15px;
}

body.master .main > .inner .body .option > .section .title {
  background-color: #763626;
  color: #fff;
  padding: 5px 10px;
  margin-bottom: 10px;
  position: relative;
}

body.master .main > .inner .body .option > .section > .title {
  background-color: #2a3132;
}

body.master .main > .inner .body .option > .section .title .up,
body.master .main > .inner .body .option > .section .title .down,
body.master .main > .inner .body .option > .section .title .del {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

body.master .main > .inner .body .option > .section .title i:hover {
  cursor: pointer;
  opacity: 0.7;
  display: inline-block;
}

body.master .main > .inner .body .option > .section .title i::before {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-style: normal;
}

body.master .main > .inner .body .option > .section .title .up {
  right: 6em;
}

body.master .main > .inner .body .option > .section .title .up > i::before {
  content: '\F35B';
}

body.master .main > .inner .body .option > .section .title .down {
  right: 4em;
}

body.master .main > .inner .body .option > .section .title .down > i::before {
  content: '\F358';
}

body.master .main > .inner .body .option > .section .title .del {
  right: 1em;
}

body.master .main > .inner .body .option > .section .title .del > i::before {
  content: '\F2ED';
}

body.master .main > .inner .body .option > .section .add {
  text-align: center;
}

body.master .main > .inner .body .option > .section .add > span {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 1em;
  border: 1px solid #336b87;
  background-color: #336b87;
  color: #fff;
  padding: 0.25em 1em;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
  border-radius: 5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body.master .main > .inner .body .option > .section .add > span:hover {
  background-color: #fff;
  color: #336b87;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

body.master .main > .inner .body .option > .section .add > span::before {
  content: '\F0FE';
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  margin-right: 0.5em;
}

body.master .main > .inner .body .option > .section:nth-of-type(2) > .title .up {
  display: none;
}

body.master .main > .inner .body .option > .section:nth-last-of-type(2) > .title .down {
  display: none;
}

body.master .main > .inner .body .option > .section .sellection-root > .selection:nth-of-type(2) > .title .up {
  display: none;
}

body.master .main > .inner .body .option > .section .sellection-root > .selection:nth-last-of-type(2) > .title .down {
  display: none;
}

body.master .main > .inner .body .option > .section > .wrap {
  background-color: #fff;
  padding: 0 15px;
}

body.master .main > .inner .body .option > .section > .wrap > .name {
  margin-bottom: 5px;
  font-weight: bold;
}

body.master .main > .inner .body .option > .section > .wrap > .input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
}

body.master .main > .inner .body .option > .section > .wrap > .input > label > div {
  display: block;
  width: 140px;
  text-align: center;
  border: 2px solid #763626;
  padding: 5px 5px;
  position: relative;
  border-radius: 5px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-bottom: 5px;
}

body.master .main > .inner .body .option > .section > .wrap > .input > label:not(:last-of-type) {
  margin-right: 30px;
}

body.master .main > .inner .body .option > .section > .wrap > .input > label:hover > div,
body.master .main > .inner .body .option > .section > .wrap > .input > label input:checked + div {
  background-color: #763626;
  color: #fff;
}

body.master .main > .inner .body .option > .section > .wrap > .input > label > input {
  display: none;
}

body.master .main > .inner .body .option > .section > .wrap > .input > label > div > img {
  width: 60px;
  margin: auto;
  display: block;
}

body.master .main > .inner .body .option > .section > .wrap > .input > label > div > span {
  font-size: 0.9em;
}

body.master .main > .inner .body .option > .section > .wrap > .selection {
  padding: 40px 15px 15px 15px;
  border: 1px solid #763626;
  position: relative;
}

body.master .main > .inner .body .option > .section > .wrap > .selection > .title {
  background-color: #763626;
  color: #fff;
  padding: 3px 5px;
  margin-bottom: 10px;
  position: absolute;
  top: -1px;
  left: 0;
  width: calc(100% + 1px);
  font-size: 0.9em;
}

body.master .main > .inner .body .option > .section > .wrap > .selection > .wrap > .name {
  margin-bottom: 5px;
  font-weight: bold;
}

body.master .main > .inner .body .option > .section > .wrap > .selection > .wrap > .input {
  margin-bottom: 5px;
}

body.master .main > .inner .body .option > .section > .wrap > .selection > .wrap > .input > input[type="number"] {
  width: 8em;
  margin-right: 0.5em;
}

body.master .main > .inner .body .option > .section > .wrap > .selection > .wrap > .note {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 10px;
}

@media (max-width: 600px) {
  body.master .main > .inner .body .option > .section > .wrap {
    padding-left: 10px;
    padding-right: 10px;
  }

  body.master .main > .inner .body .option > .section:not(:last-of-type) {
    margin-bottom: 30px;
  }

  body.master .main > .inner .body .option > .section > .wrap > .input {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  body.master .main > .inner .body .option > .section > .wrap > .input > label {
    margin: 0;
  }

  body.master .main > .inner .body .option > .section > .wrap > .input > label:not(:last-of-type) {
    margin-right: 0;
  }

  body.master .main > .inner .body .option > .section > .wrap > .input > label > div {
    width: 90px;
    margin-bottom: 10px;
  }

  body.master .main > .inner .body .option > .section > .wrap > .input > label > div > img {
    width: 50px;
  }

  body.master .main > .inner .body .option > .section > .wrap > .input > label > div > span {
    font-size: 0.7em;
  }
}

