@charset "UTF-8";

.page-detail__inner {
  max-width: 940px;
  padding-inline: 20px;
  margin-inline: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .page-detail__inner {
    max-width: 1000px;
    padding-inline: 50px;
    padding-top: 91px;
    padding-bottom: 100px;
  }
}

.page-detail__header > p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

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

.detail__btn {
  display: block;
  margin-top: 74px;
  max-width: 218px;
  width: 100%;
  font-weight: 500;
  padding-block: 12px;
  padding-inline: 10px;
  background: #48290f;
  border-radius: 20px;
  color: #ffffff;
  text-align: center;
  margin-inline: auto;
  border: 1px solid #48290f;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
}
.detail__btn:hover {
  color: #48290f;
  background: #fff;
}

.post-ttl {
  margin-top: 47px;
  font-size: 22px;
  line-height: 4;
  letter-spacing: 1.32px;
  line-height: 1.5454545455;
  font-weight: normal;
  padding-bottom: 16px;
  border-bottom: 1.5px solid rgba(139, 139, 139, 0.3);
  padding-left: 29px;
  position: relative;
}
.post-ttl::before {
  content: "";
  position: absolute;
  background: #48290f;
  width: 8px;
  height: 57%;
  top: 6px;
  left: 0;
}

.post-detail__content > h2:first-child {
  margin-top: 0;
}
.post-detail__content h2 {
  margin-top: 53px;
  font-size: 18px;
  letter-spacing: 0.06em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  .post-detail__content h2 {
    gap: 17px;
  }
}
.post-detail__content h2::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 5px;
  background: #48290f;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.post-detail__content h3 {
  margin-top: 83px;
  font-size: 18px;
  letter-spacing: 0.06em;
  padding-bottom: 12px;
  border-bottom: 1.5px solid #48290f;
  margin-bottom: 40px;
}

.post-detail__content img,
.page-detail__item img {
  margin: 40px auto 10px;
  max-width: 600px;
  height: 281px;
  margin-inline: auto;
  display: block;
  aspect-ratio: 600/281;
  border-radius: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px) {
  .post-detail__content img,
  .page-detail__item img {
    margin: 75px auto 20px;
    width: 43.9238653001vw;
  }
}