@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700&family=Roboto:wght@100;300;400;500;700;900&display=swap");

@font-face {
  font-family: "Bebas Neue";
  src: url("../font/BebasNeue-Regular.ttf");
}

@font-face {
  font-family: "Monoround";
  src: url("../font/Monoround.otf");
}

/* --------------------------------
 * base
 * -------------------------------- */
html {
  font-size: 14px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #ffffff;
  color: #4d4d4d;
  margin: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

.text {
  line-height: 80px;
}

.text>span {
  background: linear-gradient(transparent 0%, transparent 50%, #dd9A60 50%, #dd9A60 100%);
  padding: 5px 20px;
}

nav {
  height: 100%;
}


img {
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
}

.header {
  padding: 0px 10px;
  margin: 0px;

}

.header-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

.header-middle {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  flex-wrap: wrap;
  font-size: 15px;
}

.header-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  flex-wrap: wrap;
  font-size: 14px;
  color: #555555;
}

.dark .header-right {
  color: #ffffff;
}

.refleshbtn {
  width: 150px;
  height: 30px;
  border-radius: 5em;
  background-color: green;
  color: white;
  cursor: pointer;
  font-size: large;
  padding: 5px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menubtn {
  width: 200px;
  height: 80px;
  border-radius: 0.5em;
  background-color: cadetblue;
  color: white;
  cursor: pointer;
  font-size: large;
  padding: 5px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menubtn:hover {
  transform: scale(1.1, 1.1);
}

.menubtn:active {
  -webkit-transform: translate(0, 2px);
  -moz-transform: translate(0, 2px);
  transform: translate(0, 2px);
  border-bottom: none;
}


.menubtn_gray {
  width: 200px;
  height: 80px;
  border-radius: 0.5em;
  background-color: gray;
  color: darkgray;
  cursor: pointer;
  font-size: large;
  padding: 5px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.startimportbtn {
  width: 120px;
  height: 30px;
  border-radius: 0.5em;
  background-color: green;
  color: white;
  border: none;
  cursor: pointer;
  font-size: large;
  padding: 5px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
}

.startimportbtn:hover {
  transform: scale(1.1, 1.1);
}

.startimportbtn:active {
  -webkit-transform: translate(0, 2px);
  -moz-transform: translate(0, 2px);
  transform: translate(0, 2px);
  border-bottom: none;
}


.actionbtn {
  border-radius: 50vh;
  background: #000;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 40px;
  height: 40px;
  padding: 0px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
  box-shadow: 0 0px 5px rgb(0 0 0 / 20%);
}

.actionbtn:hover {
  transform: scale(1.05);
}

.actionbtn:active {
  -webkit-transform: translate(0, 2px);
  -moz-transform: translate(0, 2px);
  transform: translate(0, 2px);
  border-bottom: none;
}


#pageTitle {
  font-size: 28px;
  margin-bottom: 20px;
}

.stickyTable tr:nth-child(1) {
  position: sticky;
  top: 58px;
  z-index: 999;
}


@media (max-width: 1200px) {
  .stickyTable {
    width: 1200px !important;
  }

  .lg-table {
    overflow-x: scroll;
  }

  .stickyTable tr:nth-child(1) {
    position: relative;
    top: 0px;
    z-index: 0;
  }
}


.flex-row-start {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}

.item-title {
  width: 150px;
}



.order-detail-title {
  display: inline-block;
  width: 120px;
  height: 25px;
  line-height: 25px;
  color: gray;
  background-color: #cccccc;
  margin-right: 10px;
  padding: 3px;
}

.order-detail-value {
  display: inline-block;
  width: 400px;
  color: black;
  margin-right: 30px;
}

.mst_input_size {
  height: 20px;
  line-height: 20px;
  font-size: 15px;
  margin: 0;
  padding: 0;
}





/* --- 明細のｎ行にカーソルが乗ったとき ---------- */
.tableArea tr:not(:first-child):hover {
  border: 2px solid #0e8088;
}

.tableArea td:nth-child(1),
.tableArea td:nth-child(2) {
  vertical-align: middle;
}

.detailTable .tate {
  width: 15px;
  vertical-align: middle !important;
  font-weight: 600;
  background: #d9f1ea;
}

.detailTable td {
  padding: 5px 10px !important;
}


.open {
  cursor: pointer;
  /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}

#pop-up {
  display: none;
  /* label でコントロールするので input は非表示に */
}

.overlay {
  display: none;
  /* input にチェックが入るまでは非表示に */
}

#pop-up:checked+.overlay {
  display: block;
  z-index: 9999;
  background-color: #00000070;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}

.window {
  min-width: 40%;
  max-width: 70%;
  overflow-y: scroll;
  overflow-x: hidden;
  min-height: 40%;
  max-height: 70%;
  background-color: #ffffff;
  border-radius: 6px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 50%;
  left: 50%;
  padding: 20px;
  transform: translate(-50%, -50%);
}


#pop-up_progress {
  display: none;
  /* label でコントロールするので input は非表示に */
}

.overlay_progress {
  display: none;
  /* input にチェックが入るまでは非表示に */
}

#pop-up_progress:checked+.overlay_progress {
  display: block;
  z-index: 9999;
  background-color: #00000070;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}

.window_progress {
  width: 30%;
  overflow-y: hidden;
  overflow-x: hidden;
  height: 30%;
  background-color: #ffffff;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  padding: 20px;
  transform: translate(-50%, -50%);
}


.text {
  font-size: 18px;
  margin: 0;
}

.close {
  cursor: pointer;
  position: absolute;
  top: -10px;
  right: 0px;
  font-size: 35px;
  color: red;
}


.tooltip {
  position: relative;
  color: rgb(255, 255, 255);
  font-size: 12px;
  padding: 1px 5px;
  font-weight: normal;
  cursor: pointer;
}

.description_top {
  /* ツールチップのスタイル */
  width: 150px;
  /* 横幅 */
  position: absolute;
  left: 50%;
  bottom: 80%;
  /* Y軸の位置 */
  transform: translateX(-50%);
  margin-bottom: 8px;
  /* テキストとの距離 */
  padding: 8px;
  border-radius: 10px;
  /* 角の丸み */
  background-color: #666;
  font-size: 0.7em;
  color: #fff;
  text-align: center;
  visibility: hidden;
  /* ツールチップを非表示に */
  opacity: 0;
  /* 不透明度を0％に */
  z-index: 1;
  transition: 0.5s all;
  /* マウスオーバー時のアニメーション速度 */
}

.description_left {
  /* ツールチップのスタイル */
  width: 150px;
  /* 横幅 */
  position: absolute;
  top: 50%;
  right: 80%;
  /* X軸の位置 */
  transform: translateY(-50%);
  padding: 8px;
  border-radius: 10px;
  /* 角の丸み */
  background-color: #666;
  font-size: 0.7em;
  color: #fff;
  text-align: center;
  visibility: hidden;
  /* ツールチップを非表示に */
  opacity: 0;
  /* 不透明度を0％に */
  z-index: 1;
  transition: 0.5s all;
  /* マウスオーバー時のアニメーション速度 */
}

.balloon_top {
  /* ツールチップのスタイル */
  width: 200px;
  /* 横幅 */
  position: absolute;
  right: 0;
  bottom: 80%;
  /* Y軸の位置 */
  margin-bottom: 15px;
  /* テキストとの距離 */
  padding: 8px;
  border-radius: 10px;
  /* 角の丸み */
  background-color: #666;
  /* ツールチップの背景色 */
  font-size: 1em;
  color: #fff;
  text-align: center;
  visibility: hidden;
  /* ツールチップを非表示に */
  opacity: 0;
  /* 不透明度を0％に */
  z-index: 999;
  transition: 0.5s all;
  /* マウスオーバー時のアニメーション速度 */
}

.balloon_top::before {
  /* 吹き出しの「しっぽ」のスタイル */
  content: "";
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top: 12px solid #666;
  /* 最後の値は「ツールチップの背景色」と合わせる */
  position: absolute;
  top: 99%;
  right: 10px;
  transform: translateX(-50%);
}

.tooltip:hover .balloon_top {
  /* マウスオーバー時のスタイル */
  bottom: 100%;
  /* Y軸の位置 */
  visibility: visible;
  /* ツールチップを表示 */
  opacity: 1;
  /* 不透明度を100％に */
}

.loginTop {
  height: 100vh;
  align-items: center;
  display: flex;
}

.loginLeft {
  background-image: url("https://public-lian-orosi-siire.s3.ap-northeast-1.amazonaws.com/site/logintop.png");
  width: 100%;
  background-size: cover;
  height: 100vh;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.loginRight {
  width: 350px;
  padding: 0 20px;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.loginLogo {
  width: 400px;
}

.passwordInput {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding-left: 1em;
  padding-right: 1em;
  height: 42px;
  flex: 1;
  width: 100%;
  background: #eaedf2;
  font-size: 18px;
}

@media screen and (max-width: 700px) {
  .loginTop {
    height: auto;
    display: block;
    position: relative;
  }

  .loginLeft {
    align-items: start;
    width: 100%;
    height: 400px;
    margin-top: 80px;
  }

  .loginLogo {
    width: 280px;
  }

  .loginRight {

    z-index: 999999;
    margin: 0 auto;
  }

}





h1,
h2,
h3 {
  display: block;
  margin-block-start: 0.2em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
}

ul,
li {
  list-style-type: disc;
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0px;
}

fieldset {
  display: block;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-block-start: 0em;
  padding-inline-start: 0em;
  padding-inline-end: 0em;
  padding-block-end: 0em;
  min-inline-size: min-content;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

a {
  text-decoration: none;
  color: #000;
}

a:hover {
  opacity: 0.6;
}

/* text */
.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.t-left {
  text-align: left;
}

.t-just {
  text-align: justify;
}

/* text 関連追加分*/

.f0 {
  font-size: 10px;
}

.f1 {
  font-size: 12px;
}

.f2 {
  font-size: 14px;
}

.f3 {
  font-size: 16px;
}

.f4 {
  font-size: 18px;
}

.f5 {
  font-size: 20px;
}

.f6 {
  font-size: 24px;
}

.f7 {
  font-size: 28px;
}

.f8 {
  font-size: 32px;
}

.fw-4 {
  font-weight: 400;
}

.fw-7 {
  font-weight: 700;
}

.fw-b {
  font-weight: bold;
}

.lh3 {
  line-height: 1.3;
}

.lh5 {
  line-height: 1.5;
}

.lh8 {
  line-height: 1.8;
}

.lh2 {
  line-height: 2;
}

/* padding/margin */
.paddingSbtn {
  padding: 2px 10px;
}

.paddingMbtn {
  padding: 5px 20px;
}

.paddingBbtn {
  padding: 10px 30px;
}

.paddingSbtn:hover,
.paddingMbtn:hover,
.paddingBbtn:hover {
  opacity: 0.8;
}

.padding20 {
  padding: 20px;
}

.padding40 {
  padding: 40px;
}

@media (max-width: 860px) {
  .padding40 {
    padding: 20px;
  }
}

.padding10 {
  padding: 10px;
}

.margin20 {
  margin: 20px;
}

.margin10 {
  margin: 10px;
}

.margin-t5 {
  margin-top: 5px;
}

.margin-t10 {
  margin-top: 10px;
}

.margin-t30 {
  margin-top: 30px;
}


.margin-b5 {
  margin-bottom: 5px;
}

.margin-b10 {
  margin-bottom: 10px;
}

.margin-b30 {
  margin-bottom: 30px;
}

.margin-r10 {
  margin-right: 10px;
}

.margin-r30 {
  margin-right: 30px;
}

.margin-l10 {
  margin-left: 10px;
}

.margin-l30 {
  margin-left: 30px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* color */
.font-w {
  color: #fff;
}

.font-purle {
  color: #7969E9;
}

.font-gray {
  color: #8A8A8A;
}

.font-black {
  color: #000;
}

.font-pink {
  color: #EC467E;
}

.font-blue {
  color: #00C4CC;
}

/* bg-color */
.bg-purple {
  background: #7969E9;
}

.bg-w {
  background: #fff;
}

.bg-yellow {
  background: #F8C835;
}

.bg-pink {
  background: #EC467E;
}

.bg-red {
  background: #FF0000;
}

.bg-gray {
  background: #8A8A8A;
}

.bg-Lgray {
  background: #F7F7F7;
}

.bg-darkpurple {
  background: #A06EA0;
}

.bg-orange {
  background: #F68712;
}

.bg-darkorange {
  background: #FF5621;
}

.bg-green {
  background: #00BF63;
}

.bg-blue {
  background: #00C4CC;
}

.bg-Rgray {
  background: #EEEEEE;
}

.boxshadow {
  box-shadow: 0px 0px 10px #DBDBDB;
}

/* radius */
.radius5 {
  border-radius: 5px;
}

.radius10 {
  border-radius: 10px;
}

.radius20 {
  border-radius: 20px;
}

/* layout */
.flexLayout,
.flex {
  display: flex;
  box-sizing: border-box;
}

.layout-wrap {
  flex-wrap: wrap;
}

.layout-nowrap {
  flex-wrap: nowrap;
}

.align-end {
  align-items: end;
}

.align-start {
  align-items: flex-start;
}

.align-center {
  align-items: center;
}

.just-center {
  justify-content: center;
}

.just-start {
  justify-content: start;
  margin: 0px;
}

.just-content {
  justify-content: space-between;
  gap: 20px;
}

.col2 {
  width: 48%;
}

.col3 {
  width: 32%;
}

.col9 {
  width: 90%;
}

.col00 {
  width: 100%;
}

.col20 {
  width: 20%;
}

.col30 {
  width: 30%;
}

.col50 {
  width: 48%;
}

.col70 {
  width: 70%;
}

.col80 {
  width: 80%;
}

@media (max-width: 1000px) {
  .col3 {
    width: 44%;
  }

  .col70 {
    width: 100%;
  }

  .col30 {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .col3 {
    width: 100%;
  }

  .col50 {
    width: 100%;
  }
}

.width1400 {
  width: 1400px;
  position: relative;
}

.width1000 {
  width: 1000px;
  position: relative;
}

.width600 {
  width: 600px;
  position: relative;
}

.width800 {
  width: 800px;

}

@media (max-width: 1450px) {
  .width1400 {
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .width1000 {
    width: 100%;
  }
}

@media (max-width: 1000px) {
  .width800 {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .width600 {
    width: 100%;
  }
}

.img100 {
  width: 100%;
}

.mobile {
  display: none;
}

@media (max-width: 860px) {
  .desktop {
    display: none;
  }

  .mobile {
    display: inherit;
  }
}


/* header */

.headerLogo {
  width: 30%;
  text-align: center;
}

.headerLogo img {
  width: 80%;
}

.headerTel,
.headerContact {
  width: 15%;
}

.headerMenu {
  width: 40%;
}


.headerMenu {
  font-size: 16px;
}

@media (max-width: 1000px) {
  .headerLogo {
    width: 100%;
  }

  .headerLogo img {
    width: 40%;
  }

  .headerMenu {
    width: 50%;
  }

  .headerTel,
  .headerContact {
    width: 25%;
  }
}

@media (max-width: 860px) {
  .headerLogo img {
    width: 100%;
  }

  .headerLogo {
    width: 40%;
  }

  .headerTel,
  .headerContact {
    width: 30%;
  }
}

/* Newheader */
.Newheader {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  height: 60px;
  width: 100%;
  background: #ffffff;
  z-index: 999;
  transition: all 0.5s ease;
  box-shadow: 0px 0px 15px 10px rgba(0, 0, 0, 0.1);
}

.dark .Newheader {
  background: #01398d
}

.Newheader .logo-details {
  display: flex;
  align-items: center;
}

.Newheader .logo-details img {
  width: 200px;
  margin-left: 20px;
}

.Newheader .logo-details .logo_name {
  font-size: 22px;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  margin-left: 10px;
  transition: 0.3s ease;
  transition-delay: 0.1s;
}

.Newheader .topMenu {
  display: flex;
  justify-content: end;
  align-items: center;
  padding-right: 20px;
  width: calc(100% - 210px);

}

.Newheader .topMenu i {
  display: flex;
  margin-left: 20px;
  align-items: center;
  color: #0e8088;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
}

.dark .Newheader .topMenu i {
  color: #ffffff;
}

.Newheader .topMenu i:hover {
  opacity: 0.6;
}

.Newheader .topMenu i div {
  padding-left: 5px;
  font-size: 15px;
}

/* 下拉菜单内容 */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  right: 0;
  padding: 5px 10px;
  top: 41px;
  font-size: 14px;
}

.dropdown {
  position: relative;
}

.dropdown-Newheader {
  background-color: #05C9AD;
  border: 1px solid #05C9AD;
  padding: 10px 0;
  color: #fff;
  position: relative;
}

.dropdown span {
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50vh;
  position: absolute;
  transform: scale(.8);
  transform-origin: top right;
  right: 0px;
  top: -5px;
  margin-top: -0.25rem;
  color: #fff;
  background-color: #e74a3b;
}

.noteNewheader {
  padding: 0px !important;
  max-width: 300px;
  overflow-wrap: break-word;

}

.noteNewheader a {
  display: flex !important;
  padding: 10px !important;
  margin: 0 !important;
}

.dropdown-list-image {
  width: 40px;
}

.dropdown-list-image img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50vh;
}


.noteMessage {
  width: 180px;

}

.noteMessage .f1 {
  line-height: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.dropdown-content a {
  margin: 5px 0;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: #333;
}

.dropdown-content a:hover {
  opacity: 0.6;
}

#mysystemname {
  font-size: 14px;
  position: fixed;
  left: 0px;
  width: 260px;
  top: 60px;
  text-align: center;
  color: #fff;
  padding: 10px 0;
}

.mode-switch {
  background-color: transparent;
  border: none;
  padding-left: 10px;
  display: flex;
  justify-content: center;
  align-items: start;
  cursor: pointer;
  color: #0e8088;
}

.dark .mode-switch {
  color: #ffffff;
}

/* sidebar */
.sidebar {
  position: fixed;
  top: 60px;
  padding-top: 40px;
  left: 0;
  height: 100%;
  width: 260px;
  background: #05C9AD;
  z-index: 100;
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
  padding-bottom: 100px;
  transition: all 0.5s ease;
}

.dark .sidebar {
  background: #10233e;
}

.menuBorder {
  color: #ffffff;
  padding-left: 10px;
  padding-bottom: 10px;
  margin-top: 20px;
  margin-bottom: 10px;
  position: relative;
}

.menuBorder::after {
  content: "";
  width: 120px;
  height: 1px;
  background-color: #ffffff;
  display: flex;
  position: absolute;
  right: 20px;
  top: 10px;
}


.sidebar .nav-links {
  height: 100%;
  padding: 0px 0 150px 0;
  overflow: auto;
}

.sidebar .nav-links::-webkit-scrollbar {
  display: none;
}

.sidebar .nav-links li {
  cursor: pointer;
  margin-bottom: 10px;
  position: relative;
  list-style: none;
  transition: all 0.4s ease;
}

.sidebar .nav-links li:hover {
  background: rgb(1, 182, 155);
}

.dark .sidebar .nav-links li:hover {
  background: #25364e;
}

.sidebar .sub-menu li:hover {
  background: none;
  color: #77619e;
}

.sidebar .nav-links li .icon-link {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar .nav-links li i {
  height: 50px;
  min-width: 60px;
  text-align: center;
  line-height: 50px;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sidebar .nav-links li.noshowMenu i.arrow {
  transform: rotate(180deg);
}

.sidebar .nav-links li a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.sidebar .nav-links li a .link_name {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  font-weight: 600;
  transition: all 0.4s ease;
}

.dark .sidebar .nav-links li a .link_name,
.dark .sidebar .nav-links li i {
  color: #d6d6d6;
}

.sidebar .nav-links li .sub-menu {
  padding: 0px 6px 0px 60px;
  margin-top: 0px;
  display: block;
}

.sidebar .nav-links li.noshowMenu .sub-menu {
  display: none;
}

.sidebar .nav-links li .sub-menu a {
  color: #ffffff;
  font-size: 16px;
  padding: 5px 0;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.dark .sidebar .nav-links li .sub-menu a {
  color: #bbbbbb;
}


.sidebar .nav-links li .sub-menu .link_name {
  display: none;
}

.sidebar .nav-links li .sub-menu.blank {
  opacity: 1;
  pointer-events: auto;
  padding: 3px 20px 6px 16px;
  opacity: 0;
  pointer-events: none;
}

.sidebar .nav-links li:hover .sub-menu.blank {
  top: 50%;
  transform: translateY(-50%);
}

.sidebar .profile-details {
  position: fixed;
  bottom: 0;
  width: 260px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0e8088;
  padding: 5px 0;
  transition: all 0.5s ease;

}

.sidebar .nav-links li .sub-menu a.active,
.sidebar .nav-links li .sub-menu a:hover {
  color: rgb(230, 255, 251);
  /* 设置活动链接颜色 */
  font-weight: 600;
}

.sidebar .nav-links li .sub-menu a:hover {
  transform: scale(1.1);
}


.sidebar .profile-details .profile-content {
  display: flex;
  align-items: center;
}

.sidebar .profile-details img {
  height: 35px;
  height: 35px;
  padding: 5px;

  margin: 0 0px 0 12px;
  background: #fff;

}

.sidebar .profile-details .profile_name,
.sidebar .profile-details .job {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  white-space: nowrap;
  transition: all 5s ease;
}

.sidebar .profile-details .job {
  font-size: 18px;
}

.home-section {
  position: relative;
  background-color: rgba(255, 255, 255, 0.8);
  background-blend-mode: lighten;
  background-image: url("https://public-lian-orosi-siire.s3.ap-northeast-1.amazonaws.com/site/logintop.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom -100px right -500px;
  left: 260px;
  width: calc(100% - 260px);
  transition: all 0.5s ease;
}

.dark .home-section {
  background-color: rgb(73 73 100);
  background-image: none;
}

.breadcrumb {
  margin-top: 55px;
  font-size: 14px;
  padding: 40px 20px 10px 20px;
  position: relative;
  color: #3f3f3f;
}

.breadcrumbLink {
  color: #000;
  text-decoration: none;
}

.dark .breadcrumb {
  color: #ccc;
}

.dark .breadcrumbLink {
  color: #ffffff;
}

.breadcrumbLink:hover {
  opacity: 0.6;
}

.home-section .home-content {
  padding: 20px 20px 150px 20px;
  min-height: calc(100VH - 75px);
}

.home-section .home-content .bx-menu,
.home-section .home-content .text {
  color: #77619e;
  font-size: 35px;

}

.home-section .home-content .bx-menu {
  margin: 0 15px;
  cursor: pointer;
}

.home-section .home-content .text {
  font-size: 26px;
  font-weight: 600;
}

.subBottom {
  padding: 30px 6px 0px 60px;
}

.subBottom a {
  display: block;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  color: #000;
}

.subBottom a :hover {
  opacity: 0.6;
}

/* content */
.pageTitle {
  font-size: 28px;
}

.dark .pageTitle {
  color: #fff;
}

.section {
  width: 100%;
}

.tipsmessage {
  color: #666;
  background-color: #edfffa;
  padding: 15px;
  border: 1px solid #c5e0d8;
  font-size: 14px;
}

.disabled-option,
.disabled {
  color: rgb(204, 204, 204);
}

.delete-button {
  font-size: 10px;
  position: absolute;
  cursor: pointer;
  color: red;
  right: 0;
  margin-left: 5px;
}

#memberOutput {
  position: relative;
  width: calc(100% - 230px);
}

.searchArea {
  background-color: #eef9ff;
  border-color: #bce8f1;
  padding: 15px;
  border: 1px solid #a9cdd4;
}

.customerHistory {
  width: calc(100% - 820px);
}

.tableFrame {
  width: 100%;
}


.tableFrame table {
  table-layout: fixed;
  width: 100%;
  text-wrap: wrap;
}

@media (max-width: 1200px) {
  .tableFrame {
    overflow-x: scroll;
  }

  .tableFrame table {
    width: 1000px;
  }
}

@media (max-width: 1600px) {
  .tableFrameArea {
    overflow-x: scroll;
  }

  .tableFrameArea .tableArea{
    width: 1300px;
  }
}

.pageChangeBtn {
  border: none;
  background: #d9f1ea;
  width: 30px;
  height: 30px;
  margin-left: 10px;
  font-size: 22px;
  line-height: 22px;
  border-radius: 50vh;
  cursor: pointer;
}

.productImg {
  width: 130px;
  height: 130px;
  object-fit: contain;
  background: #fff;
}

.productMoreImg {
  width: 60px;
  height: 60px;
  border: 1px solid #bec7d3;
  object-fit: contain;
  background: #fff;
}

#drop-area {
  border: 2px dashed #ccc;
  border-radius: 20px;
  background: #fff;
  text-align: center;
  margin: 20px auto;
  padding: 50px 20px;
  cursor: pointer;
}

#drop-area:hover {
  background-color: #e1eef1;
}

.my-form p {
  text-align: center;
}

.photoArea {
  border-left: 1px solid #bec7d3;
  border-right: 1px solid #bec7d3;
  padding: 20px;
}

#productDataBody tr:nth-child(4n+1),
#productDataBody tr:nth-child(4n+2) {
  background-color: #f6f8fc;
}

#editProductPopup td:nth-child(2n+1) {
  background-color: #f6f8fc;
}

.temporaryRegister {
  width: 100%;
  height: 100px;
  padding: 20px 0;
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  margin-left: 140px;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 0) 100%);
  text-align: center;
}

.checkMessage {
  margin: 10px 0;
  padding: 10px;
  border: 1px dashed #d76299;
  border-radius: 5px;
  background-color: #fcd4e6;
  cursor: text;
  margin-top: 10px;
}


.checkID {
  background: #d76299;
  width: 65px;
  height: 50px;
  border-radius: 50vh;
  color: #fff;
  text-align: center;
  line-height: 16px;
  padding-top: 12px;
}

/* Table */
table,
.tableArea {
  width: 1000px;
  border-collapse: collapse;
  background: #fff;
  table-layout: fixed;
  cursor: pointer;
}

@media (max-width: 1100px) {
  table {
    width: 100%;
  }
}

table.w100Table,
table.customerTable {
  width: 100%;
}

table.w100Table td:nth-child(1) {
  text-align: left !important;
  width: 20% !important;
}

table.w100Table td:nth-child(2),
table.w100Table td:nth-child(3) {
  width: 40% !important;
}

#sortable-table tr.drag-over {
  border: 2px solid #bce8f1;
}

#sortable-table td {
  text-align: right;
}

#sortable-table td i {
  margin-left: 20px;
}

table td {
  vertical-align: middle;
  padding: 15px 10px;
  border: 1px solid #bec7d3;
}

.tableArea td {
  vertical-align: top;
  padding: 15px 10px;
  border: 1px solid #bec7d3;
}

.negotiationTable {
  width: 870px;
}

.negotiationTable td {
  padding: 5px;
}

.negotiationTable td:nth-child(2n+1) {
  width: 15% !important;
  text-align: center;
}

table th,
.tableArea th {
  font-size: 16px;
  background: #d9f1ea;
  font-weight: 500;
  padding: 10px 0;
  border: 1px solid #c4dbd4;
}

table.normal td:nth-child(1),
table.normal td:nth-child(3) {
  text-align: right;
  font-size: 14px;
  width: 200px;
  background: #d9f1ea;
}

table.normal td:nth-child(2) {
  width: calc(100% - 200px);
}

.note {
  margin-top: 5px;
  font-size: 12px;
  color: #686868;
}

.addrDetail {
  display: flex;
  align-items: center;
  font-size: 12px;
  margin: 5px 0;
}

.addrDetail span {
  width: 100px;
}

.sortable {
  cursor: move;
}

.imgDel {
  text-decoration: none;
  display: inline-block;
  padding: 2px 5px;
  font-size: 12px;
  color: #fff;
  background: #939393;
  margin-top: 10px;
}

.brand {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

/* From */
input[type="text"],
input[type="tel"],
input[type="mail"],
input[type="number"],
input[type="url"],
input[type="month"],
input[type="date"] {
  height: 2.8em;
  width: calc(100% - 10px);
  padding: 5px;
  border-radius: 4px;
  border: none;
  box-shadow: 0 0 0 1px #d9e3f1 inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

select {
  height: 2.8em;
  width: 100%;
  border-radius: 4px;
  border: 1px solid #a9cdd4;
}

textarea {
  resize: vertical;
  height: 6em;
  width: 100%;
  padding: 5px;
  border-radius: 4px;
  border: none;
  box-shadow: 0 0 0 1px #d9e3f1 inset;
}

input[type="text"]:focus,
textarea:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
select:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}

input[type="radio"] {
  margin-right: 5px;
}

label {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.category-options {
  display: none;
}

.col33Gap10 div {
  display: flex;
  gap: 5px;
  margin-bottom: 5px;
}

input[type="checkbox"] {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  vertical-align: -5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="checkbox"]:checked:before {
  position: absolute;
  top: 1px;
  left: 4px;
  transform: rotate(50deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: '';
}

#loadingAnimation {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 999999999;
  background: #defffd34;
  top: 0;
  left: 0;
}

#loadingAnimation img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);

}

/* BTN */

.link {
  cursor: pointer;
  text-decoration: underline;
  color: blue;
}

.link:hover {
  color: rgb(99, 99, 223);
}

.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  border-radius: 0.35rem;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  cursor: pointer;
  border: none;
}

.btn:hover {
  opacity: 0.8;
}

.btn80 {
  width: 80px;
  padding: 5px 0;
}

.btn100 {
  width: 100px;
  padding: 5px 0;
}

.btn40 {
  width: 40px;
  padding: 5px 0;
}

.btn120 {
  width: 120px;
  padding: 10px 0;
}

.btn160 {
  width: 160px;
  padding: 10px 0;
}

.btn200 {
  width: 200px;
  padding: 10px 0;
}

.addrSearch {
  background: #e4e9f7;
  margin-left: 10px;
}

.save {
  background: #05C9AD;
  color: #fff;
}

.bg-black {
  background: #363636;
  color: #fff;
}

button {
  border: none;
  cursor: pointer;
}

button:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

.edit {
  background: #62aed7;
  font-size: 16px;
  color: #fff;
}

.gotolist {
  background: #8d8d8d;
  color: #fff;
}

.delete {
  background: #d76299;
  font-size: 12px;
  color: #fff;
}

.safe {
  background: #39a342;
  color: #fff;
}

.search_container {
  position: relative;
  box-sizing: border-box;
}

.search_container input[type="text"] {
  border: none !important;
  box-shadow: 0 0 0 0px #d9e3f1 inset;
  height: 1.5em;
  padding: 0 10px;
}

.search_container input[type="text"]:focus {
  outline: 0;
}

.search_container {
  border: 2px solid #3879D9;
  padding: 3px 5px;
  border-radius: 20px;
  height: 2.2em;
  overflow: hidden;
  background: #fff;
  color: #384e72;
}

.search_container button {
  cursor: pointer;
  border: none;
  background: #ffffff;
  color: #384e72;
  position: absolute;
  padding: 5px;
  font-size: 24px;
  right: 0px;
  top: -3px;
}

.search_container ::-webkit-input-placeholder {
  color: #3879D9;
}

/* popup */

.popup {
  width: 880px;
  border-radius: 10px;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999999;
}

.popup:before {
  content: "✖";
  position: absolute;
  top: -20px;
  background: rgb(214, 96, 96);
  right: -10px;
  color: #fff;
  width: 30px;
  height: 30px;
  line-height: 28px;
  border-radius: 50vh;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
}

.popup-content {
  overflow-y: scroll;
  height: auto;
  max-height: 700px;
}

#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
}

.paddingTag {
  display: inline;
  padding: 2px 10px;
  border-radius: 20px;
}

.detailTable {
  width: 100%;
  min-height: 220px;
}

.detailTable tr:not(:first-child):hover {
  border: none;
}

.toolbar {
  background: #05C9AD;
  justify-content: center;
  padding: 10px 5px;
}

.gotop {
  display: flex;
  flex-direction: column;
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  background: #0e8088;
  border: 1px solid #999;
  text-align: center;
  line-height: 30px;
  padding-top: 5px;
  letter-spacing: -1px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  opacity: 1;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  border-radius: 50vh;
}

.gotop i {
  font-size: 26px;
  margin-bottom: -10px;
}

.lines2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}


.link_url {
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: underline;
  color: blue;
  word-break: break-all;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.pop-table input[disabled],
.pop-table select[disabled] {
  color: #000;
  background-color: #f5f5f5;
  border: none;
  background: transparent;
  box-shadow: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

#message {
  padding: 10px;
  background-color: #4CAF50;
  color: white;
  margin: 10px 0;
  text-align: center;
  border-radius: 5px;
  display: none; /* 初めは非表示 */
  z-index: 10000;
}

.btnTagRed {
  position: absolute;
  top: 0px;
  right: 5px;
  font-size: 18px;
  text-align: center;
  background-color: red;
  color: white;
  padding: 0 5px;
  height: 30px;
  width: 20px;
  line-height: 30px;
  border-radius: 50vh;
  margin: 0 5px;
}




#copy-notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  display: none;
  z-index: 1000;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeout {
  from { opacity: 1; }
  to { opacity: 0; }
}