@charset "UTF-8";

/* ----------------------------------------------
 * Container
 ---------------------------------------------- */

.p-colum__container {
	max-width: 1020px;
	padding: 0 5px;
	margin: 0 auto;
}

@media (max-width: 1000px) {
	.p-colum__container {
		padding: 0 15px;
	}
}


/* Archive Title
 ---------------------------------------------- */

.p-column__ttl {
	font-family: "Helvetica Neue",Helvetica,Arial,"Open Sans";
	
	margin-bottom: 30px;
	color: #00a28e;
	font-size: 2.8rem;
	font-weight: 700;
	letter-spacing: .15em;
}









/* ----------------------------------------------
 * Wrapper
 ---------------------------------------------- */

.p-column__wrap {
	display: flex;
	justify-content: space-between;
}

@media (max-width: 1000px) {
	.p-column__wrap {
		display: block;
	}
}

.p-column__main {
	width: calc(100% - 258px);
}

@media (max-width: 1000px) {
	.p-column__main {
		width: 100%;
	}
}

.p-column__saibar {
	width: 238px;
}

@media (max-width: 1000px) {
	.p-column__saibar {
		width: 100%;
	}
}





/* ----------------------------------------------
 * Archive List
 ---------------------------------------------- */

.archive-list {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}

@media (max-width: 1000px) {
	.archive-list {
		display: block;
	}
}

/* ----------------------------------------------
 * Block
 ---------------------------------------------- */

.p-column__block {
	position: relative;
	width: calc((100% - 40px) / 3);
	margin-bottom: 20px;
	margin-right: 20px;
	/*border: solid 1px #00a28e;*/
}

.p-column__block:nth-child(3n) {
	margin-right: 0;
}

@media (max-width: 1000px) {
	.p-column__block {
		width: 100%;
		margin-right: 0;
	}
}

.p-column__block__pic a {
	display: block;
	position: relative;
	overflow: hidden;
	padding-top: 62%; /* 比率 */
}

.p-column__block__pic a img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease;
}

.p-column__block__pic a:hover img {
	width: 120%;
	height: 120%;
}

.p-column__block__cat {
	position: absolute;
	top: 0;
	left: 0;
	padding: 0 5px;
	background-color: #00a28e;
	color: #ffffff;
	font-size: 10px;
}

.p-column__block__cat a {
	color: #ffffff !important;
}

.p-column__block__container {
	padding: 15px 12px 5px;
}

.p-column__block__ttl {
	margin-bottom: 5px;
	text-align: justify;
	font-size: 16px !important;
	font-weight: bold;
}

.p-column__block__ttl a {
	text-decoration: none !important;
}

.p-column__block__desc {
	margin-bottom: 5px;
	text-align: justify;
	font-size: 14px;
}

.p-column__block__tag li {
	display: inline-block;
	padding-right: 5px;
	font-size: 14px;
}

.p-column__block__tag a {
	color: #00a28e;
}

.p-column__block__date {
	text-align: right;
	color: #a3a3a3;
	font-size: 12px;
}

/* ----------------------------------------------
 * Block Wide
 ---------------------------------------------- */

.p-column__block--wide {
	position: relative;
	display: flex;
	justify-content: space-between;
	margin-bottom: 35px;
	padding-bottom: 35px;
	border-bottom: solid 1px #dbdbdb;
}

@media (max-width: 1000px) {
	.p-column__block--wide {
		display: block;
		margin-bottom: 20px;
		padding: 0;
		border: 0;
	}
}

.p-column__block--wide .p-column__block__cat {
	position: relative;
	top: 0;
	left: 0;
	display: inline-block;
	margin-bottom: 10px;
	font-size: 12px;
}

@media (max-width: 1000px) {
	.p-column__block--wide .p-column__block__cat {
		position: absolute;
		margin: 0;
		font-size: 10px;
	}
}

.p-column__block--wide .p-column__block__pic {
	width: 64%;
	padding: 0;
}

@media (max-width: 1000px) {
	.p-column__block--wide .p-column__block__pic {
		width: 100%;
	}
}

.p-column__block--wide .p-column__block__container {
	width: calc(36% - 30px);
	padding: 0 10px 0 0;
}

@media (max-width: 1000px) {
	.p-column__block--wide .p-column__block__container {
		width: 100%;
		padding: 15px 12px 5px;
	}
}

.p-column__block--wide .p-column__block__ttl {
	margin-bottom: 10px;
	font-size: 20px;
}

@media (max-width: 1000px) {
	.p-column__block--wide .p-column__block__ttl {
		margin-bottom: 5px;
		font-size: 16px;
	}
}

.p-column__block--wide .p-column__block__desc {
	margin-bottom: 10px;
	font-size: 16px;
}

@media (max-width: 1000px) {
	.p-column__block--wide .p-column__block__desc {
		margin-bottom: 5px;
		font-size: 14px;
	}
}

.p-column__block__tag {
	margin-bottom: 10px;
}




/* ----------------------------------------------
 * Sidebar
 ---------------------------------------------- */

.p-column__saibar__container {
	margin-bottom: 30px;
}

.p-column__saibar__ttl {
	margin-bottom: 20px;
	padding-bottom: 10px;
	font-size: 14px;
	border-bottom: solid 2px #00a28e;
}

.p-column__sideblock a {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.p-column__sideblock__pic {
	width: 44%;
}

.p-column__sideblock__pic span {
	display: block;
	position: relative;
	overflow: hidden;
	padding-top: 68.5%; /* 比率 */
}

.p-column__sideblock__pic span img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease;
}

.p-column__sideblock a:hover .p-column__sideblock__pic span img {
	width: 120%;
	height: 120%;
}

.p-column__sideblock__container {
	width: calc(56% - 13px);
}

.p-column__sideblock__ttl {
	font-size: 12px;
	font-weight: bold;
	line-height: 1.5;
	transition: color 0.5s ease;
}

.p-column__sideblock a:hover .p-column__sideblock__ttl {
	color: #00a28e;
}

.p-column__sideblock__date {
	color: #a3a3a3;
	font-size: 12px;
}









/* Sidebar Search
 ---------------------------------------------- */

.p-column__saibar__search {
	background-color: #f7f7f7;
	padding: 20px;
}

.p-column__saibar__subttl {
	margin-bottom: 5px;
	font-size: 14px;
	font-weight: bold;
}

.p-column__saibar__inner {
	margin-bottom: 20px;
}

/* Radio Button
----------------------------------------------------------- */

.radio-group label {
	display: inline-block;
	margin-bottom: 0.5rem;
	padding-right: 1.5rem;
	cursor: pointer;
}

.radio-group label input[type="radio"] {
	display: none;
}

.radio-group label span {
	display: inline-block;
	position: relative;
	padding-left: 1.5em;
	background-image: url(/column/images/circle.svg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 15px 15px;
}

.radio-group input[type="radio"]:checked + span {
	color: #00ac99;
	background-image: url(/column/images/dot-circle.svg);
}



/* Checkbox
----------------------------------------------------------- */

.checkbox-group label {
	display: inline-block;
	margin-bottom: 0.5rem;
	padding-right: 0.5rem;
	cursor: pointer;
}

.checkbox-group label input[type="checkbox"] {
	display: none;
}

.checkbox-group label span {
	display: inline-block;
	position: relative;
	padding: 0 5px;
	color: #00ac99;
	font-size: 12px;
	border: solid 1px #00ac99;
	transition: all 0.5s ease;
}

.checkbox-group label input[type="checkbox"]:checked + span {
	background-color: #00ac99;
	color: #ffffff;
}

/* Submit
----------------------------------------------------------- */

.p-column__saibar__submit {
	display: block;
	margin: 0 auto;
	padding: 10px 15px;
	background-color: #00ac99;
	color: #ffffff;
	font-size: 14px;
	font-weight: bold;
	border: 0;
}


/* ----------------------------------------------
 * Pager
 ---------------------------------------------- */

.p-column__pagination {
	width: 100%;
	margin-top: 50px;
}

.wp-pagenavi {
	display: flex;
	justify-content: center;
}

.wp-pagenavi > a,
.wp-pagenavi > span {
	width: 50px;
	margin: 0 5px;
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	line-height: 50px;
}

.wp-pagenavi a.page {
	border: solid 1px #e1e1e1;
	transition: all 0.5s ease;
}

.wp-pagenavi a.page:hover {
	background-color: #00ac99;
	color: #ffffff;
	border: solid 1px #00ac99;
}

.wp-pagenavi span.current {
	background-color: #00ac99;
	color: #ffffff;
}

.wp-pagenavi a.previouspostslink {
	background-image: url(/column/images/left_arrow.svg);
	background-position: center center;
	background-repeat: no-repeat;
	text-indent: -9999px;
	overflow: hidden;
}

.wp-pagenavi a.nextpostslink {
	background-image: url(/column/images/right_arrow.svg);
	background-position: center center;
	background-repeat: no-repeat;
	text-indent: -9999px;
	overflow: hidden;
}








/* ----------------------------------------------
 * Detail
 ---------------------------------------------- */

.p-column__detail__img {
	margin-bottom: 30px;
}

.p-column__detail__meta {
	margin-bottom: 10px;
}

.p-column__detail__cat {
	margin-right: 20px;
	padding: 5px 10px;
	background-color: #00a28e;
	color: #ffffff;
	font-size: 12px;
}

.p-column__detail__cat a {
	color: #ffffff !important;
}

.p-column__detail__date {
	color: #a3a3a3;
	font-size: 12px;
}

.p-column__detail__ttl {
	margin-bottom: 25px;
	text-align: justify;
	font-size: 28px;
	font-weight: bold;
}

.p-column__detail__tag {
	margin-bottom: 10px;
}

.p-column__detail__tag li {
	display: inline-block;
	padding-right: 15px;
	font-size: 14px;
}

.p-column__detail__tag a {
	color: #00a28e;
}



.p-column__detail__content h2 {
	margin-bottom: 30px;
	padding-bottom: 10px;
	font-size: 22px;
	border-bottom: solid 3px #00a28e;
}

.p-column__detail__content h3 {
	margin-bottom: 20px;
	font-size: 20px;
}

.p-column__detail__content h4, 
.p-column__detail__content h5 {
	font-size: 16px;
}

.p-column__detail__content p {
	margin-bottom: 30px;
	text-align: justify;
	font-size: 16px;
	line-height: 1.75;
}

.p-column__detail__content ul {
	margin: 0 0 30px 1.5em;
	list-style: disc;
}

.p-column__detail__content ol {
	margin: 0 0 30px 0;
}

.p-column__detail__content li {
	font-size: 16px;
	line-height: 1.75;
}

.p-column__detail__content li + li {
	margin-top: 0.5em;
}

.p-column__detail__content blockquote {
	margin-bottom: 30px;
	padding: 20px 30px;
	font-size: 16px;
	line-height: 1.75;
	border: solid 1px #dddddd;
}

.p-column__detail__content a {
	color: #00a28e;
	text-decoration: underline;
}


.p-column__detail__content .p-column__block__ttl a {
	color: #000000;
}


/* Index
 ---------------------------------------------- */

.p-column__detail__content .index {
	background-color: #f6f6f6;
	margin-bottom: 50px;
	padding: 20px 30px 5px 30px;
}

.p-column__detail__content .index h2 {
	margin-bottom: 15px;
	font-size: 14px;
	border-bottom: 0;
}

.p-column__detail__content .index h2::before {
	display: inline-block;
	content: "\f0d7";
	margin-right: 0.75rem;
	color: #00a28e;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}

.p-column__detail__content .index ul {
	margin: 0;
	list-style: none;
}

.p-column__detail__content .index li {
	margin-bottom: 15px;
	padding-bottom: 15px;
	font-size: 14px;
	line-height: 1.75;
	border-bottom: solid 1px #e9e9e9;
}

.p-column__detail__content .index li:last-child {
	border-bottom: 0;
}

.p-column__detail__content .index a {
	color: #050505;
	text-decoration: none;
}

.p-column__detail__content .index a:hover {
	color: #00a28e;
	text-decoration: underline;
}





/* ----------------------------------------------
 * SNS Buttons
 ---------------------------------------------- */

.p-column__sns {
	margin: 50px 0 50px;
}

.p-column__sns ul {
	display: flex;
	justify-content: space-between;
	border-top: solid 1px #dedede;
	border-bottom: solid 1px #dedede;
}

.p-column__sns li {
	width: calc(100% / 3);
	padding: 15px 0;
	text-align: center;
}

.p-column__sns a {
	color: #dedede;
	font-size: 30px;
	transition: color 0.5s ease;
}

.p-column__sns a:hover {
	color: #00a28e;
}





/* ----------------------------------------------
 * WordPress Popular Posts Plugin
 ---------------------------------------------- */

.wpp-list-with-thumbnails li {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px !important;
}

.wpp-list-with-thumbnails li a:first-child {
	width: 44%;
	display: block;
	position: relative;
	overflow: hidden;
	padding-top: 30.14%; /* 比率 */
}

.wpp-list-with-thumbnails li a:first-child img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease;
}

.wpp-list-with-thumbnails li a:first-child:hover img {
	width: 120%;
	height: 120%;
}




.wpp-list-with-thumbnails li a:nth-child(2) {
	width: calc(56% - 13px);
	font-size: 12px;
	font-weight: bold;
	line-height: 1.5;
	transition: color 0.5s ease;
}

.wpp-list-with-thumbnails li a:nth-child(2):hover {
	color: #00a28e;
}









/* ----------------------------------------------
 * Yet Another Related Posts Plugin
 ---------------------------------------------- */

.yarpp-related {
	margin: 100px 0 50px !important;
}

.yarpp-related h3 {
	margin-bottom: 20px !important;
	padding: 0 !important;
	font-size: 22px;
	font-weight: bold;
}

.yarpp-thumbnails-horizontal {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}

@media (max-width: 1000px) {
	.yarpp-thumbnails-horizontal {
		display: block;
	}
}



.yarpp-thumbnails-horizontal a {
	position: relative;
	width: calc((100% - 40px) / 3);
	margin-bottom: 20px;
	margin-right: 20px;
	color: #000000 !important;
}

.yarpp-thumbnails-horizontal a:nth-child(3n) {
	margin-right: 0;
}

@media (max-width: 1000px) {
	.yarpp-thumbnails-horizontal a {
		width: 100%;
		margin-right: 0;
	}
}




.yarpp-thumbnail-default {
	display: block;
	position: relative;
	overflow: hidden;
	padding-top: 62%; /* 比率 */
}

.yarpp-thumbnail-default img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s ease;
}

.yarpp-thumbnails-horizontal a:hover .yarpp-thumbnail-default img {
	width: 120%;
	height: 120%;
}

.yarpp-thumbnail-title {
	display: block;
	margin-bottom: 5px;
	padding: 15px 12px 5px;
	text-align: justify;
	font-size: 16px !important;
	font-weight: bold;
	color: #000000 !important;
	transition: color 0.5s ease;
}

.yarpp-thumbnails-horizontal a:hover .yarpp-thumbnail-title {
	color: #00a28e !important;
}




/* Add style for 'Table of Contents Plus' */

.p-column__detail__content .index p.toc_title {
	margin-bottom: 15px;
	font-size: 14px;
	font-weight: bold;
	border-bottom: 0;
}

.p-column__detail__content .index p.toc_title::before {
	display: inline-block;
	content: "\f0d7";
	margin-right: 0.75rem;
	color: #00a28e;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}
