@charset "UTF-8";
/* CSS Document */
.post-body h3 + * {
    margin-top: 40px;
}
.post-body h4 + * {
    margin-top: 40px;
}
.post-body h5 + * {
    margin-top: 15px;
}
.post-body h6 + * {
    margin-top: 10px;
}
.post-body h3 {
    margin-top: 50px;
    font-size: 2.4rem;
}
.post-body h4 {
    margin-top: 40px;
    font-size: 2rem;
}
.post-body h5 {
    margin-top: 30px;
    font-size: 2.8rem;
}
.post-body > *:not(h2, h3, h4, h5, h6) {
    margin-top: 1.75em;
}

.post-header {
    max-width: 800px;
    margin: auto;
}
.post-header__title {
	font-size: 3.6rem;
	padding: 0  0 30px;
}
.post-header__category a {
	background: var(--darkColor);
	color: var(--baseColor);
	padding: 5px 10px;
	display: inline-block;
}
.post-header__category a:hover {
	opacity: .7;
	text-decoration: none;
}
.post-header__date {
	text-align: right;
	display: block;
}
.post-header__eyecatch {
	margin-top: 30px;
}
/* .post-header__eyecatch img {
	width: 100%;
} */
.post-body {
    margin: 0 auto;
	max-width: 800px;
}
.post-body ul {
	padding-left: 15px;
	list-style: disc;
}
.post-body ul li {
	margin-bottom: 5px;
}
.post-navigation {
	margin: auto;
	margin-top: 80px;
	max-width: 800px;
	padding: 30px 0;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}
.post-navigation li {
	width: calc((100% - 40px) / 2);
}

/* 既存のアニメーションを消す */
.post-navigation a:focus,
.post-navigation a:hover,
a:focus .nav-title,
a:hover .nav-title {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* サムネイルの表示位置 */
.nav-links {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.nav-links div {
	width: calc((100% - 50px) / 2);
}

.nav-links > .nav-next {
	text-align: right;
}

.nav-links > .nav-previous a {
	display: flex;
	align-items: center;
}
.nav-links > .nav-next a {
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
	
}

/* サムネイルのサイズ調整など */
.nav-links > .nav-previous img {
  width: 80px;
  margin-right: .6rem;
}
.nav-links > .nav-next img {
  width: 80px;
  margin-left: .6rem;
}

/* フォントの調整 */
  .nav-links > .nav-previous .nav-title,
  .nav-links > .nav-next .nav-title {
    font-size: 1.4rem;
  }

@media(max-width:767px){
	.post-header__title {
		font-size: 2.4rem;
		padding-bottom: 50px;
	}
	.post-body {
    margin: 0 auto;
	}
	.nav-links {
		display: block;
	}
	.nav-links div {
		width: 100%;
	}
	.nav-links:has(.nav-previous) .nav-next > a {
		margin-top: 30px;
	}
}