/* fbox */
.fbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (min-width:768px) {
    .fbox.fx > div {
        width: 50%;
    }
    .fbox > .txt.lft {
        padding-right: 30px;
    }
    .fbox > .txt.rt {
        padding-left: 30px;
    }
    .fbox.short > .txt.lft {
        padding-right: 5px;
    }
    .fbox.short > .txt.rt {
        padding-left: 5px;
    }
    .fbox.long > .txt.lft {
        padding-right: 60px;
    }
    .fbox.long > .txt.rt {
        padding-left: 60px;
    }
}
@media (max-width:768px) {
    .fbox {
        flex-wrap: wrap;
    }
}

/* company1 */
#company1 .sec1 .fbox1 {
    background-color: #f7f7f7;
    border-radius: 20px;
    padding: 40px 0 40px 60px;
}
@media (max-width:768px) {
    #company1 .sec1 .fbox1 {
        padding: 40px 20px;
        border-radius: 5px;
        text-align: center;
    }
    #company1 .sec1 .fbox1 .txt {
        padding-bottom: 15px;
        text-align: center;
    }
    #company1 .sec1 .fbox1 > div,
    #company1 .sec1 .fbox2 > div {
        width: 100%;
    }
    #company1 .sec1 .fbox2 .txt {
        padding-bottom: 15px;
        order: 1;
        text-align: center;
    }
    #company1 .sec1 .fbox2 .lft {
        order: 2;
    }
}

/* dotted */
.dotted {
    display: block;
    border: 1px dashed #ccc;
    border-radius: 150px;
    padding: 50px 15px;
    position: relative;
}
.dotted::after {
    content: "";
    position: absolute;
    left: 50%;
    top: calc(100% - 1px);
    transform: translateX(-50%);
    background: url(../img/dotArr.png) center center no-repeat;
    width: 24px;
    height: 15px;
}
@media (max-width:768px){
    .dotted {
        border-radius: 20px;
        padding: 20px 15px;
    }
    .dotted::after {
        width: 16px;
        height: 10px;
        background-size: 100%;
    }
}
/* company1 */
#company1 .sec2 {
    background: url(../img/com_sec2.jpg) center center no-repeat;
}
@media (min-width:768px){
    #company1 .sec2 {
        background-attachment: fixed;
    }    
}
@media (max-width:768px){
    #company1 .sec2 {
        background-size: cover;
    }
    #company1 .sec3 {
        text-align: center;
    }    
}

/* grays */
.grays .item {
    padding: 50px 15px;
    background-color: #f7f7f7;
}
@media (max-width:768px){
    .grays > li {
        margin: 5px 0;
    }
    .grays .item {
        padding: 30px 20px;
    }
    .grays > li img {
        width: 40px;
    }    
}

/* products */
.products {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.products > a {
    display: block;
    text-decoration: none;
    width: 25%;
    margin-bottom: 30px;
    padding: 0 15px;
}
.products > a .img {
    background-color: #f7f7f7;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    text-align: center;
}
.products > a .img img {
    mix-blend-mode:multiply;
    -webkit-transition: all 1.7s ease-out;
    -moz-transition: all 1.7s ease-out;
    -o-transition: all 1.7s ease-out;
    transition: all 1.7s ease-out;
}
.products > a:hover .img img {
    transform: scale(1.1);
}
@media (max-width:992px) {
    .products > a {
        width: 33.33333%;
    }
}
@media (max-width:768px) {
    .products {
        margin: 0 -5px;
    }
    .products > a {
        width: 50%;
        padding: 0 5px;
    }
    .products > a .img {
        border-radius: 10px;
    }
}

/* productsDetail */
.productsDetail .fbox {
    border: 2px solid #ddd;
    padding: 30px;
}
.productsDetail .img {
    background-color: #f7f7f7;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    text-align: center;
}
.productsDetail .img img {
    mix-blend-mode:multiply;
}
@media (min-width:768px) {
    .productsDetail .fbox .lft {
        padding: 20px 40px;
    }
}
@media (max-width:768px) {
    .productsDetail .fbox {
        padding: 30px 15px;
    }
    .productsDetail .fbox > div {
        width: 100%;
    }
    .productsDetail .fbox .txt {
        padding-bottom: 15px;
    }
}


/* chkPobj */
.chkPobj {
    display: flex;
    align-items: start;
}
.chkPobj span:not(.icon) {
    width: calc(100% - 30px);
    padding-left: 10px;
}
.chkPobj span {
    vertical-align: middle;
    display: inline-block;
}
.chkPobj .icon {
    color: #1493fe;
    background-color: rgba(187, 215, 238, 0.3);
    border-radius: 50%;
    width: 30px;
    line-height: 25px;
    padding-top: 2px;
    text-align: center;
    margin-right: 5px;
}
/* btCon */
.btCon {
    padding: 60px 0;
    border-bottom: 1px solid #ddd;
}
@media (max-width:768px) {
    .btCon {
        padding: 25px 0;
    }
}

/* table_basic */
.table.table_basic {
    border-top: 2px solid #333;
    border-bottom: 2px solid #333;
}
.table.table_basic tr th,
.table.table_basic tr td {
    font-size: 20px;
    text-align: center;
    font-weight: 300;
    color: #333;
    border: 1px solid #aaa;
    padding: 15px;
    vertical-align: middle;
}
.table.table_basic tr th:first-child,
.table.table_basic tr td:first-child {
    border-left: 0px;
}
.table.table_basic tr th:last-child,
.table.table_basic tr td:last-child {
    border-right: 0px;
}
.table.table_basic tr th.imp,
.table.table_basic tr td.imp {
    background-color: #1493fe;
    color: #fff;
    border-width: 1px;
}
.table.table_basic tr th {
    font-weight: 600;
}
.table.table_basic thead tr th {
    /* border-color: #222; */
    background-color: #f7fafc;
}
.table.table_basic thead tr th span {
    display: block;
    font-size: .75em;
    font-weight: 300;
}
.table.table_basic tbody tr th {
    background-color: #f8f8f8;
}
.table.table_basic tr.this td {
    background-color: #fdf9ef;
}
@media (max-width:768px) {
    .table.table_basic tr th,
    .table.table_basic tr td {
        font-size: 13px;
        padding: 8px 5px;
    }
}

/* hList */
.hList {
    margin-top: 10px;
}
.hList > li {
    position: relative;
    padding-left: 13px;
    margin: 3px 0;
}
.hList > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 13px;
    width: 3px;
    height: 3px;
    background-color: #7c8492;
}

.productcate span{

    border-radius: 4px;
    background: #016d32;
    color: #fff;
    padding: 3px 8px;
}
.productcate span.cate2{
    background: #3f016d;
}
.productcate span.cate3{
    background: #6d0101;
}
.productcate span.cate4{
    background: #938200;
}
.productcate span.cate5{
    background: #00cd4a;
}
.productcate span.cate6{
    background: #000ecd;
}
.proprice h3 span{
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 3px 8px;
    margin-right: 12px;
}



/* msec8 */
ul.picklist li h5 {
    margin-top: 15px;
    display: inline-block;
}
ul.picklist li h5 {
    background-color: #d8020e;
    color: #fff;
    padding: 5px 13px;
    border-radius: 50px;
    letter-spacing: -0.04em;
}
@media (min-width:768px){
    ul.picklist li h5 {
        font-size: 18px;
    }
}
@media (max-width:768px){
    ul.picklist li {
        margin: 15px 0;
    }
    ul.picklist li img {
        max-width: 60%;
    }
    ul.picklist li h5 {
        padding: 5px 8px;
        font-size: 14px;
    }
}



/*msec3*/
 .fr_pr_wrp {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.5rem;
}
 .fr_pr_wrp > li {
    width: 20%;
    padding: 1.5rem;
}
 .fr_pr_wrp .fr_pr {
    position: relative;
}
 .fr_pr_wrp .fr_pr .p_box {
    background-color: #e0e4ef;
    border-radius: 10px;
        padding: 20px 40px;
}
 .fr_pr_wrp li:nth-child(even) .fr_pr .p_box {
    background-color: #eee;
}
 .fr_pr_wrp .fr_pr .p_box h5 {
    font-weight: 500;
}
 .fr_pr_wrp .fr_pr .p_box strong {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    display: inline-block;
    margin-left: -50px;
    background-color: #034da2;
    padding: 5px 10px;
    position: relative;
    z-index: 10;
    margin-top: -29px;
    margin-bottom: 10px;
}
 .fr_pr_wrp .fr_pr .p_box strong:after {
    content: "";
    position: absolute;
    left: 3px;
    bottom: -7px;
    border-style: solid;
    border-width: 7px;
    border-color: transparent transparent #aaa transparent;
    
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
 .fr_pr_wrp .fr_pr .p_box img {
        width: 50px;
}
 .fr_pr_wrp .fr_pr .fr_arr {
    position: absolute;
    left: -10px;
    top: 0;
    background: url(../img/fr_arr.png) center center no-repeat;
    width: 48px;
    height: 100%;
}
@media (min-width:769px){
   .fr_pr_wrp li:nth-child(6) .fr_pr .fr_arr {
        position: absolute;
        left:0;
        top: -10px;
        background: url(../img/fr_arr_bt.png) center center no-repeat;
        width: 100%;
        height: 48px;
        z-index: 3;
    }
}
@media (max-width:768px){
   .fr_pr_wrp > li {
        width: 100%;
    }
   .fr_pr_wrp li:nth-child(4) {
        order: 6
    }
   .fr_pr_wrp li:nth-child(5) {
        order: 5
    }
   .fr_pr_wrp li:nth-child(6) {
        order: 4
    }
   .fr_pr_wrp li .fr_pr .fr_arr {
        position: absolute;
        left:0;
        top: -15px;
        background: url(../img/fr_arr_bt.png) center center no-repeat;
        width: 100%;
        height: 48px;
        z-index: 3;
        background-size: 60px;
    }
   .fr_pr_wrp li:first-child .fr_pr .fr_arr {
        display: none;
    }
   .fr_pr_wrp li .fr_pr img {
        width: 250px;
    }
   .fr_pr_wrp .fr_pr .p_box {
        padding: 30px;
    }
   .fr_pr_wrp .fr_pr .p_box strong {
        margin-left: -40px;
        margin-bottom: 15px;
    }
   .fr_pr_wrp .fr_pr .p_box img {
        width: 60px;
        margin-top: -30px;
    }
}



/* remotBan */
a.remotBan {
    display: block;
    text-decoration: none;
}
a.remotBan h5 {
    line-height: 1.4em;
    margin-top: 5px;;
}
@media (min-width:768px){
    a.remotBan .lft {
        width: 50%;
        padding: 60px 0px 60px 60px;
    }
    a.remotBan {
        background: url(../img/remotBan.png) right center no-repeat;
        background-color: #fffac2;
    }
}
@media (max-width:992px){
    a.remotBan {
        background-size: 50%;
    }
}
@media (max-width:768px){
    a.remotBan {
        background-color: #fffac2;
    }
    a.remotBan .lft {
        text-align: center;
        padding: 30px 30px 10px;
    }
    a.remotBan .rt {
        padding: 0 30px 20px 30px;
    }
    a.remotBan .rt img {
        width: 400px;
    }
    a.remotBan h5 {
        font-size: 14px;
    }
}

/* btnSet */
.btnSet .btnItem {
    display: inline-block;
    line-height: 40px;
    padding: 0 20px;
    border: 2px solid #000;
    border-radius: 100px;
    text-decoration: none;
    color: #000;
    font-size: 17px;
    font-weight: 500;
}
.btnSet .btnItem.pt {
    border-color: #7bc466;
    background-color: #7bc466;
}
.btnSet .btnItem span {
    display: inline-block;
    vertical-align: middle;
    width: 9px;
    height: 14px;
    background: url(../img/btn_arr.png) center center no-repeat;
    margin-bottom: 2px;
    margin-left: 5px;
}
@media (max-width:768px){
    .btnSet .btnItem {
        padding: 0 15px;
        line-height: 30px;
        font-size: 13px;
    }
    .btnSet .btnItem.pt {
        border-color: #7bc466;
        background-color: #7bc466;
    }
    .btnSet .btnItem span {
        width: 9px;
        height: 14px;
        background-size: 6px !important;
    }
}