@charset "utf-8";

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
共通
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
* {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	box-shadow: none;
	outline: none;
}

html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, a, address, img, dl, dt, dd, ol, ul, li, label, table, tr, th, td, hr, input, textarea,
main, article, aside, details, figure, figcaption, header, footer, hgroup, menu, nav, section, picture, blockquote, time, fieldset, legend { 
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	font-size: 100%;
	vertical-align: baseline;
}

iframe, main, article, aside, details, figure, figcaption, header, footer, hgroup, menu, nav, section, picture, audio { 
	display: block;
}

body {
	line-height: 1;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

address,
cite {
	font-style: normal;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

ol, ul {
	list-style: none;
	list-style-type: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input, textarea, select, button {
	border: 0;
	border-radius: inherit;
	background: none;
	color: inherit;
	font-weight: inherit;
	font-size: inherit;
	font-family: inherit;
	line-height: inherit;
	letter-spacing: inherit;
}

textarea {
	overflow: auto;
}

input:not([type="checkbox"]):not([type="radio"]), textarea, button {
	-webkit-appearance: none;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+-*/
html {
	font-size: 62.5%;
}

@font-face {
	font-family: "Hiragino Sans";
	src: local("HiraginoSans-W6");
	font-weight: 700;
}

body {
	overflow: hidden scroll;
	color: #2d2d2d;
	font-weight: 500;
	font-size: 1.4em;
	font-family: "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "BIZ UDPGothic", "Noto Sans CJK JP", Meiryo, sans-serif;
	line-height: 1.8;
	letter-spacing: 0.07em;
	font-feature-settings: "palt";
}

@media screen\0 {
body {
	font-family: "BIZ UDPGothic", Meiryo, sans-serif;
}
}

.cabin {
	font-family: Cabin, "Helvetica Neue", Arial, Roboto, sans-serif;
}

main {
	overflow-x: hidden;
	min-height: 800px;
}

section,
.section {
	padding: 50px 0;
}

.inner {
	position: relative;
	z-index: 1;
	max-width: 1140px;
	margin: auto;
	padding: 0 6.6%;
}

h1 {
	line-height: 1.6;
}

h2 {
	line-height: 1.6;
}

h3 {
	line-height: 1.6;
}

span:not([class]) {
	display: inline-block;
}

p:not([class]) + p:not([class]) {
	margin-top: 1em;
}

a,
a::before,
a::after {
	transition: 0.3s ease-in-out;
}

a:hover {
	opacity: 0.85;
}

table {
	width: 100%;
}

th {
	text-align: left;
	vertical-align: top;
}

td {
	text-align: left;
	vertical-align: top;
}

input[type="submit"] {
	cursor: pointer;
	transition: 0.3s ease-in-out;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"] {
	width: 100%;
	padding: 0 1em;
	border: 1px solid;
}

textarea {
	width: 100%;
	padding: 10px 1em;
	border: 1px solid;
}

.center {
	text-align: center;
}

.block-center {
	margin: auto;
}

.block-right {
	margin-left: auto;
}

.block-left {
	margin-left: 0 !important;
}

li.spacer {
	margin-bottom: 0;
	order: 1;
}

@media (min-width: 768px) {
section,
.section {
	padding: 100px 0;
}

.inner {
	padding: 0 30px;
}

p:not([class]) + p:not([class]) {
	margin-top: 1.5em;
}

a[href^="tel:"] {
	pointer-events: none;
}

.flex3 {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
}

.flex3 > * {
	width: 31%;
}
}

@media (max-width: 767.9px) {
.block-table th {
	display: block;
}

.block-table td {
	display: block;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
アニメーション
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
@keyframes fade {
0% {
	opacity: 0;
}

100% {
	opacity: 1;
}
}

@keyframes fade-up {
0% {
	opacity: 0;
	transform: translateY(30px);
}

100% {
	opacity: 1;
	transform: translateY(0);
}
}

@keyframes fade-right {
0% {
	opacity: 0;
	transform: translateX(40px);
}

100% {
	opacity: 1;
	transform: translateX(0);
}
}

@keyframes fade-left {
0% {
	opacity: 0;
	transform: translateX(-40px);
}

100% {
	opacity: 1;
	transform: translateX(0);
}
}

@keyframes fade-zoom-in {
0% {
	opacity: 0;
	transform: scale(0.9);
}

100% {
	opacity: 1;
	transform: scale(1);
}
}

@keyframes fade-zoom-out {
0% {
	opacity: 0;
	transform: scale(1.1);
}

100% {
	opacity: 1;
	transform: scale(1);
}
}

.animation {
	animation-duration: 0.6s;
	animation-timing-function: ease-out;
	animation-delay: 0.3s;
	animation-fill-mode: both;
}

.fade,
.fade-up,
.fade-right,
.fade-left,
.fade-zoom-in,
.fade-zoom-out {
	opacity: 0;
}

.load .animation.fade {
	animation-name: fade;
}

.load .animation.fade-up {
	animation-name: fade-up;
	animation-duration: 0.5s;
}

.load .animation.fade-right {
	animation-name: fade-right;
}

.load .animation.fade-left {
	animation-name: fade-left;
}

.load .animation.fade-zoom-in {
	animation-name: fade-zoom-in;
	animation-duration: 0.8s;
}

.load .animation.fade-zoom-out {
	animation-name: fade-zoom-out;
	animation-duration: 0.8s;
}

.delay05 {
	animation-delay: 0.5s;
}

.delay07 {
	animation-delay: 0.7s;
}

.delay09 {
	animation-delay: 0.9s;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
見出し
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.section-subheading {
	margin-bottom: 1em;
	font-weight: 700;
	font-size: 1.8rem;
	letter-spacing: 0.2em;
}

.section-heading {
	display: table;
	margin-bottom: 1.5em;
	font-weight: 700;
	font-size: 3.4rem;
	letter-spacing: 0.2em;
}

.heading-underline {
	display: inline-block;
	margin-bottom: 0.2em;
	border-bottom: 3px solid;
}

.balloon-heading {
	position: relative;
	margin-bottom: 1.5em;
	padding-bottom: 10px;
	border-bottom: 2px solid #000;
	font-size: 2.4rem;
	text-align: center;
}

.balloon-heading::before{
	position: absolute;
	top: calc(100% + 1px);
	left: calc(50% - 12px);
	border-top: 12px solid #000;
	border-right: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-left: 12px solid transparent;
	content: "";
}

.balloon-heading::after{
	position: absolute;
	top: 100%;
	left: calc(50% - 10px);
	border-top: 10px solid #fff;
	border-right: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 10px solid transparent;
	content: "";
}

@media (min-width: 768px) {
.section-subheading {
	font-size: 2.4rem;
}

.section-subheading + .section-heading {
	font-size: 4.2rem;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
リンク
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.button {
	display: flex;
	width: 290px;
	max-width: 100%;
	height: 70px;
	margin-top: 2.5em;
	padding: 0 1em;
	border: 2px solid #2d2d2d;
	border-radius: 35px;
	font-weight: 700;
	font-size: 2rem;
	cursor: pointer;
	transition: 0.3s ease-in-out;
	justify-content: center;
	align-items: center;
}

.button:hover {
	opacity: 1;
	background: #2d2d2d;
	color: #fff;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ローダー
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.loader {
	display: flex;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10;
	background: #fff;
	transition: 0.8s ease-in-out;
	justify-content: center;
	align-items: center;
}

.loader-bar {
	position: relative;
	width: 100px;
	height: 100px;
}

@keyframes circle {
0% {
	opacity: 0;
	transform: scale(0);
}

50% {
	opacity: 1;
}

100% {
	opacity: 0;
	transform: scale(1);
}
}

.loader-bar:before,
.loader-bar:after {
	opacity: 0;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	border-radius: 50%;
	content: "";
	animation: circle 2s infinite;
}

.loader-bar:before {
	border: 10px solid #f4ece7;
}

.loader-bar:after {
	border: 4px solid #f4ece7;
	animation-delay: 1s;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ヘッダー
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
header {
	position: relative;
	z-index: 4;
	height: 75px;
	font-weight: 700;
	text-align: center;
}

header .inner {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	max-width: none;
	height: 75px;
	background: #fff;
	transition: background 0.3s ease-in-out;
	justify-content: center;
	align-items: center;
}

.header-logo-text {
	font-size: 0.7rem;
}

.header-menu-li a {
	display: inline-block;
	position: relative;
	padding-bottom: 3px;
	font-size: 2rem;
	transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.header-menu-li a::after {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	border-top: 3px solid;
	transition: 0.3s ease-in-out;
	content: "";
}

.header-menu-li a:hover {
	opacity: 1;
}

.header-menu-li a:hover::after {
	visibility: visible;
	opacity: 1;
	bottom: 0;
}

@media (min-width: 1194px) {
header {
	height: 110px;
}

header .inner {
	height: 110px;
}

.header-logo {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
}

.header-logo-text {
	margin-bottom: 3px;
	font-size: 1.4rem;
	transition: 0.3s ease-in-out;
}

.header-logo-image {
	transition: 0.3s ease-in-out;
}

header.change .header-logo-text {
	font-size: 1.2rem;
}

header.change .header-logo-image {
	width: 114px;
}

.header-toggle {
	display: none;
}

.header-menu-ul {
	display: flex;
}

.header-menu-li:nth-last-child(n+2) {
	margin-right: 30px;
}

.header-menu-li:nth-child(4) {
	margin-right: 240px;
}

.header-menu-li a {
	font-size: 1.8rem;
}

.header-sns-ul,
.header-menu02-ul {
	display: none;
}
}

@media (max-width: 1193.9px) {
.header-logo-image {
	width: 93px;
	height: 40px;
}

.header-overlay {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	background: rgba(255, 255, 255, 0.5);
}

.header-toggle {
	position: absolute;
	top: 0;
	right: 20px;
	bottom: 0;
	z-index: 4;
	width: 40px;
	height: 40px;
	margin: auto;
	cursor: pointer;
	transition: 0.3s ease-in-out;
}

.header-toggle:hover {
	opacity: 0.85;
}

.header-toggle-bar {
	display: block;
	position: absolute;
	right: 0;
	left: 0;
	width: 22px;
	margin: auto;
	border-top: 2px solid;
	transition: 0.3s ease-in-out;
}

.header-toggle-bar01 {
	top: 11px;
}

.header-toggle-bar02 {
	top: 19px;
}

.header-toggle-bar03 {
	top: 27px;
}

header.open .header-toggle-bar01 {
	top: 19px;
	transform: rotate(-45deg);
}

header.open .header-toggle-bar02 {
	transform: scale(0, 1);
}

header.open .header-toggle-bar03 {
	top: 19px;
	transform: rotate(45deg);
}

header nav {
	position: fixed;
	overflow-y: auto;
	visibility: hidden;
	opacity: 0;
	z-index: 3;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #fff;
	transform : scale(0.9);
}

header.open nav {
	visibility: visible;
	opacity: 1;
	transform : scale(1);
}

.header-nav-inner {
	display: flex;
	min-height: 100%;
	padding-top: 75px;
	flex-flow: column;
	justify-content: center;
}

.header-menu-ul {
	margin-bottom: 20px;
}

.header-menu-li:nth-last-child(n+2) {
	margin-bottom: 19px;
}

.header-menu-facebook {
	display: none;
}

.header-sns-ul {
	display: flex;
	margin-bottom: 60px;
	justify-content: center;
}

.header-sns-li:nth-last-child(n+2) {
	margin-right: 40px;
}

.header-menu02-ul {
	padding: 35px 0;
	background: #f4ece7;
	font-size: 1.5rem;
}

.header-menu02-li:nth-last-child(n+2) {
	margin-bottom: 10px;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
フッター
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
footer {
	background: #fff;
	text-align: center;
}

.page-top {
	display: flex;
	position: relative;
	z-index: 1;
	width: 80px;
	height: 80px;
	margin: 0 auto -40px;
	background: #fff;
	cursor: pointer;
	transform: translateY(-45%) rotate(45deg);
	transition: 0.3s ease-in-out;
	flex-flow: column;
	justify-content: center;
	align-items: center;
}

.page-top::before {
	width: 20px;
	height: 20px;
	border-top: 3px solid;
	border-left: 3px solid;
	content: "";
}

.page-top:hover {
	opacity: 0.85;
	transition: 0.3s ease-in-out;
}

footer .inner {
	position: relative;
	z-index: 1;
	padding-bottom: 10px;
}

.footer-logo {
	display: inline-block;
	margin-bottom: 40px;
}

.footer-logo .text {
	font-weight: 700;
	font-size: 1.2rem;
}

.footer-menu-ul {
	display: flex;
	margin-bottom: 10px;
	flex-flow: wrap;
	justify-content: center;
}

.footer-menu-li {
	margin: 0 0.5em;
	font-size: 1.3rem;
}

.footer-copyright {
	display: block;
	font-size: 1rem;
}

@media (min-width: 768px) {
.page-top {
	width: 90px;
	height: 90px;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
投稿本文
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.post-content h1 {
	margin-top: 2em;
}

.post-content h2 {
	margin-bottom: 0.5em;
}

.post-content h2:nth-child(n+2) {
	margin-top: 2em;
}

.post-content h3 {
	margin-bottom: 0.5em;
}

.post-content h3:nth-child(n+2) {
	margin-top: 2em;
}

.post-content h4 {
	margin-bottom: 0.5em;
}

.post-content h4:nth-child(n+2) {
	margin-top: 1.5em;
}

.post-content p + p {
	margin-top: 1.5em;
}

.post-content a {
	text-decoration: underline;
}

.post-content a[href^="http"] {
	word-break: break-all;
}

.post-content ol:not([class]) {
	margin: 1.5em 0;
}

.post-content ol:not([class]) > li {
	position: relative;
	padding-left: 1.5em;
}

.post-content ol:not([class]) > li::before {
	position: absolute;
	top: 0;
	left: 0;
	content: counter(number) ".";
	counter-increment: number;
}

.post-content ol:not([class]) > li:nth-last-child(n+2) {
	margin-bottom: 0.5em;
}

.post-content ul:not([class]) {
	margin: 1.5em 0;
}

.post-content ul:not([class]) > li {
	position: relative;
	padding-left: 1.2em;
}

.post-content ul:not([class]) > li::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "・";
}

.post-content ul:not([class]) > li:nth-last-child(n+2) {
	margin-bottom: 0.5em;
}

.post-content th {
	display: table-cell;
	padding: 5px 10px;
	border: 1px solid;
	background: #f4ece7;
	text-align: center;
}

.post-content td {
	display: table-cell;
	padding: 5px 10px;
	border: 1px solid;
	text-align: center;
}

[class^="wp-block-"] figcaption {
	display: table !important;
	margin: 10px auto 0;
}

.wp-block-image {
	margin-top: 2em;
	margin-bottom: 2em;
}

.wp-block-image .alignright {
	display: block;
	float: none;
	margin: 0 auto 2em;
}

.wp-block-gallery {
	margin: 2em auto;
	justify-content: center;
}

.blocks-gallery-grid img {
	height: auto;
}

.wp-block-media-text {
	margin: 2em 0;
}

.wp-block-media-text__media img,
.wp-block-media-text__media video {
	max-width: 100%;
}

.wp-block-media-text .wp-block-media-text__content {
	padding: 0;
}

.wp-block-table {
	margin: 2em auto;
}

.wp-block-audio {
	clear: both;
	margin: 2em auto;
}

.wp-block-audio audio {
	min-width: 0;
	margin: auto;
}

.wp-block-embed-youtube {
	max-width: 640px;
	margin: 2em auto;
}

.wp-block-embed-youtube .wp-block-embed__wrapper {
	position: relative;
	padding-top: 56.25%;
}

.wp-block-embed-youtube iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media (min-width: 768px) {
.post-content th {
	padding: 10px;
}

.post-content td {
	padding: 10px;
}

.wp-block-image .alignright {
	float: right;
	max-width: 45%;
	margin-left: 5%;
}

.wp-block-media-text {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.wp-block-media-text.has-media-on-the-right {
	flex-flow: row-reverse;
}

.wp-block-media-text__media {
	width: 400px;
	flex: none;
}

.wp-block-media-text__content {
	width: calc(100% - 400px - 30px);
}

.wp-block-media-text .wp-block-media-text__media,
.wp-block-media-text .wp-block-media-text__content {
	align-self: auto; 
}
}

@media (max-width: 767.9px) {
.wp-block-media-text {
	display: block;
}

.wp-block-media-text .wp-block-media-text__media {
	margin-bottom: 1.5em;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
投稿
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.post-info {
	display: flex;
	flex-flow: wrap;
	align-items: flex-start;
}

.post-info:nth-last-child(n+2) {
	margin-bottom: 10px;
}

.post time {
	display: block;
	font-size: 1.8rem;
	letter-spacing: 0.02em;
}

.post .categories {
	display: flex;
	flex-flow: column;
}

.post .category {
	display: inline-block;
	min-width: 100px;
	margin-right: 1em;
	padding: 0 1.2em;
	border: 1px solid;
	background: #2d2d2d;
	color: #fff;
	text-align: center;
}

.post .category {
	font-size: 1.3rem;
}

.post .categories .category {
	margin-bottom: 0.4em;
}

.single .category:hover {
	opacity: 1;
	background: #fff;
	color: #2d2d2d;
}

.post-ul {
	padding-bottom: 1px;
}

.post-li {
	margin-bottom: 30px;
}

.post-li a {
	display: block;
	height: 100%;
}

.post-li a:hover {
	opacity: 1;
}

.post-li .image-outer {
	overflow: hidden;
	height: 50vw;
	max-height: 250px;
	transition: 0.3s ease-in-out;
}

.post-li .image {
	height: 100%;
	background-image: url("../img/common/no-image.png");
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	transition: 0.4s ease-in-out;
}

.post-li a:hover .image {
	transform: scale(1.1);
}

.post-li time {
	margin-right: 1.2em;
}

.post-li .heading {
	font-weight: inherit;
	font-size: 1.8rem;
	letter-spacing: 0.02em;
	transition: 0.3s ease-in-out;
}

.single h1 {
	margin-bottom: 0.4em;
	font-size: 2.2rem;
}

.single .wp-post-image {
	display: block;
	margin: 0 auto 2em;
}

.single-post-content h2 {
	font-size: 2rem;
}

.single-post-content h3 {
	font-size: 1.8rem;
}

.single-post-content h4 {
	font-size: 1.6rem;
}

.single-post-content img {
	display: block;
	width: auto;
	max-height: 640px;
	margin: 0 auto;
}

.single-post-content img + br {
	display: none;
}

@media (min-width: 768px) {
.single h1 {
	font-size: 3rem;
}

.single-post-content h2 {
	font-size: 2.2rem;
}

.single-post-content h3 {
	font-size: 2rem;
}

.single-post-content h4 {
	font-size: 1.8rem;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ページネーション
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.page-ul {
	display: flex;
	max-width: 100%;
	margin: 60px auto 0;
	justify-content: center;
	align-items: center;
}

.page-li {
	width: 2.2em;
	height: 2.2em;
	margin: 0 2px;
	font-size: 110%;
	line-height: 2.2em;
	text-align: center;
}

.page-current {
	position: relative;
}

.page-current::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 1em;
	margin: auto;
	border-top: 2px solid;
	content: "";
}

.page-li a {
	display: block;
	position: relative;
	height: 100%;
}

.page-li a:hover {
	opacity: 1;
}

.page-prev a::before,
.page-next a::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 10px;
	height: 10px;
	margin: auto;
	border-top: 2px solid;
	border-right: 2px solid;
	content: "";
}

.page-prev a::before {
	transform: rotate(-135deg);
}

.page-next a::before {
	transform: rotate(45deg);
}

.page-prev a:hover::before {
	left: -0.6em;
}

.page-next a:hover::before {
	right: -0.6em;
}

.post-nav-ul {
	display: flex;
	clear: both;
	margin: 60px auto 0;
	justify-content: center;
	align-items: center;
}

.post-nav-prev,
.post-nav-next {
	width: 6em;
}

.post-nav-prev a {
	position: relative;
	padding-left: 2em;
}

.post-nav-next {
	text-align: right;
}

.post-nav-next a {
	position: relative;
	padding-right: 2em;
}

.post-nav-prev a::before,
.post-nav-next a::before {
	position: absolute;
	top: 1px;
	bottom: 0;
	width: 8px;
	height: 8px;
	margin: auto;
	border-top: 2px solid;
	border-right: 2px solid;
	content: "";
}

.post-nav-prev a::before {
	left: 0.8em;
	transform: rotate(-135deg);
}

.post-nav-next a::before {
	right: 0.8em;
	transform: rotate(45deg);
}

.post-nav-prev a:hover,
.post-nav-next a:hover {
	opacity: 1;
}

.post-nav-prev a:hover::before {
	left: 0.4em;
}

.post-nav-next a:hover::before {
	right: 0.4em;
}

.post-nav-list {
	width: 8em;
}

.post-nav-list a {
	margin: 0;
	padding: 0.5em 1em;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
404 Not Found
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.notfound-article {
	text-align: center;
}
