@charset "utf-8";

/* ---------------------------------------------------------------------------------------------------- */

.fv {
	position: relative;
	height: 240px;
	background-color: #D0F5FD;
	overflow: hidden;
}

.fv .section_inner {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 0;
}

.fv .section_container {
	position: relative;
	width: 100%;
	height: 100%;
}

.fv_text {
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
	width: max-content;
	height: max-content;
	margin: 0;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.1em;
}

.fv_text > * {
	display: block;
}

.fv_text > *:nth-of-type(1) {
	font-size: 0.5em;
	color: #009AB7;
}

.fv_text > *:nth-of-type(2) {
	font-size: 1em;
}

@media screen and (min-width: 768px) {
	
}

@media screen and (min-width: 1280px) {
	.fv {
		height: 360px;
	}
}

@media screen and (min-width: 1440px) {
	.fv_text {
		font-size: 3rem;
	}
}

@media screen and (min-width: 1920px) {
	
}

/* ---------------------------------------------------------------------------------------------------- */

.section_single {
    padding: 40px 16px;
    background-color: #f9f9f9;
}

.section_single .section_inner {
    max-width: 960px;
    margin: 0 auto;
}

.post_header {
    margin-bottom: 24px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 16px;
}

.post_title {
    font-size: 24px;
    margin-bottom: 8px;
    color: #333;
}

.post_meta {
    font-size: 14px;
    color: #777;
}

.post_meta time {
    margin-right: 12px;
}

.post_thumbnail {
    margin-bottom: 24px;
}

.post_thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.post_content {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 32px;
}

.post_content img {
    max-width: 100%;
    height: auto;
}

.post_footer {
    border-top: 1px solid #ddd;
    padding-top: 16px;
    margin-top: 24px;
}

.post_tags ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.post_tags li {
    background-color: #e0e0e0;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 14px;
    color: #555;
}

@media (min-width: 768px) {
    .post_title {
        font-size: 32px;
    }

    .post_content {
        font-size: 18px;
    }
}

/* ---------------------------------------------------------------------------------------------------- */

.post_pagination {
    margin-top: 48px;
    text-align: center;
}

.post_pagination ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.post_pagination li a {
    display: inline-block;
    padding: 8px 16px;
    background-color: #eaeaea;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.post_pagination li a:hover {
    background-color: #ccc;
}
