@charset "UTF-8";

:root {
  --color-primary: #333;
  --color-green-dark: #666;
  --color-error: #F44800;
  --color-error-hover: #F40000;
  --color-gray: #B9B9B9;
  --color-gray-hover: #303030;
  --color-brown: "#666666";
  --bg-primary: #3b7e34;
  --bg-light-primary: #E2F5F5;
  --border-gray-350: #b9b9b9;
  --input-border-color: #b9b9b9;
  --btn-outline-hover-bg: #E2F5F5;
  --btn-gray-bg: #B9B9B9;
  --btn-gray-hover-bg: #333;
  --bg-badge: #F44800;
}

html, body {
  color: #333333;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  word-break: break-word;
}

#app-member {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.main-form {
  background-color: #E4E7EB !important;
}

.error-message {
  color: #DE5510;
}

.mt-6px {
  margin-top: 6px;
}

.mt-11px {
  margin-top: 11px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-30px {
  margin-top: 30px;
}

.ml-10px {
  margin-left: 10px;
}

.ml-20px {
  margin-left: 20px;
}

.mr-10px {
  margin-right: 10px;
}

.mr-20px {
  margin-right: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.cancel-button {
  background-color: #909090 !important;
  border-color: #909090 !important;
}

.main-button {
  background-color: #aaa !important;
  border-color: #aaa !important;
}

.fz-35 {
  font-size: 35px;
}

.fz-13 {
  font-size: 13px;
}

.fz-14 {
  font-size: 14px;
}

.fz-18 {
  font-size: 18px;
}

.text-black {
  color: #000000;
}

.mb-20 {
  margin-bottom: 20px;
}

.mw-458 {
  max-width: 458px;
}

.max-w-460 {
  max-width: 460px;
}

.max-w-640 {
  max-width: 640px;
}

.min-w-6 {
  min-width: 1.5rem;
}

.min-w-12 {
  min-width: 3rem;
}

.min-w-16 {
  min-width: 4rem;
}

.min-w-20 {
  min-width: 5rem;
}

.min-w-24 {
  min-width: 6rem;
}

.min-w-44 {
  min-width: 11rem;
}

/* form  */

.form-label {
  min-width: 126px;
}

.validate-error,
.error-message {
  margin-top: 10px !important;
  font-size: 13px;
}

/* direction */

.rtl {
  direction: rtl;
}

/* bg color */

.main-bg-color {
  background-color: #aaa;
}

.light-main-bg-color {
  background-color: #E2F5F5;
}

.sub-bg-color {
  background-color: #DE5510;
}

.third-bg-color {
  background-color: #909090;
}

.dark-bg-color {
  background-color: #333333;
}

.notification-bg-color {
  background-color: #F44800;
}

.toast-bg-color {
  background-color: var(--color-primary);
}

.hover-bg-color {
  background-color: #333;
}

.hover\:hover-bg-color:hover {
  background-color: #333;
}

/* font-size */

.text-xss {
  font-size: 0.5rem;
  line-height: 0.75rem;
}

/* font-color */

.sub-color {
  color: #DE5510;
}

.text-app-green {
  color: #333;
}

.text-primary {
  color: var(--color-green-dark) !important;
}

.text-green-dark {
  color: var(--color-green-dark);
}

.text-brown {
  color: var(--color-brown);
}

.text-color-primary {
  color: var(--color-primary);
}

.color-error {
  color: var(--color-error);
}

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

/* border */

.notification-border {
  border-left: 3px solid #F44800;
}

.primary-border {
  border: 1px solid var(--color-primary);
}

/* sizing */

.h-60-px {
  height: 60px;
}

.bg-document-request {
  background-color: #f8f8f7;
}

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

.html-pc-size {
  width: 724px !important;
  padding: 32px !important;
}

.content-html-pc-size {
  width: 660px;
}

.html-smartphone-size {
  width: 439px !important;
  padding: 32px !important;
}

.content-html-smartphone-size {
  width: 375px;
}

.max-height-500 {
  max-height: 500px;
}

.destination-list .destination {
  display: inline-block;
  cursor: pointer;
}

.destination-list .destination::before {
  display: inline-block;
  content: "";
  margin-right: 10px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-left: 14px solid var(--color-primary);
  border-bottom: 7px solid transparent;
  transition: transform 0.5s;
}

.destination-list .destination.expand-open::before {
  transform: rotate(90deg);
}

.destination-list .choose-destination {
  max-height: 400px;
  overflow-y: auto;
}

.step-list .item {
  width: 2.5rem;
  height: 2.5rem;
  margin-left: 10px;
  margin-right: 10px;
  color: var(--color-gray);
  background: #fff;
  position: relative;
}

.step-list .item:after {
  position: absolute;
  content: "";
  height: 2px;
  width: 20px;
  background: var(--color-primary);
  top: 50%;
  left: -20px;
  transform: translate(0, -50%);
}

.step-list .item:first-child {
  margin-left: 0;
}

.step-list .item:first-child:after {
  display: none;
}

.step-list .item:last-child {
  margin-right: 0;
}

.step-list .item.is-current {
  background-color: var(--color-green-dark);
  color: #fff;
}

.step-list .item.is-active {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  background: #fff;
}

.hover:hover {
  background: var(--bg-light-primary);
}

.base-red {
  color: #ff0000;
}

.browser-link-color {
  color: #0000ee;
}

.btn-search {
  position: fixed !important;
  left: calc(230px + 2rem);
  bottom: 25px;
  z-index: 99;
}

.custom-modal-content {
  max-height: calc(100vh - 200px);
  height: 100%;
}

.overflow-x-auto table th:first-child {
  position: unset;
}

.custom-table tbody tr:not(:last-child) td {
  border: none;
}

.min-w-fit {
  min-width: -moz-fit-content;
  min-width: fit-content;
}

/**********************
 * クライアント別配色設定
 * memo: ドメインによって配色を切り替えられるようにする
 * memo: resources/js/member/mixins/styleMixin.js で使用される
 **********************/

.default-main-color {
  background-color: var(--bg-primary);
}

.local-main-color {
  background-color: #666666;
}

.fcs-main-color {
  background-color: #3b7e34;
}

.btn-green {
  background: #3b7e34;
  border-color: #3b7e34;
  color: #fff;
}

.btn-green:hover {
  background-color: #3b7e34;
  opacity: 0.5;
}

.btn-green:disabled {
  background-color: #3b7e34;
  opacity: 0.5;
}
