@charset "UTF-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700&family=Noto+Serif+TC:wght@400;500;600&display=swap");
.contentBox .leftBox {
  padding: 0 50px 0 0;
}
@media (max-width: 1023px) {
  .contentBox .leftBox {
    padding: 0 0 30px 0;
  }
}
.contentBox .rightBox {
  padding: 0;
}

/*新訊列表*/
.newsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.newsList li {
  width: 25%;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 80px;
}
@media (max-width: 1180px) {
  .newsList li {
    width: 33.333%;
    margin-bottom: 30px;
  }
}
@media (max-width: 640px) {
  .newsList li {
    width: 50%;
  }
}
.newsList .item {
  position: relative;
}
.newsList .item::after {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -55px;
  top: 0;
  z-index: -1;
  -webkit-transform: translateY(0) rotate(50deg) scale(0);
          transform: translateY(0) rotate(50deg) scale(0);
  width: 110px;
  height: 142px;
  background-image: url("../images/dog.png");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.5, 0, 0, 1.25);
  transition: all 0.5s cubic-bezier(0.5, 0, 0, 1.25);
}
@media (min-width: 1181px) {
  .newsList .item:hover::after {
    opacity: 1;
    -webkit-transform: translateY(-70px) rotate(0) scale(1);
            transform: translateY(-70px) rotate(0) scale(1);
  }
}
.newsList .Img img {
  display: block;
  width: 100%;
}
.newsList .Txt {
  padding-top: 15px;
}
.newsList .Txt .text {
  font-size: 14px;
  margin-top: 10px;
  height: 40px;
}
.newsList .title {
  display: block;
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #4e310e;
}
.newsList .title span {
  display: inline-block;
  padding-bottom: 3px;
  background-image: url("../images/titleBottomBg.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 100% 1px;
}
.newsList .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5px;
}
.newsList .date {
  font-family: "Times New Roman", Serif;
  font-size: 13px;
  color: #313131;
}

.newsDate {
  padding: 5px 0;
  font-size: 12px;
  color: #818181;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.newsDate strong {
  font-weight: 400;
}
.newsDate strong i {
  margin-right: 2px;
  font-size: 14px;
  color: #AE4233;
}
.newsDate b {
  margin-left: 3px;
}

/*內頁*/
/********標題區*******/
.titleArea {
  position: relative;
  margin-bottom: 30px;
  padding: 15px 50px 15px 0;
  border-bottom: 1px solid #999;
}
.titleArea h1 {
  font-size: 19px;
  font-weight: 400;
  color: #2f2f2f;
  overflow: hidden;
}
.titleArea h1 strong {
  display: block;
  font-weight: 400;
}
.titleArea h1 b {
  /*標題區左-訊息日期*/
  margin-left: 5px;
  font-size: 12px;
  font-weight: 400;
  color: #a3a3a3;
}
.titleArea .btn-fb {
  /*fb*/
  float: left;
}
.titleArea a.back {
  /*回上頁*/
  float: right;
  display: block;
  margin-left: 5px;
  font-size: 10pt;
  color: #06F;
  cursor: pointer;
}

.backBtn a {
  position: absolute;
  top: calc(50% - 23px);
  right: 0;
  width: 46px;
  height: 46px;
  line-height: 46px;
  color: #2f2f2f;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #999;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (min-width: 1181px) {
  .backBtn a:hover {
    color: #fff;
    background-color: #999;
  }
}