@charset "utf-8";

/* -----------------------------------------------

　共通設定

----------------------------------------------- */

/*
　Webフォント
----------------------------------------------- */

@font-face {
    font-family: 'Original Yu Gothic';
    src: local('Yu Gothic Medium');
    font-weight: 100;
}

@font-face {
    font-family: 'Original Yu Gothic';
    src: local('Yu Gothic Medium');
    font-weight: 200;
}

@font-face {
    font-family: 'Original Yu Gothic';
    src: local('Yu Gothic Medium');
    font-weight: 300;
}

@font-face {
    font-family: 'Original Yu Gothic';
    src: local('Yu Gothic Medium');
    font-weight: 400;
}

@font-face {
    font-family: 'Original Yu Gothic';
    src: local('Yu Gothic Bold');
    font-weight: bold;
}

/*
　ページレイアウト
----------------------------------------------- */

body,
html {
    background-color: #f2f2f2;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Hiragino Sans',
        'Noto Sans CJK JP', 'Original Yu Gothic', 'Yu Gothic', sans-serif, 'Apple Color Emoji',
        'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Sans Emoji';
}

body {
    overflow-y: scroll;
}

header,
footer {
    background-color: #333;
    width: 100%;
}

header {
    align-items: center;
    justify-content: center;
    color: #fff;
    display: flex;
    height: 60px;
    position: fixed;
    top: 0;
    z-index: 10;
}

header > div {
    margin: 0 20px;
}

header a {
    color: #fff;
}

header a:hover {
    color: #fff;
    text-decoration: none;
}

header .logo {
    font-size: 1.2em;
    text-align: center;
}

header .login-user {
    display: none;
    margin-right: 20px;
}

header .login-user div {
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 10px;
}

footer {
    align-items: center;
    justify-content: center;
    bottom: 0;
    color: #fff;
    display: flex;
    height: 30px;
    position: fixed;
    z-index: 9999;
}

.copyright {
    font-size: 0.8em;
    opacity: 0.5;
}

#main {
    height: auto !important;
    height: calc(100% - 120px) %;
    min-height: calc(100% - 120px) %;
    position: relative;
    width: 100%;
}

.container-fluid {
    padding: 20px 0 !important;
}

.contents {
    background-color: #fff;
    border: 1px solid #dee2e6;
    margin: 124px auto 88px;
    padding: 20px;
    width: 100%;
    -webkit-box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05);
}

.small-contents {
    background-color: #fff;
    border: 1px solid #dee2e6;
    margin: 0 auto 60px;
    padding: 20px;
    width: 100%;
    -webkit-box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05);
}

.left-contents {
    margin: 124px 0 88px auto;
    width: 220px;
}

.left-contents.accept button {
    background-color: #fff;
    border: 2px solid #4dc5ee;
    border-radius: 30px;
    color: #4dc5ee;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 20px;
    outline: none;
    padding: 10px;
    text-align: center;
    width: 100%;
}

.left-contents.accept button:hover,
.left-contents.accept button.selected {
    background-color: #4dc5ee;
    color: #fff;
    text-decoration: none;
}

.left-contents.sendoff button {
    background-color: #fff;
    border: 2px solid #ffbc2e;
    border-radius: 30px;
    color: #ffbc2e;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 20px;
    outline: none;
    padding: 10px;
    text-align: center;
    width: 100%;
}

.left-contents.sendoff button:hover,
.left-contents.sendoff button.selected {
    background-color: #ffbc2e;
    color: #fff;
    text-decoration: none;
}

.left-contents button.disabled {
    border: 2px solid #ccc !important;
    color: #ccc !important;
}

.left-contents button.disabled:hover {
    background-color: #fff !important;
}

.contents.right-contents {
    margin-left: 20px;
    margin-right: auto;
    max-width: 985px;
    width: 100%;
}

/*
　余白
----------------------------------------------- */

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mr-20 {
    margin-right: 20px !important;
}

.mt-5 {
    margin-top: 5px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

/*
　見出し
----------------------------------------------- */

h1.title {
    border-top: 3px solid #5472cd;
    border-bottom: 3px solid #5472cd;
    color: #5472cd;
    font-size: 1.5em;
    font-weight: 800;
    margin: 1em auto;
    padding: 1em 0;
    text-align: center;
}

h2 {
    border-bottom: solid 3px #cce4ff;
    font-size: 1.4em;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 8px;
    position: relative;
}

h2:after {
    position: absolute;
    content: ' ';
    display: block;
    border-bottom: solid 3px #5472cd;
    bottom: -3px;
    width: 30%;
}

h2.step-title {
    position: relative;
}

h2.step-title .step {
    color: #5472cd;
    font-size: 0.8em;
    position: absolute;
    right: 0;
}

div[class^='step-box'] hr {
    border-top: 0;
    border-right: 0;
    border-bottom: 1px dashed #cce4ff;
    border-left: 0;
}

h3 {
    background: #cce4ff;
    border-left: 5px solid #5472cd;
    color: #333;
    font-size: 1em;
    font-weight: 800;
    margin-bottom: 20px;
    padding: 0.5em;
}

.page-title-area {
    background-color: #f2f2f2;
    padding: 20px 0 0;
    position: fixed;
    top: 60px;
    width: 100%;
    z-index: 10;
}

.page-title {
    background-color: #fff;
    border-top: 3px solid #007bff;
    border-bottom: 3px solid #007bff;
    color: #333;
    font-size: 1.2em;
    font-weight: 700;
    margin: 0 auto 20px;
    max-width: 1225px;
    padding: 5px 0;
    text-align: center;
    width: 100%;
}

.page-title.accept {
    border-top: 3px solid #4dc5ee;
    border-bottom: 3px solid #4dc5ee;
}

.page-title.sendoff {
    border-top: 3px solid #ffbc2e;
    border-bottom: 3px solid #ffbc2e;
}

/*
　ボタン
----------------------------------------------- */

.button-area-wrap {
    background-color: rgba(153, 153, 153, 0.75);
    bottom: 30px;
    position: fixed;
    width: 100%;
    z-index: 2;
}

.button-area {
    margin: 0 auto;
    max-width: 1225px;
    padding: 5px 0 !important;
    text-align: center;
    width: 100%;
}

.button-area button {
    background-color: #fff;
    border: 2px solid #007bff;
    border-radius: 30px;
    color: #007bff;
    display: inline-block;
    font-weight: 600;
    outline: 0;
    padding: 10px;
    text-align: center;
    width: 100%;
}

.button-area button:hover {
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
}

.list-button-area {
    background-color: rgba(153, 153, 153, 0.75);
    border-radius: 5px;
    width: 100%;
}

.list-button-area button,
.list-button-area a {
    background-color: #fff;
    border: 2px solid #343a40;
    border-radius: 30px;
    color: #343a40;
    display: inline-block;
    font-weight: 600;
    margin: 0 0 0 12px;
    outline: 0;
    padding: 5px 10px;
    text-align: center;
    width: 150px;
}

.list-button-area button:hover,
.list-button-area a:hover {
    background-color: #343a40;
    color: #fff;
    text-decoration: none;
}

.list-button-title {
    background-color: #eee;
    border-radius: 5px;
    display: inline-block;
    margin: 5px;
    padding: 10px;
    position: relative;
}

.list-button-title:before {
    content: '';
    position: absolute;
    top: 60%;
    left: 100%;
    margin-top: -15px;
    border: 10px solid transparent;
    border-left: 12px solid #eee;
}

/*
　検索条件
----------------------------------------------- */

.card-header {
    font-weight: bold;
}

.card-footer .btn {
    background-color: #fff;
    border: 2px solid #343a40;
    border-radius: 30px;
    color: #343a40;
    display: block;
    font-weight: 600;
    margin: 0 auto;
    outline: 0;
    padding: 10px;
    text-align: center;
    width: 250px !important;
}

.card-footer button:hover {
    background-color: #343a40;
    color: #fff;
    text-decoration: none;
}

/*
　テーブル
----------------------------------------------- */

.table a {
    background-color: #fff;
    border: 2px solid #007bff;
    border-radius: 20px;
    color: #007bff;
    display: block;
    font-weight: 600;
    margin: 0 auto;
    padding: 5px;
    text-align: center;
    width: 80px;
}

.table a:hover {
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
}

.table .selected {
    /* background-color: #666 !important;
    color: #fff !important; */
    background-color: #98fb98 !important;
    color: #000 !important;
}

.list-x-scroll {
    overflow-x: scroll;
}

.scroll {
    border: 1px solid #cce4ff;
    height: 200px;
    margin-bottom: 20px;
    overflow-y: scroll;
    width: 100%;
}

.scroll div {
    margin: 5px;
}

.calendar {
    border-top: 1px solid #c6c8ca !important;
    border-left: 1px solid #c6c8ca !important;
    border-bottom: 0 !important;
    border-right: 0 !important;
    border-spacing: 0 !important;
    border-collapse: separate !important;
    margin-bottom: 0;
}

.calendar th,
.calendar td {
    border-top: 0 !important;
    border-left: 0 !important;
    border-bottom: 1px solid #c6c8ca !important;
    border-right: 1px solid #c6c8ca !important;
    padding: 0.5rem !important;
    text-align: center !important;
    vertical-align: middle !important;
    white-space: nowrap !important;
}

.calendar th {
    background-color: #d6d8d9;
    color: #1b1e21;
    font-weight: 600;
}

.calendar th div {
    min-width: 50px;
}

.calendar th button {
    margin: 5px auto 0;
    width: auto;
}

.conf-list th button {
    margin: 5px auto 0;
    width: auto;
}

.calendar tr:first-child > th:last-child {
    border-top-right-radius: 0.25rem;
}

.calendar tr.bg-color {
    background-color: #f4f4f4;
}

.conf-list tr.base-row1,
.conf-list tr.base-row2 {
    display: none;
}

.calendar2 {
    border-top: 1px solid #ffeeba !important;
    border-left: 1px solid #ffeeba !important;
    border-bottom: 0 !important;
    border-right: 0 !important;
    border-spacing: 0 !important;
    border-collapse: separate !important;
    border-radius: 0.25rem !important;
    margin-bottom: 0;
}

.calendar2 th,
.calendar2 td {
    border-top: 0 !important;
    border-left: 0 !important;
    border-bottom: 1px solid #ffeeba !important;
    border-right: 1px solid #ffeeba !important;
    padding: 0.5rem !important;
    text-align: center !important;
    vertical-align: middle !important;
    white-space: nowrap !important;
}

.calendar2 th {
    background-color: #fff3cd;
    color: #856404;
    font-weight: 600;
}

.calendar2 th div {
    min-width: 50px;
}

.calendar2 th button {
    margin: 5px auto 0;
    width: auto;
}

.calendar2 tr:first-child > th:first-child {
    border-top-left-radius: 0.25rem;
}

.calendar2 tr:first-child > th:last-child {
    border-top-right-radius: 0.25rem;
}

.calendar2 tr.bg-color {
    background-color: #fffbe9;
}

.calendar2 tr.base-row1,
.calendar2 tr.base-row2 {
    display: none;
}

.send-list input {
    margin: 0 auto;
    text-align: right;
    width: 46px;
}

.conf-list .input-group,
.conf-list .input-group {
    margin-bottom: 3px;
    /* #region 数値テキストボックスからドロップダウンリストへ変更 */
    /* width: 120px; */
    width: 130px;
    /* #endregion */
}

.conf-list .man-day input,
.conf-list .man-day input {
    font-size: 0.9em;
    padding: 6px;
    width: 50px;
}

.conf-list .man-day span,
.conf-list .man-day span {
    font-size: 0.9em;
    padding: 2px 6px;
}

.conf-list .man-time input,
.conf-list .man-time input {
    font-size: 0.9em;
    padding: 6px 2px 6px 6px;
    text-align: right;
    width: 50px;
}

.conf-list .man-time span,
.conf-list .man-time span {
    font-size: 0.9em;
    padding: 2px 6px;
}

.gns-select > .col-md-10 {
    padding-left: 7px;
}

.fa-caret-square-down,
.fa-caret-square-up {
    color: #777;
    font-size: 1.1em;
}

.fas.fa-caret-square-down,
.fas.fa-caret-square-up {
    color: #007bff;
}

.fa-caret-square-down:hover,
.fa-caret-square-up:hover {
    color: #007bff;
    cursor: pointer;
}

.fa-caret-square-down {
    padding-left: 10px;
}

.fa-caret-square-up {
    padding-left: 2px;
}

/*
　アラート
----------------------------------------------- */

.js-verify-alert .alert {
    margin: 5px 0 0;
    padding: 6px 12px;
}

/*
　文章調整
----------------------------------------------- */

.indent {
    text-indent: -1em;
    padding-left: 1em;
}

.indent2 {
    text-indent: -2em;
    padding-left: 2em;
}

.item-display {
    display: inline-block;
    padding-top: calc(0.375rem + 1px);
    padding-bottom: calc(0.375rem + 1px);
    margin-bottom: 0;
    line-height: 1.5;
}

/*
　リンク
----------------------------------------------- */

a.link {
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    color: #007bff !important;
    display: inline !important;
    font-weight: 400 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: start !important;
    width: auto !important;
}

a.link:hover {
    color: #007bff !important;
    text-decoration: underline !important;
}

th a.link:hover {
    text-decoration: none !important;
}

/*
　モーダル
----------------------------------------------- */

.modal-header {
    background-color: #ccc;
    color: #333;
}

.modal-scroll {
    height: 300px;
    overflow-y: scroll;
}

.modal-scroll table {
    border-bottom: 1px solid #ddd;
    margin-bottom: 0;
    width: 100%;
}

.modal-scroll table td {
    vertical-align: middle;
    white-space: nowrap;
}

.modal-scroll table td.title {
    background-color: #eee;
    vertical-align: middle;
}

.modal-scroll table td.list {
    padding-bottom: 0;
}

.modal-scroll table td.my-title {
    background-color: #ffbc2e;
    vertical-align: middle;
}

.modal-scroll table td.my-setting {
    background-color: #ffffe5;
    padding-bottom: 0;
}

.modal-scroll table .flex-item {
    margin: 0 0.75em 0.75em 0;
}

.modal-body p {
    margin: 0;
}

/* -----------------------------------------------

　トップページ

----------------------------------------------- */

/*
　ページレイアウト
----------------------------------------------- */

.contents-wrap {
    margin: 60px auto 32px;
    max-width: 960px;
    width: 100%;
}

.accept-area {
    background-color: #fff;
    border: 5px solid #4dc5ee;
    border-radius: 12px;
    -webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
    text-align: center;
    width: 100%;
}

.accept-area .main-icon {
    background: #4dc5ee;
    border-radius: 50%;
    margin: 20px auto;
    height: 5em;
    width: 5em;
    position: relative;
}

.accept-area .main-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.sendoff-area {
    background-color: #fff;
    border: 5px solid #ffbc2e;
    border-radius: 12px;
    -webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
    margin-left: 20px;
    width: 100%;
}

.sendoff-area .main-icon {
    background: #ffbc2e;
    border-radius: 50%;
    margin: 20px auto;
    height: 5em;
    width: 5em;
    position: relative;
}

.sendoff-area .main-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.own-area {
    background-color: #fff;
    border: 5px solid #007bff;
    border-radius: 12px;
    -webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
    text-align: center;
    width: 100%;
}

.accept-area .title,
.sendoff-area .title,
.own-area .title {
    color: #333;
    font-size: 1.5em;
    font-weight: 700;
    text-align: center;
}

.accept-area .sub-title,
.sendoff-area .sub-title {
    color: #333;
    font-size: 1em;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

/*
　見出し
----------------------------------------------- */

h3.menu-title {
    background: #f4f4f4;
    border-radius: 15px;
    border-left: 0;
    color: #333;
    font-size: 1.2em;
    padding: 10px 10px 10px 60px;
    position: relative;
}

h3.menu-title:before {
    display: inline-block;
    position: absolute;
    padding: 0;
    color: #fff;
    background: #333;
    font-family: FontAwesome;
    font-weight: normal;
    width: 50px;
    text-align: center;
    height: 50px;
    line-height: 50px;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 50%;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.29);
}

h3.menu-title.download:before {
    content: '\f56d';
}

h3.menu-title.maintenance:before {
    content: '\f0ad';
}

h3.menu-title.info:before {
    content: '\f05a';
}

h3.menu-title.smartphone:before {
    content: '\f3cd';
}

.menu {
    background-color: #fff;
    border: 1px solid #dee2e6;
    -webkit-box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
    height: 100%;
    padding: 20px 20px 0;
}

/*
　ボタン
----------------------------------------------- */

.accept-area .list-btn {
    border: 2px solid #4dc5ee;
    border-radius: 30px;
    color: #4dc5ee;
    font-weight: 600;
    margin: 0 auto 20px;
    padding: 10px;
    text-align: left;
    width: 200px;
}

.accept-area .list-btn:hover {
    background-color: #4dc5ee;
    color: #fff;
}

.sendoff-area .list-btn {
    border: 2px solid #ffbc2e;
    border-radius: 30px;
    color: #ffbc2e;
    font-weight: 600;
    margin: 0 auto 20px;
    padding: 10px;
    text-align: left;
    width: 200px;
}

.sendoff-area .list-btn:hover {
    background-color: #ffbc2e;
    color: #fff;
}

.own-area .list-btn {
    border: 2px solid #007bff;
    border-radius: 30px;
    color: #007bff;
    font-weight: 600;
    margin: 0 auto 20px;
    padding: 10px;
    text-align: left;
    width: 200px;
}
.own-area .list-btn:hover {
    background-color: #007bff;
    color: #fff;
}

.accept-area a,
.sendoff-area a,
.own-area a {
    text-decoration: none;
}

.list-btn.disabled {
    border: 2px solid #ccc !important;
    color: #ccc !important;
}

.list-btn.disabled:hover {
    background-color: #fff !important;
}

.list-btn.warning {
    border: 2px solid #f00 !important;
    color: #f00 !important;
}

.list-btn.warning:hover {
    background-color: #f00 !important;
    color: #fff !important;
}

/*
　文章調整
----------------------------------------------- */

.comment {
    border-bottom: 1px solid #333;
    border-top: 1px solid #333;
    margin: 0 20px 0 0;
    padding: 20px;
}

/*
　リンク
----------------------------------------------- */

a.button {
    background-color: #fff;
    border-bottom: 1px solid #007bff;
    border-left: solid 4em #007bff;
    border-right: 1px solid #007bff;
    border-top: 1px solid #007bff;
    border-radius: 5px;
    color: #007bff;
    display: block;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 16px 20px;
    position: relative;
    width: 100%;
}

a.button:hover {
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
}

a.button:before {
    color: white;
    font-family: FontAwesome;
    font-size: 1.4em;
    font-weight: normal;
    position: absolute;
    padding: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

a.button.file:before {
    content: '\f15c';
    left: -1.8em;
}

a.button.company:before {
    content: '\f1ad';
    left: -1.85em;
}

a.button.person:before {
    content: '\f406';
    left: -1.9em;
}

a.button.setting:before {
    content: '\f4fe';
    left: -1.9em;
}

a.button.manual:before {
    content: '\f570';
    left: -1.8em;
}

a.button.qa:before {
    content: '\f059';
    left: -1.9em;
}

.logout-wrap {
    margin: 20px 0 0;
    text-align: right;
}

a.logout {
}

a.logout:hover {
    text-decoration: underline;
}

a.btn {
    margin-bottom: 20px;
    padding: 20px;
    width: 100%;
}

/* -----------------------------------------------

　研鑽場所検索（送出）

----------------------------------------------- */

/*
　アラート
----------------------------------------------- */

.send-alert {
    font-weight: 600;
    padding: 5px;
}

.send-alert .alert-contents-left {
    padding: 7px 0 7px 29px;
}

.send-alert .alert-contents-right {
    text-align: right;
}

.send-alert .alert-contents-right button {
    margin-left: auto;
    width: auto;
}

.send-sub-alert {
    font-weight: 600;
    padding: 5px;
}

.send-sub-alert .alert-contents-left {
    padding: 7px 0 7px 49px;
}

.send-sub-alert .alert-contents-right {
    text-align: right;
}

.send-sub-alert .alert-contents-right button {
    margin-left: auto;
    width: auto;
}

/* -----------------------------------------------

　所属班設定

----------------------------------------------- */

/*
　テーブル
----------------------------------------------- */

.table-team {
    margin: 16px 0 0;
}
.table-team th {
    background-color: #f4f4f4 !important;
    border-bottom: 1px solid #dee2e6 !important;
    text-align: center !important;
    vertical-align: top !important;
}
.table-team th button {
    margin: 5px auto 0;
    width: auto;
}
.table-team td {
    text-align: center !important;
    vertical-align: middle !important;
}
.table-team td button.js-gns-add {
    margin: 0 auto;
    width: auto;
}

colgroup.team .col1 {
    width: 10%;
}
colgroup.team .col2 {
    width: 40%;
}
colgroup.team .col3 {
    width: 50%;
}

/* -----------------------------------------------

　手配管理

----------------------------------------------- */

/*
　テーブル
----------------------------------------------- */

.daily-list-area table tr.base-row {
    display: none;
}

.daily-list-area table td {
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

.daily-list-area table button {
    margin: 5px auto 0 !important;
    width: auto !important;
}

.daily-list-area table .bukken_name {
    width: 300px !important;
    white-space: normal;
    text-align: left;
    padding: 0 1em 0;
}
.daily-list-area table .jgs_uid {
    width: 250px !important;
}
.daily-list-area table .gns_uid {
    width: 250px !important;
}
.daily-list-area table .jisshi_nyuryoku {
    text-align: right;
    width: 100px !important;
}

/*
　色設定
----------------------------------------------- */

.color-success {
    color: #00b06b;
}
.color-warning {
    color: #f6aa00;
}
.color-danger {
    color: #ff4b00;
}

.bg-color-success {
    background-color: #98fb98;
}
.bg-color-warning {
    background-color: #ffff55;
}
.bg-color-danger {
    background-color: #ff69a3;
}

/*
　ボタン
----------------------------------------------- */

.btn-print {
    padding-bottom: 8px !important;
    padding-top: 8px !important;
    width: 250px !important;
}

/* -----------------------------------------------

　その他

----------------------------------------------- */

/*
　タブ表示
----------------------------------------------- */

.tab-content {
    border-right: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    border-left: 1px solid #dee2e6;
    padding: 20px;
}

div.fixed-scroll {
    height: 500px;
    overflow: scroll;
    width: 100%;
}

table.table-fixed {
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 0;
}

table.table-fixed > thead + tbody > tr > th,
table.table-fixed > thead + tbody > tr > td {
    border-top: none;
}
table.table-fixed > thead > tr:not(:first-child) > th,
table.table-fixed > thead > tr:not(:first-child) > td,
table.table-fixed > tbody > tr:not(:first-child) > th,
table.table-fixed > tbody > tr:not(:first-child) > td {
    border-top: none;
}
table.table-fixed > thead > tr > th:nth-child(n + 3),
table.table-fixed > thead > tr > td:nth-child(n + 3),
table.table-fixed > tbody > tr > th:nth-child(n + 3),
table.table-fixed > tbody > tr > td:nth-child(n + 3) {
    border-left: none;
}


table.table-fixed th {
    height: 50px;
}
table.table-fixed td {
    height: 63px;
}

table.table-fixed.table-tehai th {
    height: 26px !important;
}
table.table-fixed.table-tehai th button {
    margin: 5px 0;
}
table.table-fixed.table-tehai td {
    height: 26px !important;
}

table.table-fixed th,
table.table-fixed td {
    vertical-align: middle;
    padding: 0 15px;
    border: 1px solid #dee2e6;
}

table.table-fixed th.fixed01,
table.table-fixed th.fixed02 {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    background-color: #fff;
}

table.table-fixed th.fixed03 {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 44px;
    background-color: #fff;
}

table.table-fixed th.fixed01::before,
table.table-fixed th.fixed02::before,
table.table-fixed th.fixed03::before {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 100%;
    height: 100%;
    border: 1px solid #dee2e6;
}

table.table-fixed td.fixed01,
table.table-fixed td.fixed02 {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
}

table.table-fixed td.fixed03 {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 44px;
}

table.table-fixed tbody tr:nth-child(odd) td.fixed01,
table.table-fixed tbody tr:nth-child(odd) td.fixed02,
table.table-fixed tbody tr:nth-child(odd) td.fixed03 {
    background-color: #f4f4f4;
}
table.table-fixed tbody tr:nth-child(even) td.fixed01,
table.table-fixed tbody tr:nth-child(even) td.fixed02,
table.table-fixed tbody tr:nth-child(even) td.fixed03 {
    background-color: #fff;
}

table.table-fixed .fixed01 {
    z-index: 2;
}
table.table-fixed .fixed02 {
    z-index: 1;
}
table.table-fixed th.fixed03 {
    z-index: 3;
}
table.table-fixed td.fixed03 {
    z-index: 2;
}

.fixed-thead-scroll,
.fixed-tbody-scroll {
    overflow: scroll;
    width: 100%;
}

.plan-list .fixed-tbody-scroll {
    /* height: 51px; */
    height: 66.5px;
}

.send-list .fixed-tbody-scroll {
    height: 261px;
}

.conf-list .fixed-tbody-scroll {
    height: 760px;
}
.conf-list.send .fixed-tbody-scroll {
    height: 502px;
}

table.fixed-table {
    border-collapse: separate !important;
    border-spacing: 0 !important;
    margin-bottom: 0 !important;
    table-layout: fixed !important;
    width: 100% !important;
}

table.fixed-table.snk th {
    background-color: #fff3cd;
    color: #856404;
}

table.fixed-table > thead + tbody > tr > th,
table.fixed-table > thead + tbody > tr > td {
    border-top: none;
}
table.fixed-table > thead > tr:not(:first-child) > th,
table.fixed-table > thead > tr:not(:first-child) > td,
table.fixed-table > tbody > tr:not(:first-child) > th,
table.fixed-table > tbody > tr:not(:first-child) > td {
    border-top: none;
}

table.fixed-table th,
table.fixed-table td {
    border: 1px solid #c6c8ca;
    padding: 5px;
    text-align: center;
    vertical-align: middle;
}

table.fixed-table.snk th,
table.fixed-table.snk td {
    border: 1px solid #ffeeba;
}

table.fixed-table th {
    background-color: #d6d8d9;
}
table.fixed-table.snk th {
    background-color: #fff3cd;
}

table.fixed-table th.fixed01,
table.fixed-table th.fixed02 {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
}

table.fixed-table th.fixed01::before,
table.fixed-table th.fixed02::before {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 100%;
    height: 100%;
    border: 1px solid #c6c8ca;
}

table.fixed-table.snk th.fixed01::before,
table.fixed-table.snk th.fixed02::before {
    border: 1px solid #ffeeba;
}

table.fixed-table td.fixed01,
table.fixed-table td.fixed02 {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
}

table.fixed-table tbody tr:nth-child(odd) td {
    background-color: #f4f4f4;
}
table.fixed-table tbody tr:nth-child(even) td {
    background-color: #fff;
}
.conf-list table.fixed-table tbody tr td {
    background-color: #fff;
}

table.fixed-table .fixed01 {
    z-index: 2;
}
table.fixed-table .fixed02 {
    z-index: 1;
}

.plan-list table.fixed-table > thead > tr:nth-child(1) > th:nth-child(n + 2),
.plan-list table.fixed-table > thead > tr:nth-child(n + 2) > th:nth-child(n),
.plan-list table.fixed-table > tbody > tr > th:nth-child(n + 2),
.plan-list table.fixed-table > tbody > tr > td:nth-child(n + 2),
.send-list table.fixed-table > thead > tr:nth-child(1) > th:nth-child(n + 2),
.send-list table.fixed-table > thead > tr:nth-child(n + 2) > th:nth-child(n),
.send-list table.fixed-table > tbody > tr > th:nth-child(n + 2),
.send-list table.fixed-table > tbody > tr > td:nth-child(n + 2),
.conf-list table.fixed-table > thead > tr:nth-child(1) > th:nth-child(n + 2),
.conf-list table.fixed-table > thead > tr:nth-child(n + 2) > th:nth-child(n),
.conf-list table.fixed-table > tbody > tr > th:nth-child(n + 2),
.conf-list table.fixed-table > tbody > tr:nth-child(odd) > td:nth-child(n + 2),
.conf-list table.fixed-table > tbody > tr:nth-child(even) > td:nth-child(n) {
    border-left: none;
}

.plan-list .col1 {
    width: 100px;
}
.plan-list .col2 {
    width: 80px;
}

.send-list .col1 {
    width: 200px;
}
.send-list .col2 {
    width: 80px;
}

.conf-list .col1 {
    width: 200px;
}
.conf-list .col2 {
    width: 48px;
}

/* #region 2024/11/2 数値テキストボックスからドロップダウンリストへ変更 */

.conf-list .col3 {
    /* width: 132px; */
    width : 140px;
}

.conf-list select {
    padding : .1rem .5rem;
}

/* #endregion */

.conf-list .col4 {
    width: 300px;
}

/* -----------------------------------------------

　メディアクエリ（全スタイルよりも後に適用させる）

----------------------------------------------- */

@media (min-width: 768px) {
    header {
        justify-content: space-between;
    }

    header .login-user {
        display: block;
    }

    h1.title {
        margin: 80px auto 20px;
        width: 720px;
    }

    .small-contents {
        width: 720px;
        padding: 60px 20px 20px;
    }

    .contents {
        max-width: 1225px;
        width: 100%;
    }

    .pc-none {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .sp-none {
        display: none !important;
    }

    div.fixed-scroll {
        height: auto !important;
        overflow-x: scroll !important;
        overflow-y: visible !important;
        width: auto !important;
    }

    table.table-fixed th.fixed01,
    table.table-fixed th.fixed02,
    table.table-fixed th.fixed03 {
        position: static;
    }

    table.table-fixed th.fixed01::before,
    table.table-fixed th.fixed02::before,
    table.table-fixed th.fixed03::before {
        position: static;
    }

    table.table-fixed td.fixed01,
    table.table-fixed td.fixed02,
    table.table-fixed td.fixed03 {
        position: static;
    }

    /* 動画マニュアルリンクを非表示にする */
    a[href='#movie-modal'],
    #movieTab {
        display: none !important;
    }

    /* 左端の罫線を表示するため */
    table.table-fixed > thead > tr > th:nth-child(n + 3),
    table.table-fixed > thead > tr > td:nth-child(n + 3),
    table.table-fixed > tbody > tr > th:nth-child(n + 3),
    table.table-fixed > tbody > tr > td:nth-child(n + 3) {
        border-left: 1px solid #dee2e6;
    }
}

/*------------------------------------
２行目以降を表示させない
-----------------------------------*/
#faq_list_answer {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

@page {
    size: A4 portrait;
    margin: auto;
}

/*
* 募集人数テーブル　テキストボックス
*/
.boshu_ninzu_list .boshu_ninzu {
    width: 46px;
    margin: 0 auto;
    text-align: right;
}

/*
* 動画マニュアルモーダル
*/

.movie-modal-wrapper {
    z-index: 999;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 40px 10px;
    text-align: center;
}

.movie-modal-wrapper:not(:target) {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.movie-modal-wrapper:target {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s, visibility 0.4s;
}

.movie-modal-wrapper::after {
    display: inline-block;
    height: 100%;
    margin-left: -0.05em;
    vertical-align: middle;
    content: '';
}

.movie-modal-wrapper .movie-modal-window {
    box-sizing: border-box;
    display: inline-block;
    z-index: 20;
    position: relative;
    width: 70%;
    padding: 10px 30px 25px;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
    vertical-align: middle;
}

.movie-modal-wrapper .movie-modal-window .movie-modal-content {
    max-height: 80vh;
    overflow-y: auto;
    text-align: left;
}

.movie-modal_title {
    font-size: 1.5em;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.movie-modal_title::before,
.movie-modal_title::after {
    content: '';
    position: absolute;
    bottom: 0;
}

/* h2 プライマリカラー*/
.movie-modal_title:before {
    border-bottom: 4px solid #6bb6ff;
    width: 100%;
}
/* h2 セカンダリカラー*/
.movie-modal_title:after {
    border-bottom: 4px solid #c8e4ff;
    width: 100%;
}

.movie-modal-content p {
    margin: 10px 0 0 0;
}

.movie-modal-overlay {
    z-index: 10;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
}

.movie-modal-wrapper .movie-modal-close {
    z-index: 20;
    position: absolute;
    top: 5px;
    right: 5px;
    width: 35px;
    color: #95979c !important;
    font-size: 30px;
    font-weight: 700;
    line-height: 35px;
    text-align: center;
    text-decoration: none;
    text-indent: 0;
}

.movie-modal-wrapper .movie-modal-close:hover {
    color: #2b2e38 !important;
}

/* 動画マニュアルリンク*/
.page-link-modal {
    width: 100%;
    max-width: 1225px;
    margin: 0 auto;
    padding: 0;
    text-align: right;
}

.page-title {
    margin: 0 auto;
}

.side-menu {
    margin-top: 10px;
}

a[href='#movie-modal'],
#movieTab {
    border-bottom: 2.5px solid #007bff;
    padding-bottom: 1px;
}

a[href='#movie-modal']:hover,
#movieTab:hover {
    text-decoration: none;
    border-bottom: 2.5px solid rgb(0, 86, 179);
    padding-bottom: 1px;
}

a[href='#movie-modal']::before,
#movieTab::before {
    font-family: FontAwesome;
    content: '\f05a\0020';
}

/*
　　現場を探す(自社送出)
　 ・所属班のセレクタ
 */
.han_mei_code {
    width: 145px;
}

#setHanModal .modal-footer {
    border-top: none;
}

/*
    動画マニュアルのスタイル変更　
        ・文字色
        ・文字のサイズ
 */
a[href='#movie-modal'],
#movieTab {
    font-size: 17.5px;
    color: red;
    border-bottom: 2.5px solid red;
}

a[href='#movie-modal']:hover,
#movieTab:hover {
    border-bottom: 2.5px solid red;
}

.kensan-alert-icon {
    width: 50px;
    height: auto;
}

.information-area {
    background-color: #fff;
    border: 5px solid #00b06b;
    border-radius: 12px;
    -webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
    text-align: center;
    width: 100%;
}
/* 処理中スピナー 設定 */
#overlay{
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height:100%;
    display: none;
    background: rgba(0,0,0,0.6);
}
.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.7s infinite linear;
}
@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}
.is-hide{
    display:none;
}