@charset "UTF-8";

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

.detail-text {
  color: #00132b;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: normal;
  line-height: calc(32 / 14);
  padding-top: 41px;
}

.detail__btn {
  background-color: #2059aa;
  border: 1px solid #2059aa;
  border-radius: 20px;
  color: #fff;
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-inline: auto;
  margin-top: 74px;
  max-width: 183px;
  padding-block: 12px;
  padding-inline: 10px;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease;
  width: 100%;
}
.detail__btn:hover {
  background: #fff;
  color: #333333;
}
.detail__btn.pdfLink {
  background-color: #333333;
  border: 1px solid #333333;
  color: #fff;
}
.detail__btn.pdfLink:hover {
  background: #fff;
  color: #333333;
}

.post-ttl {
  border-bottom: 1.5px solid #d3d3d3;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.45;
  margin-top: 47px;
  padding-bottom: 18px;
  padding-left: 29px;
  padding-top: 10px;
  position: relative;
}
.post-ttl::before {
  background-color: #215aab;
  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: 500;
  gap: 10px;
  letter-spacing: 0.06em;
  margin-bottom: 35px;
  margin-top: 53px;
}
.post-detail__content h2::before {
  background-color: #215aab;
  border-radius: 3px;
  content: "";
  display: inline-flex;
  flex-shrink: 0;
  height: 18px;
  width: 18px;
}
.post-detail__content h3 {
  border-bottom: 1.5px solid #215aab;
  font-size: 18px;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
  margin-top: 83px;
  padding-bottom: 12px;
}

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

.imgWrap {
  display: flex;
  flex-wrap: wrap;
}

.imgWrap .imgBx {
  border: 1px solid #acacac;
  margin: 1%;
  padding: 0 0 15%;
  position: relative;
  width: 18%;
}

.imgWrap .imgBx img {
  bottom: 0;
  height: auto;
  left: 0;
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}

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