/* ===========================
foundation
=========================== */
/* reset
--------------- */

@import "reset.css";

/* bass
---------------- */

/* typography */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');

html {
  font-family: 'Noto Sans JP', sans-serif;
  color: #3F3F3F;
}

.body-bg--gray {
  background-color: #F7F7F7;
}

.body-bg--white {
  background-color: #FFFFFF;
}

body {
  height: 100vh;
  display: flex;
  justify-content: space-between;
}

h1 {
  font-size: 34px;
  font-weight: 600;
  color: #8F8F8F;
}

h2 {
  font-size: 24px;
  font-weight: 300;
  color: #3F3F3F;
}

h3 {
  font-size: 20px;
  font-weight: 600;
  color: #3F3F3F;
}

h4 {
  font-size: 18px;
  font-weight: 600;
  color: #3F3F3F;
}

h5 {
  font-size: 14px;
  font-weight: 600;
  color: #3F3F3F;
}

h6 {
  font-size: 12px;
  font-weight: 600;
  color: #3F3F3F;
}

p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 12px;
  line-height: 20px;
}

p:hover {
  overflow: unset;
  white-space: unset;
  text-overflow: unset;
  word-break: break-all;
}

input[type="checkbox"],
input[type="radio"] {
  accent-color: #3F3F3F;
}

/*nav*/
nav {
  overflow-y: scroll;
  background-color: #FFFFFF;
  border-right: 1px solid var(--input-gray, #EEE);
  width: 18vw;
  height: 100vh;
  font-size: 16px;
  position: relative;
}

.nav-item-wrapper {
  margin: 40px 16px;
}

.nav-logo {
  max-width: 160px;
  min-width: 104px;
  width: 80%;
  margin: 0 0 24px 0;
}

.nav-trial {
  width: 100%;
  display: none;
}

.nav-trial .nav-trial-wrapper {
  padding: 0 0 56px 0;
  margin: 0 auto;
  display: flex;
  justify-content: left;
  align-items: center;
}

.nav-trial .nav-trial-wrapper .content {
  border-radius: 8px;
  background-color: white;
  border: solid 2px #3171f3;
  max-width: 125px;
}

.nav-trial .nav-trial-wrapper .content-wrapper {
  text-align: center;
  padding: 4px 8px;
  margin: 0;
}

.nav-trial .nav-trial-wrapper .help-button {
  padding: 0 8px;
  cursor: pointer;
}

.nav-trial .nav-trial-wrapper .help-button button {
  color: #58A3FB;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: underline;
}

.nav-trial .content p {
  font-size: 12px;
  color: #3171f3;
  font-weight: 600;
}

.nav-item {
  margin: 8px 0;
  cursor: pointer;
}

.nav-item p,
.nav-setting p {
  font-size: 14px;
}

.nav-item p:hover {
  white-space: unset;
  text-overflow: unset;
}

.nav-icon {
  margin-right: 12px;
  width: 16px;
  min-width: 16px;
  height: auto;
  padding-bottom: 2px;
}

.beginner-img {
  margin-right: 12px;
  width: 12px;
  min-width: 12px;
  height: auto;
  padding-bottom: 2px;
}

.nav-active {
  border-radius: 0px 40px 40px 0px;
  background: var(--bg-blue, #E7F0FE);
  padding: 12px 16px;
  border-radius: 8px;
}

.nav-hover {
  background-color: #FFFFFF;
  padding: 10px 16px;
  border-radius: 8px;
}

.nav-hover:hover {
  background: var(--bg-blue, #E7F0FE);
}

.nav-link-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-setting {
  margin-top: 32px;
}

.nav-setting-link {
  font-size: 14px;
  padding-left: 28px;
  display: none;
}

.nav-help-link {
  font-size: 14px;
  padding-left: 32px;
  display: none;
}

.nav-help-link .nav-icon {
  margin: 0 4px 0 0;
}

.nav-user {
  width: 16vw;
  padding: 16px 16px;
}

.nav-user p {
  width: 100%;
  font-size: 12px;
  color: #3F3F3F;
  text-decoration: underline;
  text-decoration-color: #3F3F3F;
}

.nav-user p:hover {
  white-space: unset;
  text-overflow: unset;
}

.beginner {
  font-size: 12px;
  text-decoration: underline;
  text-decoration-color: #3F3F3F;
}

.nav-arrow {
  width: 60px;
  height: 40px;
  background-color: #E8ECF4;
  border-radius: 10px;
  position: absolute;
  bottom: 16px;
  left: calc(16vw - 16px);
  z-index: 3;
  opacity: 1;
}

.nav-arrow:hover {
  opacity: 100%;
}

.nav-arrow img {
  width: 12px;
  height: 12px;
  margin-left: 8px;
  vertical-align: middle;
}

/* main
----------------- */
main {
  width: calc(100% - 18vw);
  padding-top: 16px;
  left: 18vw;
  position: absolute;
}

/* ==========================
object
========================== */

/* component
----------------- */
.hidden {
  display: none !important;
}

.link {
  font-size: 12px;
  color: #3171F3;
  font-weight: 600;
}

.underline {
  text-decoration: underline;
  text-decoration-color: #3F3F3F;
}

.pointer {
  cursor: pointer;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

/* img */
img {
  width: 100%;
  height: auto;
}

.icon--large {
  width: 28px;
  min-width: 28px;
  height: auto;
}

.icon--middle {
  width: 24px;
  min-width: 24px;
  height: auto;
}

.icon--small {
  width: 20px;
  min-width: 20px;
  height: auto;
}

.icon--minimum {
  width: 10px;
  min-width: 10px;
  height: auto;
}

/* button */
button {
  text-align: center;
  font-weight: 600;
}

button:hover {
  opacity: 70%;
}

.btn-disabled {
  opacity: 30%;
  pointer-events: none;
}

.btn--blue {
  color: #fff;
  background-color: #3171F3;
  border: solid 2px #3171F3;
}

.btn--red {
  color: #fff;
  background-color: #D84A5C;
  border: solid 2px #D84A5C;
}

.btn--white {
  color: #3171F3;
  background-color: #fff;
  border: solid 2px #3171F3;
}

.btn--gray {
  color: #8F8F8F;
  background-color: #fff;
  border: solid 2px #8F8F8F;
}

.btn--large {
  font-size: 14px;
  font-weight: bold;
  border-radius: 10px;
  width: 280px;
  padding: 15px;
}

.btn--middle {
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  padding: 10px 40px;
}

.btn-sub--middle {
  color: #8F8F8F;
  font-weight: bold;
  font-size: 16px;
}

.btn-sub--minimum {
  color: #8F8F8F;
  font-weight: bold;
  font-size: 10px;
}

.btn--small {
  font-size: 14px;
  padding: 6px 0;
  border-radius: 6px;
  width: 114px;
}

.btn--minimum {
  font-size: 12px;
  padding: 5px 0 3px;
  border-radius: 6px;
  width: 80px;
}

.btn-history--minimum {
  font-size: 12px;
  padding: 4px 0 4px 12px;
  border-radius: 6px;
  width: 88px;
  background-image: url(https://storage.googleapis.com/prd-drivechecker-asset/img/icon/history.svg);
  background-repeat: no-repeat;
  background-position: 7px 5px;
  line-height: 14px;
}

.btn-unshare--minimum {
  font-size: 12px;
  padding: 4px 0 4px 14px;
  border-radius: 6px;
  width: 88px;
  background-image: url(https://storage.googleapis.com/prd-drivechecker-asset/img/icon/link.svg);
  background-repeat: no-repeat;
  background-position: 10px 5px;
  line-height: 14px;
}

.btn-unshare--small {
  font-size: 14px;
  padding: 6px 0 6px 12px;
  border-radius: 6px;
  width: 114px;
  background-image: url(https://storage.googleapis.com/prd-drivechecker-asset/img/icon/link.svg);
  background-repeat: no-repeat;
  background-position: 16px 8px;
}

.btn-edit--minimum {
  font-size: 12px;
  padding: 4px 0 4px 14px;
  border-radius: 6px;
  width: 88px;
  background-image: url(https://storage.googleapis.com/prd-drivechecker-asset/img/icon/edit-minimum.svg);
  background-repeat: no-repeat;
  background-position: 12px 6px;
  line-height: 14px;
}

.btn-sync--minimum {
  font-size: 12px;
  padding: 4px 0 4px 14px;
  border-radius: 6px;
  width: 64px;
  background-image: url(https://storage.googleapis.com/prd-drivechecker-asset/img/icon/cached.svg);
  background-position: 8px 3.8px;
  background-repeat: no-repeat;
  background-size: 14px;
  line-height: 14px;
}

.btn-delete--small {
  font-size: 14px;
  padding: 6px 0 6px 14px;
  border-radius: 6px;
  width: 72px;
  background-image: url(https://storage.googleapis.com/prd-drivechecker-asset/img/icon/delete.svg);
  background-repeat: no-repeat;
  background-position: 8px 6px;
}

.btn-delete--minimum {
  font-size: 12px;
  padding: 4px 0 4px 14px;
  border-radius: 6px;
  width: 64px;
  background-image: url(https://storage.googleapis.com/prd-drivechecker-asset/img/icon/delete.svg);
  background-repeat: no-repeat;
  background-position: 8px 3.8px;
  background-size: 14px;
}

/* pagination */
.pagination {
  display: flex;
  justify-content: center;
}

.current-page {
  color: #fff;
  padding: 7px 10px 4px 10px;
  background-color: #8F8F8F;
  border-radius: 6px;
  font-weight: 600;
  margin: 0 4px;
}

.other-page {
  padding: 7px 10px 4px 10px;
  color: #8F8F8F;
  font-weight: 600;
  margin: 0 4px;
}

.other-page:hover {
  opacity: 0.5;
}

.ellipsis {
  padding: 6px 10px;
  color: #8F8F8F;
  font-weight: 600;
}

.paging-arrow {
  margin: auto 0;
}

.paging-arrow:hover {
  opacity: 0.5;
}

/* select */
select {
  outline: none;
  appearance: none;
  border-radius: 6px;
  width: 100%;
  background: #EEEEEE;
  text-overflow: ellipsis;
  background-image: url(https://storage.googleapis.com/prd-drivechecker-asset/img/icon/accordion_open-icon.svg);
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}

.select--small select {
  padding: 8px 28px 8px 16px;
  font-size: 14px;
}

.select--middle select {
  padding: 10px 28px 10px 16px;
  font-size: 14px;
  cursor: pointer;
}

.select-with-input {
  display: flex;
  outline: none;
  appearance: none;
  border-radius: 6px;
  width: 100%;
  background: #EEEEEE;
  text-overflow: ellipsis;
}

.select-with-input select {
  width: auto !important;
}

.member-status {
  font-size: 12px;
}

.member-status p {
  width: 80px;
}

.member-status select {
  height: 36px;
  padding: 8px 24px 4px 20px;
  background: none;
  background-image: url(https://storage.googleapis.com/prd-drivechecker-asset/img/icon/accordion_open-icon.svg);
  background-repeat: no-repeat;
  background-position: right 0px center;
  background-size: 10px;
}

/* input */
input {
  width: 100%;
  text-align: left;
  color: #3F3F3F;
  background-color: #EEEEEE;
  border-radius: 6px;
}

input.keyword-search {
  background-image: url(https://storage.googleapis.com/prd-drivechecker-asset/img/icon/search-keyword.svg);
  background-repeat: no-repeat;
  background-position: left 12px center;
  background-size: 16px;
  padding-left: 36px;
  height: 40px;
}

.input--minimum {
  font-size: 14px;
  padding: 8px 12px 6px;
}

.input--small {
  font-size: 14px;
  padding: 10px 16px 8px;
  margin: 1px;
}

.input--middle {
  font-size: 16px;
  padding: 10px 16px 8px;
}

.input--change-date {
  padding: 8px 8px 5px 16px;
  font-size: 16px;
}

/* input 横並び */
.text-left {
  text-align: left;
}

.input-flex {
  text-align: left;
  display: flex;
  align-items: center;
}

.input-flex p {
  margin-left: 6px;
  font-size: 14px;
}

.input-flex input {
  margin-right: 0.5em;
  width: auto;
}

/* 共通独自スタイル
----------------- */
/* text-with-icon */
.text-with-icon-between {
  display: flex;
  align-items: center;
  font-size: 14px;
  justify-content: space-between;
}

.text-with-icon {
  text-align: left;
  display: flex;
  align-items: center;
  line-height: 20px;
}

.btn-with-icon {
  display: flex;
  align-items: center;
}

.item-hover {
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 2px;
}

.item-hover:hover {
  background-color: #eee;
}

.item-hover-opacity:hover {
  opacity: 70%;
}

.subtitle {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
}

.item-select {
  background-color: #E7F0FE;
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 2px;
}

.text-info__upper {
  font-size: 14px;
}

.text-info__lower {
  font-size: 12px;
  color: #8F8F8F;
}

.text-info {
  margin-left: 8px;
  font-size: 14px;
  overflow: hidden;
  line-height: 24px;
}

.text-info a:hover {
  opacity: 0.3;
}

.text-info p:hover {
  white-space: unset;
  text-overflow: unset;
  word-break: break-all;
}

.text-info select {
  padding: 2px 0px 0px 0px;
  width: 40%;
  font-size: 10px;
  color: #8F8F8F;
  background: #FFFFFF00;
  background-image: url(https://storage.googleapis.com/prd-drivechecker-asset/img/icon/accordion_open-icon.svg);
  background-repeat: no-repeat;
  background-position: 45px 5px;
  background-size: 8px;
  margin-right: 0px;
}

.detail-modal__select {
  width: 80% !important;
  background-position: 100px 8px !important;
  cursor: pointer;
}

/* member モーダル */
.member-suggestion {
  width: 100%;
  display: none;
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 2px 3px 16px #0000001a;
  padding: 1vw 1vw;
  position: absolute;
  top: 40px;
}

/* hover */
.hover-detail {
  display: none;
  font-size: 12px;
  padding: 7px 12px 6px 12px;
  background-color: #07070790;
  color: #ffffff;
  border-radius: 4px;
  line-height: 1.4em;
  z-index: 1;
}

.hover-detail-report {
  font-size: 10px;
}

/* timer-badge */
.timer-detail {
  padding-left: 8px;
  font-size: 12px;
  padding: 4px 12px 4px 12px;
  background-color: #FFFFFF;
  color: #3F3F3F;
  border-radius: 4px;
  width: 240px;
}

.timer-icon {
  width: 14px;
  height: auto;
  padding-bottom: 2px;
  margin-right: 8px;
}

.lock-icon {
  width: 12px;
  height: auto;
  padding-bottom: 2px;
  margin-right: 10px;
}

/* checkbox */
/* チェックボックス全体 */
.checkbox {
  display: block;
  position: relative;
  padding-top: 9px;
  padding-bottom: 7px;
  padding-left: 40px;
  padding-right: 16px;
  margin-bottom: 4px;
  cursor: pointer;
}

/* デフォルトチェックボックス非表示 */
.checkbox input {
  display: none;
}

/* チェックボックスのスタイル */
.checkbox .checkmark {
  position: absolute;
  top: 53%;
  left: 12px;
  transform: translate(0%, -50%);
  height: 16px;
  width: 16px;
  border: 2px solid #3F3F3F;
  box-sizing: border-box;
  border-radius: 3px;
}

/* チェックマーク作成 */
.checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 3px;
  top: 0px;
  width: 6px;
  height: 10px;
  border: 2px solid #FFF;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* チェック時のスタイル */
.checkbox input:checked+.checkmark {
  background-color: #3F3F3F;
  border: 2px solid #3F3F3F;
}

/* チェック時 チェックマーク表示 */
.checkbox input:checked+.checkmark:after {
  display: block;
}

.checkmark--lock {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translate(0%, -50%);
  height: 26px;
  width: 14px;
}

.checked-bg {
  background-color: #FFE5E5;
  border-radius: 8px;
}

.all-member-checked {
  font-weight: bold;
  font-size: 14px;
}

.company-member-badge {
  border: 3px solid #58A3FB;
  border-radius: 50%;
}

.white-list-member-badge {
  border: 3px solid #BDBDBD;
  border-radius: 50%;
}

/* cross-mark-button edit-button */
.icon-button {
  width: 24px;
  height: 24px;
}

.cross-mark-button__bg:hover {
  background-color: #eee;
  border-radius: 50%;
}

.edit-button__bg {
  background-color: #e1e1e1;
  border-radius: 50%;
}

.cross-mark-button__bg img {
  top: 7.5px;
  left: 7px;
  width: 10px;
  height: auto;
}

.edit-button__bg img {
  top: 7px;
  left: 8px;
  width: 10px;
  height: auto;
}

.add-button__bg {
  background-color: #e1e1e1;
  border-radius: 50%;
}


/* timer-badge */
.icon--large>.timer-badge {
  position: absolute;
  top: 14px;
  left: 16px;
}

.timer-badge__bg {
  width: 17px;
  height: 17px;
  position: relative;
  background-color: #FFFFFF;
  border-radius: 50%;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
}

.timer-badge__bg img {
  position: absolute;
  top: 2px;
  height: 12px;
}

.setting-content {
  background-color: #FFF;
  border-radius: 16px;
  margin: 24px 32px;
  padding: 40px 32px 8px 40px;
  height: 90vh;
}

/* 通知モーダル */
.popup-modal {
  display: none;
  z-index: 6;
  position: absolute;
  right: 32px;
  top: 18px;
  transform: translateX(352px);
  -webkit-transform: translateX(352px);
  -ms-transform: translateX(352px);
  transition: transform .5s;
}

.popup-modal__close-btn {
  border-radius: 50%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  background-color: #fff;
  width: 19px;
  height: 19px;
  position: absolute;
  top: -8px;
  left: -8px;
}

.popup-modal__close-btn img {
  width: 45%;
  vertical-align: middle;
}

.popup-modal__content {
  background-color: #f5f4f4;
  border-radius: 20px;
  padding: 20px 24px;
  height: 60px;
  width: 320px;
  box-shadow: 0 4px 10px #bbbbbb;
}

.popup-modal__notice-icon {
  width: 14px;
  margin: 0 6px 2px 0;
}

.popup-modal__title {
  font-size: 14px;
}

/* 失敗通知モーダル */
.popup-error-modal {
  display: none;
  z-index: 6;
  position: absolute;
  right: 32px;
  top: 18px;
  transform: translateX(352px);
  -webkit-transform: translateX(352px);
  -ms-transform: translateX(352px);
  transition: transform .5s;
}

.popup-error-modal__close-btn {
  border-radius: 50%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  background-color: #fff;
  width: 19px;
  height: 19px;
  position: absolute;
  top: -8px;
  left: -8px;
}

.popup-error-modal__close-btn img {
  width: 45%;
  vertical-align: middle;
}

.popup-error-modal__content {
  background-color: #f5f4f4;
  border-radius: 20px;
  padding: 20px 24px;
  height: 100px;
  width: 320px;
  box-shadow: 0 4px 10px #bbbbbb;
}

.popup-error-modal__notice-icon {
  width: 14px;
  margin: 0 6px 2px 0;
}

.popup-error-modal__title {
  font-size: 14px;
}

.popup-error-modal__text {
  margin-top: 8px;
}

.popup-error-modal__text p {
  font-size: 14px;
  white-space: normal;
}

/* スクロールバー */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
  height: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #C4C4C4;
}

.custom-scrollbar::-webkit-scrollbar-track {
  border-radius: 5px;
  box-shadow: 0 0 2px #aaa inset;
}

.custom-scrollbar-middle::-webkit-scrollbar {
  width: 4px;
}

.custom-scrollbar-middle::-webkit-scrollbar-track {
  border-radius: 5px;
  box-shadow: 0 0 4px #aaa inset;
}

.custom-scrollbar-middle::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #8F8F8F;
}

.custom-scrollbar-min::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}

.custom-scrollbar-min::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #8F8F8F;
}

.custom-scrollbar-min::-webkit-scrollbar-track {
  border-radius: 5px;
  box-shadow: 0 0 2px #aaa inset;
}

/* ON/OFF スイッチ_チェックボックス */
.date-setting__switch {
  line-height: 27px;
  /* 1行の高さ          */
  text-align: center;
  /* 文字位置は中央     */
  font-size: 18px;
  /* 文字サイズ         */
  position: relative;
  /* 親要素が基点       */
  margin: 0;
  /* 中央寄せ           */
  width: 80px;
  /* ボタンの横幅       */
}

.date-setting__switch input[type="checkbox"] {
  display: none;
  /* チェックボックス非表示 */
}

/* ON/OFF スイッチ_チェックボックスのラベル（標準） */
.date-setting__switch label {
  display: block;
  /* ボックス要素に変更 */
  box-sizing: border-box;
  /* 枠線を含んだサイズ */
  height: 30px;
  /* ボタンの高さ       */
  border: 2px solid #C4C4C4;
  /* 未選択タブの枠線 */
  border-radius: 30px;
  /* 角丸               */
  background-color: #C4C4C4;
  /* タブの背景色 */
  cursor: pointer;
}

/* ON/OFF スイッチ_チェックボックスのラベル（ONのとき） */
.date-setting__switch input[type="checkbox"]:checked+label {
  border-color: #4AD87A;
  /* 選択タブの枠線     */
  background-color: #4AD87A;
  /* 背景色 */
}

/* ON/OFF スイッチ_表示する文字（標準） */
.date-setting__switch label span:after {
  content: "Off";
  /* 表示する文字       */
  padding: 0 0 0 25px;
  /* 表示する位置       */
  color: #ffffff;
  /* 文字色             */
}

/* ON/OFF スイッチ_表示する文字（ONのとき） */
.date-setting__switch input[type="checkbox"]:checked+label span:after {
  content: "On";
  /* 表示する文字       */
  padding: 0 25px 0 0;
  /* 表示する位置       */
  color: #ffffff;
  /* 文字色             */
}

/* ON/OFF スイッチ_丸部分のSTYLE（標準） */
.date-setting__switch .swImg {
  position: absolute;
  /* 親要素からの相対位置*/
  width: 20px;
  /* 丸の横幅           */
  height: 20px;
  /* 丸の高さ           */
  background: #ffffff;
  /* カーソルタブの背景 */
  top: 5px;
  /* 親要素からの位置   */
  left: 10px;
  /* 親要素からの位置   */
  border-radius: 26px;
  /* 角丸               */
  transition: .2s;
  /* 滑らか変化         */
}

/* ON/OFF スイッチ_丸部分のSTYLE（ONのとき） */
.date-setting__switch input[type="checkbox"]:checked~.swImg {
  transform: translateX(40px);
  /* 丸も右へ移動       */
}

.border-circle {
  border-radius: 50%;
}

.max-width-80 {
  max-width: 80px;
}

.max-width-200 {
  max-width: 200px;
}

.min-width-120 {
  min-width: 120px;
}

.flex {
  display: flex;
}

.flex-space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* footer */

.footer__copyright {
  text-align: right;
  font-size: 12px;
  line-height: 20px;
  color: #3F3F3F;
  padding: 10px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.bold {
  font-weight: 600;
}

.login-user-thumbnail {
  border-radius: 50%;
}

.user-nav-menu-wrapper {
  position: absolute;
  display: none;
}

.user-nav-menu {
  padding: 16px;
  background-color: #E8ECF4;
}

.user-nav-menu ul li {
  padding: 0 0 0 8px;
}

.user-nav-menu ul li:hover {
  background-color: #dfe3eb;
}

.user-nav-menu ul li .content {
  padding: 16px 24px 16px 0;
  display: flex;
  justify-content: left;
  align-items: center;
  border-bottom: solid 1px gray;
}

.user-nav-menu ul li .content .icon {
  padding: 0 8px;
}

.user-nav-menu ul li .content img {
  width: 24px;
}

.user-nav-menu ul li p {
  text-align: left;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
}

input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #EEEEEE inset;
}

.nav-menu-hide {
  display: none;
}

.nav-setting .menu-text {
  padding: 8px 8px 8px 24px;
}

.select-department,
.select-mime-type {
  cursor: pointer;
  padding: 4px 32px 4px 16px;
  font-size: 12px;
  background-color: #FFFFFF;
  background-image: url(https://storage.googleapis.com/prd-drivechecker-asset/img/icon/accordion_open-icon.svg);
  background-repeat: no-repeat;
  background-position: 90% 50%;
  background-size: 10px;
  border: solid 1px #8F8F8F;
  line-height: 16px;
  height: 25px;
}

.menu-share-item {
  display: none;
}

.disabled-status {
  opacity: 0.3;
}

.white-list-registered p {
  font-size: 10px;
  line-height: 18px;
  color: #8F8F8F;
  padding: 0 8px;
}

.nav-item-wrapper .company-setting-wrapper {
  margin: 16px 0;
}

.nav-item-wrapper .company-setting {
  display: flex;
  justify-content: left;
  align-items: center;
}

.nav-item-wrapper .company-setting .img-wrapper {
  margin-right: 8px;
}

.nav-item-wrapper .company-setting .img {
  width: 24px;
  height: 24px;
}

.nav-item-wrapper .company-setting .text p {
  line-height: 20px;
}

.nav-item-logout img {
  width: 24px;
}

.nav-user-info-wrapper {
  margin: 8px 0 0 24px;
}

.nav-user-info {
  background: #FFFFFF;
  padding: 16px 8px;
  border-radius: 8px;
  border: 1px solid var(--input-gray, #EEE);
}

.nav-user .user-role-wrapper,
.nav-user .user-attribute-wrapper {
  margin-bottom: 16px;
}

.nav-user .user-role-wrapper .user-role .user-role-key-wrapper .user-role-key,
.nav-user .user-attribute-wrapper .user-attribute .user-attribute-key-wrapper .user-attribute-key,
.nav-user .user-orgunit-wrapper .user-orgunit .user-orgunit-key-wrapper .user-orgunit-key {
  position: relative;
}

.nav-user .user-role-wrapper .user-role .user-role-key-wrapper .user-role-key::before,
.nav-user .user-attribute-wrapper .user-attribute .user-attribute-key-wrapper .user-attribute-key::before,
.nav-user .user-orgunit-wrapper .user-orgunit .user-orgunit-key-wrapper .user-orgunit-key::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 2px;
  background: #afafaf;
}

.nav-user .user-role-wrapper .user-role .user-role-key-wrapper .user-role-key p,
.nav-user .user-attribute-wrapper .user-attribute .user-attribute-key-wrapper .user-attribute-key p,
.nav-user .user-orgunit-wrapper .user-orgunit .user-orgunit-key-wrapper .user-orgunit-key p {
  text-decoration: none;
  font-weight: 300;
  font-size: 10px;
  margin-left: 4px;
  line-height: 18px;
}

.nav-user .user-role-wrapper .user-role .user-role-value-wrapper,
.nav-user .user-attribute-wrapper .user-attribute .user-attribute-value-wrapper,
.nav-user .user-orgunit-wrapper .user-orgunit .user-orgunit-value-wrapper {
  margin: 2px 0 0 4px;
}

.nav-user .user-role-wrapper .user-role .user-role-value-wrapper .user-role-value p,
.nav-user .user-attribute-wrapper .user-attribute .user-attribute-value-wrapper .user-attribute-value p {
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}

.nav-user .user-orgunit-wrapper .user-orgunit .user-orgunit-value-wrapper .user-orgunit-value .orgunit-wrapper {
  padding: 0;
  display: block;
  margin-bottom: 6px;
}

.nav-user .user-orgunit-wrapper .user-orgunit .user-orgunit-value-wrapper .user-orgunit-value .orgunit-wrapper .orgunit .orgunit-role-wrapper {
  margin-bottom: 4px;
}

.nav-user .user-orgunit-wrapper .user-orgunit .user-orgunit-value-wrapper .user-orgunit-value .orgunit-wrapper .orgunit .orgunit-role-wrapper .orgunit-role .department-admin {
  color: #D84A5C;
  border: solid 1px #D84A5C;
}

.nav-user .user-orgunit-wrapper .user-orgunit .user-orgunit-value-wrapper .user-orgunit-value .orgunit-wrapper .orgunit .orgunit-role-wrapper .orgunit-role .department-sub-admin {
  color: #58A3FB;
  border: solid 1px #58A3FB;
}

.nav-user .user-orgunit-wrapper .user-orgunit .user-orgunit-value-wrapper .user-orgunit-value .orgunit-wrapper .orgunit .orgunit-role-wrapper .orgunit-role .team-admin {
  color: #00b600;
  border: solid 1px #00b600;
}

.nav-user .user-orgunit-wrapper .user-orgunit .user-orgunit-value-wrapper .user-orgunit-value .orgunit-wrapper .orgunit .orgunit-role-wrapper .orgunit-role .team-sub-admin {
  color: #ffac5e;
  border: solid 1px #ffac5e;
}

.nav-user .user-orgunit-wrapper .user-orgunit .user-orgunit-value-wrapper .user-orgunit-value .orgunit-wrapper .orgunit .orgunit-role-wrapper .orgunit-role .member {
  color: #8a8a8a;
  border: solid 1px #8a8a8a;
}

.nav-user .user-orgunit-wrapper .user-orgunit .user-orgunit-value-wrapper .user-orgunit-value .orgunit-wrapper .orgunit .orgunit-role-wrapper .orgunit-role p {
  font-size: 12px;
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  padding: 0 4px;
  display: inline;
  line-height: 18px;
}

.nav-user .user-orgunit-wrapper .user-orgunit .user-orgunit-value-wrapper .user-orgunit-value .orgunit-wrapper .orgunit .orgunit-names-wrapper .orgunit-names p {
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  overflow: unset;
  white-space: unset;
  text-overflow: unset;
}

.nav-user .user-orgunit-wrapper .user-orgunit .user-orgunit-value-wrapper .user-orgunit-value .orgunit-wrapper .orgunit .orgunit-names-wrapper .orgunit-names p .focus-show {
  display: none;
}

.nav-user .user-orgunit-wrapper .user-orgunit .user-orgunit-value-wrapper .user-orgunit-value .orgunit-wrapper .orgunit .orgunit-names-wrapper .orgunit-names p:hover .focus-show {
  display: inline-block;
}

.nav-user .user-orgunit-wrapper .user-orgunit .user-orgunit-value-wrapper .user-orgunit-value .orgunit-wrapper .orgunit .orgunit-names-wrapper .orgunit-names p:hover .focus-hide {
  display: none;
}

nav .nav-item-wrapper .nav-setting .nav-setting-link {
  display: block;
}

nav .nav-item-wrapper .nav-setting .nav-help-link {
  display: block;
}

main .page-title-wrapper .page-title .page-help-button-wrapper {
  margin: 0 16px;
}

main .dashboard-content .report-section .report-list .report-item-chart-wrapper-wrapper {
  display: block;
}

main .dashboard-content .report-section .report-list .report-item-chart-wrapper-wrapper .report-item-chart-wrapper .report-item-chart .count-all {
  display: block;
}

main .dashboard-content .report-section .report-list .report-item-chart-wrapper-wrapper .report-item-chart-wrapper .report-item-chart .count-all canvas {
  display: block;
  box-sizing: border-box;
  height: 268px;
  width: 268px;
}

main .page-title-wrapper .page-title .page-help-button-wrapper,
main .setting-content .page-help-button-wrapper {
  margin: 0 16px;
}

main .page-title {
  display: flex;
  justify-content: left;
  align-items: center;
}

.nav-text {
  padding: 10px 16px;
}

.nav-icon svg {
  width: 16px;
  height: 16px;
}

.nav-item-wrapper p:hover {
  white-space: unset;
  text-overflow: unset;
  overflow: unset;
}

.bulk-module__wrapper {
  display: block;
}

.bulk-module__wrapper .modal-content-wrapper {
  position: absolute;
  width: 95vw;
  height: 95vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.bulk-module__wrapper .modal-content-wrapper .modal-content {
  background: #ffffff;
  border-radius: 20px;
  top: unset;
  left: unset;
  position: unset;
  transform: unset;
  padding: unset;
  width: unset;
  height: unset;
  max-width: unset;
  max-height: unset;
}

.bulk-module__wrapper .modal-content-wrapper .modal-content .modal-content-inner {
  height: 95vh;
  overflow-y: scroll;
  padding: 16px 16px 72px;
}

.bulk-module__wrapper .modal-content-wrapper .modal-content .modal-content-inner .bulk-setting-controller {
  margin: 20px auto;
  width: 90%;
  border: 1px solid #ffff;
}

.bulk-module__wrapper .modal-content-wrapper .modal-content .modal-content-inner .bulk-setting-controller .bulk-module__link .bulk-module__link-option .bulk-module__link-target-option select {
  opacity: 0.4;
}

.bulk-module__wrapper .modal-content-wrapper .modal-content .modal-content__button {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 32px 8px;
  background: #ffffffe3;
  padding: 0 24px;
}

#navigation_trial {
  display: none;
}