﻿@charset "utf-8";

/*** Common CSS ***/
body {
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Helvetica, Arial, sans-serif;
    background: rgba(255, 255, 255, 1);
    font-size: 18px;
    color: rgba(51, 51, 51, 1);
    margin: 0;
    padding: 0;
    width:100%;
}
* {
    box-sizing: border-box;
}
img {
    border: none;
    margin: 0;
    padding: 0;
    vertical-align: bottom;
}
a {
    color: rgba(0, 104, 183, 1);
    text-decoration: none;
}
ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
}
dl, dt, dd {
    margin: 0;
    padding: 0;
}
h1, h2, h3, h4 {
    margin: 0;
    padding: 0;
    font-weight: normal;
}
p {
    margin-top: 0.8125rem;
    line-height: 1.4;
}
form {
    margin: 0;
    padding: 0;
}
input[type="text"],
input[type="search"] {
    border: none;
    background: rgba(255, 255, 255, 1);
    border-radius: 3px;
    padding: 7px 8px;
    font-size: 1rem;
}

/** TopWarningText **/

.top-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    top: -20px;
}

.sitenotice-top {
    margin-top: 0;
    width: 100%;
    padding: 0 5px;
}

.message-container {
    width: 100%;
    margin-bottom: 16px;
    border: solid 2px #FF0000;
    background-color: #FFE2E2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 5px 5px 5px 10px;
}

    .message-container .message-title {
        font-size: 0.95rem;
        font-weight: bold;
    }

    .message-container .message-description {
        font-size: 0.75rem;
        align-self: flex-start;
        white-space: pre-line;
    }

/*** Contents ***/
.contentbase {
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: table;
}
    /*** clearfix ***/
    .clearfix::after{
        content: "";
        clear: both;
        display: block;
    }
    .search::after {
        content: "";
        display: block;
        height: 0;
        clear: both;
        visibility: hidden;
        margin: 0;
        padding: 0;
    }

/*** siteheader ***/
.siteheader {
    width: 100%;
    margin-bottom: 5px
}
.siteheader_title {
    background: rgba(0, 104, 183, 1);
    width: 100%;
    margin: 0;
    padding: 0;
}
.siteheader_title span {
    display: block;
    color: rgba(255, 255, 255, 1);
    font-size: 0.75rem;
    line-height: 1;
    margin: 0 auto;
    padding: 8px 0 8px 5px;
}
.header_logo_banner {
    width: 100%;
}
.header_logo_banner h1,
.header_logo_banner .top_logo {
    width:30%;
    padding:0 0 5px 5px;
}
.header_logo_banner h1 img,
.header_logo_banner .top_logo img{
    width:100%;
    max-width: 268px;
    vertical-align:middle;
}

/*** Privacy Policy Banner ***/
#our_policy {
    width: 100%;
    background-color: white;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
}
.our_policy_content {
    width: 100%;
    margin: 0px auto;
    padding-left: 10px;
    position: relative;
    font-size: 0.75rem;
}
#our_policy_btn {
   text-align: center;
   font-size: 0.75rem;
   margin-bottom: 10px;
}
.understandPolicy {
    margin-right: 5px;
}
.understandPolicy:enabled {
    cursor: pointer;
}
.displayPolicy{
    margin-left: 5px;
}
.displayPolicy:enabled {
    cursor: pointer;
}
.our_policy_title {
    font-weight: bold;
    background: linear-gradient(transparent 60%, rgba(0, 104, 183, 0.5) 60%);
}

/*** Search Banner ***/
.header_search {
    width: 100%;
    /*margin-bottom:5px*/
}
.search {
    width: 100%;
    padding: 9px 0;
    background: rgba(102, 102, 102, 1);
}
.search input[type="text"].required {
    display: inline-block;
    float: left;
    margin-left:10px;
    width: 75%;
}
.search input[type="text"].dist_required{
    margin-left:10px;
    width:95%;
}
#search-btn {
    float: left;
    border: 0px;
    width: 15%;
    height: 32px;
    margin-left: 10px;
    background: url(../images/header/btn_search.png) left no-repeat;
    cursor: pointer;
    -moz-background-size:contain;
    background-size:contain;
}

/*** Search Banner Menu ***/
.search_menu{   
    width:100%; 
    margin-bottom:5px;       
}
.search_menu ul{
    display:table;
    font-size:0.8rem;        
    list-style:none;       
    border-collapse:separate;
    border-spacing:10px;
}
.search_menu li {   
    width:50%;
    display:table-cell;    
    text-align:center;      
}
.search_menu li a{
    display:block;
    padding:7px 0;
    border-radius:5px;
    color:#FFF;
    background:#CCC;
    border: 1px solid #fff; 
}
.search_menu li a.on{
    background-color:#367cdc;
}

/*** company search layout ***/
.maincontent_searchcompany_top {
    display: block;
    width: 100%;
    padding: 8px 0 5px 10px;
    font-size: 1.125rem;
    background: rgba(0, 104, 183, 1);
    border-bottom: solid 4px rgba(51, 51, 51, 1);
    color: #FFF;
    margin: 10px 0;
}
.maincontent_searchcompany {
    width: 100%;
}
.maincontent_searchcompany h1.searchcompany_result {
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 10px 15px 9px;
    background: #ECECEC;
    font-size: 1.175rem;
}
.maincontent_searchcompany dl {
    width: 100%;      
    padding:5px 0;
}
.maincontent_searchcompany dl dt  {
    font-size: 0.95rem;
    background:rgba(236,236,236,1);
    padding: 12px 0 12px 10px;
}
.maincontent_searchcompany dl dt .company a{
    display:block;
}
.maincontent_searchcompany dl dt .company a::after {
    content: '';
    display: inline-block;
    width: 1rem;
    height: 1rem;
    -webkit-mask: url(../images/icon/icon_ExLink01.svg) no-repeat right / 0.75rem 0.75rem;
    mask: url(../images/icon/icon_ExLink01.svg) no-repeat right / 0.75rem 0.75rem;
    margin-left: 2px;
    vertical-align: middle;
    background-color: currentColor;
}
.maincontent_searchcompany dl dd.productlist{
    font-size: 0.9rem;
    padding:10px 0 5px 7px;
}
.maincontent_searchcompany dl dd.productlist:before{
    content:url(../images/icon/ico_listMark03.png);
    padding-right:5px;
}
.maincontent_searchcompany dl dd.description{
    font-size: 0.8rem;
    padding:3px 0 5px 7px;
    line-height:1.7;
}

/*** Breadcrumbs ***/
.breadcrumb {
    font-size: 0.8rem;
    margin-top: 3px;
}
.breadcrumb ul {
    overflow: hidden;
    width: 100%;
}
.breadcrumb ul li {
    display: inline-block;
    margin-bottom: 1px;
}
.breadcrumb ul li a {
    position: relative;
    display: inline-block;
    padding: 3px 5px 3px 18px;
    text-decoration: underline;
    color: #FFFFFF;
    background-color: rgba(0, 104, 183, 1);
    border-radius: 5px 3px 3px 5px;
}
.breadcrumb ul li:first-child a {
    padding-left: 10px;
}
.breadcrumb ul li a::before,
.breadcrumb ul li a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -14px;
    margin-top: -10px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid transparent;
}
.breadcrumb ul li a::before {
    z-index: 1;
    right: -18px;
    border-left-color: #FFFFFF;
}
.breadcrumb ul li a::after {
    z-index: 2;
    border-left-color: rgba(0, 104, 183, 1);
}
.breadcrumb ul li:last-child {
    color: #FFFFFF;
    font-weight: bold;
    background-color: rgba(55, 175, 225, 1);
    padding: 3px 10px 3px 15px;
    border-radius: 5px;
}

/*** MainContent ***/
.maincontent_h1 {
    display: block;
    width: 100%;
    padding: 8px 0 5px 10px;
    font-size: 1.125rem;
    background: rgba(0, 104, 183, 1);
    border-bottom: solid 4px rgba(51, 51, 51, 1);
    color: #FFF;
    margin-top: 10px;
}
.maincontent_h2{
    display: block;
    width: 100%;
    padding: 8px 0 5px 10px;
    font-size: 1.125rem;
    background: rgba(0, 104, 183, 1);
    border-bottom: solid 4px rgba(51, 51, 51, 1);
    color:#FFF;
    margin-top:10px;
}
.maincontent_h2 span {
    display: inline-block;
    float: left;
}
.maincontent_h2 .h2_icon {
    width: 37px;
    height: 41px;
}
.maincontent_h2 .h2_txt {
    padding-top: 8px;
    color: rgba(255, 255, 255, 1);
}

/*** PageTop Link Button ***/
.btn_pagetop {
    display: block;
    position: fixed;
    left: 85%;
    bottom: 40px;
    width: 44px;
    height: 40px;
}
.btn_pagetop a {
    display: inline-block;
    width: 44px;
    height: 40px;
    background: url(../images/btn/btn_pagetop.png) center no-repeat ;
}

/*** footer ***/
.footer {
    width: 100%;
}
.categroyTool ul {
    display: flex;
    flex-wrap: wrap;
    width:100%;    
    margin-top:20px
}
.categroyTool li{
    display: flex;
    width:33.3%;
    height: 57px;
    border-bottom:solid 1px #CCC;
    border-right:solid 1px #CCC;
}
.categroyTool li.smallfont,
.categroyTool li.s2font{
    font-size: 0.8rem;
}
.categroyTool li:nth-child(-n+3){
    border-top:solid 1px #CCC;
}
.categroyTool li:nth-child(3n) {
    width:33.4%;
    border-right:none;
}
.categroyTool li a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; 
}
.icp_number {
    background: rgba(0, 104, 183, 1);
    text-align: center;
}
.icp_number a {
    display: inline-block;
    color: #FFFFFF;
    font-size: 0.75rem;
    padding: 5px 0;
}
.icp_number a::after {
    content: '';
    display: inline-block;
    width: 1rem;
    height: 1rem;
    -webkit-mask: url(../images/icon/icon_ExLink01.svg) no-repeat right / 0.8rem 0.8rem;
    mask: url(../images/icon/icon_ExLink01.svg) no-repeat right / 0.8rem 0.8rem;
    margin-left: 2px;
    vertical-align: middle;
    background-color: currentColor;
}

/*** Search Company ***/
.SearchCompanyTable{
    width:100%;
    background-color: #F0F1F1;
}
.SearchCompanyTable h2 {
    font-size: 1.1rem;
    color: rgba(255,255,255,1);
    background: rgba(0,104,183,1);
    padding: 7px 0;
    text-align: center;
    margin-bottom: 10px;
}
.SearchCompanyTable ul {
    font-size: 1rem;
    width: 95%;
    display: table;    
    margin:7px auto;
    border-bottom:dashed 1px #CCC
}
.SearchCompanyTable ul li {
    display: table-cell;
    text-align: center;
    width: 20%;
    padding:5px 2px;
}
.SearchCompanyTable ul li a {
    display: block;
    padding: 10px 0px;
    border:solid 1px;
    border-radius:5px;
    margin:5px 3px;
    background:#FFF;  
}
.SearchCompanyTable ul li a:hover {
    background: #0068b7;
    color: rgba(255,255,255,1);
}
#SearchTableMaker h3{
    background:#C1F2C1;
}

/*** Search Product ***/
.productsearch_h1 {
    line-height: 1.5;
    margin-bottom: 10px;
    padding: 10px 15px 9px;
    background: #ececec;
    font-size: 1.175rem;
}
.productSearch dl {
    margin-bottom: 15px;
}
.productSearch dt {
    font-size: 0.8125rem;
}
.productSearch dt .productSearch_head {
    display: block;
    color: rgba(255,255,255,1);
    font-weight: bold;
    padding: 9px 13px;
    background: rgba(102,102,102,1);
}
.productSearch dt .productSearch_head a {
    color: rgba(255,255,255,1);
}
.productSearch dt .productSearch_head a::after {
    content: '';
    display: inline-block;
    width: 1rem;
    height: 1rem;
    -webkit-mask: url(../images/icon/icon_ExLink01.svg) no-repeat right / 0.8rem 0.8rem;
    mask: url(../images/icon/icon_ExLink01.svg) no-repeat right / 0.8rem 0.8rem;
    margin-left: 2px;
    vertical-align: middle;
    background-color: currentColor;
}
.productSearch dt .new {
    padding: 0 3px;
    background: rgba(255,153,51,1);
    margin-right: 5px;
}
.productSearch dt .productSearch_maker {
  display: block;
  padding: 15px 10px;  
  background-position:right 10px top 15px;
  background-color: rgba(236, 236, 236, 1);
}
.productSearch dt .productSearch_maker a::after {
    content: '';
    display: inline-block;
    width: 1rem;
    height: 1rem;
    -webkit-mask: url(../images/icon/icon_ExLink01.svg) no-repeat right / 0.75rem 0.75rem;
    mask: url(../images/icon/icon_ExLink01.svg) no-repeat right / 0.75rem 0.75rem;
    margin-left: 2px;
    vertical-align: middle;
    background-color: currentColor;
}
.productSearch dd {
    display: table;
    width: 100%;
    padding: 9px 0 10px 0;
}
.productSearch dd span, .productSearch dd p {
    display: table-cell;
    vertical-align: top;
}
.productSearch dd .productSearch_img {
    width: 91px;
}
.productSearch dd .productSearch_txt {
    font-size: 0.8125rem;
    line-height: 1.4;
}

/*** Linked Category ***/
.linked_category {
    color: #FF9900;
    font-style: oblique;
    font-size: 0.75rem;
    text-shadow: 1px 1px 1px yellow;
    margin-left: 0.5em;
}

/*** Search Result CompanyDB ***/
.maincontent_searchresult_h3 {
    margin-top: 40px;
    color: rgba(255,255,255,1);
    padding: 8px 0 5px 15px;
    display: block;
    width: 100%;
    font-size: 1.125rem;
    background: rgba(0, 104, 183, 1);
    border-bottom: solid 4px rgba(51, 51, 51, 1);
}
.searchresult_companyDB {
    margin-bottom: 60px;
}
.searchresult_companyDB dl {
    width: 100%;
    border-bottom: solid 1px rgba(236,236,236,1);
    padding: 10px 3px;
}
.searchresult_companyDB dt {        
    font-size: 0.9rem;
    padding-bottom:3px
}
.searchresult_companyDB dt a::after {        
    content: '';
    display: inline-block;
    width: 1rem;
    height: 1rem;
    -webkit-mask: url(../images/icon/icon_ExLink01.svg) no-repeat right / 0.75rem 0.75rem;
    mask: url(../images/icon/icon_ExLink01.svg) no-repeat right / 0.75rem 0.75rem;
    margin-left: 2px;
    vertical-align: middle;
    background-color: currentColor;
}
.searchresult_companyDB dd {
    font-size: 0.75rem;
}

/*** Distributor Link ***/
.distributor {
    margin-bottom: 14px;
    padding: 0px 13px 10px 10px;
    border: solid 1px #CDCDCD;
    background: #F1F1F1;
    line-height: 1;
}
.distributor {
    border-top: none;
}
.distributor span {
    font-size: 0.84rem;
    font-weight: bold;
}

/*** AdContent ***/
/** Notable Products **/
.notable_products {
    padding-bottom: 40px;
}
.notable_products dl {
  margin-top: 10px;
}
.notable_products dt {
  font-size: 0.9rem;
 }
.notable_products dt .notable_products_head {
   display: block;
   color: rgba(255, 255, 255, 1);
   font-weight: bold;
   padding: 9px 13px;
   background: rgba(102, 102, 102, 1);
}
.notable_products_head::after {
    content: '';
    display: inline-block;
    width: 1rem;
    height: 1rem;
    -webkit-mask: url(../images/icon/icon_ExLink01.svg) no-repeat right / 0.8rem 0.8rem;
    mask: url(../images/icon/icon_ExLink01.svg) no-repeat right / 0.8rem 0.8rem;
    margin-left: 2px;
    vertical-align: middle;
    background-color: currentColor;
}
.notable_products dt .notable_products_maker {
    display: block;
    padding: 9px 13px;
    background: rgba(236, 236, 236, 1);
}
.notable_products dd {
    display: table;
    width: 100%;
    padding: 9px 0 10px 0;
}
.notable_products dd span,
.notable_products dd p {
    display: table-cell;
    vertical-align: top;
}
.notable_products dd .notable_products_img {
    width: 91px;
}
.notable_products dd .notable_products_img a {
    text-decoration: none;
    border: none;
}
.notable_products dd .notable_products_txt {
    font-size: 0.8125rem;
    line-height: 1.5;
    line-height: 1.4;
}

/** IP_Special **/
.IP_Special_ad ul {
    margin-top: 10px;
}
.IP_Special_ad ul.align_left {
    text-align: left;
}
.IP_Special_ad ul.align_center {
    text-align: center;
}
.IP_Special_ad li {
    display: inline-block;
    width: 250px;
    margin: 0 0 10px 10px;
}

/** Utility **/
.textCenter {text-align: center;}