@charset "utf-8";


.main-contents {
	
}

.part-header {
	background-image: none;
}

.part-header__back {
	position: absolute;
	z-index: 2;
	text-align: left;
}

@media all and (min-width: 768px) {
	.part-header {
		min-height: 140px;
		margin-bottom: 60px;
	}
	.part-header__ttl {
		font-size: 2rem;
	}
}

@media all and (min-width: 1280px) {
	
	.main-contents {
		display: flex;
		flex-direction: column;
	}
	
	.part-header {
		width: 100%;
		margin-bottom: 80px;
	}
	
	.part-body {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
	}
	
	.part-body > *:first-child {
		width: calc(75% - 30px);
	}
	
	.part-body > *:last-child {
		width: calc(25% - 30px);
	}
}


/* ---------------------------------------- */

.entries {
	
}

.entries > * {
	margin-top: 20px;
}

.entries > *:first-child {
	margin-top: 0;
}

@media all and (min-width: 768px) {
	.entries > * {
		margin-top: 30px;
	}
}


.news-index-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.news-index-header::before {
	content: "";
	display: block;
	background-color: rgba(0,0,0,0.2);
	width: auto;
	height: 1px;
	flex-grow: 1;
	order: 2;
	margin: 0 15px;
}


.news-index-header > * {
	margin: 0;
}

.news-index-header > *:first-child {
	order: 1;
}

.news-index-header > *:last-child {
	order: 10;
}

.news-index-header__ttl {
	display: flex;
	align-items: center;
	margin: 0;
	font-size: 1.6rem;
	line-height: 1;
}

.news-index-header__ttl > a {
	display: flex;
	align-items: center;
	text-decoration: none;
	border-bottom: none;
	transition: 0.2s;
}

.news-index-header__ttl a:hover {
	
}

.news-index-header__ttl .small {
	font-size: 80%;
	display: inline-block;
}

.news-index-header__ttl .icon {
	margin-right: 10px;
	stroke-width: 1.3;
}

.news-index__anchor {
	font-size: 1.2rem;
	transition: color 0.2 ease-in;
}

@media all and (min-width: 768px) {
	
	.news-index-header {
		
	}
	
	.news-index-header__ttl {
		font-size: 2rem;
	}
}




.article-index {
	border-top: none;
	/*border-top: 1px solid rgba(0,0,0,0.075);*/
}

.article-index-list {
	list-style: none;
	padding: 0;
}

@media all and (min-width: 768px) {
	.article-index-list {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	
	.article-index-list:before,
	.article-index-list:after {
		display: block;
		content: "";
		width: calc(50% - 20px);
		height: 1px;
		order: 2;
	}
}

@media all and (min-width: 1280px) {
	.article-index-list:before,
	.article-index-list:after {
		width: calc(33.333% - 30px);
	}
}


.article-index__item {
	border-bottom: 1px solid rgba(0,0,0,0.075);
}

@media all and (min-width: 768px) {
	
	.article-index__item {
		width: calc(50% - 20px);
		box-sizing: border-box;
		order: 1;
	}
	
}

@media all and (min-width: 1280px) {
	.article-index__item {
		
	}
}


.article__anchor {
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	height: 100%;
	padding: 20px 0;
	box-sizing: border-box;
	text-decoration: none;
	transition: color 0.2s ease-in;
	border-bottom: none;
}

.article__anchor:hover {
	text-decoration: none;
}

.article__anchor:before {
	position: absolute;
	left: 0;
	bottom: -1px;
	display: block;
	width: 0;
	height: 1px;
	background-color: var(--color-main);
	content: "";
	transition: width 0.35s cubic-bezier(.17,.84,.44,1);
}

.article__anchor:hover:before {
	width: 100%;
}

.article__anchor-inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: calc(100% - 18vw - 20px);
}

@media all and (min-width: 768px) {
	.article__anchor {
		
	}
	
	.article__anchor-inner {
		width: calc(100% - 100px);
	}
}

@media all and (min-width: 1280px) {
	.article__anchor-inner {
		width: calc(100% - 140px);
	}
}



.article-img {
	position: relative;
	width: 18vw;
	height: 18vw;
}

.article-img img {
	display: block;
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	transition: filter 0.2s ease-in;
	filter: brightness(1);
}

a:hover .article-img img {
	filter: brightness(0.95);
}

@media all and (min-width: 768px) {
	.article-img {
		position: relative;
		width: 80px;
		height: 80px;
	}
}

@media all and (min-width: 1280px) {
	.article-img {
		width: 100px;
		height: 100px;
	}
}



.article-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin: 0;
	font-size: 1.15rem;
}

.article-meta > * {
	margin-right: 8px;
}

@media all and (min-width: 768px) {
	.article-meta > * {
		
	}
}




.article-sticky-post {
	display: inline-flex;
	align-items: center;
	margin-top: 0;
	font-size: 1.1rem;
	opacity: 0.6;
	
}

.article-sticky-post .icon {
	margin-right: 5px;
	font-style: normal;
}

.article-sticky-post svg {
	width: 16px;
	height: 16px;
}

.article-sticky-post .lbl {
	font-style: normal;
}



.article-ttl {
	margin: 0 0 10px;
	font-size: 1.5rem;
	font-weight: bold;
	font-feature-settings: 'palt';
}

.article-ttl:empty:before {
	content: "タイトルなし";
	opacity: 0.35;
}

.article-txt {
	overflow: hidden;
	height: 5.4em;
	font-size: 1.2rem;
	line-height: 1.8;
}

a:hover .article-meta {
	
}

a:hover .article-ttl {
	
}

a:hover .article-txt {
	
}

@media all and (min-width: 768px) {
	.article-ttl {
		font-size: 1.7rem;
	}
}



/* ---------------------------------------- */

.archives {
	padding: 40px 0;
}

.archives > * {
	margin-top: 20px;
	margin-bottom: 0;;
	box-sizing: border-box;
}

.archives > *:last-child {
	margin-bottom: 0;
}

@media all and (min-width: 1280px) {
	.archives {
		margin-bottom: 0;
		padding: 0;
		text-align: left;
		font-size: 1.3rem;
		border-left: 1px solid rgba(0,0,0,0.2);
		padding-left: 60px;
		box-sizing: border-box;
	}
	
	.archives > * {
		
	}
}


.archives-inner {
	position: relative;
	margin-top: 40px;
	box-sizing: border-box;
}

.archives-inner:first-child {
	margin-top: 0;
}

.archives-inner > * {
	margin-top: 20px;
	margin-bottom: 0;
	box-sizing: border-box;
}

.archives-inner > *:first-child {
	margin-bottom: 0;
}

@media all and (min-width: 1280px) {
	.archives-inner:first-child {
		margin-top: 10px;
	}
}


.archives__ttl {
	position: relative;
	display: block;
	font-weight: bold;
	margin: 0 0 10px;
	padding-left: 25px;
	font-size: 1.3rem;
	line-height: 1;
}

.archives__ttl::before {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	bottom: 0;
	right: auto;
	display: block;
	width: 1.2em;
	height: 1.2em;
	margin: auto;
	border: 4px solid var(--color-main);
	box-sizing: border-box;
	border-radius: 50%;
}


.archives__list {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
}

.archives__list > * {
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 1em;
}

.archives__list > *:first-child {
	margin-top: 0;
	margin-left: 0;
}

.archives__list a {
	display: inline-block;
	font-weight: bold;
	line-height: 1.5;
	text-decoration: none;
	border-bottom: 1px solid currentColor;
}

@media all and (min-width: 1280px) {
	.archives__list {
		display: block;
	}
	
	.archives__list > * {
		margin-top: 7px;
		margin-bottom: 0;
		margin-left: 0;
	}
	
	.archives__list > *:first-child {
		margin-top: 0;
	}
	
}

/* ----- */

.archives__list .cat-item {
	display: inline-flex;
}

.archives__list .cat-item > * {
	margin-left: 1em;
}

.archives__list .cat-item > *:first-child {
	margin-left: 0;
}

@media all and (min-width: 1280px) {
	
	.archives__list .cat-item a {
		display: block;
		padding: 3px 0;
		border: none;
	}
	
	.archives__list .cat-item {
		display: block;
		border-top: 1px solid rgba(0,0,0,0.1);
		padding-top: 7px;
	}
	
	.archives__list .cat-item > * {
		margin-top: 0.5em;
		margin-left: 0;
	}
	
	.archives__list .cat-item > *:first-child {
		margin-top: 0;
	}
}

/* ----- */

.archives__list .children {
	list-style: none;
	display: inline-flex;
	flex-wrap: wrap;
	padding-left: 0;
}

.archives__list .children > * {
	display: inline-flex;
	flex-wrap: wrap;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 1em;
}

.archives__list .children > *:first-child {
	margin-top: 0;
	margin-left: 0;
}

@media all and (min-width: 1280px) {
	.archives__list .children {
		display: block;
		padding-left: 20px;
	}
	
	.archives__list .children > * {
		display: block;
		margin-top: 7px;
		margin-bottom: 0;
		margin-left: 0;
	}
	
	.archives__list .children > *:first-child {
		margin-top: 0;
	}
}

/* ---------------------------------------- */

.archives select {
	width: 100%;
	height: auto;
	padding: 8px 10px;
	background-color: transparent;
	border-radius: 5px;
	border: none;
	background-color: rgba(0,0,0,0.05);
}

.archives select:focus {
	box-shadow: none !important;
}

@media all and (min-width: 1280px) {
	.archives select {
		font-size: 1.3rem;
	}
}

/* ---------------------------------------- */

.search-form {
	position: relative;
}

.search-form form {
	display: flex;
	justify-content: space-between;
}

.search-form__txt {
	width: 100%;
	height: auto;
	padding: 8px 15px;
	border-radius: 0;
	border: none;
	border-radius: 20px;
	background-color: rgba(0,0,0,0.05) !important;
}

.search-form__txt:focus {
	box-shadow: none !important;
}

.search-form__btn {
	position: absolute;
	right: 8px;
	top: 0;
	bottom: 0;
	left: auto;
	width: 30px;
	margin: auto;
	padding: 0;
	border: none;
	border-radius: 0 3px 3px 0;
	box-sizing: border-box;
	color: inherit;
	cursor: pointer;
	z-index: 1;
}

.search-form__btn .icon {
	
}

a:hover .search-form__btn,
.search-form__btn:hover {
	color: var(--color-main);
	border: none;
}

@media all and (min-width: 1024px) {
	
	.search-form {
		width: 100%;
	}
	
	.search-form__txt {
		font-size: 1.4rem;
	}
}

/* ---------------------------------------- */

.tag-list {
	
}

.tag-list > * {
	display: inline-block;
	margin-left: 8px;
}

.tag-list > *:first-child {
	margin-left: 0;
}

.tag-list a {
	display: inline-flex !important;
	align-items: center;
	padding: 8px 8px 6px !important;
	border-radius: 5px;
	background-color: #b7b7b7 !important;
	background-image: none !important;
	color: #fff !important;
	line-height: 1 !important;
	transition: 0.2s;
}

.tag-list a:hover {
	background-color: var(--color-link) !important;
}



/* ------------------------------------------------------------ */
/* paging */

.paging {
	display: block;
	margin: 0;
	padding: 20px 0;
	text-align: center;
}

.paging .icon {
	position: relative;
	width: 24px;
	height: 24px;
	margin-right: 5px;
}

.pagenation {
	width: 100%;
}

@media all and (min-width: 768px) {
	.paging {
		padding: 40px 0;
	}
}

@media all and (min-width: 1280px) {
	
	.paging {
		padding: 40px 0 0;
	}
}

/* not plugin ------------------------------- */

.page-numbers {
	display: inline-flex;
	flex-wrap: wrap;
	list-style: none;
	padding-left: 0;
	list-style: none;
}

.page-numbers li {
	margin: 0.5em;
}

.page-numbers li > * {
	display: block;
	padding: 1em ;
	border: 1px solid rgba(0,0,0,0.1);
	line-height: 1;
	min-width: 1em;
	text-align: center;
	box-sizing: border-box;
	border-radius: 5px;
}

.page-numbers a {
	text-decoration: none;
}

.page-numbers .current {
	background-color: rgba(0,0,0,0.3);
	border-color: transparent;
	color: #fff;
	pointer-events: none;
}

.page-numbers a:hover {
	color:  #fff;
	background-color: rgba(0,0,0,1);
}

.paging__detail {
	display: flex;
	justify-content: space-between;
	list-style: none;
	padding-left: 0;
	width: 100%;
}

.paging__detail li {
	
}

@media all and (min-width: 768px) {
	.page-numbers {
		justify-content: flex-start;
	}
}

/* use plugin / wp-pagenavi ----------------- */

.wp-pagenavi {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	line-height: 1;
	flex-grow: 1;
}

.wp-pagenavi a {
	transition: 0.15s ease;
	transition-property: color, background, border;
}

.wp-pagenavi a:hover {
	color:  #fff;
	background-color: var(--color-main);
	border-color: var(--color-main);
}

.wp-pagenavi > * {
	display: block;
	margin: 5px;
	padding: 0.75em 1em;
	border: 1px solid rgba(0,0,0,0.5);
	min-width: 1em;
	text-align: center;
	box-sizing: border-box;
	border-radius: 5px;
}

.wp-pagenavi > *:nth-child(2) {
	margin-left: 0;
}

.wp-pagenavi > *:last-child {
	margin-right: 0;
}

.wp-pagenavi .pages {
	display: none;
}

.wp-pagenavi .previouspostslink {
	display: none;
}

.wp-pagenavi .current {
	
}

.wp-pagenavi .first {
	position: relative;
	margin-right: 25px;
}

.wp-pagenavi .first::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: -21px;
	display: block;
	width: 10px;
	height: 1px;
	margin: auto;
	background-color: rgba(0,0,0,0.2);
}

.wp-pagenavi .last {
	position: relative;
	margin-left: 25px;
}

.wp-pagenavi .last::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: -21px;
	right: auto;
	display: block;
	width: 10px;
	height: 1px;
	margin: auto;
	background-color: rgba(0,0,0,0.2);
}

.wp-pagenavi .extend {
	border: none;
	flex-grow: 1;
}

.wp-pagenavi .extend::before {
	content: "";
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 1px;
	background-color: rgba(0,0,0,0.1);
}

.wp-pagenavi .nextpostslink {
	display: none;
}

.wp-pagenavi .last {
	
}


/* ------------------------------------------------------------ */
/* not-found */

.not-found .search-form {
	
}

.not-found {
	
}

.not-found__ttl {
	
}

@media all and (min-width: 1024px) {
	
	.not-found.article-index-list {
		text-align: center;
	}
	
	.not-found.article-index-list:before,
	.not-found.article-index-list:after {
		display: none;
	}
	
	.not-found .entry__body {
		margin: auto;
		padding: 60px 0;
	}
	
}