/* 編集する際は、TamaWeb/css/tama.cssを修正して下さい。コンパイル時に変更が失われます。*/
body {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    margin-bottom: 20px !important;
}

label {
    margin-bottom: 0px !important;
}

td {
    padding: 0.25rem !important;
}

.container {
    max-width: 1800px !important;
}

/* HTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHT*/
/* 印刷時のレイアウトを表示*/
@page {
    size: auto;
}

/* HTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHT*/
/* LoadingOverlay*/
div.loadingoverlay_element {
    z-index: 10000;
}

/* HTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHT*/
/* コントロール定義*/
/* checkboxはreadonly時にマウスイベントナシ*/
input[type="checkbox"][readonly] {
    pointer-events: none;
}

/* コントロール定義 - ボタン定義*/
.btn-p-sm {
    padding: 0.05rem 0.5rem;
}

/* 画面レイアウト調整*/
.form-group {
    margin-bottom: 0px;
}

.panel {
    padding-left: 0px;
    padding-right: 0px;
}

.panel-body {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
}

.form-control {
    padding-top: 1px;
    padding-bottom: 1px;
    height: auto;
}

label.form-control {
    padding-top: 0px;
    padding-bottom: 0px;
    height: auto;
    background-color: #eee;
}

.panel {
    margin-bottom: 5px;
}

.panel-heading {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
}

.input-group-addon {
    padding: 0px;
}

.btn-link {
    padding: 0px !important;
}

.table {
    margin-bottom: 0px;
}

.panel-body {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
}
/* 検証エラー（枠を赤色に）*/
.input-validation-error {
    border: 1px solid #e80c4d;
    background-color: #ffeeee;
}
/* 検証エラーメッセ―ジ用*/
.validation-summary-valid {
    padding: 0 !important;
    margin: 0 !important;
    display: none !important;
}

.validation-summary-errors ul {
    padding-left: 10px !important;
    margin-bottom: 2px !important;
    font-size: 0.8rem;
}

/* 必須マーク*/
.requiredlabel:after {
    content: " *";
    font-weight: bold;
    color: red;
}
/* 削除修飾*/
button.deleted {
    text-decoration: line-through;
}

/* placeholder*/
/*input::placeholder {
    color: silver !important;
}
*/

/* アコーディオン*/
.accordion > a {
    display: block;
    position: relative;
}

    .accordion > a:after {
        content: "\f078"; /* fa-chevron-down */
        font-family: 'FontAwesome';
        position: absolute;
        right: 0;
    }

    .accordion > a[aria-expanded="true"]:after {
        content: "\f077"; /* fa-chevron-up */
    }
/* アコーディオン（短い）*/
.accordion-short > a {
}

    .accordion-short > a:before {
        content: "\f078"; /* fa-chevron-down */
        font-family: 'FontAwesome';
    }

    .accordion-short > a[aria-expanded="true"]:before {
        content: "\f077"; /* fa-chevron-up */
    }

/* HTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHT*/
/* 画面コントロール*/

/* 入力コントロール用*/
.input-date-style-lg {
    min-width: 120px;
    max-width: 140px;
}

.input-date-style {
    min-width: 80px;
    max-width: 100px;
}

.input-time-style-lg {
    min-width: 85px;
    max-width: 85px;
}

.input-time-style {
    min-width: 65px;
    max-width: 65px;
}

.input-zip-code-style {
    min-width: 90px;
    max-width: 90px;
}

/* 数値入力表示ラベル*/
.input-ja-number-label {
    min-width: 90px !important;
    text-align: right;
    display: block
}

.input-ja-number-label-lg {
    min-width: 130px !important;
}

/* HTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHT*/
/* 一覧用*/
thead tr th {
    position: sticky;
    top: 0;
    /* tbody内のセルより手前に表示する */
    z-index: 1;
}

/* table-responsiveアドイン*/
@media screen and (max-width: 1024px) {
    .table-responsive {
        overflow-x: auto;
    }
}

@media screen and (min-width: 1025px) {
    .table-responsive {
        overflow-x: unset !important;
    }
}

/* HTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHT*/
/* 権限レベルスタイル*/
.autority-icon-SuperVisor {
    background-color: #428bca;
    color: #ffffff;
}

.autority-icon-SystemManagement {
    background-color: #428bca;
    color: #ffffff;
}

.autority-icon-Management {
    background-color: #428bca;
    color: #ffffff;
}

.autority-icon-Edit {
    background-color: #5bc0de;
    color: #ffffff;
}

.autority-icon-EditLimited {
    background-color: #5bc0de;
    color: #ffffff;
}

.autority-icon-ReadOnly {
    background-color: #5cb85c;
    color: #ffffff;
}

.autority-icon-ReadOnlyLimited {
    background-color: #5cb85c;
    color: #ffffff;
}

.autority-icon-image-SuperVisor:before {
    content: "\f0a3";
}

.autority-icon-image-SystemManagement:before {
    content: "\f005";
}

.autority-icon-image-Management:before {
    content: "\f084";
}

.autority-icon-image-Edit:before {
    content: "\f040";
}

.autority-icon-image-EditLimited:before {
    content: "\f040";
}

.autority-icon-image-ReadOnly:before {
    content: "\f02d";
}

.autority-icon-image-ReadOnlyLimited:before {
    content: "\f02d";
}

/* HTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHT*/
/* Topに戻るボタン */
.page-top-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 77%;
    z-index: 999;
}

    .page-top-button a {
        background: #666;
        text-decoration: none;
        color: #fff;
        width: 100px;
        padding: 30px 0;
        text-align: center;
        display: block;
        border-radius: 5px;
    }

        .page-top-button a:hover {
            text-decoration: none;
            background: #999;
        }

/* Topに戻るボタン（Small） */
.page-top-sm-button {
    position: fixed;
    bottom: 2px;
    right: 2px;
    font-size: 77%;
    z-index: 999;
}

    .page-top-sm-button a {
        background: #666;
        text-decoration: none;
        color: #fff;
        width: 40px;
        padding: 5px 0;
        text-align: center;
        display: block;
        border-radius: 5px;
    }

        .page-top-sm-button a:hover {
            text-decoration: none;
            background: #999;
        }

div.page-footer-margin {
    margin-bottom: 12px;
}

/* パンくずリスト*/
.breadcrumb {
    margin-left: 0 !important;
    padding: 0 !important;
    background-color: inherit !important;
    border-radius: inherit !important;
}

    .breadcrumb li {
        display: inline; /*横に並ぶように*/
        list-style: none;
    }

.breadcrumb-item:before { /* →を表示*/
    font-family: FontAwesome !important;
    content: '\f061' !important;
    padding: 0 3px !important;
}

.breadcrumb li:first-child:before {
    content: '' !important;
}

span.maru {
    padding: 1px 7px 2px 6px;
    border-radius: 50%;
    text-align: center;
    background-color: gray;
    color: white;
}

span.maru-active {
    background-color: #218838;
    color: white;
}

/* HTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHT*/
/* 一覧の列長*/
.col-select {
    width: 50px;
    word-break: break-all;
}
/* 選択*/
.col-date {
    width: 80px;
    word-break: break-all;
}
/* 日付*/
.col-count {
    width: 50px;
    word-break: break-all;
}
/* 数量*/
.col-count-input {
    width: 80px;
    word-break: break-all;
}
/* 数量入力*/
.col-btn {
    width: 50px;
    word-break: break-all;
}
/* ボタン*/
.col-index {
    width: 50px;
    word-break: break-all;
}
/* インデックス*/
.col-index-sm {
    width: 30px;
    word-break: break-all;
}
/* インデックス*/

.col-10 {
    width: 10px;
    word-break: break-all;
}

.col-30 {
    width: 30px;
    word-break: break-all;
}

.col-40 {
    width: 40px;
    word-break: break-all;
}

.col-50 {
    width: 50px;
    word-break: break-all;
}

.col-60 {
    width: 60px;
    word-break: break-all;
}

.col-70 {
    width: 70px;
    word-break: break-all;
}

.col-80 {
    width: 80px;
    word-break: break-all;
}
/* コード、短い名称、属性など*/
.col-90 {
    width: 90px;
    word-break: break-all;
}
/* 得コード*/
.col-100 {
    width: 100px;
    word-break: break-all;
}
/* コード、短い名称、属性など*/
.col-110 {
    width: 110px;
    word-break: break-all;
}

.col-120 {
    width: 120px;
    word-break: break-all;
}
/* 短い備考など*/
.col-140 {
    width: 140px;
    word-break: break-all;
}

.col-160 {
    width: 160px;
    word-break: break-all;
}

.col-180 {
    width: 180px;
    word-break: break-all;
}

.col-200 {
    width: 200px;
    word-break: break-all;
}
/* 長い名称など*/
.col-220 {
    width: 220px;
    word-break: break-all;
}

.col-240 {
    width: 240px;
    word-break: break-all;
}

.col-260 {
    width: 260px;
    word-break: break-all;
}

.col-280 {
    width: 280px;
    word-break: break-all;
}

.col-300 {
    width: 300px;
    word-break: break-all;
}
/* 長いコメントなど*/

/* HTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHT*/
/* サブタイトルデザイン（>>）*/
div.subtitle {
    font-size: 0.875em;
    position: relative;
    padding-left: 1em; /*アイコン分のスペース*/
    line-height: 1.4;
}

    div.subtitle:before {
        font-family: "FontAwesome";
        content: "\f101"; /*アイコンのユニコード*/
        position: absolute; /*絶対位置*/
        font-size: 1em; /*サイズ*/
        left: 0; /*アイコンの位置*/
        top: 0; /*アイコンの位置*/
        color: #5ab9ff; /*アイコン色*/
    }
/* サブタイトルデザイン（下線、矢印）*/
div.subtitle-arrow {
    font-size: 0.8em;
    position: relative;
    padding-left: 25px;
}

    div.subtitle-arrow:before {
        position: absolute;
        content: '';
        bottom: -3px;
        left: 0;
        width: 0;
        height: 0;
        border: none;
        border-left: solid 15px transparent;
        border-bottom: solid 15px rgb(119, 195, 223);
    }

    div.subtitle-arrow:after {
        position: absolute;
        content: '';
        bottom: -3px;
        left: 10px;
        width: 100%;
        border-bottom: solid 3px rgb(119, 195, 223);
    }


/* HTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHT*/
/* hrデザイン*/
.base-line-default {
    height: 7px;
    border-top: 0;
    background: #c4e17f;
    border-radius: 5px;
    background-image: -webkit-linear-gradient(left, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
    background-image: -moz-linear-gradient(left, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
    background-image: -o-linear-gradient(left, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
    background-image: linear-gradient(to right, #c4e17f, #c4e17f 12.5%, #f7fdca 12.5%, #f7fdca 25%, #fecf71 25%, #fecf71 37.5%, #f0776c 37.5%, #f0776c 50%, #db9dbe 50%, #db9dbe 62.5%, #c49cde 62.5%, #c49cde 75%, #669ae1 75%, #669ae1 87.5%, #62c2e4 87.5%, #62c2e4);
}

.base-line-fade {
    height: 1px;
    background-image: linear-gradient( 90deg, hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, 0.5) 50%, hsla(0, 0%, 100%, 0) 100%);
}

.base-line-fade-2 {
    border-width: 0 0 1px;
    border-image: linear-gradient( 90deg, hsla(0, 0%, 100%, 0), hsla(0, 0%, 100%, 0.5) 50%, hsla(0, 0%, 100%, 0) 100%) 0 0 100%;
    border-style: solid;
}

.base-line-love {
    border-top: 4px double #bbb;
    text-align: center;
}

    .base-line-love:after {
        content: '\002665';
        display: inline-block;
        position: relative;
        top: -15px;
        padding: 0 10px;
        background: #f0f0f0;
        color: #bbb;
        font-size: 18px;
    }

.base-line-users {
    border-top: 4px double #bbb;
    text-align: center;
}

    .base-line-users:after {
        font-family: 'FontAwesome';
        content: '\f0c0';
        display: inline-block;
        position: relative;
        top: -15px;
        padding: 0 10px;
        background: #f0f0f0;
        color: #bbb;
        font-size: 18px;
    }

.base-line-handshake {
    border-top: 4px double #bbb;
    text-align: center;
}

    .base-line-handshake:after {
        font-family: 'FontAwesome';
        content: '\f2b5';
        display: inline-block;
        position: relative;
        top: -15px;
        padding: 0 10px;
        background: #f0f0f0;
        color: #bbb;
        font-size: 18px;
    }

.base-line-accessory {
    height: 6px;
    background-image: radial-gradient( closest-side, hsla(0, 0%, 50%, 1.0), hsla(0, 0%, 50%, 0) 100%);
    position: relative;
}

    .base-line-accessory:after {
        position: absolute;
        top: 50%;
        left: 50%;
        display: block;
        background-color: hsl(0, 0%, 75%);
        height: 12px;
        width: 12px;
        transform: rotate(45deg);
        margin-top: -10px;
        margin-left: -10px;
        border-radius: 4px 0;
        border: 4px solid hsla(0, 0%, 100%, 0.35);
        background-clip: padding-box;
        box-shadow: -10px 10px 0 hsla(0, 0%, 100%, 0.15), 10px -10px 0 hsla(0, 0%, 100%, 0.15);
    }

/* HTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHT*/
/* Trix*/
.trix-button--icon-attach {
    display: none !important;
}

/* リッチテキストに添付ファイルは含めない*/
.trix-button-group--file-tools {
    display: none !important;
}

.trix-button-group button[data-trix-attribute=red] {
    color: red !important;
    text-indent: 0px;
    text-indent: initial;
}

/* HTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHT*/
/* 項目幅*/
.label-cell-sm {
    min-width: 80px !important;
}

.label-cell {
    min-width: 100px !important;
}

.label-cell-lg {
    min-width: 160px !important;
}

/* HTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHT*/
/* twitter風通知メッセージ*/
.proccessed-notify-message {
    display: none;
    position: fixed;
    top: 45px;
    left: 50%;
    margin-left: -250px;
    padding: 15px 0;
    width: 500px;
    text-align: center;
    font-size: 13px;
    color: #fff;
    background-color: rgba(51,51,51, 0.9);
    -webkit-border-radius: 5px; /* Safari Chrome */
    -moz-border-radius: 5px; /* Firefox */
    border-radius: 5px; /* Firefox */
    z-index: 20000;
}

/* HTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHT*/
/* 強調スタイル
 * 蛍光ペン
 */
.marker-yellow-normal {
    background: linear-gradient(transparent 75%, #ffff7f 75%);
}

.marker-yellow-bold {
    background: linear-gradient(transparent 50%, #ffff7f 50%);
}

.marker-yellow-all {
    background: linear-gradient(transparent 0%, #ffff7f 0%);
}

/* HTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHT*/
/* Tooltip設定
https://getbootstrap.jp/docs/5.3/components/tooltips/
*/
.tooltip-inner {
    max-width: 320px;
}

/* HTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHT*/
/* 誕生日デザイン*/
@keyframes fireworks-animation {
    0% {
        transform: translate(-50%, 90vh);
        width: 4px;
        opacity: 1;
    }

    50% {
        width: 4px;
        opacity: 1;
    }

    100% {
        width: 400px;
        opacity: 0;
    }
}

div.c-firework-area {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none; /* マウスイベントキャンセル */
    z-index: 10000;
}

.c-firework,
.c-firework::before,
.c-firework::after {
    content: "";
    /* position: absolute; */
    position: fixed; /* ポジション固定 */
    top: 50%;
    left: 50%;
    aspect-ratio: 1;
    background: radial-gradient(circle, #f00 10px, #000 0) 50% 00%, radial-gradient(circle, #f00 10px, #000 0) 00% 50%, radial-gradient(circle, #f00 10px, #000 0) 50% 99%, radial-gradient(circle, #f00 10px, #000 0) 99% 50%, radial-gradient(circle, #f00 10px, #000 0) 80% 90%, radial-gradient(circle, #f00 10px, #000 0) 95% 90%, radial-gradient(circle, #f00 10px, #000 0) 10% 60%, radial-gradient(circle, #f00 10px, #000 0) 31% 80%, radial-gradient(circle, #f00 10px, #000 0) 80% 10%, radial-gradient(circle, #f00 10px, #000 0) 90% 23%, radial-gradient(circle, #f00 10px, #000 0) 45% 20%, radial-gradient(circle, #f00 10px, #000 0) 13% 24%;
    background-size: 4px 4px;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
    animation: fireworks-animation 4s infinite;
    pointer-events: none; /* マウスイベントキャンセル */
}

    .c-firework::before {
        transform: translate(-50%, -50%) rotate(25deg) !important;
    }

    .c-firework::after {
        transform: translate(-50%, -50%) rotate(-37deg) !important;
    }

/* HTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHTHT*/
/* iframe一覧 最低高さ */
iframe.list-iframe {
    min-height: 600px;
    max-height: 800px;
}
