.page-title span::after {
  content: "PAMPHLET";
}

.pamphlet-con {
  width: 820px;
  margin: 0 auto;
  display: flex;
  gap: 120px;
}
@media screen and (max-width: 599px) {
  .pamphlet-con {
    width: 100%;
    flex-direction: column;
    gap: 40px;
  }
}
.pamphlet-con__img {
  width: 300px;
  aspect-ratio: 300/424;
  position: relative;
}
@media screen and (max-width: 599px) {
  .pamphlet-con__img {
    width: 220px;
    margin: 0 auto;
  }
}
.pamphlet-con__img::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 300px;
  aspect-ratio: 300/424;
  background-image: url(../image/company/pamphlet/img.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  filter: blur(20px);
  z-index: -1;
}
@media screen and (max-width: 599px) {
  .pamphlet-con__img::after {
    width: 220px;
  }
}
.pamphlet-con__txt {
  flex: 1;
  padding-top: 60px;
}
@media screen and (max-width: 599px) {
  .pamphlet-con__txt {
    padding: 0px;
  }
}