@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){
  /*必要ならばここにコードを書く*/
}
/* モバイルトップメニュー 横スクロール*/
@media screen and (max-width: 480px){
	ul.menu-mobile{
		overflow-x: auto;
		overflow-y: hidden;
		display: flex !important;
		flex-wrap: nowrap;
		font-size: 14px;
		justify-content: flex-start;
		padding: 0 1em;
		-webkit-overflow-scrolling: touch;
		position: relative;
	}

	ul.menu-mobile > li{
		padding-right: 1em;
		white-space: nowrap;
	}
	ul.menu-mobile　.item-label{
		white-space: nowrap;
		font-size: 14px;
	}
}

/* ============================================
   SWELL風装飾スタイル（codersforkids.com用）
   ============================================ */

/* ------ point-box（この記事でわかること） ------ */
.point-box {
  border: 1px solid #e8732a;
  padding: 1.4em 1.5em 1.25em;
  margin: 1.8em 0;
  background: #fff;
}
.point-box__title {
  color: #e8732a;
  font-weight: 700;
  font-size: .9em;
  margin: 0 0 .8em 0;
  padding: 0;
  background: none;
}
.point-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.point-box ul li {
  padding: .25em 0 .25em 1.6em;
  position: relative;
  font-size: .88em;
  line-height: 1.65;
}
.point-box ul li::before {
  content: '\2713';
  color: #e8732a;
  font-weight: 700;
  position: absolute;
  left: .2em;
  top: .25em;
}

/* ------ merit-box（メリット） ------ */
.merit-box {
  border: 1px solid #3d9e56;
  margin: .8em 0;
  background: #fff;
  overflow: hidden;
}
.merit-box__title {
  background: #3d9e56;
  color: #fff;
  font-weight: 700;
  font-size: .85em;
  padding: .4em 1em;
  margin: 0;
}
.merit-box ul {
  list-style: none;
  margin: 0;
  padding: .75em 1em .75em 1em;
}
.merit-box ul li {
  padding: .2em 0 .2em 1.5em;
  position: relative;
  font-size: .88em;
  line-height: 1.65;
}
.merit-box ul li::before {
  content: '\2713';
  color: #3d9e56;
  font-weight: 700;
  position: absolute;
  left: .2em;
  top: .2em;
}

/* ------ caution-box（デメリット・注意点） ------ */
.caution-box {
  border: 1px solid #c0392b;
  margin: .8em 0;
  background: #fff;
  overflow: hidden;
}
.caution-box__title {
  background: #c0392b;
  color: #fff;
  font-weight: 700;
  font-size: .85em;
  padding: .4em 1em;
  margin: 0;
}
.caution-box ul {
  list-style: none;
  margin: 0;
  padding: .75em 1em .75em 1em;
}
.caution-box ul li {
  padding: .2em 0 .2em 1.5em;
  position: relative;
  font-size: .88em;
  line-height: 1.65;
}
.caution-box ul li::before {
  content: '\00d7';
  color: #c0392b;
  font-weight: 700;
  position: absolute;
  left: .2em;
  top: .2em;
}

/* ------ comparison-table ------ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85em;
  margin: 1em 0;
}
.comparison-table th {
  background: #e8732a;
  color: #fff;
  padding: .6em .75em;
  text-align: center;
  font-weight: 700;
  border: 1px solid #d4651c;
}
.comparison-table td {
  padding: .55em .75em;
  border: 1px solid #ddd;
  text-align: center;
  vertical-align: middle;
}
.comparison-table tr:nth-child(even) td {
  background: #fdf6f0;
}

/* ------ back-to-top ------ */
.back-to-top {
  text-align: right;
  margin: 1em 0 0;
  font-size: .8em;
}
.back-to-top a {
  color: #e8732a;
  text-decoration: none;
}

/* ------ H2スタイル ------ */
.entry-content h2,
.post-content h2 {
  border-left: 4px solid #e8732a;
  border-bottom: 1px solid #e8d5c4;
  padding: .45em 0 .45em .75em;
  margin: 2.2em 0 1em;
  font-size: 1.15em;
  font-weight: 700;
  line-height: 1.4;
  background: #fff8f3;
}

/* ------ H3スタイル ------ */
.entry-content h3,
.post-content h3 {
  border-left: 3px solid #e8732a;
  padding: .3em 0 .3em .65em;
  margin: 1.8em 0 .8em;
  font-size: 1.05em;
  font-weight: 700;
  line-height: 1.4;
}


/* ============================================
   フロントページ - 全幅レイアウト強制
   ============================================ */

/* Cocoonのコンテナ制限をホームページで解除 */
body.home .site-container,
body.home .contents-container,
body.home .content-in,
body.home .wrap,
body.home .main {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
}

/* サイドバー非表示 */
body.home .sidebar,
body.home .widget-area {
  display: none !important;
}

/* フロントページのメインラッパー */
#cfk-front {
  width: 100%;
  padding: 0;
  margin: 0;
}

/* ============================================
   ヒーローセクション
   ============================================ */

.cfk-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 800px;
  background-image: url('https://codersforkids.com/wp-content/uploads/2026/06/hero-pc.jpg');
  background-size: cover;
  background-position: right center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* 左側に白いグラデオーバーレイ（画像の左が元々明るいのでそこを活かす） */
.cfk-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.92) 0%,
    rgba(255,255,255,0.85) 30%,
    rgba(255,255,255,0.4) 50%,
    rgba(255,255,255,0) 65%
  );
  pointer-events: none;
}

/* テキストブロック */
.cfk-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 10px;
}

.cfk-hero__text {
  max-width: 480px;
}

/* キャッチコピー */
.cfk-hero__title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.3;
  color: #111;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

/* サブテキスト */
.cfk-hero__desc {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.9;
  margin: 0;
}

/* ============================================
   レスポンシブ（768px以下）
   ============================================ */
@media screen and (max-width: 768px) {
  .cfk-hero {
    width: 100%;
    margin-left: 0;
    height: 500px;
    background-position: 75% center;
  }
  .cfk-hero::before {
    background: linear-gradient(
      to right,
      rgba(255,255,255,0.95) 0%,
      rgba(255,255,255,0.8) 50%,
      rgba(255,255,255,0.1) 100%
    );
  }
  .cfk-hero__inner {
    padding: 0 24px;
  }
  .cfk-hero__title {
    font-size: 1.8rem;
  }
  .cfk-hero__desc {
    font-size: 0.82rem;
  }
}

/* ============================================
   ヘッダー - カスタムロゴ（Coders）
   ============================================ */

/* Cocoonの既存ロゴ画像を非表示にして独自ロゴに置き換え */
.site-name-text,
.header-logo-image,
.site-logo-wrap img {
  display: none !important;
}

/* ヘッダー全体を白背景に */
.site-header,
#header {
  background: #fff !important;
  border-bottom: 1px solid #eee;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

/* サイト名リンクのスタイルリセット */
.site-name a,
.header-logo-text,
.header-logo a {
  text-decoration: none !important;
}

/* HTMLロゴを挿入するためのCSS */
.header-logo::before,
.site-name::before {
  content: '';
}

/* カスタムロゴ用（front-page.phpで挿入） */
.cfk-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  line-height: 1;
}

.cfk-logo__mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cfk-logo__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1a5bde;
  color: #fff;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 7px;
  border-radius: 5px;
  letter-spacing: -1px;
  line-height: 1;
}

.cfk-logo__name {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a3e;
  letter-spacing: -0.02em;
  font-family: 'Helvetica Neue', sans-serif;
}

.cfk-logo__tagline {
  font-size: 10px;
  color: #888;
  margin-top: 3px;
  padding-left: 36px;
  letter-spacing: 0.02em;
}

/* ============================================
   ヘッダー背景を白に（正しいセレクター）
   ============================================ */
#header-container,
#header-container-in,
#header,
#header-in {
  background: #fff !important;
  background-color: #fff !important;
}

#header-container {
  border-bottom: 1px solid #eee;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

/* ナビゲーション背景も白に */
#navi,
.navi-in,
.menu-top,
.global-navigation {
  background: #fff !important;
}

/* ナビメニューの文字色 */
.menu-top .menu-item a {
  color: #333 !important;
}

/* ============================================
   ロゴをCSSで置き換え
   ============================================ */

/* 既存ロゴ画像を非表示 */
.logo-header .site-name-text img.site-logo-image,
img.header-site-logo-image {
  display: none !important;
}

/* ロゴ領域にCSSロゴを表示 */
.logo-header .site-name-text::before {
  content: '';
  display: block;
}

.site-name-text-link {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none !important;
  gap: 3px;
}

.site-name-text-link::before {
  content: '</> Coders';
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 800;
  color: #1a1a3e;
  font-family: 'Helvetica Neue', 'Arial', sans-serif;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.site-name-text-link::after {
  content: '次世代のプログラミング人材へ';
  font-size: 10px;
  color: #888;
  font-weight: 400;
  margin-left: 32px;
  letter-spacing: 0.02em;
}

/* </> 部分だけ青くする（難しいのでテキストとして表示） */

/* コーダーズのサイト名テキスト非表示 */
.site-name-text {
  font-size: 0 !important;
}

/* ============================================
   ロゴ二重表示の修正 - 疑似要素を無効化
   ============================================ */
.site-name-text-link::before,
.site-name-text-link::after {
  content: none !important;
  display: none !important;
}

.site-name-text {
  font-size: inherit !important;
}

/* cfk-logo のスタイル（JS注入後） */
.cfk-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  line-height: 1;
  gap: 4px;
}

.cfk-logo__mark {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cfk-logo__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1a5bde;
  color: #fff !important;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 7px;
  border-radius: 5px;
  letter-spacing: -1px;
  line-height: 1.4;
  text-decoration: none;
}

.cfk-logo__name {
  font-size: 20px;
  font-weight: 800;
  color: #1a1a3e !important;
  letter-spacing: -0.02em;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  text-decoration: none;
}

.cfk-logo__tagline {
  font-size: 10px;
  color: #888 !important;
  padding-left: 32px;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.site-name-text-link {
  display: flex !important;
  flex-direction: column !important;
  text-decoration: none !important;
}

/* ============================================
   ロゴ整列修正 & 点線ボーダー除去
   ============================================ */

/* 点線ボーダー除去 */
#header-container,
#header-container-in,
#header,
#header-in,
.header-container {
  border-bottom: none !important;
  box-shadow: none !important;
}
#header-container {
  border-bottom: 1px solid #e8e8e8 !important;
}

/* ロゴリンクをflexで縦積みに */
.site-name-text-link {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 3px !important;
  text-decoration: none !important;
}

/* cfk-logo全体 */
.cfk-logo {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 3px !important;
  line-height: 1 !important;
}

/* アイコン+テキスト横並び（中央揃え） */
.cfk-logo__mark {
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  line-height: 1 !important;
}

/* </> アイコンボックス */
.cfk-logo__icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #1a5bde !important;
  color: #fff !important;
  font-family: 'Courier New', monospace !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 0 6px !important;
  border-radius: 4px !important;
  letter-spacing: -0.5px !important;
  line-height: 1 !important;
  height: 26px !important;
  flex-shrink: 0 !important;
}

/* Coders テキスト */
.cfk-logo__name {
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #1a1a3e !important;
  letter-spacing: -0.02em !important;
  font-family: 'Helvetica Neue', Arial, sans-serif !important;
  line-height: 26px !important;
}

/* タグライン（アイコン幅33px+gap7px=40pxずらして字揃え） */
.cfk-logo__tagline {
  display: block !important;
  font-size: 10px !important;
  color: #999 !important;
  padding-left: 33px !important;
  letter-spacing: 0.02em !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}

/* ============================================
   ホームページのグレー背景・隙間を除去
   ============================================ */
body.home,
body.home.public-page {
  background-color: #fff !important;
}

/* ヘッダーとヒーローの間の隙間を除去 */
body.home #contents,
body.home #contents-in,
body.home .content-in,
body.home #content-in {
  padding-top: 0 !important;
  margin-top: 0 !important;
  background-color: #fff !important;
}

body.home #main {
  background-color: transparent !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* ナビとコンテンツの間のスペース除去 */
body.home .contents-container,
body.home #contents-container {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* ============================================
   ヘッダーとヒーローの隙間を完全に除去
   ============================================ */
body.home #contents,
body.home .content,
body.home .content-in,
body.home #content-in,
body.home .wrap.content-in,
body.home #main,
body.home .main {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* ナビの下マージンも除去 */
body.home #navi,
body.home .navi,
body.home .navi-in {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* ヒーロー自体も上詰め */
body.home .cfk-hero {
  margin-top: 0 !important;
}

/* ============================================
   カスタムフッター
   ============================================ */

#cfk-footer {
  background: #f8f9fb;
  border-top: 1px solid #e8e8e8;
  margin-top: 0;
}

.cfk-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px 40px;
}

/* 5カラムグリッド */
.cfk-footer__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}

/* カラム見出し */
.cfk-footer__heading {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a5bde;
  margin: 0 0 16px;
  padding: 0;
  border: none;
  background: none;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.cfk-footer__heading--orange {
  color: #e8732a;
}

/* リンクリスト */
.cfk-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cfk-footer__list li {
  border-bottom: 1px solid #eee;
}

.cfk-footer__list li:last-child {
  border-bottom: none;
}

.cfk-footer__list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.82rem;
  color: #333 !important;
  text-decoration: none !important;
  transition: color .15s;
  line-height: 1.4;
}

.cfk-footer__list li a::after {
  content: '›';
  color: #aaa;
  font-size: 1rem;
  flex-shrink: 0;
}

.cfk-footer__list li a:hover {
  color: #1a5bde !important;
}

/* 人気コンテンツの●マーク */
.cfk-footer__list--popular li a::before {
  content: '●';
  color: #1a5bde;
  font-size: 0.5rem;
  margin-right: 8px;
  flex-shrink: 0;
}

/* すべての記事を見るボタン */
.cfk-footer__cta-btn {
  display: block;
  margin-top: 20px;
  background: #e8732a;
  color: #fff !important;
  text-align: center;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: background .2s;
}

.cfk-footer__cta-btn:hover {
  background: #d4611a;
}

/* コピーライト */
.cfk-footer__bottom {
  background: #1a1a3e;
  padding: 16px 32px;
  text-align: center;
}

.cfk-footer__copy {
  color: #888;
  font-size: 0.75rem;
  margin: 0;
}

/* レスポンシブ */
@media screen and (max-width: 900px) {
  .cfk-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media screen and (max-width: 480px) {
  .cfk-footer__grid {
    grid-template-columns: 1fr;
  }
  .cfk-footer__inner {
    padding: 32px 16px;
  }
}

/* ============================================
   人気記事ランキング
   ============================================ */

.cfk-popular {
  background: #fff;
  padding: 56px 0 48px;
}

.cfk-popular__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ヘッダー行 */
.cfk-popular__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.cfk-popular__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a1a3e;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cfk-popular__title-icon {
  font-size: 1.1rem;
}

.cfk-popular__more-link {
  font-size: 0.82rem;
  color: #1a5bde;
  text-decoration: none;
}

.cfk-popular__more-link:hover {
  text-decoration: underline;
}

/* 5カラムグリッド */
.cfk-popular__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* カード */
.cfk-popular__card-link {
  display: block;
  text-decoration: none !important;
  color: inherit !important;
}

.cfk-popular__card-link:hover .cfk-popular__card-title {
  color: #1a5bde;
}

/* サムネイルラップ */
.cfk-popular__thumb-wrap {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 6px;
  background: #eee;
}

.cfk-popular__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}

.cfk-popular__card-link:hover .cfk-popular__thumb {
  transform: scale(1.04);
}

/* ランキング番号バッジ */
.cfk-popular__rank {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  border-radius: 0 0 6px 0;
}

.cfk-popular__rank--1 { background: #e8b800; }
.cfk-popular__rank--2 { background: #9aa0a6; }
.cfk-popular__rank--3 { background: #b07c4b; }
.cfk-popular__rank--4,
.cfk-popular__rank--5 { background: rgba(0,0,0,.35); }

/* カテゴリバッジ */
.cfk-popular__cat {
  position: absolute;
  bottom: 6px;
  left: 6px;
  z-index: 2;
  background: #1a5bde;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 3px;
  max-width: calc(100% - 12px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 記事本文エリア */
.cfk-popular__body {
  padding: 10px 2px 0;
}

.cfk-popular__card-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a1a3e;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .15s;
}

/* もっと見るボタン */
.cfk-popular__footer {
  text-align: center;
  margin-top: 28px;
}

.cfk-popular__all-btn {
  display: inline-block;
  padding: 10px 28px;
  border: 1px solid #1a5bde;
  color: #1a5bde !important;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: background .2s, color .2s;
}

.cfk-popular__all-btn:hover {
  background: #1a5bde;
  color: #fff !important;
}

/* レスポンシブ */
@media screen and (max-width: 900px) {
  .cfk-popular__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .cfk-popular__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cfk-popular__inner {
    padding: 0 16px;
  }
}

/* 閲覧数表示 */
.cfk-popular__views {
  display: block;
  font-size: 0.72rem;
  color: #888;
  margin-top: 5px;
}

/* ============================================
   カテゴリから探す
   ============================================ */
.cfk-cats {
  background: #f4f7fb;
  padding: 56px 0 48px;
}

.cfk-cats__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.cfk-cats__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a1a3e;
  margin: 0 0 24px;
  padding: 0;
  border: none;
  background: none;
}

/* 4カラム×2行グリッド */
.cfk-cats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* カード */
.cfk-cats__card {
  background: #fff;
  border-radius: 10px;
  padding: 20px 18px 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}

.cfk-cats__card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  transform: translateY(-2px);
}

/* カード上部（アイコン＋名前） */
.cfk-cats__card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

/* アイコン */
.cfk-cats__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* カテゴリ名 */
.cfk-cats__card-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a3e;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  line-height: 1.3;
}

/* 説明文 */
.cfk-cats__card-desc {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.6;
  margin: 0 0 12px;
  flex: 1;
}

/* 記事一覧リンク */
.cfk-cats__card-link {
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.cfk-cats__card-link:hover {
  text-decoration: underline !important;
}

/* レスポンシブ */
@media screen and (max-width: 900px) {
  .cfk-cats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 480px) {
  .cfk-cats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .cfk-cats__inner {
    padding: 0 16px;
  }
}

/* カテゴリ背景を白に・セクション間の線を消す */
.cfk-cats {
  background: #fff !important;
  border-top: none !important;
}
.cfk-popular {
  border-bottom: none !important;
}

/* ============================================
   特集ピックアップ
   ============================================ */
.cfk-features {
  background: #fff;
  padding: 48px 0 56px;
}

.cfk-features__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.cfk-features__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a1a3e;
  margin: 0 0 24px;
  padding: 0;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cfk-features__label {
  background: #1a5bde;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

/* 4カラムグリッド */
.cfk-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* カード共通 */
.cfk-features__card {
  border-radius: 12px;
  padding: 24px 20px 20px;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .2s, box-shadow .2s;
  min-height: 200px;
}

.cfk-features__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

/* タグ */
.cfk-features__tag {
  display: inline-block;
  background: rgba(255,255,255,.25);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  width: fit-content;
}

/* タイトル */
.cfk-features__card-title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  line-height: 1.5;
}

/* 説明文 */
.cfk-features__card-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,.85);
  margin: 0;
  line-height: 1.6;
  margin-top: auto;
}

/* カラーバリエーション */
.cfk-features__card--blue {
  background: linear-gradient(135deg, #1a5bde 0%, #3b82f6 100%);
}
.cfk-features__card--orange {
  background: linear-gradient(135deg, #e8732a 0%, #f59e0b 100%);
}
.cfk-features__card--green {
  background: linear-gradient(135deg, #16a34a 0%, #34d399 100%);
}
.cfk-features__card--purple {
  background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
}

/* レスポンシブ */
@media screen and (max-width: 900px) {
  .cfk-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .cfk-features__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .cfk-features__inner {
    padding: 0 16px;
  }
}

/* ============================================
   モバイル最適化（全セクション統合）
   ============================================ */

/* ===== タブレット（768px以下）===== */
@media screen and (max-width: 768px) {

  /* ヒーロー */
  .cfk-hero {
    height: 420px;
    background-position: 72% center;
  }
  .cfk-hero::before {
    width: 100%;
    background: linear-gradient(to right,
      rgba(255,255,255,.92) 0%,
      rgba(255,255,255,.82) 45%,
      rgba(255,255,255,.2) 75%,
      rgba(255,255,255,0) 100%
    );
  }
  .cfk-hero__inner {
    padding: 0 20px;
  }
  .cfk-hero__text {
    max-width: 65%;
  }
  .cfk-hero__title {
    font-size: 1.65rem;
    margin-bottom: 12px;
  }
  .cfk-hero__desc {
    font-size: 0.8rem;
    line-height: 1.7;
  }
  .cfk-hero__desc br { display: none; }

  /* 人気記事 */
  .cfk-popular {
    padding: 36px 0 32px;
  }
  .cfk-popular__inner {
    padding: 0 16px;
  }
  .cfk-popular__title {
    font-size: 1rem;
  }
  .cfk-popular__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .cfk-popular__card-title {
    font-size: 0.78rem;
    -webkit-line-clamp: 2;
  }

  /* カテゴリ */
  .cfk-cats {
    padding: 36px 0 32px;
  }
  .cfk-cats__inner {
    padding: 0 16px;
  }
  .cfk-cats__title {
    font-size: 1rem;
    margin-bottom: 16px;
  }
  .cfk-cats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .cfk-cats__card {
    padding: 14px 12px 12px;
  }
  .cfk-cats__icon {
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
  }
  .cfk-cats__card-name {
    font-size: 0.85rem;
  }
  .cfk-cats__card-desc {
    font-size: 0.72rem;
    display: none;
  }

  /* 特集 */
  .cfk-features {
    padding: 36px 0 40px;
  }
  .cfk-features__inner {
    padding: 0 16px;
  }
  .cfk-features__title {
    font-size: 1rem;
    margin-bottom: 16px;
  }
  .cfk-features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .cfk-features__card {
    padding: 16px 14px 14px;
    min-height: 160px;
    gap: 8px;
  }
  .cfk-features__card-title {
    font-size: 0.85rem;
    line-height: 1.45;
  }
  .cfk-features__card-desc {
    font-size: 0.7rem;
    display: none;
  }
  .cfk-features__tag {
    font-size: 0.65rem;
    padding: 2px 8px;
  }

  /* フッター */
  .cfk-footer__inner {
    padding: 32px 16px 24px;
  }
  .cfk-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .cfk-footer__heading {
    font-size: 0.78rem;
    margin-bottom: 10px;
  }
  .cfk-footer__list li a {
    font-size: 0.76rem;
    padding: 8px 0;
  }
  .cfk-footer__cta-btn {
    font-size: 0.76rem;
    padding: 10px 12px;
  }
}

/* ===== スマホ（480px以下）===== */
@media screen and (max-width: 480px) {

  /* ヒーロー */
  .cfk-hero {
    height: 360px;
    background-position: 80% center;
  }
  .cfk-hero__text {
    max-width: 70%;
  }
  .cfk-hero__title {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .cfk-hero__desc {
    display: none;
  }

  /* 人気記事：スマホは2列維持 */
  .cfk-popular__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .cfk-popular__more-link {
    display: none;
  }

  /* カテゴリ：2列 */
  .cfk-cats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .cfk-cats__card {
    padding: 12px 10px 10px;
  }
  .cfk-cats__card-top {
    gap: 8px;
  }
  .cfk-cats__icon {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  .cfk-cats__card-name {
    font-size: 0.8rem;
  }

  /* 特集：2列 */
  .cfk-features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .cfk-features__card {
    padding: 14px 12px 12px;
    min-height: 140px;
  }
  .cfk-features__card-title {
    font-size: 0.78rem;
  }

  /* フッター：1列に */
  .cfk-footer__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cfk-footer__bottom {
    padding: 14px 16px;
  }

  /* 人気記事のもっと見るボタン */
  .cfk-popular__all-btn {
    font-size: 0.78rem;
    padding: 8px 20px;
  }
}

/* ============================================
   スマホ細部修正
   ============================================ */
@media screen and (max-width: 768px) {

  /* ① タイトルのbrを非表示（孤立文字防止） */
  .cfk-hero__title br {
    display: none;
  }

  /* ② グラデーション強化（テキスト読みやすく） */
  .cfk-hero::before {
    background: linear-gradient(
      to right,
      rgba(255,255,255,.97) 0%,
      rgba(255,255,255,.92) 40%,
      rgba(255,255,255,.65) 60%,
      rgba(255,255,255,.1) 80%,
      rgba(255,255,255,0) 100%
    ) !important;
  }

  /* ③ ヒーローとランキングの余白を詰める */
  .cfk-hero {
    margin-bottom: 0 !important;
  }
  .cfk-popular {
    padding-top: 28px !important;
  }

  /* ④ ナビ：スマホは折り返しを許可・文字小さく */
  #navi .navi-in .menu-header {
    flex-wrap: wrap;
    justify-content: center;
  }
  #navi .navi-in .menu-header > li > a {
    font-size: 0.72rem !important;
    padding: 8px 8px !important;
  }

  /* ⑤ reCAPTCHAバッジを左下に固定（カードに被らないよう） */
  .grecaptcha-badge {
    bottom: 80px !important;
    z-index: 9 !important;
  }
}

@media screen and (max-width: 480px) {

  /* ヒーローテキストエリアを広げる */
  .cfk-hero__text {
    max-width: 78% !important;
  }

  /* タイトルをもう少し大きく（読みやすく） */
  .cfk-hero__title {
    font-size: 1.45rem !important;
    line-height: 1.35 !important;
  }

  /* ナビの文字さらに縮小 */
  #navi .navi-in .menu-header > li > a {
    font-size: 0.65rem !important;
    padding: 6px 5px !important;
  }
}

/* ============================================
   スマホ修正 v2
   ============================================ */

/* ① ナビ下の点線を完全除去 */
#header-container::after,
#header-container-in::after,
.header-container::after,
.navi::after,
.navi-in::after {
  display: none !important;
  content: none !important;
}
#header-container,
#header-container-in {
  border-bottom: 1px solid #e8e8e8 !important;
  box-shadow: none !important;
}
.navi, .navi-in {
  border-bottom: none !important;
  box-shadow: none !important;
}

/* ② reCAPTCHAを右下に固定（コンテンツに被らない） */
.grecaptcha-badge {
  position: fixed !important;
  bottom: 14px !important;
  right: 14px !important;
  z-index: 99 !important;
  opacity: 0.6;
}

/* ③ モバイル：人気記事を4件表示（5件目を非表示） */
@media screen and (max-width: 768px) {
  .cfk-popular__card:nth-child(5) {
    display: none;
  }
}

/* ④ モバイル：ヒーローの背景位置を右に寄せて
      左側のテキストエリアを広く確保 */
@media screen and (max-width: 768px) {
  .cfk-hero {
    background-position: 85% center !important;
  }
  .cfk-hero::before {
    background: linear-gradient(
      to right,
      rgba(255,255,255,.98) 0%,
      rgba(255,255,255,.95) 35%,
      rgba(255,255,255,.7) 55%,
      rgba(255,255,255,.15) 72%,
      rgba(255,255,255,0) 100%
    ) !important;
  }
  .cfk-hero__text {
    max-width: 68% !important;
  }
}

/* ============================================
   スマホ修正 v3
   ============================================ */

/* ① ホームページではreCAPTCHAバッジを非表示 */
body.home .grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
}

/* ② ヒーロー：テキストエリアを広げてう。孤立を防ぐ */
@media screen and (max-width: 768px) {
  .cfk-hero__text {
    max-width: 80% !important;
  }
  .cfk-hero__title {
    font-size: 1.35rem !important;
    letter-spacing: -0.01em !important;
  }
  /* 背景を右に押し込んでテキストエリアをより広く */
  .cfk-hero {
    background-position: 95% center !important;
  }
  /* グラデーション：画像内テキスト（#LEARN等）をカバー */
  .cfk-hero::before {
    background: linear-gradient(
      to right,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,.98) 40%,
      rgba(255,255,255,.85) 58%,
      rgba(255,255,255,.3) 72%,
      rgba(255,255,255,0) 85%
    ) !important;
  }
}

@media screen and (max-width: 480px) {
  .cfk-hero__text {
    max-width: 82% !important;
  }
  .cfk-hero__title {
    font-size: 1.3rem !important;
  }
}

/* ============================================
   スマホ修正 v4 - テキスト折り返し・グラデーション
   ============================================ */

/* brを復活（正しい句読点位置で折り返す） */
.cfk-hero__title br {
  display: block !important;
}

@media screen and (max-width: 768px) {
  /* グラデーション：画像がちゃんと見える強さに調整 */
  .cfk-hero::before {
    background: linear-gradient(
      to right,
      rgba(255,255,255,.95) 0%,
      rgba(255,255,255,.88) 32%,
      rgba(255,255,255,.55) 52%,
      rgba(255,255,255,.12) 68%,
      rgba(255,255,255,0) 82%
    ) !important;
  }

  /* テキストエリアはbrありで自然に収まる幅に */
  .cfk-hero__text {
    max-width: 72% !important;
  }
  .cfk-hero__title {
    font-size: 1.38rem !important;
  }
}

/* モバイルで「広げよう。」を改行 */
@media screen and (max-width: 768px) {
  .cfk-hero__break {
    display: block !important;
  }
}

/* ============================================
   記事一覧ページ（home.php）
   ============================================ */

/* ページ全体 */
body.blog,
body.blog.public-page {
  background-color: #fff !important;
}

body.blog .site-container,
body.blog .contents-container,
body.blog .content-in,
body.blog #content-in,
body.blog .main,
body.blog #main {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
  background: #fff !important;
}

body.blog .sidebar,
body.blog .widget-area {
  display: none !important;
}

#cfk-archive {
  background: #fff;
  min-height: 60vh;
  padding: 48px 0 64px;
}

.cfk-archive__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ヘッダー */
.cfk-archive__header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f0f0f0;
}

.cfk-archive__title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a1a3e;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

.cfk-archive__count {
  font-size: 0.82rem;
  color: #888;
  margin: 0;
}

/* 3カラムグリッド */
.cfk-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

/* カード */
.cfk-archive__card-link {
  display: block;
  text-decoration: none !important;
  color: inherit !important;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
  transition: box-shadow .2s, transform .2s;
  background: #fff;
  height: 100%;
}

.cfk-archive__card-link:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  transform: translateY(-2px);
}

/* サムネイル */
.cfk-archive__thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #eee;
}

.cfk-archive__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}

.cfk-archive__card-link:hover .cfk-archive__thumb {
  transform: scale(1.04);
}

/* カテゴリバッジ */
.cfk-archive__cat {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
}

/* 記事情報エリア */
.cfk-archive__body {
  padding: 14px 16px 16px;
}

.cfk-archive__card-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a3e;
  line-height: 1.55;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cfk-archive__meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cfk-archive__date {
  font-size: 0.72rem;
  color: #aaa;
}

/* ページネーション */
.cfk-archive__pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cfk-archive__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #333 !important;
  text-decoration: none !important;
  transition: background .15s, color .15s;
}

.cfk-archive__pagination .page-numbers.current {
  background: #1a5bde;
  border-color: #1a5bde;
  color: #fff !important;
}

.cfk-archive__pagination .page-numbers:hover:not(.current) {
  background: #f0f4ff;
  border-color: #1a5bde;
  color: #1a5bde !important;
}

.cfk-archive__pagination .prev,
.cfk-archive__pagination .next {
  width: auto;
  padding: 0 16px;
}

/* 空状態 */
.cfk-archive__empty {
  text-align: center;
  color: #888;
  padding: 48px 0;
}

/* レスポンシブ */
@media screen and (max-width: 900px) {
  .cfk-archive__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 480px) {
  .cfk-archive__grid {
    grid-template-columns: 1fr;
  }
  .cfk-archive__inner {
    padding: 0 16px;
  }
  #cfk-archive {
    padding: 32px 0 48px;
  }
}

/* アーカイブページ（カテゴリ・タグ等）共通 */
body.archive,
body.category,
body.tag,
body.archive.public-page,
body.category.public-page {
  background-color: #fff !important;
}

body.archive .site-container,
body.archive .contents-container,
body.archive .content-in,
body.archive #content-in,
body.archive .main,
body.archive #main,
body.category .site-container,
body.category .contents-container,
body.category .content-in,
body.category #content-in,
body.category .main,
body.category #main {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
  background: #fff !important;
}

body.archive .sidebar,
body.archive .widget-area,
body.category .sidebar,
body.category .widget-area {
  display: none !important;
}

/* カテゴリ説明文 */
.cfk-archive__desc {
  font-size: 0.88rem;
  color: #666;
  margin: -16px 0 24px;
  line-height: 1.7;
}

/* ============================================
   カテゴリ・アーカイブ グレー背景を完全除去
   ============================================ */
body.category,
body.tag,
body.archive,
body.search {
  background: #fff !important;
  background-color: #fff !important;
}

/* Cocoonのデフォルトカードを隠してcfk-archiveのみ表示 */
body.category .entry-card-wrap,
body.category .card-wrap,
body.tag .entry-card-wrap,
body.archive .entry-card-wrap,
body.search .entry-card-wrap {
  display: none !important;
}

/* Cocoonのアーカイブタイトル非表示（cfk-archive__titleを使う） */
body.category .archive-title,
body.category .cat-description,
body.archive .archive-title,
body.search .search-title {
  display: none !important;
}

/* 検索ページも同デザインに */
body.search #cfk-archive {
  display: block;
}

/* PHPワーニング非表示 */
body > br + p,
.wp-die-message p {
  display: none;
}

/* ============================================
   セクション内ジャンプリンクボックス
   ============================================ */
.cfk-section-links {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 14px 20px 14px 16px;
  margin: 14px 0 28px;
}

.cfk-section-links ul {
  list-style: disc;
  margin: 0;
  padding-left: 18px;
}

.cfk-section-links ul li {
  margin: 6px 0;
  font-size: 0.88rem;
  line-height: 1.5;
}

.cfk-section-links ul li a {
  color: #1a5bde !important;
  text-decoration: none !important;
}

.cfk-section-links ul li a:hover {
  text-decoration: underline !important;
}

/* ============================================
   セクション内ジャンプリンクボックス v2（リデザイン）
   ============================================ */
.cfk-section-links {
  background: #f5f9ff;
  border-radius: 10px;
  border: 1px solid #d4e5f9;
  box-shadow: 0 2px 12px rgba(26,91,222,.07);
  padding: 20px 22px 16px;
  margin: 16px 0 32px;
  position: relative;
}

/* 「この章の内容」ラベル */
.cfk-section-links::before {
  content: 'この章の内容';
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #1a5bde;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d4e5f9;
}

/* リストリセット */
.cfk-section-links ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  counter-reset: section-item;
}

/* 各項目 */
.cfk-section-links ul li {
  counter-increment: section-item;
  display: flex !important;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid #e8f0fb;
  font-size: 0.87rem;
  line-height: 1.5;
}

.cfk-section-links ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* 数字バッジ */
.cfk-section-links ul li::before {
  content: counter(section-item) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 22px !important;
  height: 22px !important;
  min-width: 22px;
  border-radius: 50% !important;
  background: #1a5bde !important;
  color: #fff !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  margin-right: 10px !important;
  flex-shrink: 0 !important;
  position: static !important;
  top: auto !important;
  left: auto !important;
}

/* リンク */
.cfk-section-links ul li a {
  color: #1a2a4a !important;
  text-decoration: none !important;
  transition: color .15s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cfk-section-links ul li a::after {
  content: '›';
  color: #1a5bde;
  font-size: 1rem;
  margin-left: auto;
  padding-left: 8px;
}

.cfk-section-links ul li a:hover {
  color: #1a5bde !important;
}

/* ============================================
   ジャンプリンクボックス v3（修正版）
   ============================================ */

/* 「この章の内容」ラベルを非表示 */
.cfk-section-links::before {
  display: none !important;
  content: none !important;
}

/* カウンターも無効化 */
.cfk-section-links ul {
  counter-reset: none !important;
}
.cfk-section-links ul li {
  counter-increment: none !important;
  padding: 5px 0 !important;
}

/* 数字バッジを→記号に置き換え */
.cfk-section-links ul li::before {
  content: '›' !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  height: auto !important;
  min-width: unset !important;
  border-radius: 0 !important;
  background: none !important;
  color: #e8732a !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  margin-right: 8px !important;
  flex-shrink: 0 !important;
}

/* パディング再調整 */
.cfk-section-links {
  padding: 16px 20px !important;
}
