.inner {
  max-width: 900px;
  margin: 0 auto;
  background-color: #f4f4f4;
  padding: 50px 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 100px;
}
@media (max-width: 1100px) {
  .inner {
    max-width: 100%;
    width: 90%;
    background-color: #fff;
  }
}
@media (max-width: 600px) {
  .inner {
    width: 100%;
    padding: 30px 3%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.top-line {
  width: 85%;
  margin: 160px 0 50px auto;
  padding-bottom: 60px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 1px solid #393a38;
}
.top-line .title,
.top-line .text {
  color: #393a38;
}
.top-line .title {
  font-size: 50px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .top-line {
    margin: 80px 0 0 0;
    padding: 0;
  }
  .top-line .title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.post-cont .title {
  font-size: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dddddd;
  margin-bottom: 15px;
}
@media (max-width: 600px) {
  .post-cont .title {
    font-size: 24px;
    border: none;
    padding: 0;
  }
}
.post-cont .date {
  color: #a8a8a7;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .post-cont .date {
    padding-bottom: 10px;
    border-bottom: 1px solid #202125;
  }
}
.post-cont .post-thumbnail {
  margin-bottom: 30px;
}
.post-cont .post-thumbnail img {
  width: 100%;
}
.post-cont h1 {
  font-size: 28px;
  padding-left: 20px;
  position: relative;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 0.01em;
}
.post-cont h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #393a38;
}
.post-cont h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2px;
  height: 50%;
  background-color: #ff350d;
  z-index: 1;
}
.post-cont h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.post-cont h3 {
  font-size: 18px;
  padding-left: 20px;
  position: relative;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 0.01em;
}
.post-cont h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: #ff350d;
}
.post-cont p {
  letter-spacing: 0.01em;
  line-height: 1.625;
  margin-bottom: 60px;
  overflow-wrap: break-word;
}
@media (max-width: 600px) {
  .post-cont p {
    margin-bottom: 30px;
  }
}
.post-cont span {
  overflow-wrap: break-word;
  display: block;
}
.post-cont span b {
  overflow-wrap: break-word;
}
.post-cont iframe {
  width: 100%;
}
.post-cont table {
  border-color: #f4f4f4;
  background-color: #fff;
  margin-bottom: 30px;
}
.post-cont table tr td {
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}
.post-cont table tr td:first-child {
  text-align: center;
}