/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 27 2026 | 07:00:29 */
/* -----------------------------
hover時 opacity
----------------------------- */
.-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 */
.post-type-archive-construction .l-mainContent__inner .p-postList__item .p-postList__body:hover {
  opacity: 1;
}

/* -----------------------------
お知らせ
----------------------------- */
.-type-simple .p-postList__body {
  display: flex;
  flex-direction: column;
  gap: .4em;
}

.-type-simple .p-postList__cat {
  background: #eef4f1;
  color: var(--color_main);
  padding: .2em .6em;
  border-radius: 20px;
  font-size: .75rem;
}

/* -----------------------------
もっと見るボタン
----------------------------- */
.is-style-more_btn {
  margin-top: 2em;
  text-align: center;
}

.is-style-more_btn .btn_text {
  padding: .7em 1.8em;
  font-size: .9rem;
  font-weight: 600;
  color: var(--color_main);
  border: 1px solid var(--color_main);
  border-radius: 999px;
  background: #fff;
  transition:
    background-color .25s ease,
    color .25s ease,
    transform .25s ease;
}

/* -----------------------------
投稿カード（タブ内）設定
----------------------------- */
/* リンク・ボディの縦並び */
.c-tabBody__item .p-postList__link {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.c-tabBody__item .p-postList__body {
  position: relative;
  transition: opacity .25s;
  flex: 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.-type-card .p-postList__item {
  display: flex;
}

/* タイトルで高さを取る */
.c-tabBody__item .p-postList.-type-card .p-postList__title {
  padding: 0.2em;
}

/* excerptの高さを固定して揃える */
.c-tabBody__item .p-postList.-type-card .p-postList__excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  min-height: calc(1.7em * 3);
  line-height: 1.7;
}

/* metaエリア */
.c-tabBody__item .p-postList.-type-card .p-postList__meta {
  margin-top: auto;
  padding: 0.8em 1em 1em;
  text-align: center;
}

/* 詳細ボタン */
.c-tabBody__item .-type-card .p-postList__meta:after {
  content: "詳細はこちら ›";
  display: inline-block;
  width: 100%;
  padding: 0.55rem 0.8rem;
  margin: 10px auto 0;
  background-color: var(--color_main);
  color: #fff;
  border-left: 3px solid #ddd;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: background 0.25s;
}
/* ホバー時ボタン色（親要素へのhoverで制御） */
.c-tabBody__item .-type-card .p-postList__item:hover .p-postList__meta:after {
  background-color: var(--color_deep03);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* -----------------------------
一覧ページ記事設定
----------------------------- */
.-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;
  }

  #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: 16px;
  overflow: hidden;
  z-index: 1;
  background-image: repeating-linear-gradient(
    45deg,
    #f1f1f1,
    #f1f1f1 2px,
    transparent 2px,
    transparent 9px
  );
  box-shadow: 1px 2px 9px #ddd;
  border: none;
}

.p-profileBox::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(135deg, var(--color_main), #cccccc);
  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__btn a {
  width: 100%;
}

.widget_archive select,
.widget_categories select,
.wp-block-archives select,
.wp-block-categories select {
  border: 1px solid #00000094;
}

.c-listMenu a {
  border-bottom: 1px dashed var(--color_main);
}

.widget_categories > ul > .cat-item > a:before,
.wp-block-categories-list > li > a:before {
  color: var(--color_main);
}

/* -----------------------------
投稿の詳細ページ
----------------------------- */
@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 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--color_main);
  color: #fff;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  flex: none;
  margin: 0;
  padding: 0;
}

.c-postTitle__date .__y {
  font-size: 0.75rem;
  opacity: 0.8;
}

@media (min-width: 600px) {
  .c-postTitle__date .__y {
    font-size: 13px;
  }

  .c-postTitle__date .__md {
    font-size: 13px;
  }
}

/* -----------------------------
目次の設定
----------------------------- */
/*リストが崩れるため除外*/
ul.is-style-index li:before {
    font-family: 'Font Awesome 6 Free';
    content: '\f007' !important; /* user */
    font-weight: 900;
    border-bottom: 0;
    border-left: 0;
    top: 0;
    background: none;
}

.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%;
}