.detail-eyecatch {
    height: 450px;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
}
.simpleParallax {
    height: 100%;
}
.detail-eyecatch img {
    height: 100%;
    object-fit: cover;
    object-position: top;
    width: 100%;
    max-width: none;
}
@media screen and (max-width: 768px) {
    .detail-eyecatch img {
        object-position: center;
    }
}

/* post detail */
.post-detail {
    padding: 65px 0 100px;
}
.post-detail__inner {
    margin: 0 auto;
    width: 92%;
    max-width: 760px;
}
.post-detail__head {
    border-bottom: 1px solid var(--text-color);
    margin: 0 0 65px;
    padding: 0 0 15px;
}
.post-detail__head h1 {
    color: var(--text-color);
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.8em;
}
.post-detail__head h1::first-letter {
    font-size: 48px;
}
.post-detail__headflex {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 15px 0 0;
}
.post-detail__category {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.cat {
    background: var(--text-color);
    border-radius: 3px;
    color: var(--theme-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    height: 27px;
    padding: 0 15px;
    width: 100%;
    max-width: max-content;
}
.cat a {
    color: var(--theme-color);
    font-size: 14px;
    font-weight: 500;
}
.post-detail__date {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 500;
}
/* 本文 */
.post-detail__content p {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 27.5px;
    margin: 0 0 25px;
    min-height: 27.5px;
}

/* 見出し */
.post-detail__content h2 {
    border-left: 5px solid var(--text-color);
    color: var(--text-color);
    font-size: 27px;
    font-weight: 700;
    line-height: 1.6em;
    margin: 0 0 25px;
    padding: 0 0 0 15px;
}
.post-detail__content h3 {
    color: var(--text-color);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 21px;
    font-weight: 600;
    margin: 0 0 25px;
}
.post-detail__content h3::before {
    background: var(--text-color);
    content: "";
    display: block;
    height: 2px;
    margin: 16px 15px 0 0;
    width: 15px;
}
.post-detail__content h4 {
	color: var(--text-color);
	font-size: 18px;
	font-weight: 600;
	margin: 35px 0 15px;
}

/* リスト */
.post-detail__content ul,
.post-detail__content ol {
    margin: 0 0 25px;
}
.post-detail__content ul li,
.post-detail__content ol li {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 27.5px;
    list-style-position: inside;
    min-height: 27.5px;
}
.post-detail__content ul li {
    list-style-type: disc;
}
.post-detail__content ol li {
    list-style-type: decimal;
}

/* 強調 */
.post-detail__content strong {
    color: var(--text-color);
    font-weight: 700;
}

/* 引用 */
.post-detail__content blockquote {
	border-left: 4px solid var(--text-color);
	background: rgba(0, 0, 0, 0.05);
	padding: 15px 20px;
	margin: 0 0 30px;
	font-style: italic;
}

/* コード・プレ */
.post-detail__content code {
	background: var(--text-color);
	border-radius: 3px;
    color: var(--theme-color);
	font-family: monospace;
    margin: 0 3px;
	padding: 2px 5px;
}

.post-detail__content pre {
	background: var(--text-color);
	border-radius: 6px;
    color: var(--theme-color);
	font-family: monospace;
	font-size: 14px;
	line-height: 1.6;
	margin: 0 0 30px;
	overflow-x: auto;
	padding: 15px;
}

.post-detail__content hr {
    border: 0;
    border-bottom: 2px solid var(--text-color);
    display: block;
    margin: 35px auto;
    width: 100%;
}

/* 画像 */
.post-detail__content img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto 30px;
	border-radius: 8px;
}

/* テーブル */
.wp-block-table {
    margin: 30px 0;
}
.post-detail__content table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
}
.post-detail__content table thead {
    border-bottom: 3px solid var(--text-color);
}
.post-detail__content th,
.post-detail__content td {
	border: 1px solid var(--text-color);
    color: var(--text-color);
	padding: 10px 15px;
	text-align: left;
}

/* リンク */
.post-detail__content a {
	color: var(--link-color, #73c6ee);
	text-decoration: underline;
	transition: opacity 0.3s;
}
.post-detail__content a:hover {
	opacity: 0.7;
}

/* 行間や余白の最適化 */
.post-detail__content > *:last-child {
	margin-bottom: 0;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {
    .post-detail {
        padding: 45px 0 80px;
    }
    .post-detail__head {
        margin: 0 0 45px;
        padding: 0 0 12px;
    }
    .post-detail__head h1 {
        font-size: 32px;
    }
    .post-detail__headflex {
        gap: 15px;
    }
    .post-detail__date {
        font-size: 16px;
    }
    /* 見出し */
    .post-detail__content h2 {
        font-size: 21px;
    }
    .post-detail__content h3 {
        font-size: 18px;
    }
    .post-detail__content h3::before {
        margin: 14px 10px 0 0;
        width: 10px;
    }
    .post-detail__content h4 {
        font-size: 16px;
        margin: 0 0 30px;
    }
    /* 本文 */
    .post-detail__content p,
    .post-detail__content ul li,
    .post-detail__content ol li,
    .post-detail__content th,
    .post-detail__content td {
        font-size: 14px;
        line-height: 26.5px;
    }
    .wp-block-table {
        overflow-x: auto;
    }
    .wp-block-table .has-fixed-layout {
        width: 1000px;
    }
}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}