@charset "utf-8";

.single section {
  padding-top: 100px;
}

.single .section-title {
  white-space: normal;
}

.single .post-date {
  text-align: right;
  margin-bottom: 2em;
}

.single .post-image {
  text-align: center;
  margin-bottom: 2em;
}

.single .post-image img {
  border-radius: 10px;
}

.single .post-text p,
.single .post-text ul,
.single .post-text ol,
.single .post-text blockquote {
  margin: 2em 0;
}

.single .post-text img {
  border-radius: 10px;
  padding: 5px;
}

.single .post-text ul,
.single .post-text ol {
  padding-left: 40px;
}

.single .post-text ul {
  list-style: disc;
}

.single .post-text ol {
  list-style: decimal;
}

.single .post-text blockquote {
  margin-left: 40px;
  margin-right: 40px;
}

.single .paging {
  display: block;
  text-align: center;
  position: relative;
  margin-top: 60px;
}

.single .paging .back {
  display: inline-block;
}

.single .paging .btn>a {
  width: auto;
}

.single .paging .prev,
.single .paging .next {
  position: absolute;
  top: 0;
}

.single .paging .prev {
  left: 0;
}

.single .paging .next {
  right: 0;
}

@media (max-width: 600px) {
  .single section {
    padding-top: 30px;
  }

  .single .btn>a {
    font-size: 12px;
    width: auto;
    padding: 1.3em 2em
  }

  .single .prev .btn>a::before,
  .single .prev .btn>a::after {
    left: 10px;
    bottom: 10px;
  }

  .single .next .btn>a::before,
  .single .next .btn>a::after {
    right: 10px;
    bottom: 10px;
  }
}
/*------------------------------
    パスワード保護
  ------------------------------*/
  .post-password-form input[type="password"] {
    border: 1px solid #ccc;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 6px;
  }
  .post-password-form input[type="submit"] {
    background: #d8ea4b;
    padding: 0 20px;
  }
