/* =========================================================
   Single Post
   投稿ページ
========================================================= */

/* パンくず・ページヘッダー非表示 */
.single-post .breadcrumb,
.single-post .page-header {
    display: none;
}

/* 本文幅 */
.entry.entry-full {
    width: 800px;
    max-width: 96vw;
    margin: auto;
}

/* 投稿メタ情報 */
.entry-meta-item.entry-meta-item-updated,
.entry-meta-item.entry-meta-item-author,
.entry-meta-item.entry-meta-item-date i.fa-solid.fa-calendar-days {
    display: none;
}

/* 本文 */
.single-post .site-body {
    padding: 5rem 0 0;
}

.entry-body {
    margin: 3rem 0;
}

/* 見出し */
h2.wp-block-heading {
    font-size: 1.6rem;
    margin: 3rem 0 1rem;
}

/* カテゴリ・タグ */
.entry-meta-data-list.entry-meta-data-list--category,
.entry-meta-data-list.entry-meta-data-list--post_tag dt,
.tagcloud a:before {
    display: none;
}

.entry-meta-data-list .tagcloud a {
    font-size: 1rem !important;
    background-color: #05AFF2;
    border: 2px solid #05AFF2;
    padding: .4rem .8rem;
    color: #fff;
    font-weight: 700;
    border-radius: .5rem;
}

.entry-meta-data-list .tagcloud a:hover {
    background-color: #fff;
    color: #05AFF2;
}

/* テーブル */
.single-post tr {
    border: 1px solid #05AFF2;
}

.single-post thead {
    border: 1px solid #05AFF2;
}

.single-post thead th {
    background-color: #05AFF2;
    color: #fff;
    border-right: 1px solid #fff;
}

.single-post thead th:last-child {
    border-right: 1px solid #05AFF2;
}


/* =========================================================
   Next Prev Navigation
   前後記事・お知らせ一覧リンク
========================================================= */

/* 全体レイアウト */
.single .next-prev-simple {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px minmax(0, 1fr);
    align-items: stretch;
    gap: 1rem;
    margin: 3rem auto;
    max-width: 800px;
}

/* 各カラム */
.next-prev-simple__item {
    display: flex;
}

.next-prev-simple__item--prev {
    justify-content: flex-start;
}

.next-prev-simple__item--archive {
    justify-content: center;
}

.next-prev-simple__item--next {
    justify-content: flex-end;
}

/* リンク共通 */
.next-prev-simple__link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    padding: .6rem 1rem;
    border: 2px solid #05AFF2;
    text-decoration: none;
}

.next-prev-simple__link:hover {
    background-color: #05AFF2;
    color: #fff;
}

/* 前後記事 */
.single .next-prev-simple__link--prev {
    text-align: left;
    border-radius: 1rem 0 0 1rem;
}

.single .next-prev-simple__link--next {
    text-align: right;
    border-radius: 0 1rem 1rem 0;
}

/* ラベル・タイトル */
.next-prev-simple__label {
    font-size: .85rem;
    color: #05AFF2;
    font-weight: 700;
}

.next-prev-simple__title {
    color: #1F364D;
    font-weight: 700;
}

.next-prev-simple__link:hover .next-prev-simple__label,
.next-prev-simple__link:hover .next-prev-simple__title {
    color: #fff;
}

/* お知らせ一覧ボタン */
.single .next-prev-simple__link--archive {
    align-items: center;
    text-align: center;
    background-color: #ffffff;
}

.single .next-prev-simple__link--archive .next-prev-simple__title {
    color: #05AFF2;
    font-size: 1rem;
    font-weight: 700;
}

.single .next-prev-simple__link--archive:hover {
    background-color: #05AFF2;
}

.single .next-prev-simple__link--archive:hover .next-prev-simple__title {
    color: #ffffff;
}

.next-prev.next-prev-simple {
    max-width: 96vw;
    width: 800px;
}

/* SP */
@media (max-width: 767px) {
    .next-prev-simple__item {
        justify-content: stretch;
    }

    .single .next-prev-simple__link--next {
        text-align: left;
    }
	.next-prev-simple__title {
    display: none;
}
	
	.next-prev.next-prev-simple {
    margin-top: 2rem;
}
	.entry .entry-footer {
    margin-bottom: 2rem;
}

}