.articleDetailHeader {
  width: 100%;
  background-color: #D3D3D3;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.articleDetailHeader .headerLeft {
  background-color: #D9D9D9;
  height: 145px;
  width: 145px;
  margin-left: 50px;
  border-radius: 100% 0% 100% 40%/100% 0% 100% 40%;
  transform: rotate(45deg);
}
@media (max-width: 480px) {
  .articleDetailHeader .headerLeft {
    margin-left: 20px;
  }
}
.articleDetailHeader .headerLeft p {
  line-height: 145px;
  text-align: center;
  transform: rotate(-45deg);
  color: #000000;
}
.articleDetailHeader .headerRight {
  height: 50px;
  width: 180px;
  margin-right: 50px;
  background-color: #919191;
}
@media (max-width: 480px) {
  .articleDetailHeader .headerRight {
    margin-right: 20px;
  }
}
.articleDetailHeader .headerRight a {
  line-height: 50px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  display: block;
}

.contentWrapper {
  width: 100%;
}
.contentWrapper .imageContainer {
  width: 50%;
  margin: 50px auto 80px;
}
.contentWrapper .imageContainer img {
  width: 100%;
  aspect-ratio: 1.5/1;
  -o-object-fit: fill;
     object-fit: fill;
}
.contentWrapper .textContainer {
  width: 90%;
  margin: 0 auto 80px;
}
.contentWrapper .textContainer .title {
  padding-bottom: 15px;
}/*# sourceMappingURL=page-article_detail.css.map */