/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 16 2026 | 02:59:38 */
.-ps-style-normal .p-postList__item:hover .p-postList__body, .-type-card .p-postList__item:hover .p-postList__body, .-type-list .p-postList__item:hover .p-postList__body {
 	opacity:1;}
/* アーカイブ　hover時に opacity*/
.post-type-archive-construction .l-mainContent__inner .p-postList__item .p-postList__body:hover{
	opacity:1;
}
/* -------------
投稿にボタンの追加
-----------------------------*/
.c-tabBody__item .-type-card .p-postList__meta:after {
content: "詳細はこちら »";
    display: inline-block;
    width: 100%;
    padding: 0.6rem 1rem;
    margin: 1em auto 0;
    background-color: var(--color_main); /* 深みのある色でシックに */
    color: #fff;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}
.c-tabBody__item .-type-card .p-postList__meta::after:hover {
    background-color: #555;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.c-tabBody__item .p-postList__link {
display: flex;
flex-direction: column;
}
.c-tabBody__item .p-postList__body {
position: relative;
transition: opacity .25s;
flex-grow: 1;
display: flex;
flex-direction: column;
}
.p-postList .p-postList__title {
flex-grow: 1;
}
/* -------------
一覧ページ記事設定
-----------------------------*/
.-type-card .p-postList__title, .-type-list .p-postList__title, .-type-list2 .p-postList__title{
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}
.-type-card .p-postList__title::after , .-type-list .p-postList__title::after , .-type-list2 .p-postList__title::after {
  content: "";
  position: absolute;
  bottom: 0;
    left: 0;
    width: 30%;
    height: 0.5px;
  background-color: #000; /* 下線の色 */
}
@media (min-width: 600px) {
    #sidebar .-type-list .p-postList__title, .-type-card .p-postList__excerpt {
        font-size: 12px;
    }
}
@media (min-width: 600px) {
  #sidebar .-type-card .p-postList__title, .-related .p-postList__title, .-type-thumb .p-postList__title, .w-footer:not(.-col1) .p-postList__title {
        font-size: 12px;
    }
}
/* -------------
サイドバーの設定
-----------------------------*/
.p-profileBox {
  position: relative;
  padding: 20px;
  overflow: hidden;
  z-index: 1;
  border-radius: 14px;
  background: #fff; /* 中の背景を明示 */
}
.p-profileBox::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(135deg, #000, #b5b5b5);
  border-radius: inherit;
  z-index: -1;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.p-profileBox:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  transform: translateY(-2px);
  transition: all .3s ease;
}
.p-profileBox__btn a {
  width: 100%;
  margin-top: 12px;
  border-radius: 999px;
  font-weight: 700;
}

/* -------------
投稿の詳細ページ
-----------------------------*/
@media (min-width: 600px) {
	.single .c-postTitle__ttl {
		margin: 0 0.4em 0;
		border-top: 1px solid #ddd;
		border-bottom: 1px solid #ddd;
		padding: 0.3em 0;
	}
}
.c-postTitle__date {
	border-right: none;
	margin-right: 0;
	padding: 0.8em;
	text-align: center;
	background: var(--color_main);
	border-radius: 100px;
	color: #fff;
}
@media (min-width: 600px) {
	.c-postTitle__date .__y {
		font-size: 13px;
	}
}
@media (min-width: 600px) {
	.c-postTitle__date .__md {
		font-size: 13px;
	}
}
/* -------------
-type-listの装飾
-----------------------------*/
.c-tabBody__item .p-postList .p-postList__title {
	padding: 0.2em;
}
.-type-list .p-postList__item {
	margin-bottom: 0;
	margin-top: 0;
	border-bottom: 1px dashed #ddd;
	padding: 1em 0;
}
.c-tabBody__item .p-postList__body {
	position: relative;
	transition: opacity .25s;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	background-image: linear-gradient(transparent calc(100% - 1px), var(--color_gray) 50%, var(--color_gray)), linear-gradient(90deg, transparent calc(100% - 1px), var(--color_gray) 50%, var(--color_gray));
	background-repeat: repeat;
	background-size: 16px 16px;
	margin: 0 0 0 1em;
}
.c-tabBody__item .p-postList .p-postList__title {
	flex-grow: 1;
}
.c-tabBody__item .p-postList__meta {
	display: block;
	text-align: center;
}
/* -------------
目次の設定
-----------------------------*/
ul.is-style-index li:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900; 
  content: "\f6b7"; 
	border-bottom: 0;
	border-left: 0;
	top: 0;
	background: no-repeat;
}
.p-toc__link {
	position: relative;
	display: inline-block;
	text-decoration: none;
	color: inherit;
	border-bottom: 1px dashed var(--color_main);
	transition: color 0.3s ease;
}
.p-toc__link::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 0;
	height: 1px;
	background-color: var(--color_main);
	transition: width 0.3s ease;
	z-index: 1;
}
.p-toc__link:hover {
	color: var(--color_main_hover);
}
.p-toc__link:hover::after {
	width: 100%;
}