/* W3.CSS 4.15 December 2020 by Jan Egil and Borge Refsnes */

/*
** ヘッダー
*/
/* 動的ヘッダー用 - start */
.header-toolbtn-panel {
  display: flex;
  justify-content: space-between;
  color: #fff;
  width: 100%;
  height: 56px;
  align-items: center;
  padding-bottom: 1px;
  position: fixed;
  top: 0;
  left: 0;
  background: #ef9816;
  z-index: 101;
}
.header-site {
  display: flex;
  align-items: center;
}
.header-toolbtn-panel .header-site-logo {
  display: none;
}
.header-msg {
  position: absolute;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.header-msg {
  margin: 0 auto;
}
.header-toolbtn-wrap {
  display: flex;
  align-items: center;
  justify-content: right;
  width: calc(100% - 30px);
  height: 100%;
  margin: 0 20px;
  z-index: 101;
}

.header-toolbtn-wrap > * {
  margin-left: 1em;
}

.header-toolbtn-wrap .toolbtn-cancel {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
}
.btn-disabled,
.btn-primary,
.btn-success,
.btn-info,
.btn-warning,
.btn-save,
.btn-danger,
.btn-basic,
.btn-del {
  display: inline-block;
  align-self: center;
  line-height: inherit;
  padding: 6px 16px;
  border: none;
  border-radius: 4px;
  font-family: inherit;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
}
.btn-warning {
  border: 1px solid #ef9816;
}
.toolbtn {
  width: auto;
  height: auto;
  min-width: 96px;
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  color: #fff;
  line-height: 1;
  border: solid 1px;
  border-radius: 6px;
  box-shadow: 1px 1px 3px -1px #8080807a;
  box-sizing: border-box;
}
.header-toolbtn-wrap .toolbtn-save {
  color: #fff;
  background-color: #1571da;
  border-color: #1571da;
}

/* 動的ヘッダー用 - end */

.header {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 56px;
  padding: 0 20px;
  background: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  z-index: 100;
}

.header-site-logo {
  margin: 0 16px 0 0;
}

.header-site-logo img {
  width: auto;
  height: 28px;
}

.header-view {
  margin-left: auto;
}

.header-view a {
  display: block;
  padding: 0 0 0 20px;
  background: url(/manage/assets/img/icon-preview.svg) no-repeat 0 50%;
  background-size: 16px;
}

.header-user {
  display: flex;
  align-items: center;
  margin: 0 0 0 8px;
  padding: 4px 0;
  border-radius: 4px;
  cursor: pointer;
}

.header-user-avatar {
  width: 28px;
  height: 28px;
  overflow: hidden;
  margin: 0 8px 0 0;
  border-radius: 100%;
}

.header-user-avatar img {
  vertical-align: top;
  width: 100%;
  height: 100%;
}

/*
** スライド
*/
.slide-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  background: #fff;
  /* box-shadow: 0 0 30px rgba(0, 0, 0, 0.16); */
  transform: translateX(100%);
  transition: 0.3s;
}

.slide-menu.is-open {
  transform: translateX(0);
}

.slide-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.35);
}

.slide-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
  padding: 16px 24px;
  border-bottom: 1px solid #e1e3e5;
  box-sizing: border-box;
}

.slide-menu-head-close {
  position: relative;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.slide-menu-head-close:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #6d7175;
  transform: translate(-50%, -50%) rotate(45deg);
}

.slide-menu-head-close:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #6d7175;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.slide-menu-contents {
  height: calc(100vh - 56px);
  overflow: auto;
  padding: 24px;
  box-sizing: border-box;
}

.slide-menu-contents::-webkit-scrollbar {
  width: 6px;
}

.slide-menu-contents::-webkit-scrollbar-track {
  background: #eee;
}

.slide-menu-contents::-webkit-scrollbar-thumb {
  background: #999;
}

.slide-menu-avatar {
  margin: 0 0 16px;
  padding: 0 0 32px;
  border-bottom: 1px solid #e1e3e5;
  text-align: center;
}

.slide-menu-avatar-img {
  width: 140px;
  height: 140px;
  overflow: hidden;
  margin: 0 auto 16px;
  border-radius: 100%;
}

.slide-menu-avatar-img img {
  width: 140px;
  height: 140px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.slide-menu-avatar-name {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: bold;
}

.slide-menu-avatar-role {
  margin: 0 0 24px;
  color: #6d7175;
}

.slide-menu-email {
  margin: 0 0 16px;
  padding: 0 0 16px;
  border-bottom: 1px solid #e1e3e5;
}

.slide-menu-email-label {
  margin: 0 0 8px;
  color: #6d7175;
  font-size: 12px;
}
