@charset "utf-8";

*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    font-size: 16px;
    font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo,
        メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
}

/*PC非表示、モバイルで表示*/
.mobile_show {
    display: none;
}

/*ポジション用*/
.absolute {
    position: absolute;
}
.relative {
    position: relative;
}

header {
}
header .h_menu_contents {
}
header .h_menu_icon {
    width: 50px;
    height: 50px;
    background: #858585;
}

header .h_full_contents {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    background: #fff;
    padding: 0px 30px 0px 0px;
}
header .h_page_logo {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    height: 60px;
    margin-left: 70px;
    margin-right: 20px;
}
header .h_page_logo img {
    width: 100%;
    max-width: 185px;
}
header .h_icon_list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}
header .h_icon_contents {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}
header .h_login_btn {
}
header .h_icon_img {
    min-width: 30px;
    margin-right: 6px;
}
header .h_icon_img img {
    width: 100%;
}
header .h_icon_txt,
header .h_select_language select {
    font-size: 14px;
    color: #595757;
}

header .h_select_language select {
    border: 1px solid #979797;
    width: 80px;
    padding: 2px 10px 2px 5px;
    background-image: url(../img/common/language_icon.png);
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: right 6px bottom 50%;
}

header .h_breadcrumb_contents {
    background: #fce3e6;
}
header .h_breadcrumb_list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: stretch;
}
header .h_breadcrumb_list li {
    max-width: 200px;
    min-width: 140px;
    width: 100%;
}
header .h_breadcrumb_list li:not(:nth-child(1)) {
    max-width: unset;
    width: auto;
}
header .h_breadcrumb_list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fefefe;
    padding: 13px 30px;
    text-align: center;
    position: relative;
    height: 100%;
}
header .h_breadcrumb_list li a:before {
    content: "";
    width: 32px;
    height: 100%;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: -31px;
    z-index: 1;
}
header .h_breadcrumb_list li:not(:nth-child(1)) a {
    padding-left: 50px;
}

header .h_breadcrumb_list li:nth-child(1) a,
header .h_breadcrumb_list li:nth-child(1) a:before {
    background: #bf1920;
}
header .h_breadcrumb_list li:nth-child(2) a,
header .h_breadcrumb_list li:nth-child(2) a:before {
    background: #ef506b;
}
header .h_breadcrumb_list li:nth-child(3) a,
header .h_breadcrumb_list li:nth-child(3) a:before {
    background: #f490aa;
}
header .h_breadcrumb_list li:nth-child(4) a,
header .h_breadcrumb_list li:nth-child(4) a:before {
    background: #ffc5d7;
    color: #716e70;
}

/*main*/
.main {
    max-width: 100%;
    width: 100%;
    min-height: calc(100vh - 105px);
}
.main_max {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 1px 15px;
}

.page_ttl {
    padding-top: 100px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.page_ttl h1 {
    min-width: 150px;
    font-size: 24px;
    text-align: center;
}
.page_ttl h1:after {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    margin: 7px auto 0px auto;
    background: #e30114;
}

/*ボタンたち*/
.active_btn_list {
    display: flex;
    flex-direction: row;
    /*flex-wrap: nowrap;*/
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 90px;
    padding-bottom: 20px;
}
.active_btn_list .active_btn_com {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;

    max-width: 115px;
    width: 100%;
    text-align: center;
    margin: 0px 10px;
    margin-top: 10px;
}
.active_btn_list .active_btn_com:first-child {
    margin-left: 0px;
}
.active_btn_list .active_btn_com:hover {
    opacity: 0.8;
}

.active_btn_list .active_btn_com div {
    width: 97px;
    height: 97px;
    background-size: 97px;
    background-repeat: no-repeat;
    background-position: right 50% center;
    border-radius: 50%;
    background-color: #b2afad;
}
.active_btn_list .active_btn_com p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    /*height: 35px;*/
    min-height: 35px;
    max-height: 56px;
    overflow: hidden;
    margin-top: 10px;
    color: #000;
}
.active_btn_list .home_btn div {
    background-image: url(../img/common/home.png);
    background-color: #bf1920;
}
.active_btn_list .back_btn div {
    background-image: url(../img/common/back.png);
    background-color: #bf1920;
}
.active_btn_list .device_btn div {
    background-image: url(../img/common/device.png);
}
.active_btn_list .device_btn p {
    color: #b2afad;
}
.active_btn_list .device_btn.active div {
    background-image: url(../img/common/active_device.png);
    background-color: #bf1920;
}
.active_btn_list .device_btn.active p {
    color: #000;
}

.sec3 {
    background-color: #b2afad;
}
.page_detail_data {
    background: #fff;
    margin: 20px 0px;
    padding: 20px 40px;
}
.page_detail_data p {
    color: #595757;
}
.device_data_txt {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.device_data_txt p {
    margin-right: 25px;
}
.device_data_condition {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    margin-top: 15px;
}
.device_data_condition p {
    margin-right: 15px;
}
.device_data_condition span {
    display: inline-block;
    color: #fff;
    border-radius: 4px;
    padding: 5px 20px;
    background: #e30113ff;
}
.device_data_condition span.device_icon_1 {
    /*正常（行中程）*/
    background: #75b343ff;
}
.device_data_condition span.device_icon_2 {
    /*異常(重故障)*/
    background: #e30113ff;
}
.device_data_condition span.device_icon_3 {
    /*異常(軽故障)*/
    background: #ebee71ff;
    color: #000;
}
.device_data_condition span.device_icon_4 {
    /*異常(状態監視)*/
    background: #ffc409ff;
    color: #000;
}
.device_data_condition span.device_icon_5 {
    /*通信異常*/
    background: #b7b7b7ff;
}
.device_data_condition span.device_icon_6 {
    /*停止*/
    background: #b7b7b7ff;
}
.device_data_condition .alarm_link_btn {
    font-size: 14px;
    padding: 6px 10px;
    border: 1px solid #b8b8b8;
    border-radius: 5px;
    background-image: -webkit-linear-gradient(
        90deg,
        #878185 0%,
        #b0aaae 40%,
        #fff 100%
    );
}
.device_data_condition .alarm_link_btn:hover {
    opacity: 0.8;
}
.now_operation_data {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
}
.now_operation_item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    margin: 5px 0px;
}
.now_operation_item p {
    font-size: 16px;
    margin-right: 25px;
}
/*選択レシピ確認*/
.now_recipe_inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}
.now_recipe_txt {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: flex-start;
    flex: 2;
}
.now_recipe_txt p {
    min-width: 70px;
    padding: 7px 0px;
}
.now_recipe_txt a {
    color: #fff;
    padding: 5px 20px;
    background-color: #33ad37;
    margin-left: 15px;
}
.link_back_recipelist {
    background-color: #009e9d;
    color: #fff;
    background-image: url(../img/common/now_recipe_edit.png);
    background-size: 27px;
    background-position: left 10px center;
    background-repeat: no-repeat;
    margin-left: 10px;
    padding: 10px 20px 10px 45px;
}
.link_back_recipelist:hover {
    opacity: 0.6;
}

/*各ページの見出し*/
.ttl {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 10px;
    position: relative;
}

.ttl > p {
    font-size: 22px;
    margin-right: 15px;
}

.ttl:after {
    content: "";
    width: 100%;
    height: 2px;
    background: #e20100;
    margin-top: 6px;
}

/*各ページの一覧の見出し*/
.recipe_c_ttl {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 10px;
    position: relative;
}
.recipe_c_ttl:after {
    content: "";
    width: 100%;
    height: 2px;
    background: #e20100;
    margin-top: 6px;
}
.flex-space-between {
    display: flex;
    justify-content: space-between !important;
}

.recipe_c_ttl > p {
    font-size: 22px;
    margin-right: 15px;
}

.recipe_c_ttl .recipe_c_notice {
    color: #595757;
    font-size: 12px;
    /*position: absolute;*/
    /*right: 0px;*/
    /*bottom: 13px;*/
}

.datastorage_up_btn {
color: #45bada;
cursor: pointer;
}
.datastorage_up_btn:hover {
text-decoration: underline;
}

/*ページャースタイル*/
.notice_pager_list {
    padding-bottom: 60px;
}
.pager .pagination {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.pager .pagination li {
    position: relative;
    margin: 4px 0px;
}

.pager .pagination li a {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #bf1920;
    width: 50px;
    height: 35px;
    margin: 0px 2px;
    background-color: #fff;
    border: 1px solid #a8a8a8;
}

.pager .pagination li.next a {
    border-radius: 0px 20px 20px 0px;
}
.pager .pagination li.pre a {
    border-radius: 20px 0px 0px 20px;
}

.pager .pagination li a span {
    display: block;
    vertical-align: middle;
}

.pager .pagination li a:hover,
.pager .pagination li.active a {
    border: 1px solid #bf1920;
    background-color: #bf1920;
    color: #fff;
}

/*検索フォーム*/
.list_search_contents {
    margin-top: 15px;
    margin-bottom: 20px;
}
.list_search_contents .list_c_input {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: flex-start;
}
.list_search_contents .list_c_input.flex_end {
    display: flex;
    justify-content: flex-end !important;
}
.list_search_contents .search_group {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
    margin-right: 15px;
}
.list_search_contents .search_calendar {
    max-width: 115px;
    margin-right: 40px;
    position: relative;
}
.list_search_contents .calendar_icon {
    width: 30px;
    height: 30px;
    z-index: 1;
    background-image: url(../img/common/calendar_icon.png);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0px;
    right: -35px;
    cursor: pointer;
}
.list_search_contents .search_group label {
    white-space: nowrap;
    margin-right: 10px;
    padding: 5px 0px;
    font-size: 15px;
}
.list_search_contents .search_group input {
    font-size: 13px;
    padding: 5px 10px;
    border: 1px solid #ddd;
    width: 100%;
}
.list_search_contents .search_group .w1 {
    min-width: 115px;
    max-width: 115px;
}
.list_search_contents .search_group .w3 {
    /*width: 200px;*/
}
.list_search_contents .search_group .w4 {
    width: 250px;
}

.list_search_contents .search_time_txt {
    margin: 0px 15px 0px 5px;
}
.list_search_contents .search_btn {
    background-color: #b0001e;
    color: #fff;
    padding: 6px 10px;
    width: 85px;
    text-align: center;
    border-radius: 10px;
}
.list_search_contents .search_btn:hover {
    opacity: 0.6;
}

/*一覧用のテーブル*/
.data_list_contents {
    margin-bottom: 40px;
}
.data_list_contents table {
    width: 100%;
}
.data_list_contents table th,
.data_list_contents table td {
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #9fa0a0;
}

.data_list_contents table tr:nth-child(1) th,
.data_list_contents table tr:nth-child(2) th {
    background-color: #716e70;
    color: #fff;
    padding: 5px;
    position: relative;
    z-index: 2;
}

.data_list_contents table tr.th_padding:nth-child(1) th,
.data_list_contents table tr.th_padding:nth-child(2) th {
    padding: 14px 10px;
}

.data_list_contents table tr th:nth-child(6) p {
    font-size: 14px;
}

.data_list_contents table tr:nth-child(1) th:nth-child(1) {
    width: 45px;
}

.data_list_contents table td {
    padding: 7px 20px;
}

.data_list_contents table td p {
    text-align: left;
}

.data_list_contents table td p.table_txt_center {
    text-align: center;
}

table .check_all_txt {
    /*font-size: 14px;*/
}

table .w45 {
    width: 45px !important;
}
table .w75 {
    width: 75px !important;
}
table .w105 {
    width: 105px !important;
}
table .w130 {
    width: 130px !important;
}
table .w140 {
    width: 140px !important;
}
table .w150 {
    width: 150px !important;
}
table .w160 {
    width: 160px !important;
}
table .w170 {
    width: 170px !important;
}
table .w200 {
    width: 200px !important;
}
table .w250 {
    width: 250px !important;
}

table .table_input {
    display: none;
    width: 100%;
    margin-left: -22px;
    text-align: left;
    border: 1px solid #333;
    padding: 5px 10px;
    border-radius: 5px;
}

table .table_form_err {
    font-size: 12px !important;
    margin-top: 3px !important;
    color: red !important;
}

/*テーブル*/
/*.list_table {
    overflow-y: auto;
    /* overflow-x: hidden; */
/* overflow-x: auto;
    font-size: 14px;
    margin-top: 20px;
}*/

.list_table table {
    width: 100%;
    /*min-width: 800px;*/
}

.list_table table thead {
    position: sticky;
    top: 0px;
    left: 0px;
    border-top: none;
    border-bottom: none;
    z-index: 5;
}

/*テーブル用のボタン*/
.table_detail_btn {
    display: inline-block;
    padding: 5px 8px;
    background: #9fa0a0;
    color: #fff;
    text-align: center;
    cursor: pointer;
    user-select: none;
    min-width: 75px;
}
.table_detail_btn:hover {
    opacity: 0.6;
}
.table_detail_btn.edit {
    background: #f49e9e;
}
.table_button_list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-end;
    align-items: center;
    padding-top: 15px;
}
.table_button_list a {
    display: inline-block;
    max-width: 180px;
    width: 100%;
    color: #fff;
    margin: 0px 10px;
    padding: 7px 10px;
    text-align: center;
    cursor: pointer;
    user-select: none;
}
.table_button_list a.process_download_btn {
    max-width: 260px;
    background: #00b1d8;
    border-radius: 10px;
}
.table_button_list a:hover {
    opacity: 0.6;
}

.table_flex {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.table_delete_btn {
    display: inline-block;
    padding: 5px 15px;
    background: #8b8b8b;
    color: #fff;
    text-align: center;
    user-select: none;
}
.table_delete_btn:hover {
    opacity: 0.6;
}

.table_file_link {
    color: #449be0;
    text-decoration: underline;
    user-select: none;
}
.table_file_link:hover {
    opacity: 0.6;
}

/* チェックボックスデザイン */
/*リセット */
.check_contents {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.table_check_box {
    display: inline-block;
}
.check_contents {
    cursor: pointer;
    vertical-align: middle;
    position: relative;
    width: 20px;
    height: 20px;
}
.check_contents::before,
.check_contents::after {
    content: "";
    display: block;
    position: absolute;
}
.check_contents::before {
    background-color: #fff;
    border-radius: 0%;
    border: 1px solid #666464;
    width: 20px;
    height: 20px;
    top: 0px;
    left: 0%;
}
.check_contents::after {
    border-bottom: 3px solid #666464;
    border-left: 3px solid #666464;
    opacity: 0;
    height: 6px;
    width: 11px;
    transform: translate(-50%, -50%) rotate(-45deg);
    top: 50%;
    left: 50%;
}
.check_contents:checked::after {
    opacity: 1;
}

/*fixedボタン*/
.form_fixed_contents {
    padding: 10px 0px;
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.23);
    z-index: 9;
}

.form_fixed_inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.form_fixed_btn {
    display: block;
    background-color: #ee762b;
    padding: 7px 20px;
    margin: 0px 10px;
    color: #fff;
    max-width: 130px;
    width: 100%;
}

.form_fixed_btn:hover {
    background-color: #fb6609;
}

/*api3 エラー*/
.api3_json_err {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0px auto;
    padding-bottom: 60px;
    position: relative;
}
.api3_json_img {
    max-width: 85px;
    position: absolute;
    left: -100px;
}
.api3_json_img img {
    width: 100%;
}
.api3_json_contents {
    text-align: center;
    border: 1px solid #e60012;
    padding: 15px 20px 5px 20px;
    width: 100%;
}
.api3_json_top {
    text-align: left;
    color: #e60012;
    line-height: normal;
}
.api3_err_ttl {
}
.api3_err_txt {
}
.api3_err_btn {
    display: inline-block;
    margin-top: 15px;
    margin-bottom: 10px;
    background: #9a9a9a;
    color: #fff;
    border-radius: 3px;
    padding: 5px 20px;
    cursor: pointer;
}
.api3_err_btn:hover {
    opacity: 0.6;
}

.datepicker-dropdown.datepicker-orient-bottom:before,
.datepicker-dropdown.datepicker-orient-bottom:after{
    content: unset;
}
.datepicker-dropdown:before,
.datepicker-dropdown:after{
    content: unset !important;
}
@media screen and (max-width: 1100px) {
}
@media screen and (max-width: 900px) {
    .list_search_contents .list_c_input{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: center;
        justify-content: flex-start;
        align-items: center;
    }
    /*.list_search_contents .search_group,
    .list_search_contents .search_btn{
        margin-bottom: 10px;
    }*/
}
@media screen and (max-width: 800px) {
    /*PC表示、モバイルで非表示*/
    .mobile_hide {
        display: none !important;
    }
    /*PC非表示、モバイルで表示*/
    .mobile_show {
        display: block !important;
    }

    header .h_page_logo img {
        max-width: 145px;
    }
    header .h_icon_img {
        max-width: 25px;
        min-width: unset;
    }
    header .h_icon_txt,
    header .h_select_language select {
        font-size: 12px;
    }
    header .h_breadcrumb_list li {
        max-width: 115px;
        min-width: 100px;
    }
    header .h_breadcrumb_list li a {
        font-size: 14px;
        padding: 9px 15px;
    }
    header .h_breadcrumb_list li a:before {
        content: "";
        width: 24px;
        /*height: 35px;*/
        position: absolute;
        /*top: 17px;*/
        right: -23px;
    }
    header .h_breadcrumb_list li:not(:nth-child(1)) a {
        padding-left: 35px;
    }
    .page_ttl {
        padding-top: 45px;
    }
    .page_ttl h1 {
        min-width: 115px;
        font-size: 19px;
    }
    .active_btn_list {
        padding-top: 40px;
    }
    .active_btn_list .active_btn_com {
        max-width: 90px;
    }
    .active_btn_list .active_btn_com div {
        width: 70px;
        height: 70px;
        background-size: 70px;
    }
    .active_btn_list .active_btn_com p {
        font-size: 13px;
        /*height: 29px;*/
    }

    .device_data_txt p {
        margin-top: 3px;
        margin-bottom: 3px;
    }
    .api3_json_err {
        max-width: 95%;
    }
    .api3_json_img {
        position: static;
        margin-left: 15px;
        margin-right: 15px;
    }
}
@media screen and (max-width: 750px) {
    .table_check_box.call_css_1,
    .table_check_box.call_css_2,
    .table_check_box.call_css_3{
        padding: 10px;
    }
}
@media screen and (max-width: 650px) {
    .active_btn_list {
        display: flex;
        flex-wrap: wrap;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    .active_btn_list .active_btn_com {
        max-width: calc((100% / 3) - 20px);
        /*margin-left: auto;*/
        /*margin-right: auto;*/
    }
    .active_btn_list .active_btn_com:first-child {
        margin-left: 10px;
    }
    .page_detail_data {
        font-size: 14px;
    }
    .device_data_condition p {
        width: 100%;
    }
    .device_data_condition .alarm_link_btn {
        margin-left: 40px;
        margin-top: 5px;
    }
    .device_data_condition {
        margin-top: 5px;
    }
    .recipe_c_ttl .recipe_c_notice {
        position: static;
        width: 50%;
    }
    .check_contents,
    .check_contents::before {
        width: 15px;
        height: 15px;
    }
    .check_contents::after {
        height: 6px;
        width: 10px;
    }
    .table_detail_btn {
        font-size: 12px;
    }
    table .table_input {
        margin-left: 0px;
        padding: 10px 10px;
    }
}
@media screen and (max-width: 480px) {
    table .table_input {
        margin-left: 0px;
        padding: 10px 10px;
    }

    header .h_page_logo {
        height: 15vw;
        margin-left: 17vw;
        margin-right: 4vw;
    }

    header .h_page_logo img {
        max-width: 36vw;
    }

    header .h_full_contents {
        padding-right: 0px;
        height: 15.5vw;
    }
    header .h_icon_img {
        max-width: 5vw;
    }
    header .h_icon_list {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: flex-start;
    }
    header .h_icon_contents.h_select_language {
        margin-top: 1vw;
    }
    header .h_select_language select {
        width: 18vw;
        padding: 0.8vw 2.6vw 0.8vw 1vw;
        font-size: 2.9vw;
        background-size: 2vw;
    }
    header .h_breadcrumb_list li {
        min-width: 14vw;
        width: auto;
    }
    header .h_breadcrumb_list li a {
        font-size: 3vw;
        padding: 2vw 1vw;
    }
    header .h_breadcrumb_list li a:before {
        top: 50%;
        right: -3.8vw;
        width: 4vw;
        height: 100%;
    }
    header .h_breadcrumb_list li:not(:nth-child(1)) {
        max-width: 26vw;
    }
    header .h_breadcrumb_list li:not(:nth-child(1)) a {
        padding-left: 5vw;
    }
    .main_max {
        padding: 1px 3.7vw;
    }
    .page_ttl {
        padding-top: 7vw;
    }
    .page_ttl h1 {
        min-width: 24vw;
        font-size: 4.3vw;
    }
    .page_ttl h1:after {
        height: 1vw;
        margin: 1.5vw auto 0px auto;
    }
    .active_btn_list {
        max-width: 85vw;
        padding-top: 8vw;
        padding-bottom: 3vw;
    }
    .active_btn_list .active_btn_com {
        max-width: calc((100% / 3) - 7vw);
    }
    .active_btn_list .active_btn_com:first-child {
        margin-left: 2.5vw;
    }
    .active_btn_list .active_btn_com div {
        width: 17vw;
        height: 17vw;
        background-size: 17vw;
    }
    .active_btn_list .active_btn_com p {
        font-size: 3vw;
        /*height: 6vw;*/
        height: 10vw;
        line-height: 3.3vw;
        margin-top: 2vw;
        margin-bottom: 1.5vw;
    }
    .page_detail_data {
        font-size: 3.4vw;
        margin: 4vw 0px;
        padding: 5vw 4.5vw;
    }
    .device_data_condition span {
        font-size: 3.4vw;
        padding: 1vw 4vw;
    }
    .device_data_condition .alarm_link_btn {
        font-size: 3.4vw;
        margin-left: 9.7vw;
        margin-top: 1.5vw;
        padding: 1.5vw 2.5vw;
    }
    .device_data_txt p {
        margin-right: 5vw;
        margin-top: 0.8vw;
        margin-bottom: 0.8vw;
    }
    .pager .pagination li {
        display: block;
    }
    .pager .pagination {
        display: flex;
        flex-wrap: wrap;
    }

    .pager .pagination li {
        flex: 0 0 10%;
        box-sizing: border-box;
    }

    .pager .pagination li.pre,
    .pager .pagination li.pre_sub,
    .pager .pagination li.next,
    .pager .pagination li.next_sub,
    .pager .pagination li.active {
        display: block;
    }
    .pager .pagination li a {
        font-size: 3.3vw;
        width: 12vw;
        height: 7vw;
        margin: 0px 0.3vw;
    }
    .pager .pagination li.active {
        margin: 0px 2vw;
    }
    .ttl {
        padding-top: 3vw;
        padding-bottom: 2vw;
    }
    .ttl > p {
        font-size: 4.2vw;
        margin-right: 3vw;
    }
    .ttl:after {
        margin-top: 1.2vw;
    }
    .recipe_c_ttl {
        padding-top: 3vw;
        padding-bottom: 2vw;
    }
    .recipe_c_ttl:after {
        margin-top: 1.2vw;
    }
    .recipe_c_ttl > p {
        font-size: 4.2vw;
        margin-right: 3vw;
    }
    .data_list_contents {
        margin-bottom: 9.5vw;
    }
    .table_detail_btn {
        padding: 1vw 3vw;
        font-size: 3vw;
    }
    .check_contents,
    .check_contents::before {
        width: 0;
        height: 0;
        border: none;
    }
    .check_contents::after {
        width: 2.6vw;
        height: 1.4vw;
        border-bottom: 0.8vw solid #666464;
        border-left: 0.8vw solid #666464;
        top: 45%;
    }
    .table_button_list a {
        font-size: 3vw;
        margin: 0px 2vw;
        padding: 1.5vw 2vw;
        max-width: 33vw;
    }

    .link_back_recipelist {
        background-size: 6vw;
        padding: 2.4vw 4.7vw 2.4vw 10vw;
    }

    /*テーブル*/
    .list_table {
        /*max-height: 100vh;*/
        font-size: 3vw;
        margin-top: 2vw;
        margin-bottom: 0;
    }

    /*検索フォーム*/
    .list_search_contents .list_c_input {
        width: 100%;
        flex-wrap: wrap;
    }

    .list_search_contents .search_group {
        margin: 10px 0;
        max-width: 100%;
    }

    input[type="checkbox"] {
        border: 1px solid #aaaaaa;
        vertical-align: -8px;
        -webkit-appearance: none;
        position: relative;
        margin-right: 5px;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        -webkit-box-sizing: border-box;
        width: 26px;
        height: 26px;
        /*Other Browser*/
        background: #e2e2e2;
        /*For Old WebKit*/
        background: -webkit-gradient(
            linear,
            left top,
            left bottom,
            color-stop(0, #ffffff),
            color-stop(1, #e2e2e2)
        );
        /*For Modern Browser*/
        background: linear-gradient(to bottom, #ffffff 0%, #e2e2e2 100%);
    }

    input[type="checkbox"]:checked {
        /*Other Browser*/
        /*background: #99cc00;*/
        /*For Old WebKit*/
        /*background: -webkit-gradient(
            linear,
            left top,
            left bottom,
            color-stop(0, #99cc00),
            color-stop(1, #87b400)
        );*/
        /*For Modern Browser*/
        /*background: linear-gradient(to bottom, #99cc00 0%, #87b400 100%);*/
        /*border: 1px solid #336600;*/
    }

    input[type="checkbox"]:checked:before {
        position: absolute;
        left: 1px;
        top: 16px;
        display: block;
        -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
        content: "";
        width: 10px;
        height: 4px;
        background: #ffffff;
        -webkit-transform: rotate(45deg);
        -webkit-transform-origin: right center;
        display: none;
    }

    input[type="checkbox"]:checked:after {
        display: block;
        position: absolute;
        left: 7px;
        top: 14px;
        content: "";
        /*-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);*/
        width: 16px;
        height: 7px;
        /*background: #ffffff;*/
        -webkit-transform: rotate(-53deg);
        -webkit-transform-origin: left center;
    }

    .table_button_list a.process_download_btn {
        max-width: 100%;
    }

    .api3_json_img {
        position: static;
        max-width: 16vw;
        margin-right: 3vw;
    }
    .list_search_contents .search_btn{
        margin-left: 2vw;
    }
    .list_search_contents .search_group .w1 {
        min-width: 80px;
        max-width: 115px;
        font-size: 10px;
        padding: 5px 3px;
        border: 1px solid #ddd;
        width: 100%;
    }
    .list_search_contents .search_time_txt{
        margin: 0px 10px 0px 5px;
    }
    .list_search_contents .search_group .w3{
        max-width: 165px;
    }
    .list_search_contents .search_group label{
        min-width: 55px;
        font-size: 12px;
        padding: 5px 3px;
    }
    .list_search_contents .calendar_icon{
        position: absolute;
        top: -4px;
        right: -34px;
    }
}
@media screen and (max-width: 375px) {
}
