/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 08 2026 | 22:04:09 */
/* -----------------------------
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 .-type-card .p-postList__meta::after {
  content: "詳細はこちら »";
  display: block;
  width: 100%;
  margin: 1.1em auto 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, var(--color_main), #2f7fd8);
  color: #fff;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.14);
  transition: 0.3s ease;
  box-sizing: border-box;
}

/* カード全体をhoverした時 */
.c-tabBody__item .-type-card .p-postList__link:hover .p-postList__meta::after,
.c-tabBody__item .-type-card .p-postList__meta:hover::after {
  background: linear-gradient(135deg, #333, #555);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

/* 矢印に少し動き */
.c-tabBody__item .-type-card .p-postList__link:hover .p-postList__meta::after {
  letter-spacing: 0.08em;
}

.c-tabBody__item .p-postList__body {
  position: relative;
  transition: opacity .25s;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
/* カード全体を縦並び */
.p-postList.-type-card .p-postList__link{
	height:100%;
	display:flex;
	flex-direction:column;
}

/* 本文エリア */
.p-postList.-type-card .p-postList__body{
	flex:1;
	display:flex;
	flex-direction:column;
}

/* 投稿日・カテゴリーを最下部に固定 */
.p-postList.-type-card .p-postList__meta{
	margin-top:auto;
}


/* -----------------------------
一覧ページ記事設定
----------------------------- */
.-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;
  margin: 32px auto;
  padding: 32px 34px;
  background: linear-gradient(135deg, #f7fbff 0%, #ffffff 55%, #eef6ff 100%);
  border: 1px solid #d7e6f5;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(20, 70, 120, 0.08);
  overflow: hidden;
}

.p-profileBox::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(0, 112, 192, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 18px rgba(0, 112, 192, 0.04),
    0 0 0 38px rgba(0, 112, 192, 0.03);
}

.p-profileBox::after {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  width: 5px;
  height: 64px;
  background: linear-gradient(180deg, #0b65c2, #00a6d6);
  border-radius: 0 8px 8px 0;
}

.p-profileBox__name {
  position: relative;
  color: #0b2f5b;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.p-profileBox__text {
  position: relative;
  color: #34495e;
  letter-spacing: 0.03em;
  z-index: 1;
}
/* スマホ調整 */
@media (max-width: 600px) {
  .p-profileBox {
    padding: 26px 22px;
    border-radius: 14px;
  }

  .p-profileBox__name {
    font-size: 1.1rem;
    padding-left: 32px;
  }

  .p-profileBox__text {
    font-size: 0.95rem;
    line-height: 1.9;
  }
}
/* この記事を書いた人：装飾（ブランドカラーver） */
.l-articleBottom__section.-author {
  margin-top: 64px;
  padding: 36px;
  background: linear-gradient(135deg, #fff 0%, rgba(0,0,0,0.02) 100%);
  border-radius: 28px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color_deep02);
}

.l-articleBottom__section.-author .l-articleBottom__title {
  margin-bottom: 24px;
  text-align: center;
  color: var(--color_deep02);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  position: relative;
    border-left: none;
}

/* タイトル下ライン */
.l-articleBottom__section.-author .l-articleBottom__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color_deep02);
  margin: 10px auto 0;
  opacity: 0.6;
position: static;
}

.l-articleBottom__section.-author .p-authorBox {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px;
  background: #fff;
  border-radius: 24px;
}

/* 左側 */
.l-articleBottom__section.-author .p-authorBox__l {
  flex: 0 0 180px;
  text-align: center;
}

.l-articleBottom__section.-author .avatar {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border: 3px solid var(--color_deep02);
}

/* 名前 */
.l-articleBottom__section.-author .p-authorBox__name {
  display: block;
  margin-top: 14px;
  color: var(--color_deep02);
  line-height: 1.6;
  transition: 0.3s;
}

.l-articleBottom__section.-author .p-authorBox__name:hover {
  opacity: 0.7;
}

/* 右側テキスト */
.l-articleBottom__section.-author .p-authorBox__desc {
  margin: 0;
  color: #444;
  font-size: 0.98rem;
  line-height: 2;
}

/* スマホ時は非表示 */
@media screen and (max-width: 767px) {
  .l-articleBottom__section.-author {
    display: none;
  }
}
/* -----------------------------
投稿の詳細ページ
----------------------------- */
@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;
  }
}

@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 var(--color_main);
  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__meta {
  text-align: center;
}

/* -----------------------------
サイドバー設定（装飾）
----------------------------- */
.widget_archive select,
.widget_categories select,
.wp-block-archives select,
.wp-block-categories select {
  border: 1px solid var(--color_main);
}

.widget_categories > ul > .cat-item > a:before,
.wp-block-categories-list > li > a:before {
  color: var(--color_main);
}

/* -----------------------------
目次の設定
----------------------------- */
ul.is-style-index li:before {
  font-family: 'Font Awesome 6 Free';
  content: '\f044' !important;
  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%;
}
/* 検索フォーム全体 */
#search-2 .c-searchForm {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
  overflow: hidden;
}

/* 入力欄 */
#search-2 .c-searchForm__s {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 14px;
  font-size: 14px;
  outline: none;
}

/* プレースホルダー */
#search-2 .c-searchForm__s::placeholder {
  color: #999;
}

/* 検索ボタン */
#search-2 .c-searchForm__submit {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--color_main) !important;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
    right: 10px;
    top: initial;
}

/* ホバー */
#search-2 .c-searchForm__submit:hover {
  opacity: .85;
  transform: scale(.96);
}