@charset "UTF-8";

/**
 * 汎用
 */
/* 必須マーク */
.required::after {
    content: "必須";
    color: var(--color-red);
    font-size: 14px;
    line-height: 1;
    padding-left: 0.5rem;
}
/* md以下 */
@media (max-width: 768px) {
    .required::after {
        font-size: 10px;
    }
}

/**
 * input
 */
/* ユーザー権限設定 MEMO: 一旦仮で固定値を入れています */
.user-role-toggle label {
    cursor: pointer;
    color: white;
    font-size: 12px;
    width: 75px;
    height: 28px;
    align-items: center;
    display: flex;
    justify-content: center;
    background-color: var(--color-dark-gray);
}
.user-role-toggle input[type=radio]:checked+label {
    background-color: var(--color-dark-blue);
    color: white;
    opacity: 1;
}

/* YES／NO タグ */
.yes-no-toggle label {
    cursor: pointer;
    color: white;
    font-size: 12px;
    width: 75px;
    height: 28px;
    align-items: center;
    display: flex;
    justify-content: center;
    background-color: var(--color-dark-gray);
}
.yes-no-toggle input[type=radio]:checked+label {
    background-color: var(--color-dark-blue);
    color: white;
    opacity: 1;
}

/* dropdown */
.custom-dropdown .dropdown-toggle {
    color: var(--color-white);
    background-color: #055D96;
    padding: 3px 10px;
    font-size: 16px;
}
.custom-dropdown .dropdown-menu {
    padding: unset;
    border: unset;
    border-radius: unset;
    box-shadow: 0px 1px 3px #00000029;
    cursor: pointer;
}
.custom-dropdown .dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-dark-gray);
}
.custom-dropdown .dropdown-menu li a .logo {
    width: 24px;
    height: 24px;
    filter: var(--filter-gray);
}
.custom-dropdown .dropdown-menu li a:hover {
    background-color: var(--color-light-blue);
}
.custom-dropdown .dropdown-menu li a:active {
    background-color: var(--color-light-blue);
}

/* checkbox  */
.custom-checkbox input[type=checkbox] {
    border: 1px solid #A3A3A3;
    border-radius: 3px;
}

/* textarea */
.custom-textarea {
    color: var(--color-dark-gray);
    background: var(--color-white) 0% 0% no-repeat padding-box;
    border: 1px solid var(--color-gray);
    border-radius: 5px;
    opacity: 1;
    padding: 10px;
}
.custom-textarea::placeholder {
    color: var(--color-gray);
}
.custom-textarea.no-resize {
    resize: none;
}

/* card */
.custom-card {
    background: var(--color-white) 0% 0% no-repeat padding-box;
    box-shadow: 0px 1px 3px var(--color-shadow);
    border-radius: 5px;
    padding: 20px;
    overflow-x: auto;
}
/* md以下 */
@media (max-width: 768px) {
    .custom-card {
        padding: 10px;
    }
}

/**
 * 専用コンポーネント
 */
/* ログインユーザ情報 */
.auth-info {
    display: flex;
}
.auth-info .item {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.auth-info .center-border {
    border-right: 1px solid var(--color-gray);
    margin: 0px 10px;
}

/* インフォメーションカード */
/* アイコンと数値を表示 */
.information-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.information-card .title {
    text-align: right;
}
.information-card .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.information-card .content img {
    width: 50px;
    height: 50px;
}
/* md以下 */
@media (max-width: 768px) {
    .information-card .content img {
        width: var(--sp-default-log-middle-size);
        height: var(--sp-default-log-middle-size);
    }
}
.information-card .content .value {
    font-weight: bold;
    color: var(--color-darker-gray);
}
.information-card .description {
    display: flex;
    align-items: center;
    gap: 3px;
    color: var(--color-gray);
}
.information-card .description img {
    width: 12px;
    height: 12px;
}

/* 【SPのみ】アイコン付きリンク */
.icon-link-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: unset;
    overflow: hidden;
    width: 100px;
    text-decoration: unset;
}
/* sm以下 */
@media (max-width: 576px) {
    .icon-link-card {
        width: 80px;
    }
}
.icon-link-card .main {
    flex-grow: 1;
}
.icon-link-card .main .main-content {
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}
.icon-link-card .main .main-content img {
    width: var(--sp-default-log-middle-size);
    height: var(--sp-default-log-middle-size);
    filter: brightness(0) saturate(100%) invert(19%) sepia(93%) saturate(3950%) hue-rotate(188deg) brightness(81%) contrast(105%);
}
.icon-link-card .main .main-content .title {
    color: var(--color-dark-blue);
    padding-top: 5px;
}
.icon-link-card .footer {
    color: var(--color-white);
    background-color: var(--color-dark-blue);
    padding: 3px;
}

/* リマインド通知予定リスト */
#remind-schedule-list .header {
    padding-bottom: 10px;
}
#remind-schedule-list .list-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    height: 30px;
}
#remind-schedule-list .list-row .title {
    color: var(--color-dark-gray);
    text-decoration: underline;
    /* 1行省略表示 */
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#remind-schedule-list .list-row .title::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--color-dark-gray);
    border-radius: 50%;
    margin-right: 5px;
    position: relative;
    top: -2px;
}
#remind-schedule-list .list-row .date {
    flex-shrink: 0;
}

/* お知らせ一覧(全体通知) */
#info-list .header {
    padding-bottom: 10px;
}
#info-list .list-wrapper table tr {
    height: 30px;
}
#info-list .list-wrapper table tr .read_checkbox {
    width: 30px;
    text-align: center;
}
#info-list .list-wrapper table tr .info_title {
    padding-left: 5px;
}
#info-list .list-wrapper table tr .all-read-button {
    color: var(--color-dark-gray);
    background-color: var(--color-white);
    border: solid 1px var(--color-dark-gray);
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
}
#info-list .list-wrapper table tr .all-read-button:disabled {
    opacity: 0.3;
}

/* メッセージ一覧 */
.message-list .header {
    padding-bottom: 10px;
}
.message-list .list-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0px;
    color: var(--color-dark-gray);
}
.message-list .list-row:not(:last-child) {
    border-bottom: solid 1px var(--color-dark-gray);
}
.message-list .list-row .message {
    flex-grow: 1;
    text-align: left;
}
.message-list .all-read-button {
    color: var(--color-dark-gray);
    background-color: var(--color-white);
    border: solid 1px var(--color-dark-gray);
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
}

/* 通知先一覧 */
.target-list .list-row {
    align-items: center;
    gap: 10px;
}
/* md以下 */
@media (max-width: 768px) {
    .target-list .list-row {
        gap: 5px;
    }
}
.target-list .list-row .name {
    width: 256px;
}
.target-list .list-row .email {
    text-align: left !important;
    width: 96px;
}
.target-list .list-row .slack {
    text-align: center;
    width: 96px;
}
.target-list .list-row .line {
    text-align: center;
    width: 96px;
}
.target-list .list-row .chatwork {
    text-align: center;
    width: 96px;
}
.target-list .list-row .memo {
    color: var(--color-dark-blue);
    text-decoration: none;
    /* 1行省略表示 */
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.target-list .list-row .options {
    text-align: center;
    width: 144px;
}

/* ドロップダウンコンテンツ */
.dropdown-content {
    box-shadow: 0px 0px 5px var(--color-shadow);
    border-radius: 5px;
    max-width: 600px;
    /* bootstrap dropdown-menu クラスの定義打ち消し */
    padding: unset;
}
/* md以下 */
@media (max-width: 768px) {
    .dropdown-content {
        max-width: 90%;
    }
}

/*
 * text
 */
/* スモールテキストサイズ */
.small-text {
    font-size: 14px;
    line-height: 14px;
}
/* md以下 */
@media (max-width: 768px) {
    .small-text {
        font-size: 12px;
        line-height: 12px;
    }
}

/* レスポンシブテキスト */
.text-responsive-16 {
    font-size: 16px;
}
/* md以下 */
@media (max-width: 768px) {
    .text-responsive-16 {
        font-size: calc(16px * 0.9);
    }
}
/* sm以下 */
@media (max-width: 576px) {
    .text-responsive-16 {
        font-size: calc(16px * 0.9);
    }
}
.text-responsive-24 {
    font-size: 24px;
}
/* md以下 */
@media (max-width: 768px) {
    .text-responsive-24 {
        font-size: calc(24px * 0.9);
    }
}
/* sm以下 */
@media (max-width: 576px) {
    .text-responsive-24 {
        font-size: calc(24px * 0.8);
    }
}
.text-responsive-36 {
    font-size: 36px;
}
/* md以下 */
@media (max-width: 768px) {
    .text-responsive-36 {
        font-size: calc(36px * 0.9);
    }
}
/* sm以下 */
@media (max-width: 576px) {
    .text-responsive-36 {
        font-size: calc(36px * 0.8);
    }
}

/* 警告テキスト */
.danger-text {
    color: var(--color-dark-red);
    font-size: 12px;
}

/* button */
.custom-btn {
    box-shadow: 0px 3px 6px var(--color-shadow);
    border-radius: 5px;
    border: unset;
}
.custom-btn .btn-body {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.custom-btn:hover {
    filter: brightness(1.2);
}
.custom-btn .logo {
    width: 16px;
    height: 16px;
}
/* sm以下 */
@media (max-width: 576px) {
    .custom-btn .logo {
        width: 12px;
        height: 12px;
    }
}
.custom-btn:disabled {
    opacity: 0.7;
}

/* select */
/*  矢印を三角形に */
.select-wrapper {
    position: relative;
}
.select-wrapper::after {
    content: "";
    position: absolute;
    top: 15px;
    right: 10px;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent; 
    border-top: 8px solid #656363;
    border-bottom: 0;
    pointer-events: none;
}
.select-wrapper select {
    -webkit-appearance: none;
    appearance: none;
    background-image: none;
}

/**
 * table
 **/
.custom-table {
    width: 100%;
    border-collapse: separate;
    overflow: hidden;
    border-spacing: 0;
    border-radius: 5px;
    border: 1px solid var(--color-gray);
}
.custom-table th,
.custom-table td {
    white-space: nowrap;
    padding: 10px;
    border-right: 1px solid var(--color-gray);
    border-bottom: 1px solid var(--color-gray);
}
.custom-table th {
    font-size: 16px;
}
.custom-table td {
    font-size: 14px;
}
.custom-table th:last-child,
.custom-table td:last-child {
    border-right: none;
}
.custom-table tbody tr:last-child th,
.custom-table tbody tr:last-child td {
    border-bottom: none;
}
/* md以下 */
@media (max-width: 768px) {
    .custom-table th, .custom-table td {
        padding: 5px;
    }
    .custom-table th {
        font-size: 14px;
    }
    .custom-table td {
        font-size: 12px;
    }
}

/**
 * ページネーション
 **/
.user-pagination .pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 10px;
}
.user-pagination .pagination .page-item .page-link {
    border-radius: 5px;
    background-color: var(--color-gray);
    color: var(--color-white);
    border: unset;
}
/* アクティブ */
.user-pagination .pagination .page-item.active .page-link {
    background-color: var(--color-dark-blue);
    color: var(--color-white);
}
/* セパレータ */
.user-pagination .pagination .page-item .page-link.separator {
    background-color: unset;
    color: var(--color-gray);
}
/* 矢印 */
.user-pagination .pagination .page-item .page-link.arrow {
    background-color: unset;
    filter: var(--filter-dark-blue);
}
.user-pagination .pagination .page-item.disabled .page-link.arrow {
    /* 無効時のカラー */
    background-color: unset;
    filter: var(--filter-gray);
}
.user-pagination .pagination .page-item .page-link.arrow img {
    width: 16px;
    height: 16px;
}
.user-pagination .pagination .page-item .page-link.arrow.left-arrow {
    /* 左矢印:画像は左右反転 */
    transform: scale(-1, 1);
}

/**
 * toastr
 **/
#toast-container>.toast-success,
#toast-container>.toast-error,
#toast-container>.toast-success,
#toast-container>.toast-warning {
    background-image: unset !important;
}
#toast-container>div {
    padding: 15px;
    opacity: 0.9;
}
/* 表示する位置をPCでは右上表示 */
.toast-top-center {
    top: 70px;
    right: 12px;
    width: unset;
}
/* md以下 */
@media (max-width: 768px) {
    .toast-top-center {
        right: 0px;
        width: 100%;
    }
}

/* プラン選択 */
.selectable-plan label {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    padding: 15px 15px 10px 15px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 3px 6px var(--color-shadow);
    border: 2px solid #fff;
    opacity: 0.7;
}
.selectable-plan input[type="radio"]:checked+label {
    opacity: 1 !important;
}
.selectable-plan label .plan-name {
    font-size: 18px;
    padding-bottom: 10px;
}
.selectable-plan label .separate-border {
    margin: unset;
    height: 3px;
}
.selectable-plan label .information {
    display: flex;
    justify-content: space-around;
    font-size: 16px;
    padding: 15px 20px;
}
.selectable-plan label .information_for_free {
    justify-content: space-around;
    font-size: 16px;
    padding: 10px 10px;
}
.selectable-plan label .sendable-services {
    display: flex;
    justify-content: center;
    gap: 5px;
}