.p-detail {
  background: #fff;
  padding-bottom: calc(140 / 1366 * 100vw);
  padding-top: calc(120 / 1366 * 100vw);
}

.p-detail__container {
  margin-inline: auto;
  max-width: 980px;
  padding-inline: 20px;
  width: 100%;
}

.page-detail__header {
  align-items: center;
  display: flex;
  gap: 20px;
}

.page-detail__container .pdfLink {
  font-weight: bold;
  padding-top: 41px;
}
.page-detail__container .movie {
  padding-top: 41px;
}
.page-detail__container .movie > iframe {
  width: 100%;
}

.detail-text,
.comment {
  color: #505050;
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 1.2px;
  line-height: 2.2;
  padding-top: 41px;
}

.detail__btn {
  background-color: #d4d9e6;
  border: 1px solid #d4d9e6;
  border-radius: 20px;
  color: #163b85;
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-inline: auto;
  margin-top: 74px;
  max-width: 218px;
  padding-block: 12px;
  padding-inline: 10px;
  text-align: center;
  transition: border 0.3s ease;
  width: 100%;
}
.detail__btn:hover {
  border: 1px solid #163b85;
  color: #163b85;
  opacity: 1;
}

.post-ttl {
  border-bottom: 1.5px solid rgba(139, 139, 139, 0.3);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1.32px;
  line-height: 1.4545454545;
  margin-top: 47px;
  padding-bottom: 18px;
  padding-left: 29px;
  padding-top: 10px;
  position: relative;
}
.post-ttl::before {
  background: #163b85;
  content: "";
  height: 57%;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.post-detail__content > h2:first-child {
  margin-top: 0;
}
.post-detail__content h2 {
  align-items: center;
  display: flex;
  font-size: 20px;
  font-weight: bold;
  gap: 10px;
  letter-spacing: 0.06em;
  margin-bottom: 35px;
  margin-top: 53px;
}
.post-detail__content h2::before {
  background: #f8d369;
  border-radius: 50%;
  content: "";
  display: inline-flex;
  flex-shrink: 0;
  height: 12px;
  width: 12px;
}
.post-detail__content h3 {
  border-bottom: 1.5px solid #f8d369;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
  margin-top: 83px;
  padding-bottom: 12px;
}

.post-detail__content img,
.page-detail__item img {
  aspect-ratio: 592/281;
  border-radius: 5px;
  display: block;
  height: 281px;
  margin: 40px auto 10px;
  margin-inline: auto;
  max-width: 592px;
}

@media (min-width: 768px) {
  .post-detail__content h2 {
    gap: 17px;
  }
  .post-detail__content img,
  .page-detail__item img {
    margin: 75px auto 20px;
    width: 43.3382137628vw;
  }
}