/* CSS Document */
.listArea .dataItem {
  border-bottom: 1px solid #d9d9d9;
}
.listArea .dataItem.header {
  background-color: #dfdfdf;
  padding: 14px 0;
}
.listArea .dataItem.header .itemCategory,
.listArea .dataItem.header .itemTitle,
.listArea .dataItem.header .itemInfo {
  color: #333;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.54px;
}
.listArea .dataItem:not(.header) {
  padding: 20px 0;
}
.listArea .dataItem:not(.header) .itemCategory {
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.75px;
  color: #fff;
  background-color: #2a59a7;
  padding: 8px;
  font-weight: 500;
}
.listArea .dataItem:not(.header) .itemTitle {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 1px;
  color: #2a59a7;
  padding-top: 4px;
}
.listArea .dataItem:not(.header) .itemTitle a {
  color: #2a59a7;
}
@media (min-width: 1181px) {
  .listArea .dataItem:not(.header) .itemTitle a:hover {
    color: #d8df3f;
  }
}
.listArea .dataItem:not(.header) .itemInfo {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  row-gap: 10px;
}
.listArea .dataItem:not(.header) .itemInfoTitle {
  display: inline-flex;
  align-items: flex-start;
  -moz-column-gap: 8px;
       column-gap: 8px;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.32px;
  color: #4c4c4c;
  font-weight: 500;
  font-family: "Noto Sans SC", "Noto Sans SC", "Microsoft JhengHei", sans-serif;
}
.listArea .dataItem:not(.header) .itemInfoTitle::before {
  content: "";
  position: relative;
  display: inline-block;
  font-family: fontAwesome;
  font-size: 18px;
  width: 20px;
  text-align: center;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 840px) {
  .listArea .dataItem:not(.header) .itemInfoTitle {
    font-size: 15px;
  }
  .listArea .dataItem:not(.header) .itemInfoTitle::before {
    font-size: 17px;
  }
}
@media (max-width: 400px) {
  .listArea .dataItem:not(.header) .itemInfoTitle {
    font-size: 14px;
  }
  .listArea .dataItem:not(.header) .itemInfoTitle::before {
    font-size: 16px;
  }
}
.listArea .dataItem:not(.header) .itemInfoTitle.tel {
  color: #2a59a7;
}
.listArea .dataItem:not(.header) .itemInfoTitle.tel::before {
  content: "\f095";
}
@media (min-width: 1181px) {
  .listArea .dataItem:not(.header) .itemInfoTitle.tel:hover {
    color: #d8df3f;
  }
}
.listArea .dataItem:not(.header) .itemInfoTitle.fax::before {
  content: "\f1ac";
}
.listArea .dataItem:not(.header) .itemInfoTitle.mail {
  color: #2a59a7;
}
.listArea .dataItem:not(.header) .itemInfoTitle.mail::before {
  content: "\f0e0";
}
@media (min-width: 1181px) {
  .listArea .dataItem:not(.header) .itemInfoTitle.mail:hover {
    color: #d8df3f;
  }
}
.listArea .dataItem:not(.header) .itemInfoTitle.address::before {
  content: "\f08d";
}
.listArea .dataItem:not(.header) .itemInfoTitle.website {
  color: #2a59a7;
}
.listArea .dataItem:not(.header) .itemInfoTitle.website::before {
  content: "\f0ac";
}
@media (min-width: 1181px) {
  .listArea .dataItem:not(.header) .itemInfoTitle.website:hover {
    color: #d8df3f;
  }
}
.listArea .item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 40px;
}
.listArea .itemCategory {
  width: 150px;
  text-align: center;
}
.listArea .itemTitle,
.listArea .itemInfo {
  flex: 1;
}
@media (max-width: 1180px) {
  .listArea .dataItem.header {
    display: none;
  }
  .listArea .item {
    flex-wrap: wrap;
    gap: 30px;
  }
  .listArea .itemTitle {
    flex: auto;
    width: calc(100% - 150px - 30px);
  }
  .listArea .itemInfo {
    flex: auto;
    width: 100%;
  }
}
@media (max-width: 840px) {
  .listArea .dataItem:not(.header) .itemCategory,
  .listArea .dataItem:not(.header) .itemInfo {
    font-size: 15px;
  }
  .listArea .dataItem:not(.header) .itemTitle {
    font-size: 18px;
  }
  .listArea .item {
    gap: 24px;
  }
  .listArea .itemTitle {
    width: calc(100% - 150px - 24px);
  }
}
@media (max-width: 540px) {
  .listArea .dataItem:not(.header) .itemTitle {
    width: 100%;
    padding-top: 0;
  }
}