@charset "UTF-8";



/****************************************
 * 投稿
 * home.php
 * category.php
 * archive.php
 * single.php
*****************************************/

/*タグ*/
.meta_tags {
	margin-top: 60px;
}
.tags.meta_tags {
	margin-top: 30px;
	padding: 30px;
}
aside .tags.meta_tags {
	padding: 0 30px;
}
ul.tags_list {
	display: block;
	flex-direction: inherit;
	list-style: none;
	margin: -18px 0 0 !important;
	padding: 0;
	border: none;
}
ul.tags_list li {
	display: inline-block;
	width: auto !important;
	margin-top: 18px;
	margin-right: 18px;
	background: none;
	border: none;
	font-size: .8rem;
}
ul.tags_list li:before,
ul.tags_list li:after {
	content: none;
}
ul.tags_list li a {
	display: inline-block;
	font-weight: bold;
	color: #391B28 !important;
	background: #FFF !important;
	border-radius: 30px !important;
	padding: 2px 12px !important;
	border-bottom: none !important;
}
ul.tags_list li a:before {
	content: "#";
}
ul.tags_list li a:hover {
	opacity: 1;
	background: #391B28 !important;
	color: #FFF !important;
}
ul.tags_list li a:before:hover {
	opacity: 1;
	color: #004A7F !important;
}

@media screen and (max-width: 560px) {
	ul.tags_list li a {
		padding: 12px 18px !important;
	}
}

/* トップへ戻る */
a.toarchive {
	display: inline-block;
	background: #E3F1EE;
	font-size: .9rem;
	padding: 9px 18px;
	border-radius: 30px;
}


/*カテゴリ*/
p.category {
	padding: 0 30px 0 0;
	margin-top: 12px;
}
#single p.category {
	margin: 0;
}
p.category .category_name {
	display: inline-block;
	line-height: 1.4;
	font-size: .9rem;
	font-weight: bold;
	padding-left: 34px;
	position: relative;
}
p.category .category_name:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	display: inline-block;
	background: url(../images/common/icon_pen.png) no-repeat;
	background-size: contain;
	background-position: center;
	width: 25px;
	height: 25px;
	z-index: 1;
}


/*ブログ一覧*/
#archive .archive_title {
	font-size: 2rem;
	font-family: 'ShipporiMincho', serif;
	display: flex;
    align-items: center;
    justify-content: center;
}
#archive .archive_title span {
	background: #0B7373;
    color: #FFF;
    display: inline-block;
    margin-right: 18px;
    font-size: 1rem;
    padding: 12px;
}
ul.articles_items {
	list-style: none;
	margin: 60px 0 0;
	padding: 0;
	border-top: 1px solid #ededed;
}
ul.articles_items li {
	border-bottom: 1px solid #ededed;
}
ul.articles_items li a {
	display: block;
	width: 100%;
	padding: 30px;
	cursor: pointer;
	position: relative;
}
ul.articles_items li a:hover {
	opacity: .7;
	background: #F5FAF9;
}
ul.articles_items li a img:hover {
	opacity: 1;
}

ul.articles_items li .articles_items_flex {
	display: flex;
}
ul.articles_items li .articles_items_flex .articles_items_flex___date {
	width: 180px;
	text-align: left;
}
ul.articles_items li .articles_items_flex .articles_items_flex___date span.new {
	display: inline-block;
	position: absolute;
	top: -24px;
	background: #0B7373;
	color: #FFF;
	font-size: .8rem;
	width: 45px;
	height: 45px;
	line-height: 45px;
	border-radius: 45px;
	text-align: center;
}
ul.articles_items li .articles_items_flex .articles_items_flex___date p.date {
	font-size: 1rem;
	margin: 0;
	border-right: 1px solid #0B7373;
}
ul.articles_items li .articles_items_flex .articles_items_flex___content {
	width: calc(100% - 180px);
	padding: 0 0 0 45px;
	text-align: left;
	position: relative;
}
ul.articles_items li .articles_items_flex .articles_items_flex___content .the_title {
	line-height: 1.6;
	font-size: 1rem;
	text-align: left;
	color: #0B7373;
}
ul.articles_items li .articles_items_flex .articles_items_flex___content p.excerpt {
	margin: 6px 0 0;
	font-size: .88em;
	text-align: left;
}


/* 親カテゴリで全件表示 */
.categoryAll {
	margin-top: 90px;
}
.categoryAll .categoryAll_item {
	margin-top: 90px;
}


@media screen and (max-width: 1194px) {
	
}
@media screen and (max-width: 834px) {
	ul.articles_items li .articles_items_flex .articles_items_flex___date {
		width: 150px;
	}
	ul.articles_items li .articles_items_flex .articles_items_flex___content {
		width: calc(100% - 150px);
		padding: 0 0 0 30px;
	}
}
@media screen and (max-width: 560px) {
	#archive .archive_title {
		font-size: 1.6rem;
		flex-direction: column;
	}
	#archive .archive_title span {
		margin-right: 0;
		margin-bottom: 18px;
	}
	ul.articles_items li .articles_items_flex .articles_items_flex___date {
		width: 120px;
	}
	ul.articles_items li .articles_items_flex .articles_items_flex___content {
		width: calc(100% - 120px);
		padding: 0 0 0 30px;
	}
	
	p.category .category_name {
		padding-left: 22px;
	}
	p.category .category_name:before {
		width: 16px;
		height: 16px;
	}
}
@media screen and (max-width: 430px) {
	
	ul.articles_items {
		margin: 45px 0 0;
	}
	ul.articles_items li .articles_items_flex {
		flex-direction: column;
	}
	ul.articles_items li .articles_items_flex .articles_items_flex___date {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	ul.articles_items li .articles_items_flex .articles_items_flex___date p.date {
		font-size: 1em;
		padding-left: 12px;
		border-right: none;
		border-left: 1px solid #0B7373;
	}
	ul.articles_items li .articles_items_flex .articles_items_flex___content {
		width: 100%;
		padding: 18px 0 0 0;
	}

	/*カテゴリ*/
	p.category {
		padding: 0;
		margin: 0 0 0 12px;
	}
	
	a.toarchive {
		font-size: .8rem;
	}
}
@media screen and (max-width: 320px) {
	#archive .archive_title {
		font-size: 1.3rem;
	}
	#archive .archive_title span {
		font-size: .9rem;
	}
	ul.articles_items li a {
		padding: 20px;
	}
	ul.articles_items li .articles_items_flex .articles_items_flex___content {
		padding: 12px 0 0 0;
	}
}


/* single.php 
 * **************************************/

.meta_flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#single p.date {
		font-size: 1rem;
	}
#single p.the_title {
	font-size: 1rem;
}
.single_contents {
	
}
.single_contents .single_meta {
	padding: 30px 60px;
	font-size: 1rem;
	border-top: 1px solid #0B7373;
	border-bottom: 1px solid #0B7373;
}
.single_contents .single_meta p.the_title span {
	display: inline-block;
	padding-left: 34px;
	font-family: 'ShipporiMincho', serif;
	position: relative;
}
.single_contents .single_meta p.the_title span:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: url(../images/common/markG.png) no-repeat;
	background-size: 100%;
	background-position: center;
	width: 25px;
	height: 25px;
}
.single_contents .single_article {
	padding: 60px;
	font-size: 1rem;
	position: relative;
}
.single_contents .single_article:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: calc(100% - -16px);
	left: 0;
	background: #0B7373;
	width: 100%;
	height: 1px;
}
.single_contents .single_article:after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: url(../images/common/mark3.webp) no-repeat;
	background-size: 100%;
	background-position: center;
	width: 150px;
	height: 33px;
}
.single_contents .single_article .writer {
	text-align: left;
	margin-top: 45px;
}
.single_contents .single_article .writer p.writer_title {
	margin: 0;
}
.single_contents .single_article .writer p.writer_links {
	
}
.single_contents .single_article .writer p.writer_links a {
	display: inline-block;
	padding-left: 32px;
	font-weight: bold;
	color: #0B7373;
	position: relative;
}
.single_contents .single_article .writer p.writer_links a:not(:last-child) {
	margin-right: 18px;
}
.single_contents .single_article .writer p.writer_links a:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: url(../images/common/icon_arrowSQ.png) no-repeat;
	background-size: 100%;
	background-position: center;
	width: 16px;
	height: 16px;
}


@media screen and (max-width: 560px) {
	.single_contents .single_meta,
	.single_contents .single_article {
		padding: 45px;
	}

}
@media screen and (max-width: 430px) {
	.single_contents .single_meta,
	.single_contents .single_article {
		padding: 30px 0;
	}
	#single p.date {
		font-size: .9rem;
	}
	.single_contents .single_article:before {
		top: calc(100% - -9px);
	}
	.single_contents .single_article:after {
		width: 98px;
		height: 20px;
	}
	.single_contents .single_meta p.the_title span {
		padding-left: 28px;
	}
	.single_contents .single_meta p.the_title span:before {
		width: 20px;
		height: 20px;
	}
}
@media screen and (max-width: 320px) {
	.single_contents .single_meta,
	.single_contents .single_article {
		padding: 20px 0;
	}
	
}


/****************************************
 * 関連
 * **************************************/

#related {
	margin-top: 120px;
}
#related .related_title {
	font-size: 2rem;
	font-family: 'ShipporiMincho', serif;
	display: flex;
	align-items: center;
	justify-content: center;
}
#related .related_title span {
	background: #0B7373;
	color: #FFF;
	display: inline-block;
	margin-right: 18px;
	font-size: 1rem;
	padding: 12px;
}
#related .related_box {
	margin-top: 60px;
}
#related .related_box .ready {
	text-align: center;
	margin-top: 60px;
}


#related dl {
	display: flex;
	align-items: center;
	font-size: 1rem;
}
#related dl dt {
	width: 180px;
	display: flex;
	align-items: center;
}
#related dl dd {
	width: calc(100% - 180px);
	line-height: 1.4;
}
#related dl dt p.date {
	display: inline-block;
	font-size: .9rem;
}
#related dl dt span.new {
	display: inline-block;
	background: #0B7373;
	color: #FFF;
	font-size: .7rem;
	padding: 1px 9px;
	margin-right: 9px;
}
#related ul.articles_items li a {
	padding: 18px 30px;
}


@media screen and (max-width: 1194px) {
	#related dl dt {
		width: 105px;
	}
	#related dl dd {
		width: calc(100% - 105px);
	}
}
@media screen and (max-width: 960px) {
}
@media screen and (max-width: 834px) {
	#related {
		margin-top: 90px;
	}
}
@media screen and (max-width: 560px) {
	#related {
		margin-top: 75px;
	}
	#related .related_title {
		flex-direction: column;
		font-size: 1.6rem;
	}
	#related .related_title span {
		margin-right: 0;
		margin-bottom: 18px;
	}
	#related .related_box {
		margin-top: 45px;
	}
	#related dl {
		flex-direction: column;
		font-size: 1em;
	}
	#related dl dt {
		width: 100%;
	}
	#related dl dd {
		width: 100%;
	}
}
@media screen and (max-width: 430px) {
	#related {
		margin-top: 60px;
	}
	#related ul.articles_items li a {
		padding: 18px;
	}
}
@media screen and (max-width: 320px) {
	#related {
		margin-top: 45px;
	}
	#related .related_title {
		font-size: 1.4rem;
	}
	#related .related_box {
		margin-top: 30px;
	}
}



/****************************************
 * 検索
 * **************************************/

#searchresults {
	margin-top: 60px;
}
#searchresults p.search_txt {
	text-align: center;
}
#searchresults .search_form {
	max-width: 520px;
	margin: 60px auto 0;
}


#search .search_articles {
	margin-top: 90px;
}


/* 空っぽ */




/* ヒット */
span.hits {
	font-family: 'ShipporiMincho', serif;
    font-size: 1.6rem;
    margin-right: 3px;
}


/* ヒットなし */






/****************************************
 * お知らせ
 * archive-news.php
 * single.php
*****************************************/

ul.news_list {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid #EDEDED;
}
ul.news_list li {
	padding: 45px;
	border-bottom: 1px solid #EDEDED;
}
ul.news_list li:nth-child(even) {
	background: #F5FAF9;
}
#single-news .single_contents {
	padding: 45px;
	border-top: 1px solid #EDEDED;
	border-bottom: 1px solid #EDEDED;
}
ul.news_list li p.news_office {
	font-size: .8rem;
	font-family: 'ShipporiMincho', serif;
	color: #0B7373;
	position: relative;
}
ul.news_list li p.news_office:before {
	content: "";
	position: absolute;
	top: 50%;
	left: -45px;
	transform: translateY(-50%);
	background: #0B7373;
	width: 30px;
	height: 1px;
}
ul.news_list li .news_list_title,
#single-news .news_list_title {
	display: flex;
	align-items: center;
}
ul.news_list li .news_list_title p.date,
#single-news .news_list_title p.date {
	font-size: 1rem;
	margin: 0;
}
ul.news_list li .news_list_title span.new,
#single-news .news_list_title span.new {
	display: inline-block;
	background: #0B7373;
	color: #FFF;
	padding: 1px 6px;
	margin-right: 12px;
	font-size: .8rem;
}
ul.news_list li .news_list_title_new,
#single-news .news_list_title_new {
	margin-left: 18px;
}
ul.news_list li a {
	display: inline-block;
	padding: 0;
}
ul.news_list li .news_list_title_new .the_title,
#single-news .news_list_title_new .the_title {
	font-family: 'ShipporiMincho', serif;
	font-size: 1rem;
	text-align: left;
	line-height: 1.4;
	color: #0B7373;
}
ul.news_list li .news_list_contents,
#single-news .news_list_contents {
	margin-top: 18px;
	font-size: 1rem;
}

@media screen and (max-width: 560px) {
	ul.news_list li {
		padding: 30px;
	}
	#single-news .single_contents {
		padding: 30px;
	}
	ul.news_list li p.news_office:before {
		left: -30px;
		width: 20px;
	}
	ul.news_list li .news_list_title,
	#single-news .news_list_title {
		flex-direction: column;
		align-items: flex-start;
	}
	ul.news_list li .news_list_title p.date,
	#single-news .news_list_title p.date {
		font-size: .9rem;
	}
	ul.news_list li .news_list_title_new,
	#single-news .news_list_title_new {
		margin-left: 0;
		margin-top: 12px;
	}
}
@media screen and (max-width: 430px) {
	ul.news_list li {
		padding: 30px 0 30px 30px;
	}
	#single-news .single_contents {
		padding: 30px 0;
	}
	ul.news_list li p.news_office:before {
		left: -30px;
		width: 18px;
	}
	ul.news_list li .news_list_title span.new,
	#single-news .news_list_title span.new {
		padding: 0 6px;
	}
}
@media screen and (max-width: 320px) {
	ul.news_list li {
		padding: 20px 0 20px 20px;
	}
	#single-news .single_contents {
		padding: 20px 0;
	}
}
