/*
Theme Name: hoho
Author: hoho
Version: 1.0
*/
/* =========================
   共通
========================= */
*,
*::before,
*::after{
  box-sizing:border-box;
}

:root{
  --main-navy:#1f2a44;
  --soft-navy:#2f3c5a;
  --accent:#d4af37;
  --bg:#f6f7fb;
  --text:#333;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.7;
  color: #222;
  background-color: #f4f6fb;
}

/* =========================
  レイアウト
========================= */
.layout {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px; 
  display: flex;
  gap: 32px;
  padding: 0 20px;
}

@media (max-width: 1024px) {
  .layout {
    max-width: 960px;
  }
}

@media (max-width: 768px) {
  .layout {
    flex-direction: column;
    max-width: 100%;
  }
}

.main-content {
  flex: 1;
  min-width: 0;
  background: #fff;
  padding: 20px 20px;
}

@media (max-width: 768px) {
  .main-content {
    width: 100%;
    padding: 0;
    background: none;
  }
}

.section-title{
  position:relative;
  font-size:22px;
  font-weight:700;
  color:#fff;
  padding:10px 14px;
  border-radius:10px;
  background-color:#24324a;
  background-image:
    radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size:6px 6px;
}

.card {
  background:#fff;
  border:1px solid #e5e5e5;
  border-radius:8px;
  box-shadow:0 4px 12px rgba(0,0,0,0.05);
  padding:16px;
  margin-bottom:32px;
}

/* =========================
   FV
========================= */
.fv{
  margin:20px 0;
}

.fv-inner{
  max-width:900px;
  margin:0 auto;
  overflow:hidden;
}

.fv img{
  width:100%;
  height:auto;
  display:block;
}

/* =========================
   ヘッダー
========================= */
.site-header {
  background:#24324a;
  position: relative;
}

.header-inner {
  max-width: 1100px; 
  margin: 0 auto; 
  padding: 12px 20px;
  background-color: #24324a;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 600px) {
  .header-inner {
    padding: 0;
  }
}

.global-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.global-nav a {
  color: #eee;
  text-decoration: none;
  font-size: 14px;
}

.global-nav a:hover {
  color: #c7a86d;
}

.hamburger{
  display:none;
  width:32px;
  height:24px;
  background:none;
  border:none;
  cursor:pointer;
}

.hamburger.is-open span{
  background:#d4af37;
}

.hamburger span {
  display: block;
  height: 3.5px;
  background: #e6edf7;
  margin: 5px 0;
  transition: 0.3s;
}

.hamburger:active{
  opacity:0.6;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1001;
  }

  .global-nav {
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    background: #f4f6fb;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
    z-index: 1000;
  }

  .global-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .global-nav li {
    border-bottom: 1px solid #ddd;
  }

  .global-nav li:last-child {
    border-bottom: none;
  }

  .global-nav a {
    display: block;
    padding: 14px 20px;
    color: #333;
  }

  .global-nav a:hover {
    background: rgba(212, 175, 55, 0.1);
  }

  .global-nav.is-open {
    display: block;
  }
}

/* =========================
   ヒーロー
========================= */
.hero {
  position: relative;
  padding: 20px 20px;
  background:
    linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)),
    url("header-chart.jpg") center / cover no-repeat;
  color: #fff;
  min-height: 60px;
  display:flex;
  align-items:center;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.site-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

.site-title span {
  color: #d4af37;
}

.site-title a {
  color: #fff;
  text-decoration: none;
}

.site-lead {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  max-width: 640px;
}

@media (max-width: 768px) {
  .hero{
    padding: 10px 20px;
    min-height:180px;
    align-items:flex-start;
  }

  .hero-inner {
    margin-top: 0;
  }

  .site-title {
    font-size: 26px;
  }

  .site-lead {
    font-size: 15px;
  }

}

/* =========================
   サイドバー
========================= */
.sidebar-box {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-bottom: 24px;
}

.sidebar-box > *:not(.sidebar-title) {
  padding: 14px;
}

.sidebar-title {
  margin: 0;
  background: #fcf6d5;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: bold;
  border-bottom: 1px solid #e5e5e5;
}

.sidebar-recommend-box {
  background: #fff;
  border: 3px solid #1e4f8a;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-bottom: 24px;
}

.sidebar-recommend-box > *:not(.sidebar-title) {
  padding: 14px;
}

.sidebar-recommend-title {
  margin: 20px 12px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  background:#1e4f8a;
  border-radius:8px;
  color:#fff;
  padding:8x 0;
}

.sidebar-recommend-link {
  text-align: center;
}

.sidebar-post img{
  width:100%;
  height:auto;
  display:block;
  border-radius:8px;
}

.sidebar-post-list{
  list-style:none;
  padding:0;
  margin:0;
}

.sidebar-post-list a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.sidebar-widget {
  background: #f4f6f8;
  padding: 16px;
  margin-bottom: 24px;
  border-radius: 8px;
}

.sidebar-widget-title {
  font-size: 16px;
  margin-bottom: 12px;
}

.sidebar {
  width:300px;
}

@media (max-width: 1024px) {
  .sidebar {
    width: 260px;
  }
}

@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    display: none;
  }
}

/* サイドバープロフィール */
.sidebar-box .profile-body {
  text-align: center;
}

.sidebar-box .profile-photo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #d4af37;
}

.sidebar-box .profile-name {
  font-weight: bold;
  color: #1f2a44;
  font-size: 16px;
  margin-bottom: 8px;
}

.sidebar-box .profile-text {
  font-size: 12px;
  line-height: 1.6;
  color: #555;
}

/* ===== リスト系 ===== */
.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.sidebar-list li:last-child {
  border-bottom: none;
}

.sidebar-list a {
  text-decoration: none;
  color: #333;
}

/* =========================
  チャートエリア
========================= */
.chart-area {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 20px;
}

.chart-box {
  background: #f7f9fb;
  border: 1px dashed #ccc;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
}

.tradingview-widget-container {
  background: #fff;
  padding: 16px;
  overflow: hidden;
}

/* =========================
   ランキング表
========================= */
.ranking-table-wrap {
  overflow-x: auto;
}

.ranking-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  color: #333;
  font-size: 14px;
}

.ranking-table th,
.ranking-table td {
  border: 1px solid #ddd;
  padding: 14px;
  vertical-align: middle;
}

.ranking-table thead th {
  background: #f3f5f7;
  font-weight: bold;
  text-align: center;
}

.ranking-table .rank {
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}

.rank-1 .rank {
  color: #d4af37;
}
.rank-2 .rank {
  color: #666;
}
.rank-3 .rank {
  color: #8d6e63;
}

.ranking-table .ranking-fx-name {
  font-weight: bold;
  white-space: nowrap;
  font-size: 16px;
  margin: 0 0 5px;
}

@media (max-width: 768px) {
  .ranking-table th,
  .ranking-table td {
    padding: 10px;
    font-size: 13px;
  }
}

.ranking-fx-link {
  color: #d4af37;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
}

.ranking-fx-link:hover {
  text-decoration: underline;
}

/* =========================
  直近の相場観
========================= */
.forecast {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 20px;
}

.forecast-wrap {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.forecast-table-wrap {
  overflow-x: auto;
  margin-bottom: 20px;
}

.forecast-comment {
  padding: 20px 14px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  line-height: 1.6;
}

@media(max-width:768px){
  .forecast-comment{
    padding:18px;
    font-size:14px;
    line-height:1.8;
  }
}

.forecast-note{
  margin-top:20px;
  padding:14px 16px;
  font-size:13px;
  color:#5a6b7f;
  background:#f4f7fb;
  border-radius:6px;
}

@media(max-width:768px){
  .forecast-note{
    padding:5px 5px;
  }
}

.forecast-date{
  text-align:right;
  font-size:0.8rem;
  color:#9ca3af;
  letter-spacing:0.05em;
}

.forecast-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
}

.forecast-table.wide {
  width: 100%;
}

.forecast-table th,
.forecast-table td {
  border: 1px solid #ddd;
  padding: 10px 12px;
}

.forecast-table thead th {
  background: #f5f7fa;
  text-align: center;
  font-weight: 600;
}

.forecast-table tbody th {
  width: 150px;
  background: #fafafa;
  text-align: center;
  font-weight: 600;
}

.forecast-table td {
  line-height: 1.6;
}

.forecast-archive-link-box {
  margin-top: 16px;
  text-align: center;
}

.forecast-archive-link-box {
  margin-top: 16px;
  text-align: center;
}

.forecast-archive-link-box a {
  display: block;
  width: 40%;
  margin: 0 auto;
  padding: 12px 16px;
  background-color: #0073aa;
  border: 1px solid #0073aa;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s;
  text-align: center;
}

.forecast-archive-link-box a:hover {
  background-color: #cce4ff;
  color: #0073aa;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.timeframe-note {
  margin-top: 20px;
  background: #f7f9fb;
  border: 1px solid #dce3ea;
  padding: 16px 20px;
  border-radius: 6px;
  font-size: 14px;
}

.timeframe-note h4 {
  margin: 0 0 10px;
  font-size: 15px;
}

.timeframe-note ul {
  margin: 0;
  padding-left: 20px;
}

.timeframe-note li {
  margin-bottom: 6px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .forecast-table th,
  .forecast-table td {
    font-size: 13px;
    padding: 8px;
  }

  .forecast-archive-link-box a {
    width: 100%;
  }
}

/* =========================
  CTA
========================= */
.cta-box {
  background: linear-gradient(135deg, #f7f9fc, #ffffff);
  border: 1px solid #c0dbff;
  padding: 32px;
  margin: 32px 0;
  text-align: center;
  border-radius: 14px;
}

.cta-box h2 {
  margin-top: 0;
  font-size: 22px;
  color: #1a73e8;
}

.cta-button {
  display: inline-block;
  margin-top: 16px;
  background: #1a73e8;
  color: #fff;
  padding: 14px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.2s;
  box-shadow: 0 6px 18px rgba(26, 115, 232, 0.25);
}

.cta-button:hover {
  transform: translateY(-2px);
  background: #4a8eff;
  color: #fff;
}

/* =========================
   新着記事
========================= */
.latest-posts {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 20px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .post-grid {
    grid-template-columns: 1fr;
  }
}

.post-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.post-card a {
  text-decoration: none;
  color: #333;
  display: block;
}

.post-card .thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.post-card .thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.post-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-title {
  font-size: 15px;
  padding: 12px;
  line-height: 1.4;
}

/* =========================
  人気記事
========================= */

/* =========================
  ランキング
========================= */
.ranking-area {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 20px;
  margin-bottom: 32px;
}

.ranking-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ranking-item {
  background: #fff;
  color: #333;
  padding: 20px;
  position: relative;
  border-radius: 6px;
}

.rank-badge {
  position: absolute;
  top: -12px;
  left: -12px;
  background: #0073aa;
  color: #fff;
  font-weight: bold;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.ranking-fx-desc {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 10px;
  margin-bottom: 12px;
}

.ranking-fx-btn {
  display: inline-block;
  background: #0073aa;
  color: #fff;
  padding: 6px 14px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 13px;
}

@media (max-width: 768px) {
  .ranking-list {
    grid-template-columns: 1fr;
  }
}

/* =========================
  フッター
========================= */
.footer-site {
  background: #1f2933;
  color: #ddd;
  padding: 48px 0 24px;
  font-size: 14px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.footer-site-name {
  font-weight: bold;
  color: #fff;
  margin-bottom: 8px;
}

.footer-text {
  font-size: 13px;
  line-height: 1.6;
  color: #bbb;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 8px;
}

.footer-nav a {
  color: #ccc;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
  }
}

/* =========================
  プロフィールページ
========================= */
.profile{
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 20px;
}

.profile-header{
  display:flex;
  align-items:center;
  gap:24px;
  margin-bottom:28px;
  padding-bottom:20px;
  border-bottom:1px solid #eee;
}

.profile-header img{
  width:110px;
  height:110px;
  border-radius:50%;
  border:3px solid var(--accent);
  object-fit:cover;
}

.profile-author{
  font-size:22px;
  font-weight:bold;
  color:var(--main-navy);
}

.profile-tagline{
  font-size:14px;
  color:#777;
  margin-top:6px;
}

.profile-container p{
  line-height:2;
  color:#444;
  font-size:15.5px;
}

.profile-lead{
  margin-top:-10px;
  margin-bottom:30px;
  font-weight: bold;
}

@media(max-width:768px){

  .profile-container{
    padding:24px;
  }

  .profile-header{
    flex-direction:column;
    text-align:center;
  }

}

/* =========================
   recommend page
========================= */
.main-content.recommend{
  flex:1;
  min-width:0;
}

/* 共通カード */
.recommend-card{
  background:#fff;
  padding:32px;
  border-radius:14px;
  margin-bottom:32px;
  box-shadow:0 6px 20px rgba(0,0,0,.05);
}

/* 見出し */
/*.recommend h2{
  font-size:26px;
  font-weight:700;
  margin-bottom:24px;
  padding-bottom:10px;
  border-bottom:3px solid #1e4f8a;
  position:relative;
}

.recommend h2::before{
  content:"";
  position:absolute;
  left:0;
  bottom:-3px;
  width:70px;
  height:3px;
  background:#1e4f8a;
}*/

/* おすすめ2社グリッド */
.recommend-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.recommend-card.strong{
  border:2px solid #4f7df3;
  position:relative;
}

.recommend-badge{
  position:absolute;
  top:-12px;
  left:16px;
  color:#fff;
  padding:6px 12px;
  font-size:12px;
  border-radius:20px;
  font-weight:700;
}

.recommend-badge-popular{
  background:#ff6b6b;
}

.recommend-badge-beginner{
  background:#3b82f6;
}

/* ボタン（重要） */
.recommend-button-large{
  display:block;
  text-align:center;
  margin-top:20px;
  padding:16px;
  background:linear-gradient(135deg,#3b82f6,#2563eb);
  color:#fff;
  text-decoration:none;
  border-radius:10px;
  font-weight:700;
  font-size:17px;
  transition:.25s;
  box-shadow:0 6px 16px rgba(37,99,235,.25);
}

.recommend-button-large:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 24px rgba(37,99,235,.35);
}

/* サブボタン */
.recommend-button-large.sub{
  background:linear-gradient(135deg,#60a5fa,#3b82f6);
}

/* 比較表 */
.recommend-table-wrap{
  overflow-x:auto;
}

.recommend-fx-table{
  width:100%;
  border-collapse:collapse;
  font-size:15px;
}

.recommend-fx-table th{
  background:#24324a;
  border:1px solid #e5e7eb;
  color:#fff;
  padding:14px;
}

.recommend-fx-table td{
  padding:14px;
  border:1px solid #e5e7eb;
  text-align:center;
}

.recommend-fx-table tbody tr:nth-child(even){
  background:#f7f9fc;
}

.recommend-fx-table tbody tr:hover{
  background:#eef3ff;
}

.recommend-fx-table a{
  display:inline-block;
  background:#2563eb;
  color:#fff;
  padding:8px 14px;
  border-radius:8px;
  text-decoration:none;
  font-weight:700;
  transition:.2s;
}

.recommend-fx-table a:hover{
  background:#1d4ed8;
}


/* 箇条書き */
.recommend-cta-type ul,
.recommend-cta-multi ul{
  padding-left:20px;
}

.recommend-cta-type li,
.recommend-cta-multi li{
  margin-bottom:10px;
  font-weight:500;
}

.recommend-fx-table td:first-child{
  font-size:17px;
  font-weight:700;
  padding-left:14px;
}

.recommend-fx-table td:first-child::before{
  display:none;
}

@media(max-width:768px){
  .recommend-grid{
    grid-template-columns:1fr;
  }

  .recommend h2{
    font-size:22px;
  }

}

/* ===== スマホ：比較表をカード化 ===== */
@media(max-width:768px){

  .recommend-fx-table thead{
    display:none;
  }

  .recommend-fx-table,
  .recommend-fx-table tbody,
  .recommend-fx-table tr,
  .recommend-fx-table td{
    display:block;
    width:100%;
  }

  .recommend-fx-table tr{
    margin-bottom:18px;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,.06);
    border:1px solid #e5e7eb;
    background:#fff;
  }

  .recommend-fx-table td{
    text-align:left;
    padding:12px 14px;
    border:none;
    border-bottom:1px solid #f1f5f9;
    position:relative;
    padding-left:44%;
    font-size:14px;
  }

  .recommend-fx-table td:last-child{
    border-bottom:none;
  }

  /* ラベル表示 */
  .recommend-fx-table td::before{
    position:absolute;
    left:12px;
    top:12px;
    width:38%;
    font-weight:700;
    color:#24324a;
  }

  .recommend-fx-table td:nth-child(1)::before{content:"口座";}
  .recommend-fx-table td:nth-child(2)::before{content:"最小通貨";}
  .recommend-fx-table td:nth-child(3)::before{content:"スプレッド";}
  .recommend-fx-table td:nth-child(4)::before{content:"特徴";}
  .recommend-fx-table td:nth-child(5)::before{content:"おすすめ";}
  /*.recommend-fx-table td:nth-child(6)::before{content:"公式";}*/

  /* 公式セルの余白を調整 */
  .recommend-fx-table td:nth-child(6){
    padding-left:14px;
  }

  .recommend-fx-table td:nth-child(6)::before{
    display:none;
  }

  /* ボタン巨大化 */
  .recommend-fx-table td:nth-child(6) a{
    display:block;
    width:100%;
    padding:16px;
    font-size:16px;
    font-weight:700;
    border-radius:10px;
  }

  /* CTA強化（重要） */
  .recommend-fx-table a{
    display:block;
    text-align:center;
    padding:12px;
    font-size:15px;
  }

  .recommend-fx-table tbody tr{
    background:#f8fbff;
    border:1px solid #e6eefc;
  }
}


/* =========================
   記事ページ（Single）
========================= */
/* タイトル */
.single-title{
  font-size:30px;
  line-height:1.4;
  margin-bottom:16px;
  color:var(--main-navy);
  font-weight:700;
}

@media(max-width:768px){
  .single-title{
    font-size:22px;
  }
}

/* メタ情報 */
.single-meta{
  display:flex;
  gap:16px;
  font-size:13px;
  color:#6b7280;
  margin-bottom:32px;
  padding-bottom:16px;
  border-bottom:1px solid #eee;
}

/* 本文 */
.single-article p{
  line-height:2;
  font-size:16px;
  margin-bottom:24px;
  color:#333;
}

.single-article h2{
  font-size:22px;
  margin:48px 0 18px;
  padding:5px 14px;
  background:#1e4f8a;
  border-radius:8px;
  color:#fff;
}

.single-article h3{
  font-size:18px;
  margin:32px 0 12px;
  color:#24324a;
}

.single-article ul{
  margin-bottom:24px;
  padding-left:22px;
}

.single-article li{
  margin-bottom:10px;
  line-height:1.8;
}

/* 画像 */
.single-article img{
  max-width:100%;
  height:auto;
  border-radius:10px;
  margin:24px 0;
}

/* 引用 */
.single-article blockquote{
  margin:24px 0;
  padding:18px 20px;
  background:#f7f9fc;
  border-left:4px solid var(--accent);
  border-radius:8px;
  color:#444;
}

/* =========================
   目次（TOC）
========================= */
.toc-box{
  background:#f8fbff;
  border:1px solid #e2e8f0;
  padding:24px;
  border-radius:12px;
  margin-bottom:40px;
}

.toc-title{
  font-weight:700;
  margin-bottom:14px;
  font-size:16px;
  color:#24324a;
}

.toc-box ul{
  list-style:none;
  padding:0;
  margin:0;
}

.toc-box li{
  margin-bottom:10px;
}

.toc-box a{
  text-decoration:none;
  color:#2563eb;
  font-size:14px;
  transition:.2s;
}

.toc-box a:hover{
  color:#1d4ed8;
  text-decoration:underline;
}