body,
:is(.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6),
.navbar-menu .navbar-nav .nav-link {
    font-family: 'Noto Sans JP', sans-serif;
}

select {
    cursor: pointer;
}

.dreamify-icon {
    background: #1a6cf5;
    border-radius: 8px;
    font-weight: 900;
    font-size: 14px;
    width: 32px;
    height: 32px;
}

.dreamify-text {
    font-size: 18px;
    font-weight: 800;
    color: #1a6cf5;
}

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

.font-size-11px {
    font-size: 11px;
}

.btn-primary {
    background: #1a6cf5;
    color: #fff;
}

.logo-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #1a6cf5, #00c2a8);
}

.card {
    border-radius: 16px;
}

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

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

.font-size-16px {
    font-size: 16px;
}

.btn-logout:hover {
    border-color: #ef4444 !important;
    color: #ef4444 !important;
}

.border-radius-8px {
    border-radius: 8px;
}

/** Flatpickr Custom Styles */
.flatpickr-months .flatpickr-month {
  color: rgba(255, 255, 255, 0.9) !important;
}

.flatpickr-weekdays {
    background: #6691e7 !important;
    border-bottom: none !important;
    height: 36px !important;
}

span.flatpickr-weekday {
    background: #6691e7 !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    font-size: 1rem !important;
}

.flatpickr-months .flatpickr-next-month,
.flatpickr-months .flatpickr-prev-month {
    padding: 5px 10px !important;
    color: rgba(255, 255, 255, .9) !important;
    fill: rgba(255, 255, 255, .9) !important;
}
/** ./ Flatpickr Custom Styles */

/** Select2 Custom Styles */
.select2-container--bootstrap-5 .select2-selection--single {
    padding: .5rem .9rem !important;
}
.select2-container--bootstrap-5 .select2-selection {
    padding-left: 0 !important;
}
.select2-container .select2-selection--single,
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0 !important;
    font-size: .825rem !important;
    height: 38px !important;
}
.select2-selection__rendered .select2-selection__placeholder {
    padding-left: 14px !important;
}
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option {
    font-size: .825rem !important;
}
/** ./ Select2 Custom Styles */

/** Password show/hide toggle */
.password-addon {
    right: 0;
    top: 0;
    color: #64748b;
    cursor: pointer;
    z-index: 5;
}

.password-addon:hover {
    color: #1a6cf5;
}

/* Shift eye button left when Bootstrap's validation icon is shown */
.position-relative input.is-invalid ~ .password-addon {
    right: 20px;
    top: -10px;
}
/** ./ Password show/hide toggle */

.card-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(26,108,245,.08);
    overflow: hidden;
}

.required::after {
    content: '*';
    color: red;
}

.optional::after {
    content: '(任意)';
    --vz-text-opacity: 1;
    color: var(--vz-secondary-color) !important;
    margin-left: 2px;
}

/* Fix Tagify hover white line issue */
.tagify__tag:focus div::before,
.tagify__tag:hover:not([readonly]) div::before {
    --tag-bg-inset: unset !important;
}