@charset "UTF-8";
section#single-title.single-title1 {
  margin-top: 140px;
}
@media screen and (max-width: 767px) {
  section#single-title.single-title1 {
    margin-top: 80px;
  }
}
section#single-title.single-title1 .section__container .single-title__heading {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  color: #252525;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  section#single-title.single-title1 .section__container .single-title__heading {
    font-size: 1.3rem;
  }
}
section#single-title.single-title1 .section__container .single-title__date {
  margin-top: 10px;
}
section#single-title.single-title1 .section__container .single-title__date p {
  text-align: center;
  font-size: 0.9rem;
  color: #888;
}

section#single-post {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  section#single-post {
    margin-top: 40px;
  }
}
section#single-post .section__container {
  max-width: 1000px;
  /* シングルページ用SCSS */
}
section#single-post .section__container .wp-block-heading {
  margin-top: 80px;
  margin-bottom: 30px;
}
section#single-post .section__container {
  /* H1見出し */
}
section#single-post .section__container h1, section#single-post .section__container.h1 {
  font-size: 28px;
  color: #D28E6F;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}
section#single-post .section__container h1::after, section#single-post .section__container.h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ddd;
}
section#single-post .section__container {
  /* H2見出し */
}
section#single-post .section__container h2, section#single-post .section__container.h2 {
  font-size: 22px;
  background-color: #D28E6F;
  color: #fff;
  padding: 12px 20px;
  margin-top: 50px;
  margin-bottom: 25px;
}
section#single-post .section__container {
  /* H3見出し */
}
section#single-post .section__container h3, section#single-post .section__container.h3 {
  font-size: 20px;
  padding: 5px 0 5px 15px;
  border-left: 4px solid #D28E6F;
  border-bottom: 1px solid #ddd;
  color: #333;
  margin-top: 40px;
  margin-bottom: 20px;
}
section#single-post .section__container {
  /* H4見出し */
}
section#single-post .section__container h4, section#single-post .section__container.h4 {
  font-size: 18px;
  color: #D28E6F;
  border-bottom: 1px dotted #D28E6F;
  padding-bottom: 8px;
  margin-top: 35px;
  margin-bottom: 15px;
}
section#single-post .section__container {
  /* H5見出し */
}
section#single-post .section__container h5, section#single-post .section__container.h5 {
  font-size: 16px;
  color: #333;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 10px;
}
section#single-post .section__container {
  /* H6見出し */
}
section#single-post .section__container h6, section#single-post .section__container.h6 {
  font-size: 14px;
  color: #666;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 8px;
}
section#single-post .section__container {
  /* 段落テキスト */
}
section#single-post .section__container p {
  margin-bottom: 20px;
  color: #333;
  line-height: 1.8;
}
section#single-post .section__container p a {
  display: inline-block;
  color: #D28E6F;
  text-decoration: underline;
  transition: all 0.3s ease;
}
section#single-post .section__container p a:hover {
  opacity: 0.7;
}
section#single-post .section__container {
  /* 強調テキスト */
}
section#single-post .section__container strong, section#single-post .section__container b {
  font-weight: 700;
  color: #333;
}
section#single-post .section__container em, section#single-post .section__container i {
  font-style: italic;
}
section#single-post .section__container {
  /* 画像 */
}
section#single-post .section__container .wp-block-image {
  margin: 40px 0;
}
section#single-post .section__container .wp-block-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
section#single-post .section__container .wp-block-image figcaption {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}
section#single-post .section__container {
  /* リスト共通スタイル */
}
section#single-post .section__container .wp-block-list {
  margin: 30px 0;
  padding-left: 0;
}
section#single-post .section__container .wp-block-list .wp-block-list {
  margin-top: 10px !important;
}
section#single-post .section__container {
  /* 番号なしリスト */
}
section#single-post .section__container ul {
  padding-left: 0;
}
section#single-post .section__container ul li {
  list-style: none;
  font-size: 0.9rem;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  line-height: 1.6;
}
section#single-post .section__container ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #D28E6F;
}
section#single-post .section__container ul li ul li:before {
  background-color: transparent;
  border: 2px solid #D28E6F;
}
section#single-post .section__container {
  /* 番号付きリスト */
}
section#single-post .section__container ol {
  padding-left: 0;
  counter-reset: ordered-list;
}
section#single-post .section__container ol li {
  list-style: none;
  font-size: 0.9rem;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  line-height: 1.6;
  counter-increment: ordered-list;
}
section#single-post .section__container ol li:before {
  content: counter(ordered-list);
  position: absolute;
  left: 0;
  top: 3px;
  width: 24px;
  height: 24px;
  background-color: #D28E6F;
  color: #fff;
  text-align: center;
  line-height: 24px;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 600;
}
section#single-post .section__container ol li ol {
  counter-reset: nested-list;
  margin-top: 10px;
}
section#single-post .section__container ol li ol li {
  counter-increment: nested-list;
}
section#single-post .section__container ol li ol li:before {
  content: counter(ordered-list) "." counter(nested-list);
  width: auto;
  padding: 0 8px;
  border-radius: 12px;
  font-size: 0.75rem;
}
section#single-post .section__container {
  /* テーブル */
}
section#single-post .section__container .wp-block-table {
  margin: 40px 0;
  overflow-x: auto;
}
section#single-post .section__container .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
section#single-post .section__container .wp-block-table thead {
  background-color: #D28E6F;
  color: #fff;
}
section#single-post .section__container .wp-block-table thead th {
  padding: 15px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
section#single-post .section__container .wp-block-table thead th:last-child {
  border-right: none;
}
section#single-post .section__container .wp-block-table tbody tr {
  border-bottom: 1px solid #eee;
  transition: background-color 0.2s ease;
}
section#single-post .section__container .wp-block-table tbody tr:hover {
  background-color: #f9f9f9;
}
section#single-post .section__container .wp-block-table tbody tr:last-child {
  border-bottom: none;
}
section#single-post .section__container .wp-block-table tbody td {
  padding: 12px 20px;
  font-size: 0.9rem;
  color: #333;
  border-right: 1px solid #eee;
}
section#single-post .section__container .wp-block-table tbody td:last-child {
  border-right: none;
}
section#single-post .section__container .wp-block-table.has-fixed-layout table {
  table-layout: fixed;
}
section#single-post .section__container .wp-block-table .has-text-align-center {
  text-align: center;
}
section#single-post .section__container .wp-block-table .has-text-align-right {
  text-align: right;
}
section#single-post .section__container {
  /* 引用ブロック */
}
section#single-post .section__container blockquote, section#single-post .section__container .wp-block-quote {
  margin: 40px 0;
  padding: 20px 30px;
  background-color: #f8f8f8;
  border-left: 4px solid #D28E6F;
  font-style: italic;
  color: #555;
}
section#single-post .section__container blockquote p, section#single-post .section__container .wp-block-quote p {
  margin-bottom: 15px;
}
section#single-post .section__container blockquote p:last-child, section#single-post .section__container .wp-block-quote p:last-child {
  margin-bottom: 0;
}
section#single-post .section__container blockquote cite, section#single-post .section__container .wp-block-quote cite {
  display: block;
  margin-top: 15px;
  font-size: 0.85rem;
  color: #999;
  font-style: normal;
}
section#single-post .section__container blockquote cite:before, section#single-post .section__container .wp-block-quote cite:before {
  content: "— ";
}
section#single-post .section__container {
  /* コード関連 */
}
section#single-post .section__container code {
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  padding: 2px 6px;
  background-color: #f4f4f4;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
  color: #d14;
}
section#single-post .section__container pre {
  margin: 30px 0;
  padding: 20px;
  background-color: #f8f8f8;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  overflow-x: auto;
}
section#single-post .section__container pre code {
  display: block;
  padding: 0;
  background-color: transparent;
  border: none;
  color: #333;
  line-height: 1.6;
}
section#single-post .section__container {
  /* 水平線 */
}
section#single-post .section__container hr, section#single-post .section__container .wp-block-separator {
  margin: 50px 0;
  border: none;
  height: 1px;
  background-color: #ddd;
}
section#single-post .section__container {
  /* ボタン */
}
section#single-post .section__container .wp-block-buttons {
  margin: 40px 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
section#single-post .section__container .wp-block-buttons .wp-block-button {
  margin: 0;
}
section#single-post .section__container .wp-block-buttons .wp-block-button__link {
  display: inline-block;
  background-color: #D28E6F !important;
  color: #fff !important;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
section#single-post .section__container .wp-block-buttons .wp-block-button__link:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
section#single-post .section__container .wp-block-buttons .wp-block-button.has-custom-width {
  max-width: 100%;
}
section#single-post .section__container .wp-block-buttons .wp-block-button.has-custom-width.wp-block-button__width-50 {
  width: 50%;
}
@media screen and (max-width: 767px) {
  section#single-post .section__container .wp-block-heading {
    margin-top: 50px !important;
    margin-bottom: 20px !important;
  }
  section#single-post .section__container h1, section#single-post .section__container.h1 {
    font-size: 24px !important;
  }
  section#single-post .section__container h2, section#single-post .section__container.h2 {
    font-size: 20px !important;
    padding: 10px 15px !important;
  }
  section#single-post .section__container h3, section#single-post .section__container.h3 {
    font-size: 18px !important;
  }
  section#single-post .section__container h4, section#single-post .section__container.h4 {
    font-size: 16px !important;
  }
  section#single-post .section__container h5, section#single-post .section__container.h5 {
    font-size: 14px !important;
  }
  section#single-post .section__container h6, section#single-post .section__container.h6 {
    font-size: 13px !important;
  }
  section#single-post .section__container .wp-block-buttons .wp-block-button.has-custom-width.wp-block-button__width-50 {
    width: 80% !important;
  }
  section#single-post .section__container .wp-block-table table {
    font-size: 0.85rem;
  }
  section#single-post .section__container .wp-block-table thead th,
  section#single-post .section__container .wp-block-table tbody td {
    padding: 10px 15px;
  }
}
section#single-post .contents__post-button {
  text-align: center;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  section#single-post .contents__post-button {
    padding-bottom: 60px;
  }
}
section#single-post .contents__post-button .btn-back-top {
  display: inline-block;
  padding: 1rem 3rem;
  background-color: #D28E6F;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-radius: 999px;
  border: 1px solid #D28E6F;
  transition: all 0.3s ease;
}
section#single-post .contents__post-button .btn-back-top:hover {
  background-color: transparent;
  color: #D28E6F;
}
@media screen and (max-width: 767px) {
  section#single-post .contents__post-button .btn-back-top {
    padding: 0.8rem 2.5rem;
    font-size: 0.9rem;
  }
}
