@import url(https://fonts.googleapis.com/icon?family=Material+Icons);

body {
    font-size: 14px;
    line-height: 1.5;
    font-family: "Noto Sans JP";
}

a {
    transition: 0.3s;
}

a:hover {
    opacity: 0.7;
}

#menu_admin,
#menu_staff,
#menu_user {
    width: 250px;
    background: rgb(26, 138, 10);
    background: linear-gradient(300deg,
            rgb(26, 138, 10) 0%,
            rgb(22, 99, 12) 100%);
}

footer {
    background: #e5f2e4;
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    height: 60px;
    padding-right: 10px;
}

footer address {
    max-width: 250px;
}

footer address img {
    width: 100%;
}

.contents_wrap {
    display: flex;
    align-items: stretch;
}

.contents_wrap.center main {
    margin: 0 auto;
    width: fit-content;
    padding: 30px 40px;
}

.register-complete {
    width: 700px;
    margin: 70px auto 100px;
}

.register-complete p {
    text-align: center;
    margin-bottom: 100px;
}

.register-complete a {
    display: block;
    width: 200px;
    text-align: center;
    padding: 12px 0;
    font-weight: bold;
    margin: 0 auto;
}

.contents_wrap_nav {
    width: 100%;
    display: block;
    position: relative;
    padding-bottom: 80px;
}

.contents_wrap_nav h2 {
    background: #e5f2e4;
    padding: 7px 0;
    width: 80%;
    margin: 23px auto 20px;
    text-align: center;
    border-radius: 80px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contents_wrap_nav_single {
    padding: 1em;
    display: block;
    color: #fff;
    border-bottom: 1px solid #e5f2e4;
    transition: 0.3s;
}

.contents_wrap_nav_single:hover {
    background: #162c13;
}

.contents_wrap_nav .contents_wrap_nav_tree li {
    padding: 1em;
    display: block;
    color: #fff;
    border-bottom: 1px solid #26551f;
    transition: 0.3s;
}

.contents_wrap_nav .contents_wrap_nav_tree li:hover {
    background: #162c13;
}

.contents_wrap_nav_label {
    padding: 1em;
    display: block;
    color: #fff;
    border-bottom: 1px solid #e5f2e4;
    transition: 0.3s;
}

.contents_wrap_nav_label::after {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 3px);
    right: 20px;
    transform: rotate(135deg);
}

.contents_wrap_nav_label:hover {
    background: #26551f;
}

.contents_wrap_nav_tree {
    height: 0;
    overflow: hidden;
}

.contents_wrap_nav_label,
.contents_wrap_nav_tree {
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
}

.contents_wrap_main {
    width: calc(100% - 250px);
    position: relative;
}

.contents_wrap_main::after {
    content: "";
    background: rgb(16, 20, 16);
    background: linear-gradient(270deg,
            rgba(16, 20, 16, 0.2469362745) 0%,
            rgba(255, 255, 255, 0) 100%);
    display: block;
    width: 5px;
    height: calc(100% - 70px);
    position: absolute;
    left: -5px;
    top: 70px;
}

.contents_wrap_main_inner {
    padding: 30px 40px;
}

h1 {
    width: 100%;
    height: 70px;
    background: #e5f2e4;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1>img {
    display: block;
    width: 80%;
    max-width: 200px;
}

.toggle {
    display: none;
}

.toggle:checked+.contents_wrap_nav_label+.contents_wrap_nav_tree {
    height: auto;
    transition: all 0.3s;
    background: #1f3f1a;
}

.toggle:checked+.contents_wrap_nav_label::after {
    transform: rotate(-45deg) !important;
}

.toggle:checked+.contents_wrap_nav_label {
    background: #26551f;
}

.detail_btn_logout {
    background: #26551f;
    color: white;
    padding: 7px 20px 7px 20px;
    border-radius: 6px;
    font-weight: bold;
    position: relative;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.detail_btn_logout::before {
    content: "\e9ba";
    font-family: Material Icons;
    margin-right: 12px;
    font-weight: normal;
    font-size: 20px;
}

.detail_btn_logout:hover {
    background: #4b4b4b;
}

.detail_btn_01 {
    background: #19840a;
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
}

.detail_btn_01.list-download {
    width: fit-content !important;
    margin-left: 30px;
}

.detail_btn_01:hover {
    cursor: pointer;
}

.detail_btn_new_entry {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    margin-right: 15px;
}

.detail_btn_new_entry::before {
    content: "\e145";
    font-family: "Material Icons";
    font-size: 20px;
    margin-right: 5px;
}

.detail_btn_new_entry:hover {
    cursor: pointer;
}

.detail_btn_preview {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 130px;
}

.detail_btn_preview::before {
    content: "\f1c5";
    font-family: "Material Icons";
    font-size: 20px;
    margin-right: 5px;
}

.detail_btn_preview:hover {
    cursor: pointer;
}

.detail_btn_download {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
}

.detail_btn_download::before {
    content: "\f090";
    font-family: "Material Icons";
    font-size: 20px;
    margin-right: 5px;
}

.detail_btn_download:hover {
    cursor: pointer;
}

.detail_btn_upload {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
}

.detail_btn_upload::before {
    content: "\f09b";
    font-family: "Material Icons";
    font-size: 20px;
    margin-right: 5px;
}

.detail_btn_upload:hover {
    cursor: pointer;
}

.detail_btn_green {
    background: #19840a;
    padding: 5px;
    border-radius: 6px;
    color: white !important;
    transition: 0.3s;
    text-decoration: none !important;
}

.detail_btn_green.big {
    display: block;
    padding: 15px 0;
    margin: 50px auto 30px;
    text-align: center;
    width: 300px;
}

.detail_btn_green:hover {
    opacity: 0.8;
    cursor: pointer;
}

.detail_btn_orange {
    background: #f68514;
    padding: 5px;
    border-radius: 6px;
    color: white;
    transition: 0.3s;
}

.detail_btn_orange:hover {
    opacity: 0.8;
    cursor: pointer;
}

.detail_btn_green2 {
    background: #26551f;
    padding: 5px;
    border-radius: 6px;
    color: white;
    transition: 0.3s;
}

.detail_btn_green2:hover {
    opacity: 0.8;
    cursor: pointer;
}

.detail_btn_green3 {
    background: #56a23c;
    color: white;
    transition: 0.3s;
    padding: 0 15px;
    border-radius: 6px;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 10px;
    display: flex;
    align-items: center;
}

.detail_btn_green3:hover {
    opacity: 0.8;
    cursor: pointer;
}

.detail_btn_gray {
    background: #4b4b4b;
    padding: 5px;
    border-radius: 6px;
    color: white;
    transition: 0.3s;
}

.detail_btn_gray:hover {
    opacity: 0.8;
    cursor: pointer;
}

.detail_btn_gray2 {
    background: #bcbcbc;
    padding: 5px;
    border-radius: 6px;
    color: white;
    transition: 0.3s;
}

.detail_btn_gray2:hover {
    opacity: 0.8;
    cursor: pointer;
}

.detail_btn_edit {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.detail_btn_edit:hover {
    opacity: 0.8;
    cursor: pointer;
}

.detail_btn_edit::before {
    content: "\e3c9";
    font-family: "Material Icons";
    margin-right: 2px;
    font-size: 12px;
}

.detail_btn_copy {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.detail_btn_copy::before {
    content: "\e14d";
    font-family: "Material Icons";
    margin-right: 2px;
    font-size: 12px;
}

.detail_btn_delete {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33px;
}

.detail_btn_delete .material-symbols-outlined {
    font-size: 24px !important;
}

.detail_btn_syo {
    display: flex;
    align-items: center;
    margin-right: 5px;
}

.detail_btn_syo::before {
    content: "\f009";
    font-family: "Material Icons";
    font-size: 16px;
    margin-right: 2px;
}

.detail_btn_gray3 {
    display: block;
    background: #4b4b4b;
    color: white;
    padding: 10px 0;
    width: 160px;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 10px;
}

.detail_btn_gray3:hover {
    cursor: pointer;
}

.detail_btn_cad2d {
    background: #88af67;
    width: 100%;
    color: white;
    margin: 3px 0;
    padding: 15px 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.detail_btn_cad2d::before {
    content: "\f090";
    font-family: "Material Icons";
    font-size: 20px;
    display: block;
    margin-right: 8px;
}

.detail_btn_cad2d:hover {
    opacity: 0.8;
    cursor: pointer;
}

.detail_btn_cad3d {
    background: #26551f;
    width: 100%;
    color: white;
    margin: 3px 0;
    padding: 15px 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.detail_btn_cad3d::before {
    content: "\f090";
    font-family: "Material Icons";
    font-size: 20px;
    display: block;
    margin-right: 8px;
}

.detail_btn_cad3d:hover {
    opacity: 0.8;
    cursor: pointer;
}

.detail_btn_catalog {
    background: #f68514;
    width: 100%;
    color: white;
    margin: 3px 0;
    padding: 15px 15px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.detail_btn_catalog::before {
    content: "\f090";
    font-family: "Material Icons";
    font-size: 20px;
    display: block;
    margin-right: 8px;
}

.detail_btn_catalog:hover {
    opacity: 0.8;
    cursor: pointer;
}

.detail_title_01 {
    border-left: 7px solid #26551f;
    font-size: 20px;
    padding: 5px 0 5px 15px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #26551f;
}

.detail_title_02 {
    border-bottom: 1px solid #19840a;
    color: #26551f;
    margin-bottom: 15px;
    font-weight: bold;
}

.detail_title_03 {
    background: #e5f2e4;
    color: #19840a;
    font-weight: bold;
    padding: 10px 20px;
    margin-bottom: 20px;
    margin-top: 40px;
}

.detail_title_04 {
    color: #26551f;
    font-weight: bold;
    margin: 30px 0 0;
}

.detail_title_05 {
    font-size: 24px;
    font-weight: bold;
    color: #26551f;
    letter-spacing: 0.05rem;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 30px;
}

.detail_title_05+p {
    text-align: center;
    margin-bottom: 70px;
}

.detail_input_text {
    border: 1px solid #ccc;
    border-radius: 6px;
    background: white;
    padding: 8px 10px;
}

.detail_input_text:focus {
    outline: 1px solid #19840a;
}

.detail_input_textarea {
    border: 1px solid #ccc;
    border-radius: 6px;
    background: white;
    padding: 8px 10px;
    height: 80px;
}

.detail_input_select {
    width: 100%;
    position: relative;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: white;
}

.detail_input_select>select {
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
}

.detail_input_select>select:focus {
    outline: 1px solid #19840a;
}

.detail_input_select::after {
    content: "\e5cf";
    font-family: "Material Icons";
    color: #26551f;
    font-size: 20px;
    position: absolute;
    top: 17%;
    right: 10px;
}

.detail_input_check {
    border: 1px solid #d8d8d8;
    background: white;
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    position: relative;
    margin-right: 7px;
}

.detail_input_check:checked:before {
    position: absolute;
    top: 3px;
    left: 6px;
    transform: rotate(50deg);
    width: 6px;
    height: 10px;
    border-right: 2px solid #19840a;
    border-bottom: 2px solid #19840a;
    content: "";
}

.detail_input_radio {
    display: flex;
    margin-right: 20px;
}

.detail_input_radio input {
    border: 1px solid #d8d8d8;
    background: white;
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    position: relative;
    margin-right: 7px;
    margin-right: 7px;
}

.detail_input_radio input:checked:before {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
    background: #19840a;
    border-radius: 50px;
    content: "";
}

.detail_table_showcase .showcase-link {
    max-width: 260px;
    word-wrap: break-word;
}

.detail_table_showcase .showcase-note {
    white-space: pre-wrap;
    max-width: 583px;
    word-wrap: break-word;
}

.detail_table_cad,
.detail_table_download,
.detail_table_stafflist,
.detail_table_user,
.detail_table_showcase,
.detail_table_sales,
.detail_table_download2 {
    width: 100%;
    border-left: 1px solid #d8d8d8;
    border-right: 1px solid #d8d8d8;
    border-top: 1px solid #d8d8d8;
}

.detail_table_cad th,
.detail_table_download th,
.detail_table_stafflist th,
.detail_table_user th,
.detail_table_showcase th,
.detail_table_sales th,
.detail_table_download2 th {
    background: #e5f2e4;
    height: 35px;
    padding: 0 10px;
    vertical-align: middle;
    border-right: 1px solid #d8d8d8;
    border-bottom: 1px solid #26551f;
}

.detail_table_cad th:last-child,
.detail_table_download th:last-child,
.detail_table_stafflist th:last-child,
.detail_table_user th:last-child,
.detail_table_showcase th:last-child,
.detail_table_sales th:last-child,
.detail_table_download2 th:last-child {
    border-right: none;
}

.detail_table_cad th:nth-last-child(2),
.detail_table_download th:nth-last-child(2),
.detail_table_stafflist th:nth-last-child(2),
.detail_table_user th:nth-last-child(2),
.detail_table_showcase th:nth-last-child(2),
.detail_table_sales th:nth-last-child(2),
.detail_table_download2 th:nth-last-child(2) {
    border-right: none;
}

.detail_table_cad td,
.detail_table_download td,
.detail_table_stafflist td,
.detail_table_user td,
.detail_table_showcase td,
.detail_table_sales td,
.detail_table_download2 td {
    padding: 10px 10px;
    vertical-align: middle;
    border-right: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
}

.detail_table_cad td:last-child,
.detail_table_download td:last-child,
.detail_table_stafflist td:last-child,
.detail_table_user td:last-child,
.detail_table_showcase td:last-child,
.detail_table_sales td:last-child,
.detail_table_download2 td:last-child {
    border-right: none;
}

.detail_table_cad td:nth-last-child(2),
.detail_table_download td:nth-last-child(2),
.detail_table_stafflist td:nth-last-child(2),
.detail_table_user td:nth-last-child(2),
.detail_table_showcase td:nth-last-child(2),
.detail_table_sales td:nth-last-child(2),
.detail_table_download2 td:nth-last-child(2) {
    border-right: none;
}

.detail_table_cad td:last-child,
.detail_table_download td:last-child,
.detail_table_stafflist td:last-child,
.detail_table_user td:last-child,
.detail_table_showcase td:last-child,
.detail_table_sales td:last-child,
.detail_table_download2 td:last-child {
    background: #f1f1f1;
}

.detail_table_cad td .flex .detail_btn_edit,
.detail_table_download td .flex .detail_btn_edit,
.detail_table_stafflist td .flex .detail_btn_edit,
.detail_table_user td .flex .detail_btn_edit,
.detail_table_showcase td .flex .detail_btn_edit,
.detail_table_sales td .flex .detail_btn_edit,
.detail_table_download2 td .flex .detail_btn_edit {
    margin-right: 5px;
}

.detail_table_cad td .flex .detail_btn_copy,
.detail_table_download td .flex .detail_btn_copy,
.detail_table_stafflist td .flex .detail_btn_copy,
.detail_table_user td .flex .detail_btn_copy,
.detail_table_showcase td .flex .detail_btn_copy,
.detail_table_sales td .flex .detail_btn_copy,
.detail_table_download2 td .flex .detail_btn_copy {
    margin-right: 5px;
}

.detail_table_cad_vision_off,
.detail_table_cad_vision_on,
.detail_table_download_vision_off,
.detail_table_download_vision_on,
.detail_table_stafflist_vision_off,
.detail_table_stafflist_vision_on,
.detail_table_user_vision_off,
.detail_table_user_vision_on,
.detail_table_showcase_vision_off,
.detail_table_showcase_vision_on,
.detail_table_sales_vision_off,
.detail_table_sales_vision_on,
.detail_table_download2_vision_off,
.detail_table_download2_vision_on {
    text-align: center;
    vertical-align: middle;
}

.detail_table_cad_vision_off>span,
.detail_table_cad_vision_on>span,
.detail_table_download_vision_off>span,
.detail_table_download_vision_on>span,
.detail_table_stafflist_vision_off>span,
.detail_table_stafflist_vision_on>span,
.detail_table_user_vision_off>span,
.detail_table_user_vision_on>span,
.detail_table_showcase_vision_off>span,
.detail_table_showcase_vision_on>span,
.detail_table_sales_vision_off>span,
.detail_table_sales_vision_on>span,
.detail_table_download2_vision_off>span,
.detail_table_download2_vision_on>span {
    font-size: 18px;
}

.detail_table_cad_vision_off,
.detail_table_download_vision_off,
.detail_table_stafflist_vision_off,
.detail_table_user_vision_off,
.detail_table_showcase_vision_off,
.detail_table_sales_vision_off,
.detail_table_download2_vision_off {
    color: #999;
}

.detail_table_cad_vision_on,
.detail_table_download_vision_on,
.detail_table_stafflist_vision_on,
.detail_table_user_vision_on,
.detail_table_showcase_vision_on,
.detail_table_sales_vision_on,
.detail_table_download2_vision_on {
    color: #f57575;
    font-weight: bold;
}

.detail_table_download td,
.detail_table_user td {
    padding: 0 0;
}

.detail_table_download td .detail_btn_syousai,
.detail_table_download td .detail_btn_saisoushin,
.detail_table_user td .detail_btn_syousai,
.detail_table_user td .detail_btn_saisoushin {
    width: 90%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 px 10px;
    margin: 2px auto;
}

.detail_table_download td .detail_btn_syousai::before,
.detail_table_download td .detail_btn_saisoushin::before,
.detail_table_user td .detail_btn_syousai::before,
.detail_table_user td .detail_btn_saisoushin::before {
    content: "";
    font-size: 20px;
    margin-right: 5px;
}

.detail_table_download td .detail_btn_syousai,
.detail_table_user td .detail_btn_syousai {
    margin-bottom: 3px;
}

.detail_table_download td .detail_btn_syousai::before,
.detail_table_user td .detail_btn_syousai::before {
    content: "\f009";
    font-family: "Material Icons";
}

.detail_table_download td .detail_btn_saisoushin::before,
.detail_table_user td .detail_btn_saisoushin::before {
    content: "\f0d2";
    font-family: "Material Icons";
}

.detail_table_download .pick_red,
.detail_table_user .pick_red {
    background: rgba(255, 0, 0, 0.078);
}

.detail_table_download .dl_download_genre,
.detail_table_user .dl_download_genre {
    width: 100%;
    color: white;
    padding: 8.5px 5px;
}

.detail_table_download .dl_download_genre.cad_2d,
.detail_table_user .dl_download_genre.cad_2d {
    background: #88af67;
}

.detail_table_download .dl_download_genre.cad_3d,
.detail_table_user .dl_download_genre.cad_3d {
    background: #56a23c;
}

.detail_table_download .dl_download_genre.catalog,
.detail_table_user .dl_download_genre.catalog {
    background: #f68514;
}

.detail_table_download .dl_download_data,
.detail_table_user .dl_download_data {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 8.5px 5px;
}

.detail_table_download .dl_download_border_no,
.detail_table_user .dl_download_border_no {
    width: 100%;
    padding: 5px;
    border-bottom: 1px dotted #d8d8d8;
}

.detail_table_download .dl_download_border_product,
.detail_table_user .dl_download_border_product {
    width: 100%;
    padding: 5px;
}

.detail_table_download .dl,
.detail_table_user .dl {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.detail_table_download .dl>*,
.detail_table_user .dl>* {
    padding: 5px;
}

.detail_table_download .dl_corp,
.detail_table_download .dl_mail,
.detail_table_user .dl_corp,
.detail_table_user .dl_mail {
    width: 70%;
    max-width: 390px;
    border-right: 1px dotted #d8d8d8;
}

.detail_table_download .dl_name,
.detail_table_download .dl_number,
.detail_table_user .dl_name,
.detail_table_user .dl_number {
    width: 30%;
    max-width: 168px;
}

.detail_table_download .dl_corp,
.detail_table_download .dl_name,
.detail_table_user .dl_corp,
.detail_table_user .dl_name {
    border-bottom: 1px dotted #d8d8d8;
}

.detail_table_download .dl_corp,
.detail_table_download .dl_mail,
.detail_table_download .dl_name,
.detail_table_download .dl_number,
.detail_table_user .dl_corp,
.detail_table_user .dl_mail,
.detail_table_user .dl_name,
.detail_table_user .dl_number {
    display: flex;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
}

.detail_table_download .dl_corp::before,
.detail_table_download .dl_mail::before,
.detail_table_download .dl_name::before,
.detail_table_download .dl_number::before,
.detail_table_user .dl_corp::before,
.detail_table_user .dl_mail::before,
.detail_table_user .dl_name::before,
.detail_table_user .dl_number::before {
    content: "\f1d0";
    font-family: "Material Icons";
    font-size: 17px;
    color: #26551f;
    display: block;
    background: #e5f2e4;
    width: 27px;
    height: 27px;
    border-radius: 50px;
    text-align: center;
    margin-right: 5px;
}

.detail_table_download .dl_mail::before,
.detail_table_user .dl_mail::before {
    content: "\e158";
    font-family: "Material Icons";
}

.detail_table_download .dl_name::before,
.detail_table_user .dl_name::before {
    content: "\e7fd";
    font-family: "Material Icons";
}

.detail_table_download .dl_number::before,
.detail_table_user .dl_number::before {
    content: "\e0b0";
    font-family: "Material Icons";
}

.detail_table_stafflist {
    width: 1100px;
}

.detail_table_stafflist .flex {
    justify-content: center;
}

.detail_table_stafflist .flex .detail_btn_green {
    padding: 5px 10px;
}

.detail_table_user {
    width: 1000px;
}

.detail_table_user td .flex {
    justify-content: center;
}

.detail_table_showcase {
    width: 1100px;
}

.detail_table_showcase .detail_btn_preview {
    width: 120px;
    padding: 3px;
}

.detail_table_showcase td a {
    color: #19840a;
    text-decoration: underline;
    cursor: pointer;
}

.detail_table_sales {
    width: 1100px;
}

.detail_table_sales_td {
    padding: 0 !important;
}

.detail_table_sales_inner {
    width: 100%;
    border: none !important;
}

.detail_table_sales_inner th {
    font-size: 12px;
    line-height: 1.1;
    text-align: center;
    background: #e9f2ef;
    border-bottom: none !important;
}

.detail_table_sales_inner td {
    background: white !important;
    border-bottom: none !important;
    padding: 5px 5px !important;
}

.detail_table_sales_inner tr {
    border-bottom: 1px dotted #d8d8d8;
}

.detail_table_sales_inner tr:last-child {
    border-bottom: none;
}

.detail_table_sales_inner_label_area,
.detail_table_sales_inner_label_catalog,
.detail_table_sales_inner_label_business_type {
    padding: 4px;
    background: #ccc;
    margin: 5px 3px 0;
    padding: 5px 7px;
    font-size: 13px;
    border-radius: 6px;
    line-height: 2.6;
    white-space: nowrap;
}

.detail_table_sales_inner_label_area {
    background: #ffdede;
}

.detail_table_sales_inner_label_catalog {
    background: #d6e3f2;
}

.detail_table_sales_inner_label_business_type {
    background: #fcebc3;
}

.detail_table_sales_inner .td_area {
    display: flex;
    flex-wrap: wrap;
}

.detail_table_sales_inner .td_area .detail_table_sales_inner_label_area,
.detail_table_sales_inner .td_area .detail_table_sales_inner_label_business_type {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0px 7px;
}

.detail_list_01.no_border dt,
.detail_list_01.no_border dd {
    border-bottom: none !important;
}

.detail_list_01.no_border .user_delete {
    background: none;
    display: flex;
    align-items: start !important;
    padding-top: 30px !important;
}

.detail_list_01.no_border.user_delete {
    width: 530px !important;
    margin: 0 auto;
}

.detail_list_01 {
    display: flex;
    flex-wrap: wrap;
}

.detail_list_01 dt {
    background: #e5f2e4;
    padding-right: 15px;
    text-align: right;
    width: 30%;
}

.detail_list_01 dt.bg_gray {
    background: #4b4b4b;
    color: white;
}

.detail_list_01 dd {
    padding-left: 15px;
    width: 70%;
}

.detail_list_01 dt,
.detail_list_01 dd {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #d8d8d8;
}

.detail_list_02 {
    display: flex;
    flex-wrap: wrap;
}

.detail_list_02 dt,
.detail_list_02 dd {
    padding: 10px 15px;
    margin-bottom: 12px;
}

.detail_list_02 dt {
    width: 200px;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: end;
}

.detail_list_02 dd {
    width: calc(100% - 200px);
}

.detail_list_02.green {
    margin-top: 20px;
}

.detail_list_02.green dt {
    background: #e5f2e4;
}

.detail_list_03 {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 50px;
    align-items: start;
}

.detail_list_03_block {
    border: 1px solid #d8d8d8;
    width: 500px;
    border-radius: 6px;
    padding: 10px 20px 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-right: 30px;
    margin-bottom: 30px;
}

.detail_list_03_block h5 {
    font-weight: bold;
    font-size: 17px;
    border-bottom: 1px solid #d8d8d8;
    padding: 0 0 5px;
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.detail_list_03_block_table {
    display: flex;
    flex-wrap: wrap;
    width: 65%;
}

.detail_list_03_block_table dt {
    background: #e5f2e4;
    font-weight: normal;
    width: 30%;
    padding: 3px 0.5rem;
    display: flex;
    align-items: start;
    justify-content: right;
}

.detail_list_03_block_table dd {
    width: 70%;
    padding: 3px 0 3px 0.5rem;
}

.detail_list_03_block_table dd li {
    color: #19840a;
}

.detail_list_03_block_table dd li:first-child {
    color: #000;
}

.detail_list_03_block_table dt,
.detail_list_03_block_table dd {
    margin: 0 0 5px;
}

.detail_list_03_block_btn {
    display: flex;
    flex-wrap: wrap;
    width: 35%;
    align-items: center;
}

.detail_list_03_block_btn .detail_btn_cad2d.no_data,
.detail_list_03_block_btn .detail_btn_cad3d.no_data {
    background: #d8d8d8 !important;
    color: #777777 !important;
}

.detail_text_ex {
    font-size: 12.5px;
    display: flex;
    align-items: center;
}

.detail_text_ex::before {
    content: "\e000";
    font-family: "Material Icons";
    font-size: 20px;
    margin-right: 3px;
    color: #4b4b4b;
}

.detail_text_ex2 {
    background: #f68514;
    color: white;
    border-radius: 6px;
    padding: 3px 8px;
    margin-left: 5px;
}

.detail_text_ex a {
    color: #19840a;
}

.detail_text_center {
    text-align: center;
}

.detail_label_cad_2d,
.detail_label_cad_3d,
.detail_label_catalog {
    background: #56a23c;
    color: white;
    font-size: 13px;
    padding: 4px 8px;
    border-radius: 6px;
}

.detail_label_cad_3d {
    background: #26551f;
}

.detail_label_catalog {
    background: #f68514;
}

.detail_section_user {
    margin-top: 30px;
}

.detail_section_user.list {
    width: 1100px;
}

.detail_section_user_btnbox {
    width: 900px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.detail_section_user_btnbox .detail_btn_green,
.detail_section_user_btnbox .detail_btn_gray {
    width: 200px !important;
    display: block;
    margin: 50px 15px 30px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contents_wrap_main_box_green {
    background: #e5f2e4;
    padding: 20px 30px;
    width: 1100px;
}

.contents_wrap_main_tabletop {
    margin-top: 50px;
    margin-bottom: 20px;
}

.contents_wrap_main_boxgray {
    background: #f1f1f1;
    padding: 20px 30px;
    width: 900px;
    margin-bottom: 40px;
}

.contents_wrap_main_boxgray_dl {
    display: flex;
    flex-wrap: wrap;
}

.contents_wrap_main_boxgray_dl dt,
.contents_wrap_main_boxgray_dl dd {
    margin: 5px 0;
}

.contents_wrap_main_boxgray_dl dt {
    color: #26551f;
    padding: 10px;
    width: 20%;
    text-align: right;
}

.contents_wrap_main_boxgray_dl dd {
    width: 80%;
    padding-left: 15px;
}

.th_control {
    position: relative;
}

.th_control .detail_control {
    width: 15px;
    height: 20px;
    position: absolute;
    right: 10px;
    top: 10px;
}

.th_control .detail_control>* {
    font-size: 24px;
    cursor: pointer;
    color: #26551f;
}

.th_control .detail_control .up {
    width: 15px;
    height: 15px;
    display: block;
    position: absolute;
    top: -10px;
    left: 0;
}

.th_control .detail_control .bottom {
    width: 15px;
    height: 15px;
    display: block;
    position: absolute;
    bottom: -10px;
    left: 0;
}

.head_admin {
    background: #e5f2e4;
    height: 70px;
    display: flex;
    justify-content: end;
    align-items: center;
    padding-right: 10px;
}

.flex {
    display: flex;
}

.flex.between {
    justify-content: space-between;
}

.contents_wrap_main_box_green.flex {
    align-items: stretch;
}

.contents_wrap_main_box_green.flex>div {
    margin-right: 30px;
    display: flex;
    align-items: center;
}

.contents_wrap_main_box_green.flex .detail_input_text {
    margin-left: 10px;
}

.contents_wrap_main_box_green.flex .detail_btn_01 {
    margin-left: 20px;
}

.text_c {
    text-align: center;
}

.form_new_item_catalog01 {
    width: -moz-fit-content;
    width: fit-content;
    background: #f1f1f1;
    padding: 20px;
    margin-bottom: 20px;
}

.form_new_item_catalog01 label {
    width: 210px;
    display: flex;
    align-items: center;
}

.form_new_item_catalog01 .detail_input_select {
    width: 130px;
}

.form_new_item_bunrui {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.form_new_item_bunrui .material-symbols-outlined {
    color: white;
    font-size: 30px !important;
    position: relative;
    margin-left: 10px;
    cursor: pointer;
}

.form_new_item_bunrui .material-symbols-outlined::before {
    content: "";
    background: #19840a;
    width: 35px;
    height: 35px;
    border-radius: 6px;
    position: absolute;
    top: -2px;
    left: -2px;
    z-index: -1;
}

.form_new_item_bunrui_inner {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.form_new_item_bunrui_inner:first-of-type {
    margin-top: 0;
}

.form_new_item .detail_btn_green {
    display: block;
    width: 200px;
    padding: 12px 0;
    text-align: center;
    margin: 30px auto 0;
}

.catalog_ex {
    font-weight: bold;
    position: relative;
}

.catalog_ex p {
    font-weight: normal;
}

.catalog_ex span {
    font-weight: normal;
}

.catalog_ex:hover .catalog_ex_text {
    opacity: 1;
}

.catalog_ex .catalog_ex_icon {
    background: #19840a;
    color: white;
    font-size: 13px;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 4px;
    margin-left: 10px;
    position: relative;
}

.catalog_ex .catalog_ex_text {
    border: 1px solid #d8d8d8;
    background: white;
    padding: 5px 5px;
    position: absolute;
    top: 10px;
    left: 150px;
    opacity: 0;
}

.size_s {
    width: 120px;
}

.size_l {
    width: 400px;
}

.size_l2 {
    width: 300px;
}

.size_ll {
    width: 500px;
}

.mb15 {
    margin-bottom: 15px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb50 {
    margin-bottom: 50px;
}

.contents_wrap_main_box_green.list_download {
    display: flex;
    align-items: center;
}

.contents_wrap_main_box_green.list_download>* {
    width: -moz-fit-content !important;
    width: fit-content !important;
    margin-left: 30px;
}

.contents_wrap_main_box_green.list_download .detail_input_text {
    margin: 5px 10px;
}

.contents_wrap_main_box_green.list_download .detail_btn_01 {
    justify-content: center;
}

.form_new_staff,
.form_new_staff_comp {
    width: 700px;
    margin-top: 60px;
}

.form_new_staff .detail_list_01 dt,
.form_new_staff_comp .detail_list_01 dt {
    display: flex;
    align-items: center;
    justify-content: right;
}

.form_new_staff .detail_btn_green,
.form_new_staff_comp .detail_btn_green {
    display: block;
    width: 200px !important;
    text-align: center;
    padding: 12px 0;
    margin: 30px auto 0;
    font-weight: bold;
}

.form_new_sales {
    width: 900px;
    margin-top: 60px;
}

.form_new_sales .detail_btn_green {
    display: block;
    width: 200px;
    padding: 15px 0;
    text-align: center;
    margin: 30px auto 0;
}

.form_new_staff_comp .detail_btn_green {
    margin: 30px 0 0;
}

.list_user_keyword .detail_input_text {
    margin-left: 62px;
}

.list_user_log {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.list_user_log .detail_input_select {
    width: 60px;
    margin: 0 5px;
}

.list_user_log .detail_input_select:first-of-type {
    margin-left: 20px;
}

.list_user_log .detail_btn_01 {
    margin-left: 25px;
}

.contents_wrap_main_tabletop.flex {
    align-items: end;
}

.contents_wrap_main_tabletop.flex .detail_text_ex {
    margin-left: 10px;
}

.form_new_user {
    width: 100%;
}

.form_new_user .user_form.detail_list_01 {
    width: 900px;
}

.form_new_user .user_form.detail_list_01 dt,
.form_new_user .user_form.detail_list_01 dd {
    padding: 20px;
}

.form_new_user .user_form.detail_list_01 dt {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: right;
}

.form_new_user .user_form.detail_list_01 dd {
    width: 60%;
}

.form_new_user .user_form_adbox {
    margin: 20px 0;
}

.form_new_user .user_form_adbox:first-of-type {
    margin-top: 10px;
}

.form_new_user .user_form_adbox:last-of-type {
    margin-bottom: 10px;
}

.form_new_user .user_form_adbox>span {
    width: 100%;
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form_new_user .user_form_adbox_inner {
    display: flex;
    align-items: stretch;
}

.form_new_user .detail_btn_green {
    display: block;
    padding: 15px 0;
    margin: 50px auto 30px;
    text-align: center;
    width: 300px;
}

.csv a {
    margin-left: 10px;
}

.contents_wrap_main_tabletop.contents_wrap_main_tabletop.sales {
    justify-content: space-between;
    width: 1100px;
}

.contents_wrap_main_table_wrap_01 {
    display: flex;
    flex-wrap: wrap;
    width: 1100px;
}

.area-flex {
    display: flex;
    flex-wrap: wrap;
}

.contents_wrap_main_table_wrap_01::after {
    content: "";
    width: 100%;
    height: 3px;
    order: -1;
    display: block;
    background: #19840a;
}

.contents_wrap_main_table_wrap_01 .tabLabel {
    /* タブ */
    margin-right: 10px;
    padding: 8px 12px;
    flex: 1;
    order: -1;
    border-radius: 3px 3px 0 0;
    color: #444;
    background: #e6e6e6;
    transition: 0.5s;
    cursor: pointer;
    text-align: center;
}

.contents_wrap_main_table_wrap_01 .tabLabel:nth-last-of-type(1) {
    margin-right: 0;
}

.contents_wrap_main_table_wrap_01 .tabLabel section.typeA input {
    /* ラジオボタン非表示 */
    display: none;
}

.contents_wrap_main_table_wrap_01 .content {
    /* 本文 */
    width: 100%;
    height: 0;
    overflow: hidden;
    opacity: 0;
}

.contents_wrap_main_table_wrap_01 input:checked+.tabLabel {
    color: #fff;
    background: #26551f;
}

.contents_wrap_main_table_wrap_01 input:checked+.tabLabel+.content {
    padding: 15px 0;
    height: auto;
    overflow: auto;
    transition: 0.3s opacity;
    opacity: 1;
}

.auth_wrap {
    width: 100vw;
    height: 100vh;
    display: flex;
}

.auth_wrap_showcase,
.auth_wrap_form {
    width: 50%;
}

.auth_wrap_showcase {
    background: #e5f2e4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth_wrap_showcase .slider {
    width: 400px;
    height: 450px;
    margin: 0 auto;
    word-wrap: break-word;
}

.auth_wrap_showcase .slider img {
    width: 100%;
    margin: 0 auto;
}

.auth_wrap_showcase .slider h3 {
    font-weight: bold;
    margin: 30px 0 15px;
    color: #19840a;
    border-bottom: 1px solid #19840a;
}

.auth_wrap_showcase .slider a:hover {
    opacity: 1;
}

.auth_wrap_showcase .slider p {
    white-space: pre-wrap;
}

.auth_wrap_form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.auth_wrap_form.lostpass {
    width: 100%;
}

.auth_wrap_form>form {
    width: 500px;
}

.auth_wrap_form>form h1 {
    background: none;
}

.auth_wrap_form>form h1>img {
    max-width: 240px;
}

.auth_wrap_form>form h2 {
    text-align: center;
    margin-top: -7px;
}

.auth_wrap_form>form h3 {
    text-align: center;
    font-weight: bold;
    color: #19840a;
    margin: 15px 0 30px;
}

.auth_wrap_form>form input {
    display: block;
    width: 350px;
    margin: 10px auto;
}

.auth_wrap_form>form .detail_link_arrow {
    display: flex;
    align-items: center;
    justify-content: right;
    width: 300px;
    margin: 10px auto 0;
    font-size: 13px;
    color: #19840a;
}

.auth_wrap_form>form .detail_link_arrow::after {
    content: "\e5cc";
    font-family: "Material Icons";
    font-size: 16px;
}

.auth_wrap_form>form .detail_btn_green {
    display: block;
    text-align: center;
    width: 280px;
    margin: 30px auto 0;
    padding: 12px 0;
    border-radius: 100px;
}

.contents_wrap_main_inner.dashboard {
    display: flex;
}

.contents_wrap_main_inner.dashboard .dashboard_btn {
    background: white;
    padding: 20px;
    border-radius: 20px;
    height: 120px;
    width: 250px;
    color: green;
    font-weight: bold;
    display: block;
    position: relative;
    margin-right: 30px;
    box-shadow: 9px 7px 10px -11px #777777;
}

.contents_wrap_main_inner.dashboard .dashboard_btn>span {
    color: white;
    background: #19840a;
    border-radius: 50px;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.contents_wrap_main_inner.dashboard .dashboard_btn::after {
    content: "\e5c8";
    font-family: "Material Icons";
    font-size: 20px;
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    bottom: 15px;
    right: 5px;
}

.contents_wrap_main_inner.dashboard .dashboard_btn:hover {
    background: #e5f2e4;
}

/* Modal */
.modal_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: #fff;
    padding: 50px 30px 30px;
    width: 70%;
    border-radius: 6px;
    max-width: 1000px;
}

.modal.modal_cad_bunrui,
.modal.modal_cad_copy,
.modal.modal_cad_delete,
.modal.modal_catalog_midashi,
.modal.modal_catalog_copy,
.modal.modal_catalog_delete,
.modal.modal_catalog_view,
.modal.modal_cad_view,
.modal.modal_download_saisou,
.modal.modal_staff_delete,
.modal.modal_user_delete,
.modal.modal_user_confirm,
.modal.modal_showcase_delete,
.modal.modal_sales_delete {
    max-width: 350px;
}

.modal .detail_btn_green {
    display: block;
    width: 70%;
    text-align: center;
    margin: 20px auto 0;
    padding: 10px 0;
}

.modal .flex {
    justify-content: space-between;
}

.modal .flex>a {
    width: 45%;
    margin: 20px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal_close span {
    display: block;
    color: #4b4b4b;
    font-size: 40px;
    font-weight: bold;
    position: absolute;
    right: 5px;
    top: 5px;
}

.modal_open {
    cursor: pointer;
}

.modal_cad_bunrui_open,
.modal_catalog_midashi_open {
    color: #19840a;
    text-decoration: underline;
    cursor: pointer;
}

.modal_catalog_view_open,
.modal_cad_view_open,
.modal_download_syousai_open,
.modal_download_saisou_open {
    cursor: pointer;
}

.modal_download_saisou_dl {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 15px;
}

.modal_download_saisou_dl>* {
    margin-top: 5px;
}

.modal_download_saisou_dl dt {
    background: #e5f2e4;
    padding: 7px 15px;
    width: 40%;
    text-align: right;
}

.modal_download_saisou_dl dd {
    width: 50%;
    padding-left: 10px;
}

.modal_download_syousai,
.modal_user_syousai,
.modal_showcase_preview,
.modal_sales_product,
.modal_sales_industry,
.modal_sales_area {
    width: 700px;
}

.modal_download_syousai .detail_list_01,
.modal_user_syousai .detail_list_01,
.modal_showcase_preview .detail_list_01,
.modal_sales_product .detail_list_01,
.modal_sales_industry .detail_list_01,
.modal_sales_area .detail_list_01 {
    margin: 30px 0;
    border-top: 1px solid #d8d8d8;
}

.modal_download_syousai .status_cad_2d,
.modal_download_syousai .status_cad_3d,
.modal_download_syousai .status_catalog,
.modal_user_syousai .status_cad_2d,
.modal_user_syousai .status_cad_3d,
.modal_user_syousai .status_catalog,
.modal_showcase_preview .status_cad_2d,
.modal_showcase_preview .status_cad_3d,
.modal_showcase_preview .status_catalog,
.modal_sales_product .status_cad_2d,
.modal_sales_product .status_cad_3d,
.modal_sales_product .status_catalog,
.modal_sales_industry .status_cad_2d,
.modal_sales_industry .status_cad_3d,
.modal_sales_industry .status_catalog,
.modal_sales_area .status_cad_2d,
.modal_sales_area .status_cad_3d,
.modal_sales_area .status_catalog {
    background: #88af67;
    color: white;
    padding: 3px 8px 4px;
    border-radius: 4px;
    font-weight: bold;
}

.modal_download_syousai .status_cad_3d,
.modal_user_syousai .status_cad_3d,
.modal_showcase_preview .status_cad_3d,
.modal_sales_product .status_cad_3d,
.modal_sales_industry .status_cad_3d,
.modal_sales_area .status_cad_3d {
    background: #19840a;
}

.modal_download_syousai .status_catalog,
.modal_user_syousai .status_catalog,
.modal_showcase_preview .status_catalog,
.modal_sales_product .status_catalog,
.modal_sales_industry .status_catalog,
.modal_sales_area .status_catalog {
    background: #f68514;
}

.modal_showcase_preview>p {
    display: block;
    width: 600px;
    margin: 0 auto;
}

.modal_showcase_preview>p>img {
    display: block;
    width: 100%;
    height: auto;
}

.modal_sales_kensaku {
    background: #e5f2e4;
    display: flex;
    padding: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.modal_sales_kensaku .detail_btn_green {
    display: block;
    width: 110px;
    margin: 0 0 0 10px;
}

.modal_sales_check {
    max-height: 60vh;
    overflow-x: auto;
    display: flex;
    flex-wrap: wrap;
}

.modal_sales_check .check_catalog+label,
.modal_sales_check .check_business_type+label,
.modal_sales_check .check_prefecture+label {
    background: #d8d8d8;
    padding: 4px;
    margin: 10px 3px 0;
    padding: 3px 10px;
    font-size: 13.5px;
    border-radius: 6px;
    line-height: 2;
    display: inline-block;
}

.modal_sales_area {
    width: 80vw;
    max-width: 100vw !important;
}

.modal_sales_check .check_catalog:checked+label {
    background: #d6e3f2;
}

.modal_sales_check .check_business_type:checked+label {
    background: #fcebc3;
}

.modal_sales_check .check_prefecture:checked+label {
    background: #ffdede;
}

.modal_sales_check .check_prefecture.parents+label {
    background: none;
    padding: 3px 5px;
    color: #000;
    border: 1px solid #dcdbdb;
}

.modal_sales_check .check_prefecture.parents:checked+label {
    background: #ffdede;
}

.admin_new_user_abroad_check {
    margin-bottom: 30px;
}

.admin_new_user_abroad_check {
    display: flex;
    font-weight: bold;
    margin-top: 15px;
}

/*ベース*/
section.typeA {
    display: flex;
    flex-wrap: wrap;
}

section.typeA .tabLabel {
    /* タブ */
    margin-right: 10px;
    padding: 8px 15px;
    flex: 1;
    order: -1;
    border-radius: 6px;
    color: #444;
    background: #d8d8d8;
    transition: 0.5s;
    cursor: pointer;
}

section.typeA .tabLabel:nth-last-of-type(1) {
    margin-right: 0;
}

section.typeA input[type="radio"] {
    /* ラジオボタン非表示 */
    display: none;
}

section.typeA .content {
    /* 本文 */
    width: 100%;
    height: 0;
    overflow: hidden;
    opacity: 0;
}

/*アクティブ設定*/
section.typeA input:checked+.tabLabel {
    color: #fff;
    background: #19840a;
}

section.typeA input:checked+.tabLabel+.content {
    padding: 15px 0 0;
    height: auto;
    overflow: auto;
    transition: 0.5s opacity;
    opacity: 1;
}

.contents_wrap.center .contents_wrap_main {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
}

.contents_wrap.center .contents_wrap_main::after {
    display: none;
}

.form_new_staff_comp.center {
    margin: 70px auto 100px;
}

.form_new_staff_comp.center p {
    text-align: center;
    margin-bottom: 100px;
}

.form_new_staff_comp.center>* {
    margin: 0 auto;
}

.detail_table_download2 td:last-child {
    background: white !important;
    border-left: 1px solid #d8d8d8 !important;
}

.user_download.detail_btn_green {
    display: block;
    width: 170px;
    text-align: center;
    padding: 10px;
    margin-top: 15px;
}

.contents_wrap_main_inner.user_download .flex {
    display: flex;
    justify-content: right;
}

.detail_btn_green.is-inactive {
    background: #d8d8d8;
}

.detail_btn_green.is-inactive,
.detail_btn_green.is-active {
    margin: 0 auto;
}

.policy_box {
    display: flex;
    width: -moz-fit-content !important;
    width: fit-content !important;
    margin: 30px auto;
}

.sales_name {
    font-weight: bold;
    display: block;
}

/* style for disable input, select, textarea */
input:disabled,
select:disabled,
textarea:disabled {
    background-color: #f1f1f1;
    color: #999;
}

.newitem_set_catalog {
    width: 1000px;
    display: flex;
    flex-wrap: wrap;
}

.newitem_set_catalog label {
    width: 33.3333333333%;
    display: flex;
    padding-right: 20px;
    margin: 7px 0;
}

.newitem_deletebox {
    display: flex;
    align-items: center;
}

.cadlist_2d {
    background: #88af67;
    color: white;
    padding: 2px 5px;
    border-radius: 6px;
}

.cadlist_3d {
    background: #19840a;
    color: white;
    padding: 2px 5px;
    border-radius: 6px;
}

.form_new_user .admin_new_user.detail_list_01 {
    width: 900px;
}

.form_new_user .admin_new_user.detail_list_01 dt,
.form_new_user .admin_new_user.detail_list_01 dd {
    padding: 20px;
}

.form_new_user .admin_new_user.detail_list_01 dt {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: right;
}

.form_new_user .admin_new_user.detail_list_01 dd {
    width: 60%;
}

.detail_btn_green:disabled {
    background: #d8d8d8;
}

.text-center {
    text-align: center;
}

input[type="file"].hidden {
    display: block;
    width: 0;
}

.detail_btn_gray.all-select {
    display: inline-block;
    padding: 5px 1.2rem 7px;
    margin-bottom: 10px;
}

.mw-1000 {
    max-width: 1000px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
}

.loading-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
}

.loading {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #19840a;
}

.loading,
.loading div {
    box-sizing: border-box;
}

.loading {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.loading div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid currentColor;
    border-radius: 50%;
    animation: loading-animation 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: currentColor transparent transparent transparent;
}

.loading div:nth-child(1) {
    animation-delay: -0.45s;
}

.loading div:nth-child(2) {
    animation-delay: -0.3s;
}

.loading div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes loading-animation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.login_record {
    text-align: right;
    display: block;
    width: 100%;
    margin: 0 0 5px;
}
