@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap);
@import url(https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined|Material+Icons+Round|Material+Icons+Sharp|Material+Icons+Two+Tone);
@charset "UTF-8";
/** 
    link
**/
@font-face {
  font-family: "Yu Gothic";
  font-weight: 400;
  font-style: normal;
  src: url("/font/YuGothic.ttf") format("truetype");
}
@font-face {
  font-family: "Hiragino Kaku Gothic Pro";
  font-weight: 400;
  font-style: normal;
  src: url("/font/HiraginoKakuGothicPro.otf") format("opentype");
}
html[lang=ja] {
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic Pro", "sans-serif";
}

html[lang=en] {
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic Pro", "sans-serif";
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

body {
  font-size: 14px;
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic Pro", "sans-serif";
}

.app-root {
  min-height: 100vh;
}

.header {
  display: flex;
  position: fixed;
  top: 0;
  left: 80px;
  right: 0;
  z-index: 999;
  overflow: visible;
  height: auto;
  background-color: #FFFFFF;
  border-bottom: solid 1px #C1CBD0;
  justify-content: space-between;
  align-items: center;
}

.header.confirmRequestInput {
  height: 90px;
  left: 24px;
}

.header__inner {
  display: inline-flex;
  align-items: center;
  padding: 10px;
}

.header__logo {
  width: 160px;
  display: block;
  box-sizing: border-box;
}

.default__pointer {
  pointer-events: none;
}

.header__logo img {
  width: 160px;
}

.header__customized__logo {
  height: 43px;
  margin-left: 8px;
}

.header__version {
  margin-left: 20px;
  color: #d93737;
  cursor: pointer;
}

.header__version::before {
  font-family: "Material Icons";
  content: "\e88e";
  vertical-align: bottom;
  margin-right: 5px;
  color: #d93737;
}

.nav__list {
  display: flex;
  align-items: center;
}

.nav__item {
  display: flex;
  margin: 0 10px 0 0;
}

.inquiry_message {
  padding-top: 8px;
  font-weight: bold;
  color: red;
}

.dropdown {
  position: relative;
  cursor: pointer;
}

.dropdown .menu {
  display: none;
}

.menu.active {
  position: absolute;
  top: 25px;
  right: 0;
  display: block;
  width: 175px;
  box-shadow: 3px 3px 3px #bbb;
}

.menu a {
  display: block;
  padding: 10px;
  background: #F5F5F5;
  color: #2D383C;
}

.menu a:hover {
  background: #c5c5c5;
}

.header__logout {
  color: var(--primary-color-70);
}

#logout-btn {
  vertical-align: text-top;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  overflow: visible;
  width: 200px;
  height: 100%;
  background: var(--primary-color);
  text-align: center;
  color: #FFFFFF;
  padding-top: 10px;
  width: 80px;
}

.sidebar__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 8px;
  text-align: center;
  font-weight: bold;
  font-size: 10px;
}

.sidebar__item a::before {
  font-family: "Material Icons";
  margin: 0 0 2px 0;
  vertical-align: bottom;
  background: var(--primary-color-90);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
}

.sidebar__item.account-link a::before {
  content: "\f1d0";
}

.sidebar__item.home-link a::before {
  content: "\e88a";
}

.sidebar__item.manual-link a::before {
  content: "\e880";
}

.sidebar__item.about-link a::before {
  content: "\e88e";
}

.sidebar__item.data-link a::before {
  content: "\e01d";
}

.sidebar__item.import-link a::before {
  content: "\e2c6";
}

.sidebar__item.databook-create-link a::before {
  content: "\e145";
}

.sidebar__item.databook-list-link a::before {
  content: "\e2c4";
}

.sidebar__item.setting-link a::before {
  content: "\e8b8";
}

.sidebar__item.input-assistance-link a::before {
  content: "\f10a";
}

.sidebar__item.goal-management-link a::before {
  content: url("/img/goalSettingIcon.svg");
}

.sidebar__item.active a {
  color: var(--secondary-color);
}

.sidebar__item.active a::before {
  background: var(--secondary-color);
}

.app-main {
  position: relative;
  padding-top: 108px;
  margin-left: 80px;
  min-height: 100vh;
}

/* flash */
.flash-success {
  font-size: 16px;
  position: fixed;
  bottom: 15%;
  z-index: 9999;
  max-width: 50%;
  padding: 20px;
  background: #155724;
  border-radius: 5px;
}

.flash-success p {
  width: 250px;
  color: #FFFFFF;
  width: -moz-fit-content;
  width: fit-content;
}

.flash-success p::before {
  font-family: "Material Icons";
  content: "\e876";
  display: inline-block;
  margin: 0 10px 0 0;
  vertical-align: bottom;
  font-size: 16px;
}

.flash-error {
  font-size: 16px;
  position: fixed;
  bottom: 15%;
  z-index: 9999;
  max-width: 50%;
  padding: 20px;
  background: #FA815C;
  border-radius: 5px;
}

.flash-error p {
  width: 250px;
  color: #FFFFFF;
  width: -moz-fit-content;
  width: fit-content;
}

.flash-error p::before {
  font-family: "Material Icons";
  content: "\e5cd";
  display: inline-block;
  margin: 0 10px 0 0;
  vertical-align: bottom;
  font-size: 16px;
}

.flash-boxes {
  display: flex;
  justify-content: center;
}

.flash-processed {
  font-size: 16px;
  position: fixed;
  bottom: 15%;
  z-index: 9999;
  max-width: 50%;
  padding: 20px;
  background: #878685;
  border-radius: 5px;
}

.flash-processed p {
  width: 250px;
  color: #FFFFFF;
  width: -moz-fit-content;
  width: fit-content;
}

.flash-processed p::before {
  font-family: "Material Icons";
  content: "\e5cd";
  display: inline-block;
  margin: 0 10px 0 0;
  vertical-align: bottom;
  font-size: 16px;
}

.flash-warning {
  font-size: 16px;
  position: fixed;
  bottom: 15%;
  z-index: 9999;
  max-width: 50%;
  padding: 20px;
  background: var(--secondary-color);
  border-radius: 5px;
}

.flash-warning p {
  width: 250px;
  color: #FFFFFF;
  width: -moz-fit-content;
  width: fit-content;
}

.flash-warning p::before {
  font-family: "Material Icons";
  content: "\e002";
  display: inline-block;
  margin: 0 10px 0 0;
  vertical-align: bottom;
  font-size: 16px;
}

@keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}
.hide {
  animation: hide 5s linear 1s;
  animation-fill-mode: forwards;
}

.feedback__button {
  display: flex;
  -webkit-box-align: center;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 29px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s;
}

.i-button-icon {
  vertical-align: bottom;
}

body .vc-colorpicker {
  padding-bottom: 70px !important;
}

.vc-colorpicker::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "読みやすさ向上のために一部のフォントの色が変更される場合があります。";
  font-size: 14px;
  color: #656565;
  line-height: 1.4;
  padding: 15px;
  border-top: 2px solid #F5F5F5;
}

html[lang=en] .vc-colorpicker::after {
  content: "Some font colors may be changed to improve readability.";
}

.vc-hue-slider__bar {
  background: -webkit-linear-gradient(left, rgb(255, 0, 0) 0%, rgb(255, 255, 0) 16.66%, rgb(0, 255, 0) 33.33%, rgb(0, 255, 255) 50%, rgb(0, 0, 255) 66.66%, rgb(255, 0, 255) 83.33%, rgb(255, 0, 0) 100%) !important;
}

.multiselect-dropdown-menu {
  --ms-tag-bg: #e3f2fd;
  --ms-tag-color: #039be5;
  --ms-tag-color-disabled: #555555;
  --ms-tag-bg-disabled: #fff;
  color: #2D383C;
  box-shadow: 0 0 0 0 !important;
  --ms-option-font-size: 12px;
  --ms-tag-font-size: 12px;
  --ms-tag-font-weight: 400;
  --ms-tag-line-height: normal;
}

.multiselect-dropdown-menu .multiselect-tag-wrapper {
  white-space: normal !important;
}

.multiselect-dropdown-menu .multiselect-tags-search-wrapper {
  display: none;
}

.swal2-popup {
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic Pro", "sans-serif" !important;
  color: #424C50 !important;
}

.swal2-container {
  z-index: 999999;
}

.swal2-container .swal2-confirm {
  background-color: var(--primary-color) !important;
  color: #FFFFFF !important;
  min-width: 100px !important;
  text-align: center;
}

.swal2-container .swal2-cancel {
  background-color: #6C7476 !important;
  color: #FFFFFF !important;
  min-width: 100px !important;
  text-align: center;
}

.swal2-container .swal2-info {
  color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}

.swal2-container .swal2-warning {
  color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px white inset;
}
