@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px) {
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px) {
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px) {
  /*必要ならばここにコードを書く*/
}

/*--------------- サイト全体 ---------------*/
html {
  overflow-x: clip;
}

body {
  overflow-x: visible;
}

/************************************
** ヘッダー
************************************/

/************************************
** TOPページ
************************************/

/************************************
** サイドバー
************************************/
/*--------------- 見出し ---------------*/
.sidebar .widget-title,
.sidebar h2,
.sidebar h3 {
  background: transparent !important;
  color: #333 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 0 0 12px !important;
  margin: 0 0 14px !important;
  border: none !important;
  border-bottom: 1px solid #e5e5e5 !important;
  box-shadow: none !important;
  position: relative;
}

.sidebar .widget-title::after,
.sidebar h2::after,
.sidebar h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 115px;
  height: 2px;
  background: var(--fx-main);
}

/*--------------- ウィジェット ---------------*/
.sidebar .widget {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin-bottom: 30px !important;
}

/*--------------- カテゴリ一覧 ---------------*/
.sidebar .widget_categories ul {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  list-style: none !important;
}

.sidebar .widget_categories li {
  margin: 0 !important;
  padding: 0 !important;
  border-bottom: 1px solid #e5e5e5;
  list-style: none !important;
}

.sidebar .widget_categories li a {
  display: block;
  position: relative;
  padding: 13px 8px 13px 32px;
  color: #555 !important;
  font-size: 14px;
  text-decoration: none !important;
}

/* 左のアイコン */
.sidebar .widget_categories li a::before {
  content: "›";
  position: absolute;
  left: 10px;
  top: 20px;
  font-size: 10px;
  color: var(--fx-main);
  line-height: 1;
}

.sidebar .widget_categories li a:hover {
  color: var(--fx-main) !important;
  background: #f8fafc;
}

/* 961px以上はサイドバーを右に表示 */
@media screen and (min-width: 961px) {
  .content-in {
    display: flex !important;
    align-items: flex-start !important;
  }

  #main {
    width: calc(100% - 340px) !important;
    max-width: calc(100% - 340px) !important;
  }

  #sidebar,
  .sidebar {
    display: block !important;
    width: 300px !important;
    flex-shrink: 0 !important;
  }
}

/* 960px以下でサイドバー非表示 */
@media screen and (max-width: 960px) {
  #sidebar,
  .sidebar {
    display: none !important;
  }

  #main {
    width: 100% !important;
    max-width: 100% !important;
  }

  .content-in {
    display: block !important;
  }
}

/************************************
** 記事の中身
************************************/
/*---------------　メイン　---------------*/
:root {
  --fx-main: #0f2747;
  --fx-main-dark: #091a31;
  --fx-btn: #facc15;
  --fx-btn-hover: #eab308;
  --fx-border: #dbeafe;
  --fx-text: #1f2937;
}

/* 全体背景 */
body,
#container,
#content,
#main,
.article {
  background: #fff !important;
}

/*　H2　*/
.article h2 {
  position: relative;
  background: var(--fx-main);
  color: #fff;
  padding: 18px 22px;
  margin: 48px 0 28px;
  border-radius: 0;
  border-left: none;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}

/* 上下ライン */
.article h2::before,
.article h2::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}

.article h2::before {
  top: 4px;
}

.article h2::after {
  bottom: 4px;
}

/*　H3　*/
.article h3 {
  background: transparent !important;
  color: var(--fx-text);
  padding: 0 0 12px !important;
  border: none !important;
  border-bottom: 1px solid #ddd !important;
  box-shadow: none !important;
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

.article h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 28%;
  height: 2px;
  background: var(--fx-main);
}

/*　H4　*/
.article h4 {
  position: relative;
  margin: 28px 0 16px;
  padding-left: 14px;
  color: var(--fx-text);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
  background: transparent !important;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
  border-left: 4px solid var(--fx-main) !important;
  box-shadow: none !important;
}

@media screen and (max-width: 480px) {
  .article h2 {
    font-size: 20px;
    padding: 16px;
  }

  .article h3 {
    font-size: 18px;
  }

  .article h4 {
    font-size: 16px;
    margin: 24px 0 14px;
  }
}

/*　ボタン　*/
.fx-btn,
.fx-ranking-btn {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 280px;
  margin: 20px auto 0;
  padding: 14px 28px;
  background: linear-gradient(180deg, #f7d774 0%, #d6a72e 100%);
  color: #1f1600 !important;
  border: 1px solid #b8891e;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-decoration: none !important;
  box-shadow:
    0 10px 22px rgba(160, 115, 20, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transition: all 0.22s ease;
}

.fx-btn::before,
.fx-ranking-btn::before {
  content: "";
  position: absolute;
  top: -70%;
  left: -90%;
  width: 38%;
  height: 240%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.65) 50%,
    transparent 100%
  );
  transform: rotate(25deg);
  animation: fxPremiumShine 3.8s infinite;
}

.fx-btn::after,
.fx-ranking-btn::after {
  content: "›";
  position: relative;
  z-index: 2;
  font-size: 18px;
  margin-left: 10px;
  color: #3a2800;
  transition: transform 0.22s ease;
}

.fx-btn:hover,
.fx-ranking-btn:hover {
  background: linear-gradient(180deg, #ffe28a 0%, #c9971f 100%);
  transform: translateY(-2px);
  box-shadow:
    0 14px 28px rgba(160, 115, 20, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.fx-btn:hover::after,
.fx-ranking-btn:hover::after {
  transform: translateX(4px);
}

@keyframes fxPremiumShine {
  0% {
    left: -90%;
  }
  36% {
    left: 130%;
  }
  100% {
    left: 130%;
  }
}

.fx-cta-box {
  position: relative;
  overflow: hidden;
  margin: 38px 0;
  padding: 30px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #faf7ef 100%);
  border: 1px solid #d8c18a;
  border-radius: 2px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(80, 60, 20, 0.1);
}

.fx-cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #b8891e 0%, #f7d774 50%, #b8891e 100%);
}

.fx-btn-lead {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  background: #fff8e6;
  color: #8a6718;
  border: 1px solid #ead49a;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.fx-cta-title {
  margin-bottom: 10px;
  color: #1f2937;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0.02em;
}

.fx-cta-text {
  margin-bottom: 18px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.9;
}

.fx-cta-note {
  margin-top: 12px;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.6;
}

@media screen and (max-width: 480px) {
  .fx-btn,
  .fx-ranking-btn {
    width: 100%;
    min-width: auto;
    padding: 14px 18px;
    font-size: 13px;
  }

  .fx-cta-box {
    padding: 26px 18px;
    border-radius: 2px;
  }

  .fx-cta-title {
    font-size: 18px;
  }

  .fx-cta-text {
    font-size: 13px;
  }

  .fx-btn-lead {
    font-size: 11px;
  }
}

/*---------------　比較表（カラム）　---------------*/
.fx-table {
  margin: 32px 0;
  overflow-x: auto;
}

.fx-table table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--fx-border);
}

.fx-table th {
  background: #eef6ff !important;
  color: var(--fx-main-dark) !important;
  border: 1px solid var(--fx-border) !important;
  border-top: 4px solid var(--fx-main) !important;
  padding: 14px 16px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-align: center;
  box-shadow: none !important;
}

.fx-table td {
  border: 1px solid var(--fx-border);
  padding: 16px;
  text-align: center;
  color: var(--fx-text);
}

.fx-table tr:nth-child(even) {
  background: #f8fafc;
}

.fx-table .fx-btn {
  min-width: 0;
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
  padding: 10px 14px;
  font-size: 13px;
  box-sizing: border-box;
  white-space: normal;
  line-height: 1.5;
}

@media screen and (min-width: 835px) {
  .fx-table {
    overflow-x: visible;
  }

  .fx-table table {
    min-width: 0;
    table-layout: fixed;
  }

  .fx-table th,
  .fx-table td {
    padding: 14px 10px;
    font-size: 14px;
    word-break: keep-all;
  }
}

/*---------------　ランキング表（画像付き表）　---------------*/
.fx-ranking-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: #fff;
  border: 1px solid var(--fx-border);
}

.fx-ranking-table th {
  background: #eef6ff !important;
  color: var(--fx-main-dark) !important;
  border: 1px solid var(--fx-border) !important;
  border-top: 4px solid var(--fx-main) !important;
  padding: 14px 16px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-align: center;
  box-shadow: none !important;
}

.fx-ranking-table td {
  border: 1px solid var(--fx-border);
  padding: 14px 16px;
  vertical-align: middle;
}

.fx-ranking-table th {
  padding: 12px 14px !important;
  font-size: 14px !important;
}

.fx-ranking-table tr:nth-child(even) {
  background: #f8fafc;
}

.fx-company {
  width: 190px;
  text-align: center;
}

.fx-company img {
  max-width: 120px;
  height: auto;
  margin-bottom: 6px;
}

.fx-company a {
  color: var(--fx-main);
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}

/* ポイントタイトル */
.fx-point-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.5;
  color: var(--fx-main-dark);
}

/* ポイントリスト */
.fx-point-list {
  margin: 0;
  padding-left: 18px;
  border: none !important;
  background: transparent !important;
}

.fx-point-list li {
  margin-bottom: 6px;
  line-height: 1.65;
  font-size: 14px;
}

.fx-ranking-btn {
  margin-top: 12px;
  padding: 10px 18px;
}

@media screen and (max-width: 768px) {
  .fx-ranking-table tr {
    margin-bottom: 16px;
  }

  .fx-ranking-table td {
    padding: 12px 14px;
  }

  .fx-point-title {
    font-size: 15px;
  }

  .fx-point-list li {
    font-size: 13px;
  }
}

/*---------------　口コミ　---------------*/
.fx-review-box {
  position: relative;
  margin: 28px 0;
  padding: 24px 26px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

/* 引用符 */
.fx-review-box::before,
.fx-review-box::after {
  position: absolute;
  color: #d1d5db;
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
}

.fx-review-box::before {
  content: "“";
  top: 10px;
  left: 14px;
}

.fx-review-box::after {
  content: "”";
  right: 14px;
  bottom: 0;
}

/* 本文 */
.fx-review-text {
  margin: 0;
  color: var(--fx-text);
  line-height: 1.9;
  font-size: 15px;
  position: relative;
  z-index: 1;
}

/* 引用元 */
.fx-review-source {
  margin-top: 14px;
  font-size: 12px;
  color: #6b7280;
}

/*---------------　よくある質問　---------------*/
.fx-faq {
  margin-top: 32px;
}

.fx-faq-item {
  padding: 24px 0;
  border-bottom: 1px solid #e5e7eb;
}

.fx-faq-q,
.fx-faq-a {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.fx-faq-q {
  margin-bottom: 14px;
}

.fx-faq-q p,
.fx-faq-a p {
  margin: 0;
  line-height: 1.9;
}

.q-icon,
.a-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}

.q-icon {
  color: #2563eb;
  border: 2px solid #2563eb;
}

.a-icon {
  color: #f59e0b;
  border: 2px solid #f59e0b;
}

/*---------------　箇条書きリスト　---------------*/
.article ul {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 22px 28px 22px 42px;
}

.article li {
  margin-bottom: 10px;
  line-height: 1.8;
}

/*---------------　重要箇所マーカー　---------------*/
.fx-marker,
.article strong {
  background: linear-gradient(transparent 62%, #fcf69f 62%);
  font-weight: 700;
}

.article p {
  margin-bottom: 1.5em;
  line-height: 1.9;
}

@media screen and (max-width: 768px) {
  .fx-ranking-table,
  .fx-ranking-table tbody,
  .fx-ranking-table tr,
  .fx-ranking-table td {
    display: block;
    width: 100%;
  }

  .fx-ranking-table th {
    display: none;
  }

  .fx-ranking-table tr {
    margin-bottom: 20px;
    border: 1px solid var(--fx-border);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
  }

  .fx-ranking-table td {
    border: none;
    border-bottom: 1px solid #eef2f7;
  }

  .fx-company {
    width: 100%;
    padding-bottom: 10px;
  }

  .fx-point-title {
    font-size: 17px;
  }
}

/*---------------　重要箇所赤文字　---------------*/
.fx-red {
  color: #dc2626;
  font-weight: 700;
}

/*---------------　不要な物削除　---------------*/
.author-info,
.post-author,
.author-box,
.byline,
.meta-author {
  display: none !important;
}

/*---------------　吹き出し　---------------*/
.fx-speech {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 28px 0;
}

.fx-speech-icon {
  flex-shrink: 0;
  width: 52px;
  text-align: center;
}

.fx-speech-icon img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--fx-border);
  background: #fff;
}

.fx-speech-name {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: #6b7280;
  line-height: 1.4;
}

.fx-speech-box {
  position: relative;
  flex: 1;
  background: #fff;
  border: 1px solid var(--fx-border);
  border-left: 4px solid var(--fx-main);
  border-radius: 10px;
  padding: 16px 18px;
  color: var(--fx-text);
  line-height: 1.9;
  box-shadow: 0 2px 8px rgba(29, 78, 137, 0.06);
}

.fx-speech-box::before {
  content: "";
  position: absolute;
  top: 18px;
  left: -9px;
  border-width: 8px 9px 8px 0;
  border-style: solid;
  border-color: transparent var(--fx-border) transparent transparent;
}

.fx-speech-box::after {
  content: "";
  position: absolute;
  top: 19px;
  left: -7px;
  border-width: 7px 8px 7px 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
}

.fx-speech-box p {
  margin: 0;
}

/* 右向き吹き出し */
.fx-speech-right {
  flex-direction: row-reverse;
}

.fx-speech-right .fx-speech-box {
  border-left: 1px solid var(--fx-border);
  border-right: 4px solid var(--fx-main);
}

.fx-speech-right .fx-speech-box::before {
  left: auto;
  right: -9px;
  border-width: 8px 0 8px 9px;
  border-color: transparent transparent transparent var(--fx-border);
}

.fx-speech-right .fx-speech-box::after {
  left: auto;
  right: -7px;
  border-width: 7px 0 7px 8px;
  border-color: transparent transparent transparent #fff;
}

/* 注意系 */
.fx-speech-caution .fx-speech-box {
  border-left-color: #f59e0b;
  background: #fffbeb;
}

.fx-speech-caution .fx-speech-box::after {
  border-color: transparent #fffbeb transparent transparent;
}

.fx-speech-right.fx-speech-caution .fx-speech-box {
  border-right-color: #f59e0b;
}

.fx-speech-right.fx-speech-caution .fx-speech-box::after {
  border-color: transparent transparent transparent #fffbeb;
}

@media screen and (max-width: 480px) {
  .fx-speech {
    gap: 10px;
    margin: 24px 0;
  }

  .fx-speech-icon {
    width: 44px;
  }

  .fx-speech-icon img {
    width: 44px;
    height: 44px;
  }

  .fx-speech-name {
    font-size: 10px;
  }

  .fx-speech-box {
    padding: 14px 15px;
    font-size: 14px;
  }
}

/*---------------　サイドバー目次　---------------*/
.sidebar-scroll .toc {
  font-size: 13px;
  line-height: 1.8;
}

.sidebar-scroll .toc-list {
  padding-left: 0;
  margin: 0;
}

.sidebar-scroll .toc-list > li {
  list-style-position: inside;
  margin-bottom: 10px;
  padding-left: 0;
  border-left: none;
}

.sidebar-scroll .toc-list li li {
  margin-top: 6px;
  margin-left: 12px;
  padding-left: 10px;
  font-size: 12px;
  border-left: 1px solid #dcdcdc;
}

.sidebar-scroll .toc a {
  color: #444;
  text-decoration: none;
  transition: 0.2s;
}

.sidebar-scroll .toc a:hover {
  color: #0f2747;
}

/*---------------　文中目次　---------------*/
.entry-content .toc {
  width: 100%;
  max-width: 720px;
  margin: 40px auto;
  padding: 34px 46px;
  box-sizing: border-box;
  position: relative;
  border: none;
  background: repeating-linear-gradient(
    -45deg,
    #fcfcfc,
    #fcfcfc 4px,
    #fafafa 4px,
    #fafafa 8px
  );
}

/* 上下2本線 */
.entry-content .toc::before,
.entry-content .toc::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    to bottom,
    #dcdcdc 0,
    #dcdcdc 1px,
    transparent 1px,
    transparent 2px,
    #ececec 2px,
    #ececec 3px
  );
}

.entry-content .toc::before {
  top: 0;
}

.entry-content .toc::after {
  bottom: 0;
}

/* タイトル */
.entry-content .toc-title {
  text-align: center;
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #333;
}

.entry-content .toc-list {
  padding-left: 0;
  margin: 0;
}

/* 親項目 */
.entry-content .toc-list > li {
  margin-bottom: 14px;
  line-height: 1.8;
  font-size: 15px;
}

/* 子項目 */
.entry-content .toc-list li li {
  margin-top: 6px;
  margin-left: 16px;
  padding-left: 10px;
  border-left: 1px solid #d8d8d8;
  font-size: 13px;
  color: #777;
}

/* リンク */
.entry-content .toc a {
  color: #444;
  text-decoration: none;
  transition: 0.2s;
}

.entry-content .toc a:hover {
  color: #0f2747;
}

/* もっと見る機能 */
.entry-content .toc-content {
  max-height: 420px;
  overflow: hidden;
  position: relative;
}

/* 開いた状態 */
.entry-content .toc-content.is-open {
  max-height: 9999px;
}

/* 下フェード */
.entry-content .toc-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

/* 開いたらフェード消す */
.entry-content .toc-content.is-open::after {
  display: none;
}

/* もっと見るボタン */
.entry-content .toc-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
  font-size: 12px;
  color: #777;
  cursor: pointer;
}

/* 左右の点 */
.entry-content .toc-more-btn::before,
.entry-content .toc-more-btn::after {
  content: "····";
  letter-spacing: 2px;
  color: #bdbdbd;
}

/* ボタン本体 */
.entry-content .toc-more-btn span {
  display: inline-block;
  padding: 9px 20px;
  border: 1px solid #cfcfcf;
  border-radius: 999px;
  background: #fff;
  transition: 0.2s;
}

/* ホバー */
.entry-content .toc-more-btn span:hover {
  background: #f7f7f7;
}

@media screen and (max-width: 768px) {
  .entry-content .toc {
    padding: 28px 22px;
  }

  .entry-content .toc-title {
    font-size: 19px;
  }

  .entry-content .toc-list > li {
    font-size: 14px;
  }

  .entry-content .toc-list li li {
    font-size: 12px;
  }
}

/* アイキャッチ上のカテゴリーラベルを非表示 */
.eye-catch .cat-label {
  display: none;
}

/*---------------　カテゴリー表示　---------------*/
.eye-catch .cat-label {
  background: #4a90e2; /* 青 */
  color: #fff;
  border-radius: 3px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* ホバー */
.eye-catch .cat-label:hover {
  opacity: 0.9;
}

.entry-categories-tags a {
  background: #4a90e2;
  color: #fff;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 12px;
  text-decoration: none;
  margin-right: 10px;
}

/* 投稿日 */
.post-date {
  color: #888;
  font-size: 13px;
}

/*---------------　パンくず　---------------*/
.breadcrumb {
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  width: 100vw !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  margin-top: 0 !important;
  margin-bottom: 30px !important;
  padding: 8px max(24px, calc((100vw - 1200px) / 2 + 24px)) !important;
  box-sizing: border-box !important;
  background: #f7f7f7 !important;
  border-top: 1px solid #ececec !important;
  border-bottom: 1px solid #ececec !important;
  box-shadow: inset 0 -1px 8px rgba(0, 0, 0, 0.06) !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 8px !important;
}

.breadcrumb .breadcrumb-caption {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 8px !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* 各パーツ */
.breadcrumb .breadcrumb-home,
.breadcrumb .breadcrumb-item,
.breadcrumb a,
.breadcrumb span,
.breadcrumb i {
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
}

/* 文字 */
.breadcrumb a,
.breadcrumb span {
  color: #777 !important;
  font-size: 11px !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

/* 矢印 */
.breadcrumb .fa-angle-right {
  color: #aaa !important;
  font-size: 9px !important;
  margin: 0 4px !important;
}

/* アイコン */
.breadcrumb .fa-home,
.breadcrumb .fa-folder {
  color: #666 !important;
  font-size: 10px !important;
  margin-right: 4px !important;
}

/* 不要な改行・余白 */
.breadcrumb br {
  display: none !important;
}

.breadcrumb p {
  margin: 0 !important;
  padding: 0 !important;
}

/************************************
** カテゴリー一覧
************************************/
.archive.category .content-in {
  max-width: 1200px !important;
  margin: 0 auto !important;
  display: flex !important;
  gap: 40px !important;
  align-items: flex-start !important;
}

/* メイン */
.archive.category #main {
  width: calc(100% - 340px) !important;
  max-width: calc(100% - 340px) !important;
}

/* サイドバー */
.archive.category #sidebar {
  width: 300px !important;
  flex-shrink: 0 !important;
  display: block !important;
}

/* 記事一覧 */
.archive.category .list {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 34px 16px !important;
}

/* カード */
.archive.category .entry-card-wrap,
.archive.category .a-wrap {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.archive.category .entry-card {
  display: grid !important;
  grid-template-areas:
    "thumb"
    "meta"
    "title" !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
  position: relative !important;
}

/* Cocoon構造対策 */
.archive.category .entry-card-content {
  display: contents !important;
}

/* アイキャッチ */
.archive.category .entry-card-thumb {
  grid-area: thumb !important;
  width: 100% !important;
  margin: 0 0 8px !important;
  float: none !important;
}

.archive.category .entry-card-thumb img {
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 8px !important;
}

/* メタ情報 */
.archive.category .entry-card-meta,
.archive.category .entry-card-info {
  grid-area: meta !important;
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  gap: 0 !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 0 1px !important;
  padding: 0 !important;
  font-size: 11px !important;
  line-height: 1.3 !important;
  color: #777 !important;
  position: static !important;
  text-align: left !important;
}

/* カテゴリー */
.archive.category .cat-label {
  display: inline-flex !important;
  align-items: center !important;
  position: static !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  color: #777 !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  white-space: nowrap !important;
}

/* カテゴリー横のフォルダアイコン */
.archive.category .cat-label::before {
  content: "\f07c";
  font-family:
    "Font Awesome 5 Free", "Font Awesome 6 Free", "FontAwesome" !important;
  font-weight: 900 !important;
  display: inline-block !important;
  margin-right: 5px !important;
  color: #666 !important;
  font-size: 10px !important;
  line-height: 1 !important;
  vertical-align: middle !important;
  margin-top: -3px;
}

/* 区切り線 */
.archive.category .cat-label::after {
  content: "｜";
  display: inline-block !important;
  margin: 0 6px !important;
  color: #bbb !important;
}

/* 標準フォルダアイコン削除 */
.fa-folder-open:before {
  display: none !important;
  content: none !important;
}

/* 日付 */
.archive.category .post-date,
.archive.category .entry-date,
.archive.category .post-update {
  display: inline-flex !important;
  align-items: center !important;
  position: static !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  min-width: 0 !important;
  transform: none !important;
  text-align: left !important;
  color: #777 !important;
  font-size: 11px !important;
  line-height: 1.3 !important;
  white-space: nowrap !important;
}

/* 日付アイコン削除 */
.archive.category .post-date .fa,
.archive.category .entry-date .fa,
.archive.category .post-update .fa {
  display: none !important;
}

/* タイトル */
.archive.category .entry-card-title {
  grid-area: title !important;
  margin: 0 !important;
  padding: 0 !important;
  position: static !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
  font-weight: 700 !important;
}

.archive.category .entry-card-title a {
  color: #222 !important;
  text-decoration: none !important;
}

/* 不要要素削除 */
.archive.category .entry-card-snippet {
  display: none !important;
}

/* PV削除 */
.archive.category .post-view-count,
.archive.category .view-count,
.archive.category .page-view,
.archive.category .pv,
.archive.category .fa-chart-bar,
.archive.category .fa-chart-line,
.archive.category [class*="view"],
.archive.category [class*="pv"] {
  display: none !important;
}

/* タイトル下線 */
.entry-title,
.archive-title {
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 34px;
  border-bottom: 1px solid #ddd;
  font-size: 30px !important;
  line-height: 1.4 !important;
}

.entry-title::after,
.archive-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 210px;
  height: 2px;
  background: #1f4e8c;
}

/* ページネーション */
.pagination,
.pager {
  text-align: center !important;
  margin: 55px 0 20px !important;
}

.page-numbers {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  margin: 0 4px !important;
  background: #e5e5e5 !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

.page-numbers.current {
  background: #1f4e8c !important;
}

/************************************
** フッター
************************************/
#footer,
.footer {
  background: #050505 !important;
  border: none !important;
  padding: 0 !important;
  margin-top: 100px !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  overflow-x: hidden !important;
}

#footer .wrap,
#footer .footer-in,
#footer .footer-widgets,
.footer .wrap,
.footer .footer-in {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
}

.footer-widgets {
  display: block !important;
  width: 100% !important;
  padding: 60px 0 !important;
}

.footer-left {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.footer-center,
.footer-right {
  display: none !important;
}

.footer .widget {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.fx-footer-custom {
  width: 100%;
  max-width: 1256px;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: 100px;
  box-sizing: border-box;
  color: #fff;
}

.fx-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
  padding-bottom: 30px;
  margin-bottom: 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fx-footer-nav a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s ease;
}

.fx-footer-nav a:hover {
  opacity: 0.7;
}

.fx-footer-disclaimer {
  color: #9a9a9a;
  font-size: 12px;
  line-height: 2;
}

.fx-footer-disclaimer p {
  margin: 0 0 18px;
}

.fx-footer-disclaimer strong {
  color: #fff;
  margin-right: 6px;
  font-weight: 600;
}

.fx-footer-copy {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #777;
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .fx-footer-custom {
    padding: 0 20px;
    padding-top: 48px;
  }

  .fx-footer-nav {
    flex-direction: column;
    gap: 14px;
  }

  .fx-footer-nav a {
    font-size: 13px;
  }

  .fx-footer-disclaimer {
    font-size: 11px;
    line-height: 1.9;
  }

  .fx-footer-copy {
    font-size: 11px;
  }
}

/* 961px以上はサイドバー表示 */
@media screen and (min-width: 961px) {
  .content-in,
  .archive.category .content-in {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    gap: 40px !important;
    padding-top: 40px;
  }

  #main,
  .main,
  .archive.category #main {
    flex: 1 1 0 !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    margin-top: 0 !important;
  }

  #sidebar,
  .sidebar,
  .sidebar-scroll,
  .archive.category #sidebar {
    display: block !important;
    flex: 0 0 300px !important;
    width: 300px !important;
    max-width: 300px !important;
    min-width: 300px !important;
  }
}

.main {
  padding-top: 0 !important;
}

/* 960px以下はサイドバー完全非表示 */
@media screen and (max-width: 960px) {
  #sidebar,
  .sidebar,
  .sidebar-scroll,
  .archive.category #sidebar {
    display: none !important;
  }

  #main,
  .main,
  .archive.category #main {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .content-in,
  .archive.category .content-in {
    display: block !important;
  }

  /* カテゴリー一覧 */
  .archive.category .list {
    grid-template-columns: 1fr !important;
  }
}
