@charset "UTF-8";
/*
 * lower-page.css
 * 固定ページ（下層ページ）専用スタイル
 * スコープ: #body_wrap.page:not(.home) .post_content
 * SWELLのグローバルスタイルを上書きし、固定ページ本文にのみ適用する
 */

/* ========================================
   SWELL スタイルリセット
   カスタマイザー生成スタイルの装飾を打ち消す
======================================== */

/* h2 のカスタマイザー装飾（::before / ::after）を無効化 */
#body_wrap.page:not(.home) .post_content h2::before,
#body_wrap.page:not(.home) .post_content h2::after {
  content: none;
  display: none;
}

/* h3 のカスタマイザーアンダーライン（::before）を無効化 */
#body_wrap.page:not(.home) .post_content h3::before {
  background: none;
  content: none;
  display: none;
}

/* h2 の SWELL ネガマージン（--swl-h2-margin--x）をリセット */
#body_wrap.page:not(.home) .post_content > h2 {
  margin-left: 0;
  margin-right: 0;
}

/* ========================================
   ベース
======================================== */

#body_wrap.page:not(.home) .post_content {
  color: var(--color-text);
  font-size: 1.6rem;
  line-height: 1.9;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ========================================
   見出し — h2（大セクション区切り）
======================================== */

#body_wrap.page:not(.home) .post_content h2,
#body_wrap.page:not(.home) .post_content .wp-block-heading:is(h2) {
  border-left: 3px solid var(--color-blue);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-bottom: 2.4rem;
  margin-top: 6.4rem;
  padding: 0.1rem 0 0.1rem 1.4rem;
  position: relative;
}

#body_wrap.page:not(.home) .post_content h2:first-child {
  margin-top: 0;
}

/* ========================================
   見出し — h3（小セクション）
======================================== */

#body_wrap.page:not(.home) .post_content h3,
#body_wrap.page:not(.home) .post_content .wp-block-heading:is(h3) {
  border-bottom: 1px solid rgba(41, 128, 185, 0.22);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-bottom: 1.6rem;
  margin-top: 5.2rem;
  padding-bottom: 0.6rem;
}

#body_wrap.page:not(.home) .post_content h3:first-child {
  margin-top: 0;
}

/* ========================================
   見出し — h4
======================================== */

#body_wrap.page:not(.home) .post_content h4,
#body_wrap.page:not(.home) .post_content .wp-block-heading:is(h4) {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1.2rem;
  margin-top: 3.6rem;
  padding-left: 1.2rem;
  position: relative;
}

#body_wrap.page:not(.home) .post_content h4::before {
  background: rgba(41, 128, 185, 0.55);
  border-radius: 2px;
  bottom: 0.2em;
  content: "";
  left: 0;
  position: absolute;
  top: 0.2em;
  width: 3px;
}

#body_wrap.page:not(.home) .post_content h4:first-child {
  margin-top: 0;
}

/* ========================================
   見出し — h5 / h6
======================================== */

#body_wrap.page:not(.home) .post_content h5,
#body_wrap.page:not(.home) .post_content .wp-block-heading:is(h5) {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 1rem;
  margin-top: 3.2rem;
}

#body_wrap.page:not(.home) .post_content h6,
#body_wrap.page:not(.home) .post_content .wp-block-heading:is(h6) {
  color: var(--color-text-light);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  margin-top: 2.4rem;
}

/* ========================================
   段落
======================================== */

#body_wrap.page:not(.home) .post_content p {
  line-height: 1.9;
  margin-bottom: 1.8rem;
}

#body_wrap.page:not(.home) .post_content p:last-child {
  margin-bottom: 0;
}

/* ========================================
   リンク
======================================== */

#body_wrap.page:not(.home) .post_content a {
  color: var(--color-blue);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: opacity 0.2s ease;
}

#body_wrap.page:not(.home) .post_content a:hover {
  opacity: 0.72;
  text-decoration: none;
}

/* ========================================
   インライン装飾要素
======================================== */

#body_wrap.page:not(.home) .post_content strong,
#body_wrap.page:not(.home) .post_content b {
  color: var(--color-text);
  font-weight: 700;
}

#body_wrap.page:not(.home) .post_content em,
#body_wrap.page:not(.home) .post_content i {
  font-style: italic;
}

#body_wrap.page:not(.home) .post_content mark {
  background: rgba(41, 128, 185, 0.15);
  border-radius: 0.2rem;
  color: var(--color-text);
  padding: 0.1em 0.35em;
}

#body_wrap.page:not(.home) .post_content small {
  font-size: 1.2rem;
}

#body_wrap.page:not(.home) .post_content abbr[title] {
  border-bottom: 1px dashed currentColor;
  cursor: help;
  text-decoration: none;
}

#body_wrap.page:not(.home) .post_content ins {
  background: rgba(41, 128, 185, 0.12);
  text-decoration: none;
}

#body_wrap.page:not(.home) .post_content del {
  color: var(--color-text-light);
  opacity: 0.7;
}

#body_wrap.page:not(.home) .post_content cite,
#body_wrap.page:not(.home) .post_content q {
  font-style: italic;
}

#body_wrap.page:not(.home) .post_content address {
  font-style: normal;
  line-height: 1.8;
  margin-bottom: 2.4rem;
}

#body_wrap.page:not(.home) .post_content time {
  color: var(--color-text-light);
  font-size: 1.3rem;
}

/* ========================================
   hr（区切り線）
======================================== */

#body_wrap.page:not(.home) .post_content hr {
  border: none;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  margin: 5.6rem auto;
  width: 100%;
}

/* ========================================
   リスト — ul / ol
======================================== */

#body_wrap.page:not(.home) .post_content ul,
#body_wrap.page:not(.home) .post_content ol,
#body_wrap.page:not(.home) .post_content .wp-block-list {
  margin-bottom: 2.4rem;
  padding-left: 2.2rem;
}

#body_wrap.page:not(.home) .post_content li {
  line-height: 1.75;
  margin-bottom: 0.6rem;
}

#body_wrap.page:not(.home) .post_content li:last-child {
  margin-bottom: 0;
}

#body_wrap.page:not(.home) .post_content ul > li::marker {
  color: var(--color-blue);
}

#body_wrap.page:not(.home) .post_content ol > li::marker {
  color: var(--color-blue);
  font-weight: 700;
}

#body_wrap.page:not(.home) .post_content li > ul,
#body_wrap.page:not(.home) .post_content li > ol {
  margin-bottom: 0;
  margin-top: 0.4rem;
}

/* ========================================
   定義リスト — dl / dt / dd
======================================== */

#body_wrap.page:not(.home) .post_content dl {
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  margin-bottom: 2.8rem;
}

#body_wrap.page:not(.home) .post_content dt {
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  color: var(--color-text);
  font-size: 1.4rem;
  font-weight: 700;
  padding: 1.2rem 0.4rem;
}

#body_wrap.page:not(.home) .post_content dd {
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
  color: var(--color-text-light);
  line-height: 1.8;
  margin-left: 0;
  padding: 1rem 0.4rem 1rem 1.6rem;
}

/* ========================================
   テーブル
======================================== */

#body_wrap.page:not(.home) .post_content .wp-block-table {
  margin-bottom: 3.2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

#body_wrap.page:not(.home) .post_content .wp-block-table > table {
  margin-bottom: 0;
}

#body_wrap.page:not(.home) .post_content table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1.4rem;
  line-height: 1.7;
  min-width: 400px;
  text-align: left;
  width: 100%;
}

#body_wrap.page:not(.home) .post_content th,
#body_wrap.page:not(.home) .post_content td,
#body_wrap.page:not(.home) .post_content .wp-block-table th,
#body_wrap.page:not(.home) .post_content .wp-block-table td {
  border: 1px solid rgba(26, 26, 26, 0.1);
  padding: 1rem 1.4rem;
  vertical-align: top;
}

#body_wrap.page:not(.home) .post_content thead th,
#body_wrap.page:not(.home) .post_content .wp-block-table thead th {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: #fff;
  font-weight: 700;
}

#body_wrap.page:not(.home) .post_content tbody th,
#body_wrap.page:not(.home) .post_content .wp-block-table tbody th {
  background: rgba(41, 128, 185, 0.04);
  font-weight: 700;
  white-space: nowrap;
}

/* ゼブラストライプ */
#body_wrap.page:not(.home) .post_content tbody tr:nth-child(even) td,
#body_wrap.page:not(.home) .post_content tbody tr:nth-child(even) th:not(thead th) {
  background: rgba(41, 128, 185, 0.025);
}

#body_wrap.page:not(.home) .post_content caption {
  caption-side: top;
  color: var(--color-text-light);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  text-align: left;
}

/* ========================================
   画像 / figure / figcaption
======================================== */

#body_wrap.page:not(.home) .post_content img {
  border-radius: 0.8rem;
  height: auto;
  max-width: 100%;
}

#body_wrap.page:not(.home) .post_content p img {
  display: inline;
}

#body_wrap.page:not(.home) .post_content figure {
  margin-bottom: 2.8rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
}

#body_wrap.page:not(.home) .post_content figcaption {
  color: var(--color-text-light);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-top: 0.8rem;
  text-align: center;
}

/* ========================================
   引用 — blockquote / wp-block-quote
======================================== */

#body_wrap.page:not(.home) .post_content blockquote,
#body_wrap.page:not(.home) .post_content .wp-block-quote {
  background: rgba(41, 128, 185, 0.04);
  border-left: 3px solid rgba(41, 128, 185, 0.45);
  border-radius: 0 0.6rem 0.6rem 0;
  margin-bottom: 2.8rem;
  margin-left: 0;
  margin-right: 0;
  padding: 2rem 2.4rem;
}

#body_wrap.page:not(.home) .post_content blockquote p,
#body_wrap.page:not(.home) .post_content .wp-block-quote p {
  font-style: italic;
  margin-bottom: 0;
}

#body_wrap.page:not(.home) .post_content blockquote cite,
#body_wrap.page:not(.home) .post_content .wp-block-quote cite {
  color: var(--color-text-light);
  display: block;
  font-size: 1.2rem;
  font-style: normal;
  margin-top: 1rem;
}

#body_wrap.page:not(.home) .post_content .wp-block-pullquote {
  border-bottom: 2px solid rgba(41, 128, 185, 0.3);
  border-top: 2px solid rgba(41, 128, 185, 0.3);
  margin-bottom: 2.8rem;
  padding: 3.2rem 2.4rem;
  text-align: center;
}

#body_wrap.page:not(.home) .post_content .wp-block-pullquote blockquote {
  background: none;
  border: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
}

#body_wrap.page:not(.home) .post_content .wp-block-pullquote blockquote p {
  font-size: 1.8rem;
  font-weight: 700;
}

/* ========================================
   コード — code / pre / wp-block-code
======================================== */

#body_wrap.page:not(.home) .post_content code {
  background: rgba(41, 128, 185, 0.07);
  border: 1px solid rgba(41, 128, 185, 0.12);
  border-radius: 0.4rem;
  color: #1a4a6e;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 0.875em;
  padding: 0.15em 0.5em;
}

#body_wrap.page:not(.home) .post_content pre,
#body_wrap.page:not(.home) .post_content .wp-block-code,
#body_wrap.page:not(.home) .post_content .wp-block-preformatted {
  background: #1e2b37;
  border-radius: 0.8rem;
  color: #e8edf3;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 1.3rem;
  line-height: 1.65;
  margin-bottom: 2.8rem;
  overflow-x: auto;
  padding: 2rem 2.4rem;
  -webkit-overflow-scrolling: touch;
}

#body_wrap.page:not(.home) .post_content pre code,
#body_wrap.page:not(.home) .post_content .wp-block-code code {
  background: none;
  border: none;
  color: inherit;
  font-size: inherit;
  padding: 0;
}

/* ========================================
   details / summary
======================================== */

#body_wrap.page:not(.home) .post_content details,
#body_wrap.page:not(.home) .post_content .wp-block-details {
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 0.8rem;
  margin-bottom: 1.2rem;
  overflow: hidden;
}

#body_wrap.page:not(.home) .post_content summary {
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  list-style: none;
  padding: 1.6rem 5.2rem 1.6rem 2rem;
  position: relative;
  transition: background 0.2s ease;
  user-select: none;
}

#body_wrap.page:not(.home) .post_content summary::-webkit-details-marker {
  display: none;
}

#body_wrap.page:not(.home) .post_content summary::marker {
  content: none;
}

#body_wrap.page:not(.home) .post_content summary::before,
#body_wrap.page:not(.home) .post_content summary::after {
  background: var(--color-blue);
  border-radius: 999px;
  bottom: 0;
  content: "";
  height: 0.2rem;
  margin: auto;
  position: absolute;
  right: 2rem;
  top: 0;
  transition: transform 0.25s ease;
  width: 1.2rem;
}

#body_wrap.page:not(.home) .post_content summary::before {
  transform: rotate(0deg);
}

#body_wrap.page:not(.home) .post_content summary::after {
  transform: rotate(90deg);
}

#body_wrap.page:not(.home) .post_content details[open] summary::after {
  transform: rotate(0deg);
}

#body_wrap.page:not(.home) .post_content summary:hover {
  background: rgba(41, 128, 185, 0.04);
}

#body_wrap.page:not(.home) .post_content details > :not(summary) {
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  line-height: 1.8;
  padding: 1.6rem 2rem;
}

#body_wrap.page:not(.home) .post_content details > :not(summary):last-child {
  margin-bottom: 0;
}

/* ========================================
   フォーム要素
======================================== */

#body_wrap.page:not(.home) .post_content input[type="text"],
#body_wrap.page:not(.home) .post_content input[type="email"],
#body_wrap.page:not(.home) .post_content input[type="tel"],
#body_wrap.page:not(.home) .post_content input[type="url"],
#body_wrap.page:not(.home) .post_content input[type="number"],
#body_wrap.page:not(.home) .post_content input[type="search"],
#body_wrap.page:not(.home) .post_content input[type="password"],
#body_wrap.page:not(.home) .post_content textarea,
#body_wrap.page:not(.home) .post_content select {
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.18);
  border-radius: 0.6rem;
  box-sizing: border-box;
  color: var(--color-text);
  display: block;
  font-family: var(--font-base);
  font-size: 1.5rem;
  line-height: 1.5;
  padding: 0.9rem 1.2rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

#body_wrap.page:not(.home) .post_content input[type="text"]:focus,
#body_wrap.page:not(.home) .post_content input[type="email"]:focus,
#body_wrap.page:not(.home) .post_content input[type="tel"]:focus,
#body_wrap.page:not(.home) .post_content input[type="url"]:focus,
#body_wrap.page:not(.home) .post_content input[type="number"]:focus,
#body_wrap.page:not(.home) .post_content input[type="search"]:focus,
#body_wrap.page:not(.home) .post_content input[type="password"]:focus,
#body_wrap.page:not(.home) .post_content textarea:focus,
#body_wrap.page:not(.home) .post_content select:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(41, 128, 185, 0.12);
  outline: none;
}

#body_wrap.page:not(.home) .post_content textarea {
  min-height: 14rem;
  resize: vertical;
}

#body_wrap.page:not(.home) .post_content select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A1A1A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: right 1.2rem center;
  background-repeat: no-repeat;
  cursor: pointer;
  padding-right: 3.6rem;
}

#body_wrap.page:not(.home) .post_content label {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

#body_wrap.page:not(.home) .post_content fieldset {
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 0.8rem;
  margin-bottom: 2.4rem;
  padding: 1.6rem 2rem;
}

#body_wrap.page:not(.home) .post_content legend {
  color: var(--color-blue);
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0 0.8rem;
}

#body_wrap.page:not(.home) .post_content button,
#body_wrap.page:not(.home) .post_content input[type="submit"],
#body_wrap.page:not(.home) .post_content input[type="button"],
#body_wrap.page:not(.home) .post_content input[type="reset"] {
  background: var(--color-blue);
  border: none;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-base);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  padding: 1.2rem 3.2rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

#body_wrap.page:not(.home) .post_content button:hover,
#body_wrap.page:not(.home) .post_content input[type="submit"]:hover,
#body_wrap.page:not(.home) .post_content input[type="button"]:hover {
  opacity: 0.85;
  transform: translateY(-0.1rem);
}

#body_wrap.page:not(.home) .post_content input[type="reset"] {
  background: transparent;
  border: 1px solid rgba(26, 26, 26, 0.18);
  color: var(--color-text);
}

#body_wrap.page:not(.home) .post_content input[type="checkbox"],
#body_wrap.page:not(.home) .post_content input[type="radio"] {
  accent-color: var(--color-blue);
  margin-right: 0.6rem;
}

/* ========================================
   iframe / video / audio
======================================== */

#body_wrap.page:not(.home) .post_content iframe,
#body_wrap.page:not(.home) .post_content video,
#body_wrap.page:not(.home) .post_content audio {
  display: block;
  max-width: 100%;
}

#body_wrap.page:not(.home) .post_content video {
  border-radius: 0.8rem;
}

#body_wrap.page:not(.home) .post_content .wp-block-embed .wp-block-embed__wrapper {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  width: 100%;
}

#body_wrap.page:not(.home) .post_content .wp-block-embed .wp-block-embed__wrapper iframe {
  border-radius: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/* ========================================
   Gutenberg Block — wp-block-buttons
======================================== */

#body_wrap.page:not(.home) .post_content .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2.8rem;
}

#body_wrap.page:not(.home) .post_content .wp-block-button__link {
  align-items: center;
  background: var(--color-blue);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(41, 128, 185, 0.22);
  color: #fff;
  display: inline-flex;
  font-size: 1.5rem;
  font-weight: 700;
  justify-content: center;
  min-height: 5.6rem;
  min-width: 18rem;
  padding: 1.2rem 2.8rem;
  text-align: center;
  text-decoration: none;
  transition: box-shadow 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

#body_wrap.page:not(.home) .post_content .wp-block-button__link:hover {
  box-shadow: 0 6px 24px rgba(41, 128, 185, 0.32);
  opacity: 0.9;
  text-decoration: none;
  transform: translateY(-0.2rem);
}

#body_wrap.page:not(.home) .post_content .wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  border: 2px solid var(--color-blue);
  box-shadow: none;
  color: var(--color-blue);
}

#body_wrap.page:not(.home) .post_content .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: rgba(41, 128, 185, 0.06);
}

/* ========================================
   Gutenberg Block — wp-block-columns
======================================== */

#body_wrap.page:not(.home) .post_content .wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  margin-bottom: 2.8rem;
}

#body_wrap.page:not(.home) .post_content .wp-block-column {
  flex: 1;
  min-width: min(100%, 220px);
}

/* ========================================
   Gutenberg Block — wp-block-group
======================================== */

#body_wrap.page:not(.home) .post_content .wp-block-group {
  margin-bottom: 2.8rem;
}

#body_wrap.page:not(.home) .post_content .wp-block-group.has-background {
  border-radius: 0.8rem;
  padding: 2.4rem;
}

/* ========================================
   Gutenberg Block — wp-block-cover
======================================== */

#body_wrap.page:not(.home) .post_content .wp-block-cover {
  border-radius: 1.2rem;
  margin-bottom: 2.8rem;
  min-height: 28rem;
  overflow: hidden;
}

/* ========================================
   Gutenberg Block — wp-block-media-text
======================================== */

#body_wrap.page:not(.home) .post_content .wp-block-media-text {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.8rem;
}

#body_wrap.page:not(.home) .post_content .wp-block-media-text .wp-block-media-text__media img {
  border-radius: 0.8rem;
  width: 100%;
}

/* ========================================
   Gutenberg Block — wp-block-gallery
======================================== */

#body_wrap.page:not(.home) .post_content .wp-block-gallery {
  margin-bottom: 2.8rem;
}

#body_wrap.page:not(.home) .post_content .wp-block-gallery img {
  border-radius: 0.6rem;
}

/* ========================================
   Gutenberg Block — wp-block-image
======================================== */

#body_wrap.page:not(.home) .post_content .wp-block-image {
  margin-bottom: 2.8rem;
}

#body_wrap.page:not(.home) .post_content .wp-block-image img {
  border-radius: 0.8rem;
  height: auto;
  max-width: 100%;
}

#body_wrap.page:not(.home) .post_content .wp-block-image figcaption {
  color: var(--color-text-light);
  font-size: 1.2rem;
  margin-top: 0.8rem;
  text-align: center;
}

/* ========================================
   Gutenberg Block — wp-block-separator
======================================== */

#body_wrap.page:not(.home) .post_content .wp-block-separator {
  background: none;
  border: none;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  height: auto;
  margin: 5.6rem auto;
  max-width: 100%;
}

#body_wrap.page:not(.home) .post_content .wp-block-separator.is-style-wide {
  width: 100%;
}

#body_wrap.page:not(.home) .post_content .wp-block-separator.is-style-dots {
  border: none;
  color: var(--color-text-light);
  overflow: visible;
  text-align: center;
}

#body_wrap.page:not(.home) .post_content .wp-block-separator.is-style-dots::before {
  content: "···";
  font-size: 2rem;
  letter-spacing: 0.5em;
  opacity: 0.4;
}

/* ========================================
   Gutenberg Block — wp-block-spacer
======================================== */

#body_wrap.page:not(.home) .post_content .wp-block-spacer {
  display: block;
}

/* ========================================
   Gutenberg Block — wp-block-paragraph
======================================== */

#body_wrap.page:not(.home) .post_content .wp-block-paragraph {
  margin-bottom: 1.8rem;
}

/* ========================================
   aside（補足情報ボックス）
======================================== */

#body_wrap.page:not(.home) .post_content aside {
  background: rgba(41, 128, 185, 0.04);
  border-radius: 0.8rem;
  margin-bottom: 2.4rem;
  padding: 2rem 2.4rem;
}

/* ========================================
   レスポンシブ — 600px 以上
======================================== */

@media (min-width: 600px) {
  #body_wrap.page:not(.home) .post_content .wp-block-media-text {
    align-items: center;
    grid-template-columns: 1fr 1fr;
  }

  #body_wrap.page:not(.home) .post_content table {
    min-width: 0;
  }
}

/* ========================================
   レスポンシブ — 768px 以上
======================================== */

@media (min-width: 768px) {
  #body_wrap.page:not(.home) .post_content {
    line-height: 1.95;
  }

  #body_wrap.page:not(.home) .post_content h2 {
    font-size: 2.2rem;
    margin-top: 8rem;
  }

  #body_wrap.page:not(.home) .post_content h3 {
    font-size: 2rem;
    margin-top: 6.4rem;
  }

  #body_wrap.page:not(.home) .post_content h4 {
    font-size: 1.8rem;
    margin-top: 4.8rem;
  }

  #body_wrap.page:not(.home) .post_content h5 {
    font-size: 1.7rem;
    margin-top: 3.6rem;
  }

  #body_wrap.page:not(.home) .post_content table {
    font-size: 1.5rem;
  }

  #body_wrap.page:not(.home) .post_content th,
  #body_wrap.page:not(.home) .post_content td,
  #body_wrap.page:not(.home) .post_content .wp-block-table th,
  #body_wrap.page:not(.home) .post_content .wp-block-table td {
    padding: 1.2rem 1.6rem;
  }

  #body_wrap.page:not(.home) .post_content blockquote,
  #body_wrap.page:not(.home) .post_content .wp-block-quote {
    padding: 2.4rem 3.2rem;
  }
}

/* ========================================
   レスポンシブ — 1024px 以上
======================================== */

@media (min-width: 1024px) {
  #body_wrap.page:not(.home) .post_content h2 {
    font-size: 2.4rem;
    margin-top: 9.6rem;
  }

  #body_wrap.page:not(.home) .post_content h3 {
    font-size: 2.2rem;
  }

  #body_wrap.page:not(.home) .post_content h4 {
    font-size: 1.9rem;
  }
}
