/*** 共通 ***/
#pageColumn p.catch {
    color: #f15a24;
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 20px;
}


/*** 配電盤・制御盤の製作 ***/
#wrap_service {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#wrap_service .service {
    width: 49%;
    text-decoration: none;
    align-self: stretch;
    position: relative;
    cursor: pointer;
    background-color: #E6E6E6;
    margin-bottom: 25px;
}
#wrap_service .service h2 {
    color: white;
    font-size: 18px;
    background-color: #ba3538;
    height: 40px;
    line-height: 42px;
    text-align: center;
    margin-bottom: 0;
}
#wrap_service .service .flame {
    width: 100%;
    overflow: hidden;
}
#wrap_service .service .flame img {
    width: 100%;
    transition-duration: 0.3s;
}
#wrap_service .service:hover .flame img {
    transform: scale(1.2, 1.2); /*画像の拡大*/
}
#wrap_service .service p {
    color: #303030;
    padding-top: 10px;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 12px;
}
#wrap_service .service:hover p {
    color: #303030;
}

@media screen and (max-width:560px) {
    #wrap_service .service {
        width: 100%;
    }
}


/*** 盤製品設計・組配 ***/
.board_sample {
    width: 98%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
}
.board_sample div {
    width: 32.33%;
    background-color: #F2F2F2;
    margin-bottom: 20px;
}
.board_sample div img {
    width: 100%;
}
#pageColumn .board_sample div p {
    text-align: center;
    margin-top: 6px;
    margin-bottom: 0;
}
.board_sample div h4 {
    color: #1f5598;
    font-size: 15px;
    line-height: 26px;
    text-align: center;
    margin-bottom: 10px;
}
@media screen and (max-width:620px) {
    .board_sample div {
        width: 49%;
    }
}
@media screen and (max-width:480px) {
    .board_sample div {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}


/*** PLCソフトウェア構築 ***/
#pageColumn .scroll_exp {
    display: none;
}
#plc_tpanel {
    width: 100%;
    margin-bottom: 20px;
}
#plc_tpanel table {
    width: 100%;
    border-collapse: collapse;
}
#plc_tpanel table th {
    font-size: 15px;
    line-height: 34px;
    height: 32px;
    padding-left: 5px;
    box-sizing: border-box;
    background-color: #F2F2F2;
    border: 1px solid #808080;
}
#plc_tpanel table td {
    font-size: 15px;
    line-height: 21px;
    height: 30px;
    padding-top: 7px;
    padding-bottom: 6px;
    padding-left: 5px;
    padding-right: 5px;
    box-sizing: border-box;
    border: 1px solid #808080;
    vertical-align: top;
}
#plc_tpanel table .plc {
    width: 190px;
}
#plc_tpanel table .tpanel {
    width: 160px;
}
@media screen and (max-width:690px) {
    #plc_tpanel table .plc {
        width: 180px;
    }
    #plc_tpanel table .tpanel {
        width: 150px;
    }
}
@media screen and (max-width:570px) {
    #pageColumn .scroll_exp {
        display: block;
    }
    #plc_tpanel {
        overflow-x: scroll;
    }
    #plc_tpanel table {
        width: 545px;
    }
}

#scada_software {
    width: 370px;
    border-collapse: collapse;
    margin-bottom: 20px;
}
#scada_software th {
    font-size: 15px;
    line-height: 34px;
    height: 32px;
    padding-left: 5px;
    box-sizing: border-box;
    background-color: #F2F2F2;
    border: 1px solid #808080;
}
#scada_software td {
    font-size: 15px;
    line-height: 21px;
    height: 30px;
    padding-top: 7px;
    padding-bottom: 6px;
    padding-left: 5px;
    padding-right: 5px;
    box-sizing: border-box;
    border: 1px solid #808080;
    vertical-align: top;
}


/*** PLCソフトウェア構築ツール ***/
p.scroll_exp2 {
    display: none;
}
#plc_tools {
    width: 100%;
}
#plc_tools table {
    width: 98%;
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
}
#plc_tools table th {
    font-size: 15px;
    line-height: 34px;
    height: 32px;
    padding-left: 5px;
    box-sizing: border-box;
    background-color: #F2F2F2;
    border: 1px solid #808080;
}
#plc_tools table td {
    font-size: 15px;
    line-height: 21px;
    height: 30px;
    padding-top: 7px;
    padding-bottom: 6px;
    padding-left: 5px;
    padding-right: 5px;
    box-sizing: border-box;
    border: 1px solid #808080;
}
#plc_tools table .name {
    width: 170px;
}
#plc_tools table .class {
    width: 230px;
}
@media screen and (max-width:600px) {
    p.scroll_exp2 {
        display: block;
    }
    #plc_tools {
        overflow-x: scroll;
    }
    #plc_tools table {
        width: 570px;
    }
}


/*** コントロールセンタ ***/
#cc_feature {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 35px;
}
#cc_feature ul {
    width: 53%;
    box-sizing: border-box;
    margin-left: 20px;
}
#cc_feature ul li {
    margin-bottom: 8px;
}
#cc_feature img {
    width: 40%;
    align-self: center;
}
@media screen and (max-width:600px) {
    #cc_feature ul {
        width: 100%;
    }
    #cc_feature img {
        display: block;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}

.cc_comp {
    width: 98%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.cc_comp div {
    width: 49%;
    align-self: stretch;
    box-sizing: border-box;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid #c2c2c2;
    margin-bottom: 10px;
}
.cc_comp div h4 {
    color: #1f5598;
    font-size: 15px;
    line-height: 30px;
}
.cc_comp div p {
    margin-bottom: 10px;
}

#cc_spec {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 20px;
}
#cc_spec table {
    width: 98%;
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
}
#cc_spec table th {
    font-size: 15px;
    line-height: 34px;
    height: 32px;
    padding-left: 5px;
    box-sizing: border-box;
    background-color: #E2E2E2;
    border: 1px solid #808080;
}
#cc_spec table td {
    font-size: 15px;
    line-height: 21px;
    height: 30px;
    padding-top: 7px;
    padding-bottom: 6px;
    padding-left: 5px;
    padding-right: 5px;
    box-sizing: border-box;
    border: 1px solid #808080;
}
#cc_spec table td.ttl {
    background-color: #F2F2F2;
}
@media screen and (max-width:570px) {
    #cc_spec {
        overflow-x: scroll;
    }
    #cc_spec table {
        width: 545px;
    }
}






