@charset "UTF-8";
body.post {
  background: #fffdeb;
}
.post section {
  padding: 0;
}
.post .section-title {
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 10px 0;
}
.post .inner {
  padding: 10px 30px;
}
.post .main-content {
  width: 100%;
  padding: 100px 60px;
  border-radius: 30px;
  letter-spacing: 0.1em;
  background: #fff;
}
.post .main-content section {
  width: max-content;
  max-width: 100%;
  margin: 0 auto 140px;
  padding: 0 30px;
}
.post .main-content h1 {
  font-size: 3.4rem;
  color: #e3883d;
}
.post .main-content .post-time {
 color: #e3883d;
 margin-bottom: 30px;
}
.post .main-content .post-content {
  word-break: break-word;
}
.post .main-content .post-content a {
  color: #e3883d;
  text-decoration: underline;
  transition: .2s;
}
.post .main-content .post-content a:hover {
  color: #3b3d3d;
}
@media screen and (max-width: 768px) {
  body.post .inner {
    padding: 10px 30px;
  }
  body.post .main-content {
    padding: 90px 0;
  }
  .post .main-content section {
    margin: 0 auto 80px;
  }
  .post .main-content h1 {
    font-size: 2.6rem;
    line-height: 1.4;
  }
  .post .main-content .post-time {
    font-size: 1.8rem;
  }
  body.post .footer {
    padding: 130px 0 20px;
  }
}
@media screen and (max-width: 500px) {
  body.post .main-content {
    padding: 40px 0;
  }
  .post .main-content .post-content {
    font-size: 1.8rem;
  }
}