@charset "utf-8";

/* 絞り込みモーダル内検索フィールド */
.search-box {
    position: relative;
    display: flex;
    width: 100%;
}

.search-box input[type="text"] {
    flex-grow: 1;
    padding: 0.7rem 0 0.7rem 0.8rem;
    border: 1px solid #333;
    border-radius: 0.5rem;
}

/* モーダル内虫眼鏡ボタン*/
.search-box button {
    position: absolute;
    top: -0.05rem;
    right: 0;
    cursor: pointer;
    padding: .8rem .9rem .8rem .8rem;
    border-radius: 0 1.5rem 1.5rem 0;
    border: none;
    background: none;
    color: rgb(72, 106, 180);
    font-size: 1rem;
    transition: 0.5s;
}

/* モーダル内検索フィールドフォーカス時*/
.search-box input:focus {
    outline: 0;
    box-shadow: 0 0 5px #e1e1e1, 0 0 10px #e1e1e1, 0 0 15px #e1e1e1;
}

/* モーダル内検索フィールドホバー時*/
.search-box button:hover {
    color: #4eadb8;
    transform: scale(1.2);
}

/* ここまで絞り込みモーダル内検索フィールド */

/* 絞り込み画面モーダル */
.modal {
    font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}

/* モーダル表示時背景*/
.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* モーダルコンテナ*/
.modal__container {
    background-color: #fff;
    padding: 30px;
    width: 40vw;
    border-radius: 4px;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    /* 垂直方向の中央揃え */
    margin: -25px 0 0 -25px;
}

/* ソートモーダルコンテナ*/
.modal__container_sort {
    background-color: #fff;
    padding: 20px;
    border-radius: 4px;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    margin: -1vh 0 0 -54vw;
}

/* モーダル内スクロール領域*/
.modal__box {
    overflow-x: hidden;
    overflow-y: auto;
    padding: 30px 30px 30px 30px;
    height: 50vmin;
    background-color: white;
    margin: -25px 0 0 -25px;
}

@media screen and (max-width: 480px) {
    .modal__container {
        max-height: 90vh;
        max-width: 300px;
    }
}

/* モーダル内ヘッダー領域*/
.modal__header {
    text-align: center;
    display: flex;
    position: fixed;
    justify-content: space-between;
    align-items: center;
}

/* モーダル内フッター領域*/
.modal__footer {
    display: flex;
    background-color: white;
    color: white;
    justify-content: space-between;
    align-items: center;
}

/* モーダル内タイトル領域*/
.modal__title {
    width: 35vw;
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    text-align: center;
    color: rgba(0, 0, 0, 0.8);
    flex: none;
    order: 0;
    flex-grow: 0;
}

/* モーダル内クローズ領域*/
.modal__close {
    background: transparent;
    border: 0;
}

.modal__header .modal__close:before {
    content: "\2715";
}

/* モーダル内コンテント*/
.modal__content {
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: rgba(0, 0, 0, .8);
}

/* モーダル内キャンセルボタン*/
.modal__pr-btn {
    width: 240px;
    height: 32px;
    background: #FFFFFF;
    border-radius: 20px;
    font-size: 13px;
    line-height: 30px;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
}

/* モーダル内リスト */
ul.modal__list_name {
    margin: 5;
}

ul.modal__list_name .hidden {
    display: none;
}

ul.modal__list_department {
    margin: 5;
}

ul.modal__list_department .hidden {
    display: none;
}

/* モーダル内画像表示領域 */
.modal-image-tile {
    max-width: 20px;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    object-position: center;
    object-fit: cover;
}

/**************************\
  モーダル アニメーション
\**************************/
@keyframes mmfadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes mmfadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes mmslideIn {
    from {
        transform: translateY(15%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes mmslideOut {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10%);
    }
}

.micromodal-slide {
    display: none;
}

.micromodal-slide.is-open {
    display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
    animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container,
modal__container_sort modal__container_count {
    animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
    animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container,
modal__container_sort modal__container_count {
    animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__container_sort .modal__container_count .micromodal-slide .modal__overlay {
    will-change: transform;
}

/* モーダル内AND/ORラジオボタン */
.logical-radio-button {
    display: flex;
    gap: 5px;
    /* 垂直方向の中央揃え */
    position: absolute;
    left: 45%;
    margin: -25px 0 0 -25px;
    /* 完全に中央に配置するため、上・左の margin を負の数に設定 */
}

/* モーダル内選択タグ表示リスト */
ul.select-tag,
ul.select-tag-ul {
    display: flex;
    flex-wrap: wrap;
    padding-inline-start: 0px;
}

/* モーダル内選択タグボタン */
ul.select-tag span,
.modal-select-tag-button,
.select-tag-button {
    border: none;
    height: 20px;
    list-style: none;
    background-color: #0D99FF;
    color: white;
    white-space: nowrap;
    align-items: flex-end;
    display: flex;
    padding: 0px 4px;
}

/* モーダル内選択タグボタン 擬似要素 */
.select-tag-button:after,
.modal-select-tag-button:after {
    content: "";
    display: inline-block;
    width: 11px;
    height: 11px;
    margin-left: 2px;
    margin-bottom: 4px;
    color: white;
    background: url("/assets/img/pt-tag-delete-8c900bf26895d3c5f91f7ab7fabb722e.png") no-repeat;
    background-size: contain;
    vertical-align: middle;
}

/** マウスホバー
.select-tag-button:hover {
    color: blue;
    background-color: #c9c9c9;
    text-decoration: none;
}
*/

/* モーダル内昇順降順ボタン */
.sortRadio {
    border: none;
}

.sortRadio label {
    display: flex;
    align-items: center;
    gap: 0 .5em;
    position: relative;
    max-width: 200px;
    margin-bottom: .4em;
    padding: .5em .7em;
    cursor: pointer;
}

/*
.sortRadio label:has(:checked) {
    background-color: #2589d0;
    color: #fff;
}
*/

.sortRadio label::before,
.sortRadio label:has(:checked)::after {
    border-radius: 50%;
    content: '';
}

.sortRadio label::before {
    width: 14px;
    height: 14px;
    background-color: #fff;
}

.sortRadio label:has(:checked)::after {
    position: absolute;
    top: 50%;
    left: calc(7px + .7em);
    transform: translate(-50%, -50%);
    width: 20px;
    height: 10px;
    background: url("/assets/img/pr-sort-check-535fc3fc4dbb3b9357deaff2fc2b446f.png") no-repeat;
}

.sortRadio input {
    display: none;
}

/* 従業員一覧各種モーダルボタン */
.pr-btn-modal {
    border: 1px solid #0000004D;
    font-size: 10px;
    height: 32px;
    background-color: white;
    border-radius: 20px;
}

.pr-btn-modal.select{
    border: 1px solid #0000004D;
    font-size: 10px;
    height: 32px;
    color: white;
    background-color: rgb(100, 173, 247);
    border-radius: 20px;
}

/* ここまで絞り込み画面モーダル */

body {
    font-size: 13px;
}

a {
    color: rgba(0, 0, 0, 0.8);
    font-weight: 300;
    font-size: 10px;
    line-height: 13px;
}

/* サイドメニューの幅 */
.main-sidebar {
    width: 200px;
    background: white;
    bottom: 0;
    float: none;
    left: 0;
    position: fixed;
    top: 0;
}

/* 該当者数表示用 */
.qualified-count {
    width: 50px;
    height: 13px;
    left: 280px;
    top: 274px;
    font-family: 'Hiragino Kaku Gothic Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 13px;
    color: rgba(0, 0, 0, 0.5);
}

.sort-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 2px 8px;
    height: 32px;
    left: 280px;
    top: 307px;
    background: #FFFFFF;
    border-radius: 16px;
    border: none;
}

.sort-btn:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url("/assets/img/pr-sort-btn-90bf14eb722183cf3041a77f9c359498.png") no-repeat;
    background-size: contain;
    vertical-align: middle;
}

.content-wrapper {
    margin-left: 200px;
    background-color: white;
}

@media screen and (min-width: 992px) {

    body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .content-wrapper,
    body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .main-footer,
    body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .main-header {
        margin-left: 220px;
    }
}

/* ヘッダの罫線削除 */
.main-header {
    border-bottom: none;
}

/* 入力欄 */
.pr-form-control {
    display: flex;
    flex-direction: row;
    width: 328px;
    height: 39px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.pr-form-control-textarea {
    width: 704px;
    height: 195px;
    padding: 7px 8px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.label[for=inputBirthYear] {
    display: block;
    width: 14px;
    height: 20px;
    color: rgba(0, 0, 0, 0.8);
}

/* メニュー無しのフラットページ用 */
.flat-page {
    -ms-flex-align: center;
    align-items: center;
    /* 背景色が無いと境界がわからずレイアウト調整しずらい場合に指定 */
    /* background-color: #e9ecef; */
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100vh;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 450px;
}

.pr-wrapper {
    position: absolute;
    top: 60px;
}

.content-wrapper-flat {
    height: 100%;
}

.content-wrapper-flat .card {
    margin-bottom: 0;
}

/* パンくずの境界文字 */
.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
    color: #6c757d;
    content: "＞";
}

/* ページタイトル */
.content-title h1 {
    height: 32px;
    font-weight: 700;
    font-size: 26px;
    line-height: 32px;
    text-align: left;
    margin-bottom: 14px;
}

.content-title-second {
    width: 300px;
    height: 32px;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    text-align: left;
    position: relative;
    top: 15px;
}

.pr-deparmentDetail-title {
    width: 237px;
    height: 22px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 17px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.8);
}

.title-border {
    width: 100%;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #dee2e6;
}

/* カードの罫線削除 */
.card {
    border: none;
    box-shadow: none;
}

.card-header {
    border-bottom: none;
}

.card-footer {
    background-color: white;
    border-top: none;
}

/* カーソル */
.pr-cursor {
    cursor: pointer;
}

/* 入力欄 */
.pr-form-control {
    display: flex;
    flex-direction: row;
    width: 328px;
    height: 39px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

/* カードのタイトルをセンタリング */
.card-title {
    float: none;
    text-align: center;
    width: 500px;
    height: 22px;
    font-weight: 700;
    font-size: 17px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.8);
}

/*
つなサポタイルのカード.
*/
.pr-card {
    position: relative;
    max-width: 160px;
    min-width: 80px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.pr-card-body {
    z-index: 10;
    position: relative;
    padding: 5px 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    height: 135px;
}

/* セクション */
.pr-section {
    width: 730px;
    padding-bottom: 14px;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 22px;
    font-size: 17px;
    box-shadow: inset 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.pr-mypage-section {
    width: 100%;
    padding-bottom: 14px;
    font-weight: 700;
    line-height: 22px;
    font-size: 17px;
    box-shadow: inset 0px -1px 0px rgb(0 0 0 / 10%);
}

.pr-project-detail-section {
    width: 798px;
    padding-bottom: 14px;
    font-weight: 700;
    line-height: 22px;
    font-size: 17px;
    box-shadow: inset 0px -1px 0px rgb(0 0 0 / 10%);
}

.pr-userProfile-section, .pr-employeeDetail-section {
    width: 100%;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #dee2e6;
}

.pr-style {
    width: 140px;
    height: 16px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    margin-right: 48px;
    color: rgba(0, 0, 0, 0.5);
}

/* 写真 */
.pr-image-edit {
    width: 320px;
    height: 180px;
    box-sizing: border-box;
    /* position: absolute; */
    left: 0%;
    right: 0%;
    top: 0%;
    bottom: 0%;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    line-height: 15px;
    color: rgba(0, 0, 0, 0.5);
}

.pr-image-edit-set {
    width: 320px;
    height: 180px;
    position: relative;

    box-sizing: border-box;
    left: 0%;
    right: 0%;
    top: 0%;
    bottom: 0%;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.subimage .pr-image-edit {
    width: 160px;
    height: 90px;
    float: left;
    margin-right: 16px;
}

.subimage .pr-image-edit-set {
    width: 160px;
    height: 90px;
    float: left;
    margin-right: 16px;
}

.pr-profile-image {
    width: 320px;
    height: 180px;
    object-position: center;
    object-fit: cover;
    border-radius: 8px;
}

.subimage .pr-profile-image {
    width: 160px;
    height: 90px;
    object-position: center;
    object-fit: cover;
    border-radius: 8px;
}

.pr-image-del {
    position: absolute;
    top: 4px;
    left: 282px;
}

.pr-image-del button {
    font-size: 26px;
}

.subimage .pr-image-del {
    position: absolute;
    top: 2px;
    left: 132px;
}

.subimage .pr-image-del button {
    font-size: 16px;
}

/* プロフィール写真表示用 */
.pr-image {
    width: 328px;
    height: 186px;
    margin-bottom: 24px;
    border-radius: 8px;
    object-fit: cover;
}

.pr-sub-image {
    float: left;
    width: 104px;
    height: 69px;
    margin-bottom: 38px;
    margin-right: 8px;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
}

/* .pr-image:hover {
    transform: scale(2.0, 2.0);
    cursor: pointer;
    overflow: hidden;
    left: 20%;
    z-index: 1000;
} */
.pr-sub-image {
    position: relative;
    float: left;
    display: flex;
    width: 104px;
    height: 69px;
    margin-bottom: 38px;
    margin-right: 8px;
    border-radius: 8px;
    object-fit: cover;
    z-index: 1;
    cursor: pointer;
}

/* .pr-sub-image:hover {
    transform: scale(3.5, 3.5);
    cursor: pointer;
    overflow: hidden;
    z-index: 1000;
} */
.modalItem,
.modalItemSub {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1000;
}

/* モーダル表示用画像 */
.modalItem img.pr-image-zoom {
    width: 657px;
    height: 373px;
    position: relative;
    border-radius: 8px;
    left: 5%;
    object-fit: cover;
}

.modalItemSub img.pr-sub-image-zoom {
    width: 521px;
    height: 346px;
    position: relative;
    border-radius: 8px;
    object-fit: cover;
}

/* モーダルに画像表示 */
.modalItem.open,
.modalItemSub.open {
    display: flex;
}

/* タイル写真表示用 */
.pr-image-tile {
    max-width: 160px;
    min-width: 80px;
    height: 90px;
    object-position: center;
    object-fit: cover;
}

/* つなサポワードリスト表示用 */
ul.pr-word {
    display: flex;
    flex-wrap: wrap;
    padding-inline-start: 0px;
    margin-bottom: 0;
}

ul.pr-word-list {
    display: flex;
    flex-wrap: wrap;
    padding-inline-start: 0px;
}

ul.pr-word-list .hidden {
    display: none
}

ul.pr-word-list li {
    height: 20px;
    list-style: none;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 2px;
    margin: 0px 4px 8px 0px;
    padding: 0px 4px;
    white-space: nowrap;
}

ul.pr-word-list li.select {
    height: 20px;
    list-style: none;
    background-color: #0D99FF;
    border-radius: 2px;
    margin: 0px 4px 8px 0px;
    padding: 0px 4px;
    white-space: nowrap;
}

ul.pr-word-list li:nth-child(3n-1) {
    margin: 0 1%;
}


/* つなサポワード */
li.pr-word {
    display: flex;
    flex-wrap: wrap;
    padding-inline-start: 0px;
    margin-bottom: 0;
}

ul.pr-word li {
    list-style: none;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 2px;
    margin: 0px 4px;
    padding: 0px 4px;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 8px;
}

ul.pr-word li.select {
    height: 20px;
    list-style: none;
    background-color: #0D99FF;
    border-radius: 2px;
    margin: 0px 4px 8px 0px;
    padding: 0px 4px;
    white-space: nowrap;
}

button.pr-word-tag {
    cursor: pointer;
    border: none;
    background: none;
    display: contents;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 300;
    font-size: 10px;
    line-height: 13px;
}

button.pr-word-tag.select {
    cursor: pointer;
    border: none;
    background: none;
    display: contents;
    color: white;
    font-weight: 300;
    font-size: 10px;
    line-height: 13px;
}

button.pr-word-tag.select:after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 2px;
    margin-bottom: 1px;
    color: white;
    background: url("/assets/img/pt-tag-delete-8c900bf26895d3c5f91f7ab7fabb722e.png") no-repeat;
    background-size: contain;
    vertical-align: middle;
}

li.input-container input {
    width: 300px !important;
}

/* つなサポ用ボタンスタイル */
.pr-btn {
    width: 240px;
    height: 32px;
    background: #FFFFFF;
    border-radius: 20px;
    font-size: 13px;
    line-height: 16px;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
}

.pr-btn-regist,
.pr-btn-update,
.pr-btn-pageNext,
.pr-btn-open,
.pr-btn-open1,
.pr-btn-open2,
.pr-btn-open3,
.pr-btn-registData {
    font-size: 13px;
    width: 160px;
    height: 32px;
    background: #0D99FF;
    border-radius: 20px;
    color: white;
}

.pr-btn-search {
    border: 1px solid #0000004D;
    font-size: 10px;
    height: 32px;
    background-color: white;
    border-radius: 20px;
}

.pr-btn-cancel,
.pr-btn-pageBack {
    font-size: 13px;
    width: 160px;
    height: 32px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.btn-cancel {
    width: 120px;
    font-size: 13px;
    line-height: 16px;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
}

.pr-btn-circle {
    box-sizing: border-box;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #0D99FF;
    margin-right: 10px;
}

.pr-required {
    display: inline-block;
    width: 25px;
    height: 13px;
    font-size: 10px;
    line-height: 13px;
    color: #E83600;
    text-align: center;
    border: 1px solid #E83600;
    border-radius: 3px;
}

.pr-more-btn {
    font-weight: 600;
    font-size: 10px;
    margin-top: 29px;
    color: rgba(0, 0, 0, 0.5);
}

.pr-more-btn::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border: 0px;
    margin-right: 4.5px;
    border-top: 2px solid rgba(0, 0, 0, 0.5);
    border-right: 2px solid rgba(0, 0, 0, 0.5);
    transform: rotate(135deg);
}

.pr-btn-add {
    padding: 0px;
}

.pr-btn-reInvitation {
    padding: 8px 80px;
    gap: 40px;
    width: 160px;
    height: 32px;
    background: #0D99FF;
    border-radius: 20px;
}

.pr-userList-btn-reInvitation {
    width: 50px;
    height: 13px;
    background: #0D99FF;
    border-radius: 20px;
    position: relative;
    left: 60px;
    bottom: 20px;
}

.pr-login-btn,
.pr-user-resetPassword-btn {
    width: 240px;
    height: 32px;
    background: #0D99FF;
    border-radius: 20px;
    position: relative;
    left: 50px;
    color: #FFFFFF;
}

/* つなサポ用ボタンスタイル */
.pr-folder {
    height: 12px;
    width: 16px;
    position: relative;
    right: 80%;
    bottom: 20%;
}

.pr-download {
    height: 16px;
    width: 14px;
    position: relative;
    right: 65%;
    bottom: 25%;
}

.pr-delete-icon {
    height: 18px;
    width: 16px;
    position: relative;
    bottom: 40px;
}

.pr-edit-icon {
    height: 18.04px;
    width: 18px;
    position: relative;
    bottom: 40px;
}

.pr-mypage-edit-icon {
    height: 18.04px;
    width: 18px;
    position: relative;
    top: 10px;
}

.pr-mail-icon {
    width: 10px;
    height: 7px;
    margin-left: 2px;
    position: relative;
    bottom: 45px;
    left: 15px;
}

/* つなサポブランド */
.pr-brand {
    font-size: 1.25rem;
    line-height: 1.5;
    padding: 0.8125rem 0.5rem;
    transition: width .3s ease-in-out;
    white-space: nowrap;
    position: relative;
    right: 10px;
}

.pr-brand .pr-brand-image {
    line-height: .8;
    margin-top: -13px;
    max-height: 33px;
    width: auto;
}

.main-sidebar .pr-brand {
    padding-left: 1.4rem;
}

.pr-login-box {
    width: 360px;
}

/* つなサポテーブル */
.pr-table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    background-color: transparent;
}

.pr-table thead th {
    vertical-align: bottom;
}

.pr-table td,
.pr-table th {
    padding: 0.75rem;
    border-bottom: 1px solid #dee2e6;
}

.pr-table tr:hover td {
  background-color: #ececec;
}

.pr-departmentDetail-table {
    width: 100%;
    border-collapse: collapse;
}

.pr-departmentDetail-table td, .pr-project-detail-table td {
    padding: 0.75rem;
}

.pr-departmentDetail-table td pr-style {
    margin-right: 48px;
}

.pr-department-post-table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.pr-department-post-table td, .pr-department-post-table th {
  margin:  0;
  padding: 0;
  border: none;
}

.pr-department-post-select {
    width:  170px;
    height: 150px;
}
.pr-department-post-font {
    font-size: 12px;
    font-weight: bold;
}

/* 文字の色 */
.pr-font {
    color: rgba(0, 0, 0, 0.8);
    font-weight: 300;
    font-size: 13px;
}

.pr-project-detail-font, .pr-employee-detail-project-font {
    color:rgba(0, 0, 0, 0.8);
    font-size: 13px;
}

/* 横並びを解除 */
.pr-clear-box {
    clear: both;
}

/* マイページ、プロフィール入力関連 */
.pr-mypage-item,
.pr-departmentDetail-item,
.pr-userProfile-item,
.pr-employeeDetail-item,
.pr-userDetail-item {
    width: 140px;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    margin-right: 48px;
    color: rgba(0, 0, 0, 0.5);
}

.pr-mypage-basic-edit-item,
.pr-mypage-employee-edit-item {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.8);
    margin-top: 15px;
    margin-bottom: 15px;
}

.pr-mypage-detail,
.pr-userProfile-detail,
.pr-employeeDetail-detail {
    font-size: 13px;
    line-height: 16px;
    color: rgba(0, 0, 0, 0.8);
}

/* タイトル（共通） */
.pr-mypage-title,
.pr-userProfile-title,
.pr-employeeDetail-title {
    font-weight: 700;
    font-size: 17px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.8);
}

.pr-mypage-basic-edit-title,
.pr-profile-input-title,
.pr-myPage-skillEdit-title,
.pr-myPage-qualificationEdit-title {
    width: 100%;
    height: 26px;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    text-align: center;
    color: rgba(0, 0, 0, 0.8);
}

.pr-mypage-basic-edit-title,
.pr-mypage-employee-edit-title,
.pr-profile-input-title {
    width: 328px;
    height: 26px;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    text-align: center;
    margin: 0 auto;
    color: rgba(0, 0, 0, 0.8);
}

/* マイページ */
.pr-mypage-subitem {
    font-weight: 400;
    font-size: 10px;
    line-height: 13px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 4px;
}

.pr-mypage-detail,
.pr-userProfile-detail {
    font-size: 13px;
    line-height: 16px;
    color: rgba(0, 0, 0, 0.8);
}

.pr-mypage-title,
.pr-userProfile-title {
    font-weight: 700;
    font-size: 17px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.8);
}

.pr-mypage-name {
    width: 100%;
    height: 32px;
    font-weight: 400;
    font-size: 26px;
    line-height: 32px;
    color: rgba(0, 0, 0, 0.8);
}

.pr-mypage-furigana {
    width: 516px;
    height: 16px;
    font-weight: 300;
    font-size: 13px;
    line-height: 16px;
    color: rgba(0, 0, 0, 0.5);
}

.pr-mypage-edit {
    height: 18.04px;
    width: 18px;
    position: relative;
    bottom: 55px;
}

.pr-mypage-committee {
    text-indent: -1em;
    padding-left: 1em;
}

/* プロフィール入力 */
.pr-user-profile-step-img {
    width: 520px;
    height: 56px;
    margin: 24px auto 0;
}

/* スキル編集画面関連 */
.pr-profileInput-skill,
.pr-myPage-skillEdit {
    width: 100%;
    height: 22px;
    font-weight: 600;
    font-size: 17px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 16px;
}

.pr-profileInput-skillItem,
.pr-myPage-skillItem {
    width: 100%;
    height: 20px;
    font-weight: 600;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.8);
}

/* プロフィール入力画面関連 */
.pr-profileInput-form-control {
    padding: 7px 8px;
    gap: 10px;
    width: 218px;
    height: 39px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    margin-right: 18px;
}

.pr-profileInput-form-control2 {
    padding: 7px 8px;
    gap: 10px;
    width: 126px;
    height: 39px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    margin-right: 12px;
}

.pr-profileInput-item,
.pr-profileInput-qualificationItem {
    width: 42px;
    height: 20px;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.8);
}

.pr-profileInput-delete {
    border: none;
    outline: none;
    background: transparent;
    margin-top: 6px;
}

.pr-qualificationError {
    display: block;
}

.pr-qualification-optional {
    width: 24px;
    font-weight: 600;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.8);
    position: relative;
    top: 20px;
    left: 194px;
    margin: 0px;
}

.pr-qualification-add {
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
}

/* 横並びを解除 */
.pr-clear-box {
    clear: both;
}

/* マイページ基本情報編集 */
.pr-mypage-basic-edit-title,
.pr-profile-input-title {
    width: 100%;
    height: 26px;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    text-align: center;
    color: rgba(0, 0, 0, 0.8);
}

.pr-mypage-basic-edit-item {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.8);
}

.pr-mypage-birthday-item {
    width: 14px;
    height: 20px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.8);
    margin-right: 142px;
    margin-top: 24px;
    margin-bottom: 8px;
}

.pr-mypage-birthday-edit {
    padding: 7px 8px;
    width: 140px;
    height: 39px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    margin-right: 16px;
    margin-bottom: 24px;
}

/* マイページ編集 */
.pr-mypage-committeelist-error {
    position: relative;
    bottom: 20px;
}

.pr-mypage-basic-edit-title,
.pr-mypage-employee-edit-title,
.pr-profile-input-title {
    width: 328px;
    height: 26px;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    text-align: center;
    margin: 0 auto;
    color: rgba(0, 0, 0, 0.8);
}

.pr-mypage-basicEdit-item {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.8);
}

.pr-mypage-employee-edit-item {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.8);
    margin-top: 15px;
    margin-bottom: 15px;
}

.pr-mypage-birthday-item {
    width: 14px;
    height: 20px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.8);
    margin-right: 142px;
    margin-top: 24px;
    margin-bottom: 8px;
}

.pr-mypage-birthday-edit {
    padding: 7px 8px;
    width: 140px;
    height: 39px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    margin-right: 16px;
    margin-bottom: 24px;
}

.pr-mypage-form-control {
    width: 328px;
    height: 39px;
    padding: 7px 8px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.pr-mypage-form-control2 {
    width: 704px;
    height: 39px;
    padding: 7px 8px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.pr-mypage-employee-form-control {
    width: 328px;
    height: 39px;
    padding: 7px 8px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 13px;
    line-height: 16px
}

.pr-mypage-employee-form-input {
    width: 328px;
    height: 39px;
    padding: 7px 8px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    font-size: 13px;
    line-height: 16px
}

.pr-mypage-optional {
    display: inline-block;
    width: 24px;
    height: 15px;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    color: rgba(0, 0, 0, 0.8);
}

.pr-mypage-committee-group {
    margin-bottom: 1rem;
    height: 40px;
}

.pr-mypage-basic-edit-title,
.pr-mypage-employee-edit-title,
.pr-profile-input-title {
    width: 328px;
    height: 26px;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    text-align: center;
    margin: 0 auto;
    color: rgba(0, 0, 0, 0.8);
}

.pr-mypage-basic-edit-item,
.pr-mypage-employee-edit-item,
.pr-userRegist-item {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.8);
    margin-top: 15px;
    margin-bottom: 15px;
}

.pr-mypage-birthday-item {
    width: 14px;
    height: 20px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.8);
    margin-right: 142px;
    margin-top: 24px;
    margin-bottom: 8px;
}

.pr-mypage-birthday-edit {
    padding: 7px 8px;
    width: 140px;
    height: 39px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    margin-right: 16px;
    margin-bottom: 24px;
}

.pr-mypage-select {
    width: 28px;
    height: 20px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin-right: 16px;
    margin-bottom: 24px;
}

.pr-mypage-form-control {
    width: 328px;
    height: 39px;
    padding: 7px 8px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.pr-mypage-form-control2 {
    width: 704px;
    height: 39px;
    padding: 7px 8px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.pr-mypage-form-control3 {
    width: 704px;
    height: 195px;
    padding: 7px 8px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.pr-mypage-optional {
    display: inline-block;
    width: 24px;
    height: 15px;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    color: rgba(0, 0, 0, 0.8);
}

.pr-mypage-basicEdit-item {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.8);
}

.pr-mypage-livedlist-delete {
    height: 18px;
    width: 16px;
    position: relative;
    bottom: 5px;
}

/* マイページ写真編集 */
.pr-mypage-photoEdit-title {
    font-weight: 600;
    font-size: 22px;
    text-align: center;
}

.pr-mypage-photoEdit-item {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.8);
}

/* マイページ従業員情報編集 */
.pr-mypage-employee-form-control {
    width: 328px;
    height: 39px;
    padding: 7px 8px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 13px;
    line-height: 16px
}

.pr-mypage-committee-group {
    margin-bottom: 1rem;
    height: 40px;
}

.pr-mypage-committeelist-delete {
    height: 18px;
    width: 16px;
    border: none;
    outline: none;
    background: transparent;
    position: relative;
    bottom: 30px;
    left: 330px;
    margin-left: 10px;
}

.pr-mypage-committeelist-error {
    position: relative;
    bottom: 20px;
}

/* マイページ編集関連共通 */
div .pr-mypage-edit-title {
    width: 328px;
    height: 26px;
    font-weight: 600;
    font-size: 22px;
    margin: 0 auto;
}

div .pr-mypage-edit-section {
    padding-bottom: 16px;
    font-weight: 700;
    font-size: 17px;
    box-shadow: inset 0px -1px 0px rgba(0, 0, 0, 0.1);
}

/* マイページつなサポワード編集 */
.pr-mypage-prword-edit-text {
    width: 292px;
    height: 13px;
    font-weight: 300;
    font-size: 10px;
    line-height: 13px;
}

/* マイページ資格編集 */
.pr-mypage-qualificationEdit-optional {
    width: 24px;
    font-weight: 600;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.8);
    position: absolute;
    left: 260px;
    top: 140px;
    margin: 0px;
}

.pr-mypage-qualificationNameEdit-form-control {
    padding: 7px 8px;
    width: 228px;
    height: 39px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.pr-mypage-qualificationEdit-form-control {
    padding: 7px 8px;
    width: 140px;
    height: 39px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.pr-mypage-qualificationEdit-item {
    width: 42px;
    height: 20px;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.8);
}

.pr-btn-qualificationAdd {
    font-size: 13px;
}

/* トースト最大幅 */
#toast-container>div {
    width: 1024px;
}

/* パスワード再設定画面関連 */
.pr-user-password-title {
    height: 26px;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    text-align: center;
    color: rgba(0, 0, 0, 0.8);
}

.pr-user-password-btn {
    font-size: 13px;
    height: 32px;
    width: 240px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 80px;
    gap: 10px;
}

.pr-user-resetPassword-btn {
    font-size: 13px;
    height: 32px;
    width: 240px;
    background: #0D99FF;
    border: 1px solid #0D99FF;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 80px;
    gap: 10px;
    color: white;
}

.pr-user-password-input-group {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 328px;
    height: 39px;
}

.pr-user-password-input-group .pr-eye {
    position: absolute;
    left: 300px;
}

.pr-user-resetPassword-input-group {
    padding: 7px 8px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 328px;
    height: 39px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.pr-user-password-card-footer {
    background-color: white;
    border-top: none;
    margin: 0 auto;
}

.pr-user-password-label,
.pr-user-resetPassword-label {
    font-size: 14px;
}

/* 認証コード入力画面関連 */
.pr-input-checkcode-title {
    width: 328px;
    height: 26px;
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    text-align: center;
    /* Black800 */
    color: rgba(0, 0, 0, 0.8);
}

.pr-input-checkcode-input-group {
    padding: 7px 8px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 328px;
    height: 39px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.pr-input-checkcode-resend-btn {
    font-size: 13px;
    height: 32px;
    width: 240px;
    color: white;
    background: #0D99FF;
    border: 1px solid #0D99FF;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 8px;
    gap: 10px;
}

/* 従業員管理画面関連 */
.pr-userList-headline {
    width: fit-content;
    white-space: nowrap;
    color: rgba(0, 0, 0, 0.5);
}

.pr-userList-item {
    white-space: nowrap;
    color: rgba(0, 0, 0, 0.8);
}

.pr-userList-btnFont {
    width: 30px;
    font-size: 10px;
    color: #FFFFFF;
    position: relative;
    bottom: 7px;
    right: 9px;
}

.pr-userList-registStiation {
    margin: 0px 0px 0px 8px;
}

.pr-userList-th {
    position: absolute;
}

/* 従業員一覧画面関連 */
.pr-employeeTile-skill :nth-child(n+4) {
    display: none;
}

ul.pr-employeeTile-word {
    display: flex;
    padding-inline-start: 0px;
    margin: 4px;
}

ul.pr-employeeTile-word li {
    list-style: none;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 2px;
    margin: 0px 4px 0px 0px;
    padding: 0px 4px;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 4px;
}

.pr-employeeList-title {
    font-size: 10px;
    line-height: 13px;
    color: rgba(0, 0, 0, 0.5);
    margin-right: 24px;
}

.pr-employeeList-item {
    font-size: 12px;
    line-height: 15px;
    color: rgba(0, 0, 0, 0.8);
    margin-right: 24px;
}


/* プロフィール入力確認画面関連 */
.pr-profileCheck-tagList {
    font-weight: 400;
    font-size: 10px;
    line-height: 13px;
    color: rgba(0, 0, 0, 0.5);
}

.pr-profileCheck-section {
    width: 100%;
    padding-bottom: 14px;
    font-weight: 700;
    line-height: 22px;
    font-size: 17px;
    box-shadow: inset 0px -1px 0px rgb(0 0 0 / 10%);
}

/* 従業員招待画面関連 */
.pr-userRegist-form-control,
.pr-userEdit-form-control {
    padding: 7px 8px;
    width: 328px;
    height: 39px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}
.select-department  {
    width: 450px;
}

.pr-userRegist-form-control-second,
.pr-userEdit-form-control-second {
    padding: 7px 8px;
    width: 140px;
    height: 39px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.pr-userRegist-item,
.pr-userEdit-item {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.8);
    margin-top: 0px;
}

.pr-userRegist-form-group,
.pr-userEdit-form-group {
    margin-bottom: 24px;
}

.pr-reInvitation-text {
    width: 39px;
    height: 16px;
    font-size: 13px;
    color: #FFFFFF;
    margin: 0px;
    position: relative;
    right: 20px;
    bottom: 3px;
}

/* 従業員編集画面関連 */
.pr-userEdit-form-control-gray {
    padding: 7px 8px;
    width: 140px;
    height: 39px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.05);
}

/* ログイン画面関連 */
.login-box-msg {
    width: 328px;
    font-weight: 700;
    font-size: 22px;
}

.pr-login-item {
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 8px;
}

.pr-login-form-control {
    padding: 7px 8px;
    gap: 10px;
    width: 328px;
    height: 39px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.pr-passwordEye {
    width: 22px;
    height: 20px;
    position: relative;
    top: 10px;
    right: 30px;
}

.pr-login-forgetPassWord {
    font-size: 13px;
    text-decoration-line: underline;
    color: #0D99FF;
    position: relative;
    right: 15px;
}

.pr-icheck-primary {
    position: relative;
    right: 5px;
}

.pr-status-error {
    position: relative;
    left: 20px;
}

/* サイドメニュー画面関連 */
.pr-brand-link {
    line-height: .8;
    margin-left: 0.8rem;
    margin-right: 0.5rem;
}

.pr-sidebarLogo-image {
    max-width: 75px;
    min-width: 25px;
}

.pr-panel,
.pr-panel .info {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.img-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-left: 10px;
}

.pr-sidebar-font {
    font-size: 14px;
}

.pr-inputCheckCode-mailAdress {
    font-size: 13px;
    text-decoration-line: underline;
    color: #0D99FF;
}

/* 絞り込みモーダル内検索フィールド */
.search-box {
    position: relative;
    display: flex;
    width: 100%;
}

.search-box input[type="text"] {
    flex-grow: 1;
    padding: 0.7rem 0 0.7rem 0.8rem;
    border: 1px solid #333;
    border-radius: 0.5rem;
}

/* モーダル内虫眼鏡ボタン*/
.search-box button {
    position: absolute;
    top: -0.05rem;
    right: 0;
    cursor: pointer;
    padding: .8rem .9rem .8rem .8rem;
    border-radius: 0 1.5rem 1.5rem 0;
    border: none;
    background: none;
    color: rgb(72, 106, 180);
    font-size: 1rem;
    transition: 0.5s;
}

/* モーダル内検索フィールドフォーカス時*/
.search-box input:focus {
    outline: 0;
    box-shadow: 0 0 5px #e1e1e1, 0 0 10px #e1e1e1, 0 0 15px #e1e1e1;
}


/* モーダル内検索フィールドホバー時*/
.search-box button:hover {
    color: #4eadb8;
    transform: scale(1.2);
}

/* ここまで絞り込みモーダル内検索フィールド */

/* 絞り込み画面モーダル */
.modal {
    font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}

/* モーダル表示時背景*/
.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* モーダルコンテナ*/
.modal__container {
    background-color: #fff;
    padding: 30px;
    width: 40vw;
    border-radius: 4px;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    /* 垂直方向の中央揃え */
    margin: -25px 0 0 -25px;
}

/* ソートモーダルコンテナ*/
.modal__container_sort {
    background-color: #fff;
    padding: 20px;
    border-radius: 4px;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    margin: -25px 0 0 -25px;
}

/* モーダル内スクロール領域*/
.modal__box {
    overflow-x: hidden;
    overflow-y: auto;
    padding: 30px 30px 30px 30px;
    height: 50vmin;
    background-color: white;
    margin: -25px 0 0 -25px;
}

@media screen and (max-width: 480px) {
    .modal__container {
        max-height: 90vh;
        max-width: 300px;
    }
}

/* モーダル内ヘッダー領域*/
.modal__header {
    text-align: center;
    display: flex;
    position: fixed;
    justify-content: space-between;
    align-items: center;
}

/* モーダル内フッター領域*/
.modal__footer {
    display: flex;
    background-color: white;
    color: white;
    justify-content: space-between;
    align-items: center;
}

/* モーダル内タイトル領域*/
.modal__title {
    width: 35vw;
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    text-align: center;
    color: rgba(0, 0, 0, 0.8);
    flex: none;
    order: 0;
    flex-grow: 0;
}

/* モーダル内クローズ領域*/
.modal__close {
    background: transparent;
    border: 0;
}

.modal__header .modal__close:before {
    content: "\2715";
}

/* モーダル内コンテント*/
.modal__content {
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: rgba(0, 0, 0, .8);
}

/* モーダル内キャンセルボタン*/
.modal__pr-btn {
    width: 240px;
    height: 32px;
    background: #FFFFFF;
    border-radius: 20px;
    font-size: 13px;
    line-height: 30px;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
}

/* モーダル内リスト */
ul.modal__list_name {
    margin: 5;
}

ul.modal__list_name .hidden {
    display: none;
}

ul.modal__list_department {
    margin: 5;
}

ul.modal__list_department .hidden {
    display: none;
}

/* モーダル内画像表示領域 */
.modal-image-tile {
    max-width: 20px;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    object-position: center;
    object-fit: cover;
}

/**************************\
  モーダル アニメーション
\**************************/
@keyframes mmfadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes mmfadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes mmslideIn {
    from {
        transform: translateY(15%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes mmslideOut {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10%);
    }
}

.micromodal-slide {
    display: none;
}

.micromodal-slide.is-open {
    display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
    animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container,
modal__container_sort {
    animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
    animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container,
modal__container_sort {
    animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__container_sort .micromodal-slide .modal__overlay {
    will-change: transform;
}

/* モーダル内AND/ORラジオボタン */
.logical-radio-button {
    display: flex;
    gap: 5px;
    /* 垂直方向の中央揃え */
    position: absolute;
    left: 45%;
    margin: -25px 0 0 -25px;
    /* 完全に中央に配置するため、上・左の margin を負の数に設定 */
}

/* モーダル内選択タグ表示リスト */
ul.select-tag,
ul.select-tag-ul {
    display: flex;
    flex-wrap: wrap;
    padding-inline-start: 0px;
}

/* モーダル内選択タグボタン */
ul.select-tag span,
.modal-select-tag-button,
.select-tag-button {
    border: none;
    height: 20px;
    list-style: none;
    background-color: #0D99FF;
    color: white;
    white-space: nowrap;
    align-items: flex-end;
    display: flex;
    padding: 0px 4px;
}

/* モーダル内選択タグボタン 擬似要素 */
.select-tag-button:after,
.modal-select-tag-button:after {
    content: "";
    display: inline-block;
    width: 11px;
    height: 11px;
    margin-left: 2px;
    margin-bottom: 4px;
    color: white;
    background: url("/assets/img/pt-tag-delete-8c900bf26895d3c5f91f7ab7fabb722e.png") no-repeat;
    background-size: contain;
    vertical-align: middle;
}

/** マウスホバー
.select-tag-button:hover {
    color: blue;
    background-color: #c9c9c9;
    text-decoration: none;
}
*/

/* モーダル内昇順降順ボタン */
.sortRadio {
    border: none;
}

.sortRadio label {
    display: flex;
    align-items: center;
    gap: 0 .5em;
    position: relative;
    max-width: 200px;
    margin-bottom: .4em;
    padding: .5em .7em;
    cursor: pointer;
}

/*
.sortRadio label:has(:checked) {
    background-color: #2589d0;
    color: #fff;
}
*/

.sortRadio label::before,
.sortRadio label:has(:checked)::after {
    border-radius: 50%;
    content: '';
}

.sortRadio label::before {
    width: 14px;
    height: 14px;
    background-color: #fff;
}

.sortRadio label:has(:checked)::after {
    position: absolute;
    top: 50%;
    left: calc(7px + .7em);
    transform: translate(-50%, -50%);
    width: 20px;
    height: 10px;
    background: url("/assets/img/pr-sort-check-535fc3fc4dbb3b9357deaff2fc2b446f.png") no-repeat;
}

.sortRadio input {
    display: none;
}

/* 従業員一覧各種モーダルボタン */
.pr-btn-modal,
.pr-btn-modal-list-3,
.pr-btn-modal-tile-3 {
    border: 1px solid #0000004D;
    font-size: 10px;
    height: 32px;
    background-color: white;
    border-radius: 20px;
}

.pr-btn-modal.select,
.pr-btn-modal-list-3.select,
.pr-btn-modal-tile-3.select
{
    border: 1px solid #0000004D;
    font-size: 10px;
    height: 32px;
    color: white;
    background-color: rgb(100, 173, 247);
    border-radius: 20px;
}

/* ここまで絞り込み画面モーダル */
.project-member-image-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.project-image-square {
    width: 30px;
    height: 30px;
}

.project-detail-image-square {
    width: 40px;
    height: 40px;
}

label.project-regist-checkbox{
    white-space: nowrap;
    margin: 8px 20px;
}

label.project-regist-checkbox input[type=checkbox] {
    margin: 0 6px 0 0;
}

label.project-edit-checkbox{
    white-space: nowrap;
    margin: 8px 20px;
}

label.project-edit-checkbox input[type=checkbox] {
    margin: 0 6px 0 0;
}

/* ページネーション */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 8px;
    list-style-type: none;
    padding: 0;
}

.pagination a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3em;
    height: 3em;
    border: 1px solid #2589d0;
    border-radius: 1px;
    color: #2589d0;
}

.pagination button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.3em;
    height: 2.3em;
    border: 1px solid #2589d0;
    border-radius: 1px;
    color: #2589d0;
    background-color: white;
}

.pagination a:not(:hover) {
    text-decoration: none;
}

.pagination button:not(:hover) {
    text-decoration: none;
}

.pagination .current a {
    background-color: #2589d0;
    color: #fff;
    pointer-events: none;
}

.pagination-btn{
    font-family: ui-serif;
}

/* 該当者数表示用 */
.paging-count {
    display: flex;
    justify-content: center;
    align-items: center;
    left: 280px;
    top: 274px;
    font-family: 'Hiragino Kaku Gothic Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 13px;
    color: rgba(0, 0, 0, 0.5);
}

/* 従業員表示人数選択モーダルトリガーボタン */
.count-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 2px 20px;
    height: 32px;
    left: 280px;
    top: 307px;
    background: #FFFFFF;
    border-radius: 16px;
    border: none;
}

.count-btn:before {
    content: "";
    display: inline-block;
    width: 23px;
    height: 18px;
    background: url("/assets/img/pr-employee-count-29bf75e6dd5d0a1386d8ba334626c0d3.png") no-repeat;
    background-size: contain;
    vertical-align: middle;
}

/* モーダルコンテナ*/
.modal__container_count {
    background-color: #fff;
    padding: 20px;
    border-radius: 4px;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    margin: -25px 0 0 -25px;
}

/* モーダル内ボタン */
.countRadio {
    border: none;
}

.countRadio label {
    display: flex;
    align-items: center;
    gap: 0 .5em;
    position: relative;
    max-width: 200px;
    margin-bottom: .4em;
    padding: .5em .7em;
    cursor: pointer;
}

/*
.countRadio label:has(:checked) {
    background-color: #2589d0;
    color: #fff;
}
*/

.countRadio label::before,
.countRadio label:has(:checked)::after {
    border-radius: 50%;
    content: '';
}

.countRadio label::before {
    width: 14px;
    height: 14px;
    background-color: #fff;
}

.countRadio label:has(:checked)::after {
    position: absolute;
    top: 50%;
    left: calc(7px + .7em);
    transform: translate(-50%, -50%);
    width: 20px;
    height: 10px;
    background: url("/assets/img/pr-sort-check-535fc3fc4dbb3b9357deaff2fc2b446f.png") no-repeat;
}

.countRadio input {
    display: none;
}


.radioA {
    display: flex;
    flex-wrap: wrap;
    gap: .6em 8em;
    border: none;
    position: absolute;
    top: 50%;
    margin: auto;
}

.radioA label {
    display: flex;
    align-items: center;
    gap: 0 .5em;
    position: relative;
    cursor: pointer;
}

.radioA label::before,
.radioA label::after {
    border-radius: 50%;
    content: '';
}

.radioA label::before {
    width: 18px;
    height: 18px;
    border: 2px solid #dee5eb;
    box-sizing: border-box;
}

.radioA label::after {
    position: absolute;
    top: 50%;
    left: 9px;
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
    background-color: #dee5eb;
}

.radioA label:has(:checked)::after {
    background-color: #2589d0;
    animation: anim-radio-002 .3s linear;
}

@keyframes anim-radio-002 {
    0% {
        box-shadow: 0 0 0 1px transparent;
    }

    50% {
        box-shadow: 0 0 0 10px #2589d033;
    }

    100% {
        box-shadow: 0 0 0 10px transparent;
    }
}

.radioA input {
    display: none;
}


.modal__box2 {
    overflow-x: hidden;
    overflow-y: auto;
    padding: 20px 20px 20px 20px;
    height: 25vmin;
    background-color: white;
    margin: -25px 0 0 -25px;
}


.accordion-003 {
    max-width: 525px;
    margin-bottom: 7px;
    border-bottom: 2px solid #d6dde3;
}

.accordion-003 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}

.accordion-003 summary::-webkit-details-marker {
    display: none;
}

.accordion-003 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .3s;
}

.accordion-003[open] summary::after {
    transform: rotate(225deg);
}

.accordion-003 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.accordion-003[open] p {
    transform: none;
    opacity: 1;
}

/* Key word */
.pr-keywordList-title {
    font-size: 15px;
    line-height: 15px;
    color: rgba(0, 0, 0, 0.8);
    margin-right: 24px;
}
.pr-keywordList-item {
    font-size: 15px;
    line-height: 15px;
    color: rgba(0, 0, 0, 0.8);
    margin-right: 24px;
}
.kwctl_table {
    overflow: auto;
    width: 100%;
    height: 300px;
}
.kwctl_table table{
    margin: 0;
    border-spacing: 0;
}
.kwctl_table th {
    white-space: nowrap;
    border-right: 0px solid #999;
    border-bottom: 0px solid #999;
    background: #FFF;
    position: sticky;
    top: 0;
    left: 0;
}
.kwctl_table td{
    white-space: nowrap;
    border-right: 0px solid #999;
    border-bottom: 0px solid #999;
    background: #FFF;
    padding: 0px 0px 0px 11px;
}
.kwctl_table tr:first-child th{
    border-top: 0px solid #999;
}
.kwctl_table th:first-child{
    border-left: 0px solid #999;
}
.kwctl_table tr:first-child th:first-child{
    z-index: 1;
}
.kwctl-del {
    width: 5%;
    margin: auto;
}
.kwctl-key {
    width: 30%;
}
.kwctl-ymd {
    width: 10%;
}
.kwctl-set {
    width: 20%;
}

/* Browser br tag */
.brw-br {
    margin: 5px 0 5px 0;
}

/* event list */
.event-list-section {
    width: 100%;
    padding-bottom: 5px;
    font-weight: 700;
    line-height: 22px;
    font-size: 17px;
    box-shadow: inset 0px -1px 0px rgb(0 0 0 / 10%);
    color: #0D99FF;
}
.event-list-row-section {
    background-color: #EEEEEE;
}
.event-list-badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: bold;
    color: white;
    line-height: 1;
    vertical-align: middle;
    white-space: nowrap;
    text-align: center;
    background-color: red;
    border-radius: 10px;
}
.event-title-section {
    width: 100%;
    padding-bottom: 5px;
    font-weight: 700;
    line-height: 22px;
    font-size: 17px;
    box-shadow: inset 0px -1px 0px rgb(0 0 0 / 10%);
}
.event-list-plus-icon {
    height: 18.04px;
    width: 18px;
    position: relative;
    bottom: 55px;
}
.event-list-table {
    overflow: scroll;
    background-color: white;
    padding: 1em;
}
.event-list-item {
    font-size: 12px;
    line-height: 15px;
    color: rgba(0, 0, 0, 0.8);
    margin-right: 24px;
}
.event-list-div-content {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #333333;
}
.event-list-content {
    font-size: 13px;
    line-height: 16px;
    color: rgba(0, 0, 0, 0.8);
    word-wrap: break-word;
    white-space: normal;
    word-break: break-all;
    overflow-wrap: break-word;
    white-space: pre-wrap;"
}
.event-list-datetime {
    margin-right: 5px;
    font-size: 13px;
    line-height: 16px;
    color: rgba(0, 0, 0, 0.8);
}
.event-edit-label {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.8);
    margin-top: 15px;
    margin-bottom: 15px;
}
.event-edit-title {
    width: 500px;
    height: 50px;
    padding: 7px 8px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}
.event-edit-content {
    width: 500px;
    height: 195px;
    padding: 7px 8px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    word-wrap: break-word;
    white-space: normal;
}
.event_edit_datetime {
    padding: 7px 8px;
    width: 190px;
    height: 39px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    margin-right: 16px;
    margin-bottom: 10px;
}