* {
    box-sizing: border-box;
    -ms-box-sizing: border-box;
}



/*iOS対策*/
select {
    -moz-appearance: menulist;
    -webkit-appearance: menulist;
    appearance: menulist;
    background: rgba(0,0,0,0.005) !important; /*iOS対策（inheritのままだと矢印が表示されない）*/
}

input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
} 

body {
    margin: 0px;
    font-family: Noto Sans JP Regular;
    color: #505050;
    display: flex;
    height: 100%;
    color: #505050;
    font-size: 1rem;
}

.flex {
    display: flex;
}

.space-between {
    justify-content: space-between;
}

.space-around {
    justify-content: space-around;
}

.main {
    margin-left: 10%;
    margin-top: 32px;
    width: 90%; /*20220823 shimada 100 -> 90% */
    overflow-x: auto;
    padding-right: 5%; /*20220823 shimada 15 -> 5% */
    padding-bottom: 100px;
    position: relative;
}

input {
    padding-left: 12px;
    color: #505050;
}

/* 非活性の設定 */
.inactive {
    background: #f3f3f3;
    opacity: 1;
}

/* テキストの左右揃え */
.center {
    text-align: center;
    padding: 0;
}

.right {
    text-align: right !important;
    padding-right: 10px;
}

.left {
    text-align: left;
    padding-left: 10px;
}

a {
    text-decoration: none;
    color: #505050;
    cursor: pointer;
}

/* ラベルの共通設定 */
label {
    font-size: 15px;
    color: #3E4E6A;
}

/* テキストボックスの共通設定 */
.textbox {
    height: 40px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    box-sizing: border-box;
    font-size: 16px;
    width: 100%;
    font-family: Noto Sans JP Regular;
}

/* サイドメニューが開いたらメニュー分右にずらす */
.main-wrap.panelactive {
    margin-left: 20%;
}

.main-wrap {
    min-width: 100%;
}

.content-area {
    width: 100%;
}

/* =============================================================================================================== */


/* ====================================================選択ボタンのスタイル ====================================================*/
.select-button {
    display: inline-block;
    width: 100px;
    height: 40px;
    background: #fff 0% 0% no-repeat padding-box;
    border-radius: 50px;
    opacity: 1;
    font-size: 16px;
    color: #437DD3;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    line-height: 36px;
    border: 1px solid #E0E0E0;
    font-weight: 500;
    margin-left: 10px;
}

    .select-button:hover {
        background-color: rgba(240, 240, 240, 0.5);
    }

/* ============================================================================================================================== */
/*====================================================ヘッダーのスタイル ===========================================================*/

.gnav {
    position: fixed;
    text-align: center;
    display: inline-block;
    width: 6%;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: inset 0px 0px 10px #00000029;
    opacity: 1;
    transition: all 0.6s;
    height: 100%;
    z-index: 999;
    min-width: 70px;
    left: 0;
    top: 0;
}

    .gnav .nav-icon-home {
        padding-top: 20px;
    }

.nav-icon {
    align-items: center;
    cursor: pointer;
    width: 100%;
    height: 120px;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 30px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.masuta,
.gyomu,
.renkei {
    vertical-align: middle;
}

.list-title.menu-active {
    background-color:#fff;
}


/* ホバー時 */
.nav-icon:hover {
    background: #F3F3F3 0% 0% no-repeat padding-box;
}

.icon-active {
    background-color: #FFEA00;
}

.nav-icon.icon-active:hover {
    background: #FFEA00;
}


.nav-icon:hover::after {
        left: 0;
        top: 0;
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.3);
        z-index: 2;
}

.nav-icon p {
    margin-top: 0px;
}

.gnav img {
    width: 30px;
    height: 30px;
}

.nav-icon .logo {
    width: 70px;
    height: 70px;
}

.nav-icon-gyomu.active img {
    width: 27px;
}

.nav-item {
    text-align: center;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0px;
    color: #5A5A5A;
    opacity: 1;
}

.side-title {
    padding-left: 15%;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 0;
    color: #505050;
}

.side-title i {
    float: right;
    margin-right: 10%;
    line-height: 30px;
}

.side-acordion {
    padding-bottom: 20px;
    margin-top: 30px;
}

    .side-acordion li {
        display: none;
    }

        .side-acordion li.open {
            display: block;
        }


/* ログアウト、ユーザー情報のアイコン */
.user {
    width:100%;
    position: absolute;
    left: 0;
    bottom: 2%;
}

    .user p {
        margin: 20px 0;
    }

.logout,
.account {
    cursor: pointer;
}

.user img {
    width: 30px;
    height: 30px;
}

.user .logout {
    margin-top: 20px;
}

.logout img {
    width: 25px;
    height: 25px;
}

/* クリックで名前を表示*/
.login-user-name {
    position: absolute;
    left: 95%;
    bottom: 60%;
    padding: 10px 0;
    background: #3E4E6A 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 20px;
    opacity: 0.8;
    color: white;
    box-sizing: border-box;
    text-align: left;
    padding-left: 14px;
    width: 180px;
    display: none;
}

    .login-user-name.active {
        display: block;
    }

/* ========================================================================================================================================================= */
/* ====================================================サイドメニューのスタイル ==============================================================================*/
.nav-list {
    position: fixed;
    z-index: 998;
    display: inline-block;
    width: 15%;
    height: 100vh;
    background-color: #FFEA00;
    opacity: 1;
    top: 0;
    left: -100%;
    min-width: 225px;
    overflow-x: scroll;
}

.nav-list ul {
    list-style: none;
    padding-left: 0px;
    margin-top: 0px;
    width: 100%;
}

/* 下線 */
.list-border {
    /*border-bottom: 2px solid #dee284;*/
    border-bottom: 1px solid #505050;
    width: 80%; /*20221128 toda 90%→80%*/
    padding-top: 20px;
    margin:0 auto; /*20221128 toda add*/
    opacity: 0.5;
}

/* panelactiveがついたらメニューを表示 */
.nav-list.panelactive {
    left: 6%;
}

.list-title {
    display: block;
    text-align: left;
    /*font-size: 14px;*/
    font-size: clamp(11px,1vw,13px); /*20230106 toda*/
    height: 65px;
    padding: 24px 0;
    box-sizing: border-box;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    transition: 0.15s;
    margin-left: 18px;
    padding-right: 18px; /*20221128 toda add*/
}

.list-title a {
    padding-left: 15%; /*20221128 toda 40px→15%*/

}


.list-title.active {
    /* アクティブなメニューを白色にする */
    background-color: #FFF;
}

.list-title.active .list-border {
    border-bottom: none;
}

.list-title:hover {
   /* ホバーした時の変化 */
   background-color: #FFF;
   opacity: 0.5;
}

.manual .manual-tag {
    display: block;
    font-size: 10px;
    cursor: pointer;
}
/* ======================================================================================================================================================== */
/* ====================================================タイトルのスタイル ===================================================================================*/
.headline {
    width: 100%;
    justify-content: flex-start;
}

.title {
    text-align: left;
    font-size: 40px;
    font-family: Noto Sans Jp, Medium;
    letter-spacing: 0px;
    color: #3E4E6A;
    opacity: 1;
}

.headline .title {
    position: relative;
    margin-top: 0px;
    margin-bottom: 0px;
    width: 100%;
    z-index: 2;
    display: inline-block;
    display: inline-block;
    width: fit-content;
}

/* ======================================================================================================================================================*/
/* ==================================================== 遷移ボタンのスタイル============================================================================== */
.headline-item button {
    background: none;
    border: none;
    font-size: clamp(0.9rem,1vw,1rem); /*20221109 toda 1rem → clamp(
    */
    font-family: Noto Sans JP Regular;
    vertical-align: middle;
    cursor: pointer;
    display: inline-block;
    width: 100%;
    height: 100%;
    border: 2px solid #e8e8e8;
    border-left: none;
    border-radius: 0px 10px 10px 0px;
    color: #3E4E6A
}

.headline-button {
    display: flex;
    width: 100%;
    justify-content: space-between;
    border-bottom: 2px solid #e0e0e0;
    cursor: pointer;
}

.headline-item {
    color: #505050;
    height: 50px;
    width: 100%;
    max-width: 190px;
    margin-top: 10px;
    border-radius: 10px;
    margin-left: 20px;
    background-color: #FFF;
    border: none;
    text-align: center;
    box-sizing: border-box;
    cursor: pointer;
    box-shadow: 0px 3px 6px #00000029;
    color: #3E4E6A;
}

.headline-button .headline-item{
    min-width:130px;
}

    .headline-item a {
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .headline-item:hover {
        background-color: #f3f3f3;
        border-radius: 10px;
    }

.headline-item-icon img {
    display: inline;
    width: 22px;
    height: 22px;
    margin-top: 12px;
}

.headline-item-icon {
    display: inline-block;
    background-color: #69B5D5;
    height: 100%;
    width: 30%;
    border-radius: 10px 0px 0px 10px;
}

.yosanicon {
    stroke: #fff;
    fill: #fff;
    width: 26px;
    height: 26px;
    outline: none;
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-top: 10px;
}

.pdf-out .svg-icon {
    fill: #fff;
    margin-top: 12px;
}

.pdf-out .headline-item-icon {
    background-color: #E86560;
}

.headline-item.close {
    display: none;
}

/* ======================================================================================================== */

/*==================================================== 検索ボタンのスタイル ==================================*/
.search-button-wrap {
    display: inline-block;
    margin-bottom: 20px;
    padding-top: 29px;
}

.search-button-wrap .search-button{
    display:inline-block;
    margin-bottom:0;
}
.search-button {
    width: 100px;
    height: 40px;
    background: #8ED35E 0% 0% no-repeat padding-box;
    border-radius: 5px;
    opacity: 1;
    font-weight: bolder;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    line-height: 32px;
    margin-top: auto;
    margin-bottom: 20px;
    line-height: 40px;
}

    .search-button a {
        color: #fff;
        font-weight: 100;
    }

    .search-button:hover {
        background-color: rgba(142, 211, 94, 0.7);
    }

/* ======================================================================================================== */

/* タブのスタイル */
.list-tab {
    width: 100%;
    display: flex;
    margin-bottom: 0px;
    margin-top: 0px;
    padding-left: 0;
}

    .list-tab li {
        display: block;
        list-style-type: none;
        width: 30%;
        min-width: 120px; /*20220106 toda*/
        max-width: 200px;
        height: 62px;
        line-height: 65px;
        text-align: center;
        margin-top: 30px;
        margin-right: -2px;
        border: 2px solid #E0E0E0;
        margin-bottom: -2px;
        font-size: clamp(14px ,1vw , 18px); /*20221109 toda 18px →clamp*/
        color: #505050;
        cursor: pointer;
        background: #F3f3f3;
        position: relative;
    }

        /* アクティブなタブ */
        .list-tab li.tab-active {
            border-bottom: none;
            background-color: #FFF;
        }

    /* アクティブなタブの上の線 */
    .list-tab .tab-edit.tab-active:before {
        content: "";
        display: inline-block;
        width: calc(100% + 3px);
        /*100+ボーダー分*/
        height: 8px;
        background-color: #E86560;
        position: absolute;
        top: -2px;
        right: -1px;
        z-index: 100;
    }

    .list-tab .tab-search.tab-active:before {
        content: "";
        display: inline-block;
        width: calc(100% + 3px);
        /*100+ボーダー分*/
        height: 8px;
        background-color: #69B5D5;
        position: absolute;
        top: -2px;
        left: -1px;
    }

    .list-tab li:not(.tab-active):hover {
        background-color: #e0e0e0;
    }

/* ============================================================================================================================================================ */

/* アコーディオンを閉じる */
.content-area.close,
.meisai-area.close {
    display: none;
}

.table-cmb .close {
    display: none;
}

.content-wrap {
    display: none;
}

    /* アクティブな画面を表示する */
    .content-wrap.content-active {
        display: block;
    }

/* ====================================================ライブラリ関係==================================================== */
/* flatpickrの色変更 */
/* 日曜日：赤 */
.flatpickr-calendar .flatpickr-innerContainer .flatpickr-weekdays .flatpickr-weekday:nth-child(7n + 1),
.flatpickr-calendar .flatpickr-innerContainer .flatpickr-days .flatpickr-day:not(.flatpickr-disabled):not(.prevMonthDay):not(.nextMonthDay):nth-child(7n + 1) {
    color: red;
}

/* 土曜日：青 */
.flatpickr-calendar .flatpickr-innerContainer .flatpickr-weekdays .flatpickr-weekday:nth-child(7),
.flatpickr-calendar .flatpickr-innerContainer .flatpickr-days .flatpickr-day:not(.flatpickr-disabled):not(.prevMonthDay):not(.nextMonthDay):nth-child(7n) {
    color: blue;
}

/* アラートボタンのフォーカス消す */
.swal2-popup .swal2-styled:focus {
    box-shadow: none !important;
}

/* アラートボタンの配置 */
.swal2-actions {
    justify-content: space-around !important;
}

/* アラートボタンのサイズ */
.swal2-styled {
    width: 153px !important;
}

/* アラート×ボタンのサイズ ・色*/
.swal2-close {
    font-size: 1.8em !important;
}

    .swal2-close:hover {
        color: #FBFF90 !important;
    }

.swal2-styled.swal2-confirm {
    color: #505050 !important;
}

.swal2-content {
    text-align: left !important;
}

/* ====================================================================================================================== */

/* 入力フォームのエリア */
.detail-area {
    width: 100%;
    /* */
}

.detail-title {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 60px;
}

.detail-area .title {
    margin-left: 40px;
    font-size: 25px;
    display: inline-block;
}

.detail-title p {
    cursor: pointer;
    display: inline-block;
    color: #1E4682;
    vertical-align: middle;
}

.icon-font {
    padding-right: 10px;
    padding-top: 2px;
}

    .icon-font i {
        font-size: 1em;
    }

.detail-label {
    display: flex;
}

.detail-text {
    display: flex;
    margin-top: 8px;
}

.detail-label a {
    color: #437DD3;
    text-decoration: underline;
    font-size: 15px;
    margin-left: -20px;
}

.content-area {
    display: flex;
    justify-content: space-between;
    vertical-align: bottom;
}

.detail-form {
    width: 80%;
}

.detail-item {
    display: inline-block;
    margin-right: 40px;
    margin-bottom: 20px;
    font-size: 0;
}

.detail-item span {
    font-size: 16px;
    color: #3E4E6A;
}

.detail-item p {
    font-size: 16px;
    color: #3E4E6A;
}

.modal-search-condition{
    width: 40%;
}

/* 登録・新規作成ボタン */
.regist-btn {
    position: fixed;
    bottom: 30px;
    right: 5%;
    width: 10%;
    max-width: 190px;
    height: 50px;
    box-sizing: border-box;
    background: #FBFF90 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 10px;
    opacity: 1;
    text-align: center;
    cursor: pointer;
    padding-top: 10px;
    line-height: 30px;
    color: #505050;
}

    .regist-btn button {
        background: none;
        border: none;
        font-size: clamp(14px,1vw,20px);  /*20221108 TODA 20px→clamp(14px 1vw 20px)*/
        margin: auto;
        vertical-align: middle;
        cursor: pointer;
        color: #505050
    }

    .regist-btn:hover:after {
        content: "";
        position: absolute;
        background-color: rgba(255, 255, 255, 0.4);
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border-radius: 10px;
    }

/* ページの高さが無い場合はスクロールバー内に配置する */
.regist-btn-top {
    right: 4.5%;
}

/* トグルボタン */
.toggle-input {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.toggle-label {
    width: 60px;
    height: 30px;
    background: #ccc;
    position: relative;
    display: inline-block;
    border-radius: 40px;
    transition: 0.4s;
    box-sizing: border-box;
    padding: auto;
    left: 17px;
    top: 10px;
}

    .toggle-label:after {
        content: "";
        position: absolute;
        width: 30px;
        height: 30px;
        border-radius: 100%;
        left: 0;
        top: 0;
        z-index: 2;
        background: #fff;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
        transition: 0.3s;
    }

.toggle-input:checked + .toggle-label {
    background-color: #4BD865;
}

    .toggle-input:checked + .toggle-label:after {
        left: 30px;
    }

.toggle-switch {
    position: relative;
    width: 75px;
    height: 42px;
}

.td-switch > div {
    display: flex;
    padding: 0 auto;
    margin: 0 10px;
}

    .td-switch > div > label {
        line-height: 42px;
    }


/* ====================================================テーブルの設定==================================================== */
table {
    border-collapse: collapse;
    border: 1px solid #BEBEBE;
}

    table th {
        border: 1px solid #BEBEBE;
        background-color: #F3F3F3;
        height: 40px;
    }

    table td {
        border: 1px solid #BEBEBE;
        height: 40px;
    }

.icon, .icon-header {
    width: 50px;
    border-right: none;
    text-align: center;
}

    .icon:nth-child(2), .icon-header:nth-child(2),
    .icon:nth-child(3), .icon-header:nth-child(3) {
        border-left: none;
    }

    .icon i {
        font-size: 20px;
        margin: 10px;
        cursor: pointer;
    }

/* テーブル内のテキストボックス */
.table-text {
    color: #505050;
    border: none;
    height: 37px;
    width: 100%;
    font-size: 16px;
    font-family: Noto Sans JP regular;
    background-color: inherit;
}

    .table-text:focus {
        outline: none;
    }

/* アイコンのキャプション */
.caption {
    z-index: 1000;
    position: absolute;
    left: 30px;
    top: 6px;
    color: #fff;
    background-color: rgba(100, 100, 100, 0.9);
    padding: 10px;
    font-size: 12px;
    width: 100px;
    line-height: 8px;
    text-align: center;
    border-radius: 20px;
    margin: 0;
    height: 30px;
}

.table-cmb .caption {
    left: 20px;
    top: 0;
    width: 120px;
}

/* 大サイズ */
.caption-large {
    width: 600%;
    height: 100px;
    top: -50%;
    text-align: left;
    line-height: 18px;
}



/* テーブルのアイコン*/
.icon {
    position: relative;
}

.add {
    cursor: pointer;
    color: #6a94d3;
}

.edit {
    cursor: pointer;
    color: #6a94d3;
    font-weight: 200;
}

.copy {
    cursor: pointer;
    color: #5fad63;
    font-weight: 200;
}

.delete {
    cursor: pointer;
    color: #cf5850;
    font-weight: 200;
}

/*20220805 shimada デザイン用クラス作成（add~delete）*/
.add-icon {
    cursor: pointer;
    color: #6a94d3;
}

.edit-icon {
    cursor: pointer;
    color: #6a94d3;
    font-weight: 200;
}

.copy-icon {
    cursor: pointer;
    color: #5fad63;
    font-weight: 200;
}

.delete-icon {
    cursor: pointer;
    color: #cf5850;
    font-weight: 200;
}

.add,
.edit,
.copy,
.delete,
.add-icon,
.edit-icon,
.copy-icon,
.delete-icon {
    font-size: 20px;
}

/* アイコンを細く */
.fa-lighter {
    -webkit-text-stroke: 1px #fff;
}

.inactive .fa-lighter {
    -webkit-text-stroke: 1px #F3F3f3;
}

/* 非活性のアイコングレーにする */
.icon-disable {
    color: #CCC;
    cursor: default !important;
}

/* テーブルの幅 */

.table-medium {
    min-width: 170px;
}

.table-short {
    min-width: 90px;
    height: 40px;
}

.table-long {
    min-width: 220px;
}

.table-verylong {
    min-width: 320px;
}

.table-code {
    width: 6%;
    min-width: 90px;
}

/* ?マークの配置 */
.header-inner {
    display: inline-block;
    position: relative;
    width: fit-content;
    padding: 0 30px;
}

/* ？マーク */
.question {
    font-size: 14px;
    cursor: pointer;
    display: inline-block;
    color: #437DD3;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    border: 1px solid #437DD3;
    line-height: 17px;
    position: absolute;
    right: 4px;
    top: 2px;
    padding-right: 1px;
    padding-top: 1px;
    text-align: center;
}

    .question i {
        -webkit-text-stroke: 1px #f0f0f0;
    }

/*==================================================== 検索結果テーブル==================================================== */
.search-wrap .search-result {
    margin-top: 20px;
    width: 100%;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

.search-result-table {
    border-collapse: collapse;
    width: 100%;
    font-size: clamp(0.7rem, 1vw, 1rem);
    word-break:break-all;
    /*table-layout:fixed;*/ /*20221110 toda*/
}

/* ======================================================================================================================= */
/* ======================================================================================================================= */
/* モーダル */

.modal-area {
    z-index: 1000;
}

.black-background {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 120%;
    background-color: rgba(0, 0, 0, .7);
    cursor: pointer;
    z-index: 999;
}

.modal-item {
    width: 50%;
    position: fixed;
    left: 25%;
    top: 10%;
    background: #fff;
    display: none;
    font-size: 1rem;
    /* height: 550px; */
}

.modal-area.modal-active {
    display: block;
}

.modal-inner {
    position: relative;
    background: #fff;
    z-index: 1000;
    border: 1px solid #aaaaaa;
    padding: 30px 0 30px;
}

.modal-search {
    width: 90%;
    display: flex;
    margin: 0 auto 30px;
}

.modal-kouji .detail-item {
    width: 30%;
}

.modal-area-mitumori .modal-search {
    width: 90%;
    margin: 0 auto;
}

#modal-area-password .modal-search {
    width: 90%;
    display: block;
    margin: 0 auto 30px;
}
/* 検索ボタン */
.modal-search .search-button {
    flex-shrink: 0;
    width: 100px;
    height: 40px;
    background: #8ED35E 0% 0% no-repeat padding-box;
    border-radius: 5px;
    opacity: 1;
    font-weight: bolder;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    line-height: 32px;
    margin-bottom: 20px;
    line-height: 40px;
    display: inline-block;
}

    .modal-search .search-button:hover {
        background-color: rgba(142, 211, 94, 0.7);
    }

.search-button a {
    color: #fff;
}

/* 検索結果 */
.modal-area .search-result {
    max-height: 300px;
    overflow-y: auto;
    width: 90%;
    margin: 0 auto 30px;
}

.modal-list.search-result-table th {
    width: 30%;
}

.modal-list.search-result-table .construction-name {
    width: 50%;
}

.modal-tr {
    text-align: center;
}

    .modal-tr td {
        min-width: 50px;
        cursor: pointer;
        text-align: left;
        padding-left: 10px;
    }

    .modal-tr.selected td {
        background-color: #FBFF90;
    }
/* 登録・クリアボタン */
.modal-btn {
    display: flex;
    justify-content: center;
}

.button-enter, .button-close {
    background-color: #FBFF90;
    color: #505050;
    border-radius: 5px;
    height: 42px;
    text-decoration: none;
    text-align: center;
    line-height: 40px;
    display: inline-block;
    margin-right: 100px;
    width: 100px;
    position: relative;
    box-shadow: 0px 3px 6px #00000029;
}

.button-close {
    margin-right: 0;
}

    .button-enter:hover:after, .button-close:hover:after {
        content: "";
        position: absolute;
        background-color: rgba(255, 255, 255, 0.4);
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border-radius: 10px;
    }

.button-clear {
    background-color: #aaa;
    color: #Fff;
    border-radius: 5px;
    height: 40px;
    text-decoration: none;
    text-align: center;
    line-height: 40px;
    display: inline-block;
    width: 100px;
    position: relative;
    box-shadow: 0px 3px 6px #00000029;
}

.button-clear:hover:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(255,255,255,0.3);
}


/* コメント用モーダル */
.modal-item.modal-comment {
    width: 52%;
    left: 28%;
    top: 35%;
    height: 170px;
}

.modal-comment .comment-area {
    color: #505050;
    font-size: clamp(0.9em, 1vw, 1.2em);
    width: 90%;
    margin: 0 auto;
}

.modal-comment .button-enter {
    margin-right: 0;
    margin-top: 20px;
}

.modal-comment .modal-inner {
    height: auto;
    padding: 0 10px;
}


.modal-comment .modal-btn {
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

/* 設定イメージ用モーダル */
.modal-area.modal-settingImage {
    width: 80%;
    left: 11%;
    height: 90%;
    top: 5%;
    padding: 10px;
}

/* 削除ボタンが押されたときの背景色 （明細表）*/
.deleteClick td {
    background-color: #F4ADAD !important;
}

.deleteClick input {
    background-color: transparent !important;
}

.deleteClick .fa-lighter {
    -webkit-text-stroke: 1px #F4ADAD !important;
}

/* 閉じる×ボタン */
.js-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}

    .js-modal-close::before {
        transform: translate(-50%,-50%) rotate(45deg);
    }

    .js-modal-close::after {
        transform: translate(-50%,-50%) rotate(-45deg);
    }

.hissu {
    position: absolute;
    right: 10px;
    color: rgba(202, 0, 0) !important;
    font-family: "Noto Sans JP", sans-serif;
    margin:0 !important; 
}

/*バリデーションメッセージ*/
.text-danger {
    color: rgba(202, 0, 0) !important;
    display: inline-block;
}

/*==================================================== ツールチップ ==================================================== */
.tooltip { /* 補足説明するテキストのスタイル */
    position: relative;
    cursor: pointer;
    /*padding: 0 5px;*/
    font-size: 0.9em;
    color: #F4ADAD;
}

    .tooltip:hover .description_top { /* マウスオーバー時のスタイル */
        bottom: 100%; /* Y軸の位置 */
        visibility: visible; /* ツールチップを表示 */
        opacity: 1; /* 不透明度を100％に */
    }

    .tooltip .description_top { /* ツールチップのスタイル */
        width: auto; /* 横幅 */
        min-width: 250px;
        position: absolute;
        left: 200px;
        bottom: 80%; /* Y軸の位置 */
        transform: translateX(-50%);
        margin-bottom: 20px; /* テキストとの距離 */
        padding: 8px;
        border-radius: 10px; /* 角の丸み */
        background-color: #ffffff;
        font-size: 15px;
        color: #ef3333;
        text-align: center;
        visibility: hidden; /* ツールチップを非表示に */
        opacity: 0; /* 不透明度を0％に */
        z-index: 1;
        transition: 0.5s all; /* マウスオーバー時のアニメーション速度 */
        border-block-color: #F4ADAD;
        border: solid 0.5px #ccc;
    }

.error-text {
    background-color: #F4ADAD !important;
}

/*検索画面用　クリアボタン*/
.button-search-clear {
    background-color: #aaa;
    border-radius: 5px;
    height: 40px;
    text-decoration: none;
    text-align: center;
    line-height: 40px;
    display: inline-block;
    width: 100px;
    position: relative;
    box-shadow: 0px 3px 6px #00000029;
}

/*クリック・タッチの無効化*/
.click-none {
    pointer-events: none;
}

.modal-search form{
    width: 100%;
}

@media screen and (max-width: 932px){

    .modal-inner {
        overflow: scroll !important;
        height: 340px !important;
    }
} 