@charset "utf-8";

.main-contents {
	
}

.part-header {
	background-image: none;
}

.part-header:before {
	background-image: linear-gradient(90deg, #ee849e 0%,#768ec6 100%);
	opacity: 0.8;
}

.part-header__back {
	position: absolute;
	z-index: 2;
	text-align: left;
}

@media screen and (min-width: 1280px), print and (min-width: 1280px) {
	
	.main-contents {
	}
	
	.part-header {
		order: 1;
		width: 100%;
		margin-bottom: 60px;
	}
	
	.part-body {
		order: 3;
	}
	
	.part-footer {
		order: 2;
	}
}


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


.news-index-header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.news-index-header__ttl {
	display: flex;
	align-items: center;
	margin: 0;
	font-size: 1.5rem;
}

.news-index-header__ttl > a {
	display: flex;
	align-items: center;
	text-decoration: none;
	border-bottom: none;
}
.news-index-header__ttl .small {
	font-size: 80%;
	display: inline-block;
}

.news-index-header__ttl a:hover {
	color: #000;
	text-decoration: underline;
}

.news-index-header__ttl .icon {
	margin-right: 20px;
	/* stroke-width: 1.7; */
}

.news-index__anchor {
	font-size: 1.2rem;
	transition: color 0.2 ease-in;
}

@media screen and (min-width: 768px), print and (min-width: 768px) {
	
	.news-index-header {
		justify-content: flex-start;
	}
}



.article-index-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.article-index__item {
	border-top: 1px solid rgba(0,0,0,0.2);
}

.article-index__item:last-child {
	border-bottom: 1px solid rgba(0,0,0,0.2);
}

.article__anchor {
	position: relative;
	display: flex;
	justify-content: space-between;
	text-decoration: none;
	padding: 30px 0;
	border: none;
	transition: color 0.2s ease-in;
}

.article__anchor:hover {
	text-decoration: none;
}

.article__anchor:before {
	position: absolute;
	left: 0;
	top: -1px;
	display: block;
	width: 0;
	height: 1px;
	background-color: var(--color-main);
	content: "";
	transition: width 0.35s ease;
}

.article__anchor:hover:before {
	width: 100%;
}

.article__anchor-inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: calc(100% - 18vw - 20px);
}

.article-img {
	width: 80px;
	height: 60px;
	margin: 0;
}

.article-img img {
	display: block;
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
	transition: filter 0.2s ease-in;
	filter: brightness(1);
}



a:hover .article-img img {
	filter: brightness(1.15);
}

.article-meta {
	margin: 0;
	font-size: 1.15rem;
}

.article-meta time {
	margin-right: 1em;
}

.article-ttl {
	margin-top: 10px;
	font-size: 1.6rem;
	font-weight: 600;
	font-family: var(--serif);
	font-feature-settings: 'palt';
	-ms-word-wrap: break-word;
	word-wrap: break-word;
}

.article-ttl:empty:before {
	content: "タイトルなし";
	opacity: 0.35;
}

.article-ttl .article-ttl-inner {
	transform: scaleX(0.92);
	letter-spacing: 0.06em;
	transform-origin: left;
	width: 108%;
}

.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 screen and (min-width: 768px), print and (min-width: 768px) {
	
	.article-index {
		padding-top: 0;
		border-top: none;
	}
	
	/* .article-index-list {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	} */
	
	.article-index__item {
	}
	
	.article-index__item:last-child {
		border-bottom: none;
	}
	.article__anchor {
		
	}
	
	
	.article__anchor-inner {
		width: calc(100% - 150px);
	}
	
	.article-img {
		position: relative;
		width: 130px;
		height: 90px;
	}
}

@media all and (min-width: 1280px) {

	.article-ttl {
		font-size: 2.5rem;
	}
	
	.article-index__item {
	}
	
	.article__anchor-inner {
		width: calc(100% - 200px);
	}
}


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

.archives {
	padding: 40px 0;
}

.archives > * {
	margin-bottom: 20px;
	border-radius: 10px;
	box-sizing: border-box;
}

.archives > *:last-child {
	margin-bottom: 0;
}

.archives-inner {
	position: relative;
	margin-bottom: 40px;
	box-sizing: border-box;
}

.archives-inner:last-child {
	margin-bottom: 0;
}

.archives__ttl {
	position: relative;
	display: block;
	font-weight: bold;
	margin: 0 0 10px;
	padding-left: 15px;
	font-size: 1.3rem;
	line-height: 1;
}

.archives__ttl::before {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	bottom: 0;
	right: auto;
	display: block;
	width: 4px;
	height: 150%;
	margin: auto;
	background-color: var(--color-main);
	box-sizing: border-box;
	border-radius: 5px;
}

.archives__list {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.archives__list > *:last-child {
	margin-bottom: 0;
}

.archives__list li {
	font-family: var(--serif);
	font-feature-settings: 'palt';
}

.archives__list li:first-child a {
	margin-left: 0;
}

.archives__list li + li:before {
		content: '／';
}

.archives__list li.current-cat a {
	border-bottom: 3px solid currentColor;
}

.archives__list a {
	display: inline-block;
	font-weight: bold;
	line-height: 2;
	text-decoration: none;
	border-bottom: none;
	margin: 0 0.5em;
	transform: scaleX(0.92);
	letter-spacing: 0.06em;
	transform-origin: left;
}

.archives select {
	width: 100%;
	height: auto;
	padding: 10px 0;
	background-color: transparent;
	border-radius: 0;
	border: none;
	border-bottom: 1px solid rgba(0,0,0,0.25);
}

.archives select:focus {
	box-shadow: none !important;
}

@media all and (min-width: 1280px) {
	
	.archives {
		margin-bottom: 60px;
		padding: 0;
		text-align: left;
		font-size: 1.3rem;
	}
	
	.archives > * {
		margin-bottom: 0px;
		display: flex;
		justify-content: space-between;
	}
	
	.archives-inner {
		margin-bottom: 0;
	}
	
}


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

.search-form {
	position: relative;
	margin: 0 auto;
}

.search-form form {
	display: flex;
	justify-content: space-between;
}

.search-form__txt {
	width: 100%;
	height: auto;
	background-color: transparent !important;
	padding: 10px 0;
	border-radius: 0;
	border: none;
	border-bottom: 1px solid rgba(0,0,0,0.25);
}

.search-form__txt:focus {
	box-shadow: none !important;
}

.search-form__btn {
	position: absolute;
	right: 0;
	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%;
	}
}



/* ------------------------------------------------------------ */
/* 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;
	}
}

/* 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(58,55,55,1);
	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 {
		
	}
}

/* use plugin / wp-pagenavi ----------------- */

.wp-pagenavi {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	line-height: 1;
}

.wp-pagenavi a {
	transition: 0.15s ease;
	transition-property: color, background, border;
}

.wp-pagenavi a:hover {
	color:  #fff;
	background-color: rgba(58,55,55,1);
	border-color: rgba(58,55,55,1);
}

.wp-pagenavi > * {
	display: block;
	margin: 5px;
	padding: 0.75em 1em;
	border: none;
	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 {
	
}

.wp-pagenavi .page {
	
}

.wp-pagenavi .current {
	
}

.wp-pagenavi .extend {
	border: none;
}

.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 {
		width: calc((((100% - (40px * 9)) / 10) * 7) + (40px * 6)); /* max:10col,9gap / col:7, gap:6 */
		margin: auto;
		padding: 60px 0;
	}
	
}