/* sub-title */
.products-sub-title {
    font-weight: 300;
    margin-bottom: 20px;
}
.sub-section .sub-title {
  padding: 0.2em 0.5em;
  background: #f5f5f5;
  margin-bottom: 20px;
}
.sub-section .h3-title{
  font-size: 1.8rem;
  font-weight: normal;
  margin-top: 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ccc;
}

@media print, screen and (min-width: 768px){
  .products-sub-title {
    font-size: 2.8rem;
  }
  .sub-section .sub-title {
    font-size: 2.6rem;
    font-weight: 300;
  }
}
@media only screen and (max-width: 767px){
  .products-sub-title {
    flex-shrink: 0;
    font-size: 2.2rem;
  }
  .sub-section .sub-title {
      font-size: 1.8rem;
      font-weight: 300;
  }
  .sub-section .h3-title{
    font-size: 1.6rem;
  }
}

/*  */
.pcOnly{display: block;}
.spOnly{display: none;}
@media only screen and (max-width: 767px){
  .pcOnly{display: none;}
  .spOnly{display: block;}
}

section{
  margin-top: 3rem;
  margin-bottom: 50px;
}
.sub-section .inner {
  padding: 0 15px;
}
@media only screen and (max-width: 767px){
  section{
    margin-bottom: 40px;
  }
  .sub-section .inner {
    padding: 0;
  }
}

/* linkAr */
.linkAr{
	background: none;
	padding: 0;
	position: relative;
	padding-left: 1em;
}
.linkAr::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    display: inline-block;
    font-size: 1.2em;
    line-height: 1;
    position: absolute;
    top: 10px;
    left: 0;
    margin-top: -0.4em;
}

/* infoIcon */
.infoIcon {
  display: inline-block;
  background: url(/support/images/ico_info_pink.png) no-repeat left 2px;
  padding-left: 25px;
}

/* table_area */
.table_area{
  display: flex;
  flex-wrap: wrap;
}
.table_area .col2{
  width: 40%;
  display: flex;
  align-items: center;
  border-top: #9c9c9c 1px solid;
  border-left: #9c9c9c 1px solid;
}
.table_area .col2:nth-child(even){
  border-right: #9c9c9c 1px solid;
}
.table_area .col2:nth-last-child(-n+2){
  border-bottom: #9c9c9c 1px solid;
}
.table_area .col2 .heading{
  width: 6em;
  background: #eeeddf;
  text-align: center;
  padding: 5px;
  border-right: #9c9c9c 1px solid;
}
.table_area .col2 .item{
  padding: 5px;
}
.table_area .col2 .item a{
  color: #000099;
}
.table_area .col2 .item a:hover{
  color: #FF6633;
  text-decoration: none;
}

@media only screen and (max-width: 767px){
  .table_area{
    flex-direction: column;
  }
  .table_area .col2{
    width: 100%;
    border-right: #9c9c9c 1px solid;
  }
  .table_area .col2:nth-last-child(-n+2){
    border-bottom: none;
  }
  .table_area .col2:last-child{
    border-bottom: #9c9c9c 1px solid;
  }
}