@charset "UTF-8";

body {
  margin: 0;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #55555a;
  position: relative;
}

dl, dt, dd {
  margin: 0;
  padding: 0;
}

/*-----------
parts
------------*/
.init_btn {
  font-family: inherit;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  font-size: 1em;
  background: transparent;
  border: none;
  transition: all .25s;
}

.btn_1 {
  display: block;
  border-radius: 32px;
  padding: 8px 40px 8px 32px;
  border: solid 2px #003F97;
  box-sizing: border-box;
  width: fit-content;
  margin: 16px auto;
  background: #fff;
  color: #003F97;
  position: relative;
}

.btn_1::after {
  content: "";
  width: 0;
  height: 0;
  border-left: solid #003F97 8px;
  border-top: solid transparent 6px;
  border-bottom: solid transparent 6px;
  border-right: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  margin: auto;
  transition: all .25s;
}

.btn_1:hover {
  background: #003F97;
  color: #fff;
}

.btn_1:hover::after {
  right: 16px;
  border-left-color: #fff;
}

/* 黒色 */
.btn_1.black {
  color: #fff;
  background: #000;
  border-color: #000;
  padding: 8px 16px;
}

.btn_1.black::after {
  content: none;
}

.btn_1.black:hover {
  background: #fff;
  color: #000;
}

/* オレンジ色 */
.btn_1.orange {
  color: #E95404;
  border-color: #E95404;
}

.btn_1.orange::after {
  border-left-color: #E95404;
}

.btn_1.orange:hover {
  background: #E95404;
  color: #fff;
}

.btn_1.orange:hover::after {
  border-left-color: #fff;
}

/* 赤色 */
.btn_1.red {
  color: #ff2424;
  border-color: #ff2424;
}

.btn_1.red::after {
  border-left-color: #ff2424;
}

.btn_1.red:hover {
  background: #ff2424;
  color: #fff;
}

.btn_1.red:hover::after {
  border-left-color: #fff;
}

/* グレー */
.btn_1.gray {
  border-radius: 16px;
  padding: 8px 12px;
  border: solid 2px #808088;
  color: black;
  background: #dcdcdc;
  font-size: 14px;
}

.btn_1.gray::after {
  content: none;
}

.btn_1.gray:hover {
  opacity: .6;
}

/* デフォルト風リンク */
.link_btn {
  color: #0000ff;
  text-decoration: underline;
  position: relative;
  padding-left: 32px;
  transition: all .25s;
}

.link_btn.icon_print::before {
  content: "";
  width: 24px;
  height: 20px;
  background-image: url("icon_print.png");
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.link_btn:hover {
  opacity: .6;
}

/* アイコンありボタン */
.icon_btn {
  display: block;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  background: #E95404;
  color: #fff;
  font-size: 12px;
  text-align: center;
  transition: opacity .25s;
}

.icon_btn img {
  display: block;
  width: 20px;
  margin: 0 auto;
}

.icon_btn:hover {
  opacity: .6;
}

.icon_btn.gray {
  background: #55555a;
}

/* 見出し */
.heading_1 {
  padding-left: 24px;
}

.required_marker {
  background: red;
  color: white;
  font-weight: bold;
  font-size: 12px;
  border-radius: 4px;
  padding: 2px 6px;
  display: inline-block;
  margin-left: 2px;
}

em {
  color: red;
  font-weight: bold;
  font-style: normal;
}

/* 表 */
.table_wrapper {
  overflow-x: auto;
}

.table_1, .table_2, .table_3 {
  width: 100%;
}

.table_1 {
  min-width: 800px;
  border-collapse: collapse;
  margin: 32px auto;
}

.table_1 th,
.table_1 td {
  border: solid 1px #000;
  padding: 4px 8px;
}

.table_1 th {
  background: #dcdcdc;
  color: #000;
  width: 6em;
  box-sizing: border-box;
}

.table_1 td {
  width: 8em;
}

.table_2 {
  min-width: 800px;
  border-collapse: collapse;
  margin: 32px auto;
}

.table_2 th,
.table_2 td {
  border: solid 1px #000;
  padding: 4px 8px;
  text-align: center;
}

.table_2 th {
  /* min-width: 144px; */
  background: #dcdcdc;
  color: #000;
}

.table_2 th:nth-of-type(1) {
  min-width: 48px;
}

.table_2 th:nth-of-type(6) {
  min-width: 30px;
}

.table_2 td:nth-of-type(1),
.table_2 td:nth-of-type(2),
.table_2 td:nth-of-type(3) {
  text-align: center;
}

.table_3 {
  min-width: 1000px;
  border-collapse: collapse;
}

.table_3 th,
.table_3 td {
  border: solid 1px #ebebed;
  padding: 8px;
}

.table_3 th {
  background: #f9f9f9;
  text-align: left;
}

.table_3 tr:hover {
  background: #FEEEE6;
}

/* dldtddテーブル共通 */
.table_dl > div {
  /* width: 100%; */
  margin: 4px auto;
  border-bottom: 1px solid black;
  border-collapse: collapse;
}

.table_dl > div dt, 
.table_dl > div dd {
  display: inline-block;
  vertical-align: middle;
  padding: 4px;
  margin: 4px 0 0;
}
.table_dl > div dt {
  width: 28%;
  background: #dcdcdc;
  font-weight: bold;
  color: black;
  text-align: center;
}
.table_dl > div dd {
    width: 65%
}

.table_dl.customer-info-table {
	border: 2px solid #9c9dac;
	margin: 2em auto;
	padding: 0 8px;
}
.table_dl.customer-info-table:first-child {
    margin: 8px auto 2em;
}
.table_dl.customer-info-table .divide_bar {
	padding: 0;
	height: 3px;
	border-radius: 2px;
	background-color: #003e94;
}
.table_dl.customer-info-table div {
	border-bottom: 1px solid #9c9dac;
	padding: 8px;
}
.table_dl.customer-info-table div:last-child {
    border: none;
}
.table_dl.customer-info-table dt,
.table_dl.customer-info-table dd {
	vertical-align: top;
}
.table_dl.customer-info-table dt {
	width: 25%;
	background: #f4f4f9;
}
.table_dl.customer-info-table dd {
	width: 64%;
}

.table_dl.customer-info-table dd p {
	margin: 0;
}
  
.table_dl.customer-info-table input,
.table_dl.customer-info-table textarea {
    font-family: inherit;
	width: 100%;
	padding: 0 4px;
	font-size: 16px;
	box-sizing: border-box;
	margin-bottom: 4px;
}
.table_dl.customer-info-table textarea {
    height: 84px;
}

.table_dl.customer-info-table input[type=number] {
	max-width: 80px;
}

.table_dl.customer-info-table .searchbox.customers dd,
.table_dl.customer-info-table .searchbox.items dd {
	display: block;
	width: 96%;
	margin: 0 auto;
}

.table_dl.customer-info-table .searchbox .search-description {
	margin: 0;
	font-size: 12px;
	font-weight: bold;
}

/* 配達完了済み取引先編集ページ */
.table_dl.delivery_is_done dt {
    width: 35%;
}
.table_dl.delivery_is_done dd {
    width: 55%;
}
.table_dl.delivery_is_done dd input {
    font-family: inherit;
    font-size: 16px;
}
.table_dl.delivery_is_done dd input[type=number] {
    width: 80%;
    text-align: right;
}

/* 顧客別商品 */
.table_dl.customer-info-table .customer-item-list {
	width: 94%;
	margin-top: 1em;
	border: none;
}

.table_dl.customer-info-table .customer-item-list dl {
    border: 1px solid black;
    margin: 4px 0 0;
}
.table_dl.customer-info-table .customer-item-list dl > div:last-child {
    border: none;
}

.table_dl.customer-info-table .customer-item-list > dt, 
.table_dl.customer-info-table .customer-item-list > dd {
	width: 100%;
	padding: 4px 0;
}
.table_dl.customer-info-table .customer-item-list > dt {
	border: 2px solid #888;
	box-sizing: border-box;
}

.table_dl.customer-info-table .customer-item-list > dt {
	background-color: white;
	margin: 0 auto;
	display: block;
}


/*------------
header
-----------*/
.header_1 {
  background: #fff;
  box-shadow: 0 4px 4px rgba(0,0,0,.1);
  padding: 4px 0 8px;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
}

.header_1 > div {
  max-width: 1080px;
  padding: 0 8px;
  box-sizing: border-box;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* left */
.header_1 .left a {
  text-decoration: none;
  color: #000;
  transition: opacity .25s;
}

.header_1 .left a:hover {
  opacity: .6;
}

.header_1 .org_logo,
.header_1 .page_name {
  vertical-align: middle;
  font-weight: bold;
}

.header_1 .org_logo {
  width: 140px;
  margin-right: 6px;
}

.header_1 .page_name {
  display: none;
  font-size: 14px;
}
@media (min-width: 800px) {
  .header_1 .page_name {
    display: inline-block;
    font-size: 14px;
  }
}

/* right */
.header_1 .right .wide {
  display: none; 
}
@media (min-width: 800px) {
  .header_1 .right .wide {
    display: block; 
  }
}

.header_1 .right .user_name,
.header_1 .right #logoutBtn {
  vertical-align: middle;
}

.header_1 .right .user_name {
  font-weight: bold;
  margin-right: 8px;
  font-size: 14px;
}

.header_1 .right .btn_1#logoutBtn {
  display: inline-block;
  padding: 4px 12px;
  font-size: 14px;
}

/* right(hamburger-menu) */
@media (min-width: 800px) {
  #hamburger, #hamburger_nav {
    display: none;
  }
}
#hamburger > .bar {
  display: block;
  background: black;
  width: 30px;
  height: 3px;
  margin: 8px;
  border-radius: 8px;
  transition: all .2s;
}
#hamburger.open > .bar:first-child {
  transform: translateY(5.5px) rotate(45deg);
}
#hamburger.open > .bar:nth-child(2) {
  display: none;
}
#hamburger.open > .bar:last-child {
  transform: translateY(-5.5px) rotate(-45deg);
} 

#hamburger_nav {
  display: none;
  position: sticky;
  top: 58px;
  left: 0;
  background: rgba(246, 246, 246, 0.95);
  padding: 1em;
  z-index: 2;
}
#hamburger_nav.open {
  display: block;
}

#hamburger_nav .link_area a {
  display: block;
  color: #55555a;
  text-decoration: none;
  padding: 16px 0 16px 48px;
  position: relative;
  font-weight: bold;
  border-bottom: 1px solid #55555a;
}
#hamburger_nav .link_area a::before {
  content: "";
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #55555a;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  margin: auto;
  transition: all .25s;
}

#hamburger_nav .link_area a.icon_home::before {
  background-image: url("icon_home.png");
}
#hamburger_nav .link_area a.icon_new::before {
  background-image: url("icon_docs-create.png");
}
#hamburger_nav .link_area a.icon_search::before {
  background-image: url("icon_docs-research.png");
}

#hamburger_nav .user_area {
  text-align: center;
}

#hamburger_nav .user_area .user_name, 
#hamburger_nav .user_area #logoutBtn {
  vertical-align: middle;
  display: inline-block;
  padding: 0 32px;
}
#hamburger_nav .user_area .user_name {
  font-weight: bold;
  font-size: 16px;
}
#hamburger_nav .user_area #logoutBtn {
  padding: 2px 16px;
}

/*-----------
main
------------*/
main {
  display: block;
}

.content_wrapper {
  max-width: 2000px;
  margin: 0 auto;
}
@media (min-width: 800px) {
  .content_wrapper {
    display: flex;
  }
}

.main_columns {
  box-sizing: border-box;
  padding: 16px 0;
  background: #f9f9f9;
}
@media (min-width: 800px) {
  .main_columns {
    flex-basis: 80%;
    padding: 16px 32px;
  }
}

.panel-content {
  background: #fff;
  padding: 8px;
}
@media (min-width: 800px){
  .panel-content {
    padding: 16px;
    border: solid 1px #ebebed;
    border-radius: 8px;
  }
}

.basic_block {
  margin: 16px 0 48px;
}

.msg-box {
  color: red;
  font-weight: bold;
  text-align: center;
}

.pagination {
  display: flex;
  justify-content: space-between;
  padding: 0 8px;
  margin: 16px 0;
}

.pagination a,
.pagination input {
  font-family: inherit;
  background: #f2f2f5;
  border: solid 1px #a6a6ac;
  padding: 2px 4px;
  text-decoration: none;
  color: #55555b;
  font-weight: bold;
  border-radius: 2px;
  font-size: 14px;
  transition: all .25s;
}

.pagination a:hover {
  opacity: .6;
}

.pagination a.cur {
  background: #a6a6ac;
}


.sub_columns {
  display: none;
  background: #f9f9f9;
  position: relative;
  z-index: 1;
  padding-top: 4px;
  box-shadow: 4px 0 4px rgba(0,0,0,.1);
}
@media (min-width: 800px) {
  .sub_columns {
    display: block;
    flex-basis: 20%;
  }
}

/* side nav */
.side_nav a {
  display: block;
  color: #808088;
  text-decoration: none;
  padding: 16px 24px 16px 48px;
  position: relative;
  font-weight: bold;
}

.side_nav a::before {
  content: "";
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #55555a;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  margin: auto;
  transition: all .25s;
}

.side_nav a.icon_home::before {
  background-image: url("icon_home.png");
}
.side_nav a.icon_new::before {
  background-image: url("icon_docs-create.png");
}
.side_nav a.icon_search::before {
  background-image: url("icon_docs-research.png");
}

.side_nav a::after {
  content: "";
  width: 8px;
  height: 14px;
  background-image: url("arrow_1-gray.svg");
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto;
  transition: all .25s;
}

.side_nav a:hover {
  background: #fff;
  color: #E95404;
}

.side_nav a:hover::before {
  background-color: #E95404;
}

.side_nav a:hover::after {
  right: 8px;
  background-image: url("arrow_1-orange.svg");
}

.side_nav a.cur {
  background: #FEEEE6;
  color: #E95404;
}

.side_nav a.cur::before {
  background-color: #E95404;
}

/*-------------
footer
--------------*/
.copyright {
  background: #000;
  padding: 8px 0;
  font-size: 14px;
  text-align: center;
  color: #fff;
  font-weight: bold;
}