@charset "UTF-8";

.p-guide-detail__contents {
  margin-top: 45px;
  padding-bottom: 160px;
  padding-inline: 20px;
}

.p-guide-detail__inner {
  background-color: #fff;
  border-radius: 10px;
  padding: 60px 20px;
}

.page-detail__header {
  align-items: center;
  color: #323232;
  display: flex;
  gap: 20px;
}
.detail-text {
  color: #393939;
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 1.2px;
  line-height: 2.2;
  padding-top: 41px;
}

.detail__btn {
  background: linear-gradient(104deg, #f44d95 0%, #e88686 50%, #f44d95 100%);
  background-position: 0 0;
  background-size: 200% 100%;
  border: none;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.12px;
  line-height: 1.43;
  margin-inline: auto;
  margin-top: 74px;
  min-width: 200px;
  padding-block: 15px;
  padding-inline: 10px;
  text-align: center;
  transition: background-position 0.4s ease;
  width: -moz-fit-content;
  width: fit-content;
}
.detail__btn:hover {
  background-position: 100% 0;
  color: #fff;
  opacity: 1;
}

.post-ttl {
  align-items: center;
  border-bottom: 1.5px solid rgba(139, 139, 139, 0.3);
  display: flex;
  font-size: 20px;
  font-weight: bold;
  gap: 14px;
  letter-spacing: 1.32px;
  line-height: 1.3333333333;
  margin-top: 47px;
  padding-bottom: 18px;
  padding-top: 10px;
}
.post-ttl::before {
  background: #e40265;
  border-radius: 5px;
  content: "";
  display: inline-flex;
  flex-shrink: 0;
  height: 15px;
  width: 15px;
}

.post-detail__content > h2:first-child {
  margin-top: 0;
}
.post-detail__content h2 {
  align-items: center;
  background-color: #f4f3f5;
  display: flex;
  font-size: 18px;
  gap: 10px;
  letter-spacing: 1.2px;
  margin-bottom: 35px;
  margin-top: 53px;
  padding: 12px 20px 10px;
}
.post-detail__content h2::before {
  background: #e40265;
  content: "";
  display: inline-flex;
  flex-shrink: 0;
  height: 13px;
  width: 5px;
}
.post-detail__content h3 {
  border-bottom: 1.5px solid #e40265;
  font-size: 16px;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
  margin-top: 83px;
  padding-bottom: 12px;
  width: -moz-fit-content;
  width: fit-content;
}

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

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

@media (min-width: 1024px) {
  .p-guide-detail__contents {
    margin-inline: auto;
    margin-top: 80px;
    max-width: 1100px;
    width: 100%;
  }
  .p-guide-detail__inner {
    padding: 77px 80px 100px 80px;
  }
  .post-ttl {
    font-size: 24px;
  }
  .post-detail__content h2 {
    font-size: 20px;
  }
  .post-detail__content h3 {
    font-size: 18px;
  }
}