@charset "UTF-8";
/* ------------ */
/* 画面共通設定 */
/* ------------ */
/* custom primary buttons */
/* line 9, app/assets/stylesheets/btn-custom.scss */
.btn-primary-2 {
  color: white;
  background-color: #004ed6;
  border-color: #004ed6;
}

/* line 13, app/assets/stylesheets/btn-custom.scss */
.btn-primary-2 .image-icon {
  filter: brightness(0) invert(1);
}

/* line 18, app/assets/stylesheets/btn-custom.scss */
.btn-primary-2:hover {
  background-color: #3574e1;
  border-color: #004ed6;
}

/* line 23, app/assets/stylesheets/btn-custom.scss */
.btn-outline-primary-2 {
  color: #004ed6;
  background-color: white;
  background-image: none;
  border: 2px solid #004ed6;
}

/* line 31, app/assets/stylesheets/btn-custom.scss */
.btn-outline-primary-2:hover {
  color: white;
  background-color: #004ed6;
  border-color: #004ed6;
}

/* line 35, app/assets/stylesheets/btn-custom.scss */
.btn-outline-primary-2:hover .image-icon {
  filter: brightness(0) invert(1);
}

/* line 41, app/assets/stylesheets/btn-custom.scss */
.btn-success-2 {
  color: white;
  background-color: #46d600;
  border-color: #46d600;
}

/* line 45, app/assets/stylesheets/btn-custom.scss */
.btn-success-2 .image-icon {
  filter: brightness(0) invert(1);
}

/* line 50, app/assets/stylesheets/btn-custom.scss */
.btn-success-2:hover {
  background-color: #71e273;
  border-color: #46d600;
}

/* line 55, app/assets/stylesheets/btn-custom.scss */
.btn-outline-success-2 {
  color: #46d600;
  background-color: white;
  background-image: none;
  border: 2px solid #46d600;
}

/* line 63, app/assets/stylesheets/btn-custom.scss */
.btn-outline-success-2:hover {
  color: white;
  background-color: #46d600;
  border-color: #46d600;
}

/* line 67, app/assets/stylesheets/btn-custom.scss */
.btn-outline-success-2:hover .image-icon {
  filter: brightness(0) invert(1);
}

/* line 73, app/assets/stylesheets/btn-custom.scss */
.btn-orange-2 {
  color: white;
  background-color: #d66b00;
  border-color: #d66b00;
}

/* line 77, app/assets/stylesheets/btn-custom.scss */
.btn-orange-2 .image-icon {
  filter: brightness(0) invert(1);
}

/* line 82, app/assets/stylesheets/btn-custom.scss */
.btn-orange-2:hover {
  background-color: #f38954;
  border-color: #d66b00;
}

/* line 87, app/assets/stylesheets/btn-custom.scss */
.btn-outline-orange-2 {
  color: #d66b00;
  background-color: white;
  background-image: none;
  border: 2px solid #d66b00;
}

/* line 95, app/assets/stylesheets/btn-custom.scss */
.btn-outline-orange-2:hover {
  color: white;
  background-color: #d66b00;
  border-color: #d66b00;
}

/* line 99, app/assets/stylesheets/btn-custom.scss */
.btn-outline-orange-2:hover .image-icon {
  filter: brightness(0) invert(1);
}

/* line 105, app/assets/stylesheets/btn-custom.scss */
.btn-grey-2 {
  color: white;
  background-color: #949494;
  border-color: #949494;
}

/* line 109, app/assets/stylesheets/btn-custom.scss */
.btn-grey-2 .image-icon {
  filter: brightness(0) invert(1);
}

/* line 114, app/assets/stylesheets/btn-custom.scss */
.btn-grey-2:hover {
  background-color: #a7aaad;
  border-color: #949494;
}

/* line 119, app/assets/stylesheets/btn-custom.scss */
.btn-outline-grey-2 {
  color: #949494;
  background-color: white;
  background-image: none;
  border: 2px solid #949494;
}

/* line 127, app/assets/stylesheets/btn-custom.scss */
.btn-outline-grey-2:hover {
  color: white;
  background-color: #949494;
  border-color: #949494;
}

/* line 131, app/assets/stylesheets/btn-custom.scss */
.btn-outline-grey-2:hover .image-icon {
  filter: brightness(0) invert(1);
}

/* line 145, app/assets/stylesheets/btn-custom.scss */
.btn-primary-2:hover,
.btn-success-2:hover,
.btn-orange-2:hover,
.btn-grey-2:hover,
.btn-outline-primary-2:hover,
.btn-outline-success-2:hover,
.btn-outline-orange-2:hover,
.btn-outline-grey-2:hover {
  opacity: 1;
}

/* line 146, app/assets/stylesheets/btn-custom.scss */
.btn-primary-2:hover .image-icon,
.btn-success-2:hover .image-icon,
.btn-orange-2:hover .image-icon,
.btn-grey-2:hover .image-icon,
.btn-outline-primary-2:hover .image-icon,
.btn-outline-success-2:hover .image-icon,
.btn-outline-orange-2:hover .image-icon,
.btn-outline-grey-2:hover .image-icon {
  filter: brightness(0) invert(1);
}

/* line 1, app/assets/stylesheets/loader.scss */
.loading-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 45px;
  border: 5px solid rgba(217, 106, 91, 0.2);
  border-top-color: #d60011;
  border-radius: 50%;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* fade_in_scroll_up ｜下から上へ出現 */
/* line 2, app/assets/stylesheets/fade_in_scroll_up.scss */
.fade_in_scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

/* line 7, app/assets/stylesheets/fade_in_scroll_up.scss */
.fade_in_scroll_up.on {
  transform: translateY(0);
  opacity: 1;
}

/* line 8, app/assets/stylesheets/common.scss */
.btn {
  font-size: 10pt;
  padding: 8px 12px;
}

/* line 13, app/assets/stylesheets/common.scss */
.btn-mini {
  height: 34px;
}

/* line 17, app/assets/stylesheets/common.scss */
h2.card-title {
  height: 25px;
  font-weight: bold;
  margin: 5px;
  padding: 5px;
}

/* line 24, app/assets/stylesheets/common.scss */
h5.card-title {
  height: 25px;
  font-weight: bold;
  margin: 5px;
  padding: 5px;
  text-transform: none;
}

/* line 32, app/assets/stylesheets/common.scss */
a.scroll-to-top {
  display: none;
  padding: 0;
  width: 0;
}
